/* =============================================
   DEVADIYA FOUNDATION — style.css
   Version: 3.2 (Hero fix + Center alignment)
   ============================================= */

/* =============================================
   1. CSS VARIABLES
   ============================================= */
:root {
  --blue:         #0066b2;
  --blue-dark:    #004d87;
  --blue-light:   #e8f4fd;
  --orange:       #F47B20;
  --orange-dark:  #d4660f;
  --orange-light: #fff3e8;
  --orange-a11y:  #b85a0f;  /* WCAG AA-compliant orange for small body/label text on white (4.7:1) */
  --green:        #5a9e3c;
  --green-light:  #edf7e8;

  --gray-900: #1a202c;
  --gray-700: #374151;
  --gray-500: #6b7280;
  --gray-300: #d1d5db;
  --gray-100: #f3f4f6;
  --white:    #ffffff;
  --off-white:#fafbfc;

  --ff-heading: 'Nunito', sans-serif;
  --ff-body:    'Noto Sans', sans-serif;

  --shadow-sm: 0 1px 3px rgba(0,0,0,.08);
  --shadow-md: 0 4px 12px rgba(0,0,0,.10);
  --shadow-lg: 0 10px 30px rgba(0,0,0,.12);
  --shadow-xl: 0 20px 48px rgba(0,0,0,.15);

  --radius-sm:   8px;
  --radius-md:   12px;
  --radius-lg:   20px;
  --radius-xl:   28px;
  --radius-full: 9999px;

  --transition:  0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --nav-h:       72px; /* fallback — overridden by JS */
  --section-pad: 80px;
  --container-w: 1200px;
  --container-p: 24px;
}

/* =============================================
   2. RESET & BASE
   ============================================= */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body {
  font-family: var(--ff-body);
  font-size: 16px;
  color: var(--gray-700);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}
img, picture, video { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { border: none; background: none; font-family: inherit; cursor: pointer; }
input, textarea, select { font-family: inherit; font-size: inherit; }
::selection { background: var(--blue); color: white; }
:focus-visible { outline: 3px solid var(--blue); outline-offset: 3px; }

/* Screen reader only */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* Skip to content link — hidden until keyboard-focused */
.skip-link {
  position: absolute;
  top: -48px; left: 12px;
  z-index: 10000;
  background: var(--blue);
  color: white;
  padding: 12px 20px;
  border-radius: var(--radius-md);
  font-family: var(--ff-heading);
  font-weight: 700;
  font-size: 0.9375rem;
  transition: top 0.2s ease;
}
.skip-link:focus {
  top: 12px;
  outline: 3px solid white;
  outline-offset: 2px;
}

/* Honeypot field — invisible to humans, present for bots */
.hp-field {
  position: absolute !important;
  left: -9999px !important;
  top: -9999px !important;
  width: 1px; height: 1px;
  overflow: hidden;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
}

/* =============================================
   3. LAYOUT
   ============================================= */
.container {
  width: 100%;
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 var(--container-p);
}
.section     { padding: var(--section-pad) 0; }
.section-sm  { padding: 60px 0; }
.section-alt { background: var(--off-white); }

/* Section Header */
.section-header {
  text-align: center;
  margin-bottom: 52px;
}
.section-header h2 {
  font-family: var(--ff-heading);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: var(--gray-900);
  line-height: 1.2;
  margin-bottom: 12px;
}
.section-header h2 span { color: var(--blue); }
.section-header p {
  font-size: 1.0625rem;
  color: var(--gray-500);
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.7;
}
.section-divider {
  width: 56px; height: 4px;
  background: linear-gradient(90deg, var(--orange), var(--blue));
  border-radius: var(--radius-full);
  margin: 14px auto 0;
}

/* =============================================
   4. BUTTONS
   ============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  font-family: var(--ff-heading);
  font-weight: 700;
  font-size: 0.9375rem;
  border-radius: var(--radius-full);
  border: 2px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
  cursor: pointer;
  text-align: center;
  line-height: 1;
}
.btn-lg { padding: 14px 32px; font-size: 1rem; }
.btn-sm { padding: 8px 18px; font-size: 0.875rem; }

.btn-blue {
  background: var(--blue); color: white;
  box-shadow: 0 4px 14px rgba(0,102,178,.28);
}
.btn-blue:hover {
  background: var(--blue-dark); color: white;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,102,178,.38);
}

.btn-orange {
  background: var(--orange); color: white;
  box-shadow: 0 4px 14px rgba(244,123,32,.32);
}
.btn-orange:hover {
  background: var(--orange-dark); color: white;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(244,123,32,.42);
}

.btn-outline {
  background: transparent;
  border-color: rgba(255,255,255,.75);
  color: white;
}
.btn-outline:hover { background: white; color: var(--blue); border-color: white; }

.btn-ghost {
  background: var(--blue-light); color: var(--blue);
}
.btn-ghost:hover { background: var(--blue); color: white; }

/* =============================================
   5. PAGE LOADER
   ============================================= */
#loader {
  position: fixed; inset: 0; z-index: 9999;
  background: white;
  display: flex; align-items: center; justify-content: center;
  transition: opacity .4s ease, visibility .4s ease;
}
#loader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-spinner {
  width: 44px; height: 44px;
  border: 3px solid var(--gray-100);
  border-top-color: var(--blue);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* =============================================
   6. HEADER & NAVIGATION
   ============================================= */
.header {
  position: fixed; top: 0; left: 0; width: 100%;
  z-index: 1000;
  background: white;
  box-shadow: 0 2px 16px rgba(0,0,0,.06);
  border-bottom: 1px solid var(--gray-100);
  transition: box-shadow var(--transition);
}

/* Info bar + ticker collapse when scrolled */
.top-info-bar,
.impact-ticker {
  max-height: 60px;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}
.header.scrolled .top-info-bar,
.header.scrolled .impact-ticker {
  max-height: 0;
  padding-top: 0;
  padding-bottom: 0;
}

.header.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,.10); }
.header.scrolled {
  box-shadow: 0 4px 24px rgba(0,0,0,.10);
  backdrop-filter: blur(10px);
}

.nav-inner {
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.nav-logo img { height: 44px; width: auto; }
.nav-logo:hover img { transform: scale(1.03); transition: transform var(--transition); }

/* Desktop links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  flex-wrap: nowrap;
}
.nav-links a {
  font-family: var(--ff-heading);
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--gray-700);
  padding: 7px 12px;
  border-radius: var(--radius-full);
  transition: all var(--transition);
  white-space: nowrap;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--blue);
  background: var(--blue-light);
}
.nav-links .nav-donate.active,
.nav-links .nav-donate:hover {
  background: var(--orange-dark) !important;
  color: white !important;
}
.nav-links .nav-donate {
  background: var(--orange);
  color: white;
  padding: 8px 18px;
  margin-left: 6px;
  box-shadow: 0 3px 10px rgba(244,123,32,.28);
}
.nav-links .nav-donate:hover,
.nav-links .nav-donate:active,
.nav-links .nav-donate:focus,
.nav-links .nav-donate:visited {
  background: var(--orange-dark); color: white;
  box-shadow: 0 5px 14px rgba(244,123,32,.38);
  outline: none;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
  border-radius: var(--radius-sm);
}
.hamburger span {
  display: block;
  width: 24px; height: 2.5px;
  background: var(--blue);
  border-radius: 2px;
  transition: all var(--transition);
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile nav overlay */
.nav-overlay {
  display: none;
  position: fixed; inset: 0;
  z-index: 999;
  background: rgba(0,0,0,.5);
}
.nav-overlay.show { display: block; }

/* Mobile nav drawer */
.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 4px;
  position: fixed;
  top: var(--nav-h); left: 0;
  width: 100%; z-index: 1001;
  background: white;
  padding: 16px 20px 28px;
  box-shadow: 0 8px 32px rgba(0,0,0,.12);
  border-bottom: 1px solid var(--gray-100);
  max-height: calc(100vh - var(--nav-h));
  overflow-y: auto;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-family: var(--ff-heading);
  font-weight: 600; font-size: 1rem;
  color: var(--gray-700);
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}
.mobile-nav a:hover,
.mobile-nav a.active { background: var(--blue-light); color: var(--blue); }
.mobile-nav .nav-donate {
  background: var(--orange); color: white;
  text-align: center; margin-top: 8px;
  border-radius: var(--radius-full);
}
.mobile-nav .nav-donate:hover { background: var(--orange-dark); color: white; }

/* =============================================
   7. HERO  — REDUCED HEIGHT + CENTERED CONTENT
   ============================================= */
.hero {
  margin-top: var(--nav-h);
  position: relative;
  /* ★ Changed: reduced from calc(100vh - nav-h) to 65vh */
  height: 65vh;
  min-height: 460px;
  max-height: 580px;
  overflow: hidden;
}
.hero-slides { position: relative; width: 100%; height: 100%; }

.hero-slide {
  position: absolute; inset: 0;
  opacity: 0;
  transition: opacity 1.1s ease;
  pointer-events: none;
}
.hero-slide.active { opacity: 1; pointer-events: auto; z-index: 1; }

/* Slide background */
.hero-slide-bg {
  position: absolute; inset: 0;
}
.hero-slide-bg img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
}
.hero-slide:nth-child(1) .hero-slide-bg { background: linear-gradient(135deg,#0c4a8a,#2d9cdb); }
.hero-slide:nth-child(2) .hero-slide-bg { background: linear-gradient(135deg,#145a0a,#4a9e34); }
.hero-slide:nth-child(3) .hero-slide-bg { background: linear-gradient(135deg,#7a3a00,#e87d22); }

.hero-overlay {
  position: absolute; inset: 0; z-index: 2;
  background: linear-gradient(105deg,
    rgba(0,40,90,.82) 0%,
    rgba(0,60,120,.62) 45%,
    rgba(0,80,140,.25) 100%
  );
}

/* ★ Changed: content is now CENTERED */
.hero-content {
  position: absolute; inset: 0; z-index: 3;
  display: flex;
  align-items: center;
}
/* ★ Make the container flex so hero-text centers inside it */
.hero-content .container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}
.hero-text {
  max-width: 660px;
  width: 100%;
  text-align: center;
  padding: 0 20px;
}

/* ★ Hero tag — centered */
.hero-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.25);
  color: white;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  font-family: var(--ff-heading);
  font-size: 0.8125rem; font-weight: 600;
  letter-spacing: .04em; text-transform: uppercase;
  margin-bottom: 20px;
}
.hero-tag .dot {
  width: 7px; height: 7px;
  border-radius: 50%; background: var(--orange);
  display: inline-block; flex-shrink: 0;
}

.hero-title {
  font-family: var(--ff-heading);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 900; color: white; line-height: 1.2;
  margin-bottom: 16px;
  text-shadow: 0 2px 20px rgba(0,0,0,.3);
}
.hero-title strong { color: #ffc96e; }

.hero-subtitle {
  font-size: clamp(0.9375rem, 2vw, 1.0625rem);
  color: rgba(255,255,255,.88);
  line-height: 1.65;
  margin-bottom: 32px;
  max-width: 560px;
  margin-left: auto;    /* ★ center the subtitle block */
  margin-right: auto;
}

/* ★ Hero actions — centered */
.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;   /* ★ center buttons */
}

/* Indicators */
.hero-indicators {
  position: absolute; bottom: 22px; left: 50%;
  transform: translateX(-50%);
  z-index: 4; display: flex; gap: 10px;
}
.hero-dot {
  width: 10px; height: 10px;
  border-radius: var(--radius-full);
  background: rgba(255,255,255,.4);
  cursor: pointer; border: none;
  transition: all var(--transition);
  padding: 0;
}
.hero-dot:hover  { background: rgba(255,255,255,.7); }
.hero-dot.active { background: white; width: 32px; }

/* =============================================
   8. STATS STRIP
   ============================================= */
.stats-strip { background: var(--blue); }
.stats-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.stat-item {
  padding: 36px 20px;
  text-align: center;
  position: relative;
}
.stat-item + .stat-item::before {
  content: '';
  position: absolute; left: 0; top: 20%; height: 60%;
  width: 1px; background: rgba(255,255,255,.18);
}
.stat-num {
  font-family: var(--ff-heading);
  font-size: clamp(1.875rem, 4vw, 2.75rem);
  font-weight: 900; color: white;
  line-height: 1; margin-bottom: 6px;
}
.stat-suffix { color: var(--orange); font-size: .65em; }
.stat-label {
  font-size: 0.875rem;
  color: rgba(255,255,255,.75);
  font-weight: 500;
}

/* =============================================
   9. WHO WE ARE
   ============================================= */
.who-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 64px; align-items: center;
}
.who-img-wrap { position: relative; }
.who-img-holder {
  width: 100%; aspect-ratio: 4/3;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  background: linear-gradient(135deg, var(--blue-light), #cde6f8);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 10px; position: relative;
}
.who-img-holder img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.who-img-holder i { font-size: 3.5rem; color: var(--blue); opacity: .25; position: relative; }
.who-badge {
  position: absolute;
  bottom: -20px; right: -20px;
  background: var(--orange); color: white;
  padding: 18px 22px;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow-lg);
  z-index: 2;
}
.who-badge-num {
  font-family: var(--ff-heading);
  font-size: 2.125rem; font-weight: 900; line-height: 1;
}
.who-badge-lbl { font-size: 0.8125rem; font-weight: 600; opacity: .9; margin-top: 2px; }

.who-text .eyebrow {
  font-size: 0.8125rem; font-weight: 700;
  color: var(--orange); letter-spacing: .08em;
  text-transform: uppercase; margin-bottom: 12px;
}
.who-text h2 {
  font-family: var(--ff-heading);
  font-size: clamp(1.625rem, 3.5vw, 2.375rem);
  font-weight: 800; color: var(--gray-900);
  line-height: 1.2; margin-bottom: 20px;
}
.who-text p {
  font-size: 1rem; line-height: 1.75;
  color: var(--gray-500); margin-bottom: 14px;
}

/* TM superscript mark */
.tm-mark {
  font-size: 0.5em;
  vertical-align: super;
  font-weight: 400;
  color: var(--orange);
  letter-spacing: 0;
  line-height: 1;
}
.who-pillars {
  display: flex; flex-wrap: wrap; gap: 10px;
  margin: 24px 0 30px;
}
.pillar-tag {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--blue-light); color: var(--blue);
  padding: 7px 14px; border-radius: var(--radius-full);
  font-family: var(--ff-heading);
  font-size: 0.875rem; font-weight: 700;
}
.pillar-tag i { font-size: 0.75rem; }

/* =============================================
   10. FOCUS AREAS
   ============================================= */
.focus-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  max-width: 820px;
  margin: 0 auto;
}
.focus-card {
  background: white;
  border-radius: var(--radius-xl);
  padding: 40px 30px;
  box-shadow: var(--shadow-md);
  border: 1.5px solid var(--gray-100);
  transition: all var(--transition);
  position: relative; overflow: hidden;
  display: flex; flex-direction: column;
  align-items: flex-start;
}
.focus-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--blue), var(--orange));
  transform: scaleX(0); transform-origin: left;
  transition: transform var(--transition);
}
.focus-card:hover::before { transform: scaleX(1); }
.focus-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: transparent;
}
.focus-icon {
  width: 68px; height: 68px;
  border-radius: var(--radius-lg);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.75rem; margin-bottom: 24px;
  transition: transform var(--transition);
}
.focus-card:hover .focus-icon { transform: scale(1.1); }
.focus-card.blue   .focus-icon { background: var(--blue-light);   color: var(--blue);   }
.focus-card.green  .focus-icon { background: var(--green-light);  color: var(--green);  }
.focus-card.orange .focus-icon { background: var(--orange-light); color: var(--orange); }
.focus-card h3 {
  font-family: var(--ff-heading);
  font-size: 1.25rem; font-weight: 800;
  color: var(--gray-900); margin-bottom: 12px;
}
.focus-card p {
  font-size: 0.9375rem; line-height: 1.7;
  color: var(--gray-500); margin-bottom: 28px; flex: 1;
}
.focus-link {
  font-family: var(--ff-heading); font-weight: 700; font-size: 0.875rem;
  display: inline-flex; align-items: center; gap: 6px;
  transition: gap var(--transition);
}
.focus-card.blue   .focus-link { color: var(--blue);   }
.focus-card.green  .focus-link { color: var(--green);  }
.focus-card.orange .focus-link { color: var(--orange); }
.focus-link:hover  { gap: 10px; }

