/* ════════════════════════════════════════
       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);
      }
  
      /* ════════════════════════════════════════
         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); }
      } 


      /*  ------------------ FAQ List ------------------ */

      #stt-faq-list {
        background: var(--primary-light);
        padding: var(--section-pad);
        font-family: 'DM Sans', sans-serif;
      }
  
      /* ── Header area ── */
      .stt-faq__header {
        margin-bottom: clamp(28px, 4vw, 48px);
        text-align: center;
      }
  
      .stt-faq__eyebrow {
        display: inline-block;
        font-size: 0.75rem;
        font-weight: 500;
        letter-spacing: 0.12em;
        text-transform: uppercase;
        color: var(--primary);
        margin-bottom: 12px;
      }
  
      .stt-faq__title {
        font-family: 'Syne', sans-serif;
        font-weight: 800;
        font-size: clamp(1.6rem, 3.5vw, 2.2rem);
        color: var(--dark);
        letter-spacing: -0.02em;
        line-height: 1.15;
      }
  
      /* ── Two-column grid ── */
      .stt-faq__grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
      }
  
      @media (max-width: 640px) {
        .stt-faq__grid { grid-template-columns: 1fr; }
      }
  
      /* ── Individual card ── */
      .stt-faq__card {
        background: var(--white);
        border-radius: var(--radius-lg);
        padding: 24px 22px;
        display: flex;
        flex-direction: column;
        gap: 10px;
        box-shadow: var(--shadow-sm);
        border: 1px solid rgba(19,81,216,0.06);
        transition: box-shadow var(--transition), transform var(--transition);
      }
  
      .stt-faq__card:hover {
        box-shadow: var(--shadow-md);
        transform: translateY(-2px);
      }
  
      /* ── Card icon ── */
      .stt-faq__card-icon {
        width: 36px;
        height: 36px;
        background: var(--primary-light);
        border-radius: var(--radius-sm);
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        margin-bottom: 2px;
      }
  
      .stt-faq__card-icon svg {
        width: 18px;
        height: 18px;
        color: var(--primary);
      }
  
      /* ── Card question ── */
      .stt-faq__card-question {
        font-family: 'Syne', sans-serif;
        font-weight: 700;
        font-size: 0.97rem;
        color: var(--dark);
        line-height: 1.35;
      }
  
      /* ── Card answer ── */
      .stt-faq__card-answer {
        font-size: 0.85rem;
        line-height: 1.7;
        color: var(--dark2);
      }


      /* ------------- whyus section ----------------- */
      #stt-why-us {
        background: var(--dark);
        padding: var(--section-pad);
        font-family: 'DM Sans', sans-serif;
        display: flex;
        align-items: center;
        justify-content: center;
      }
  
      /* ── Inner layout ── */
      .stt-whyus__inner {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: clamp(32px, 5vw, 64px);
        align-items: center;
        max-width: 1100px;
        width: 100%;
      }
  
      @media (max-width: 768px) {
        .stt-whyus__inner {
          grid-template-columns: 1fr;
        }
      }
  
      /* ── Image side ── */
      .stt-whyus__img-wrap{
       width: 40vw; 
      }
  
      /* ── Placeholder image — replace src later ── */
      .stt-whyus__img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
      }
  
      /* Placeholder shown when no real image is set */
  
      .stt-whyus__img-placeholder svg {
        opacity: 0.25;
      }
  
      /* ── Content side ── */
      .stt-whyus__content {
        display: flex;
        flex-direction: column;
        gap: clamp(16px, 2.5vw, 22px);
      }
  
      .stt-whyus__heading {
        font-family: 'Syne', sans-serif;
        font-weight: 800;
        font-size: clamp(1.7rem, 3.4vw, 2.5rem);
        color: var(--white);
        line-height: 1.15;
        letter-spacing: -0.02em;
      }
  
      .stt-whyus__body {
        display: flex;
        flex-direction: column;
        gap: 14px;
      }
  
      .stt-whyus__para {
        font-size: clamp(0.85rem, 1.4vw, 0.93rem);
        line-height: 1.72;
        color: rgba(255,255,255,0.5);
      }
  
      /* ── Badge list ── */
      .stt-whyus__badges {
        display: flex;
        flex-wrap: wrap;
        gap: 16px;
        margin-top: 4px;
      }
  
      .stt-whyus__badge {
        display: inline-flex;
        align-items: center;
        gap: 7px;
        font-size: 0.85rem;
        font-weight: 500;
        color: var(--white);
      }
  
      .stt-whyus__badge-dot {
        width: 20px;
        height: 20px;
        border-radius: 50%;
        background: var(--primary);
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
      }
  
      .stt-whyus__badge-dot svg {
        width: 11px;
        height: 11px;
        stroke: var(--white);
      }



      /* ------- appointment Section */

      #stt-cta-banner {
        padding: clamp(20px, 4vw, 48px) clamp(20px, 5vw, 72px);
        font-family: 'DM Sans', sans-serif;
        display: flex;
        align-items: center;
        justify-content: center;
      }
  
      /* ── Card ── */
      .stt-cta__card {
        width: 100%;
        max-width: 1100px;
        background: #222222;
        border-radius: var(--radius-lg);
        padding: clamp(28px, 4vw, 44px) clamp(24px, 4vw, 48px);
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 32px;
      }
  
      @media (max-width: 640px) {
        .stt-cta__card {
          flex-direction: column;
          align-items: flex-start;
        }
      }
  
      /* ── Left side ── */
      .stt-cta__left {
        display: flex;
        flex-direction: column;
        gap: 10px;
      }
  
      /* ── Avatar stack ── */
      .stt-cta__avatars {
        display: flex;
        align-items: center;
        margin-bottom: 4px;
      }
  
      .stt-cta__avatar {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        border: 2px solid #222222;
        overflow: hidden;
        margin-left: -10px;
        background: var(--dark2);
        flex-shrink: 0;
      }
  
      .stt-cta__avatar:first-child { margin-left: 0; }
  
      /* Placeholder avatars using SVG faces */
      .stt-cta__avatar img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
      }
  
      .stt-cta__avatar-placeholder {
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 0.75rem;
        font-weight: 600;
        color: var(--white);
      }
  
      /* ── Heading ── */
      .stt-cta__heading {
        font-family: 'Syne', sans-serif;
        font-weight: 700;
        font-size: clamp(1.05rem, 2vw, 1.25rem);
        color: var(--white);
        letter-spacing: -0.01em;
        line-height: 1.3;
      }
  
      /* ── Sub text ── */
      .stt-cta__sub {
        font-size: clamp(0.82rem, 1.3vw, 0.9rem);
        line-height: 1.65;
        color: rgba(255,255,255,0.45);
        max-width: 420px;
      }
  
      /* ── Button ── */
      .stt-cta__btn {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        padding: 16px 32px;
        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;
        white-space: nowrap;
        flex-shrink: 0;
        box-shadow: var(--shadow-md);
        transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
      }
  
      .stt-cta__btn:hover {
        background: var(--primary2);
        transform: translateY(-2px);
        box-shadow: var(--shadow-lg);
      }
  
      .stt-cta__btn:active { transform: translateY(0); }


      /* ════════════════════════════════════════
         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; }
      }


  /* 🔁 Scroller start */
  /* 🔁 Scroller start */
    /* 🔁 Scroller start */
      /* 🔁 Scroller start */
        /* 🔁 Scroller start */
.sc-section {
  width: 100%;
  padding: 40px 0;

  overflow: hidden;
}

.sc-title {
  text-align: center;
font-family: "Poppins", sans-serif;
font-size: clamp(22px, 3vw, 32px);
font-weight: 700;
color: var(--dark);
line-height: 1.2;
  margin-bottom: 28px;
}

.sc-wrapper {
  overflow: hidden;
  position: relative;
}

.sc-track {
  display: flex;
  gap: 32px;
  width: max-content;
  animation: sc-scroll 30s linear infinite;
}

@keyframes sc-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-33.333%); }
}

.sc-track:hover {
  animation-play-state: paused;
}

.sc-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.sc-box {
  width: 72px;
  height: 72px;
  border-radius: 16px;
  border: 1px solid #e5e7eb;
  background: #f9fafb;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sc-box img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.sc-name {
  font-size: 11px;
  font-weight: 600;
  color: #6b7280;
}
      