/* ----------------------------------------------------------------
   1. DESIGN TOKENS  (CSS Custom Properties)
---------------------------------------------------------------- */
:root {

  /* — Green palette (Primary) — */
  --green-50:   #f0faf0;
  --green-100:  #dcf0dc;
  --green-200:  #b4dcb4;
  --green-400:  #7ab648;
  --green-500:  #5a9e2f;
  --green-600:  #3d7a1a;

  /* — Blue palette (Secondary) — */
  --blue:       #4A9CD6;
  --blue-dark:  #2F6FA3;
  --blue-glow:  #4a9fff;
  --blue-mid:   #2563eb;
  --blue-deep:  #1a3a7c;

  /* — Teal accent — */
  --teal:       #0d9488;

  /* — Dark / navy — */
  --navy:       #0b1f33;

  /* — Text — */
  --text-dark:  #0f1624;
  --text-mid:   #374151;
  --text-light: #6b7280;
  --white:      #ffffff;

  /* — Backgrounds — */
  --light:      #f4f6f8;
  --silver-50:  #f8f9fb;
  --silver-100: #eef0f5;
  --silver-200: #dde1ea;

  /* — Glassmorphism — */
  --glass-bg:     rgba(255,255,255,0.68);
  --glass-border: rgba(255,255,255,0.45);

  /* — Shadows — */
  --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);

  /* — Border radius — */
  --radius-sm: 10px;
  --radius-md: 14px;
  --radius-lg: 18px;
  --radius-xl: 28px;
  --radius-pill: 50px;

  /* — Motion — */
  --transition: all .35s cubic-bezier(.4,0,.2,1);
}

/* ----------------------------------------------------------------
   2. RESET & BASE
---------------------------------------------------------------- */
*, *::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; }

/* ----------------------------------------------------------------
   3. TYPOGRAPHY HELPERS
---------------------------------------------------------------- */

/* Gradient text (blue → green) */
.text-gradient {
  background: linear-gradient(135deg, var(--blue-mid), var(--green-400));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Gradient text (green) */
.text-green-gradient {
  background: linear-gradient(135deg, var(--green-500), var(--green-400));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ----------------------------------------------------------------
   4. SECTION LABEL (pill badge above headings)
---------------------------------------------------------------- */
.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: var(--radius-pill);
  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);
}

.section-sub {
  font-size: .97rem;
  color: var(--text-light);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.65;
}

/* ----------------------------------------------------------------
   5. 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-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);
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.nav-logo .logo-mark {
  width: 52px; height: 52px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .3s ease;
}

.nav-logo:hover .logo-mark { transform: scale(1.06); }

.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 */
.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%; }

/* Nav CTA button */
.btn-nav-cta {
  background: linear-gradient(135deg, var(--green-500), var(--green-400));
  color: white !important;
  padding: 8px 22px;
  border-radius: var(--radius-pill);
  font-size: .85rem;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
  box-shadow: 0 4px 16px rgba(90,158,47,.3);
}

.btn-nav-cta:hover {
  box-shadow: var(--shadow-glow);
  transform: translateY(-1px);
}

/* Mobile hamburger */
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  color: var(--text-dark);
  font-size: 1.4rem;
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: block; }
}

/* ----------------------------------------------------------------
   6. HERO
---------------------------------------------------------------- */
.hero {
  background: linear-gradient(135deg, #0b1f33, var(--blue-dark), var(--green-400));
  color: white;
  padding: 120px 0;
}

/* Slide eyebrow / eyecatcher label */
.slide-eyebrow {
  font-size: .75rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--green-400);
  font-weight: 500;
  margin-bottom: 18px;
}

/* Heading inside hero */
.slide-heading {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2rem, 5.5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.0;
  margin-bottom: 18px;
}

/* ----------------------------------------------------------------
   7. BUTTONS
---------------------------------------------------------------- */

/* Primary — green gradient */
.btn-primary,
.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--green-500), var(--green-400));
  color: white !important;
  text-decoration: none;
  padding: 13px 30px;
  border-radius: var(--radius-pill);
  font-size: .9rem;
  font-weight: 600;
  letter-spacing: .02em;
  border: none;
  box-shadow: 0 8px 28px rgba(90,158,47,.45);
  transition: var(--transition);
  cursor: pointer;
}

