/* ==========================================================================
   Sheboxindia (Brand of Globalised Campaign Welfare Society)
   Clean Corporate CSS — Inter Typography System v4.0
   ========================================================================== */

:root {
  /* ── Core Palette ── */
  --navy:          #0D1F3C;
  --navy-mid:      #1A3358;
  --navy-soft:     #2C4A6E;
  --navy-light:    #E8EDF5;

  --crimson:       #C0392B;
  --crimson-dark:  #96261F;
  --crimson-light: #FDECEA;

  --gold-accent:   #C9933A;
  --gold-light:    #FDF3E3;

  --warm-white:    #FDFCF9;
  --stone:         #F4F2EE;
  --bg:            #F8F7F4;
  --white:         #FFFFFF;
  --text:          #1A1A2E;
  --muted:         #5A6478;
  --muted-light:   #8A94A6;

  --border:        rgba(13, 31, 60, 0.1);
  --border-strong: rgba(13, 31, 60, 0.18);
  --border-gold:   rgba(201, 147, 58, 0.3);

  /* Legacy aliases (for inline styles in HTML) */
  --rose:      var(--crimson);
  --rose-dark: var(--crimson-dark);
  --rose-light: var(--crimson-light);
  --red:       var(--crimson);
  --red-dark:  var(--crimson-dark);
  --gold:      var(--gold-accent);
  --gold-deep: #a07228;
  --indigo:    var(--navy-mid);
  --indigo-dark: var(--navy);
  --indigo-light: var(--navy-light);
  --teal:      var(--navy-soft);
  --teal-dark: var(--navy);
  --teal-light: var(--navy-light);
  --amber:     var(--gold-accent);
  --amber-dark: #a07228;
  --amber-light: var(--gold-light);
  --violet:    var(--navy-mid);
  --violet-light: var(--navy-light);
  --cream:     var(--warm-white);

  /* ── Shadows ── */
  --shadow-xs: 0 1px 4px rgba(13, 31, 60, 0.06);
  --shadow-sm: 0 4px 16px rgba(13, 31, 60, 0.07);
  --shadow:    0 8px 32px rgba(13, 31, 60, 0.10);
  --shadow-lg: 0 16px 48px rgba(13, 31, 60, 0.13);

  /* Legacy shadow aliases */
  --shadow-glow-gold:   var(--shadow-sm);
  --shadow-glow-rose:   var(--shadow-sm);
  --shadow-glow-indigo: var(--shadow-sm);

  /* ── Radii ── */
  --radius-xs: 4px;
  --radius-sm: 8px;
  --radius:    12px;
  --radius-lg: 16px;

  /* ── Layout ── */
  --container:  1220px;
  --util-h:     42px;
  --header-h:   80px;

  /* ── Typography ── */
  --font-display: 'Inter', system-ui, -apple-system, sans-serif;
  --font-head:    'Inter', system-ui, -apple-system, sans-serif;
  --font-body:    'Inter', system-ui, -apple-system, sans-serif;

  /* ── Easing ── */
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);

  /* Legacy gradient aliases – neutralized to clean values */
  --navy-gradient:    linear-gradient(160deg, #0A1A2E, var(--navy));
  --rose-gradient:    linear-gradient(135deg, var(--crimson-dark), var(--crimson));
  --gold-gradient:    linear-gradient(135deg, #b07d2a, var(--gold-accent));
  --teal-gradient:    linear-gradient(135deg, var(--navy-mid), var(--navy-soft));
  --indigo-gradient:  linear-gradient(135deg, var(--navy), var(--navy-mid));
  --amber-gradient:   linear-gradient(135deg, #a07228, var(--gold-accent));
  --violet-gradient:  linear-gradient(135deg, var(--navy-mid), var(--navy-soft));
  --rainbow-gradient: linear-gradient(135deg, var(--crimson), var(--navy));
  --line:        var(--border);
  --line-strong: var(--border-strong);
  --line-gold:   var(--border-gold);
}

html[lang="hi"] {
  --font-display: 'Noto Sans Devanagari', 'Inter', sans-serif;
  --font-head:    'Noto Sans Devanagari', 'Inter', sans-serif;
  --font-body:    'Noto Sans Devanagari', 'Inter', sans-serif;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--util-h) + var(--header-h) + 8px);
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.75;
  font-weight: 400;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  letter-spacing: -0.005em;
}

img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font-family: inherit; font-size: inherit; }
p { margin: 0 0 1em; overflow-wrap: break-word; }
ul { margin: 0; padding: 0; list-style: none; }

h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  color: var(--navy);
  line-height: 1.2;
  letter-spacing: -0.03em;
  margin: 0 0 0.6em;
  font-weight: 700;
  overflow-wrap: break-word;
  word-break: break-word;
}

h1 {
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.1;
}

h2 {
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

h3 {
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

h4, h5 {
  font-weight: 600;
  letter-spacing: -0.01em;
}


:focus-visible {
  outline: 2px solid var(--crimson);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: 12px;
  top: -48px;
  background: var(--navy);
  color: var(--white);
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  z-index: 1000;
  font-weight: 600;
  font-family: var(--font-body);
}
.skip-link:focus { top: 12px; }

/* Scroll progress */
#scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  background: var(--crimson);
  width: 0%;
  z-index: 1001;
  transition: width 0.1s linear;
}

/* Back to top */
#back-to-top {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 44px; height: 44px;
  border-radius: var(--radius-sm);
  background: var(--navy);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.15);
  cursor: pointer;
  display: grid;
  place-items: center;
  z-index: 90;
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: all 0.3s var(--ease);
}
#back-to-top.is-visible { opacity: 1; pointer-events: auto; transform: translateY(0); }
#back-to-top:hover { background: var(--crimson); border-color: var(--crimson); }

/* ============================================================
   LAYOUT HELPERS
   ============================================================ */
.container {
  width: min(100% - 32px, var(--container));
  margin-inline: auto;
}

.section {
  padding: 96px 0;
  position: relative;
}

.section--stone  { background: var(--stone); }
.section--warm   { background: var(--warm-white); }
.section--navy {
  background: linear-gradient(160deg, #0A1A2E 0%, var(--navy) 60%, var(--navy-mid) 100%);
  color: rgba(255,255,255,0.85);
}
.section--navy h2,
.section--navy h3 { color: var(--white); }
.section--navy .section-head p { color: rgba(255,255,255,0.75); }

/* Legacy class aliases */
.section--cream { background: var(--warm-white); }
.section--gray  { background: var(--stone); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--crimson);
  margin-bottom: 16px;
  background: none;
  padding: 0;
  border: none;
  box-shadow: none;
}
.eyebrow::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 1.5px;
  background: var(--crimson);
  flex-shrink: 0;
}

.section-head {
  max-width: 700px;
  margin-bottom: 56px;
}
.section-head--center {
  text-align: center;
  margin-inline: auto;
}
.section-head--center .eyebrow { justify-content: center; }
.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3.2vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  margin-bottom: 16px;
  line-height: 1.1;
}
.section-head p {
  color: var(--muted);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.75;
  margin: 0;
  letter-spacing: 0;
}

.gold-rule {
  width: 40px;
  height: 2px;
  background: var(--crimson);
  margin: 12px 0 20px;
  border-radius: 0;
  box-shadow: none;
}

/* Gradient text utilities – simplified */
.text-gradient-gold { color: var(--gold-accent); background: none; -webkit-background-clip: unset; -webkit-text-fill-color: unset; }
.text-gradient-rose { color: var(--crimson); background: none; -webkit-background-clip: unset; -webkit-text-fill-color: unset; }
.text-gradient-rainbow { color: var(--navy); background: none; -webkit-background-clip: unset; -webkit-text-fill-color: unset; }

/* Badge utilities */
.badge-rose   { background: var(--crimson-light); color: var(--crimson);    border: 1px solid rgba(192,57,43,0.2); display:inline-block; padding:3px 10px; border-radius:3px; font-size:12px; font-weight:700; }
.badge-indigo { background: var(--navy-light);    color: var(--navy);       border: 1px solid rgba(13,31,60,0.15); display:inline-block; padding:3px 10px; border-radius:3px; font-size:12px; font-weight:700; }
.badge-teal   { background: var(--navy-light);    color: var(--navy-mid);   border: 1px solid rgba(13,31,60,0.15); display:inline-block; padding:3px 10px; border-radius:3px; font-size:12px; font-weight:700; }
.badge-amber  { background: var(--gold-light);    color: var(--gold-accent); border: 1px solid var(--border-gold);  display:inline-block; padding:3px 10px; border-radius:3px; font-size:12px; font-weight:700; }
.badge-gold   { background: var(--gold-light);    color: var(--gold-accent); border: 1px solid var(--border-gold);  display:inline-block; padding:3px 10px; border-radius:3px; font-size:12px; font-weight:700; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 24px;
  border-radius: var(--radius-sm);
  border: 1.5px solid transparent;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: all 0.22s var(--ease);
  white-space: nowrap;
  text-decoration: none;
}
.btn svg { width: 15px; height: 15px; }
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover {
  background: var(--navy-mid);
  border-color: var(--navy-mid);
  box-shadow: var(--shadow);
  color: var(--white);
}

.btn-red,
.btn-donate {
  background: var(--crimson);
  color: var(--white);
  border-color: var(--crimson);
  box-shadow: var(--shadow-sm);
}
.btn-red:hover,
.btn-donate:hover {
  background: var(--crimson-dark);
  border-color: var(--crimson-dark);
  box-shadow: var(--shadow);
  color: var(--white);
}

.btn-gold {
  background: var(--gold-accent);
  color: var(--white);
  border-color: var(--gold-accent);
  box-shadow: var(--shadow-sm);
}
.btn-gold:hover {
  background: #a07228;
  box-shadow: var(--shadow);
  color: var(--white);
}

.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--border-strong);
}
.btn-outline:hover {
  border-color: var(--crimson);
  color: var(--crimson);
  background: var(--crimson-light);
  transform: translateY(-1px);
}

.btn-outline-light {
  background: rgba(255,255,255,0.08);
  color: var(--white);
  border-color: rgba(255,255,255,0.28);
}
.btn-outline-light:hover {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}

.btn-text {
  background: none;
  border: none;
  color: var(--navy);
  padding: 0;
  font-weight: 600;
  border-radius: 0;
  text-decoration: underline;
  text-underline-offset: 3px;
  font-size: 14px;
}
.btn-text:hover { color: var(--crimson); transform: none; }

.btn-row { display: flex; flex-wrap: wrap; gap: 12px; }

/* Hero pill buttons */
.btn-pill-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #111E38;
  color: var(--white) !important;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  padding: 13px 28px;
  border-radius: 999px;
  border: 1.5px solid #111E38;
  box-shadow: 0 4px 16px rgba(17, 30, 56, 0.18);
  transition: all 0.22s var(--ease);
  text-decoration: none;
}
.btn-pill-primary:hover {
  background: #1E3A8A;
  border-color: #1E3A8A;
  box-shadow: 0 8px 24px rgba(30, 58, 138, 0.25);
  transform: translateY(-1px);
}
.btn-pill-primary svg { transition: transform 0.2s; }
.btn-pill-primary:hover svg { transform: translateX(3px); }

.btn-pill-secondary {
  display: inline-flex;
  align-items: center;
  background: #FFFFFF;
  color: #0F172A;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  padding: 13px 26px;
  border-radius: 999px;
  border: 1px solid #CBD5E1;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04);
  transition: all 0.22s var(--ease);
  text-decoration: none;
}
.btn-pill-secondary:hover {
  border-color: #0F172A;
  background: #F8FAFC;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.08);
}

