/* inter-regular - latin */
@font-face {
  font-display: optional; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  src: url('/fonts/inter-v20-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* inter-600 - latin */
@font-face {
  font-display: optional; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  src: url('/fonts/inter-v20-latin-600.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* inter-700 - latin */
@font-face {
  font-display: optional; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  src: url('/fonts/inter-v20-latin-700.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* inter-800 - latin */
@font-face {
  font-display: optional; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Inter';
  font-style: normal;
  font-weight: 800;
  src: url('/fonts/inter-v20-latin-800.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}




:root {
    --blue: #0891b2;
    --orange: #ea580c;
    --grey: #f5f5f5;
    --dark-grey: #6b7280;
    --white: #ffffff;
    --black: #1e1f27;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--black);
    background: var(--white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    
}

/* Header */
header {
    background: var(--black);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 28px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.logo-all {
    color: var(--white);
    font-weight: 700;
}

.logo-web {
    color: var(--orange);
    font-weight: 900;
    font-size: 56px;
    margin-left: 3px;
}

nav {
    display: flex;
    gap: 40px;
}

nav a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 8px 0;
}

nav a:hover {
    color: var(--blue);
}

/* Hero Section */




.hero {
   background: linear-gradient(150deg, #1e1f27 0%, #1e1f27 30%, #0891b2 100%);
    color: var(--white);
    padding: 60px 0 120px;
    position: relative;
}




.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: var(--white);
    clip-path: polygon(0 60%, 100% 0, 100% 100%, 0 100%);
}

.hero h1 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
    max-width: 1100px;
    xborder:2px solid yellow;
}


 
 .h1-subtitle {
    display: block;
    font-size: 0.6em;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.85);
    margin-top: 22px;
}

.hero-features {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 50px;
}

.feature-item {
    background: rgba(8, 145, 178, 0.15);
    border: 1px solid rgba(8, 145, 178, 0.3);
    color: var(--white);
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 500;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.feature-item:hover {
    background: rgba(8, 145, 178, 0.25);
    border-color: rgba(8, 145, 178, 0.5);
    transform: translateY(-2px);
}

/* About Section */

.about-quote {
  max-width: 700px;
  margin: 2rem auto;
  padding: 2rem;
  text-align: justify; 
  position: relative;
}

.about-quote.no-border {
  border: none !important;
}

.open-quote,
.close-quote {
  font-size: 3rem;
  line-height: 0;
  vertical-align: -0.5rem;
  font-family: Baskerville, 'Libre Baskerville', 'Times New Roman', serif;
  color: #1e3a8a;
  opacity: 0.25;
  font-weight: 400;
}

.close-quote {
  vertical-align: -12px;  /* 6px lower than the -0.5rem which is roughly -8px */
}
.about-quote p {
  margin: 0;
  line-height: 1.7;
}

.about-quote cite {
  display: block;
  margin-top: 1.5rem;
  xfont-style: normal;
  font-weight: 600;
  xcolor: #1e3a8a;
  text-align: center;
}

.about {
    padding: 80px 0;
    background: var(--white);
}

.about h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: var(--black);
    xborder-left: 4px solid var(--blue);
    padding-left: 20px;
}

.about .lead {
    font-size: 22px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: var(--black);
    font-weight: 600;
}

.about p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--dark-grey);
    margin-bottom: 16px;
}

/* Services Section */
.services {
    padding: 80px 0;
    background: var(--grey);
}

.services h2 {
    font-size: 36px;
    margin-bottom: 50px;
    color: var(--black);
    text-align: center;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--white);
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border-left: 4px solid var(--blue);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.service-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: var(--black);
}

.service-card p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--dark-grey);
    margin-bottom: 12px;
}

/* Portfolio Section */
.portfolio {
    padding: 80px 0;
    background: var(--white);
}

.portfolio h2 {
    font-size: 36px;
    margin-bottom: 50px;
    color: var(--black);
    text-align: center;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
}

.portfolio-item {
    background: var(--white);
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.portfolio-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}


.portfolio-item img {
    width: 100%;
    height: auto;
    display: block;
    xborder: 1px solid #5FB6E1;
      border: 1px solid transparent;
    border-image: linear-gradient(to bottom, #5FB6E1 0%, rgba(95, 182, 225, 0.25) 100%) 1;
}

.portfolio-item h3 {
    font-size: 22px;
    margin: 6px 20px 6px;
    color: var(--black);
}

.portfolio-item p {
    font-size: 16px;
    line-height: 1.5;
    color: var(--dark-grey);
    margin: 0 20px 4px;
}

.portfolio-item a {
    display: inline-block;
    margin: 0 20px 20px;
    color: var(--blue);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.portfolio-item a:hover {
    color: var(--orange);
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background: linear-gradient(180deg, var(--grey) 0%, var(--white) 100%);
}

.testimonials h2 {
    font-size: 36px;
    margin-bottom: 50px;
    color: var(--black);
    text-align: center;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

blockquote {
    background: var(--white);
    padding: 30px;
    border-radius: 8px;
    border-left: 4px solid var(--blue);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

blockquote p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--dark-grey);
    font-style: italic;
}

/* SEO Framework Section */
.seo-framework {
    padding: 80px 0;
    background: var(--grey);
}

.seo-framework h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--black);
    text-align: center;
}

.section-intro {
    font-size: 18px;
    line-height: 1.7;
    color: var(--dark-grey);
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
}

.framework-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.framework-item {
    background: var(--white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border-left: 4px solid var(--blue);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.framework-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.framework-item h3 {
    font-size: 20px;
    margin-bottom: 16px;
    color: var(--black);
}

.framework-item p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--dark-grey);
}

/* Working Together Section */
.process {
    padding: 80px 0;
    background: var(--white);
}

.process h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--black);
    text-align: center;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.process-item {
    background: var(--grey);
    padding: 30px;
    border-radius: 8px;
    border-left: 4px solid var(--blue);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.process-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.process-item h3 {
    font-size: 20px;
    margin-bottom: 16px;
    color: var(--black);
}

.process-item p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--dark-grey);
}