.btn-primary:hover,
.btn-hero-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(122,182,72,.6);
  color: white;
}

/* Secondary — blue gradient */
.btn-secondary,
.btn-blue {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--blue-dark), var(--blue));
  color: white !important;
  text-decoration: none;
  padding: 13px 30px;
  border-radius: var(--radius-pill);
  font-size: .9rem;
  font-weight: 600;
  border: none;
  box-shadow: 0 8px 28px rgba(47,111,163,.35);
  transition: var(--transition);
  cursor: pointer;
}

.btn-secondary:hover,
.btn-blue:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(74,156,214,.5);
}

/* Ghost — transparent with border */
.btn-ghost,
.btn-hero-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.12);
  color: white;
  text-decoration: none;
  padding: 13px 28px;
  border-radius: var(--radius-pill);
  font-size: .9rem;
  font-weight: 500;
  border: 1px solid rgba(255,255,255,.3);
  backdrop-filter: blur(8px);
  transition: var(--transition);
  cursor: pointer;
}

.btn-ghost:hover,
.btn-hero-ghost:hover {
  background: rgba(255,255,255,.22);
  color: white;
  transform: translateY(-2px);
}

/* ----------------------------------------------------------------
   8. STATS BAR
---------------------------------------------------------------- */
.stats-bar {
  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;
}

/* ----------------------------------------------------------------
   9. SERVICE / GLASS CARDS
---------------------------------------------------------------- */
.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;
}

/* Green top accent bar on hover */
.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; }

/* Icon box inside service card */
.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;
}

/* Tag pills on cards */
.service-tag {
  display: inline-block;
  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: var(--radius-pill);
}

/* ----------------------------------------------------------------
   10. STANDARD CONTENT CARD (white)
---------------------------------------------------------------- */
.card {
  background: white;
  border: 1px solid var(--silver-200);
  border-radius: var(--radius-lg);
  padding: 20px 16px 16px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
}

/* ----------------------------------------------------------------
   11. ACCORDION
---------------------------------------------------------------- */
.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;
}

.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;
}

/* ----------------------------------------------------------------
   12. VALUE / FEATURE CARDS
---------------------------------------------------------------- */
.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-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;
}

/* ----------------------------------------------------------------
   13. FILTER TABS
---------------------------------------------------------------- */
.atab {
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  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, var(--blue-deep), var(--blue-mid));
  border-color: transparent;
  color: white;
  box-shadow: 0 4px 14px rgba(37,99,235,.3);
}

.atab.active-teal {
  background: linear-gradient(135deg, var(--teal), #2dd4bf);
  border-color: transparent;
  color: white;
  box-shadow: 0 4px 14px rgba(13,148,136,.3);
}

/* ----------------------------------------------------------------
   14. MISSION / VISION GRID
---------------------------------------------------------------- */
.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: var(--radius-md);
  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; }

/* ----------------------------------------------------------------
   15. SECTION BACKGROUNDS
---------------------------------------------------------------- */
.bg-white        { background: white; }
.bg-light        { background: var(--silver-50); }
.bg-navy         { background: var(--navy); }
.bg-services     { background: linear-gradient(160deg, var(--silver-50) 0%, white 50%, rgba(74,156,214,.06) 100%); }
.bg-achievements { background: linear-gradient(160deg, rgba(37,99,235,.04), white, rgba(122,182,72,.05)); }
.bg-faq          { background: white; }
.bg-accordion    { background: linear-gradient(160deg, rgba(74,156,214,.06) 0%, white 100%); }
.bg-values       { background: linear-gradient(160deg, rgba(74,156,214,.06), white); }

/* ----------------------------------------------------------------
   16. FOOTER
---------------------------------------------------------------- */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,.7);
}

/* ----------------------------------------------------------------
   17. UTILITY
---------------------------------------------------------------- */
.shadow-sm   { box-shadow: var(--shadow-sm); }
.shadow-md   { box-shadow: var(--shadow-md); }
.shadow-glow { box-shadow: var(--shadow-glow); }

.rounded-lg   { border-radius: var(--radius-lg); }
.rounded-xl   { border-radius: var(--radius-xl); }
.rounded-pill { border-radius: var(--radius-pill); }

.transition { transition: var(--transition); }