/* ============================================================
   TOP UTILITY BAR
   ============================================================ */
.util-bar {
  background: var(--navy);
  color: rgba(255,255,255,0.75);
  font-size: 13px;
  font-family: var(--font-body);
  height: var(--util-h);
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  position: sticky;
  top: 0;
  z-index: 81;
}
.util-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: min(100% - 32px, var(--container));
  margin-inline: auto;
  flex-wrap: nowrap;
}
.util-bar-spacer {
  flex: 1 1 0;
  min-width: 0;
}
.util-bar a { color: inherit; transition: color 0.2s; }
.util-bar a:hover { color: var(--white); }
.util-contact {
  display: none;
}
.util-right {
  flex: 1 1 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}
.socials { display: flex; gap: 6px; }
.socials a {
  width: 26px;
  height: 26px;
  border-radius: 4px;
  border: 1px solid rgba(255,255,255,0.14);
  display: grid;
  place-items: center;
  color: rgba(255,255,255,0.65);
  transition: all 0.2s;
}
.socials a:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.3);
  color: var(--white);
}
.socials svg { width: 12px; height: 12px; }

.lang-switch {
  display: flex;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 4px;
  overflow: hidden;
}
.lang-switch button {
  border: 0;
  background: transparent;
  color: rgba(255,255,255,0.65);
  padding: 4px 10px;
  cursor: pointer;
  font-weight: 600;
  font-size: 12px;
  font-family: var(--font-body);
  transition: all 0.2s;
}
.lang-switch button.is-active {
  background: var(--crimson);
  color: var(--white);
}

/* ============================================================
   CENTER BLINKING SHe-BOX PORTAL LINK (GOVT. OF INDIA)
   ============================================================ */
.util-center-portal {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  padding: 0 8px;
}
.shebox-portal-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: linear-gradient(135deg, rgba(220, 38, 38, 0.32), rgba(201, 147, 58, 0.38));
  border: 1.5px solid #FFD54F;
  color: #FFFDE7 !important;
  padding: 3px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2px;
  text-decoration: none;
  animation: sheboxBlinkGlow 1.8s infinite ease-in-out;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  white-space: nowrap;
}
.shebox-portal-link:hover {
  transform: scale(1.04);
  background: linear-gradient(135deg, rgba(220, 38, 38, 0.5), rgba(201, 147, 58, 0.55));
  border-color: #FFE082;
  box-shadow: 0 0 18px rgba(255, 213, 79, 0.85);
}
.portal-badge-pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #FF1744;
  box-shadow: 0 0 8px #FF1744;
  display: inline-block;
  flex-shrink: 0;
  animation: portalPulseDot 1s infinite alternate;
}
.portal-text-full {
  color: #FFE082;
  font-weight: 800;
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.portal-text-short {
  color: #FFE082;
  font-weight: 800;
  font-size: 11px;
}
.portal-badge-url {
  color: #FFFFFF;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.portal-arrow {
  font-size: 13px;
  color: #FFD54F;
  font-weight: 800;
}

@keyframes sheboxBlinkGlow {
  0%, 100% {
    box-shadow: 0 0 6px rgba(255, 213, 79, 0.5), inset 0 0 4px rgba(255, 213, 79, 0.3);
    border-color: #FFD54F;
  }
  50% {
    box-shadow: 0 0 20px rgba(255, 23, 68, 0.95), 0 0 28px rgba(255, 213, 79, 0.8);
    border-color: #FF1744;
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.55), rgba(201, 147, 58, 0.55));
  }
}
@keyframes portalPulseDot {
  from { transform: scale(0.85); opacity: 0.7; }
  to { transform: scale(1.35); opacity: 1; }
}

@media (max-width: 1220px) {
  .portal-text-full { display: none !important; }
  .portal-text-short { display: inline !important; }
}
@media (max-width: 960px) {
  .portal-text-short { display: none !important; }
  .portal-badge-url { font-size: 11px; }
  .shebox-portal-link { padding: 2.5px 8px; gap: 4px; }
}
@media (max-width: 580px) {
  .portal-badge-url { font-size: 10.5px; }
  .shebox-portal-link { padding: 2px 6px; }
}

/* ============================================================
   TOPBAR DOWNLOADS DROPDOWN & BUTTONS
   ============================================================ */
.util-downloads-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
}
.util-downloads-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(201, 147, 58, 0.16);
  border: 1px solid rgba(201, 147, 58, 0.45);
  color: #FFE082;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: var(--font-body);
  white-space: nowrap;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}
.util-downloads-btn:hover,
.util-downloads-btn[aria-expanded="true"] {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}
.util-downloads-btn svg {
  width: 13px;
  height: 13px;
  flex-shrink: 0;
}
.udb-count {
  background: var(--crimson);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  padding: 1px 6px;
  border-radius: 10px;
  line-height: 1.2;
}
.udb-arrow {
  width: 10px !important;
  height: 10px !important;
  transition: transform 0.2s ease;
}
.util-downloads-btn[aria-expanded="true"] .udb-arrow {
  transform: rotate(180deg);
}

/* She box Folder Dropdown Button */
.util-shebox-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
}
.util-shebox-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(220, 38, 38, 0.18);
  border: 1px solid rgba(255, 107, 107, 0.5);
  color: #FFEAEA;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: var(--font-body);
  white-space: nowrap;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}
.util-shebox-btn:hover,
.util-shebox-btn[aria-expanded="true"] {
  background: #E53935;
  color: var(--white);
  border-color: #FF5252;
  box-shadow: 0 0 10px rgba(229, 57, 53, 0.5);
}
.usb-count {
  background: #FFD54F;
  color: #060E1A;
  font-size: 10px;
  font-weight: 800;
  padding: 1px 6px;
  border-radius: 10px;
  line-height: 1.2;
}
.usb-arrow {
  width: 10px !important;
  height: 10px !important;
  transition: transform 0.2s ease;
}
.util-shebox-btn[aria-expanded="true"] .usb-arrow {
  transform: rotate(180deg);
}

/* She box Dropdown Menu */
.util-shebox-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  width: 440px;
  max-width: calc(100vw - 20px);
  max-height: 520px;
  background: #0D1F3C;
  border: 1px solid rgba(255, 107, 107, 0.4);
  border-radius: 10px;
  box-shadow: 0 16px 40px rgba(0,0,0,0.55);
  display: flex;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
  transform: translateY(-6px);
  z-index: 9999;
}
.util-shebox-menu.is-open {
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
  transform: translateY(0) !important;
}
.usm-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px;
  background: rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.usm-tag {
  background: rgba(220, 38, 38, 0.2);
  color: #FFCDD2;
  border: 1px solid rgba(255, 82, 82, 0.4);
  font-size: 11px;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 12px;
}
.usm-close-btn {
  background: transparent;
  border: 0;
  color: rgba(255,255,255,0.7);
  font-size: 18px;
  cursor: pointer;
  line-height: 1;
}
.usm-close-btn:hover {
  color: #fff;
}
.usm-list {
  overflow-y: auto;
  padding: 8px 10px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  max-height: 420px;
}

@media (max-width: 860px) {
  .util-shebox-menu {
    position: fixed !important;
    top: 10px !important;
    left: 8px !important;
    right: 8px !important;
    width: auto !important;
    max-width: calc(100vw - 16px) !important;
    max-height: 92vh !important;
    border-radius: 12px !important;
    z-index: 99999 !important;
  }
}
@media (max-width: 640px) {
  .util-shebox-btn { padding: 3px 8px; font-size: 11px; gap: 4px; }
}
@media (max-width: 520px) {
  .usb-text { display: inline-block; font-size: 11px; }
}

/* Topbar NGO Request Form direct button */
.util-request-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--gold);
  color: var(--white) !important;
  border: 1px solid var(--gold);
  padding: 4px 13px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.2s ease;
  font-family: var(--font-body);
  box-shadow: 0 2px 6px rgba(201, 147, 58, 0.28);
}
.util-request-btn:hover {
  background: #b5812b;
  border-color: #b5812b;
  color: var(--white) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(201, 147, 58, 0.45);
}
.urb-icon {
  font-size: 12px;
  line-height: 1;
}
.urb-arrow {
  font-size: 12px;
  line-height: 1;
  transition: transform 0.2s ease;
}
.util-request-btn:hover .urb-arrow {
  transform: translateX(2px);
}
.urb-text-short,
.urb-text-micro {
  display: none;
}

@media (max-width: 1350px) {
  .urb-text-full { display: none !important; }
  .urb-text-short { display: inline !important; }
  .urb-text-micro { display: none !important; }
}
@media (max-width: 640px) {
  .util-request-btn { padding: 3px 8px; font-size: 11px; gap: 4px; }
  .util-downloads-btn { padding: 3px 8px; font-size: 11px; gap: 4px; }
  .util-shebox-btn { padding: 3px 8px; font-size: 11px; gap: 4px; }
}
@media (max-width: 520px) {
  .udb-text { display: none !important; }
  .urb-text-full,
  .urb-text-short { display: none !important; }
  .urb-text-micro { display: inline !important; font-size: 11px; }
}
@media (max-width: 380px) {
  .util-downloads-btn, .util-request-btn { padding: 2px 6px; font-size: 10px; }
  .urb-text-micro { font-size: 10px; }
}

.util-downloads-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  width: 440px;
  max-width: calc(100vw - 24px);
  background: var(--navy);
  border: 1px solid rgba(201, 147, 58, 0.4);
  border-radius: 12px;
  box-shadow: 0 14px 36px rgba(0,0,0,0.45);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 0.22s cubic-bezier(0.16, 1, 0.3, 1), transform 0.22s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.22s;
  z-index: 9999;
  overflow: hidden;
}
.util-downloads-menu.is-open {
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
  transform: translateY(0) !important;
}
.udm-header {
  padding: 12px 16px;
  background: rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.09);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.udm-tag {
  background: rgba(201, 147, 58, 0.22);
  color: #FFE082;
  font-size: 11px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 4px;
}
.udm-close-btn {
  display: none;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: var(--white);
  font-size: 18px;
  line-height: 1;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  transition: all 0.15s ease;
}
.udm-close-btn:hover {
  background: var(--crimson);
  border-color: var(--crimson);
}
.udm-list {
  display: flex;
  flex-direction: column;
  padding: 4px 0;
  max-height: 440px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(201, 147, 58, 0.4) transparent;
}
.udm-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: background 0.15s;
}
.udm-row:last-child {
  border-bottom: none;
}
.udm-row:hover {
  background: rgba(255,255,255,0.07);
}
.udm-file-icon {
  font-size: 10px;
  font-weight: 800;
  padding: 4px 6px;
  border-radius: 4px;
  letter-spacing: 0.5px;
  flex-shrink: 0;
  text-align: center;
}
.udm-pdf {
  background: #FFEBEE;
  color: #C62828;
}
.udm-doc {
  background: #E3F2FD;
  color: #1565C0;
}
.udm-ppt {
  background: #FFF3E0;
  color: #E65100;
}
.udm-img {
  background: #E8F5E9;
  color: #2E7D32;
}
.udm-info {
  flex: 1;
  min-width: 0;
}
.udm-name {
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.35;
  white-space: normal;
  word-break: normal;
}
.udm-meta {
  color: rgba(255,255,255,0.65);
  font-size: 11.5px;
  line-height: 1.3;
  margin-top: 2px;
  white-space: normal;
}
.btn-instant-dl {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--gold);
  color: var(--navy) !important;
  font-size: 11.5px;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 5px;
  text-decoration: none;
  flex-shrink: 0;
  transition: all 0.18s ease;
}
.btn-instant-dl:hover {
  background: #FFE082;
  transform: translateY(-1px);
  color: #0D1F3C !important;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}
.btn-instant-dl svg {
  width: 12px;
  height: 12px;
}

/* Tablet & Mobile Dropdown Full View Modal */
@media (max-width: 860px) {
  .util-downloads-menu {
    position: fixed !important;
    top: 10px !important;
    left: 8px !important;
    right: 8px !important;
    width: auto !important;
    max-width: calc(100vw - 16px) !important;
    max-height: 92vh !important;
    border-radius: 12px !important;
    box-shadow: none !important;
    z-index: 99999 !important;
    pointer-events: none !important;
  }
  .util-downloads-menu.is-open {
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.8), 0 0 0 100vmax rgba(0, 0, 0, 0.6) !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    transform: translateY(0) !important;
  }
  .udm-close-btn {
    display: inline-flex;
  }
  .udm-header {
    padding: 12px 14px;
  }
  .udm-list {
    max-height: calc(88vh - var(--util-h) - 64px);
    padding: 4px 0;
  }
  .udm-row {
    padding: 10px 12px;
    gap: 10px;
  }
  .udm-file-icon {
    font-size: 9px;
    padding: 3px 5px;
  }
  .udm-name {
    font-size: 12.5px;
    line-height: 1.35;
  }
  .udm-meta {
    font-size: 11px;
    opacity: 0.8;
  }
  .btn-instant-dl {
    padding: 6px 9px;
    font-size: 11px;
    gap: 4px;
  }
}