/* =============================================
   11. NEWS SLIDER — standalone, no JS timing dep
   ============================================= */
.news-tabs {
  display: flex; justify-content: center; gap: 8px;
  margin-bottom: 40px; flex-wrap: wrap;
}
.news-tab {
  padding: 10px 22px;
  border-radius: var(--radius-full);
  font-family: var(--ff-heading);
  font-weight: 700; font-size: 0.9375rem;
  color: var(--gray-500);
  border: 2px solid var(--gray-200);
  transition: all var(--transition); cursor: pointer;
  background: white;
}
.news-tab:hover { border-color: var(--blue); color: var(--blue); background: var(--blue-light); }
.news-tab.active {
  background: var(--blue); color: white; border-color: var(--blue);
  box-shadow: 0 4px 14px rgba(0,102,178,.28);
}

.news-panel { display: none; }
.news-panel.active { display: block; animation: fadeUp .4s ease; }
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── Slider wrapper ── */
.ns-slider {
  position: relative;
  padding: 0 48px;
}

/* ── Viewport clips overflow ── */
.ns-viewport {
  overflow: hidden;
  border-radius: var(--radius-lg);
}

/* ── Track: always a horizontal row ── */
.ns-track {
  display: flex;
  flex-direction: row;        /* always left-to-right */
  flex-wrap: nowrap;          /* never wrap to next line */
  align-items: stretch;
  transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
  will-change: transform;
}

/* ── Each card: fixed 1/3 width ── */
.ns-card {
  flex: 0 0 calc(33.333% - 16px);   /* exactly 1/3 minus gap share */
  width:  calc(33.333% - 16px);
  min-width: calc(33.333% - 16px);
  margin-right: 24px;
  background: white;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1.5px solid var(--gray-100);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}
.ns-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-xl); border-color: transparent; }

/* ── Card image area ── */
.ns-card-img {
  position: relative;
  height: 200px;
  flex-shrink: 0;
  overflow: hidden;
  background: var(--gray-100);
}
.ns-card-img img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.ns-card:hover .ns-card-img img { transform: scale(1.07); }

