/* ════════════════════════════════════════
       CSS VARIABLES
    ════════════════════════════════════════ */
    :root {
        --primary:       #1351d8;
        --primary2:      #4f8dff;
        --primary-light: #f3f6fd;
        --dark:          #1c1c1c;
        --dark2:         #454545;
        --light:         #f9f9f9;
        --gray:          #d9d9d9;
        --logo1:         #1c2867;
        --logo2:         #1799d8;
        --logo3:         #095683;
        --logo4:         #20aec1;
        --white:         #ffffff;
  
        --radius-sm:  8px;
        --radius-md:  14px;
        --radius-lg:  20px;
        --radius-xl:  50px;
  
        --shadow-sm:  0 2px 12px rgba(19,81,216,0.07);
        --shadow-md:  0 8px 32px rgba(19,81,216,0.12);
        --shadow-lg:  0 16px 48px rgba(19,81,216,0.16);
  
        --transition: 0.28s ease;
  
        --section-pad: clamp(40px, 6vw, 80px) clamp(20px, 5vw, 72px);
      }
      /* ====================== PRELOADER ====================== */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  transition: opacity 0.6s ease-in-out;
}

/* Loader */
.loader {
  width: 48px;
  height: 48px;
  position: relative;
}

.loader:before {
  content: '';
  width: 48px;
  height: 5px;
  background: #80a5f050;
  position: absolute;
  top: 60px;
  left: 0;
  border-radius: 50%;
  animation: shadow324 0.5s linear infinite;
}

.loader:after {
  content: '';
  width: 100%;
  height: 100%;
  background: #8096f0;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 4px;
  animation: jump7456 0.5s linear infinite;
}

@keyframes jump7456 {
  15% { border-bottom-right-radius: 3px; }
  25% { transform: translateY(9px) rotate(22.5deg); }
  50% { transform: translateY(18px) scale(1, .9) rotate(45deg); border-bottom-right-radius: 40px; }
  75% { transform: translateY(9px) rotate(67.5deg); }
  100% { transform: translateY(0) rotate(90deg); }
}