/* Page Resource Cards Grid */
.downloads-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 20px;
  margin-top: 24px;
}
.download-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.download-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: var(--gold);
}
.download-card-header {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 14px;
}
.download-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.5px;
  flex-shrink: 0;
}
.download-card-icon.pdf {
  background: #FEE2E2;
  color: #DC2626;
  border: 1px solid #FECACA;
}
.download-card-icon.doc {
  background: #E0E7FF;
  color: #2563EB;
  border: 1px solid #BFDBFE;
}
.download-card-icon.ppt {
  background: #FFEDD5;
  color: #C2410C;
  border: 1px solid #FED7AA;
}
.download-card-title {
  font-size: 1.05rem;
  font-family: var(--font-body);
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 6px 0;
  line-height: 1.35;
}
.download-card-desc {
  font-size: 13.5px;
  color: var(--muted);
  margin: 0;
  line-height: 1.5;
}
.download-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  margin-top: 18px;
}
.download-meta-pill {
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
  background: var(--stone);
  padding: 4px 10px;
  border-radius: 4px;
}
.btn-download-action {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--navy);
  color: var(--white) !important;
  font-size: 13px;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: all 0.2s ease;
}
.btn-download-action:hover {
  background: var(--crimson);
  transform: translateY(-1px);
  color: var(--white) !important;
  box-shadow: var(--shadow-sm);
}
.btn-download-action svg {
  width: 14px;
  height: 14px;
}

/* ============================================================
   RESPONSIVE VIDEO EMBEDS & VIDEO CARDS
   ============================================================ */
.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 26px;
  margin-top: 28px;
}
.video-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
  display: flex;
  flex-direction: column;
}
.video-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: var(--gold);
}
.video-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
  overflow: hidden;
}
.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.video-card-body {
  padding: 20px 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.video-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 3px 8px;
  border-radius: 4px;
  margin-bottom: 10px;
  align-self: flex-start;
}
.video-badge.red {
  background: #FEE2E2;
  color: #DC2626;
}
.video-badge.gold {
  background: #FEF3C7;
  color: #B45309;
}
.video-badge.blue {
  background: #E0E7FF;
  color: #2563EB;
}
.video-card-title {
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 8px 0;
  line-height: 1.35;
  font-family: var(--font-body);
}
.video-card-desc {
  font-size: 13.5px;
  color: var(--muted);
  margin: 0;
  line-height: 1.5;
  flex: 1;
}
.video-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
  font-size: 12.5px;
  color: var(--muted);
}
.video-yt-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-weight: 600;
  color: var(--crimson);
  transition: color 0.2s;
}
.video-yt-link:hover {
  color: var(--crimson-dark);
  text-decoration: underline;
}

/* ============================================================
   STICKY HEADER / NAV
   ============================================================ */
.site-header {
  position: sticky;
  top: var(--util-h);
  z-index: 80;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s, border-color 0.3s;
}
.site-header.is-scrolled {
  box-shadow: 0 4px 24px rgba(13, 31, 60, 0.08);
  border-bottom-color: var(--border-strong);
  background: rgba(255,255,255,0.97);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: var(--header-h);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.brand img {
  width: 52px; height: 52px;
  object-fit: contain;
  border-radius: var(--radius-sm);
  background: var(--white);
  box-shadow: 0 0 0 1px var(--border), var(--shadow-xs);
}
.brand-text { display: flex; flex-direction: column; line-height: 1.2; }
.brand-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 19px;
  letter-spacing: -0.03em;
  color: var(--navy);
}
.brand-sub {
  font-size: 10px;
  letter-spacing: 0.02em;
  color: var(--muted);
  font-weight: 500;
  white-space: nowrap;
  font-family: var(--font-body);
}

.nav {
  display: flex;
  align-items: center;
  gap: 2px;
}
.nav a {
  font-family: var(--font-body);
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text);
  padding: 7px 10px;
  position: relative;
  white-space: nowrap;
  transition: color 0.2s;
}
.nav a::after {
  content: '';
  position: absolute;
  left: 10px;
  bottom: 4px;
  right: 10px;
  height: 1px;
  background: var(--crimson);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s var(--ease);
}
.nav a:hover { color: var(--navy); }
.nav a:hover::after,
.nav a.is-active::after { transform: scaleX(1); }
.nav a.is-active { color: var(--navy); font-weight: 600; }
.nav .mobile-donate { display: none; }
.nav .btn::after { content: none; }

.header-cta { flex-shrink: 0; }
.header-cta .btn { padding: 10px 18px; font-size: 13px; }

.nav-toggle {
  display: none;
  width: 40px; height: 40px;
  border: 1px solid var(--border);
  background: transparent;
  cursor: pointer;
  position: relative;
  border-radius: var(--radius-sm);
}
.nav-toggle span {
  position: absolute;
  left: 11px; right: 11px;
  height: 1.5px;
  background: var(--navy);
  border-radius: 1px;
  transition: transform 0.3s var(--ease), opacity 0.2s, top 0.3s;
}
.nav-toggle span:nth-child(1) { top: 14px; }
.nav-toggle span:nth-child(2) { top: 20px; }
.nav-toggle span:nth-child(3) { top: 26px; }
.nav-toggle.is-open span:nth-child(1) { top: 20px; transform: rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { top: 20px; transform: rotate(-45deg); }

.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 26, 46, 0.4);
  z-index: 70;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.nav-overlay.is-open { opacity: 1; pointer-events: auto; }

/* ============================================================
   HERO — MODERN SPLIT (Reference Layout with Soft Left Blur/Fade)
   ============================================================ */
.hero--modern {
  background: #FFFFFF;
  min-height: auto;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 48px 0 52px;
  border-bottom: 1px solid var(--border);
}

.hero-modern-grid {
  display: grid;
  grid-template-columns: minmax(480px, 560px) 1.25fr;
  align-items: stretch;
  width: 100%;
  margin: 0;
  /* Mathematically aligns hero text directly underneath the navbar brand logo */
  padding-left: max(16px, calc((100% - var(--container)) / 2));
  padding-right: 0;
  gap: 36px;
  min-height: auto;
}

.hero-copy-pane {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  z-index: 3;
  padding: 0;
  max-width: 560px;
}

/* Top pill badge (matching attached screenshot) */
.hero-pill-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: #F1F5F9;
  border: 1px solid #E2E8F0;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #475569;
  text-transform: uppercase;
  margin-bottom: 22px;
  box-shadow: none;
}
.hero-pill-badge::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #10B981;
  display: inline-block;
  flex-shrink: 0;
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.25);
}
.hero-pill-badge .sep {
  color: #94A3B8;
  font-weight: 400;
  font-size: 13px;
}

/* Main heading: Trusted Since 2010 strictly on a single line */
.hero-title-modern {
  font-family: var(--font-display);
  font-size: clamp(2.3rem, 4vw, 3.5rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.04em;
  color: #0F172A;
  margin: 0 0 20px;
}
.hero-title-line1 {
  display: block;
  white-space: nowrap; /* Keeps 'Trusted Since 2010.' strictly in one single line */
}
.hero-title-modern .accent-text {
  color: #1E3A8A; /* Corporate Blue from screenshot */
  font-style: normal;
  background: none;
  -webkit-background-clip: unset;
  -webkit-text-fill-color: unset;
  display: block;
  font-weight: 800;
}

/* Lead paragraph */
.hero-lead-modern {
  font-size: 0.98rem;
  font-weight: 400;
  line-height: 1.76;
  color: #4B5563;
  max-width: 500px;
  margin: 0 0 36px;
  letter-spacing: 0;
}

/* ── Inline micro-stats row (matching attached screenshot) ── */
.hero-micro-stats {
  display: flex;
  align-items: flex-start;
  gap: 36px;
  margin-bottom: 36px;
  border: none;
  border-radius: 0;
  background: transparent;
  overflow: visible;
  padding: 0;
  width: auto;
  max-width: none;
  box-shadow: none;
}
.micro-stat-col {
  display: flex;
  flex-direction: column;
  padding: 0;
  flex: 0 0 auto;
  border-right: none;
  background: transparent;
}
.micro-stat-col:last-of-type {
  border-right: none;
}
.micro-stat-div {
  display: none;
}

.micro-stat-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1;
  color: #0F172A;
  letter-spacing: -0.04em;
  white-space: nowrap;
}
.micro-stat-num span {
  font-size: 1.5rem;
  font-weight: 800;
  color: #0F172A;
  letter-spacing: -0.02em;
}
.micro-stat-label {
  font-size: 11px;
  font-weight: 500;
  color: #64748B;
  margin-top: 6px;
  line-height: 1.35;
  font-family: var(--font-body);
  max-width: 105px;
}

/* CTA buttons row */
.hero-btn-group {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* ── Right visual pane: Multi-Banner Real Horizontal Auto-Slider (2s) ── */
.hero-visual-pane {
  position: relative;
  width: 100%;
  height: 100%;
  align-self: stretch;
  overflow: hidden;
  background: #FFFFFF;
  border: none;
  border-radius: 18px 0 0 18px;
  box-shadow: none;
  margin: 0;
  /* Feathering on entire visual pane so banners slide through smoothly */
  -webkit-mask-image: linear-gradient(to right, transparent 0%, rgba(0, 0, 0, 0.3) 10px, black 35px);
  mask-image: linear-gradient(to right, transparent 0%, rgba(0, 0, 0, 0.3) 10px, black 35px);
}

/* Soft narrow edge feather (35px) applied over the sliding track */
.hero-visual-pane::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 40px;
  background: linear-gradient(to right, #FFFFFF 0%, rgba(255, 255, 255, 0.6) 40%, rgba(255, 255, 255, 0) 100%);
  z-index: 5;
  pointer-events: none;
}

.hero-slider-track {
  display: flex;
  width: 500%;
  height: 100%;
  transition: transform 0.65s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: transform;
}

.hero-slide {
  width: 20%;
  height: 100%;
  flex: 0 0 20%;
  position: relative;
  overflow: hidden;
}

.hero-slide .hero-visual-img {
  width: 100%;
  height: 100%;
  max-height: none;
  object-fit: cover;
  display: block;
  filter: contrast(103%) saturate(104%);
}

/* Floating status pill on the banner */
.hero-live-badge {
  position: absolute;
  bottom: 28px;
  left: 24px;
  background: rgba(13, 23, 38, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: #FFFFFF;
  padding: 9px 20px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
  z-index: 6;
  letter-spacing: 0.01em;
  white-space: nowrap;
  overflow: hidden;
  max-width: calc(100% - 130px);
  transition: opacity 0.3s ease;
}
#hero-live-badge-text {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  display: block;
  max-width: 100%;
}

/* Slider Pagination Dots */
.hero-slider-dots {
  position: absolute;
  bottom: 32px;
  right: 28px;
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 6;
}

.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.45);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-dot:hover {
  background: rgba(255, 255, 255, 0.85);
  transform: scale(1.15);
}