/* placeholder bg */
.ns-placeholder {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
}
.ns-placeholder i { font-size: 2.5rem; color: rgba(255,255,255,.35); }
.nc-education  .ns-placeholder { background: linear-gradient(135deg,#1565c0,#42a5f5); }
.nc-healthcare .ns-placeholder { background: linear-gradient(135deg,#c62828,#ef5350); }
.nc-community  .ns-placeholder { background: linear-gradient(135deg,#2e7d32,#66bb6a); }
.nc-event1     .ns-placeholder { background: linear-gradient(135deg,#6a1b9a,#ab47bc); }
.nc-event2     .ns-placeholder { background: linear-gradient(135deg,#e65100,#ffa726); }

/* category badge */
.ns-cat {
  position: absolute; top: 14px; left: 14px; z-index: 2;
  padding: 4px 12px; border-radius: var(--radius-full);
  font-family: var(--ff-heading);
  font-size: 0.75rem; font-weight: 700;
  letter-spacing: .04em; text-transform: uppercase;
}

/* ── Card body ── */
.ns-body {
  padding: 24px; flex: 1;
  display: flex; flex-direction: column;
}
.ns-meta {
  display: flex; align-items: center; gap: 6px;
  font-size: 0.8125rem; color: var(--gray-500);
  margin-bottom: 10px;
}
.ns-meta i { color: var(--blue); font-size: .7rem; }
.ns-title {
  font-family: var(--ff-heading);
  font-size: 1.0625rem; font-weight: 800;
  color: var(--gray-900); line-height: 1.35;
  margin-bottom: 10px; flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.ns-excerpt {
  font-size: 0.9rem; color: var(--gray-500); line-height: 1.65;
  display: -webkit-box;
  -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
  margin-bottom: 18px;
}
.ns-footer {
  border-top: 1px solid var(--gray-100);
  padding-top: 16px; margin-top: auto;
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
}

/* ── Prev / Next buttons ── */
.ns-prev, .ns-next {
  position: absolute;
  top: 50%; transform: translateY(-60%);
  width: 42px; height: 42px;
  border-radius: 50%;
  background: white; color: var(--blue);
  border: 2px solid var(--gray-200);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.875rem; cursor: pointer;
  box-shadow: var(--shadow-md);
  transition: all var(--transition);
  z-index: 10;
}
.ns-prev { left: 0; }
.ns-next { right: 0; }
.ns-prev:hover, .ns-next:hover {
  background: var(--blue); color: white; border-color: var(--blue);
  transform: translateY(-60%) scale(1.08);
}
.ns-prev:disabled, .ns-next:disabled { opacity: 0.35; cursor: default; pointer-events: none; }

/* ── Dots ── */
.ns-dots {
  display: flex; justify-content: center; gap: 8px;
  margin-top: 24px;
}
.ns-dot {
  width: 9px; height: 9px;
  border-radius: var(--radius-full);
  background: var(--gray-300);
  border: none; cursor: pointer; padding: 0;
  transition: all var(--transition);
}
.ns-dot.active { background: var(--blue); width: 28px; }
.ns-dot:hover  { background: var(--gray-500); }

.news-footer-row { text-align: center; margin-top: 44px; }

/* ── Responsive ── */
@media (max-width: 899px) {
  .ns-card {
    flex: 0 0 calc(50% - 12px);
    width:  calc(50% - 12px);
    min-width: calc(50% - 12px);
    margin-right: 24px;
  }
}
@media (max-width: 599px) {
  .ns-slider { padding: 0 36px; }
  .ns-card {
    flex: 0 0 100%;
    width: 100%;
    min-width: 100%;
    margin-right: 0;
  }
}

/* News Cards */
.news-card {
  background: white;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1.5px solid var(--gray-100);
  transition: all var(--transition);
  display: flex; flex-direction: column;
}
.news-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-xl); border-color: transparent; }

.news-card-img {
  position: relative; overflow: hidden;
  height: 200px; flex-shrink: 0;
  background: var(--gray-100);
}
.news-card-img img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.news-card:hover .news-card-img img { transform: scale(1.07); }

/* Coloured placeholder per card type */
.news-card-placeholder {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
}
.news-card-placeholder i { font-size: 2.5rem; color: rgba(255,255,255,.35); }
.nc-education  .news-card-placeholder { background: linear-gradient(135deg,#1565c0,#42a5f5); }
.nc-healthcare .news-card-placeholder { background: linear-gradient(135deg,#c62828,#ef5350); }
.nc-community  .news-card-placeholder { background: linear-gradient(135deg,#2e7d32,#66bb6a); }
.nc-event1     .news-card-placeholder { background: linear-gradient(135deg,#6a1b9a,#ab47bc); }
.nc-event2     .news-card-placeholder { background: linear-gradient(135deg,#e65100,#ffa726); }

/* Category badge */
.news-card-cat {
  position: absolute; top: 14px; left: 14px; z-index: 2;
  padding: 4px 12px; border-radius: var(--radius-full);
  font-family: var(--ff-heading);
  font-size: 0.75rem; font-weight: 700;
  letter-spacing: .04em; text-transform: uppercase;
}
.cat-edu   { background: var(--blue-light);   color: var(--blue);   }
.cat-hlth  { background: #ffe8e8;             color: #c62828;       }
.cat-com   { background: var(--green-light);  color: var(--green);  }
.cat-event { background: var(--orange-light); color: var(--orange); }

/* Card body */
.news-card-body {
  padding: 24px; flex: 1;
  display: flex; flex-direction: column;
}
.news-meta {
  display: flex; align-items: center; gap: 6px;
  font-size: 0.8125rem; color: var(--gray-500);
  margin-bottom: 10px;
}
.news-meta i { color: var(--blue); font-size: .7rem; }
.news-card-title {
  font-family: var(--ff-heading);
  font-size: 1.0625rem; font-weight: 800;
  color: var(--gray-900); line-height: 1.35;
  margin-bottom: 10px; flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.news-card-excerpt {
  font-size: 0.9rem; color: var(--gray-500); line-height: 1.65;
  display: -webkit-box;
  -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
  margin-bottom: 18px;
}
.news-card-footer {
  border-top: 1px solid var(--gray-100);
  padding-top: 16px; margin-top: auto;
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px;
}
.news-read-more {
  font-family: var(--ff-heading); font-weight: 700; font-size: 0.875rem;
  color: var(--blue);
  display: inline-flex; align-items: center; gap: 6px;
  transition: gap var(--transition), color var(--transition);
}
.news-read-more:hover { gap: 10px; color: var(--blue-dark); }

/* Event date badge */
.event-date-badge {
  display: flex; flex-direction: column; align-items: center;
  background: var(--orange); color: white;
  padding: 8px 14px; border-radius: var(--radius-md);
  font-family: var(--ff-heading); flex-shrink: 0;
}
.event-date-badge .ed-day { font-size: 1.5rem; font-weight: 900; line-height: 1; }
.event-date-badge .ed-mon { font-size: 0.75rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; }

.news-footer-row { text-align: center; margin-top: 44px; }

/* =============================================
   12. VIDEOS
   ============================================= */
.videos-section { background: #0d1b2a; padding: var(--section-pad) 0; }
.videos-section .section-header h2 { color: white; }
.videos-section .section-header h2 span { color: #ffc96e; }
.videos-section .section-header p  { color: rgba(255,255,255,.6); }

.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.video-card {
  position: relative; border-radius: var(--radius-lg);
  overflow: hidden; cursor: pointer;
  aspect-ratio: 16/9;
  transition: all var(--transition);
  box-shadow: 0 8px 24px rgba(0,0,0,.3);
  background: #1e2d3d;
}
.video-card:hover { transform: scale(1.03); box-shadow: 0 16px 40px rgba(0,0,0,.5); }
.video-card img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.video-placeholder {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
}
.video-placeholder i { font-size: 2.5rem; color: rgba(255,255,255,.12); }
.video-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.72) 0%, transparent 55%);
  display: flex; align-items: center; justify-content: center;
  transition: background var(--transition);
}
.video-card:hover .video-overlay { background: linear-gradient(to top, rgba(0,0,0,.82) 0%, rgba(0,0,0,.18) 100%); }
.play-btn {
  width: 54px; height: 54px;
  background: rgba(255,255,255,.92); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--blue); font-size: 1.125rem;
  transition: all var(--transition);
  box-shadow: 0 4px 16px rgba(0,0,0,.3);
}
.play-btn i { margin-left: 3px; }
.video-card:hover .play-btn { background: white; transform: scale(1.14); }
.video-info {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 14px 16px;
}
.video-title { font-family: var(--ff-heading); font-weight: 700; font-size: 0.9rem; color: white; line-height: 1.3; }

/* =============================================
   13. GET INVOLVED
   ============================================= */
.involved-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.involved-card {
  background: white; border-radius: var(--radius-xl);
  padding: 40px 30px; text-align: center;
  box-shadow: var(--shadow-md);
  border: 1.5px solid var(--gray-100);
  transition: all var(--transition);
  position: relative; overflow: hidden;
}
.involved-card::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 4px;
}
.involved-card.card-donate::after   { background: var(--orange); }
.involved-card.card-volunteer::after { background: var(--blue); }
.involved-card.card-partner::after  { background: var(--green); }
.involved-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-xl); }
.involved-icon {
  width: 80px; height: 80px;
  border-radius: 50%; margin: 0 auto 24px;
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem;
  transition: transform var(--transition);
}
.involved-card:hover .involved-icon { transform: scale(1.1) rotate(-5deg); }
.card-donate   .involved-icon { background: var(--orange-light); color: var(--orange); }
.card-volunteer .involved-icon { background: var(--blue-light);   color: var(--blue);   }
.card-partner  .involved-icon { background: var(--green-light);  color: var(--green);  }
.involved-card h3 {
  font-family: var(--ff-heading);
  font-size: 1.375rem; font-weight: 800;
  color: var(--gray-900); margin-bottom: 12px;
}
.involved-card p {
  font-size: 0.9375rem; color: var(--gray-500);
  line-height: 1.7; margin-bottom: 28px;
}

/* =============================================
   14. GALLERY PREVIEW
   ============================================= */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.gallery-item {
  position: relative; overflow: hidden;
  border-radius: var(--radius-md); cursor: pointer;
  min-height: 180px;
}
.gallery-item:first-child {
  grid-column: span 2; grid-row: span 2;
  min-height: 360px;
}
.gallery-placeholder {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
}
.gallery-item:nth-child(1) .gallery-placeholder { background: linear-gradient(135deg,#0066b2,#42a5f5); }
.gallery-item:nth-child(2) .gallery-placeholder { background: linear-gradient(135deg,#5a9e3c,#81c784); }
.gallery-item:nth-child(3) .gallery-placeholder { background: linear-gradient(135deg,#F47B20,#ffb74d); }
.gallery-item:nth-child(4) .gallery-placeholder { background: linear-gradient(135deg,#6a1b9a,#ce93d8); }
.gallery-item:nth-child(5) .gallery-placeholder { background: linear-gradient(135deg,#c62828,#e57373); }
.gallery-placeholder i { font-size: 2rem; color: rgba(255,255,255,.35); }
.gallery-item img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s ease;
}
.gallery-item:hover img { transform: scale(1.07); }
.gallery-cap {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,70,150,.80) 0%, transparent 55%);
  display: flex; align-items: flex-end; padding: 16px;
  opacity: 0; transition: opacity var(--transition);
}
.gallery-item:hover .gallery-cap { opacity: 1; }
.gallery-cap span { color: white; font-family: var(--ff-heading); font-weight: 700; font-size: 0.875rem; }

/* =============================================
   15. PARTNERS
   ============================================= */
.partners-row {
  display: flex; flex-wrap: wrap; gap: 16px;
  justify-content: center; align-items: center;
}
.partner-pill {
  background: white; border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 16px 28px; min-width: 150px; text-align: center;
  transition: all var(--transition); box-shadow: var(--shadow-sm);
}
.partner-pill:hover { border-color: var(--blue); box-shadow: var(--shadow-md); transform: translateY(-3px); }
.partner-pill span { font-family: var(--ff-heading); font-weight: 700; color: var(--gray-500); font-size: 1rem; transition: color var(--transition); }
.partner-pill:hover span { color: var(--blue); }
.partner-pill img { max-height: 48px; width: auto; margin: 0 auto; filter: grayscale(1); opacity: .65; transition: all var(--transition); }
.partner-pill:hover img { filter: grayscale(0); opacity: 1; }
.partner-cta { text-align: center; margin-top: 36px; }

/* =============================================
   16. FOOTER
   ============================================= */
.footer { background: #0d1b2a; color: white; padding: 72px 0 0; }
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 44px;
  padding-bottom: 52px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-logo {
  display: block; height: 56px; width: auto; margin-bottom: 18px;
  background: rgba(255,255,255,.95); border-radius: 10px; padding: 6px 10px;
}
.footer-tagline {
  font-size: 0.9375rem; line-height: 1.75;
  color: rgba(255,255,255,.6); margin-bottom: 22px;
}
.footer-tagline em { font-style: normal; color: rgba(255,255,255,.45); }
.footer-social { display: flex; gap: 10px; }
.soc-btn {
  width: 38px; height: 38px;
  background: rgba(255,255,255,.07); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9375rem; color: rgba(255,255,255,.7);
  transition: all var(--transition);
  border: 1px solid rgba(255,255,255,.10);
}
.soc-btn:hover { background: var(--orange); color: white; border-color: var(--orange); transform: translateY(-3px); }

.footer-col h4 {
  font-family: var(--ff-heading); font-size: 0.9375rem; font-weight: 800;
  color: white; margin-bottom: 18px;
  position: relative; padding-bottom: 12px;
}
.footer-col h4::after {
  content: '';
  position: absolute; bottom: 0; left: 0;
  width: 32px; height: 2px;
  background: var(--orange); border-radius: 2px;
}
.footer-nav { display: flex; flex-direction: column; gap: 10px; }
.footer-nav a {
  font-size: 0.9rem; color: rgba(255,255,255,.6);
  display: flex; align-items: center; gap: 8px;
  transition: all var(--transition); padding: 2px 0;
}
.footer-nav a i { font-size: .65rem; transition: transform var(--transition); }
.footer-nav a:hover { color: white; padding-left: 4px; }
.footer-nav a:hover i { transform: translateX(3px); }
.footer-contact-item {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 0.9rem; color: rgba(255,255,255,.6);
  margin-bottom: 14px; line-height: 1.6;
}
.footer-contact-item i { color: var(--orange); margin-top: 3px; font-size: 0.875rem; flex-shrink: 0; }
.footer-contact-item a { color: inherit; transition: color var(--transition); }
.footer-contact-item a:hover { color: white; }

/* Newsletter */
.newsletter-box p { font-size: 0.875rem; color: rgba(255,255,255,.55); margin-bottom: 14px; line-height: 1.6; }
.newsletter-input-row { display: flex; gap: 8px; }
.newsletter-input-row input {
  flex: 1; padding: 10px 14px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-full);
  color: white; font-size: 0.875rem;
  transition: border-color var(--transition);
  min-width: 0;
}
.newsletter-input-row input::placeholder { color: rgba(255,255,255,.35); }
.newsletter-input-row input:focus { outline: none; border-color: rgba(255,255,255,.35); }
.newsletter-input-row button {
  background: var(--orange); color: white;
  padding: 10px 18px; border-radius: var(--radius-full);
  font-family: var(--ff-heading); font-weight: 700; font-size: 0.875rem;
  transition: all var(--transition); white-space: nowrap; flex-shrink: 0; cursor: pointer;
  border: none;
}
.newsletter-input-row button:hover { background: var(--orange-dark); }
.nl-msg { margin-top: 10px; font-size: 0.85rem; display: none; }
.nl-msg.success { color: #6ee7b7; }
.nl-msg.error   { color: #fca5a5; }

.footer-bottom {
  padding: 20px 0; text-align: center;
  border-top: 1px solid rgba(255,255,255,.05);
}
.footer-bottom p { font-size: 0.875rem; color: rgba(255,255,255,.35); }

/* =============================================
   17. SCROLL TO TOP
   ============================================= */
.scroll-top-btn {
  position: fixed; bottom: 28px; right: 28px; z-index: 500;
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--blue); color: white; border: none;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; cursor: pointer;
  box-shadow: 0 4px 16px rgba(0,102,178,.4);
  opacity: 0; pointer-events: none;
  transition: all var(--transition);
}
.scroll-top-btn.show { opacity: 1; pointer-events: auto; }
.scroll-top-btn:hover { background: var(--blue-dark); transform: translateY(-3px); }

/* =============================================
   18. TOAST
   ============================================= */
.toast {
  position: fixed; top: 90px; right: -420px;
  background: white; padding: 14px 18px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xl);
  z-index: 9000;
  display: flex; align-items: center; gap: 12px;
  min-width: 280px; max-width: 360px;
  transition: right .35s cubic-bezier(0.4, 0, 0.2, 1);
}
.toast.show     { right: 24px; }
.toast.success  { border-left: 4px solid #10b981; }
.toast.error    { border-left: 4px solid #ef4444; }
.toast i { font-size: 1.25rem; }
.toast.success i { color: #10b981; }
.toast.error   i { color: #ef4444; }
.toast span { font-size: 0.9rem; color: var(--gray-700); font-weight: 500; }

/* =============================================
   19. SCROLL REVEAL
   ============================================= */
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .12s; }
.reveal-delay-2 { transition-delay: .24s; }
.reveal-delay-3 { transition-delay: .36s; }

/* =============================================
   20. RESPONSIVE — Tablet ≤1024px
   ============================================= */
@media (max-width: 1024px) {
  :root { --section-pad: 64px; --container-p: 20px; }

  .who-grid { grid-template-columns: 1fr; gap: 48px; }
  .who-badge { bottom: -14px; right: 14px; }

  .involved-grid { grid-template-columns: repeat(3, 1fr); gap: 18px; }

  .footer-top { grid-template-columns: 1fr 1fr; gap: 36px; }
}

/* =============================================
   21. RESPONSIVE — Mobile ≤768px
   ============================================= */
@media (max-width: 768px) {
  :root { --nav-h: 64px; --section-pad: 52px; --container-p: 16px; }

  /* Header */
  .nav-links  { display: none; }
  .hamburger  { display: flex; }

  /* Hero — smaller on mobile */
  .hero {
    height: 60vh;
    min-height: 400px;
    max-height: 520px;
  }
  .hero-actions { flex-direction: column; align-items: center; }
  .hero-actions .btn { width: 100%; max-width: 260px; justify-content: center; }

  /* Stats */
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(3)::before,
  .stat-item:nth-child(5)::before { display: none; }

  /* Who We Are */
  .who-badge { position: static; display: inline-flex; gap: 12px; margin-top: 20px; border-radius: var(--radius-md); align-items: center; padding: 14px 20px; }

  /* Focus */
  .focus-grid { grid-template-columns: 1fr; }
  .focus-card { padding: 30px 24px; }

  /* News */
  .news-tabs { gap: 6px; }
  .news-tab  { padding: 8px 16px; font-size: 0.875rem; }

  /* Involved */
  .involved-grid { grid-template-columns: 1fr; gap: 18px; }
  .involved-card { padding: 30px 24px; }

  /* Gallery */
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .gallery-item:first-child { grid-column: span 2; min-height: 220px; grid-row: span 1; }
  .gallery-item { min-height: 140px; }

  /* Footer */
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .newsletter-input-row { flex-direction: column; }
  .newsletter-input-row button { width: 100%; }

  /* Scroll top */
  .scroll-top-btn { bottom: 20px; right: 16px; width: 42px; height: 42px; }

  /* Toast */
  .toast { min-width: auto; max-width: calc(100% - 32px); }
  .toast.show { right: 16px; }
}

/* =============================================
   22. RESPONSIVE — Small mobile ≤480px
   ============================================= */
@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item:first-child { grid-column: 1; min-height: 200px; }
  .gallery-item { min-height: 160px; }
  .hero-title { font-size: 1.75rem; }
  .stat-num { font-size: 1.875rem; }
  .section-header h2 { font-size: 1.625rem; }
}

/* =============================================
   CAROUSEL SYSTEM — shared across all sections
   ============================================= */

/* Outer wrapper — needs padding for buttons to overflow */
.carousel-wrap {
  position: relative;
  padding: 0 44px;
  margin: 0 -4px;
}

/* Clipping window */
.carousel-viewport {
  overflow: hidden;
  border-radius: var(--radius-lg);
}

/* Scrolling track */
.carousel-track {
  display: flex;
  flex-wrap: nowrap;
  gap: 0;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
  align-items: stretch;
}

/* Every child becomes a slide */
.carousel-slide {
  flex: 0 0 auto;
  min-width: 0;
}

/* ── Nav Buttons ── */
.car-prev,
.car-next {
  position: absolute;
  top: 50%;
  transform: translateY(-60%);
  width: 42px; height: 42px;
  border-radius: 50%;
  background: white;
  color: var(--blue);
  border: 2px solid var(--gray-200);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.875rem;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  transition: all var(--transition);
  z-index: 10;
  flex-shrink: 0;
}
.car-prev { left: 0; }
.car-next { right: 0; }

.car-prev:hover,
.car-next:hover {
  background: var(--blue);
  color: white;
  border-color: var(--blue);
  transform: translateY(-60%) scale(1.08);
  box-shadow: var(--shadow-lg);
}
.car-prev:disabled,
.car-next:disabled {
  opacity: 0.35;
  cursor: default;
  pointer-events: none;
}

/* Dark bg variant (video section) */
.car-prev--dark,
.car-next--dark {
  background: rgba(255,255,255,.12);
  color: white;
  border-color: rgba(255,255,255,.2);
}
.car-prev--dark:hover,
.car-next--dark:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: white;
}

/* ── Dots ── */
.car-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 22px;
}
.car-dot {
  width: 9px; height: 9px;
  border-radius: var(--radius-full);
  background: var(--gray-300);
  border: none; cursor: pointer; padding: 0;
  transition: all var(--transition);
}
.car-dot:hover { background: var(--gray-400); }
.car-dot.active {
  background: var(--blue);
  width: 28px;
}

/* Light dots (dark bg) */
.car-dots--light .car-dot { background: rgba(255,255,255,.3); }
.car-dots--light .car-dot:hover { background: rgba(255,255,255,.6); }
.car-dots--light .car-dot.active { background: white; }

/* ── Gallery items in carousel need fixed height ── */
.carousel-wrap .gallery-item {
  aspect-ratio: 4/3;
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  min-height: 0;
}
.carousel-wrap .gallery-placeholder {
  position: absolute; inset: 0;
  min-height: 0;
  display: flex; align-items: center; justify-content: center;
}
.carousel-wrap .gallery-placeholder img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
}
.carousel-wrap .gallery-placeholder i {
  position: relative; z-index: 1;
  font-size: 2rem; color: rgba(255,255,255,.3);
}
/* Named color variants */
.gp-blue   { background: linear-gradient(135deg,#0066b2,#42a5f5); }
.gp-green  { background: linear-gradient(135deg,#5a9e3c,#81c784); }
.gp-orange { background: linear-gradient(135deg,#F47B20,#ffb74d); }
.gp-purple { background: linear-gradient(135deg,#6a1b9a,#ce93d8); }
.gp-red    { background: linear-gradient(135deg,#c62828,#e57373); }

/* ── Video cards in carousel ── */
.carousel-wrap .video-card {
  aspect-ratio: 16/9;
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  background: #1e2d3d;
  box-shadow: 0 8px 24px rgba(0,0,0,.3);
  transition: transform var(--transition), box-shadow var(--transition);
}
.carousel-wrap .video-card:hover {
  transform: scale(1.02);
  box-shadow: 0 16px 40px rgba(0,0,0,.5);
}
.carousel-wrap .video-placeholder {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
}
.carousel-wrap .video-placeholder img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
}
.carousel-wrap .video-placeholder i {
  position: relative; z-index: 1;
  font-size: 2.5rem; color: rgba(255,255,255,.12);
}

/* ── News cards in carousel ── */
.carousel-wrap .news-card {
  height: 100%;
  border-radius: var(--radius-xl);
}

/* ★ CRITICAL FIX: Force news panel slides into 3-per-row layout via CSS.
   This guarantees cards are always in a ROW even before JS measures widths.
   JS will override with exact pixel values once it runs correctly. */
.news-panel .carousel-wrap .carousel-slide {
  width: calc(33.333% - 16px) !important;
  min-width: calc(33.333% - 16px) !important;
}
@media (max-width: 899px) {
  .news-panel .carousel-wrap .carousel-slide {
    width: calc(50% - 12px) !important;
    min-width: calc(50% - 12px) !important;
  }
}
@media (max-width: 599px) {
  .news-panel .carousel-wrap .carousel-slide {
    width: calc(100% - 0px) !important;
    min-width: 100% !important;
  }
}

/* videos-section carousel padding tweak */
.videos-section .carousel-wrap {
  padding: 0 48px;
}
.videos-section .car-prev,
.videos-section .car-next {
  background: rgba(255,255,255,.1);
  color: white;
  border-color: rgba(255,255,255,.15);
}
.videos-section .car-prev:hover,
.videos-section .car-next:hover {
  background: var(--orange);
  border-color: var(--orange);
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .carousel-wrap  { padding: 0 36px; }
  .car-prev, .car-next { width: 36px; height: 36px; font-size: 0.8rem; }
  .videos-section .carousel-wrap { padding: 0 40px; }
}
@media (max-width: 480px) {
  .carousel-wrap  { padding: 0 32px; }
  .car-prev, .car-next { width: 32px; height: 32px; }
}

/* =============================================
   NTAB — Dedicated News Tab Carousel
   Completely separate from shared .carousel-wrap
   system. Measures #news .container (always
   visible) so width is always correct.
   ============================================= */
.ntab-wrap {
  position: relative;
  padding: 0 48px;
  margin-top: 8px;
}
.ntab-viewport {
  overflow: hidden;
  border-radius: var(--radius-lg);
}
.ntab-track {
  display: flex;
  flex-wrap: nowrap;
  align-items: stretch;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}
/* Slides — width set precisely by JS using container measurement */
.ntab-slide {
  flex-shrink: 0;
  flex-grow: 0;
  min-width: 0;
}
/* Cards inside ntab slides fill their slide */
.ntab-slide.news-card {
  height: 100%;
  border-radius: var(--radius-xl);
  display: flex;
  flex-direction: column;
}

/* ── ntab buttons ── */
.ntab-prev,
.ntab-next {
  position: absolute;
  top: 50%;
  transform: translateY(-60%);
  width: 42px; height: 42px;
  border-radius: 50%;
  background: white;
  color: var(--blue);
  border: 2px solid var(--gray-200);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.875rem;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  transition: all var(--transition);
  z-index: 10;
}
.ntab-prev { left: 0; }
.ntab-next { right: 0; }
.ntab-prev:hover,
.ntab-next:hover {
  background: var(--blue);
  color: white;
  border-color: var(--blue);
  transform: translateY(-60%) scale(1.08);
  box-shadow: var(--shadow-lg);
}
.ntab-prev:disabled,
.ntab-next:disabled {
  opacity: 0.35;
  cursor: default;
  pointer-events: none;
}

/* ── ntab dots ── */
.ntab-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}
.ntab-dot {
  width: 9px; height: 9px;
  border-radius: var(--radius-full);
  background: var(--gray-300);
  border: none; cursor: pointer; padding: 0;
  transition: all var(--transition);
}
.ntab-dot:hover { background: var(--gray-400); }
.ntab-dot.active {
  background: var(--blue);
  width: 28px;
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .ntab-wrap { padding: 0 38px; }
  .ntab-prev, .ntab-next { width: 36px; height: 36px; font-size: 0.8rem; }
}
@media (max-width: 480px) {
  .ntab-wrap { padding: 0 32px; }
  .ntab-prev, .ntab-next { width: 32px; height: 32px; }
}


/* =============================================
   DROPDOWN NAV + LANGUAGE TOGGLE
   ============================================= */

.nav-right {
  display: flex; align-items: center; gap: 8px;
}

/* ── Language Toggle ── */
.lang-toggle {
  display: inline-flex; align-items: center; gap: 3px;
  padding: 5px 13px;
  background: white;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-full);
  cursor: pointer;
  font-family: var(--ff-heading);
  font-size: 0.8125rem;
  transition: all var(--transition);
  white-space: nowrap;
}
.lang-toggle:hover { border-color: var(--blue); background: var(--blue-light); }
.lang-en-label { color: var(--blue);    font-weight: 900; transition: all .2s; }
.lang-sep      { color: var(--gray-300); font-weight: 400; margin: 0 1px; }
.lang-hi-label { color: var(--gray-400); font-weight: 400; transition: all .2s; }

/* ── Dropdown wrapper ── */
.nav-dropdown {
  position: relative;
  display: inline-flex; align-items: center;
}
.nav-dropdown-trigger {
  display: inline-flex !important;
  align-items: center !important;
  gap: 4px;
  cursor: pointer;
}
.nav-dd-arrow {
  font-size: 0.6rem;
  transition: transform 0.2s ease;
  pointer-events: none;
}
.nav-dropdown:hover .nav-dd-arrow,
.nav-dropdown.open  .nav-dd-arrow { transform: rotate(180deg); }

/* ── Dropdown menu ── */
.nav-dropdown-menu {
  display: none;
  position: absolute; top: calc(100% + 12px); left: 50%;
  transform: translateX(-50%);
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: 0 12px 40px rgba(0,0,0,.14);
  border: 1.5px solid var(--gray-100);
  min-width: 230px;
  padding: 8px 0;
  z-index: 2000;
  animation: ddFade .18s ease;
}
@keyframes ddFade {
  from { opacity:0; transform:translateX(-50%) translateY(-8px); }
  to   { opacity:1; transform:translateX(-50%) translateY(0); }
}
.nav-dropdown-menu::before {
  content: '';
  position: absolute; top: -7px; left: 50%;
  transform: translateX(-50%) rotate(0deg);
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-bottom: 7px solid white;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.open  .nav-dropdown-menu { display: block; }

.nav-dropdown-menu a {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  padding: 11px 20px !important;
  font-family: var(--ff-heading) !important;
  font-size: 0.875rem !important;
  font-weight: 600 !important;
  color: var(--gray-700) !important;
  background: transparent !important;
  border-radius: 0 !important;
  transition: background .15s, color .15s !important;
  white-space: nowrap;
}
.nav-dropdown-menu a:hover {
  background: var(--blue-light) !important;
  color: var(--blue) !important;
}
.nav-dropdown-menu a i {
  width: 16px; text-align: center;
  color: var(--blue); font-size: 0.8rem; flex-shrink: 0;
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .nav-dropdown { display: none; }
  .lang-toggle { font-size: 0.75rem; padding: 4px 10px; }
  .nav-right { gap: 6px; }
}

/* ── Mobile nav groups (dropdown sub-sections) ── */
.mobile-nav-group { border-radius: var(--radius-sm); overflow: hidden; }

.mobile-nav-group-title {
  display: flex; align-items: center; justify-content: space-between;
  font-family: var(--ff-heading); font-weight: 600; font-size: 1rem;
  color: var(--gray-700); padding: 12px 16px; cursor: pointer;
  border-radius: var(--radius-sm); transition: all var(--transition);
  user-select: none;
}
.mobile-nav-group-title:hover { background: var(--blue-light); color: var(--blue); }
.mobile-nav-group-title i { font-size: 0.7rem; transition: transform 0.25s ease; }
.mobile-nav-group.open .mobile-nav-group-title i { transform: rotate(180deg); }
.mobile-nav-group.open .mobile-nav-group-title { background: var(--blue-light); color: var(--blue); }

.mobile-nav-sub {
  display: none;
  flex-direction: column;
  background: var(--off-white);
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  padding: 4px 0 8px;
}
.mobile-nav-group.open .mobile-nav-sub { display: flex; }

.mobile-nav-sub a {
  padding: 10px 28px !important;
  font-size: 0.9rem !important;
  color: var(--gray-600) !important;
  display: flex !important; align-items: center; gap: 10px;
}
.mobile-nav-sub a i { color: var(--blue); font-size: 0.8rem; width: 14px; text-align: center; }
.mobile-nav-sub a:hover { background: var(--blue-light) !important; color: var(--blue) !important; }

/* Language toggle active state in mobile nav */
.mobile-nav .lang-toggle-mobile {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  margin: 8px 16px; padding: 10px;
  background: var(--blue-light); border-radius: var(--radius-full);
  font-family: var(--ff-heading); font-weight: 700; font-size: 0.9rem;
  color: var(--blue); cursor: pointer; border: 1.5px solid var(--blue);
  transition: all var(--transition);
}
.mobile-nav .lang-toggle-mobile:hover { background: var(--blue); color: white; }

/* ─── Core Values — 3 cards (main + sub-principle) ─── */
.core-values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.core-value-card {
  background: white;
  border-radius: var(--radius-xl);
  padding: 44px 36px;
  text-align: center;
  box-shadow: var(--shadow-md);
  border: 1.5px solid var(--gray-100);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.core-value-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 5px;
  transition: opacity var(--transition);
}
.core-value-card:nth-child(1)::before { background: linear-gradient(90deg, #F47B20, #ffb74d); }
.core-value-card:nth-child(2)::before { background: linear-gradient(90deg, #0066b2, #42a5f5); }
.core-value-card:nth-child(3)::before { background: linear-gradient(90deg, #5a9e3c, #81c784); }
.core-value-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: transparent;
}
.cv-icon {
  width: 80px; height: 80px; border-radius: 50%;
  margin: 0 auto 24px;
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem;
  transition: transform var(--transition);
}
.core-value-card:hover .cv-icon { transform: scale(1.1); }
.core-value-card:nth-child(1) .cv-icon { background: var(--orange-light); color: var(--orange); }
.core-value-card:nth-child(2) .cv-icon { background: var(--blue-light);   color: var(--blue);   }
.core-value-card:nth-child(3) .cv-icon { background: var(--green-light);  color: var(--green);  }
.cv-main {
  font-family: var(--ff-heading);
  font-size: 1.625rem; font-weight: 900;
  color: var(--gray-900); margin-bottom: 6px; line-height: 1.1;
}
.cv-sub {
  font-family: var(--ff-heading);
  font-size: 0.9375rem; font-weight: 700;
  letter-spacing: .04em; margin-bottom: 18px;
  text-transform: uppercase;
}
.core-value-card:nth-child(1) .cv-sub { color: var(--orange); }
.core-value-card:nth-child(2) .cv-sub { color: var(--blue); }
.core-value-card:nth-child(3) .cv-sub { color: var(--green); }
.cv-desc {
  font-size: 0.9375rem; color: var(--gray-500);
  line-height: 1.7;
}
@media (max-width: 768px) {
  .core-values-grid { grid-template-columns: 1fr; gap: 20px; }
}

/* ─── Footer Core Values ─── */
.footer-values { display: flex; flex-direction: column; gap: 0; }
.footer-value {
  display: flex; align-items: center; gap: 12px;
  padding: 9px 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
  transition: all var(--transition);
  cursor: default;
}
.footer-value:last-child { border-bottom: none; }
.footer-value:hover { padding-left: 4px; }
.fv-icon {
  width: 32px; height: 32px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem; flex-shrink: 0;
}
.footer-value:nth-child(1) .fv-icon { background: var(--orange-light); color: var(--orange); }
.footer-value:nth-child(2) .fv-icon { background: var(--blue-light);   color: var(--blue);   }
.footer-value:nth-child(3) .fv-icon { background: var(--green-light);  color: var(--green);  }
.fv-text {}
.fv-main {
  font-family: var(--ff-heading); font-weight: 800;
  font-size: 0.9rem; color: rgba(255,255,255,.9);
  line-height: 1.2;
}
.fv-sub {
  font-family: var(--ff-heading); font-size: 0.75rem;
  font-weight: 600; color: rgba(255,255,255,.45);
  letter-spacing: .02em; line-height: 1.2;
}

/* =============================================
   SOCIAL WALL
   ============================================= */
.sw-tabs {
  display: flex; gap: 10px; flex-wrap: wrap;
  margin-bottom: 28px;
  border-bottom: 2px solid var(--gray-100);
  padding-bottom: 0;
}
.sw-tab {
  display: flex; align-items: center; gap: 7px;
  padding: 10px 20px;
  font-family: var(--ff-heading); font-weight: 700; font-size: 0.9375rem;
  color: var(--gray-400); background: none; border: none;
  cursor: pointer; border-bottom: 3px solid transparent;
  margin-bottom: -2px; transition: all var(--transition);
}
.sw-tab:hover { color: var(--blue); }
.sw-tab.active { color: var(--blue); border-bottom-color: var(--blue); }
.sw-tab .fab { font-size: 1.125rem; }
.sw-tab[data-wall="instagram"].active { color: #e1306c; border-bottom-color: #e1306c; }
.sw-tab[data-wall="facebook"].active  { color: #1877f2; border-bottom-color: #1877f2; }
.sw-tab[data-wall="twitter"].active   { color: #000;    border-bottom-color: #000; }

.sw-panel { display: none; }
.sw-panel.active { display: block; }

/* YouTube grid */
.yt-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 28px;
}
.yt-card {
  border-radius: var(--radius-lg); overflow: hidden;
  background: white; box-shadow: var(--shadow-sm); border: 1.5px solid var(--gray-100);
  transition: all var(--transition); cursor: pointer; text-decoration: none; display: block;
}
.yt-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: transparent; }
.yt-thumb-wrap {
  position: relative; padding-top: 56.25%; background: var(--gray-100);
}
.yt-thumb {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
}
.yt-play-btn {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 48px; height: 48px; border-radius: 50%;
  background: rgba(255,0,0,.9); display: flex; align-items: center; justify-content: center;
  color: white; font-size: 1.125rem; opacity: 0; transition: opacity var(--transition);
}
.yt-card:hover .yt-play-btn { opacity: 1; }
.yt-info { padding: 14px 16px; }
.yt-title {
  font-family: var(--ff-heading); font-weight: 700; font-size: 0.9375rem;
  color: var(--gray-800); line-height: 1.4;
  overflow: hidden; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
  margin-bottom: 6px;
}
.yt-meta { font-size: 0.8125rem; color: var(--gray-400); display: flex; align-items: center; gap: 8px; }
.yt-skeleton {
  border-radius: var(--radius-lg); overflow: hidden;
  background: linear-gradient(90deg, var(--gray-100) 25%, var(--gray-200) 50%, var(--gray-100) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.4s infinite;
  aspect-ratio: 16/9;
}
.yt-error {
  grid-column: 1/-1; text-align: center; padding: 40px;
  color: var(--gray-400); font-size: 0.9375rem;
}
.yt-error a { color: var(--blue); font-weight: 700; }
@keyframes shimmer { 0%{ background-position: 200% 0 } 100%{ background-position: -200% 0 } }

/* Embed panels */
.sw-embed-wrap {
  display: flex; justify-content: center; margin-bottom: 24px;
}
.sw-ig-embed {
  width: 400px; min-height: 500px; border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}
.sw-fb-wrap { flex-direction: column; align-items: center; }
.sw-tw-wrap { justify-content: center; }
.sw-tw-wrap .twitter-timeline { max-width: 500px; width: 100%; }

.sw-cta { text-align: center; margin-top: 8px; }

/* Responsive */
@media (max-width: 1024px) { .yt-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 599px)  {
  .yt-grid { grid-template-columns: 1fr; }
  .sw-ig-embed { width: 100%; min-height: 400px; }
  .sw-tab { padding: 8px 12px; font-size: 0.8125rem; }
}

/* =============================================
   MID-PAGE CTA BANNERS
   ============================================= */
.mid-cta-banner {
  padding: 48px 0;
}
.mid-cta-donate   { background: linear-gradient(135deg, var(--blue-dark), var(--blue)); }
.mid-cta-volunteer{ background: linear-gradient(135deg, #1a5c35, var(--green)); }

.mid-cta-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 32px; flex-wrap: wrap;
}
.mid-cta-text h3 {
  font-family: var(--ff-heading); font-size: 1.625rem; font-weight: 900;
  color: #fff; margin-bottom: 10px; line-height: 1.3;
}
.mid-cta-text p {
  font-size: .9375rem; color: rgba(255,255,255,.8); line-height: 1.65;
  max-width: 540px;
}
.mid-cta-actions {
  display: flex; flex-direction: column; align-items: center;
  gap: 12px; flex-shrink: 0;
}
.mid-cta-sub-link {
  font-size: .8125rem; font-weight: 700; color: rgba(255,255,255,.7);
  text-decoration: underline; transition: color var(--transition);
}
.mid-cta-sub-link:hover { color: #fff; }

@media (max-width: 768px) {
  .mid-cta-inner { flex-direction: column; text-align: center; }
  .mid-cta-text p { max-width: 100%; }
  .mid-cta-actions { width: 100%; }
  .mid-cta-actions .btn { width: 100%; justify-content: center; }
}

/* =============================================
   TOP INFO BAR
   ============================================= */
.top-info-bar {
  background: #004a8f; padding: 8px 0; text-align: center; width: 100%;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.tib-inner {
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap; gap: 6px 14px; max-width: 1200px; margin: 0 auto; padding: 0 20px;
}
.tib-item { font-size: .75rem; font-weight: 700; color: rgba(255,255,255,.85); display: flex; align-items: center; gap: 5px; white-space: nowrap; }
.tib-item i { color: #ffc96e; font-size: .6875rem; }
.tib-item a:hover { color: #ffc96e; }
.tib-dot { color: rgba(255,255,255,.3); font-size: .75rem; }

/* =============================================
   IMPACT TICKER
   ============================================= */
.impact-ticker { background: #F47B20; overflow: hidden; padding: 10px 0; width: 100%; position: relative; }
.ticker-track { display: flex; width: 100%; overflow: hidden; }
.ticker-content {
  display: flex; align-items: center; flex-shrink: 0;
  animation: ticker-scroll 35s linear infinite;
  white-space: nowrap; will-change: transform;
}
.ticker-content span { display: inline-block; font-size: .8125rem; font-weight: 700; color: #fff; padding: 0 6px; white-space: nowrap; }
.ticker-sep { color: rgba(255,255,255,.5) !important; margin: 0 6px; }
.ticker-track:hover .ticker-content { animation-play-state: paused; }
@keyframes ticker-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@media (max-width: 768px) {
  .ticker-content { animation-duration: 22s; }
}

.cert-strip { padding: 48px 0; background: var(--off-white); }
.cert-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}
.cert-badge {
  border-radius: var(--radius-md);
  padding: 16px 10px;
  text-align: center;
  color: white;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}
.cert-badge:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.cert-badge.blue   { background: var(--blue); }
.cert-badge.orange { background: var(--orange); }
.cert-badge.green  { background: var(--green); }
.cert-badge-main {
  font-family: var(--ff-heading); font-weight: 900;
  font-size: 0.95rem; line-height: 1.15; margin-bottom: 3px;
}
.cert-badge-sub {
  font-size: 0.6875rem; color: rgba(255,255,255,.8);
  font-weight: 600;
}

/* Footer variant — flat row, no strip background */
.footer-certs {
  display: flex; flex-wrap: wrap; gap: 10px;
  padding: 28px 0; border-top: 1px solid rgba(255,255,255,.08);
}
.footer-cert-pill {
  display: inline-flex; flex-direction: column; align-items: center;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-md); padding: 10px 16px; min-width: 92px;
}
.footer-cert-main { font-family: var(--ff-heading); font-weight: 800; font-size: 0.8125rem; color: white; }
.footer-cert-sub  { font-size: 0.625rem; color: rgba(255,255,255,.5); margin-top: 1px; }

@media (max-width: 1024px) {
  .cert-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 599px) {
  .cert-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-certs { gap: 8px; }
  .footer-cert-pill { min-width: 84px; padding: 8px 12px; }
}

/* =============================================
   VALUES LIST — vertical consolidated design
   ============================================= */
.values-list-wrap {
  max-width: 480px; margin: 0 auto;
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1.5px solid var(--gray-100);
  overflow: hidden;
}
.values-list-label {
  font-family: var(--ff-heading); font-size: 0.6875rem; font-weight: 800;
  letter-spacing: .08em; text-transform: uppercase;
  color: var(--orange-a11y);
  padding: 14px 20px 4px;
}
.values-list-item {
  display: flex; align-items: center; gap: 16px;
  padding: 18px 20px;
  border-top: 3px solid transparent;
  background: var(--off-white);
  margin: 0 14px 12px;
  border-radius: var(--radius-md);
}
.values-list-item.border-blue   { border-top-color: var(--blue); }
.values-list-item.border-orange { border-top-color: var(--orange); }
.vl-icon {
  width: 38px; height: 38px; border-radius: 50%;
  background: white; box-shadow: var(--shadow-sm);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; color: var(--gray-300); font-size: 1rem;
}
.vl-main { font-family: var(--ff-heading); font-weight: 800; font-size: 1.0625rem; }
.vl-sub  { font-size: 0.8125rem; color: var(--gray-500); margin-top: 1px; }

/* =============================================
   CTA QUICK-ACTION CARDS (below CTA banner buttons)
   ============================================= */
.cta-quick-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 28px;
  max-width: 760px;
  margin-left: auto; margin-right: auto;
}
.cta-quick-card {
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  background: rgba(255,255,255,.1);
  border: 1.5px solid rgba(255,255,255,.25);
  border-radius: var(--radius-md);
  padding: 14px 10px;
  font-family: var(--ff-heading); font-weight: 700; font-size: 0.875rem;
  color: white;
  transition: all var(--transition);
}
.cta-quick-card:hover { background: white; color: var(--blue); border-color: white; transform: translateY(-3px); }

@media (max-width: 768px) {
  .cta-quick-grid { grid-template-columns: repeat(2, 1fr); }
}

/* =============================================
   SDG ALIGNMENT BADGES
   ============================================= */
.sdg-badge-row {
  display: flex; flex-wrap: wrap; align-items: center; gap: 8px;
  margin-bottom: 22px;
}
.sdg-label {
  font-family: var(--ff-heading); font-size: 0.75rem; font-weight: 700;
  color: var(--gray-500); text-transform: uppercase; letter-spacing: .04em;
  margin-right: 2px;
}
.sdg-chip {
  display: inline-flex; align-items: center;
  color: white; font-family: var(--ff-heading); font-weight: 700;
  font-size: 0.75rem; padding: 6px 14px; border-radius: var(--radius-full);
}

/* =============================================
   VIDEO POPUP WIDGET — "See Our Work in Action"
   ============================================= */
.df-video-popup {
  position: fixed;
  top: 50%;
  right: 0;
  transform: translate(110%, -50%);
  z-index: 7000;
  width: 300px;
  background: white;
  border-radius: var(--radius-lg) 0 0 var(--radius-lg);
  box-shadow: -8px 12px 36px rgba(0,0,0,.22);
  overflow: hidden;
  transition: transform .5s cubic-bezier(0.16, 1, 0.3, 1);
}
.df-video-popup.show { transform: translate(0, -50%); }

.dvp-header {
  display: flex; align-items: center; justify-content: space-between;
  gap: 10px;
  background: var(--blue-dark);
  color: white;
  padding: 10px 14px;
  font-family: var(--ff-heading); font-weight: 700; font-size: 0.8125rem;
}
.dvp-header span { display: flex; align-items: center; gap: 6px; }
.dvp-header i { color: var(--orange); }
.dvp-close {
  background: rgba(255,255,255,.15); color: white;
  width: 22px; height: 22px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; line-height: 1; flex-shrink: 0;
  transition: background var(--transition);
}
.dvp-close:hover { background: var(--orange); }

.dvp-body { background: #000; }
.dvp-thumb {
  position: relative;
  width: 100%; aspect-ratio: 16/9;
  background-size: cover; background-position: center;
  display: flex; align-items: center; justify-content: center;
}
.dvp-play {
  width: 52px; height: 52px; border-radius: 50%;
  background: rgba(255,255,255,.92); color: var(--blue);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.125rem;
  box-shadow: 0 4px 16px rgba(0,0,0,.4);
  transition: transform var(--transition);
}
.dvp-play:hover { transform: scale(1.1); background: white; }
.dvp-iframe { width: 100%; height: 100%; border: 0; aspect-ratio: 16/9; display: block; }

.dvp-link {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 14px;
  font-family: var(--ff-heading); font-weight: 700; font-size: 0.8125rem;
  color: var(--blue); background: var(--off-white);
  transition: background var(--transition);
}
.dvp-link:hover { background: var(--blue-light); }

@media (max-width: 599px) {
  .df-video-popup { width: 240px; top: auto; bottom: 0; right: 12px; transform: translate(0, 110%); border-radius: var(--radius-lg) var(--radius-lg) 0 0; }
  .df-video-popup.show { transform: translate(0, 0); }
}

/* =============================================
   WHATSAPP ROLLUP WIDGET
   ============================================= */
.df-wa-widget {
  position: fixed;
  bottom: 24px; right: 24px;
  z-index: 6500;
  font-family: var(--ff-body);
}
.wa-fab {
  width: 56px; height: 56px; border-radius: 50%;
  background: #25D366; color: white;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.625rem;
  box-shadow: 0 6px 20px rgba(37,211,102,.45);
  transition: transform var(--transition);
}
.wa-fab:hover { transform: scale(1.08); }

.wa-panel {
  position: absolute;
  bottom: 70px; right: 0;
  width: 300px;
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
  opacity: 0; visibility: hidden;
  transform: translateY(16px) scale(.96);
  transform-origin: bottom right;
  transition: all .25s cubic-bezier(0.16, 1, 0.3, 1);
}
.df-wa-widget.open .wa-panel { opacity: 1; visibility: visible; transform: translateY(0) scale(1); }

.wa-panel-header { background: #075E54; color: white; padding: 14px 18px; }
.wa-panel-title { font-family: var(--ff-heading); font-weight: 800; font-size: 0.9375rem; }
.wa-panel-sub   { font-size: 0.75rem; color: rgba(255,255,255,.75); margin-top: 2px; }

.wa-cta {
  display: flex; flex-direction: column; align-items: center;
  text-align: center; gap: 2px;
  background: #25D366; color: white;
  padding: 16px;
}
.wa-cta i { font-size: 1.75rem; margin-bottom: 4px; }
.wa-cta-num { font-family: var(--ff-heading); font-weight: 800; font-size: 1.0625rem; }
.wa-cta-sub { font-size: 0.6875rem; color: rgba(255,255,255,.85); }

.wa-services { list-style: none; padding: 14px 18px; margin: 0; }
.wa-services li { padding: 8px 0; border-bottom: 1px solid var(--gray-100); display: flex; flex-direction: column; gap: 1px; }
.wa-services li:last-child { border-bottom: none; }
.wa-en { font-size: 0.8125rem; color: var(--gray-700); font-weight: 600; }
.wa-hi { font-size: 0.75rem; color: var(--green); }

@media (max-width: 599px) {
  .df-wa-widget { bottom: 16px; right: 16px; }
  .wa-panel { width: calc(100vw - 32px); max-width: 300px; }
}

/* =============================================
   FAQ ASSISTANT WIDGET
   ============================================= */
.df-faq-bot {
  position: fixed;
  bottom: 92px; right: 24px;
  z-index: 6600;
  font-family: var(--ff-body);
}
.fb-fab {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--blue); color: white;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 6px 20px rgba(0,102,178,.4);
  transition: transform var(--transition);
}
.fb-fab:hover { transform: scale(1.08); }
.df-faq-bot.open .fb-fab { background: var(--blue-dark); }

.fb-panel {
  position: absolute;
  bottom: 70px; right: 0;
  width: 320px; height: 440px;
  max-height: 70vh;
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  display: flex; flex-direction: column;
  overflow: hidden;
  opacity: 0; visibility: hidden;
  transform: translateY(16px) scale(.96);
  transform-origin: bottom right;
  transition: all .25s cubic-bezier(0.16, 1, 0.3, 1);
}
.df-faq-bot.open .fb-panel { opacity: 1; visibility: visible; transform: translateY(0) scale(1); }

.fb-panel-header {
  background: var(--blue-dark); color: white;
  padding: 14px 16px; flex-shrink: 0;
  display: flex; align-items: flex-start; justify-content: space-between; gap: 10px;
}
.fb-panel-title { font-family: var(--ff-heading); font-weight: 800; font-size: 0.9375rem; display: flex; align-items: center; gap: 6px; }
.fb-panel-title i { color: #ffc96e; }
.fb-panel-sub { font-size: 0.75rem; color: rgba(255,255,255,.7); margin-top: 2px; }
.fb-close {
  background: rgba(255,255,255,.15); color: white;
  width: 22px; height: 22px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; line-height: 1; flex-shrink: 0;
  transition: background var(--transition);
}
.fb-close:hover { background: var(--orange); }

.fb-messages {
  flex: 1; overflow-y: auto;
  padding: 14px 14px 6px;
  display: flex; flex-direction: column; gap: 10px;
  background: var(--off-white);
}
.fb-msg {
  max-width: 84%;
  padding: 9px 13px;
  border-radius: var(--radius-md);
  font-size: 0.8125rem; line-height: 1.55;
}
.fb-msg a { color: inherit; text-decoration: underline; }
.fb-msg.bot  { background: white; color: var(--gray-700); border: 1px solid var(--gray-100); align-self: flex-start; border-bottom-left-radius: 2px; }
.fb-msg.user { background: var(--blue); color: white; align-self: flex-end; border-bottom-right-radius: 2px; }
.fb-typing { display: flex; align-items: center; gap: 4px; padding: 11px 14px; }
.fb-typing span { width: 6px; height: 6px; border-radius: 50%; background: var(--gray-300); animation: fbTyping 1s infinite; }
.fb-typing span:nth-child(2) { animation-delay: .15s; }
.fb-typing span:nth-child(3) { animation-delay: .3s; }
@keyframes fbTyping { 0%,60%,100%{ transform: translateY(0); opacity:.4; } 30%{ transform: translateY(-3px); opacity:1; } }

.fb-chips { display: flex; flex-wrap: wrap; gap: 6px; padding: 8px 14px; flex-shrink: 0; }
.fb-chip {
  background: var(--blue-light); color: var(--blue);
  border-radius: var(--radius-full); padding: 6px 12px;
  font-size: 0.75rem; font-weight: 700; font-family: var(--ff-heading);
  transition: all var(--transition);
}
.fb-chip:hover { background: var(--blue); color: white; }

.fb-input-row {
  display: flex; gap: 8px;
  padding: 10px 12px; border-top: 1px solid var(--gray-100); flex-shrink: 0;
}
.fb-input {
  flex: 1; border: 1.5px solid var(--gray-200); border-radius: var(--radius-full);
  padding: 9px 16px; font-size: 0.8125rem; outline: none;
  transition: border-color var(--transition);
}
.fb-input:focus { border-color: var(--blue); }
.fb-send {
  width: 38px; height: 38px; border-radius: 50%; flex-shrink: 0;
  background: var(--blue); color: white;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.875rem; transition: background var(--transition);
}
.fb-send:hover { background: var(--blue-dark); }

@media (max-width: 599px) {
  .df-faq-bot { bottom: 84px; right: 16px; }
  .fb-panel { width: calc(100vw - 32px); max-width: 320px; height: 60vh; }
}
/* =============================================
   FOUNDER MESSAGE SECTION
   ============================================= */
.founder-wrap {
  display: grid; grid-template-columns: 320px 1fr; gap: 48px; align-items: flex-start;
}
.founder-photo-wrap { position: relative; }
.founder-photo {
  width: 100%; border-radius: var(--radius-xl); object-fit: cover;
  box-shadow: var(--shadow-xl); aspect-ratio: 3/4; object-position: top;
}
.founder-badge {
  position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%);
  background: var(--blue); color: #fff; padding: 8px 20px; border-radius: var(--radius-full);
  font-family: var(--ff-heading); font-weight: 800; font-size: .8125rem;
  white-space: nowrap; display: flex; align-items: center; gap: 6px;
  box-shadow: var(--shadow-md);
}
.founder-quote-mark { font-size: 2.5rem; color: var(--orange); line-height: 1; margin-bottom: 8px; opacity: .6; }
@media (max-width: 900px) {
  .founder-wrap { grid-template-columns: 1fr; }
  .founder-photo { max-height: 360px; }
}

/* =============================================
   COMPLIANCE GRID
   ============================================= */
.compliance-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
}
.compliance-card {
  background: white; border-radius: var(--radius-lg); border: 1.5px solid var(--gray-100);
  padding: 18px 20px; display: flex; align-items: flex-start; gap: 14px;
  box-shadow: var(--shadow-sm); transition: all var(--transition);
}
.compliance-card:hover { box-shadow: var(--shadow-md); border-color: var(--gray-200); transform: translateY(-2px); }
.compliance-icon {
  width: 44px; height: 44px; border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.125rem; flex-shrink: 0;
}
.compliance-label { font-size: .75rem; font-weight: 800; color: var(--gray-400); text-transform: uppercase; letter-spacing: .06em; margin-bottom: 4px; }
.compliance-value { font-family: var(--ff-heading); font-weight: 900; font-size: 1rem; color: var(--gray-800); margin-bottom: 4px; }
.compliance-note { font-size: .75rem; color: var(--gray-400); line-height: 1.5; }
@media (max-width: 1024px) { .compliance-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px)  { .compliance-grid { grid-template-columns: 1fr; } }

/* =============================================
   NEWSLETTER SECTION
   ============================================= */
.newsletter-section {
  background: linear-gradient(135deg, var(--blue-dark), var(--blue));
  padding: 56px 0;
}
.newsletter-inner {
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 48px; align-items: center;
}
.newsletter-text h2 {
  font-family: var(--ff-heading); font-size: 2rem; font-weight: 900;
  color: #fff; margin-bottom: 12px;
}
.newsletter-text h2 span { color: #ffc96e; }
.newsletter-text p { color: rgba(255,255,255,.8); font-size: .9375rem; line-height: 1.7; }
.newsletter-field {
  display: flex; flex-direction: column; gap: 10px;
}
.newsletter-input {
  padding: 13px 18px; border: none; border-radius: var(--radius-md);
  font-size: .9375rem; outline: none; font-family: inherit;
  background: rgba(255,255,255,.12); color: #fff;
  border: 1.5px solid rgba(255,255,255,.2); transition: border-color .2s;
}
.newsletter-input::placeholder { color: rgba(255,255,255,.5); }
.newsletter-input:focus { border-color: #ffc96e; background: rgba(255,255,255,.18); }
.newsletter-btn {
  padding: 13px 28px; background: #ffc96e; color: var(--blue-dark);
  border: none; border-radius: var(--radius-md); font-family: var(--ff-heading);
  font-weight: 800; font-size: 1rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  transition: background .2s;
}
.newsletter-btn:hover { background: #ffb830; }
.newsletter-note {
  font-size: .8125rem; color: rgba(255,255,255,.5);
  margin-top: 8px; display: flex; align-items: center; gap: 6px;
}
@media (max-width: 768px) {
  .newsletter-inner { grid-template-columns: 1fr; gap: 24px; }
  .newsletter-text h2 { font-size: 1.5rem; }
}

/* =============================================
   STATIC HERO SECTION
   ============================================= */
.hero-static {
  background: #fff;
  padding: 40px 0 36px;
  border-bottom: 3px solid var(--orange);
  margin-top: var(--nav-h);
}
.hs-grid {
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  gap: 0 40px;
  align-items: start;
}

/* LEFT — Mission/Vision/Values */
.hs-left { padding-right: 20px; }
.hs-section-label {
  font-family: var(--ff-heading);
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--blue-dark);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 3px solid var(--orange);
}
.hs-block { margin-bottom: 18px; }
.hs-block-title {
  font-size: .75rem;
  font-weight: 900;
  letter-spacing: .1em;
  margin-bottom: 8px;
}
.hs-block-title.mission { color: var(--orange); }
.hs-block-title.vision  { color: var(--orange); }
.hs-block-title.values  { color: var(--orange); }
.hs-block {
  background: #f7f8fb;
  border-radius: var(--radius-md);
  padding: 14px 16px;
  border-left: 3px solid var(--orange);
}
.hs-block-text {
  font-size: .875rem;
  color: var(--gray-600);
  line-height: 1.75;
  font-style: italic;
  margin: 0;
}
.hs-values-row {
  display: flex; gap: 16px; flex-wrap: wrap;
}
.hs-value {
  display: flex; flex-direction: column; gap: 2px;
}
.hs-value strong {
  font-size: .9375rem;
  color: var(--gray-800);
  font-family: var(--ff-heading);
}
.hs-value span {
  font-size: .75rem;
  color: var(--orange);
  font-style: italic;
}

/* DIVIDER */
.hs-divider {
  background: var(--gray-200);
  width: 1px;
  align-self: stretch;
}

/* RIGHT — Identity */
.hs-right { padding-left: 20px; text-align: center; }
.hs-logo-wrap { margin-bottom: 16px; }
.hs-logo { height: 80px; width: auto; margin: 0 auto 6px; }
.hs-tagline {
  font-size: .8125rem;
  color: var(--gray-400);
  font-style: italic;
}

/* Pillars */
.hs-pillars {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 16px;
  padding: 16px 0;
  border-top: 1px solid var(--gray-100);
  border-bottom: 1px solid var(--gray-100);
}
.hs-pillar { text-align: center; }
.hs-pillar-icon {
  width: 52px; height: 52px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem; margin: 0 auto 8px;
}
.hs-pillar-icon.orange { background: #fff3e8; color: var(--orange); }
.hs-pillar-icon.green  { background: #e8f5ee; color: var(--green); }
.hs-pillar-icon.blue   { background: var(--blue-light); color: var(--blue); }
.hs-pillar-word {
  font-family: var(--ff-heading);
  font-weight: 900;
  font-size: 1rem;
}
.hs-pillar-word.orange { color: var(--orange); }
.hs-pillar-word.green  { color: var(--green); }
.hs-pillar-word.blue   { color: var(--blue); }
.hs-pillar-sub { font-size: .75rem; color: var(--gray-500); margin-top: 2px; }

/* Description */
.hs-desc {
  font-size: .875rem;
  color: var(--gray-600);
  line-height: 1.75;
  margin-bottom: 16px;
  text-align: left;
  background: #f7f8fb;
  border-radius: var(--radius-md);
  padding: 12px 16px;
}

/* Credentials */
.hs-creds {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px 16px;
  margin-bottom: 20px;
  text-align: left;
}
.hs-cred {
  font-size: .8125rem;
  color: var(--gray-600);
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
}
.hs-cred i { color: var(--green); font-size: .75rem; }

/* Actions */
.hs-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* Responsive */
@media (max-width: 900px) {
  .hs-grid { grid-template-columns: 1fr; }
  .hs-divider { width: 100%; height: 1px; margin: 20px 0; }
  .hs-left { padding-right: 0; }
  .hs-right { padding-left: 0; }
}

/* =============================================
   FOOTER REDESIGN
   ============================================= */
/* Newsletter strip */
.footer-newsletter-strip {
  background: var(--blue);
  padding: 20px 0;
}
.fns-inner {
  display: flex; align-items: center; gap: 24px; flex-wrap: wrap;
}
.fns-text {
  display: flex; align-items: center; gap: 14px; color: #fff; flex-shrink: 0;
}
.fns-text i { font-size: 1.5rem; color: #ffc96e; }
.fns-title  { font-weight: 800; font-size: 1rem; }
.fns-sub    { font-size: .8125rem; color: rgba(255,255,255,.7); }
.fns-form   { display: flex; gap: 8px; flex: 1; flex-wrap: wrap; }
.fns-input  {
  flex: 1; min-width: 160px; padding: 10px 16px;
  border: none; border-radius: var(--radius-md);
  font-size: .875rem; outline: none; font-family: inherit;
  background: rgba(255,255,255,.15); color: #fff;
  border: 1.5px solid rgba(255,255,255,.25);
}
.fns-input::placeholder { color: rgba(255,255,255,.55); }
.fns-input:focus { background: rgba(255,255,255,.22); border-color: #ffc96e; }
.fns-btn {
  padding: 10px 22px; background: #ffc96e; color: var(--blue-dark);
  border: none; border-radius: var(--radius-md); font-weight: 800;
  font-size: .875rem; cursor: pointer; white-space: nowrap;
  display: flex; align-items: center; gap: 7px;
  transition: background .2s;
}
.fns-btn:hover { background: #ffb830; }

/* Footer body */
.footer-body { padding: 52px 0 32px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1.1fr 1fr;
  gap: 40px;
}

/* Column titles */
.footer-col-title {
  font-family: var(--ff-heading); font-weight: 900; font-size: 1rem;
  color: #fff; margin-bottom: 16px; padding-bottom: 10px;
  border-bottom: 2px solid var(--orange); display: inline-block;
}

/* Brand col */
.footer-brand-col .footer-logo {
  height: 60px; background: #fff; border-radius: 10px; padding: 6px 10px;
}

/* Links col */
.footer-links-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0 12px; }

/* Contact col */
.footer-contact-col .footer-contact-item { margin-bottom: 10px; font-size: .875rem; }

/* Values col */
.footer-reg-block {
  margin-top: 16px; padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,.1);
}
.footer-reg-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 5px 0; border-bottom: 1px solid rgba(255,255,255,.06);
  font-size: .75rem;
}
.footer-reg-row span  { color: rgba(255,255,255,.45); }
.footer-reg-row strong{ color: rgba(255,255,255,.8); font-weight: 700; font-size: .7rem; }

@media (max-width: 1024px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px)  {
  .footer-grid { grid-template-columns: 1fr; }
  .fns-inner   { flex-direction: column; align-items: flex-start; }
  .footer-links-grid { grid-template-columns: 1fr; }
}

/* =============================================
   WHATSAPP CONNECT BAR (contact page)
   ============================================= */
.wa-connect-bar {
  display: flex; align-items: center; justify-content: space-between;
  gap: 32px; flex-wrap: wrap;
  background: linear-gradient(135deg, #075e54, #128c7e);
  border-radius: var(--radius-xl); padding: 32px 36px;
  margin: 32px 0;
}
.wa-connect-left { display: flex; align-items: flex-start; gap: 20px; flex: 1; }
.wa-connect-icon {
  width: 56px; height: 56px; border-radius: 50%;
  background: rgba(255,255,255,.15); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.75rem; flex-shrink: 0;
}
.wa-connect-title { font-family: var(--ff-heading); font-weight: 900; font-size: 1.375rem; color: #fff; margin-bottom: 6px; }
.wa-connect-sub   { font-size: .9375rem; color: rgba(255,255,255,.8); line-height: 1.7; max-width: 520px; }

.wa-connect-qr { flex-shrink: 0; }
.wa-qr-card {
  background: #fff; border-radius: var(--radius-lg); padding: 16px;
  text-align: center; box-shadow: 0 4px 20px rgba(0,0,0,.2);
}
.wa-qr-card img, .wa-qr-card canvas { border-radius: 8px; display: block; }
.wa-qr-label { font-size: .8125rem; font-weight: 700; color: var(--gray-600); margin-top: 10px; display: flex; align-items: center; justify-content: center; gap: 5px; }
.wa-qr-num   { font-size: .75rem; color: var(--gray-400); margin-top: 3px; }

@media (max-width: 768px) {
  .wa-connect-bar { flex-direction: column; padding: 24px 20px; }
  .wa-connect-qr  { align-self: center; }
}

/* =============================================
   PRINT-FRIENDLY 80G RECEIPT
   ============================================= */
@media print {
  body > *:not(#print-receipt) { display: none !important; }
  #print-receipt { display: block !important; }
  .pr-header { display: flex; align-items: center; gap: 20px; margin-bottom: 20px; padding-bottom: 16px; border-bottom: 2px solid #e5e7eb; }
  .pr-logo    { height: 60px; width: auto; }
  .pr-org-name{ font-size: 1.25rem; font-weight: 900; color: #002f6c; }
  .pr-org-tag { font-size: .875rem; color: #f47b20; font-style: italic; }
  .pr-org-addr{ font-size: .75rem; color: #6b7280; margin-top: 4px; }
  .pr-title   { font-size: 1.125rem; font-weight: 900; color: #002f6c; text-align: center; margin: 16px 0 4px; }
  .pr-sub     { font-size: .8125rem; color: #6b7280; text-align: center; margin-bottom: 20px; }
  .pr-table   { width: 100%; border-collapse: collapse; margin-bottom: 20px; }
  .pr-table td{ padding: 8px 12px; border: 1px solid #e5e7eb; font-size: .875rem; }
  .pr-table td:first-child { font-weight: 700; color: #374151; width: 40%; background: #f9fafb; }
  .pr-reg     { font-size: .75rem; color: #6b7280; text-align: center; margin-bottom: 32px; padding: 10px; border: 1px dashed #d1d5db; border-radius: 6px; }
  .pr-sig     { text-align: right; margin-top: 40px; }
  .pr-sig-line{ border-top: 1.5px solid #374151; width: 200px; margin-left: auto; margin-bottom: 6px; }
  .pr-sig-name{ font-weight: 700; font-size: .875rem; }
  .pr-sig-role{ font-size: .75rem; color: #6b7280; }
  .pr-footer  { font-size: .6875rem; color: #9ca3af; text-align: center; border-top: 1px solid #e5e7eb; padding-top: 10px; margin-top: 20px; }
}

/* =============================================
   FOUNDER CARD — Redesigned
   ============================================= */
.founder-card {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 48px;
  align-items: flex-start;
  background: #fff;
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-lg);
  border: 1.5px solid var(--gray-100);
}
.founder-card-left { text-align: center; }
.founder-img-frame {
  width: 180px; height: 180px; border-radius: 50%;
  overflow: hidden; margin: 0 auto 16px;
  border: 4px solid var(--orange);
  box-shadow: 0 8px 24px rgba(244,123,32,.25);
}
.founder-img-frame img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.founder-id-name  { font-family: var(--ff-heading); font-weight: 900; font-size: 1.0625rem; color: var(--gray-800); }
.founder-id-role  { font-size: .8125rem; color: var(--orange); font-weight: 700; margin: 3px 0; }
.founder-id-creds { font-size: .75rem; color: var(--gray-400); margin-bottom: 10px; }
.founder-linkedin {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: .8125rem; font-weight: 700; color: var(--blue);
  background: var(--blue-light); padding: 6px 14px; border-radius: var(--radius-full);
  text-decoration: none; transition: background var(--transition);
}
.founder-linkedin:hover { background: #c7d7f9; }

.founder-big-quote { font-size: 2.5rem; color: var(--orange); opacity: .3; line-height: 1; margin-bottom: 12px; display: block; }
.founder-para-lead {
  font-size: 1.0625rem; color: var(--gray-700); line-height: 1.8;
  font-style: italic; margin-bottom: 16px;
}
.founder-para { font-size: .9375rem; color: var(--gray-600); line-height: 1.8; margin-bottom: 20px; }
.founder-blockquote {
  border-left: 3px solid var(--blue);
  background: var(--blue-light);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 14px 18px; margin: 0 0 16px;
  font-size: .9375rem; color: var(--gray-700); line-height: 1.75; font-style: italic;
}
.founder-vision { font-size: .875rem; color: var(--gray-500); line-height: 1.75; font-style: italic; }

@media (max-width: 860px) {
  .founder-card { grid-template-columns: 1fr; gap: 24px; padding: 28px 20px; }
  .founder-card-left { display: flex; align-items: center; gap: 20px; text-align: left; }
  .founder-img-frame { width: 100px; height: 100px; flex-shrink: 0; margin: 0; }
}

/* =============================================
   FOCUS AREAS GRID (merged home page)
   ============================================= */
.focus-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.focus-card {
  background: #fff;
  border-radius: var(--radius-xl);
  padding: 24px 24px 20px;
  border: 1.5px solid var(--gray-100);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  display: flex; flex-direction: row; flex-wrap: wrap; gap: 0;
  align-items: flex-start;
}
.focus-icon {
  width: 44px; height: 44px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem; flex-shrink: 0;
  margin-bottom: 12px; margin-right: 14px;
}
.focus-title {
  font-family: var(--ff-heading); font-size: .9375rem;
  font-weight: 900; color: var(--gray-800); line-height: 1.3;
  align-self: center; flex: 1; min-width: 100px;
}
.focus-desc {
  font-size: .8375rem; color: var(--gray-500);
  line-height: 1.7; width: 100%; margin-top: 8px;
}
.focus-link {
  font-size: .8125rem; font-weight: 700; color: var(--blue);
  display: flex; align-items: center; gap: 6px;
  text-decoration: none; transition: gap var(--transition);
  width: 100%; margin-top: 12px;
}
.focus-link:hover { gap: 10px; }
.focus-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: transparent;
}
.focus-icon {
  width: 52px; height: 52px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.375rem; flex-shrink: 0;
}
.focus-title {
  font-family: var(--ff-heading);
  font-size: .9375rem;
  font-weight: 900;
  color: var(--gray-800);
  line-height: 1.35;
}
.focus-desc {
  font-size: .8375rem;
  color: var(--gray-500);
  line-height: 1.75;
  flex: 1;
}
.focus-link {
  font-size: .8125rem;
  font-weight: 700;
  color: var(--blue);
  display: flex; align-items: center; gap: 6px;
  text-decoration: none;
  transition: gap var(--transition);
}
.focus-link:hover { gap: 10px; }

@media (max-width: 1024px) { .focus-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px)  { .focus-grid { grid-template-columns: 1fr; } }

/* =============================================
   TEAM GRID
   ============================================= */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.team-card {
  background: #fff;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1.5px solid var(--gray-100);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}
.team-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: transparent;
}
.team-photo {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--gray-100);
}
.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.team-photo-fallback {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-300);
  font-size: 3rem;
  background: var(--gray-50);
}
.team-body {
  padding: 18px 20px 22px;
  flex: 1;
}
.team-name {
  font-family: var(--ff-heading);
  font-weight: 900;
  font-size: 1rem;
  color: var(--gray-800);
  margin-bottom: 3px;
}
.team-role {
  font-size: .8125rem;
  font-weight: 700;
  color: var(--orange);
  margin-bottom: 10px;
}
.team-bio {
  font-size: .8125rem;
  color: var(--gray-500);
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 1024px) { .team-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px)  { .team-grid { grid-template-columns: 1fr; } }

/* =============================================
   HERO V2 — Emotional Photo Hero
   ============================================= */
.hero-v2 {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  margin-top: 0;
  padding-top: var(--nav-h);
  overflow: hidden;
}
.hero-v2-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-v2-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
  filter: blur(3px);
  transform: scale(1.04); /* prevents blur edges showing */
}
.hero-v2-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(0,30,70,.82) 0%, rgba(0,50,100,.65) 60%, rgba(0,20,50,.55) 100%);
}
.hero-v2-content {
  position: relative; z-index: 1;
  padding-top: 80px; padding-bottom: 0;
  display: flex; flex-direction: column; align-items: flex-start;
}
.hero-v2-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.25);
  color: rgba(255,255,255,.9);
  padding: 7px 18px; border-radius: 40px;
  font-size: .8125rem; font-weight: 700; letter-spacing: .03em;
  margin-bottom: 28px;
}
.hero-v2-badge .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #ffc96e; display: inline-block;
  animation: pulse 2s infinite;
}
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.6;transform:scale(1.3)} }

.hero-v2-title {
  font-family: var(--ff-heading);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 22px;
  max-width: 700px;
}
.hero-v2-title span { color: #ffc96e; }

.hero-v2-sub {
  font-size: clamp(1rem, 2vw, 1.1875rem);
  color: rgba(255,255,255,.82);
  line-height: 1.7;
  max-width: 580px;
  margin-bottom: 36px;
}
.hero-v2-actions {
  display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 64px;
}
.hero-v2-outline {
  background: transparent;
  border: 2px solid rgba(255,255,255,.6);
  color: #fff;
}
.hero-v2-outline:hover {
  background: rgba(255,255,255,.15);
  border-color: #fff;
}

/* Stats bar inside hero */
.hero-v2-stats { display: none; }
.hv2-stat { flex: 1; min-width: 120px; text-align: center; padding: 8px 16px; }
.hv2-num  { font-family: var(--ff-heading); font-size: 1.875rem; font-weight: 900; color: #ffc96e; line-height: 1; }
.hv2-lbl  { font-size: .75rem; color: rgba(255,255,255,.75); margin-top: 5px; font-weight: 600; }
.hv2-div  { width: 1px; background: rgba(255,255,255,.2); height: 40px; align-self: center; flex-shrink: 0; }

@media (max-width: 768px) {
  .hero-v2 { min-height: 100vh; }
  .hero-v2-content { padding-top: 48px; }
  .hero-v2-stats { border-radius: 12px; padding: 16px; gap: 0; }
  .hv2-stat { min-width: 80px; padding: 6px 8px; }
  .hv2-num { font-size: 1.375rem; }
  .hv2-div { display: none; }
}

/* =============================================
   MISSION / VISION / VALUES V2 — 3 horizontal cards
   ============================================= */
.mv2-grid {
  display: flex;
  gap: 0;
  background: #fff;
  border-radius: var(--radius-xl);
  border: 1.5px solid var(--gray-100);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}
.mv2-card {
  flex: 1;
  padding: 28px 32px;
  position: relative;
  transition: background var(--transition);
}
.mv2-card:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0; top: 20%; bottom: 20%;
  width: 1px; background: var(--gray-100);
}
.mv2-card:hover { background: var(--gray-50); }
.mv2-icon {
  width: 40px; height: 40px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.125rem; margin-bottom: 12px;
}
.mv2-mission .mv2-icon { background: #fff3e8; color: var(--orange); }
.mv2-vision  .mv2-icon { background: var(--blue-light); color: var(--blue); }
.mv2-values  .mv2-icon { background: #e8f5ee; color: var(--green); }
.mv2-label {
  font-family: var(--ff-heading); font-weight: 900;
  font-size: .6875rem; text-transform: uppercase; letter-spacing: .1em;
  margin-bottom: 8px;
}
.mv2-mission .mv2-label { color: var(--orange); }
.mv2-vision  .mv2-label { color: var(--blue); }
.mv2-values  .mv2-label { color: var(--green); }
.mv2-text { font-size: .875rem; color: var(--gray-600); line-height: 1.7; margin: 0; }
.mv2-vals { display: flex; flex-direction: column; gap: 8px; }
.mv2-vals div { display: flex; align-items: center; gap: 8px; }
.mv2-vals strong { font-size: .875rem; color: var(--gray-800); font-family: var(--ff-heading); min-width: 110px; }
.mv2-vals span   { font-size: .75rem; color: var(--orange); font-style: italic; }
@media (max-width: 900px) {
  .mv2-grid { flex-direction: column; }
  .mv2-card:not(:last-child)::after { right: 20%; left: 20%; top: auto; bottom: 0; width: auto; height: 1px; }
}

/* =============================================
   TEAM GRID V2 — Compact with hover overlay
   ============================================= */
.team-grid-v2 {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
.tc2-card {
  cursor: pointer;
  text-align: center;
}
.tc2-photo {
  background-color: #f7f8fa;
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--gray-100);
  margin-bottom: 10px;
}
.tc2-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.4s ease;
}
.tc2-card:hover .tc2-photo img {
  transform: scale(1.05);
}
.tc2-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,47,108,0) 0%, rgba(0,47,108,0.92) 100%);
  padding: 16px 14px;
  display: flex; flex-direction: column; justify-content: flex-end;
  opacity: 0;
  transform: translateY(6px);
  transition: all 0.3s ease;
}
.tc2-card:hover .tc2-overlay {
  opacity: 1;
  transform: translateY(0);
}
.tc2-ov-role {
  font-size: .7rem;
  font-weight: 800;
  color: #ffc96e;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 5px;
}
.tc2-ov-bio {
  font-size: .75rem;
  color: rgba(255,255,255,.88);
  line-height: 1.55;
  margin: 0;
}
.tc2-name {
  font-family: var(--ff-heading);
  font-weight: 800;
  font-size: .9375rem;
  color: var(--gray-800);
  transition: color var(--transition);
}
.tc2-card:hover .tc2-name {
  color: var(--blue);
}

@media (max-width: 1024px) { .team-grid-v2 { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 600px)  { .team-grid-v2 { grid-template-columns: repeat(2, 1fr); } }

/* =============================================
   PARTNERS GRID — Redesigned
   ============================================= */
.partners-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}
.partner-card {
  background: #fff;
  border: 1.5px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 22px 16px;
  text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
}
.partner-card:hover {
  border-color: var(--blue);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.partner-icon {
  font-size: 1.5rem;
  color: var(--blue);
  opacity: .7;
}
.partner-card span {
  font-size: .8125rem;
  font-weight: 700;
  color: var(--gray-700);
  line-height: 1.4;
}
@media (max-width: 1024px) { .partners-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 600px)  { .partners-grid { grid-template-columns: repeat(2, 1fr); } }

/* =============================================
   ADVISORY BOARD
   ============================================= */
.advisory-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
.tc2-card.dummy .tc2-photo {
  background: linear-gradient(135deg, #e8edf5, #d0dae8);
  display: flex; align-items: center; justify-content: center;
}
.tc2-card.dummy .tc2-photo i {
  font-size: 3rem; color: #b0bdd0;
}
.tc2-card.dummy .tc2-name {
  color: #b0bdd0; font-style: italic;
}
/* Initials placeholder for advisory photos */
.tc2-initials {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--ff-heading); font-size: 2rem; font-weight: 900;
  color: #fff; background: linear-gradient(135deg, var(--blue-dark), var(--blue));
  letter-spacing: .05em;
}
@media (max-width: 1024px) { .advisory-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 600px)  { .advisory-grid { grid-template-columns: repeat(2, 1fr); } }

/* =============================================
   MISSION/VISION/VALUES — Bold redesign
   ============================================= */
.mvv-section {
  background: linear-gradient(135deg, #002f6c 0%, #0057b8 100%);
  padding: 72px 0;
}
.mvv-inner {
  display: grid;
  grid-template-columns: 1fr 1.8fr;
  gap: 64px;
  align-items: center;
}
.mvv-eyebrow {
  font-size: .75rem; font-weight: 800; letter-spacing: .12em;
  text-transform: uppercase; color: #ffc96e; margin-bottom: 16px;
}
.mvv-heading {
  font-family: var(--ff-heading); font-size: 2.5rem;
  font-weight: 900; color: #fff; line-height: 1.2;
}
.mvv-heading span { color: #ffc96e; }
.mvv-right { display: flex; flex-direction: column; gap: 0; }
.mvv-block { padding: 20px 0; }
.mvv-block-label {
  font-size: .75rem; font-weight: 800; letter-spacing: .1em;
  text-transform: uppercase; color: rgba(255,255,255,.6);
  display: flex; align-items: center; gap: 8px; margin-bottom: 10px;
}
.mvv-block-label i { color: #ffc96e; }
.mvv-block-text {
  font-size: .9375rem; color: rgba(255,255,255,.88);
  line-height: 1.75; margin: 0;
}
.mvv-divider { height: 1px; background: rgba(255,255,255,.15); }
.mvv-values-row { display: flex; gap: 32px; flex-wrap: wrap; }
.mvv-val { display: flex; flex-direction: column; gap: 3px; }
.mvv-val strong { font-family: var(--ff-heading); font-weight: 800; font-size: .9375rem; color: #fff; }
.mvv-val span { font-size: .75rem; color: #ffc96e; font-style: italic; }

@media (max-width: 900px) {
  .mvv-inner { grid-template-columns: 1fr; gap: 32px; }
  .mvv-heading { font-size: 1.875rem; }
}

/* =============================================
   FOCUS AREAS V2 — 2x2 wide horizontal cards
   ============================================= */
.focus-grid-v2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.fc2-card {
  background: #fff;
  border-radius: var(--radius-xl);
  padding: 28px 28px;
  border: 1.5px solid var(--gray-100);
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: flex-start;
  gap: 20px;
  transition: all var(--transition);
}
.fc2-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
  border-color: transparent;
}
.fc2-icon {
  width: 52px; height: 52px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.375rem; flex-shrink: 0;
  transition: all var(--transition);
}
.fc2-card:hover .fc2-icon {
  transform: scale(1.12);
  background: var(--orange) !important;
  color: #fff !important;
}
.fc2-body { flex: 1; }
.fc2-title {
  font-family: var(--ff-heading); font-weight: 900;
  font-size: 1rem; color: var(--gray-800);
  margin-bottom: 8px; line-height: 1.3;
}
.fc2-desc {
  font-size: .875rem; color: var(--gray-500);
  line-height: 1.7; margin-bottom: 12px;
}
.fc2-link {
  font-size: .8125rem; font-weight: 700; color: var(--blue);
  display: inline-flex; align-items: center; gap: 6px;
  text-decoration: none; transition: gap var(--transition);
}
.fc2-link:hover { gap: 10px; }

@media (max-width: 768px) { .focus-grid-v2 { grid-template-columns: 1fr; } }

/* ── Impact Stats Section ── */
.impact-stats-section {
  background: linear-gradient(180deg, #f0f5ff 0%, #ffffff 100%);
  border-bottom: 1px solid var(--gray-100);
  padding: 0;
}
.impact-stats-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
}
.impact-stat-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 36px 20px;
  text-align: center;
  border-right: 1px solid var(--gray-100);
  transition: background var(--transition);
  position: relative;
}
.impact-stat-card:last-child { border-right: none; }
.impact-stat-card:hover { background: var(--blue-light); }
.impact-stat-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--blue-light);
  display: flex; align-items: center; justify-content: center;
  color: var(--blue);
  margin-bottom: 14px;
  transition: all var(--transition);
}
.impact-stat-card:hover .impact-stat-icon {
  background: var(--blue);
  color: white;
}
.impact-stat-value {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
  margin-bottom: 4px;
}
.impact-stat-num {
  font-family: var(--ff-heading);
  font-size: 2.25rem;
  font-weight: 900;
  color: var(--gray-900);
  line-height: 1;
}
.impact-stat-suffix {
  font-family: var(--ff-heading);
  font-size: 1.75rem;
  font-weight: 900;
  color: var(--orange);
  line-height: 1;
}
.impact-stat-lbl {
  font-size: 0.8rem;
  color: var(--gray-500);
  font-weight: 600;
  margin-top: 4px;
  font-family: var(--ff-heading);
  text-transform: uppercase;
  letter-spacing: .05em;
}
@media (max-width: 1024px) {
  .impact-stats-grid { grid-template-columns: repeat(3, 1fr); }
  .impact-stat-card:nth-child(3) { border-right: none; }
  .impact-stat-card { border-bottom: 1px solid var(--gray-100); }
}
@media (max-width: 600px) {
  .impact-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .impact-stat-card:nth-child(2n) { border-right: none; }
  .impact-stat-card { padding: 24px 12px; }
  .impact-stat-num, .impact-stat-suffix { font-size: 1.75rem; }
}

/* ══ REDESIGNED FOOTER ══ */
.footer-main-wrap {
  background: #0a1628;
  padding: 64px 0 48px;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.footer-grid-new {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.2fr 1.2fr;
  gap: 48px;
}
.footer-logo-new { width: 160px; margin-bottom: 18px; }
.footer-tagline-new { font-size: .9rem; color: rgba(255,255,255,.65); line-height: 1.75; margin-bottom: 8px; }
.ft-green { color: #5a9e3c; }
.ft-orange { color: #F47B20; }
.footer-hindi { font-size: .8rem; color: rgba(255,255,255,.35); margin-bottom: 22px; font-style: italic; }
.footer-social-new { display: flex; gap: 10px; flex-wrap: wrap; }
.soc-new {
  width: 36px; height: 36px; border-radius: 10px;
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.7); font-size: .875rem;
  transition: all .25s;
}
.soc-new:hover { background: var(--orange); border-color: var(--orange); color: white; transform: translateY(-2px); }
.footer-col-title {
  font-family: var(--ff-heading); font-size: .8rem; font-weight: 800;
  color: rgba(255,255,255,.4); text-transform: uppercase; letter-spacing: .1em;
  margin-bottom: 20px; padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-nav-new { display: flex; flex-direction: column; gap: 10px; }
.footer-nav-new a {
  font-size: .875rem; color: rgba(255,255,255,.6);
  text-decoration: none; transition: color .2s, padding-left .2s;
  display: flex; align-items: center; gap: 6px;
}
.footer-nav-new a::before { content: '→'; font-size: .75rem; color: var(--orange); opacity: 0; transition: opacity .2s; }
.footer-nav-new a:hover { color: white; padding-left: 6px; }
.footer-nav-new a:hover::before { opacity: 1; }
.footer-contact-new { display: flex; flex-direction: column; gap: 14px; }
.fc-item { display: flex; align-items: flex-start; gap: 12px; }
.fc-icon { width: 32px; height: 32px; border-radius: 8px; background: rgba(255,255,255,.07); display: flex; align-items: center; justify-content: center; color: var(--orange); font-size: .8rem; flex-shrink: 0; margin-top: 1px; }
.fc-item span, .fc-item a { font-size: .875rem; color: rgba(255,255,255,.65); line-height: 1.55; text-decoration: none; transition: color .2s; }
.fc-item a:hover { color: white; }
.footer-values-new { display: flex; flex-direction: column; gap: 14px; }
.fv-new { display: flex; align-items: center; gap: 12px; }
.fv-new-icon { width: 36px; height: 36px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: .875rem; flex-shrink: 0; }
.fv-new-main { font-family: var(--ff-heading); font-size: .9rem; font-weight: 700; color: white; }
.fv-new-sub { font-size: .75rem; color: rgba(255,255,255,.4); }
.footer-donate-btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--orange); color: white; text-decoration: none;
  padding: 10px 20px; border-radius: 50px;
  font-family: var(--ff-heading); font-size: .875rem; font-weight: 700;
  transition: all .25s;
}
.footer-donate-btn:hover { background: var(--orange-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(244,123,32,.35); }

/* Certs bar */
.footer-certs-new { background: #070f1e; padding: 16px 0; }
.footer-certs-inner { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.fc-label { font-size: .75rem; color: rgba(255,255,255,.3); font-family: var(--ff-heading); font-weight: 700; text-transform: uppercase; letter-spacing: .06em; white-space: nowrap; margin-right: 4px; }

/* Bottom bar */
.footer-bottom-new { background: #040b14; padding: 16px 0; }
.footer-bottom-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.footer-bottom-inner p { font-size: .8rem; color: rgba(255,255,255,.35); margin: 0; }
.footer-bottom-links { display: flex; align-items: center; gap: 12px; font-size: .8rem; }
.footer-bottom-links a { color: rgba(255,255,255,.4); text-decoration: none; transition: color .2s; }
.footer-bottom-links a:hover { color: white; }
.footer-bottom-links span { color: rgba(255,255,255,.2); }

/* Responsive */
@media (max-width: 1024px) { .footer-grid-new { grid-template-columns: 1fr 1fr; gap: 36px; } }
@media (max-width: 600px)  { .footer-grid-new { grid-template-columns: 1fr; gap: 28px; } .footer-main-wrap { padding: 40px 0 32px; } .footer-bottom-inner { flex-direction: column; text-align: center; } }