: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.1rem;
      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);
    }

    .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; }
    }

    /* ============================================================
       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-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 60%, var(--green-50) 100%);
      position: relative;
      overflow: hidden;
    }

    #services::before {
      content: '';
      position: absolute;
      top: -120px; right: -120px;
      width: 420px; height: 420px;
      background: radial-gradient(circle, rgba(122,182,72,.1) 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;
    }

    /* ============================================================
       ABOUT SECTION
    ============================================================ */
    #about { background: white; }

    .about-graphic {
      width: 100%;
      border-radius: var(--radius-xl);
      background: linear-gradient(135deg, #0d2208, #1a4a10, #3d7a1a);
      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(12px);
      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-400);
    }

    .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; }

    /* CERTIFICATIONS */
    .cert-strip {
      background: var(--silver-50);
      border: 1px solid var(--silver-200);
      border-radius: var(--radius-lg);
      padding: 28px 32px;
      margin-top: 28px;
    }

    .cert-strip h6 {
      font-family: 'Syne', sans-serif;
      font-size: .82rem;
      font-weight: 700;
      color: var(--text-light);
      letter-spacing: .12em;
      text-transform: uppercase;
      margin-bottom: 14px;
    }

    .cert-badges { display: flex; flex-wrap: wrap; gap: 10px; }

    .cert-badge {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      background: white;
      border: 1px solid var(--silver-200);
      border-radius: 10px;
      padding: 8px 14px;
      font-size: .78rem;
      font-weight: 600;
      color: var(--text-mid);
      box-shadow: var(--shadow-sm);
    }

    .cert-badge i { color: var(--green-500); }

    /* ============================================================
       ACCORDION SERVICES
    ============================================================ */
    #accordion-section {
      background: linear-gradient(160deg, var(--green-50) 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(--green-500);
      color: white;
      border-color: var(--green-500);
      box-shadow: 0 4px 20px rgba(90,158,47,.25);
    }

    .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(--green-600);
      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, #f0fdf4, 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); }
    .value-img.sustainability { background: linear-gradient(135deg, #0d3320, #145a30, #0f9b5e); }
    .value-img.empathy { background: linear-gradient(135deg, #1a2a50, #1e4080, #2563eb); }
    .value-img.collaboration { background: linear-gradient(135deg, #2a1a0a, #5a3e1a, #8b6914); }

    .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; }

    /* ============================================================
       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, #0f2208, #1e4a10, #2d7020);
      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, #0f2208, #1a4010, #253d1a);
      color: white;
      position: relative;
      overflow: hidden;
    }

    #why::before {
      content: '';
      position: absolute;
      top: -100px; right: -100px;
      width: 500px; height: 500px;
      background: radial-gradient(circle, rgba(122,182,72,.15) 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 { 
      linear-gradient(212deg, var(--silver-50) 0%, #e5e3ee 60%, var(--green-50) 100%)
    }

    .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, #1a2e1a, #2d502d, #3d7020);
      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; }

    .regional-card {
      border-radius: var(--radius-lg);
    }

    /* ============================================================
       CONTACT SECTION
    ============================================================ */
    #contact {
      /*background: linear-gradient(160deg, var(--silver-50) 0%, white 100%);*/
      background: linear-gradient(160deg, #edf0f5 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(--green-500);
      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, #0a1a08, #122210, #1a3010);
      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-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(--green-500); color: white; border-color: var(--green-500); }

    .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; }
  

/* ── FOCUS & HOVER ENHANCEMENTS ── */
.form-control, .form-select {
  border: 1.5px solid var(--silver-200);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  font-size: .95rem;
  transition: border-color .25s, box-shadow .25s, background .25s;
  background: #fff;
}
.form-control:hover, .form-select:hover {
  border-color: var(--blue);
  background: #f5faff;
}
.form-control:focus, .form-select:focus {
  border-color: var(--green-500);
  box-shadow: 0 0 0 3px rgba(90,158,47,.18);
  background: #fff;
  outline: none;
}
.form-label {
  font-weight: 600;
  font-size: .85rem;
  color: var(--text-mid);
  margin-bottom: 5px;
  letter-spacing: .01em;
}
.btn-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 13px 28px;
  background: linear-gradient(135deg, var(--green-600), var(--green-400));
  color: #fff;
  border: none;
  border-radius: var(--radius-pill);
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: .02em;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 18px rgba(90,158,47,.25);
}
.btn-submit:hover {
  background: linear-gradient(135deg, var(--green-500), var(--green-400));
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(90,158,47,.35);
}
.btn-submit:focus {
  outline: 3px solid rgba(90,158,47,.4);
  outline-offset: 2px;
}
.btn-submit:active { transform: translateY(0); }

.location-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  border: 1.5px solid var(--silver-200);
  transition: var(--transition);
  height: 100%;
}
.location-card:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(74,156,214,.3);
  transform: translateY(-4px);
}
.location-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 14px 0;
  border-bottom: 1px solid var(--silver-100);
  transition: background .2s;
}
.location-item:last-child { border-bottom: none; }
.location-item:hover { background: var(--silver-50); border-radius: 8px; padding-left: 8px; }
.loc-icon {
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, var(--green-50), var(--blue-glow) 200%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-500);
  font-size: 1rem;
  flex-shrink: 0;
  transition: var(--transition);
}
.location-item:hover .loc-icon {
  background: linear-gradient(135deg, var(--green-400), var(--blue));
  color: #fff;
  transform: scale(1.1);
}
.loc-label { font-size: .78rem; font-weight: 700; color: var(--text-light); text-transform: uppercase; letter-spacing: .06em; margin-bottom: 3px; }
.loc-value { font-size: .93rem; color: var(--text-dark); line-height: 1.5; }