.hero-dot.is-active {
  width: 26px;
  background: #FFFFFF;
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.7);
}

.live-pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22C55E;
  box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.5);
  animation: pulseGreen 2.5s infinite;
  flex-shrink: 0;
}
@keyframes pulseGreen {
  0%   { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.5); }
  70%  { box-shadow: 0 0 0 8px rgba(34, 197, 94, 0); }
  100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

/* Hero responsive breakpoints */
@media (max-width: 1200px) {
  .hero-modern-grid {
    padding: 0 32px 0 48px;
    gap: 48px;
  }
}

/* Legacy .hero (other pages) */
.hero {
  position: relative;
  background: var(--navy);
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  min-height: min(80vh, 640px);
  align-items: center;
}
.hero-copy {
  position: relative;
  z-index: 2;
  color: rgba(255,255,255,0.88);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0;
  min-width: 0;
  padding: 56px clamp(24px, 5vw, 60px);
  background: linear-gradient(160deg, #0A1A2E, var(--navy));
}
.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--gold-accent);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin: 0 0 14px;
}
.hero-kicker-dot { flex: 0 0 7px; width: 7px; height: 7px; border-radius: 50%; background: var(--gold-accent); }
.hero h1 { color: var(--white); font-size: clamp(1.8rem, 3vw, 2.8rem); font-weight: 600; margin: 0 0 16px; }
.hero-line { display: block; }
.hero-line--gold, .hero h1 em { font-style: normal; color: var(--gold-accent); }
.hero-lead { color: rgba(255,255,255,0.75); font-size: 1.05rem; max-width: 480px; margin-bottom: 28px; }
.hero-meta { display: flex; flex-wrap: wrap; gap: 24px; margin-top: 28px; color: rgba(255,255,255,0.6); font-size: 13px; }
.hero-meta strong { color: var(--white); display: block; font-size: 14px; }
.hero-visual {
  position: relative;
  height: calc(100% - 36px);
  min-height: 540px;
  max-height: 600px;
  margin: 18px clamp(18px, 3.5vw, 36px) 18px 8px;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255,255,255,0.1);
}
.hero-visual img { width: 100%; height: 100%; object-fit: cover; object-position: center 20%; }
.hero-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10,26,46,0.15) 0%, transparent 20%);
  pointer-events: none;
}
.hero-orb, .hero-badge { display: none; }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

/* ============================================================
   IMPACT STATS — COLORFUL MODERN CARDS
   ============================================================ */
.stats {
  position: relative;
  z-index: 2;
  padding: 64px 0 52px;
  background: #F8FAFC;
  border-bottom: 1px solid var(--border);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  background: transparent;
  border: none;
  border-radius: 0;
  overflow: visible;
}
.stat-card {
  background: #FFFFFF;
  padding: 30px 12px 24px;
  text-align: center;
  position: relative;
  border-radius: 16px;
  border: 1px solid rgba(226, 232, 240, 0.9);
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.04), 0 1px 3px rgba(15, 23, 42, 0.02);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  border-radius: 16px 16px 0 0;
  display: block;
}

.stat-card .num {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 2.25vw, 2.45rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  display: inline-block;
  white-space: nowrap; /* Main heading stays strictly on a single line */
  margin-bottom: 2px;
}

.stat-card .gold-rule {
  height: 3px;
  width: 28px;
  border-radius: 999px;
  margin: 10px auto 12px;
  border: none;
}

.stat-card p {
  margin: 0;
  color: #475569;
  font-size: clamp(11.5px, 0.88vw, 13px);
  font-weight: 600;
  line-height: 1.25;
  white-space: nowrap; /* Description stays strictly on a single line */
  letter-spacing: -0.015em;
}