@keyframes shadow324 {
  0%, 100% { transform: scale(1, 1); }
  50% { transform: scale(1.2, 1); }
}

  
      /* ════════════════════════════════════════
         RESET & BASE
      ════════════════════════════════════════ */
      *, *::before, *::after {
        box-sizing: border-box;
        margin: 0;
        padding: 0;
      }
  
      html {
        scroll-behavior: smooth;
        -webkit-text-size-adjust: 100%;
      }
  
      body {
        font-family: "Poppins", sans-serif;
        background-color: var(--primary-light);
        color: var(--dark);
        overflow-x: hidden;
        line-height: 1.6;
      }
  
      img {
        max-width: 100%;
        height: auto;
        display: block;
      }
  
      a {
        text-decoration: none;
        color: inherit;
      }
  
      ul, ol { list-style: none; }
  
      button {
        font-family: inherit;
        cursor: pointer;
        border: none;
        background: none;
      }
  
      /* ════════════════════════════════════════
         SKIP LINK (Accessibility)
      ════════════════════════════════════════ */
      .skip-link {
        position: absolute;
        top: -40px;
        left: 0;
        background: var(--primary);
        color: #fff;
        padding: 8px 16px;
        border-radius: 0 0 var(--radius-sm) 0;
        font-size: 14px;
        font-weight: 600;
        z-index: 9999;
        transition: top 0.2s;
      }
      .skip-link:focus { top: 0; }
  
      /* ════════════════════════════════════════
         SHARED UTILITIES
      ════════════════════════════════════════ */
      .eyebrow {
        font-size: 11px;
        font-weight: 700;
        letter-spacing: 0.2em;
        text-transform: uppercase;
        color: var(--primary);
        margin-bottom: 12px;
        display: block;
      }
  
      .section-title {
        font-family: "Syne", sans-serif;
        font-size: clamp(28px, 4vw, 42px);
        font-weight: 800;
        color: var(--dark);
        line-height: 1.15;
      }
  
      .btn-main {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        padding: 12px 28px;
        border-radius: var(--radius-xl);
        background: linear-gradient(135deg, var(--logo1), var(--logo3));
        color: var(--white);
        font-size: 15px;
        font-weight: 600;
        border: 2px solid var(--logo1);
        transition: all var(--transition);
        white-space: nowrap;
      }
  
      .btn-main:hover {
        background: var(--white);
        color: var(--logo1);
        transform: translateY(-2px);
        box-shadow: var(--shadow-md);
      }
  
      .btn-main:focus-visible {
        outline: 3px solid var(--primary2);
        outline-offset: 3px;
      }
  
     

      /* ----------banner---------- */
      
    /* ── Section banner── */
    .faq-section {
        position: relative;
        width: 100%;
        padding: var(--section-pad);
        text-align: center;
        overflow: hidden;
        background: var(--dark);
        display: flex;
        align-items: center;
        justify-content: center;
      
      }
  
      /* ── Curved arc lines (bottom-left) ── */
      .faq-section .arcs {
        position: absolute;
        bottom: -30px;
        left: -60px;
        width: 320px;
        height: 320px;
        pointer-events: none;
      }
  
      .faq-section .arcs circle {
        fill: none;
        stroke: rgba(255,255,255,0.07);
        stroke-width: 1;
      }
  
      /* ── Ambient glow ── */
      .faq-section::after {
        content: '';
        position: absolute;
        top: -100px;
        left: 50%;
        transform: translateX(-50%);
        width: 600px;
        height: 360px;
        background: radial-gradient(ellipse, rgba(19,81,216,0.15) 0%, transparent 70%);
        pointer-events: none;
      }
  
      .section-inner {
        position: relative;
        z-index: 1;
      
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: clamp(16px, 3vw, 26px);
      }
  
      /* ── Label pill ── */
      .label-pill {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 8px 22px;
        background: var(--white);
        color: var(--dark);
        font-family: 'DM Sans', sans-serif;
        font-size: 0.88rem;
        font-weight: 500;
        border-radius: var(--radius-xl);
        box-shadow: var(--shadow-sm);
        letter-spacing: 0.02em;
        animation: fadeDown 0.55s var(--transition) both;
      }
  
      /* ── Heading ── */
      .section-heading {
        font-family: 'Syne', sans-serif;
        font-weight: 800;
        font-size: clamp(2rem, 5.2vw, 3.35rem);
        line-height: 1.13;
        color: var(--white);
        letter-spacing: -0.02em;
        animation: fadeUp 0.6s 0.1s var(--transition) both;
      }
  
      /* ── Body text ── */
      .section-body {
        max-width: 500px;
        font-size: clamp(0.88rem, 1.5vw, 0.97rem);
        line-height: 1.72;
        color: rgba(255,255,255,0.5);
        animation: fadeUp 0.6s 0.2s var(--transition) both;
      }
  
      /* ── CTA Button ── */
      .btn-primary {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        padding: 15px 34px;
        background: var(--primary);
        color: var(--white);
        font-family: 'DM Sans', sans-serif;
        font-size: 0.95rem;
        font-weight: 500;
        border: none;
        border-radius: var(--radius-md);
        cursor: pointer;
        text-decoration: none;
        box-shadow: var(--shadow-md);
        transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
        animation: fadeUp 0.6s 0.3s var(--transition) both;
      }
  
      .btn-primary:hover {
        background: var(--primary2);
        transform: translateY(-2px);
        box-shadow: var(--shadow-lg);
      }
  
      .btn-primary:active { transform: translateY(0); }
  
      .btn-primary svg {
        transition: transform var(--transition);
      }
      .btn-primary:hover svg { transform: translateX(4px); }
  
      /* ── Animations ── */
      @keyframes fadeDown {
        from { opacity: 0; transform: translateY(-12px); }
        to   { opacity: 1; transform: translateY(0); }
      }
      @keyframes fadeUp {
        from { opacity: 0; transform: translateY(18px); }
        to   { opacity: 1; transform: translateY(0); }
      } 

      /* =========================================
      services card section
      =========================================== */

      
    

      /* ════════════════════════════════════════
         CONTACT SECTION
      ════════════════════════════════════════ */
      #contact {
        padding: var(--section-pad);
      }
  
      .contact-inner {
        display: flex;
        align-items: stretch;
        gap: clamp(16px, 2.5vw, 28px);
        max-width: 1200px;
        margin: 0 auto;
      }
  
      /* Shared col styles */
      .col-form,
      .col-stats,
      .col-info {
        background: var(--light);
        border-radius: var(--radius-md);
        padding: clamp(24px, 3vw, 40px) clamp(20px, 2.5vw, 30px);
        box-shadow: var(--shadow-sm);
      }
  
      /* Form */
      .col-form { flex: 1.15; min-width: 0; }
  
      .form-eyebrow {
        font-size: 11px;
        font-weight: 700;
        letter-spacing: 0.15em;
        text-transform: uppercase;
        color: var(--primary);
        margin-bottom: 8px;
        display: block;
      }
  
      .form-heading {
        font-family: "Syne", sans-serif;
        font-size: clamp(22px, 3vw, 32px);
        font-weight: 800;
        line-height: 1.15;
        color: var(--dark);
        margin-bottom: 18px;
      }
  
      .form-divider {
        border: none;
        border-top: 1px solid var(--gray);
        margin: 0 0 18px;
      }
  
      .field-row   { display: flex; gap: 12px; margin-bottom: 14px; }
      .field-row .field-group { flex: 1; }
  
      .field-group { display: flex; flex-direction: column; gap: 5px; margin-bottom: 14px; }
      .field-group:last-child { margin-bottom: 0; }
  
      .field-label { font-size: 13px; font-weight: 500; color: var(--dark); }
  
      .field-input,
      .field-textarea {
        width: 100%;
        padding: 10px 13px;
        border: 1.5px solid var(--gray);
        border-radius: var(--radius-sm);
        font-family: inherit;
        font-size: 14px;
        color: var(--dark);
        background: var(--primary-light);
        outline: none;
        transition: border-color var(--transition), box-shadow var(--transition);
      }
  
      .field-input::placeholder,
      .field-textarea::placeholder { color: #aaa; }
  
      .field-input:focus,
      .field-textarea:focus {
        border-color: var(--primary);
        box-shadow: 0 0 0 3px rgba(19,81,216,0.1);
        background: var(--white);
      }
  
      .field-textarea { resize: none; height: 108px; overflow-y: auto; }
  
      .terms-row { display: flex; align-items: center; gap: 8px; margin: 14px 0 18px; }
      .terms-row input { width: 15px; height: 15px; accent-color: var(--primary); cursor: pointer; flex-shrink: 0; }
      .terms-row label { font-size: 12px; color: var(--dark2); }
  
      .submit-btn {
        width: 100%;
        padding: 13px;
        background: var(--primary);
        color: var(--white);
        font-family: inherit;
        font-size: 15px;
        font-weight: 600;
        border: none;
        border-radius: var(--radius-sm);
        cursor: pointer;
        transition: background var(--transition), transform var(--transition);
      }
  
      .submit-btn:hover { background: var(--primary2); transform: translateY(-1px); }
  
      /* Stats col */
      .col-stats {
        flex: 0.78;
        min-width: 0;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
      }
  
      .stat-item { padding: 16px 0; border-bottom: 1px solid var(--gray); }
      .stat-item:last-child  { border-bottom: none; padding-bottom: 0; }
      .stat-item:first-child { padding-top: 0; }
  
      .stat-number {
        font-family: "Syne", sans-serif;
        font-size: clamp(22px, 3vw, 32px);
        font-weight: 800;
        color: var(--dark);
        line-height: 1;
      }
  
      .stat-suffix { font-size: 14px; font-weight: 700; color: var(--dark); }
      .stat-label  { font-size: 14px; color: var(--primary); font-weight: 500; margin-top: 3px; }
  
      /* Info col */
      .col-info {
        flex: 0.82;
        min-width: 0;
        display: flex;
        flex-direction: column;
      }
  
      .info-block { padding: 18px 0; border-bottom: 1px solid var(--gray); }
      .info-block:first-child { padding-top: 0; }
      .info-block:last-child  { border-bottom: none; padding-bottom: 0; }
  
      .info-icon { width: 36px; height: 36px; color: var(--primary); margin-bottom: 8px; }
  
      .info-block-title {
        font-family: "Syne", sans-serif;
        font-size: 15px;
        font-weight: 700;
        color: var(--dark);
        margin-bottom: 7px;
      }
  
      .info-link {
        display: block;
        font-size: 14px;
        color: var(--primary);
        font-weight: 500;
        margin-bottom: 4px;
        transition: color var(--transition);
      }
  
      .info-link:hover { color: var(--primary2); text-decoration: underline; }
  
      .info-address { font-size: 14px; color: var(--primary); line-height: 1.6; font-weight: 500; }
  
      .social-links { display: flex; flex-direction: column; gap: 11px; }
  
      .social-link {
        display: flex;
        align-items: center;
        gap: 10px;
        font-size: 14px;
        font-weight: 500;
        color: var(--dark);
        transition: color var(--transition), transform var(--transition);
      }
  
      .social-link:hover { color: var(--primary); transform: translateX(3px); }
      .social-link svg { width: 18px; height: 18px; color: var(--primary); flex-shrink: 0; }
  
      @media (max-width: 900px) {
        .contact-inner { flex-direction: column; }
        .field-row { flex-direction: column; }
      }
  
      /* ════════════════════════════════════════
         FOOTER
      ════════════════════════════════════════ */
      #site-footer {
        background: var(--dark);
        position: relative;
        overflow: hidden;
      }
  
      .footer-waves {
        position: absolute;
        right: 0; bottom: 0;
        width: 420px; height: 300px;
        opacity: 0.1;
        pointer-events: none;
      }
  
      /* CTA Band */
      .footer-cta {
        display: grid;
        grid-template-columns: 1fr 1px 1fr;
        align-items: center;
        padding: clamp(40px, 5vw, 64px) clamp(24px, 5vw, 72px);
        border-bottom: 1px solid rgba(255,255,255,0.08);
        position: relative;
        z-index: 1;
      }
  
      .cta-divider { width: 1px; height: 120px; background: rgba(255,255,255,0.1); justify-self: center; }
  
      .cta-left {
        display: flex;
        flex-direction: column;
        gap: 22px;
        padding-right: clamp(32px, 5vw, 64px);
      }
  
      .footer-logo-wrap {
        background: var(--white);
        border-radius: 8px;
        padding: 10px 18px;
        display: inline-flex;
        align-items: center;
        width: fit-content;
      }
  
      .footer-logo-wrap img { width: 130px; height: 40px; object-fit: contain; }
  
      .cta-tagline { font-size: 14px; color: rgba(255,255,255,0.55); line-height: 1.65; max-width: 300px; }
  
      .email-row { display: flex; flex-wrap: wrap; gap: 8px; }
  
      .email-input {
        background: rgba(255,255,255,0.06);
        border: 1px solid rgba(255,255,255,0.14);
        border-radius: 6px;
        padding: 10px 16px;
        color: var(--white);
        font-family: inherit;
        font-size: 13px;
        width: clamp(160px, 18vw, 210px);
        outline: none;
        transition: border-color var(--transition);
      }
  
      .email-input::placeholder { color: rgba(255,255,255,0.3); }
      .email-input:focus { border-color: var(--primary2); }
  
      .btn-primary {
        background: var(--primary);
        color: var(--white);
        border: none;
        border-radius: 6px;
        padding: 10px 20px;
        font-family: inherit;
        font-size: 13px;
        font-weight: 600;
        cursor: pointer;
        white-space: nowrap;
        transition: background var(--transition), transform 0.15s;
      }
  
      .btn-primary:hover { background: var(--primary2); transform: translateY(-1px); }
  
      .partner-logos {
        display: flex;
        align-items: center;
        gap: 20px;
        flex-wrap: wrap;
      }
  
      .partner-logo {
        display: flex;
        align-items: center;
        gap: 5px;
        opacity: 0.6;
        transition: opacity var(--transition);
        cursor: pointer;
      }
  
      .partner-logo:hover { opacity: 1; }
      .partner-logo span  { font-size: 13px; font-weight: 600; }
      .yt-text       { color: var(--white); }
      .upwork-text   { color: #6fda44; }
      .shopify-text  { color: #96bf48; }
  
      .cta-right {
        display: flex;
        flex-direction: column;
        gap: 24px;
        padding-left: clamp(32px, 5vw, 64px);
        position: relative;
        z-index: 1;
      }
  
      .cta-heading {
        font-family: "Syne", sans-serif;
        font-size: clamp(18px, 2.2vw, 28px);
        font-weight: 700;
        color: var(--white);
        line-height: 1.25;
        max-width: 340px;
      }
  
      .cta-desc {
        font-size: 14px;
        color: rgba(255,255,255,0.55);
        line-height: 1.65;
        max-width: 320px;
        margin-top: -10px;
      }
  
      .btn-outline {
        background: transparent;
        border: 1.5px solid var(--primary2);
        color: var(--primary2);
        border-radius: 6px;
        padding: 10px 22px;
        font-family: inherit;
        font-size: 13px;
        font-weight: 600;
        cursor: pointer;
        width: fit-content;
        transition: all var(--transition);
      }
  
      .btn-outline:hover { background: var(--primary); border-color: var(--primary); color: var(--white); transform: translateY(-1px); }
  
      .footer-stats { display: flex; gap: clamp(24px, 4vw, 44px); }
  
      .footer-stat-val { font-family: "Syne", sans-serif; font-size: 15px; font-weight: 800; color: var(--white); }
      .footer-stat-unit { font-size: 11px; font-weight: 400; opacity: 0.5; margin-left: 2px; }
      .footer-stat-label { font-size: 12px; color: rgba(255,255,255,0.45); margin-top: 3px; }
  
      /* Nav links */
      .footer-nav {
        display: grid;
        grid-template-columns: repeat(5, 1fr) 0.2fr 1.3fr;
        gap: 20px;
        padding: clamp(36px, 5vw, 52px) clamp(24px, 5vw, 72px);
        border-bottom: 1px solid rgba(255,255,255,0.07);
        position: relative;
        z-index: 1;
      }
  
      .nav-col-title {
        font-family: "Syne", sans-serif;
        font-size: 13px;
        font-weight: 700;
        color: var(--white);
        margin-bottom: 18px;
      }
  
      .nav-col ul  { display: flex; flex-direction: column; gap: 10px; }
      .nav-col a   { color: rgba(255,255,255,0.45); font-size: 13px; transition: color var(--transition); }
      .nav-col a:hover { color: var(--primary2); }
  
      .address-entry { display: flex; flex-direction: column; gap: 12px; }
      .addr-label  { font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.8); margin-bottom: 3px; }
      .addr-value  { font-size: 13px; color: rgba(255,255,255,0.45); line-height: 1.55; }
  
      /* Bottom bar */
      .footer-bottom {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 18px clamp(24px, 5vw, 72px) 24px;
        position: relative;
        z-index: 1;
      }
  
      .footer-social { display: flex; gap: 10px; align-items: center; }
  
      .footer-social-btn {
        width: 32px;
        height: 32px;
        border: 1px solid rgba(255,255,255,0.18);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: rgba(255,255,255,0.5);
        transition: all var(--transition);
      }
  
      .footer-social-btn:hover {
        border-color: var(--primary2);
        background: rgba(79,141,255,0.1);
        color: var(--primary2);
        transform: translateY(-2px);
      }
  
      .footer-social-btn svg { width: 13px; height: 13px; fill: currentColor; }
      .footer-copy { font-size: 12px; color: rgba(255,255,255,0.45); }
  
      @media (max-width: 1024px) {
        .footer-cta  { padding: 40px; }
        .footer-nav  { grid-template-columns: repeat(3, 1fr); padding: 40px; }
        .nav-col.address-col { grid-column: auto; }
        .footer-bottom { padding: 18px 40px 24px; }
      }
  
      @media (max-width: 768px) {
        .footer-cta { grid-template-columns: 1fr; padding: 36px 24px; gap: 36px; }
        .cta-divider { display: none; }
        .cta-left, .cta-right { padding: 0; }
        .footer-nav  { grid-template-columns: repeat(2, 1fr); padding: 32px 24px; }
        .footer-bottom { flex-direction: column; gap: 14px; padding: 16px 24px 20px; }
      }
  
      @media (max-width: 480px) {
        .footer-nav { grid-template-columns: 1fr 1fr; }
      }



      /* ══════════════════════════════════════════
   SERVICES CARDS SECTION
══════════════════════════════════════════ */
/* ══════════════════════════════════════════
   SERVICES CARDS SECTION
══════════════════════════════════════════ */
.services-cards-section {
  padding: var(--section-pad);
  background: var(--primary-light);
}

.services-cards-wrapper {
  
  margin: 0 auto;
  background: #edf0f7;
  border-radius: var(--radius-lg);
  padding: clamp(24px, 3vw, 40px);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(14px, 2vw, 22px);
}

/* Individual Card */
.service-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: clamp(20px, 2.5vw, 32px) clamp(18px, 2vw, 28px);
  border: 1.5px solid rgba(19, 81, 216, 0.07);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(19, 81, 216, 0.18);
}