.contact-form-wrap, .contact-form-card {
  background: #fff;
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-sm);
  border: 1.5px solid var(--silver-200);
  transition: var(--transition);
}
.contact-form-wrap:hover, .contact-form-card:hover {
  box-shadow: var(--shadow-md);
}

.contact-info-wrap {
  background: var(--navy);
  border-radius: var(--radius-xl);
  padding: 36px;
  color: #fff;
}
.contact-info-item {
  display: flex;
  gap: 16px;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
  transition: background .2s, padding-left .2s;
  border-radius: 8px;
}
.contact-info-item:last-of-type { border-bottom: none; }
.contact-info-item:hover {
  background: rgba(255,255,255,.06);
  padding-left: 10px;
}
.ci-icon {
  width: 40px; height: 40px;
  background: linear-gradient(135deg, var(--green-500), var(--green-400));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-size: 1rem;
  flex-shrink: 0;
  transition: var(--transition);
}
.contact-info-item:hover .ci-icon { transform: scale(1.12) rotate(-6deg); }
.ci-label { font-size: .75rem; font-weight: 700; color: rgba(255,255,255,.5); text-transform: uppercase; letter-spacing: .07em; margin-bottom: 2px; }
.ci-value { font-size: .95rem; color: rgba(255,255,255,.9); }

.office-mini {
  background: var(--silver-50);
  border-radius: var(--radius-md);
  padding: 16px 18px;
  border: 1.5px solid var(--silver-200);
  transition: var(--transition);
}
.office-mini:hover {
  border-color: var(--blue);
  background: #f0f7ff;
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
}
.o-country { font-family: 'Syne', sans-serif; font-weight: 700; font-size: .88rem; color: var(--blue-dark); margin-bottom: 6px; }
.offices-grid { display: grid; gap: 14px; }
.map-placeholder {
  height: 320px;
  background: linear-gradient(135deg, var(--navy), var(--blue-dark));
  border-radius: var(--radius-lg);
  display: flex; align-items: center; justify-content: center;
  color: #fff; text-align: center;
  font-size: 2.5rem;
}
.map-label { font-family: 'Syne',sans-serif; font-weight: 700; font-size: 1rem; margin-top: 10px; }
.map-sub { font-size: .85rem; color: rgba(255,255,255,.65); margin-top: 4px; }

.map-wrapper{
  width:100%;
  border-radius:24px;
  overflow:hidden;
  background:#fff;
  border:1px solid transparent;
  box-shadow:var(--shadow-md);
  transition:all 0.35s ease;
}

.map-wrapper iframe{
  width:100%;
  height:500px;
  border:0;
  display:block;
  transition:transform 0.35s ease;
}

/* Hover Effect */
.map-wrapper:hover{
  background:#f8fbff;
  border-color:rgba(0,123,255,0.25);
  box-shadow:0 12px 32px rgba(0,0,0,0.10);
  transform:translateY(-2px);
}

/* Slight Zoom */
.map-wrapper:hover iframe{
  transform:scale(1.01);
}