/* ── Card 1: Vibrant Royal Blue (Organisations) ── */
.stat-card:nth-child(1)::before {
  background: linear-gradient(90deg, #1D4ED8, #3B82F6);
}
.stat-card:nth-child(1) .num {
  background: linear-gradient(135deg, #1E40AF 0%, #3B82F6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: #2563EB;
}
.stat-card:nth-child(1) .gold-rule {
  background: linear-gradient(90deg, #1D4ED8, #3B82F6);
}
.stat-card:nth-child(1):hover {
  transform: translateY(-6px);
  border-color: rgba(59, 130, 246, 0.4);
  box-shadow: 0 16px 36px rgba(37, 99, 235, 0.14), 0 4px 12px rgba(37, 99, 235, 0.06);
}

/* ── Card 2: Vibrant Emerald / Teal (National States) ── */
.stat-card:nth-child(2)::before {
  background: linear-gradient(90deg, #059669, #10B981);
}
.stat-card:nth-child(2) .num {
  background: linear-gradient(135deg, #065F46 0%, #10B981 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: #059669;
}
.stat-card:nth-child(2) .gold-rule {
  background: linear-gradient(90deg, #059669, #10B981);
}
.stat-card:nth-child(2):hover {
  transform: translateY(-6px);
  border-color: rgba(16, 185, 129, 0.4);
  box-shadow: 0 16px 36px rgba(16, 185, 129, 0.14), 0 4px 12px rgba(16, 185, 129, 0.06);
}

/* ── Card 3: Radiant Amber / Sunset (Workshops) ── */
.stat-card:nth-child(3)::before {
  background: linear-gradient(90deg, #D97706, #F59E0B);
}
.stat-card:nth-child(3) .num {
  background: linear-gradient(135deg, #B45309 0%, #F59E0B 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: #D97706;
}
.stat-card:nth-child(3) .gold-rule {
  background: linear-gradient(90deg, #D97706, #F59E0B);
}
.stat-card:nth-child(3):hover {
  transform: translateY(-6px);
  border-color: rgba(245, 158, 11, 0.4);
  box-shadow: 0 16px 36px rgba(245, 158, 11, 0.15), 0 4px 12px rgba(245, 158, 11, 0.06);
}

/* ── Card 4: Vibrant Crimson Rose (Women Empowered) ── */
.stat-card:nth-child(4)::before {
  background: linear-gradient(90deg, #E11D48, #FB7185);
}
.stat-card:nth-child(4) .num {
  background: linear-gradient(135deg, #BE123C 0%, #F43F5E 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: #E11D48;
}
.stat-card:nth-child(4) .gold-rule {
  background: linear-gradient(90deg, #E11D48, #FB7185);
}
.stat-card:nth-child(4):hover {
  transform: translateY(-6px);
  border-color: rgba(225, 29, 72, 0.4);
  box-shadow: 0 16px 36px rgba(225, 29, 72, 0.14), 0 4px 12px rgba(225, 29, 72, 0.06);
}

/* ── Card 5: Regal Purple / Violet (Free Legal Aid) ── */
.stat-card:nth-child(5)::before {
  background: linear-gradient(90deg, #7C3AED, #A855F7);
}
.stat-card:nth-child(5) .num {
  background: linear-gradient(135deg, #6D28D9 0%, #A855F7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: #7C3AED;
}
.stat-card:nth-child(5) .gold-rule {
  background: linear-gradient(90deg, #7C3AED, #A855F7);
}
.stat-card:nth-child(5):hover {
  transform: translateY(-6px);
  border-color: rgba(124, 58, 237, 0.4);
  box-shadow: 0 16px 36px rgba(124, 58, 237, 0.15), 0 4px 12px rgba(124, 58, 237, 0.06);
}


/* ============================================================
   ABOUT / SPLIT LAYOUT
   ============================================================ */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.split-media { position: relative; }
.split-media img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  object-position: center;
  border-radius: var(--radius);
  display: block;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}
.media-frame {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  background: var(--navy);
  border: 1px solid var(--border);
}
.media-frame img {
  filter: contrast(102%) saturate(103%);
  transition: transform 0.55s var(--ease);
}
.media-frame:hover img { transform: scale(1.04); }

.media-chip {
  position: absolute;
  left: -16px;
  bottom: 28px;
  background: var(--navy);
  color: var(--white);
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--crimson);
  max-width: 220px;
  box-shadow: var(--shadow);
}
.media-chip strong { display: block; font-family: var(--font-body); font-size: 12.5px; color: var(--gold-accent); font-weight: 600; }
.media-chip span { font-size: 12px; color: rgba(255,255,255,0.6); font-family: var(--font-body); }

.mission {
  background: var(--warm-white);
  border-left: 3px solid var(--navy);
  padding: 18px 22px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--navy);
  margin: 22px 0 28px;
  font-weight: 600;
  font-style: italic;
  line-height: 1.6;
  box-shadow: none;
}

.about-facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 20px;
  margin: 8px 0 28px;
  font-size: 13.5px;
}
.about-facts dt { color: var(--muted); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 700; font-family: var(--font-body); }
.about-facts dd { margin: 0; font-weight: 600; color: var(--navy); }

/* ============================================================
   FOCUS CARDS
   ============================================================ */
.focus-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.focus-card {
  background: var(--white);
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.28s var(--ease), border-color 0.28s;
  box-shadow: none;
}
.focus-card:hover {
  box-shadow: var(--shadow);
  border-color: var(--border-strong);
  transform: none;
}
.focus-card .thumb { height: 190px; overflow: hidden; }
.focus-card .thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.55s var(--ease);
  filter: contrast(102%) saturate(103%);
}
.focus-card:hover .thumb img { transform: scale(1.06); }

.focus-icon {
  position: relative;
  z-index: 2;
  width: 48px; height: 48px;
  margin: -24px 0 14px 20px;
  border-radius: var(--radius-sm);
  background: var(--white);
  border: 1.5px solid var(--border-strong);
  color: var(--navy);
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-sm);
  flex-shrink: 0;
}
.focus-card:nth-child(1) .focus-icon { border-color: var(--crimson);     color: var(--crimson); }
.focus-card:nth-child(2) .focus-icon { border-color: var(--navy-mid);    color: var(--navy-mid); }
.focus-card:nth-child(3) .focus-icon { border-color: var(--gold-accent); color: var(--gold-accent); }
.focus-card:nth-child(4) .focus-icon { border-color: var(--navy-soft);   color: var(--navy-soft); }
.focus-card:nth-child(5) .focus-icon { border-color: var(--crimson-dark); color: var(--crimson-dark); }
.focus-card:nth-child(6) .focus-icon { border-color: var(--gold-accent); color: var(--gold-accent); }

.focus-icon svg { width: 22px; height: 22px; stroke: currentColor; fill: none; display: block; }

.focus-body { padding: 0 20px 22px; display: flex; flex-direction: column; flex: 1; }
.focus-body h3 { font-family: var(--font-display); font-size: 1.05rem; font-weight: 700; margin: 0 0 8px; color: var(--navy); letter-spacing: -0.02em; }
.focus-body p { color: var(--muted); font-size: 14px; flex: 1; line-height: 1.7; }
.focus-body .more {
  margin-top: 10px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  color: var(--crimson);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.focus-card:hover .more { color: var(--crimson-dark); gap: 4px; }

/* ============================================================
   CAMPAIGNS
   ============================================================ */
.campaign-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.campaign-card {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  min-height: 420px;
  display: flex;
  align-items: flex-end;
  isolation: isolate;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}
.campaign-card img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.65s var(--ease);
  z-index: -2;
}
.campaign-card:hover img { transform: scale(1.06); }
.campaign-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,26,46,0.05) 20%, rgba(10,26,46,0.88) 100%);
  z-index: -1;
}
.campaign-body { padding: 26px 22px; color: var(--white); }
.campaign-cat {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  font-weight: 700;
  margin-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.2);
  padding-bottom: 6px;
  background: none;
  border-radius: 0;
  border-top: none;
  border-left: none;
  border-right: none;
}
.campaign-body h3 { font-family: var(--font-display); color: var(--white); font-size: 1.45rem; font-weight: 600; margin-bottom: 10px; }
.campaign-body p { color: rgba(255,255,255,0.78); font-size: 14px; line-height: 1.65; }

/* ============================================================
   WOMEN EMPOWERMENT
   ============================================================ */
.women-layout {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 56px;
  align-items: center;
}
.pillar-list { display: grid; gap: 8px; margin: 28px 0; }
.pillar {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 13px 18px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  transition: border-color 0.25s, box-shadow 0.25s;
  background: var(--white);
}
.pillar:hover { border-color: var(--border-strong); box-shadow: var(--shadow-xs); transform: none; }
.pillar-mark {
  width: 36px; height: 36px;
  border-radius: 4px;
  background: var(--navy);
  color: var(--white);
  display: grid;
  place-items: center;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 12px;
  flex-shrink: 0;
}
.pillar:nth-child(even) .pillar-mark { background: var(--crimson); }
.pillar strong { display: block; color: var(--navy); font-family: var(--font-body); font-weight: 600; font-size: 14.5px; }
.pillar span { font-size: 13px; color: var(--muted); }

.women-collage {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  grid-template-rows: 1fr 1fr;
  gap: 12px;
  height: 520px;
}
.women-collage .tile {
  overflow: hidden;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.women-collage .tile img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.55s var(--ease); }
.women-collage .tile:hover img { transform: scale(1.06); }
.women-collage .tile:first-child { grid-row: 1 / span 2; }

/* ============================================================
   GALLERY / MASONRY & FILTERS
   ============================================================ */
.filter-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 32px;
  align-items: center;
}
.filter-btn {
  background: var(--white);
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  padding: 8px 18px;
  font-family: var(--font-body);
  font-size: 13.5px;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  transition: all 0.2s var(--ease);
  box-shadow: var(--shadow-xs);
}
.filter-btn:hover {
  background: var(--stone);
  border-color: var(--navy);
}
.filter-btn.is-active {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
  box-shadow: 0 4px 12px rgba(13, 31, 60, 0.15);
}

/* Quick Sub-Navigation (Work page) */
.work-subnav {
  background: var(--white);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: calc(var(--util-h) + var(--header-h));
  z-index: 75;
  padding: 10px 0;
  box-shadow: 0 2px 8px rgba(13, 31, 60, 0.04);
}
.work-subnav__inner {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  white-space: nowrap;
  padding-bottom: 4px;
  -webkit-overflow-scrolling: touch;
}
.work-subnav__inner::-webkit-scrollbar { height: 4px; }
.work-subnav__inner::-webkit-scrollbar-thumb { background: var(--border-strong); border-radius: 2px; }
.work-subnav-link {
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 600;
  border-radius: 999px;
  border: 1px solid var(--border-strong);
  color: var(--navy);
  background: var(--warm-white);
  transition: all 0.2s;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
}
.work-subnav-link:hover {
  background: var(--stone);
  border-color: var(--navy);
}

.masonry { columns: 1; column-gap: 16px; }
.masonry figure {
  break-inside: avoid;
  margin: 0 0 16px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  border: 1px solid var(--border);
  box-shadow: none;
}
.masonry img { width: 100%; display: block; transition: transform 0.5s var(--ease); filter: contrast(102%) saturate(103%); }
.masonry figure:hover img { transform: scale(1.05); }
.masonry figcaption {
  position: absolute;
  inset: auto 0 0;
  padding: 24px 16px 14px;
  background: linear-gradient(transparent, rgba(10,26,46,0.85));
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
  font-family: var(--font-body);
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.3s, transform 0.3s;
}
.masonry figure:hover figcaption,
.masonry figure:focus-visible figcaption { opacity: 1; transform: none; }
@media (min-width: 640px)  { .masonry { columns: 2; } }
@media (min-width: 1024px) { .masonry { columns: 3; } }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(10,26,46,0.96);
  backdrop-filter: blur(12px);
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.lightbox.is-open { display: flex; }
.lightbox img { max-width: min(92vw, 1100px); max-height: 82vh; border-radius: var(--radius-sm); box-shadow: var(--shadow-lg); }
.lightbox-cap {
  position: absolute;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.85);
  font-size: 13px;
  font-weight: 600;
  font-family: var(--font-body);
  max-width: min(90vw, 800px);
  text-align: center;
  background: rgba(10, 26, 46, 0.7);
  padding: 6px 16px;
  border-radius: 999px;
  backdrop-filter: blur(8px);
}
.lightbox-btn {
  position: absolute;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--white);
  width: 44px; height: 44px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  display: grid;
  place-items: center;
}
.lightbox-close { top: 22px; right: 22px; }
.lightbox-prev  { left: 22px; }
.lightbox-next  { right: 22px; }
.lightbox-btn:hover { background: var(--crimson); border-color: var(--crimson); }

/* ============================================================
   STORIES
   ============================================================ */
.stories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.story-card {
  background: var(--white);
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.28s var(--ease), border-color 0.28s;
  box-shadow: none;
}
.story-card:hover { box-shadow: var(--shadow); border-color: var(--border-strong); transform: none; }
.story-card img { height: 230px; width: 100%; object-fit: cover; object-position: center 20%; }
.story-body { padding: 22px; }
.story-tag {
  display: inline-block;
  background: var(--stone);
  color: var(--navy);
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 3px;
  margin-bottom: 10px;
}
.story-card:nth-child(1) .story-tag { background: var(--crimson-light); color: var(--crimson); }
.story-card:nth-child(3) .story-tag { background: var(--gold-light); color: var(--gold-accent); }
.story-body h3 { font-family: var(--font-display); font-size: 1.2rem; font-weight: 600; margin-bottom: 8px; }
.story-body p { color: var(--muted); font-size: 13.5px; margin: 0; line-height: 1.7; }

/* ============================================================
   GET INVOLVED
   ============================================================ */
.involve-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.involve-card {
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 28px 22px;
  border: 1px solid var(--border);
  min-height: 250px;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.28s var(--ease), border-color 0.28s;
  position: relative;
  overflow: hidden;
}
.involve-card::before { display: none; }
.involve-card:hover { box-shadow: var(--shadow); border-color: var(--border-strong); transform: none; }

.involve-no { font-family: var(--font-body); color: var(--muted-light); font-weight: 700; letter-spacing: 0.08em; font-size: 12px; margin-bottom: 16px; text-transform: uppercase; }
.involve-card h3 { font-family: var(--font-display); font-size: 1.3rem; font-weight: 600; color: var(--navy); margin-bottom: 10px; }
.involve-card p { color: var(--muted); font-size: 14px; flex: 1; line-height: 1.7; }
.involve-card .more { color: var(--crimson); font-weight: 600; font-family: var(--font-body); font-size: 13px; text-decoration: underline; text-underline-offset: 3px; }
.involve-card.accent { background: var(--navy); border-color: var(--navy); color: var(--white); }
.involve-card.accent h3 { color: var(--white); }
.involve-card.accent .involve-no { color: rgba(255,255,255,0.4); }
.involve-card.accent p { color: rgba(255,255,255,0.7); }
.involve-card.accent .more { color: var(--gold-accent); }

/* ============================================================
   EVENTS TIMELINE
   ============================================================ */
.events-wrap { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 32px; }
.timeline { display: grid; gap: 12px; }
.event {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 16px;
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 16px;
  border: 1px solid var(--border);
  transition: border-color 0.25s, box-shadow 0.25s;
}
.event:hover { border-color: var(--border-strong); box-shadow: var(--shadow-xs); transform: none; }
.event-date {
  background: var(--stone);
  border-radius: var(--radius-sm);
  display: grid;
  place-items: center;
  text-align: center;
  padding: 10px 6px;
}
.event-date .d { font-family: var(--font-display); font-size: 22px; font-weight: 700; color: var(--navy); line-height: 1; }
.event-date .m { font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--crimson); font-weight: 700; font-family: var(--font-body); margin-top: 2px; }
.event h3 { font-size: 1rem; font-family: var(--font-body); font-weight: 600; margin-bottom: 4px; color: var(--navy); }
.event p { margin: 0; color: var(--muted); font-size: 13.5px; line-height: 1.6; }
.event-side { border-radius: var(--radius-sm); overflow: hidden; min-height: 300px; position: relative; border: 1px solid var(--border); }
.event-side img { width: 100%; height: 100%; object-fit: cover; }
.event-side figcaption { position: absolute; inset: auto 14px 14px; background: rgba(10,26,46,0.85); color: var(--white); padding: 12px 14px; border-radius: var(--radius-sm); font-size: 13px; font-family: var(--font-body); }

/* ============================================================
   TRUST / TRANSPARENCY
   ============================================================ */
.doc-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 28px; }
.doc-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 26px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 18px;
  transition: box-shadow 0.28s var(--ease), border-color 0.28s;
}
.doc-card:hover { box-shadow: var(--shadow); border-color: var(--border-strong); transform: none; }
.doc-header { display: flex; align-items: flex-start; gap: 14px; }
.doc-icon { width: 48px; height: 48px; border-radius: var(--radius-sm); background: var(--crimson-light); color: var(--crimson); display: grid; place-items: center; flex-shrink: 0; }
.doc-icon svg { width: 22px; height: 22px; }
.doc-info h3 { font-size: 1.1rem; font-family: var(--font-display); margin-bottom: 4px; color: var(--navy); }
.doc-info p { color: var(--muted); font-size: 13.5px; margin: 0; }
.doc-meta { display: flex; align-items: center; justify-content: space-between; padding-top: 14px; border-top: 1px solid var(--border); }
.pdf-badge {
  background: var(--crimson-light);
  color: var(--crimson-dark);
  border: 1px solid rgba(192,57,43,0.2);
  font-size: 10.5px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: var(--radius-xs);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-family: var(--font-body);
}