/* Icon wrap */
.service-icon-wrap {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: rgba(19, 81, 216, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4px;
  flex-shrink: 0;
  transition: background var(--transition);
}

.service-card:hover .service-icon-wrap {
  background: rgba(19, 81, 216, 0.14);
}

/* ── Demo placeholder icon ──
   Replace .icon-placeholder's contents with your
   real <img>, <svg>, or <i class="ri-..."> later.
   You can delete .icon-placeholder once replaced. */
.icon-placeholder {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Poppins", sans-serif;
  font-size: 9px;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.03em;
  opacity: 0.7;
}

/* Title */
.service-card-title {
  font-family: "Poppins", sans-serif;
  font-size: clamp(14px, 1.4vw, 16px);
  font-weight: 700;
  color: var(--dark);
  line-height: 1.25;
  margin: 0;
}

/* Description */
.service-card-desc {
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  color: var(--dark2);
  line-height: 1.65;
  margin: 0;
}

/* Feature list */
.service-features {
  list-style: none;
  padding: 0;
  margin: 6px 0 0;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.service-features li {
  font-family: "Poppins", sans-serif;
  font-size: 12.5px;
  color: var(--dark2);
  display: flex;
  align-items: center;
  gap: 8px;
  line-height: 1.4;
}

/* Checkmark (CSS-drawn circle with tick) */
.feat-check {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 1.5px solid var(--primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.feat-check::after {
  content: '';
  display: block;
  width: 5px;
  height: 3px;
  border-left: 1.5px solid var(--primary);
  border-bottom: 1.5px solid var(--primary);
  transform: rotate(-45deg) translateY(-1px);
}

/* Responsive */
@media (max-width: 900px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .services-cards-wrapper {
    padding: 18px;
  }

}

 /* ════════════════════════════════════════
         HEADER / NAVIGATION
      ════════════════════════════════════════ */
      #site-header {
        position: sticky;
        top: 0;
        z-index: 100;
        width: 100%;
        height: 72px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0 clamp(20px, 5vw, 72px);
        background: var(--white);
        border-bottom: 1.5px solid var(--gray);
        gap: 24px;
      }
  
      .site-logo {
        width: clamp(100px, 12vw, 160px);
        flex-shrink: 0;
      }
  
      /* Primary nav */
      .primary-nav {
        display: flex;
        align-items: center;
        gap: clamp(16px, 2.5vw, 36px);
      }
  
      .primary-nav a {
        color: var(--logo1);
        font-weight: 500;
        font-size: 15px;
        position: relative;
        transition: color var(--transition);
      }
  
      .primary-nav a::after {
        content: "";
        position: absolute;
        bottom: -3px;
        left: 0;
        width: 0;
        height: 2px;
        background: var(--logo2);
        transition: width var(--transition);
      }
  
      .primary-nav a:hover { color: var(--logo2); }
      .primary-nav a:hover::after { width: 100%; }
  
      /* Hamburger */
      .nav-toggle {
        display: none;
        flex-direction: column;
        gap: 5px;
        width: 28px;
        padding: 4px 0;
        background: none;
        border: none;
        cursor: pointer;
      }
  
      .nav-toggle span {
        display: block;
        height: 2px;
        background: var(--logo1);
        border-radius: 2px;
        transition: all 0.3s ease;
      }
  
      /* Mobile nav drawer */
      .mobile-nav {
        display: none;
        position: fixed;
        inset: 72px 0 0 0;
        background: var(--white);
        z-index: 99;
        padding: 32px clamp(40px, 5vw, 40px);
        flex-direction: column;
        gap: 24px;
        transform: translateY(-100%);
        transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
      }
  
      .mobile-nav.open {
        transform: translateY(0);
      }
  
      .mobile-nav a {
        font-size: 18px;
        font-weight: 600;
        color: var(--logo1);
    
      }
  
      @media (max-width: 768px) {
        .primary-nav, #site-header .btn-main { display: none; }
        .nav-toggle { display: flex; }
        .mobile-nav { display: flex; }
          .mobile-nav .btn-main{
      color: var(--white);
    font-size: 14px;
        padding: 12px 28px;}
      }
      /* Active nav link */
.primary-nav a.active {
  color: var(--logo2);
}
.primary-nav a.active::after {
  width: 100%;
}

/* Mobile active */
.mobile-nav a.active {
  color: var(--logo2);
}

/* ══════════════════════════════════════════
   WHY CHOOSE SART TECH
══════════════════════════════════════════ */
.why-section {
  padding: var(--section-pad);
  background: var(--primary-light);
}

.why-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: clamp(32px, 5vw, 72px);
}

/* Image */
.why-img-wrap {
  flex: 0 0 clamp(260px, 38%, 420px);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.why-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: var(--radius-md);
}

/* Content side */
.why-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.why-heading {
  font-family: "Poppins", sans-serif;
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 700;
  color: var(--dark);
  line-height: 1.2;
  margin: 0;
}

.why-desc {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  color: var(--dark2);
  line-height: 1.72;
  margin: 0;
  max-width: 480px;
}

/* Stats 2x2 grid */
.why-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 4px;
}

.why-stat-card {
  background: var(--white);
  border: 1.5px solid rgba(19, 81, 216, 0.08);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  transition: box-shadow var(--transition), border-color var(--transition);
}

.why-stat-card:hover {
  box-shadow: var(--shadow-sm);
  border-color: rgba(19, 81, 216, 0.2);
}

.why-stat-val {
  font-family: "Poppins", sans-serif;
  font-size: clamp(18px, 2.2vw, 24px);
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
}

.why-stat-label {
  font-family: "Poppins", sans-serif;
  font-size: 12.5px;
  color: var(--dark2);
  font-weight: 400;
}

@media (max-width: 820px) {
  .why-inner {
    flex-direction: column;
  }

  .why-img-wrap {
    flex: none;
    width: 100%;
    max-height: 280px;
  }

  .why-img {
    max-height: 280px;
  }

  .why-desc {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .why-stats-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* ══════════════════════════════════════════
   CTA BANNER
══════════════════════════════════════════ */
.cta-banner-section {
  padding: var(--section-pad);
  background: var(--primary-light);
}

.cta-banner-inner {
  max-width: 1200px;
  margin: 0 auto;
  background: var(--dark);
  border-radius: var(--radius-lg);
  padding: clamp(48px, 6vw, 80px) clamp(24px, 5vw, 72px);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 18px;
}

.cta-banner-heading {
  font-family: "Poppins", sans-serif;
  font-size: clamp(24px, 3.5vw, 38px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  max-width: 520px;
  margin: 0;
}

.cta-banner-desc {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.72;
  max-width: 480px;
  margin: 0;
}

.cta-banner-btns {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 6px;
}

/* Outline button (white border) */
.cta-btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  border: 2px solid var(--white);
  border-radius: var(--radius-sm);
  background: transparent;
  color: var(--white);
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: background var(--transition), color var(--transition), transform var(--transition);
  white-space: nowrap;
}

.cta-btn-outline:hover {
  background: var(--white);
  color: var(--dark);
  transform: translateY(-2px);
}

/* Solid button (primary blue) */
.cta-btn-solid {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  border: 2px solid var(--primary);
  border-radius: var(--radius-sm);
  background: var(--primary);
  color: var(--white);
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
  white-space: nowrap;
}

.cta-btn-solid:hover {
  background: var(--primary2);
  border-color: var(--primary2);
  transform: translateY(-2px);
}

@media (max-width: 560px) {
  .cta-banner-btns {
    flex-direction: column;
    width: 100%;
  }

  .cta-btn-outline,
  .cta-btn-solid {
    width: 100%;
  }
}