/* Focus Effect */
.map-wrapper:focus-within{
  border-color:rgba(0,123,255,0.45);
  box-shadow:0 0 0 4px rgba(0,123,255,0.12);
}


.btn-outline-blue {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 20px;
  border: 2px solid var(--blue);
  border-radius: var(--radius-pill);
  color: var(--blue-dark);
  font-weight: 600; font-size: .88rem;
  text-decoration: none;
  transition: var(--transition);
  margin-top: 16px;
}
.btn-outline-blue:hover {
  background: var(--blue);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(74,156,214,.3);
}

/* ── PAGE BANNER ── */
.page-banner {
  position: relative;
  background:     
    linear-gradient(rgba(11,31,51,0.75), rgba(11,31,51,0.0275)),
    url('../img/contact.png') center center / cover no-repeat;
  color: #fff;
  padding: 80px 0 52px;
  overflow: hidden;
}
.page-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.2);
  pointer-events: none;
}
.page-banner-inner {  

    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    /*padding: 52px 0 48px;*/
    padding: 52px 8px 12px;

}

/* Bottom gradient border */
.page-banner::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(
    90deg,
    #1e88e5 0%,    /* blue */
    #43a047 20%,   /* green */
    #42a5f5 40%,   /* blue */
    #66bb6a 60%,   /* green */
    #2196f3 80%,   /* blue */
    #4caf50 100%   /* green */
  );
}

.page-banner .breadcrumb { background: transparent; padding: 0; margin-bottom: 14px; }
.page-banner .breadcrumb-item, .page-banner .breadcrumb-item a { 
  color: rgba(255,255,255,.65); font-size: .85rem; text-decoration: none; transition: color .2s; text-transform: uppercase; 
  }
.page-banner .breadcrumb-item a:hover { color: #7ab648; }
.page-banner .breadcrumb-item.active { color: #7ab648; font-weight: 600; }
.page-banner .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,.35); }
.page-banner-title { font-family:'Syne',sans-serif; font-size: clamp(2rem,4vw,3rem); font-weight: 800; margin: 0 0 10px; letter-spacing: -.5px;}
.page-banner-sub { font-size: 1.05rem; color: rgba(255,255,255,.75); max-width: 560px; margin: 0; line-height: 1.6; }


/* ── REVEAL: visible by default, animation added when JS works ── */
.reveal {
  opacity: 1 !important;
  transform: none !important;
}
.reveal.animate-ready {
  opacity: 0 !important;
  transform: translateY(28px) !important;
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.animate-ready.visible {
  opacity: 1 !important;
  transform: none !important;
}


/* ── WHATSAPP BOX IN FOOTER ── */
.wa-box {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-lg);
  padding: 28px;
}
.wa-desc {
  font-size: .88rem;
  color: rgba(255,255,255,.55);
  margin-bottom: 14px;
}
.wa-textarea {
  width: 100%;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius-sm);
  color: #fff;
  padding: 10px 14px;
  font-size: .9rem;
  resize: vertical;
  margin-bottom: 12px;
  transition: border-color .25s, box-shadow .25s;
}
.wa-textarea::placeholder { color: rgba(255,255,255,.3); }
.wa-textarea:focus {
  outline: none;
  border-color: #25d366;
  box-shadow: 0 0 0 3px rgba(37,211,102,.2);
}
.wa-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 24px;
  background: #25d366;
  color: #fff;
  border: none;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: .92rem;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 16px rgba(37,211,102,.3);
}
.wa-btn:hover {
  background: #1ebe5d;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37,211,102,.4);
}
.wa-btn:active { transform: translateY(0); }