.poster-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 28px; }
.poster-card { background: var(--white); border-radius: var(--radius-sm); overflow: hidden; border: 1px solid var(--border); transition: box-shadow 0.28s; }
.poster-card:hover { box-shadow: var(--shadow); transform: none; }
.poster-card img { width: 100%; max-height: 480px; object-fit: contain; background: var(--stone); cursor: pointer; }
.poster-body { padding: 18px; display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.poster-body h3 { font-size: 1rem; margin: 0; font-family: var(--font-body); font-weight: 600; }

.trust-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.trust-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 24px 20px; transition: border-color 0.25s, box-shadow 0.25s; }
.trust-card:hover { border-color: var(--border-strong); box-shadow: var(--shadow-xs); transform: none; }
.trust-ico { width: 40px; height: 40px; border-radius: var(--radius-xs); background: var(--stone); color: var(--navy); display: grid; place-items: center; margin-bottom: 14px; }
.trust-card h3 { font-size: 1.05rem; font-family: var(--font-display); }
.trust-card p { color: var(--muted); font-size: 13.5px; margin: 0 0 10px; }
.trust-card .code { font-family: ui-monospace, Menlo, Consolas, monospace; font-size: 12.5px; color: var(--navy); background: var(--stone); padding: 5px 10px; border-radius: var(--radius-xs); display: inline-block; }

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta { position: relative; isolation: isolate; padding: 96px 0; overflow: hidden; }
.cta-bg { position: absolute; inset: 0; z-index: -2; }
.cta-bg img { width: 100%; height: 100%; object-fit: cover; }
.cta::before { content: ''; position: absolute; inset: 0; z-index: -1; background: linear-gradient(100deg, rgba(10,26,46,0.94) 0%, rgba(26,51,88,0.82) 55%, rgba(26,51,88,0.65) 100%); }
.cta-inner { max-width: 640px; }
.cta h2 { color: var(--white); font-size: clamp(2rem, 3.8vw, 3rem); font-family: var(--font-display); }
.cta p { color: rgba(255,255,255,0.78); font-size: 1.05rem; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,0.7);
  padding: 72px 0 0;
  border-top: 3px solid var(--crimson);
  border-image: none;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 0.8fr 1.1fr;
  gap: 40px;
  padding-bottom: 48px;
}
.footer-brand img { width: 64px; height: 64px; border-radius: var(--radius-sm); background: rgba(255,255,255,0.08); margin-bottom: 16px; object-fit: contain; border: 1px solid rgba(255,255,255,0.1); }
.footer-brand p { font-size: 14px; line-height: 1.7; }
.footer-brand h3 { color: var(--white); font-family: var(--font-display); font-size: 1.3rem; font-weight: 600; margin-bottom: 4px; }
.site-footer h4 { color: var(--white); font-family: var(--font-body); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 700; margin-bottom: 16px; opacity: 0.9; }
.site-footer a { color: rgba(255,255,255,0.65); transition: color 0.2s; }
.site-footer a:hover { color: var(--white); }
.footer-links { display: grid; gap: 9px; font-size: 14px; font-family: var(--font-body); }
.newsletter { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px; }
.newsletter .form-success { flex-basis: 100%; }
.newsletter input { flex: 1; border: 1px solid rgba(255,255,255,0.15); background: rgba(255,255,255,0.06); color: var(--white); border-radius: var(--radius-sm); padding: 10px 14px; min-width: 0; font-family: var(--font-body); }
.newsletter input::placeholder { color: rgba(255,255,255,0.35); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding: 18px 0; display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; font-size: 12.5px; font-family: var(--font-body); }
.footer-bottom a { color: rgba(255,255,255,0.55); font-weight: 500; text-decoration: none; }
.footer-bottom a:hover { color: var(--white); }

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  background: linear-gradient(160deg, #0A1A2E 0%, var(--navy) 55%, var(--navy-mid) 100%);
  color: var(--white);
  padding: 72px 0 80px;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  right: 0; top: 0;
  width: 40%; height: 100%;
  background: linear-gradient(to left, rgba(192,57,43,0.05) 0%, transparent 100%);
  pointer-events: none;
}
.page-hero h1 { font-family: var(--font-display); color: var(--white); font-size: clamp(2rem, 3.8vw, 3.2rem); font-weight: 800; letter-spacing: -0.04em; line-height: 1.1; }
.crumb { display: flex; gap: 8px; color: rgba(255,255,255,0.5); font-size: 13px; margin-bottom: 16px; font-family: var(--font-body); }
.crumb a:hover { color: rgba(255,255,255,0.85); }
.page-hero p { color: rgba(255,255,255,0.78); max-width: 600px; font-size: 1.05rem; line-height: 1.75; }

/* Content pages */
.prose { max-width: 720px; }
.prose h2 { margin-top: 1.5em; font-family: var(--font-display); }
.prose p { color: var(--muted); }

.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.team-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 20px; transition: border-color 0.25s; }
.team-card:hover { border-color: var(--border-strong); }
.team-card h3 { font-size: 1.05rem; font-family: var(--font-body); font-weight: 600; margin-bottom: 3px; }
.team-card .role { color: var(--crimson); font-size: 13px; font-weight: 600; margin-bottom: 8px; font-family: var(--font-body); }
.team-card p { color: var(--muted); font-size: 13.5px; margin: 0; }

/* ============================================================
   FORMS
   ============================================================ */
.form { display: grid; gap: 14px; background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow-sm); }
.form label { display: grid; gap: 5px; font-size: 13px; font-weight: 600; color: var(--navy); font-family: var(--font-body); }
.form input, .form select, .form textarea { border: 1px solid var(--border-strong); border-radius: var(--radius-sm); padding: 11px 14px; background: var(--bg); color: var(--text); font-family: var(--font-body); transition: border-color 0.2s, box-shadow 0.2s; }
.form textarea { min-height: 120px; resize: vertical; }
.form input:focus, .form select:focus, .form textarea:focus { outline: none; border-color: var(--navy-mid); box-shadow: 0 0 0 3px rgba(26, 51, 88, 0.1); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-note { font-size: 13px; color: var(--muted); font-family: var(--font-body); }
.form-success { display: none; background: #ECFDF5; color: #166534; border-radius: var(--radius-sm); padding: 12px 16px; font-weight: 600; font-family: var(--font-body); }
.form-success.is-visible { display: block; }

.contact-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 40px; }
.contact-info { display: grid; gap: 14px; }
.info-block { background: var(--stone); border-radius: var(--radius-sm); padding: 16px 18px; border: 1px solid var(--border); }
.info-block h3 { font-size: 0.95rem; font-family: var(--font-body); font-weight: 600; margin-bottom: 5px; }
.info-block p, .info-block a { color: var(--muted); font-size: 14px; margin: 0; }

.donate-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: start; }
.bank-card { background: var(--navy); color: rgba(255,255,255,0.78); border-radius: var(--radius); padding: 26px; border: 1px solid rgba(255,255,255,0.08); }
.bank-card h3 { color: var(--white); font-family: var(--font-display); margin-bottom: 16px; }
.bank-row { display: flex; justify-content: space-between; gap: 12px; padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,0.07); font-size: 14px; font-family: var(--font-body); }
.bank-row span:last-child { color: var(--white); font-weight: 600; text-align: right; }
.bank-row--highlight {
  background: rgba(201, 147, 58, 0.16);
  border: 1.5px solid var(--gold) !important;
  border-radius: 8px;
  padding: 12px 16px !important;
  margin: 10px 0;
  box-shadow: 0 0 16px rgba(201, 147, 58, 0.22);
  align-items: center;
}
.bank-row--highlight .acc-label {
  color: var(--gold-light);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 12.5px;
  letter-spacing: 0.5px;
}
.bank-row--highlight .acc-val {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.bank-row--highlight .acc-number {
  font-size: 1.35rem;
  font-weight: 800;
  color: #FFE082;
  letter-spacing: 1.5px;
  font-family: 'Courier New', Courier, monospace;
  text-shadow: 0 1px 2px rgba(0,0,0,0.5);
}
.amounts { display: flex; flex-wrap: wrap; gap: 8px; margin: 8px 0 16px; }
.amounts button { border: 1px solid var(--border-strong); background: var(--white); border-radius: var(--radius-sm); padding: 7px 14px; cursor: pointer; font-weight: 600; color: var(--navy); font-family: var(--font-body); transition: all 0.2s; }
.amounts button.is-active { background: var(--navy); color: var(--white); border-color: var(--navy); }

.legal-box { background: var(--stone); border-radius: var(--radius-sm); padding: 20px; margin: 14px 0; border: 1px solid var(--border); }
.legal-box h3 { font-size: 1.05rem; font-family: var(--font-body); font-weight: 600; }
.legal-list { display: grid; gap: 10px; }
.legal-list li { padding-left: 18px; position: relative; color: var(--muted); font-family: var(--font-body); font-size: 14.5px; }
.legal-list li::before { content: ''; position: absolute; left: 0; top: 9px; width: 6px; height: 6px; border-radius: 50%; background: var(--navy); }

/* ============================================================
   ASSOCIATED — MARQUEE
   ============================================================ */
.section--associated { background: var(--stone); padding: 64px 0; overflow: hidden; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.associated-marquee-wrapper {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 36px;
  width: 100%;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
  mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
}
.marquee-row { display: flex; width: max-content; user-select: none; }
.marquee-row:hover .marquee-track { animation-play-state: paused; }
.marquee-track { display: flex; align-items: center; gap: 16px; padding-right: 16px; flex-shrink: 0; will-change: transform; }
.marquee-row--left  .marquee-track { animation: marqueeScrollLeft 38s linear infinite; }
.marquee-row--right .marquee-track { animation: marqueeScrollRight 42s linear infinite; }
@keyframes marqueeScrollLeft  { 0% { transform: translateX(0); }     100% { transform: translateX(-100%); } }
@keyframes marqueeScrollRight { 0% { transform: translateX(-100%); } 100% { transform: translateX(0); } }

.associated-logo-card {
  width: 168px; height: 80px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  flex-shrink: 0;
  transition: box-shadow 0.25s, border-color 0.25s;
}
.associated-logo-card:hover { box-shadow: var(--shadow-sm); border-color: var(--border-strong); transform: none; }
.associated-logo-card img { max-width: 100%; max-height: 100%; width: auto; height: auto; object-fit: contain; pointer-events: none; }

/* ============================================================
   GOVERNANCE / MANAGEMENT
   ============================================================ */
.gov-reg-banner { background: var(--navy-light); border: 1px solid rgba(13,31,60,0.15); border-radius: var(--radius-sm); padding: 14px 20px; margin-bottom: 28px; display: flex; align-items: center; gap: 14px; }
.gov-reg-banner svg { color: var(--navy); flex-shrink: 0; opacity: 0.7; }
.gov-reg-banner p { margin: 0; font-size: 0.94rem; font-weight: 500; color: var(--navy); line-height: 1.55; font-family: var(--font-body); }

.governing-table-wrap { width: 100%; overflow-x: auto; background: var(--white); border-radius: var(--radius-sm); border: 1px solid var(--border); margin-top: 22px; box-shadow: none; }
.governing-table { width: 100%; border-collapse: collapse; text-align: left; min-width: 580px; font-family: var(--font-body); }
.governing-table th { background: var(--navy); color: var(--white); padding: 14px 18px; font-size: 11px; text-transform: uppercase; letter-spacing: 0.08em; font-weight: 700; border-bottom: 2px solid var(--crimson); }
.governing-table td { padding: 14px 18px; border-bottom: 1px solid var(--border); font-size: 14.5px; color: var(--text); vertical-align: middle; }
.governing-table tr:last-child td { border-bottom: none; }
.governing-table tr:hover td { background: var(--warm-white); }
.member-cell { display: flex; flex-direction: column; gap: 2px; }
.member-name { font-weight: 600; color: var(--navy); font-size: 0.98rem; }
.member-sub  { font-size: 12.5px; color: var(--muted); }
.state-pill { display: inline-flex; align-items: center; padding: 3px 10px; background: var(--stone); border-radius: 3px; font-size: 12.5px; font-weight: 600; color: var(--navy); }
.role-badge { display: inline-block; padding: 4px 12px; border-radius: 3px; font-size: 12px; font-weight: 700; letter-spacing: 0.02em; font-family: var(--font-body); }
.role-badge--president  { background: var(--crimson-light); color: var(--crimson-dark); }
.role-badge--legal       { background: var(--navy-light);    color: var(--navy); }
.role-badge--coordinator { background: var(--stone);         color: var(--navy-mid); }
.role-badge--treasurer   { background: var(--gold-light);    color: var(--gold-accent); }
.role-badge--rep         { background: var(--stone);         color: var(--navy); }

/* Management flowchart */
.mgmt-chart-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 36px 28px; box-shadow: var(--shadow-sm); margin-top: 32px; }
.mgmt-top-tier { display: flex; flex-direction: column; align-items: center; gap: 12px; margin-bottom: 32px; }
.mgmt-top-node { background: var(--navy); color: var(--white); padding: 12px 40px; border-radius: var(--radius-sm); font-family: var(--font-display); font-size: 1.15rem; font-weight: 600; border-bottom: 2px solid var(--crimson); text-align: center; box-shadow: none; }
.mgmt-connector-v { width: 1px; height: 18px; background: var(--border-strong); }
.mgmt-sub-node { background: var(--stone); color: var(--navy); padding: 10px 32px; border-radius: var(--radius-sm); font-family: var(--font-body); font-size: 1rem; font-weight: 600; border: 1px solid var(--border); text-align: center; box-shadow: none; }
.mgmt-pillars-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.mgmt-pillar { background: var(--white); border-radius: var(--radius-sm); border: 1px solid var(--border); overflow: hidden; display: flex; flex-direction: column; box-shadow: none; }
.mgmt-pillar-head { padding: 14px 18px; color: var(--white); font-family: var(--font-body); font-weight: 600; font-size: 0.95rem; text-align: center; }
.mgmt-pillar--posh   .mgmt-pillar-head { background: var(--crimson); }
.mgmt-pillar--women  .mgmt-pillar-head { background: var(--navy); }
.mgmt-pillar--child  .mgmt-pillar-head { background: var(--navy-mid); }
.mgmt-pillar-steps { padding: 18px; display: flex; flex-direction: column; gap: 10px; flex-grow: 1; }
.mgmt-step { background: var(--stone); border: 1px solid var(--border); border-radius: var(--radius-xs); padding: 9px 12px; font-size: 13px; font-weight: 600; color: var(--navy); text-align: center; font-family: var(--font-body); transition: border-color 0.2s; box-shadow: none; }
.mgmt-step:hover { border-color: var(--navy); background: var(--stone); transform: none; box-shadow: none; }
.mgmt-step-arrow { text-align: center; color: var(--muted); font-size: 12px; }
.mgmt-crosslinks { margin-top: 28px; padding-top: 22px; border-top: 1px dashed var(--border-strong); display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.mgmt-crosslink-card { background: var(--warm-white); border: 1px solid var(--border-gold); border-radius: var(--radius-sm); padding: 12px 16px; display: flex; align-items: center; gap: 10px; font-size: 13.5px; font-weight: 600; color: var(--navy); font-family: var(--font-body); }
.mgmt-crosslink-card svg { color: var(--gold-accent); flex-shrink: 0; }

/* ============================================================
   SPECIALIZATION CARDS
   ============================================================ */
.spec-hero-box { background: var(--stone); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px; margin-bottom: 32px; }
.spec-card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px; margin-top: 20px; }
.spec-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 22px; transition: box-shadow 0.28s var(--ease), border-color 0.28s; display: flex; flex-direction: column; box-shadow: none; }
.spec-card:hover { box-shadow: var(--shadow); border-color: var(--border-strong); transform: none; }
.spec-badge-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.spec-badge-num { font-size: 10px; font-weight: 800; letter-spacing: 0.08em; padding: 3px 8px; border-radius: 3px; background: var(--stone); color: var(--navy); text-transform: uppercase; font-family: var(--font-body); }
.spec-card h3 { font-family: var(--font-display); font-size: 1.2rem; margin: 0 0 10px; color: var(--navy); font-weight: 600; }
.spec-card p  { font-size: 14px; color: var(--muted); line-height: 1.65; margin-bottom: 14px; }
.spec-list { list-style: none; padding: 0; margin: 0 0 16px; display: flex; flex-direction: column; gap: 7px; }
.spec-list li { position: relative; padding-left: 18px; font-size: 13.5px; color: var(--navy-soft); line-height: 1.55; font-family: var(--font-body); }
.spec-list li::before { content: '✓'; position: absolute; left: 0; top: 0; color: var(--crimson); font-weight: 700; }
.spec-highlight-callout { background: var(--warm-white); border-left: 3px solid var(--gold-accent); border-radius: 0 var(--radius-sm) var(--radius-sm) 0; padding: 14px 18px; margin: 18px 0; font-size: 14px; color: var(--navy); font-family: var(--font-body); }
.spec-highlight-callout strong { color: var(--gold-accent); }