//* Contact Section */
.contact {
    padding: 80px 0;
    background: var(--grey);
}

.contact h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--black);
    text-align: center;
}

.contact-intro {
    font-size: 18px;
    text-align: center;
    color: var(--dark-grey);
    margin-bottom: 50px;
}

.contact-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.contact-item {
    background: var(--white);
    padding: 30px;
    border-radius: 8px;
    border-left: 4px solid var(--blue);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.contact-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.contact-item strong {
    display: block;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--blue);
    margin-bottom: 12px;
    font-weight: 700;
}

.contact-item a {
    color: var(--black);
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--orange);
}

.contact-item span {
    font-size: 18px;
    color: var(--black);
}

/* Footer */
footer {
    background: var(--black);
    color: var(--white);
    padding: 30px 0;
    text-align: center;
}

footer p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

/* Responsive Design */
@media (max-width: 768px) {
    nav {
        gap: 20px;
    }

    nav a {
        font-size: 14px;
    }

    .hero h1 {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 18px;
    }
    
    

    .logo {
        font-size: 22px;
    }
    
    .logo-all {
 font-size: 22px;
    font-weight: 700;
}

.logo-web {
font-size: 44px;);
    font-weight: 900;
}

    .service-grid,
    .portfolio-grid,
    .testimonial-grid,
    .framework-grid,
    .process-grid {
        grid-template-columns: 1fr;
    }

    .hero-features {
        gap: 12px;
    }

    .feature-item {
        font-size: 14px;
        padding: 10px 18px;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
    }

    .portfolio-item {
        min-width: 100%;
    }
}

@media (max-width: 480px) {
    header .container {
        flex-direction: column;
        gap: 16px;
    }

    nav {
        width: 100%;
        justify-content: center;
    }
}

@media (min-width: 769px) {
    .portfolio-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}