
:root {
  --blue: #4A9CD6;
  --blue-dark: #2F6FA3;
  --green: #7DBE3C;
  --green-dark: #5A9E2F;
  --light: #f4f6f8;
}

/* GLOBAL */
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--light);
}

h1,h2,h3 {
  font-family: 'Syne', sans-serif;
}

/* NAVBAR */
.navbar {
  background: white;
  border-bottom: 1px solid #e5e7eb;
}

.nav-link:hover {
  color: var(--green);
}

/* BUTTONS */
.btn-primary {
  background: linear-gradient(135deg, var(--blue-dark), var(--blue));
  border: none;
}

.btn-success {
  background: linear-gradient(135deg, var(--green-dark), var(--green));
  border: none;
}

/* HERO */
.hero {
  background: linear-gradient(135deg, #0b1f33, #2F6FA3, #7DBE3C);
  color: white;
  padding: 120px 0;
}

/* CARDS */
.card {
  border: none;
  border-radius: 16px;
  transition: .3s;
}

.card:hover {
  transform: translateY(-8px);
}

/* SECTION SPACING */
section {
  padding: 80px 0;
}

/* FOOTER */
.footer {
  background: #0b1f33;
  color: rgba(255,255,255,.7);
}
 
    :root {
      --green-50:   #f0faf0;
      --green-100:  #dcf0dc;
      --green-200:  #b4dcb4;
      --green-400:  #7ab648;
      --green-500:  #5a9e2f;
      --green-600:  #3d7a1a;
      --blue-glow:  #4a9fff;
      --blue-mid:   #2563eb;
      --blue-deep:  #1a3a7c;
      --teal:       #0d9488;
      --text-dark:  #0f1624;
      --text-mid:   #374151;
      --text-light: #6b7280;
      --white:      #ffffff;
      --silver-50:  #f8f9fb;
      --silver-100: #eef0f5;
      --silver-200: #dde1ea;
      --glass-bg:   rgba(255,255,255,0.68);
      --glass-border: rgba(255,255,255,0.45);
      --shadow-sm:  0 2px 12px rgba(90,158,47,.08);
      --shadow-md:  0 8px 32px rgba(90,158,47,.14);
      --shadow-glow: 0 0 32px rgba(122,182,72,.35);
      --radius-lg:  18px;
      --radius-xl:  28px;
      --transition: all .35s cubic-bezier(.4,0,.2,1);
    }

    *, *::before, *::after { box-sizing: border-box; }
    html { scroll-behavior: smooth; }

    body {
      font-family: 'DM Sans', sans-serif;
      background: var(--silver-50);
      color: var(--text-dark);
      overflow-x: hidden;
    }

    h1, h2, h3, h4, h5, h6 {
      font-family: 'Syne', sans-serif;
      letter-spacing: -0.02em;
    }

    section { padding: 90px 0; }

    /* SECTION LABELS */
    .section-label {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-family: 'DM Sans', sans-serif;
      font-size: .72rem;
      font-weight: 500;
      letter-spacing: .18em;
      text-transform: uppercase;
      color: var(--green-500);
      background: rgba(90,158,47,.08);
      border: 1px solid rgba(90,158,47,.22);
      padding: 5px 14px;
      border-radius: 50px;
      margin-bottom: 18px;
    }

    .section-label::before {
      content: '';
      display: inline-block;
      width: 6px; height: 6px;
      background: var(--green-400);
      border-radius: 50%;
      box-shadow: 0 0 8px var(--green-400);
    }

    /* NAVBAR */
    #mainNav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 1000;
      padding: 0;
      transition: var(--transition);
    }

    #mainNav .nav-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 14px 32px;
      /*background: rgba(248,249,251,0.82);*/
      background-color: white;
      backdrop-filter: blur(20px) saturate(180%);
      -webkit-backdrop-filter: blur(20px) saturate(180%);
      border-bottom: 1px solid var(--silver-200);
      transition: var(--transition);
    }

    #mainNav.scrolled .nav-inner {
      padding: 10px 32px;
      background: rgba(248,249,251,0.96);
      box-shadow: var(--shadow-md);
    }

    .nav-logo {
      display: flex;
      align-items: center;
      gap: 10px;
      text-decoration: none;  
      /*background-color: white;*/
    }

    .nav-logo .logo-mark {
      width: 52px; height: 52px;
    
      /* background: linear-gradient(135deg, var(--green-500), var(--green-400));*/
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      /*box-shadow: 0 4px 16px rgba(90,158,47,.35);*/
      transition: transform .3s ease; 
    }

    .nav-logo:hover .logo-mark { transform: scale(1.06); }

    .nav-logo .logo-mark i {
      color: white;
      font-size: 1.4rem;
    }

    .nav-logo .logo-text {
      font-family: 'Syne', sans-serif;
      font-weight: 800;
      font-size: 1.0rem;
      color: var(--text-dark);
      line-height: 1;
    }

    .nav-logo .logo-sub {
      font-size: .62rem;
      font-weight: 400;
      color: var(--text-light);
      letter-spacing: .06em;
      text-transform: uppercase;
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 28px;
      list-style: none;
      margin: 0; padding: 0;
    }

    .nav-links a {
      font-size: .88rem;
      font-weight: 500;
      color: var(--text-mid);
      text-decoration: none;
      transition: color .2s;
      position: relative;
    }

    .nav-links a::after {
      content: '';
      position: absolute;
      bottom: -4px; left: 0;
      width: 0; height: 2px;
      background: var(--green-400);
      border-radius: 2px;
      transition: width .25s ease;
    }

    .nav-links a:hover { color: var(--green-500); }
    .nav-links a:hover::after { width: 100%; }

    @media (max-width: 768px) {

      .nav-logo .logo-text {
        font-family: 'Syne', sans-serif;
        font-weight: 700;
        font-size: 1rem;
      }

      .nav-logo .logo-sub {
        font-size: 0.48rem;
      }

      .footer-brand .fb-name {
          font-size: 0.8rem;
      }

      #mainNav .nav-inner {
        /*padding: 10px 12px;*/
      }

    }


    .btn-nav-cta {
      background: linear-gradient(135deg, var(--blue-dark), var(--blue));
      color: white !important;
      padding: 8px 22px;
      border-radius: 50px;
      font-size: .85rem;
      font-weight: 600;
      text-decoration: none;
      transition: var(--transition);
      box-shadow: 0 4px 16px rgba(90,158,47,.3);
      white-space: nowrap;
      display: inline-flex;
      align-items: center;
    }

    /* Kill the nav underline pseudo-element on the CTA pill */
    .btn-nav-cta::after { display: none !important; }

    .btn-nav-cta:hover {
      background: linear-gradient(135deg, var(--green-500), var(--green-400));
      box-shadow: var(--shadow-glow);
      transform: translateY(-1px);
    }

    .btn-nav-cta:focus{
      text-decoration:none !important;
    }

    .hamburger {
      display: none;
      background: none;
      border: none;
      cursor: pointer;
      padding: 4px;
      color: var(--text-dark);
      font-size: 1.4rem;
    }

    .mobile-nav {
      display: none;
      position: fixed;
      top: 0; left: 0; right: 0; bottom: 0;
      background: rgba(248,249,251,0.97);
      backdrop-filter: blur(24px);
      z-index: 999;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 24px;
    }

    .mobile-nav.open { display: flex; }

    .mobile-nav a {
      font-family: 'Syne', sans-serif;
      font-size: 1.6rem;
      font-weight: 700;
      color: var(--text-dark);
      text-decoration: none;
      transition: color .2s;
    }

    .mobile-nav a:hover { color: var(--green-500); }

    .mobile-close {
      position: absolute;
      top: 90px; right: 20px;
      width: 44px; height: 44px;
      background: #fff0f0;
      border: 1.5px solid #fca5a5;
      border-radius: 50%;
      font-size: 1.2rem;
      cursor: pointer;
      color: #e11d28;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all .2s ease;
      z-index: 10;
    }

    .mobile-close:hover {
      background: #e11d28;
      border-color: #e11d28;
      color: white;
      transform: rotate(90deg);
    }

    @media (max-width: 768px) {
      .nav-links { display: none; }
      .hamburger { display: block; }
    }

    /* ============================================================
       HERO SLIDER
    ============================================================ */
    #heroSlider {
      position: relative;
      height: 100vh;
      min-height: 640px;
      overflow: hidden;
    }

    .slide {
      position: absolute;
      inset: 0;
      opacity: 0;
      transition: opacity 1.2s ease-in-out;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .slide.active { opacity: 1; z-index: 2; }

    /* VIDEO BACKGROUND */
    .hero-video-bg {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      z-index: 0;
      overflow: hidden;
    }

    .hero-video-bg video {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
      /* full opacity — vignette overlay handles contrast, not dimming */
      opacity: 1;
      filter: contrast(1.05) brightness(0.95) saturate(1.1);
      transform: scale(1.05);
    }

    /* Slim cinematic vignette — edges darken, centre stays open */
    /* Cinematic edge vignette — frame the video without killing it */
    #heroSlider::after {
      content: "";
      position: absolute;
      inset: 0;
      pointer-events: none;
      z-index: 1;
      background:
        linear-gradient(180deg, rgba(11,31,51,.60) 0%, transparent 28%),
        linear-gradient(0deg,   rgba(11,31,51,.70) 0%, transparent 35%),
        radial-gradient(ellipse at center, transparent 40%, rgba(0,0,0,.48) 100%);
    }

    /* Per-slide overlay — brand-tint whisper only */
    .slide-overlay {
     /*  position: absolute;
      inset: 0;
      z-index: 1;
      opacity: 0;
      transition: opacity 1.2s ease-in-out;
      background: linear-gradient(
        135deg,
        rgba(11,31,51,.28) 0%,
        rgba(26,58,124,.14) 50%,
        transparent 100%
      );
      */
    }

    @keyframes gradientShift {
      0%   { background-position: 20% 30%, 80% 70%, center; }
      100% { background-position: 30% 40%, 70% 60%, center; }
    }

    /*.slide.active .slide-overlay { opacity: 1; }*/
    .slide::after { content: none; }

    /* ── Content card: frosted scrim — the real readability layer ── */
    .slide-content {
      position: relative;
      z-index: 3;
      text-align: center;
      color: white;
      padding: 44px 52px 40px;
      max-width: 800px;
      background: rgba(8, 22, 40, 0.44);
      backdrop-filter: blur(14px);
      -webkit-backdrop-filter: blur(14px);
      border-radius: 20px;
      border: 1px solid rgba(255,255,255,.09);
      box-shadow:
        inset 0 1px 0 rgba(74,159,255,.25),
        0 32px 80px rgba(0,0,0,.40);
    }

    /* green-to-blue top accent line on the card */
    .slide-content::before {
      content: '';
      position: absolute;
      top: 0; left: 10%; right: 10%;
      height: 2px;
      border-radius: 2px;
      background: linear-gradient(90deg,
        transparent,
        var(--green-400) 30%,
        var(--blue-glow) 70%,
        transparent
      );
    }

    /* ── Eyebrow: green pill with leading dot ── */
    /* ── Eyebrow: green→blue gradient border + gradient text + pulsing dot ── */
    .slide-eyebrow {
      font-size: .70rem;
      letter-spacing: .24em;
      text-transform: uppercase;
      font-weight: 700;
      margin-bottom: 16px;
      opacity: 0;
      transform: translateY(14px);
      transition: opacity .60s .22s ease, transform .60s .22s ease;
      display: inline-flex;
      align-items: center;
      gap: 9px;
      padding: 6px 18px;
      border-radius: 50px;
      position: relative;
      isolation: isolate;
      /* crisp white text — fully readable over any background */
      color: #ffffff;
      -webkit-text-fill-color: #ffffff;
      text-shadow: 0 0 10px rgba(74,199,255,.45), 0 1px 2px rgba(0,0,0,.50);
      /* dark pill fill — kept intact */
      background: rgba(8, 22, 40, 0.62);
      border: 1.5px solid transparent;
      /* glow around the pill */
      filter:
        drop-shadow(0 0 5px rgba(74,159,255,.30))
        drop-shadow(0 0 3px rgba(122,182,72,.22));
    }

    /* gradient border ring via ::after — unchanged */
    .slide-eyebrow::after {
      content: '';
      position: absolute;
      inset: -1.5px;
      border-radius: 50px;
      background: linear-gradient(90deg, var(--green-400), var(--blue-glow));
      z-index: -1;
      opacity: .70;
    }

    /* dark fill behind text — unchanged */
    .slide-eyebrow::before {
      content: '';
      position: absolute;
      inset: 0;
      border-radius: 50px;
      background: rgba(8, 22, 40, 0.62);
      z-index: -1;
    }

    /* pulsing dot — green→blue gradient */
    .slide-eyebrow .eyebrow-dot {
      display: inline-block;
      width: 7px; height: 7px;
      border-radius: 50%;
      flex-shrink: 0;
      background: linear-gradient(135deg, var(--green-400), var(--blue-glow));
      animation: dotPulse 2.4s ease-in-out infinite;
    }

    @keyframes dotPulse {
      0%, 100% { box-shadow: 0 0 0 2px rgba(74,159,255,.15), 0 0  7px rgba(122,182,72,.50); }
      50%       { box-shadow: 0 0 0 3px rgba(74,159,255,.28), 0 0 13px rgba(74,159,255,.55); }
    }

    .slide.active .slide-eyebrow { opacity: 1; transform: translateY(0); }

    /* ── Heading: sharp white — scrim does the work, not glow ── */
    .slide-heading {
      font-family: 'Syne', sans-serif;
      font-size: clamp(1.9rem, 4.8vw, 3.4rem);
      font-weight: 800;
      line-height: 1.05;
      margin-bottom: 14px;
      color: #ffffff;
      opacity: 0;
      transform: translateY(22px);
      transition: opacity .75s .38s ease, transform .75s .38s ease;
      text-shadow: 0 1px 3px rgba(0,0,0,.65);
      letter-spacing: -.01em;
    }

    @media (max-width: 768px) {
      .slide-content {
        padding: 28px 22px 26px;
        border-radius: 16px;
      max-width: calc(100vw - 32px);   /* arrows hidden on mobile, use normal margin */
        margin: 0 auto;
      }
      .slide-heading  { font-size: clamp(1.5rem, 6vw, 2.1rem); }
      .slide-sub {
        font-size: .88rem;
        max-width: 100%;
        margin-bottom: 22px;
      }
      /* Stack CTAs vertically, full width inside card */
      .slide-ctas {
        flex-direction: column;
        gap: 10px;
        align-items: stretch;
      }
      .btn-hero-primary,
      .btn-hero-ghost {
        justify-content: center;
        width: 100%;
        padding: 13px 20px;
        font-size: .82rem;
      }
      /* Arrows fully transparent on mobile – invisible, no visual presence */
      .slide-arrow {
        background: transparent !important;
        border-color: transparent !important;
        color: transparent !important;
        box-shadow: none !important;
        backdrop-filter: none !important;
        pointer-events: none;
      }
      /* Dots closer to bottom edge */
      .slide-dots { bottom: 20px; }
    }

    /* Extra-small phones */
    @media (max-width: 400px) {
      .slide-content {
        padding: 22px 16px 20px;
        max-width: calc(100vw - 28px);
      }
      .slide-eyebrow { font-size: .62rem; letter-spacing: .18em; padding: 5px 12px; }
      .slide-heading  { font-size: clamp(1.35rem, 6.5vw, 1.8rem); }
    }

    .slide.active .slide-heading { opacity: 1; transform: translateY(0); }

    /* ── Sub: near-white, left accent bar, crisp drop shadow ── */
    .slide-sub {
      font-size: clamp(.88rem, 3.5vw, 1.05rem);
      font-weight: 300;
      color: rgba(255,255,255,.88);
      margin: 0 auto 26px;
      max-width: 620px;
      line-height: 1.65;
      opacity: 0;
      transform: translateY(14px);
      transition: opacity .68s .52s ease, transform .68s .52s ease;
      text-shadow: 0 1px 3px rgba(0,0,0,.50);
      padding: 0 0 0 14px;
      border-left: 2px solid;
      border-image: linear-gradient(180deg, var(--green-400), var(--blue-glow)) 1;
      text-align: left;
    }

    .slide.active .slide-sub { opacity: 1; transform: translateY(0); }

    .slide-ctas {
      display: flex;
      gap: 14px;
      justify-content: center;
      flex-wrap: wrap;
      opacity: 0;
      transform: translateY(16px);
      transition: opacity .7s .75s ease, transform .7s .75s ease;
    }

    .slide.active .slide-ctas { opacity: 1; transform: translateY(0); }

    .btn-hero-primary {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: linear-gradient(135deg, var(--green-500), var(--green-400));
      color: #ffffff;
      -webkit-text-fill-color: #ffffff;
      text-decoration: none;
      padding: 14px 34px;
      border-radius: 50px;
      font-size: .88rem;
      font-weight: 700;
      letter-spacing: .06em;
      text-transform: uppercase;
      /* sharp crisp border */
      border: 1.5px solid rgba(255,255,255,.30);
      box-shadow:
        0 0 0 1px rgba(122,182,72,.60),
        0 8px 28px rgba(90,158,47,.50),
        inset 0 1px 0 rgba(255,255,255,.25);
      text-shadow: 0 1px 2px rgba(0,0,0,.30);
      transition: var(--transition);
    }

    .btn-hero-primary:hover {
      transform: translateY(-3px);
      box-shadow:
        0 0 0 1px rgba(122,182,72,.80),
        0 14px 40px rgba(122,182,72,.65),
        inset 0 1px 0 rgba(255,255,255,.30);
      color: #ffffff;
      -webkit-text-fill-color: #ffffff;
    }

    .btn-hero-ghost {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: rgba(10, 25, 47, 0.50);
      color: #ffffff;
      -webkit-text-fill-color: #ffffff;
      text-decoration: none;
      padding: 14px 34px;
      border-radius: 50px;
      font-size: .88rem;
      font-weight: 700;
      letter-spacing: .06em;
      text-transform: uppercase;
      /* sharp defined border */
      border: 1.5px solid rgba(255,255,255,.70);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      box-shadow:
        0 0 0 1px rgba(255,255,255,.12),
        inset 0 1px 0 rgba(255,255,255,.15);
      text-shadow: 0 1px 3px rgba(0,0,0,.50);
      transition: var(--transition);
    }

    .btn-hero-ghost:hover {
      background: rgba(255,255,255,.18);
      color: #ffffff;
      -webkit-text-fill-color: #ffffff;
      border-color: rgba(255,255,255,.95);
      box-shadow:
        0 0 0 1px rgba(255,255,255,.25),
        0 8px 24px rgba(0,0,0,.25),
        inset 0 1px 0 rgba(255,255,255,.20);
      transform: translateY(-2px);
    }

    .slide-dots {
      position: absolute;
      bottom: 36px;
      left: 50%;
      transform: translateX(-50%);
      z-index: 10;
      display: flex;
      gap: 8px;
    }

    .slide-dot {
      width: 8px; height: 8px;
      border-radius: 50%;
      background: rgba(255,255,255,.35);
      cursor: pointer;
      transition: var(--transition);
      border: none;
      padding: 0;
    }

    .slide-dot.active {
      background: var(--blue);
      width: 28px;
      border-radius: 4px;
      box-shadow: 0 0 12px var(--blue);
    }

    .slide-arrow {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      z-index: 10;
      background: rgba(255,255,255,.12);
      border: 1px solid rgba(255,255,255,.25);
      color: white;
      width: 48px; height: 48px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      backdrop-filter: blur(8px);
      transition: var(--transition);
      font-size: 1.1rem;
    }

    .slide-arrow:hover { background: rgba(47,111,163,.55); }
    .slide-arrow.prev { left: 24px; }
    .slide-arrow.next { right: 24px; }

    /* ============================================================
       STATS BAR
    ============================================================ */
    #statsBar {
      padding: 0;
      background: white;
      border-bottom: 1px solid var(--silver-200);
      box-shadow: var(--shadow-sm);
    }

    .stats-inner {
      display: flex;
      align-items: stretch;
      overflow-x: auto;
      -ms-overflow-style: none;
      scrollbar-width: none;
    }

    .stats-inner::-webkit-scrollbar { display: none; }

    .stat-item {
      flex: 1;
      min-width: 160px;
      text-align: center;
      padding: 28px 24px;
      border-right: 1px solid var(--silver-200);
      transition: var(--transition);
    }

    .stat-item:last-child { border-right: none; }
    .stat-item:hover { background: var(--green-50); }

    .stat-number {
      font-family: 'Syne', sans-serif;
      font-size: 2rem;
      font-weight: 800;
      color: var(--green-500);
      line-height: 1;
      margin-bottom: 4px;
    }

    .stat-item:nth-child(even) .stat-number { color: var(--blue-dark); }

    .stat-label {
      font-size: .78rem;
      color: var(--text-light);
      font-weight: 400;
      letter-spacing: .04em;
    }

    /* ============================================================
       SERVICES SECTION
    ============================================================ */
    #services {
      background: linear-gradient(160deg, var(--silver-50) 0%, white 50%, rgba(74,156,214,.06) 100%);
      position: relative;
      overflow: hidden;
    }

    #services::before {
      content: '';
      position: absolute;
      top: -120px; right: -120px;
      width: 420px; height: 420px;
      background: radial-gradient(circle, rgba(74,156,214,.12) 0%, transparent 70%);
      border-radius: 50%;
    }

    .service-card {
      background: var(--glass-bg);
      border: 1px solid var(--glass-border);
      border-radius: var(--radius-lg);
      padding: 36px 30px;
      height: 100%;
      backdrop-filter: blur(14px);
      box-shadow: var(--shadow-sm);
      transition: var(--transition);
      position: relative;
      overflow: hidden;
      cursor: default;
    }

    .service-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 3px;
      background: linear-gradient(90deg, var(--green-500), var(--green-400));
      border-radius: var(--radius-lg) var(--radius-lg) 0 0;
      opacity: 0;
      transition: opacity .3s;
    }

    .service-card:hover {
      transform: translateY(-10px);
      box-shadow: var(--shadow-md), 0 0 40px rgba(122,182,72,.15);
      border-color: rgba(122,182,72,.3);
    }

    .service-card:hover::before { opacity: 1; }

    .service-icon {
      width: 58px; height: 58px;
      background: linear-gradient(135deg, rgba(90,158,47,.1), rgba(122,182,72,.15));
      border-radius: 14px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 22px;
      transition: var(--transition);
    }

    .service-card:hover .service-icon {
      background: linear-gradient(135deg, var(--green-500), var(--green-400));
      box-shadow: 0 8px 24px rgba(90,158,47,.35);
    }

    .service-icon i {
      font-size: 1.6rem;
      color: var(--green-500);
      transition: color .3s;
    }

    .service-card:hover .service-icon i { color: white; }

    .service-title {
      font-family: 'Syne', sans-serif;
      font-size: 1.12rem;
      font-weight: 700;
      color: var(--text-dark);
      margin-bottom: 10px;
    }

    .service-desc {
      font-size: .9rem;
      color: var(--text-light);
      line-height: 1.7;
      margin-bottom: 0;
    }

    .service-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 6px;
      margin-top: 16px;
    }

    .service-tag {
      font-size: .72rem;
      font-weight: 500;
      color: var(--green-500);
      background: rgba(90,158,47,.08);
      border: 1px solid rgba(90,158,47,.2);
      padding: 3px 10px;
      border-radius: 50px;
    }

    .service-tag i {
      font-size: 0.8rem;
    }

    .service-card:nth-child(2) .service-tag i {
        color: var(--green-400);
      }

    /* ============================================================
       ABOUT SECTION
    ============================================================ */
    #about { background: white; }

    #achievements {
      background: linear-gradient(160deg, rgba(37,99,235,.04), white, rgba(122,182,72,.05));
      padding: 90px 0;
    }

    .section-sub {
      font-size: .97rem;
      color: var(--text-light);
      max-width: 560px;
      margin: 0 auto;
      line-height: 1.65;
    }

    .about-graphic {
      width: 100%;
      border-radius: var(--radius-xl);
      /*background: linear-gradient(135deg, #0d2208, #1a4a10, #3d7a1a);*/
      background: url('../img/Profile.png') center/cover no-repeat;
      min-height: 440px;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      overflow: hidden;
    }

    .about-graphic .center-icon {
      position: relative;
      z-index: 2;
      width: 110px; height: 110px;
      background: rgba(255,255,255,.1);
      border: 1px solid rgba(255,255,255,.2);
      border-radius: 28px;
      display: flex;
      align-items: center;
      justify-content: center;
      /*backdrop-filter: blur(10px);*/
    }

    .about-graphic .center-icon i {
      font-size: 3.2rem;
      color: white;
    }

    .about-badge {
      position: absolute;
      bottom: 28px; right: 28px;
      background: rgba(255,255,255,.12);
      border: 1px solid rgba(255,255,255,.22);
      backdrop-filter: blur(60px);
      border-radius: 14px;
      padding: 14px 20px;
      color: white;
      z-index: 3;
    }

    .about-badge .badge-num {
      font-family: 'Syne', sans-serif;
      font-size: 1.6rem;
      font-weight: 800;
      line-height: 1;
      color: var(--green-800);
    }

    .about-badge .badge-label { font-size: .72rem; letter-spacing: .06em; opacity: .75; }

    .about-text h2 {
      font-size: clamp(1.8rem, 3.5vw, 2.6rem);
      font-weight: 800;
      color: var(--text-dark);
      line-height: 1.2;
      margin-bottom: 22px;
    }

    .about-text p {
      font-size: .97rem;
      color: var(--text-mid);
      line-height: 1.8;
      margin-bottom: 18px;
    }

    .mission-vision {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
      margin-top: 28px;
    }

    @media (max-width: 480px) { .mission-vision { grid-template-columns: 1fr; } }

    .mv-card {
      background: var(--silver-50);
      border: 1px solid var(--silver-200);
      border-radius: 14px;
      padding: 20px;
      transition: var(--transition);
    }

    .mv-card:hover {
      border-color: rgba(122,182,72,.35);
      background: rgba(90,158,47,.04);
    }

    .mv-card .mv-icon { font-size: 1.2rem; color: var(--green-500); margin-bottom: 8px; }

    .mv-card h5 {
      font-family: 'Syne', sans-serif;
      font-size: .95rem;
      font-weight: 700;
      margin-bottom: 8px;
      color: var(--text-dark);
    }

    .mv-card p { font-size: .85rem; color: var(--text-light); line-height: 1.6; margin: 0; }

    /* ============================================================
       ACHIEVEMENTS & RECOGNITIONS — ENHANCED
    ============================================================ */
    .achieve-wrap {
      margin-top: 36px;
    }

    /* Header row */
    .achieve-header {
      display: flex;
      align-items: center;
      gap: 14px;
      margin-bottom: 22px;
      flex-wrap: wrap;
    }

    .achieve-title {
      font-family: 'Syne', sans-serif;
      font-size: 1.18rem;
      font-weight: 800;
      color: var(--text-dark);
      letter-spacing: -.02em;
      margin: 0;
    }

    .achieve-title span {
      background: linear-gradient(135deg, var(--blue-mid), var(--green-400));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    /* Stats pills */
    .achieve-stats {
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
      margin-bottom: 22px;
    }

    .astat {
      display: flex;
      align-items: center;
      gap: 6px;
      background: white;
      border: 1px solid var(--silver-200);
      border-radius: 50px;
      padding: 5px 14px 5px 8px;
      font-size: .75rem;
      font-weight: 700;
      color: var(--text-mid);
      box-shadow: var(--shadow-sm);
    }

    .astat-dot {
      width: 22px;
      height: 22px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: .65rem;
      font-weight: 800;
      color: white;
      flex-shrink: 0;
    }

    .astat-dot.blue   { background: linear-gradient(135deg, #2563eb, #4a9fff); }
    .astat-dot.green  { background: linear-gradient(135deg, var(--green-500), var(--green-400)); }
    .astat-dot.amber  { background: linear-gradient(135deg, #0d9488, #2dd4bf); }
    .astat-dot.total  { background: linear-gradient(135deg, #0f1624, #374151); }

    /* Filter tabs */
    .achieve-tabs {
      display: flex;
      gap: 8px;
      flex-wrap: wrap;
      margin-bottom: 22px;
    }

    .atab {
      padding: 6px 16px;
      border-radius: 50px;
      border: 1.5px solid var(--silver-200);
      background: white;
      font-size: .74rem;
      font-weight: 600;
      color: var(--text-light);
      cursor: pointer;
      transition: var(--transition);
      letter-spacing: .03em;
      user-select: none;
    }

    .atab:hover {
      border-color: var(--green-400);
      color: var(--green-500);
      box-shadow: 0 0 0 3px rgba(122,182,72,.1);
    }

    .atab.active {
      background: linear-gradient(135deg, var(--green-500), var(--green-400));
      border-color: transparent;
      color: white;
      box-shadow: 0 4px 14px rgba(90,158,47,.35);
    }

    .atab.active-blue {
      background: linear-gradient(135deg, #1a3a7c, #2563eb);
      border-color: transparent;
      color: white;
      box-shadow: 0 4px 14px rgba(37,99,235,.3);
    }

    .atab.active-amber {
      background: linear-gradient(135deg, #0d9488, #2dd4bf);
      border-color: transparent;
      color: white;
      box-shadow: 0 4px 14px rgba(13,148,136,.3);
    }

    /* Cards grid */
    .achieve-grid {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      max-width: 900px;
      margin: 0 auto;
      gap: 20px;
    }

    .achieve-grid .acard {
      width: 220px;
      flex: 0 0 220px;
    }


    .acard {
      background: white;
      border: 1px solid var(--silver-200);
      border-radius: 16px;
      padding: 20px 16px 16px;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      gap: 10px;
      box-shadow: var(--shadow-sm);
      transition: var(--transition);
      position: relative;
      overflow: hidden;
      cursor: default;
      animation: cardIn .4s ease both;
    }

    @keyframes cardIn {
      from { opacity: 0; transform: translateY(16px) scale(.97); }
      to   { opacity: 1; transform: translateY(0) scale(1); }
    }

    .acard::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(122,182,72,.04), rgba(37,99,235,.04));
      opacity: 0;
      transition: opacity .35s;
    }

    .acard:hover {
      transform: translateY(-5px);
      box-shadow: 0 16px 40px rgba(90,158,47,.14);
      border-color: rgba(122,182,72,.3);
    }

    .acard:hover::before { opacity: 1; }

    /* Accent bar at top of card */
    .acard-bar {
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 3px;
      border-radius: 16px 16px 0 0;
    }

    .acard-bar.blue   { background: linear-gradient(90deg, #1a3a7c, #4a9fff); }
    .acard-bar.green  { background: linear-gradient(90deg, var(--green-500), var(--green-400)); }
    .acard-bar.amber  { background: linear-gradient(90deg, #0d9488, #2dd4bf); }

    /* Category chip inside card */
    .acard-cat {
      font-size: .62rem;
      font-weight: 700;
      letter-spacing: .1em;
      text-transform: uppercase;
      padding: 3px 10px;
      border-radius: 50px;
    }

    .acard-cat.blue  { background: rgba(37,99,235,.1);  color: #1a3a7c; }
    .acard-cat.green { background: rgba(90,158,47,.1);  color: var(--green-600); }
    .acard-cat.amber { background: rgba(13,148,136,.1);  color: #0d9488; }

    .acard-img {
      height: 76px;
      width: auto;
      max-width: 100%;
      object-fit: contain;
      filter: drop-shadow(0 2px 8px rgba(0,0,0,.08));
      transition: transform .35s ease;
    }

    .acard:hover .acard-img { transform: scale(1.06); }

    .acard-name {
      font-family: 'Syne', sans-serif;
      font-size: .8rem;
      font-weight: 700;
      color: var(--text-dark);
      line-height: 1.35;
    }

    .acard-body {
      font-size: .72rem;
      color: var(--text-light);
      line-height: 1.55;
    }

    /* Hide class */
    .acard.hidden {
      display: none;
    }

    /* Category section divider */
    .acat-divider {
      display: flex;
      align-items: center;
      justify-content: center; /* centers everything */
      gap: 12px;
      margin: 20px 0 14px;
    }

    .acat-divider-label {
      display: block;
      text-align: center;
      width: 100%;
      justify-content: center; /* centers the whole grid */
      font-family: 'Syne', sans-serif;
      font-size: .72rem;
      font-weight: 700;
      letter-spacing: .14em;
      text-transform: uppercase;
      white-space: nowrap;
    }

    .acat-divider-label.blue  { color: #2563eb; }
    .acat-divider-label.green { color: var(--green-500); }
    .acat-divider-label.amber { color: #0d9488; }

    .acat-divider-line {
      flex: 1;
      height: 1px;
      background: var(--silver-200);
    }

    /* ============================================================
       ACCORDION SERVICES
    ============================================================ */
    #accordion-section {
      background: linear-gradient(160deg, rgba(74,156,214,.06) 0%, white 100%);
    }

    .acc-list { list-style: none; padding: 0; margin: 0; }

    .acc-trigger {
      width: 100%;
      background: white;
      border: 1px solid var(--silver-200);
      border-radius: 12px;
      padding: 18px 22px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      cursor: pointer;
      text-align: left;
      font-family: 'DM Sans', sans-serif;
      font-size: .95rem;
      font-weight: 500;
      color: var(--text-dark);
      gap: 16px;
      margin-bottom: 10px;
      transition: var(--transition);
    }

    .acc-trigger:hover, .acc-trigger.open {
      background: var(--blue-dark);
      color: white;
      border-color: var(--blue-dark);
      box-shadow: 0 4px 20px rgba(47,111,163,.3);
    }

    .acc-icon { font-size: 1.2rem; flex-shrink: 0; transition: transform .3s ease; }
    .acc-trigger.open .acc-icon { transform: rotate(45deg); }

    .acc-body { display: none; padding: 0 4px 14px; }
    .acc-body.open { display: block; }

    .acc-panel {
      background: white;
      border: 1px solid var(--silver-200);
      border-radius: var(--radius-lg);
      padding: 32px;
      height: 100%;
    }

    .acc-panel h3 {
      font-size: 1.25rem;
      font-weight: 700;
      color: var(--blue-dark);
      margin-bottom: 16px;
    }

    .acc-panel p { font-size: .92rem; color: var(--text-mid); line-height: 1.75; }

    .acc-panel ul {
      padding-left: 20px;
      font-size: .9rem;
      color: var(--text-mid);
      line-height: 1.9;
    }

    .acc-panel .sub-list {
      padding-left: 18px;
      font-size: .86rem;
      color: var(--text-light);
    }

    .acc-panel .sub-heading {
      font-weight: 600;
      color: var(--text-dark);
      font-size: .9rem;
      margin: 12px 0 8px;
    }

    /* ============================================================
       CORE VALUES
    ============================================================ */
    #values { background: linear-gradient(160deg, rgba(74,156,214,.06), white); }

    .value-card {
      background: white;
      border-radius: var(--radius-lg);
      overflow: hidden;
      box-shadow: var(--shadow-sm);
      transition: var(--transition);
      border: 1px solid var(--silver-200);
      height: 100%;
    }

    .value-card:hover {
      transform: translateY(-8px);
      box-shadow: var(--shadow-md);
    }

    .value-img {
      height: 180px;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      overflow: hidden;
      transition: transform 0.6s ease;
    }

    .value-card:hover .value-img { transform: scale(1.03); }

    .value-img.innovation { 
      background: linear-gradient(135deg, #0f2d14, #1e5c28, #2e8b40); 
      background: url('../img/Innovation.png') center/cover no-repeat;
    }
    .value-img.sustainability { 
      background: linear-gradient(135deg, #0d3320, #145a30, #0f9b5e); 
      background: url('../img/Sustainability.png') center/cover no-repeat;
    }
    .value-img.empathy { 
      background: linear-gradient(135deg, #1a2a50, #1e4080, #2563eb); 
      background: url('../img/Empathy.png') center/cover no-repeat;
    }
    .value-img.collaboration { 
      background: linear-gradient(135deg, #2a1a0a, #5a3e1a, #8b6914); 
      background: url('../img/Collaboration.png') center/cover no-repeat;
    }

    .value-img i {
      position: relative;
      z-index: 2;
      font-size: 3.5rem;
      color: #ffffff;
      text-shadow: 0 3px 8px rgba(0,0,0,.6), 0 0 10px rgba(255,255,255,.5);
    }

    .value-body { padding: 24px 22px; text-align: center; }

    .value-title {
      font-family: 'Syne', sans-serif;
      font-size: 1.1rem;
      font-weight: 700;
      color: var(--green-500);
      margin-bottom: 10px;
    }

    .value-desc { font-size: .88rem; color: var(--text-mid); line-height: 1.7; margin: 0; }

    .value-card:nth-child(odd) .value-title { color: var(--blue-dark); }
    .value-card:nth-child(even) .value-title { color: var(--green-dark); }

    /* ============================================================
       FAQ / WHY US
    ============================================================ */
    #faq { background: white; padding: 80px 0; }

    .faq-item {
      background: var(--green-500);
      border-radius: 10px;
      margin-bottom: 12px;
      overflow: hidden;
    }

    .faq-trigger {
      width: 100%;
      background: none;
      border: none;
      padding: 18px 22px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      cursor: pointer;
      text-align: left;
      font-family: 'DM Sans', sans-serif;
      font-size: .95rem;
      font-weight: 500;
      color: white;
      gap: 16px;
    }

    .faq-icon { font-size: 1.2rem; flex-shrink: 0; color: white; transition: transform .3s ease; }
    .faq-trigger.open .faq-icon { transform: rotate(45deg); }

    .faq-answer {
      display: none;
      padding: 0 22px 18px;
      font-size: .9rem;
      color: rgba(255,255,255,.85);
      line-height: 1.7;
    }

    .faq-answer.open { display: block; }

    .faq-image-placeholder {
      background: linear-gradient(135deg, #061828, #0b2845, #1a3a5c);
      border-radius: var(--radius-lg);
      min-height: 380px;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      overflow: hidden;
    }

    .faq-image-placeholder .overlay-content { text-align: center; color: white; z-index: 2; position: relative; }
    .faq-image-placeholder .overlay-content .icon { font-size: 4rem; display: block; margin-bottom: 16px; opacity: .8; }
    .faq-image-placeholder .overlay-content .title { font-family: 'Syne', sans-serif; font-size: 1.2rem; font-weight: 700; }
    .faq-image-placeholder .overlay-content .subtitle { font-size: .85rem; opacity: .65; margin-top: 6px; }

    /* ============================================================
       WHY CHOOSE US
    ============================================================ */
    #why {
      background: linear-gradient(160deg, #061828, #0b1f33, #0f2545);
      color: white;
      position: relative;
      overflow: hidden;
    }

    #why::before {
      content: '';
      position: absolute;
      top: -100px; right: -100px;
      width: 500px; height: 500px;
      background: radial-gradient(circle, rgba(74,156,214,.18) 0%, transparent 70%);
      border-radius: 50%;
    }

    .why-card {
      background: rgba(255,255,255,.07);
      border: 1px solid rgba(255,255,255,.12);
      border-radius: var(--radius-lg);
      padding: 32px 26px;
      transition: var(--transition);
      height: 100%;
    }

    .why-card:hover {
      background: rgba(255,255,255,.12);
      border-color: rgba(122,182,72,.4);
      transform: translateY(-6px);
    }

    .why-icon {
      width: 54px; height: 54px;
      background: rgba(122,182,72,.2);
      border-radius: 14px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 18px;
      font-size: 1.5rem;
      color: var(--green-400);
    }

    .why-title {
      font-family: 'Syne', sans-serif;
      font-size: 1.05rem;
      font-weight: 700;
      color: white;
      margin-bottom: 10px;
    }

    .why-desc { font-size: .88rem; color: rgba(255,255,255,.6); line-height: 1.7; margin: 0; }

    /* ============================================================
       CLIENTS SECTION
    ============================================================ */
    #clients { background: var(--silver-50); }

    .client-group {
      background: white;
      border: 1px solid var(--silver-200);
      border-radius: var(--radius-lg);
      padding: 28px;
      margin-bottom: 20px;
      transition: var(--transition);
    }

    .client-group:hover { border-color: rgba(122,182,72,.3); box-shadow: var(--shadow-sm); }

    .client-group-title {
      font-family: 'Syne', sans-serif;
      font-size: .82rem;
      font-weight: 700;
      letter-spacing: .12em;
      text-transform: uppercase;
      color: var(--green-500);
      margin-bottom: 14px;
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .client-group-title i { font-size: 1rem; }

    .client-chips { display: flex; flex-wrap: wrap; gap: 8px; }

    .client-chip {
      background: var(--silver-50);
      border: 1px solid var(--silver-200);
      border-radius: 8px;
      padding: 6px 14px;
      font-size: .82rem;
      font-weight: 500;
      color: var(--text-mid);
      transition: var(--transition);
    }

    .client-chip:hover {
      background: var(--green-50);
      border-color: rgba(122,182,72,.35);
      color: var(--green-600);
    }

    /* ============================================================
       LOCATION
    ============================================================ */
    #location { background: white; }

    .location-card {
      background: var(--silver-50);
      border: 1px solid var(--silver-200);
      border-radius: var(--radius-lg);
      padding: 32px;
      height: 100%;
    }

    .location-item {
      display: flex;
      align-items: flex-start;
      gap: 14px;
      margin-bottom: 22px;
    }

    .location-item:last-child { margin-bottom: 0; }

    .loc-icon {
      width: 38px; height: 38px;
      background: rgba(90,158,47,.1);
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      color: var(--green-500);
      font-size: 1rem;
    }

    .loc-label { font-size: .72rem; text-transform: uppercase; letter-spacing: .08em; color: var(--text-light); margin-bottom: 3px; }
    .loc-value { font-size: .9rem; color: var(--text-dark); line-height: 1.5; font-weight: 500; }

    .map-placeholder {
      background: linear-gradient(135deg, #0b1f33, #1a3a5c, #2F6FA3);
      border-radius: var(--radius-xl);
      min-height: 340px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    .map-placeholder i { font-size: 3.5rem; opacity: .7; display: block; margin-bottom: 12px; }
    .map-placeholder .map-label { font-family: 'Syne', sans-serif; font-size: 1rem; font-weight: 700; }
    .map-placeholder .map-sub { font-size: .82rem; opacity: .6; margin-top: 6px; }

    /* ============================================================
       MAP SECTION
    ============================================================ */
    #location {
      background: var(--silver-50);
    }

    .map-wrapper {
      border-radius: var(--radius-xl);
      overflow: hidden;
      box-shadow: var(--shadow-md);
      border: 1px solid var(--silver-200);
      height: 440px;
      position: relative;
    }

    .map-wrapper iframe {
      width: 100%;
      height: 100%;
      border: none;
      display: block;
    }

    .location-card {
      background: white;
      border: 1px solid var(--silver-200);
      border-radius: var(--radius-lg);
      padding: 32px;
      height: 100%;
      box-shadow: var(--shadow-sm);
    }

    .location-item {
      display: flex;
      gap: 16px;
      margin-bottom: 26px;
      align-items: flex-start;
    }

    .location-item:last-child { margin-bottom: 0; }

    .loc-icon {
      width: 42px; height: 42px;
      flex-shrink: 0;
      background: rgba(37,99,235,.08);
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.1rem;
      color: var(--blue-mid);
    }

    .loc-label {
      font-size: .72rem;
      letter-spacing: .1em;
      text-transform: uppercase;
      color: var(--text-light);
      margin-bottom: 3px;
    }

    .loc-value {
      font-size: .92rem;
      font-weight: 500;
      color: var(--text-dark);
      line-height: 1.5;
    }
    
    /* ============================================================
       CONTACT SECTION
    ============================================================ */
    #contact {
      background: linear-gradient(160deg, var(--silver-50) 0%, white 100%);
    }

    .contact-form-wrap {
      background: white;
      border-radius: var(--radius-xl);
      padding: 48px 44px;
      box-shadow: var(--shadow-md);
      border: 1px solid var(--silver-200);
    }

    @media (max-width: 576px) { .contact-form-wrap { padding: 32px 24px; } }

    .form-label {
      font-size: .82rem;
      font-weight: 600;
      color: var(--text-mid);
      letter-spacing: .04em;
      margin-bottom: 6px;
    }

    .form-control {
      border: 1.5px solid var(--silver-200);
      border-radius: 10px;
      padding: 12px 16px;
      font-size: .9rem;
      color: var(--text-dark);
      transition: border-color .2s, box-shadow .2s;
    }

    .form-control:focus {
      border-color: var(--green-400);
      box-shadow: 0 0 0 3px rgba(122,182,72,.15);
      outline: none;
    }

    .btn-submit {
      background: linear-gradient(135deg, var(--green-500), var(--green-400));
      color: white;
      border: none;
      border-radius: 50px;
      padding: 14px 36px;
      font-size: .95rem;
      font-weight: 600;
      cursor: pointer;
      transition: var(--transition);
      box-shadow: 0 6px 24px rgba(90,158,47,.35);
      width: 100%;
    }

    .btn-submit:hover {
      transform: translateY(-2px);
      box-shadow: 0 10px 36px rgba(90,158,47,.5);
    }

    .contact-info-wrap {
      padding: 20px 0;
    }

    .contact-info-item {
      display: flex;
      align-items: flex-start;
      gap: 16px;
      margin-bottom: 28px;
    }

    .ci-icon {
      width: 46px; height: 46px;
      background: linear-gradient(135deg, var(--green-500), var(--green-400));
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-size: 1.1rem;
      flex-shrink: 0;
      box-shadow: 0 4px 16px rgba(90,158,47,.3);
    }

    .ci-label { font-size: .75rem; text-transform: uppercase; letter-spacing: .08em; color: var(--text-light); margin-bottom: 3px; }
    .ci-value { font-size: .95rem; font-weight: 500; color: var(--text-dark); }

    .offices-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
      margin-top: 24px;
    }

    @media (max-width: 480px) { .offices-grid { grid-template-columns: 1fr; } }

    .office-mini {
      background: var(--silver-50);
      border: 1px solid var(--silver-200);
      border-radius: 12px;
      padding: 14px 16px;
      font-size: .82rem;
    }

    .office-mini .o-country {
      font-family: 'Syne', sans-serif;
      font-weight: 700;
      font-size: .85rem;
      color: var(--blue-dark);
      margin-bottom: 4px;
      display: flex;
      align-items: center;
      gap: 6px;
    }

    .office-mini p { color: var(--text-light); line-height: 1.5; margin: 0; font-size: .8rem; }

    /* ============================================================
       FOOTER
    ============================================================ */
    footer {
      background: linear-gradient(160deg, #061828, #0d2238, #102840);
      color: rgba(255,255,255,.6);
      padding: 72px 0 0;
    }

    .footer-logo-area { margin-bottom: 20px; }

    .footer-brand {
      display: flex;
      align-items: center;
      gap: 12px;
      text-decoration: none;
      margin-bottom: 18px;
    }

    .footer-brand .fb-mark {
      width: 44px; height: 44px;
      /*background: linear-gradient(135deg, var(--green-500), var(--green-400));*/
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-size: 1.2rem;
    }

    .footer-brand .fb-mark img {
      width: 100%;
      height:
      100%;
      object-fit: contain;

      /* Glow effect */
      /*filter: drop-shadow(0 0 4px rgba(122,182,72,0.6))
              drop-shadow(0 0 8px rgba(37,99,235,0.4));*/
    }

    .footer-brand .fb-name {
      font-family: 'Syne', sans-serif;
      font-size: 1.1rem;
      font-weight: 800;
      color: white;
      line-height: 1;
    }

    .footer-brand .fb-sub { font-size: .65rem; color: rgba(255,255,255,.4); letter-spacing: .06em; text-transform: uppercase; }

    .footer-tagline { font-size: .85rem; line-height: 1.7; color: rgba(255,255,255,.45); max-width: 480px; }

    .social-links { display: flex; gap: 12px; margin-top: 16px; }

    .social-links a {
      width: 36px; height: 36px;
      background: rgba(255,255,255,.07);
      border: 1px solid rgba(255,255,255,.12);
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: rgba(255,255,255,.55);
      text-decoration: none;
      font-size: .95rem;
      transition: var(--transition);
    }

    .social-links a:hover { background: var(--blue-dark); color: white; border-color: var(--blue-dark); }

    .footer-heading {
      font-family: 'Syne', sans-serif;
      font-size: .82rem;
      font-weight: 700;
      letter-spacing: .12em;
      text-transform: uppercase;
      color: rgba(255,255,255,.35);
      margin-bottom: 16px;
    }

    .footer-links { list-style: none; padding: 0; margin: 0; }

    .footer-links li { margin-bottom: 10px; }

    .footer-links a {
      color: rgba(255,255,255,.5);
      text-decoration: none;
      font-size: .88rem;
      transition: color .2s;
    }

    .footer-links a:hover { color: var(--green-400); }

    .footer-divider { border-color: rgba(255,255,255,.08); margin: 48px 0 24px; }

    .footer-bottom {
      display: flex;
      flex-direction: column;    /* stack items */
      align-items: center;       /* center everything */
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 10px;
      font-size: .8rem;
      color: rgba(255,255,255,.3);
      padding-bottom: 32px;
    }
    /* ============================================================
       BACK TO TOP
    ============================================================ */
    #backToTop {
      position: fixed;
      bottom: 28px; right: 28px;
      width: 44px; height: 44px;
      background: linear-gradient(135deg, var(--green-500), var(--green-400));
      color: white;
      border: none;
      border-radius: 50%;
      font-size: 1.1rem;
      cursor: pointer;
      box-shadow: 0 4px 20px rgba(90,158,47,.4);
      z-index: 900;
      display: none;
      align-items: center;
      justify-content: center;
      transition: var(--transition);
    }

    #backToTop.visible { display: flex; }
    #backToTop:hover { transform: translateY(-3px); }

    /* ============================================================
       REVEAL ANIMATIONS
    ============================================================ */
    .reveal {
      opacity: 0;
      transform: translateY(32px);
      transition: opacity .7s ease, transform .7s ease;
    }

    .reveal.visible { opacity: 1; transform: translateY(0); }
    .reveal-delay-1 { transition-delay: .12s; }
    .reveal-delay-2 { transition-delay: .22s; }
    .reveal-delay-3 { transition-delay: .32s; }
    .reveal-delay-4 { transition-delay: .42s; }

    /* ============================================================
       UTILITY
    ============================================================ */
    .text-green { color: var(--green-500) !important; }

    .sustainability-bar {
      background: linear-gradient(135deg, var(--green-600), var(--green-500));
      color: white;
      padding: 18px 0;
      text-align: center;
      font-size: .9rem;
    }

    .sustainability-bar i { margin-right: 8px; }

    /* ============================================================
       STAY CONNECTED — WHATSAPP SECTION
    ============================================================ */
    .wa-box {
      background: rgba(255,255,255,.04);
      border: 1px solid rgba(255,255,255,.1);
      border-radius: 16px;
      padding: 28px 26px;
      transition: border-color .35s ease, box-shadow .35s ease;
    }

    .wa-box:hover {
      border-color: rgba(37,211,102,.25);
      box-shadow: 0 8px 32px rgba(37,211,102,.1);
    }

    .wa-label {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 8px;
    }

    .wa-label-icon {
      width: 34px; height: 34px;
      background: linear-gradient(135deg, #128C7E, #25D366);
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1rem;
      color: white;
      flex-shrink: 0;
      box-shadow: 0 4px 14px rgba(37,211,102,.3);
      transition: transform .3s ease, box-shadow .3s ease;
    }

    .wa-box:hover .wa-label-icon {
      transform: scale(1.1) rotate(-5deg);
      box-shadow: 0 6px 20px rgba(37,211,102,.45);
    }

    .wa-label-text {
      font-family: 'Syne', sans-serif;
      font-size: .88rem;
      font-weight: 700;
      color: rgba(255,255,255,.75);
      letter-spacing: .02em;
    }

    .wa-desc {
      font-size: .82rem;
      color: rgba(255,255,255,.38);
      line-height: 1.6;
      margin-bottom: 16px;
    }

    .wa-textarea {
      width: 100%;
      background: rgba(255,255,255,.06);
      border: 1.5px solid rgba(255,255,255,.1);
      border-radius: 10px;
      padding: 11px 14px;
      font-size: .86rem;
      font-family: 'DM Sans', sans-serif;
      color: rgba(255,255,255,.85);
      outline: none;
      resize: none;
      margin-bottom: 12px;
      transition: border-color .25s ease, box-shadow .25s ease, background .25s ease;
      display: block;
    }

    .wa-textarea::placeholder { color: rgba(255,255,255,.28); }

    .wa-textarea:focus {
      border-color: rgba(37,211,102,.5);
      background: rgba(255,255,255,.09);
      box-shadow: 0 0 0 3px rgba(37,211,102,.12);
    }

    .wa-btn {
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 9px;
      background: linear-gradient(135deg, #075E54, #128C7E, #25D366);
      background-size: 200% 100%;
      background-position: left center;
      border: none;
      border-radius: 10px;
      padding: 13px 20px;
      font-family: 'DM Sans', sans-serif;
      font-size: .92rem;
      font-weight: 600;
      color: white;
      cursor: pointer;
      letter-spacing: .02em;
      box-shadow: 0 6px 22px rgba(37,211,102,.3);
      transition: transform .3s ease, box-shadow .3s ease, background-position .4s ease;
    }

    .wa-btn:hover {
      transform: translateY(-3px);
      background-position: right center;
      box-shadow: 0 12px 32px rgba(37,211,102,.45);
    }

    .wa-btn:active {
      transform: translateY(-1px);
      box-shadow: 0 6px 18px rgba(37,211,102,.3);
    }

    .wa-btn i {
      font-size: 1.1rem;
      transition: transform .3s ease;
    }

    .wa-btn:hover i {
      transform: scale(1.2) rotate(-6deg);
    }

    /* ============================================================
       MEMBERSHIPS & CLIENTELE CARDS — HOVER ANIMATIONS
    ============================================================ */
    .mem-card, .client-card {
      transition: transform .35s cubic-bezier(.4,0,.2,1), box-shadow .35s ease, border-color .35s ease;
      cursor: default;
    }

    .mem-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 20px 48px rgba(37,99,235,.2), 0 0 0 1px rgba(37,99,235,.12) !important;
    }

    .client-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 20px 48px rgba(122,182,72,.2), 0 0 0 1px rgba(122,182,72,.12) !important;
    }

    .mem-icon, .client-icon {
      transition: transform .35s cubic-bezier(.4,0,.2,1), box-shadow .35s ease;
    }

    .mem-card:hover .mem-icon {
      transform: scale(1.14) rotate(-6deg);
      box-shadow: 0 8px 24px rgba(37,99,235,.45);
    }

    .client-card:hover .client-icon {
      transform: scale(1.14) rotate(6deg);
      box-shadow: 0 8px 24px rgba(90,158,47,.45);
    }

    /* List item slide-in on hover */
    .mem-li, .client-li {
      transition: transform .3s ease, background .25s ease;
      border-radius: 10px;
      padding: 6px 8px;
      margin: 0 -8px;
    }

    .mem-li:hover {
      background: rgba(37,99,235,.05);
      transform: translateX(8px);
    }

    .client-li:hover {
      background: rgba(122,182,72,.05);
      transform: translateX(8px);
    }

    /* Check badge pulse on client-li hover */
    .client-li:hover .check-badge {
      transform: scale(1.15);
      box-shadow: 0 4px 14px rgba(90,158,47,.5);
    }

    .check-badge {
      transition: transform .3s ease, box-shadow .3s ease;
    }

    /* ============================================================
       ACHIEVEMENTS & RECOGNITIONS — ENHANCED HOVER ANIMATIONS
    ============================================================ */

    /* astat pills */
    .astat {
      transition: transform .3s cubic-bezier(.4,0,.2,1), box-shadow .3s ease, border-color .3s ease;
      cursor: default;
    }

    .astat:hover {
      transform: translateY(-5px) scale(1.05);
      box-shadow: 0 10px 28px rgba(0,0,0,.13);
      border-color: var(--green-200);
    }

    .astat-dot {
      transition: transform .3s ease;
    }

    .astat:hover .astat-dot {
      transform: scale(1.18) rotate(8deg);
    }

    /* acard color-matched glow on hover */
    .acard[data-cat="blue"]:hover {
      box-shadow: 0 16px 40px rgba(37,99,235,.18);
      border-color: rgba(37,99,235,.3);
    }

    .acard[data-cat="amber"]:hover {
      box-shadow: 0 16px 40px rgba(13,148,136,.2);
      border-color: rgba(13,148,136,.3);
    }

    /* acard-bar grows + glows on hover */
    .acard-bar {
      transition: height .35s ease, box-shadow .35s ease;
    }

    .acard:hover .acard-bar.blue {
      height: 5px;
      box-shadow: 0 3px 12px rgba(37,99,235,.55);
    }

    .acard:hover .acard-bar.green {
      height: 5px;
      box-shadow: 0 3px 12px rgba(122,182,72,.55);
    }

    .acard:hover .acard-bar.amber {
      height: 5px;
      box-shadow: 0 3px 12px rgba(13,148,136,.55);
    }

    /* acard category chip lifts on hover */
    .acard-cat {
      transition: transform .3s ease, box-shadow .3s ease;
    }

    .acard:hover .acard-cat {
      transform: translateY(-2px);
    }

    /* Filter tabs — pulse ring on hover */
    .atab {
      position: relative;
    }

    .atab:not(.active):not(.active-blue):not(.active-amber):hover {
      transform: translateY(-2px);
    }

    /* acat-divider label glow on hover */
    .acat-divider-label {
      transition: letter-spacing .3s ease, opacity .3s ease;
    }

    .acat-divider:hover .acat-divider-label {
      letter-spacing: .2em;
    }

    /* ============================================================
       ABOUT SECTION — SINGAPORE-BASED CLEAN TECH — ANIMATIONS
    ============================================================ */

    /* about-graphic hover: subtle zoom + glow */
    .about-graphic {
      transition: transform .45s cubic-bezier(.4,0,.2,1), box-shadow .45s ease;
    }

    .about-graphic:hover {
      transform: scale(1.025);
      box-shadow: 0 28px 64px rgba(90,158,47,.22), 0 0 0 3px rgba(122,182,72,.18);
    }

    /* about-badge lifts on hover */
    .about-badge {
      transition: transform .35s ease, background .3s ease, box-shadow .35s ease;
    }

    .about-badge:hover {
      transform: translateY(-6px) scale(1.04);
      background: rgba(255,255,255,.22);
      box-shadow: 0 12px 28px rgba(0,0,0,.22);
    }

    /* mv-cards — enhanced hover beyond existing border change */
    .mv-card {
      position: relative;
      overflow: hidden;
    }

    .mv-card::after {
      content: '';
      position: absolute;
      inset: 0;
      border-radius: 14px;
      background: linear-gradient(135deg, rgba(90,158,47,.06), rgba(37,99,235,.04));
      opacity: 0;
      transition: opacity .35s ease;
      pointer-events: none;
    }

    .mv-card:hover {
      transform: translateY(-8px) !important;
      box-shadow: 0 14px 36px rgba(90,158,47,.16);
    }

    .mv-card:hover::after { opacity: 1; }

    .mv-icon {
      display: inline-block;
      transition: transform .35s cubic-bezier(.4,0,.2,1), color .3s ease;
    }

    .mv-card:hover .mv-icon {
      transform: scale(1.3) rotate(-8deg);
      color: var(--blue-mid) !important;
    }

    /* about-text paragraphs: subtle left-border accent on hover */
    .about-text p {
      transition: padding-left .3s ease, border-color .3s ease, color .3s ease;
      border-left: 2px solid transparent;
      padding-left: 0;
    }

    .about-text p:hover {
      padding-left: 12px;
      border-left-color: var(--green-400);
      color: var(--text-dark);
    }

 
    .btn-outline-blue {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      border: 1.5px solid var(--blue-mid);
      color: var(--blue-mid);
      text-decoration: none;
      padding: 11px 26px;
      border-radius: 50px;
      font-size: .88rem;
      font-weight: 600;
      transition: var(--transition);
    }

    .btn-outline-blue:hover {
      background: var(--blue-mid);
      color: white;
      box-shadow: var(--shadow-md);
    }
 