/* ============================================================
   VISION / MISSION / OBJECTIVES
   ============================================================ */
.vmo-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 28px; }
.vmo-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: box-shadow 0.28s var(--ease), border-color 0.28s;
  overflow: hidden;
  box-shadow: none;
}
.vmo-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; }
.vmo-card--vision::before     { background: var(--navy); }
.vmo-card--mission::before    { background: var(--crimson); }
.vmo-card--objectives::before { background: var(--gold-accent); }
.vmo-card:hover { box-shadow: var(--shadow); border-color: var(--border-strong); transform: none; }
.vmo-icon-wrap { width: 44px; height: 44px; border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.vmo-card--vision     .vmo-icon-wrap { background: var(--navy-light);    color: var(--navy); }
.vmo-card--mission    .vmo-icon-wrap { background: var(--crimson-light); color: var(--crimson); }
.vmo-card--objectives .vmo-icon-wrap { background: var(--gold-light);    color: var(--gold-accent); }
.vmo-card h3 { font-family: var(--font-display); font-size: 1.3rem; font-weight: 600; color: var(--navy); margin: 0 0 12px; }
.vmo-card p  { font-size: 14px; color: var(--muted); line-height: 1.72; margin: 0; font-family: var(--font-body); }

/* Flowchart */
.flowchart-container { display: flex; flex-direction: column; gap: 20px; margin-top: 32px; }
.flow-phase { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 24px; transition: border-color 0.25s; box-shadow: none; }
.flow-phase:hover { border-color: var(--border-strong); box-shadow: none; transform: none; }
.flow-phase-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; padding-bottom: 12px; border-bottom: 1px solid var(--border); }
.flow-phase-title { font-family: var(--font-body); font-size: 1rem; font-weight: 700; color: var(--navy); display: flex; align-items: center; gap: 10px; }
.flow-phase-badge { font-size: 10px; font-weight: 800; letter-spacing: 0.06em; padding: 3px 8px; border-radius: 3px; text-transform: uppercase; font-family: var(--font-body); }
.flow-steps-track { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 12px; }
.flow-node { background: var(--stone); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 14px; display: flex; flex-direction: column; gap: 5px; transition: border-color 0.2s; }
.flow-node:hover { border-color: var(--navy); transform: none; box-shadow: none; }
.flow-node-num  { font-size: 11px; font-weight: 700; color: var(--muted); letter-spacing: 0.05em; font-family: var(--font-body); }
.flow-node-text { font-size: 13.5px; font-weight: 700; color: var(--navy); line-height: 1.4; font-family: var(--font-body); }
.flow-node-desc { font-size: 12.5px; color: var(--muted); line-height: 1.45; font-family: var(--font-body); }
.flow-node--highlight { background: var(--crimson-light); border-color: rgba(192,57,43,0.2); }
.flow-node--statutory { background: var(--gold-light); border-color: var(--border-gold); }

/* ============================================================
   REVEAL ANIMATIONS
   ============================================================ */
.reveal { opacity: 0; transform: translateY(16px); animation: none; }
.reveal.is-in { animation: fadeUp 0.7s var(--ease) forwards; }
.reveal-d1 { animation-delay: 0.07s; }
.reveal-d2 { animation-delay: 0.14s; }
.reveal-d3 { animation-delay: 0.21s; }
.reveal-d4 { animation-delay: 0.28s; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: none; }
}

/* ============================================================
   SCROLLBAR
   ============================================================ */