/* ── REGIONAL OFFICES CARD ── */
.regional-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--shadow-sm);
  border: 1.5px solid var(--silver-200);
  height: 100%;
  transition: var(--transition);
}
.regional-card:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(74,156,214,.25);
  transform: translateY(-4px);
}
.regional-card-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
  padding-bottom: 18px;
  border-bottom: 2px solid var(--silver-100);
}
.regional-icon-wrap {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, var(--navy), var(--blue-dark));
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 1.3rem;
  flex-shrink: 0;
}
.regional-title {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--text-dark);
  margin: 0 0 2px;
}
.regional-subtitle {
  font-size: .78rem;
  color: var(--text-light);
  margin: 0;
  text-transform: uppercase;
  letter-spacing: .06em;
  font-weight: 600;
}
.regional-grid {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.regional-office-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  border-radius: var(--radius-md);
  border: 1.5px solid var(--silver-100);
  background: var(--silver-50);
  transition: all .28s cubic-bezier(.4,0,.2,1);
  cursor: default;
  position: relative;
}
.regional-office-item:hover {
  border-color: var(--blue);
  background: #f0f7ff;
  transform: translateX(5px);
  box-shadow: -4px 0 0 0 var(--blue), var(--shadow-sm);
}
.roi-flag {
  font-size: 1.6rem;
  line-height: 1;
  flex-shrink: 0;
  margin-top: 2px;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,.15));
  transition: transform .25s;
}
.regional-office-item:hover .roi-flag {
  transform: scale(1.18) rotate(-5deg);
}
.roi-body { flex: 1; min-width: 0; }
.roi-country {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: .92rem;
  color: var(--text-dark);
  margin-bottom: 5px;
}
.roi-detail {
  font-size: .78rem;
  color: var(--text-light);
  line-height: 1.55;
  display: flex;
  align-items: flex-start;
  gap: 5px;
  margin-top: 3px;
}
.roi-detail i {
  color: var(--blue);
  font-size: .72rem;
  margin-top: 2px;
  flex-shrink: 0;
}
.regional-office-item:hover .roi-detail { color: var(--text-mid); }

.roi-badge {
  position: absolute;
  top: 10px; right: 10px;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 2px 8px;
  border-radius: var(--radius-pill);
}
.active-badge    { background: #dcfce7; color: #16a34a; }
.presence-badge  { background: #dbeafe; color: #1d4ed8; }
.expanding-badge { background: #fef9c3; color: #a16207; }
.coverage-badge  { background: #f3e8ff; color: #7c3aed; }


/* ── OFFICE CARDS ── */
.office-card { position: relative; padding-top: 52px; }
.office-card-badge {
  position: absolute;
  top: 16px; left: 16px;
  background: linear-gradient(135deg, var(--navy), var(--blue-dark));
  color: #fff;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: var(--radius-pill);
}
.ops-badge { background: linear-gradient(135deg, var(--green-600), var(--green-400)); }
.office-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--silver-100);
}
.office-card-icon {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--navy), var(--blue-dark));
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 1.2rem; flex-shrink: 0;
  transition: var(--transition);
}
.ops-icon { background: linear-gradient(135deg, var(--green-600), var(--green-400)); }
.office-card:hover .office-card-icon { transform: scale(1.08) rotate(-4deg); }
.office-card-name {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: .92rem;
  color: var(--text-dark);
  line-height: 1.2;
}
.office-card-uen {
  font-size: .75rem;
  color: var(--text-light);
  margin-top: 2px;
  font-weight: 500;
}

/* ── CONTACT QUICK LINKS ── */
.contact-quick-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 4px;
}
.cql-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 16px;
  border-radius: var(--radius-pill);
  border: 1.5px solid var(--silver-200);
  background: #fff;
  color: var(--text-mid);
  font-size: .85rem;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}
.cql-item i { color: var(--blue); font-size: .85rem; }
.cql-item:hover {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.cql-item:hover i { color: #7ab648; }


/* ── SUSTAINABILITY NOTE ── */
.sustainability-note {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  background: linear-gradient(135deg, var(--green-50), #f0fdf4);
  border: 1.5px solid rgba(122,182,72,.25);
  border-radius: var(--radius-xl);
  padding: 32px 28px;
  box-shadow: 0 4px 24px rgba(90,158,47,.08);
  transition: var(--transition);
}
.sustainability-note:hover {
  box-shadow: 0 8px 32px rgba(90,158,47,.18);
  transform: translateY(-3px);
  border-color: rgba(122,182,72,.45);
}
.sn-icon-wrap {
  width: 52px; height: 52px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--green-500), var(--green-400));
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 1.4rem;
  box-shadow: 0 4px 14px rgba(90,158,47,.3);
  transition: var(--transition);
}
.sustainability-note:hover .sn-icon-wrap { transform: rotate(-8deg) scale(1.1); }
.sn-title {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  color: var(--green-600);
  margin-bottom: 10px;
}
.sn-body {
  font-size: .9rem;
  color: var(--text-mid);
  line-height: 1.75;
  margin: 0;
}



 