::-webkit-scrollbar          { width: 8px; height: 8px; }
::-webkit-scrollbar-track    { background: var(--stone); }
::-webkit-scrollbar-thumb    { background: #C0C0C0; border-radius: 4px; border: 2px solid var(--stone); }
::-webkit-scrollbar-thumb:hover { background: #A0A0A0; }

::selection { background: rgba(192, 57, 43, 0.12); color: var(--navy); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .nav-toggle { display: block; }
  .header-cta { display: none; }
  .header-inner { position: relative; }
  .nav {
    position: absolute;
    top: 100%; left: 0; right: 0;
    width: 100%;
    background: var(--white);
    border-top: 1px solid var(--border);
    border-bottom: 2px solid var(--crimson);
    box-shadow: var(--shadow-lg);
    flex-direction: column;
    align-items: stretch;
    padding: 14px 18px 22px;
    gap: 4px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 0.25s, transform 0.25s var(--ease), visibility 0.25s;
    z-index: 95;
    max-height: calc(100vh - 100px);
    overflow-y: auto;
  }
  .nav.is-open { opacity: 1; visibility: visible; transform: translateY(0); }
  .nav a { padding: 11px 14px; font-size: 15px; border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: space-between; }
  .nav a:hover, .nav a.is-active { background: var(--stone); color: var(--navy); }
  .nav a::after { display: none; }
  .nav .mobile-donate { display: inline-flex; margin-top: 10px; justify-content: center; color: var(--white); width: 100%; padding: 13px; font-size: 15px; border-radius: var(--radius-sm); }

  .hero-modern-grid {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 0;
    min-height: auto;
    align-items: start;
  }
  .hero-visual-pane {
    order: -1;
    min-height: 400px;
    max-height: 440px;
    border-radius: 0;
    margin: 0;
    padding: 0;
    box-shadow: none;
    -webkit-mask-image: none;
    mask-image: none;
  }
  .hero-visual-pane::before {
    width: 100%;
    height: 35%;
    top: auto;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(255, 255, 255, 0.85) 60%, #FFFFFF 100%);
    z-index: 5;
  }
  .hero-slider-track {
    min-height: 400px;
    height: 100%;
  }
  .hero-slide {
    height: 100%;
  }
  .hero-slide .hero-visual-img {
    min-height: 400px;
    max-height: 440px;
    height: 100%;
  }
  .hero-copy-pane {
    padding: 36px clamp(16px, 4vw, 32px) 48px;
    max-width: 100%;
  }
  .hero--modern {
    min-height: auto;
    padding-top: 0;
  }
  .hero-live-badge { left: 16px; bottom: 18px; max-width: calc(100% - 120px); }
  .hero-slider-dots { bottom: 22px; right: 18px; }

  /* Stats grid on tablet: 3 columns */
  .stats-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
  }

  .focus-grid, .campaign-grid, .stories-grid,
  .involve-grid, .trust-grid, .doc-grid, .poster-grid, .team-grid { grid-template-columns: 1fr 1fr; }
  
  .split, .women-layout, .events-wrap, .contact-grid, .donate-grid { grid-template-columns: 1fr; }
  .split { gap: 36px; }
  .split-media img { height: 360px; }
  .media-chip { left: 14px; }
  .vmo-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }
  .mgmt-pillars-grid { grid-template-columns: 1fr; gap: 16px; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .doc-meta { flex-wrap: wrap; gap: 10px; }
}

@media (max-width: 768px) {
  :root {
    --util-h: auto;
    --header-h: 60px;
  }
  .util-bar {
    height: auto;
    padding: 5px 0;
  }
  .util-bar__inner {
    width: 100%;
    padding: 0 10px;
    gap: 6px;
    flex-wrap: wrap;
    justify-content: center;
  }
  .util-center-portal {
    order: -1;
    width: 100%;
    justify-content: center;
    padding: 1px 0 4px 0;
  }
  .util-contact {
    display: none !important;
  }
  .util-right {
    gap: 6px;
    width: 100%;
    justify-content: center;
    flex-shrink: 0;
  }
  .util-bar .socials {
    display: none !important;
  }
  .lang-switch button {
    padding: 3px 6px;
    font-size: 11px;
  }
  .site-header {
    top: 0;
  }
  .header-inner {
    min-height: var(--header-h);
    padding: 0 12px;
    gap: 8px;
  }
  .brand {
    gap: 8px;
    min-width: 0;
    flex: 1;
  }
  .brand img {
    width: 38px;
    height: 38px;
    flex-shrink: 0;
  }
  .brand-name {
    font-size: 16.5px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .brand-sub {
    display: none !important;
  }
  .nav-toggle {
    width: 38px;
    height: 38px;
    flex-shrink: 0;
  }
  .section { padding: 56px 0; }
  .stats { padding: 42px 0 32px; }
  .page-hero { padding: 52px 0 56px; }

  .hero-visual-pane,
  .hero-slider-track,
  .hero-slide,
  .hero-slide .hero-visual-img {
    min-height: 280px;
    max-height: 330px;
  }
  .hero-live-badge {
    font-size: 11px;
    padding: 7px 14px;
    bottom: 12px;
    left: 12px;
    max-width: calc(100% - 95px);
  }
  .hero-slider-dots {
    bottom: 16px;
    right: 12px;
    gap: 6px;
  }
  .hero-dot {
    width: 6px;
    height: 6px;
  }
  .hero-dot.is-active {
    width: 18px;
  }

  /* Stats grid on small tablet: 2 columns with last card spanning full width */
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .stats-grid .stat-card:last-child {
    grid-column: 1 / -1;
  }
  .stat-card {
    padding: 24px 14px 20px;
  }
  .stat-card .num {
    font-size: clamp(1.9rem, 4.5vw, 2.3rem);
  }
  .stat-card p {
    font-size: 12px;
    white-space: normal;
  }

  .focus-grid, .campaign-grid, .stories-grid,
  .involve-grid, .trust-grid, .doc-grid, .poster-grid, .team-grid,
  .form-row { grid-template-columns: 1fr; }
  .about-facts { grid-template-columns: 1fr; }
  .split { gap: 28px; }
  .split-media img { height: 280px; }
  .women-collage { height: 340px; }
  .media-chip { left: 10px; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 6px; }
  .doc-meta { flex-direction: column; align-items: stretch; gap: 8px; }
  .doc-meta .btn { width: 100%; text-align: center; }
  .bank-row { flex-direction: column; align-items: flex-start; gap: 3px; }
  .bank-row--highlight { align-items: flex-start; gap: 8px; }

  .hero-micro-stats {
    gap: 16px;
    flex-wrap: nowrap;
    justify-content: space-between;
    width: 100%;
  }
  .micro-stat-col {
    flex: 1;
    min-width: 0;
  }
  .micro-stat-num {
    font-size: 1.7rem;
  }
  .micro-stat-num span {
    font-size: 1.15rem;
  }
  .micro-stat-label {
    font-size: 10px;
    max-width: none;
  }

  .mgmt-pillars-grid, .mgmt-crosslinks { grid-template-columns: 1fr; }
  .vmo-grid { grid-template-columns: 1fr; }
  .spec-card-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .section--associated { padding: 40px 0; }
  .associated-logo-card { width: 130px; height: 65px; }
  .marquee-track { gap: 12px; padding-right: 12px; }
  .marquee-row--left  .marquee-track { animation-duration: 28s; }
  .marquee-row--right .marquee-track { animation-duration: 32s; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .video-grid { grid-template-columns: 1fr; gap: 20px; }
  .downloads-grid { grid-template-columns: 1fr; gap: 16px; }
  .download-card { padding: 18px 15px; }
  .download-card-title { font-size: 1rem; line-height: 1.35; }
  .download-card-desc { font-size: 13px; line-height: 1.45; }
  .download-card-footer { flex-wrap: wrap; gap: 10px; margin-top: 14px; padding-top: 12px; }
  .btn-download-action { flex: 1 1 140px; justify-content: center; padding: 8px 12px; font-size: 12px; }
}

@media (max-width: 480px) {
  .hero-title-modern {
    font-size: clamp(1.6rem, 7vw, 2.1rem);
    letter-spacing: -0.035em;
    line-height: 1.18;
    margin-bottom: 16px;
  }
  .hero-title-line1 {
    white-space: normal;
  }
  .hero-lead-modern {
    font-size: 0.92rem;
    line-height: 1.65;
    margin-bottom: 24px;
  }
  .hero-live-badge {
    max-width: calc(100% - 105px);
    padding: 6px 12px;
    font-size: 10.5px;
  }
  .hero-micro-stats {
    gap: 10px;
    margin-bottom: 26px;
  }
  .micro-stat-num {
    font-size: 1.45rem;
  }
  .micro-stat-num span {
    font-size: 1rem;
  }
  .micro-stat-label {
    font-size: 9px;
    margin-top: 4px;
  }
  .btn { width: 100%; justify-content: center; }
  .hero-btn-group {
    flex-direction: column;
    width: 100%;
    gap: 10px;
  }
  .btn-pill-primary, .btn-pill-secondary {
    width: 100%;
    justify-content: center;
    padding: 13px 20px;
    font-size: 14px;
  }

  /* Stats grid on smartphone: clean vertical stack */
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .stats-grid .stat-card:last-child {
    grid-column: auto;
  }
  .stat-card {
    padding: 22px 16px 18px;
  }
  .stat-card .num {
    font-size: 2.1rem;
  }
  .stat-card p {
    font-size: 12.5px;
  }

  .women-collage {
    height: 260px;
    gap: 8px;
  }
  .form {
    padding: 20px 16px;
  }
  .newsletter { flex-direction: column; }
  .util-bar .socials { display: none; }
  .lang-switch button { padding: 6px 10px; font-size: 13px; }
  .filter-tabs { flex-wrap: wrap; justify-content: flex-start; gap: 6px; }
  .filter-btn { font-size: 12px; padding: 6px 12px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* ============================================================
   WELCOME AWARENESS POSTER POPUP
   ============================================================ */
.awareness-popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(8, 17, 34, 0.82);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 9999999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.28s ease, visibility 0.28s;
}
.awareness-popup-overlay.is-active {
  opacity: 1;
  visibility: visible;
}
.awareness-popup-dialog {
  position: relative;
  max-width: min(92vw, 420px);
  max-height: 90vh;
  background: #0D1F3C;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.7), 0 0 0 1px rgba(255, 255, 255, 0.15);
  display: flex;
  flex-direction: column;
}
.awareness-popup-close {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(13, 31, 60, 0.85);
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  color: #FFFFFF;
  font-size: 20px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.18s ease;
  backdrop-filter: blur(4px);
}
.awareness-popup-close:hover {
  background: var(--crimson, #C62828);
  border-color: var(--crimson, #C62828);
  transform: scale(1.08);
}
.awareness-popup-media {
  width: 100%;
  max-height: calc(90vh - 4px);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000;
}
.awareness-popup-img {
  width: 100%;
  height: auto;
  max-height: calc(90vh - 6px);
  object-fit: contain;
  display: block;
}
.awareness-popup-timer-bar {
  height: 3.5px;
  background: #FFE082;
  width: 100%;
  transform-origin: left;
  animation: popupAutoTimer 2s linear forwards;
}
@keyframes popupAutoTimer {
  from { transform: scaleX(1); }
  to { transform: scaleX(0); }
}



/* ============================================================
   OFFICIAL GOVT. SHe-BOX PORTAL TOPSTRIP (BLINKING & CENTERED)
   ============================================================ */
:root {
  --topstrip-h: 34px;
}
.shebox-portal-topstrip {
  background: #060E1A;
  border-bottom: 1px solid rgba(255, 213, 79, 0.4);
  padding: 5px 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  z-index: 85;
}
.shebox-portal-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, rgba(220, 38, 38, 0.35), rgba(201, 147, 58, 0.4));
  border: 1.5px solid #FFD54F;
  color: #FFFDE7 !important;
  padding: 4px 16px;
  border-radius: 20px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.2px;
  text-decoration: none;
  animation: sheboxBlinkGlow 1.8s infinite ease-in-out;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  white-space: nowrap;
  max-width: 100%;
}
.shebox-portal-link:hover {
  transform: scale(1.03);
  background: linear-gradient(135deg, rgba(220, 38, 38, 0.55), rgba(201, 147, 58, 0.6));
  border-color: #FFE082;
  box-shadow: 0 0 20px rgba(255, 213, 79, 0.9);
}
.portal-badge-pulse {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #FF1744;
  box-shadow: 0 0 10px #FF1744;
  display: inline-block;
  flex-shrink: 0;
  animation: portalPulseDot 1s infinite alternate;
}
.portal-text-gov {
  color: rgba(255, 255, 255, 0.85);
  font-size: 11.5px;
  font-weight: 600;
}
.portal-text-portal {
  color: #FFE082;
  font-weight: 800;
  font-size: 12px;
  text-transform: uppercase;
}
.portal-badge-url {
  color: #FFFFFF;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 2px;
  font-size: 12.5px;
}
.portal-arrow {
  font-size: 13px;
  color: #FFD54F;
  font-weight: 800;
}

@keyframes sheboxBlinkGlow {
  0%, 100% {
    box-shadow: 0 0 6px rgba(255, 213, 79, 0.4), inset 0 0 4px rgba(255, 213, 79, 0.25);
    border-color: #FFD54F;
  }
  50% {
    box-shadow: 0 0 22px rgba(255, 23, 68, 0.95), 0 0 32px rgba(255, 213, 79, 0.85);
    border-color: #FF1744;
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.6), rgba(201, 147, 58, 0.6));
  }
}
@keyframes portalPulseDot {
  from { transform: scale(0.8); opacity: 0.7; }
  to { transform: scale(1.4); opacity: 1; }
}

@media (max-width: 900px) {
  .portal-text-gov { display: none !important; }
  .shebox-portal-link { font-size: 11.5px; padding: 3px 10px; gap: 6px; }
  .portal-badge-url { font-size: 11.5px; }
}
@media (max-width: 480px) {
  .portal-text-portal { font-size: 10.5px; }
  .portal-badge-url { font-size: 10.5px; }
  .shebox-portal-link { padding: 2.5px 8px; gap: 5px; }
}

/* ============================================================
   WHATSAPP INTEGRATION (Top bar, Floating Button, Footer)
   ============================================================ */
.util-left {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  align-items: center;
}
.util-whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(37, 211, 102, 0.15);
  border: 1px solid rgba(37, 211, 102, 0.45);
  color: #25D366 !important;
  font-size: 12px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 999px;
  text-decoration: none;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.util-whatsapp-btn:hover {
  background: #25D366;
  color: #ffffff !important;
  border-color: #25D366;
  box-shadow: 0 2px 8px rgba(37, 211, 102, 0.4);
}
.util-whatsapp-btn svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
  flex-shrink: 0;
}

/* Floating WhatsApp button */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 84px;
  width: 48px;
  height: 48px;
  background: #25D366;
  color: #ffffff !important;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.45);
  z-index: 999;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  text-decoration: none;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
  color: #ffffff !important;
}
.whatsapp-float svg {
  width: 26px;
  height: 26px;
  fill: #ffffff;
}

@media (max-width: 768px) {
  .util-whatsapp-btn span {
    display: none;
  }
  .util-whatsapp-btn {
    padding: 3px 6px;
  }
  .whatsapp-float {
    bottom: 20px;
    right: 76px;
    width: 44px;
    height: 44px;
  }
  .whatsapp-float svg {
    width: 24px;
    height: 24px;
  }
}
