/* =============================================================
   NIRJA VIKAS VARDHINI â€” style.css
   Light Theme Â· Clean Â· Modern Â· Full Redesign
   All original content preserved â€” new skin applied
   ============================================================= */
/* ---- ROOT VARIABLES ---- */
:root {


  /* --- NVV Variables (style.css) --- */
  --orange: #1F8A3B;
  --orange-lt: #FFF0E6;
  --orange-md: #15c8a0;
  --gold: #15c8a0;
  --gold-lt: #FEF8EC;
  --green: #2D7A52;
  --green-lt: #E8F6EF;
  --navy: #0E2040;
  --navy-light: #1a3a6a;
  --text: #1C1C2E;
  --muted: #6B7280;
  --line: #E5E7EB;
  --bg: #FAFAF8;
  --white: #FFFFFF;
  --shadow: 0 4px 24px rgba(14, 32, 64, 0.08);
  --shadow-lg: 0 12px 48px rgba(14, 32, 64, 0.14);
  --radius: 16px;
  --radius-lg: 24px;
  --transition: 0.28s ease;
  /* --- Modern Variables (style1.css) --- */
  --primary: #F4A300;
  --primary-dark: #4CAF50;
  --primary-light: #e6faf5;
  --primary-glow: rgba(21, 200, 160, 0.18);
  --accent: #1F8A3B;
  --dark: #0f2027;
  --dark-2: #1a2f3a;
  --dark-3: #243b4a;
  --text-modern: #3d5a69;
  --text-light: #6b8a99;
  --off-white: #f0fdf9;
  --border: #d1f0e8;
  --font-display: 'Cormorant Garamond', serif;
  --font-body: 'Nunito', sans-serif;
  --shadow-sm-modern: 0 2px 12px rgba(21, 200, 160, .12);
  --shadow-md-modern: 0 8px 32px rgba(21, 200, 160, .18);
  --shadow-lg-modern: 0 20px 60px rgba(15, 32, 39, .18);
  --transition-modern: 0.35s cubic-bezier(.4, 0, .2, 1);
}

/* ---- RESET & BASE ---- */
*,
*::before,
/* ---- ROOT VARIABLES ---- */
:root {


  /* --- NVV Branded Palette (Nature & Growth) --- */
  --primary: #F4A300;
  /* Nature Green (Growth) */
  --primary-dark: #4CAF50;
  /* Nature Green (Dark/Hover) */
  --primary-lt: #E8F5E9;
  /* Nature Green (Very Light) */
  --secondary: #4CAF50;
  /* Light Green (Positivity) */
  --accent: #1F8A3B;
  /* Golden Yellow (Care/Support) */
  --accent-hover: #D98E00;
  /* Darker Gold (Hover) */
  --accent-lt: #FFF8E1;
  /* Golden Yellow (Very Light) */

  /* --- UI Colors --- */
  --bg: #F9FAFB;
  /* Soft Background White */
  --header-bg: #FFFFFF;
  /* Header Background */
  --footer-bg: #145A32;
  /* Dark Green Footer */
  --text: #1A1A1A;
  /* Primary Dark Text */
  --muted: #6B7280;
  /* Muted Text */
  --line: #E5E7EB;
  /* Light Gray Border */
  --white: #FFFFFF;
  --black: #000000;

  /* --- Functional Mapping --- */
  --orange: var(--primary);
  --orange-md: var(--primary-dark);
  --orange-lt: var(--primary-lt);
  --gold: var(--accent);
  --gold-lt: var(--accent-lt);
  --green: var(--primary);
  --green-lt: var(--primary-lt);
  --navy: #0E2040;

  /* --- Design System --- */
  --shadow: 0 4px 24px rgba(31, 138, 59, 0.08);
  --shadow-lg: 0 12px 48px rgba(20, 90, 50, 0.14);
  --radius: 16px;
  --radius-lg: 24px;
  --transition: 0.3s cubic-bezier(.4, 0, .2, 1);

  /* Typography */
  --font-display: 'Cormorant Garamond', serif;
  --font-body: 'Nunito', sans-serif;
}

/* ---- RESET & BASE ---- */
*,
*::before,
*::after {


  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {


  scroll-behavior: smooth;
  scroll-padding-top: 150px;
  font-size: 16px;
}

body {


  font-family: 'Nunito', sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
}

img {


  max-width: 100%;
  height: auto;
  display: block;
}

a {


  text-decoration: none;
  transition: color var(--transition);
}

ul {


  list-style: none;
}

/* ---- CUSTOM CURSOR ---- */
.nvv-cursor {


  position: fixed;
  width: 10px;
  height: 10px;
  background: var(--orange);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%, -50%);
  transition: width .2s, height .2s, background .2s;
}

.nvv-cursor-ring {


  position: fixed;
  width: 34px;
  height: 34px;
  border: 1.5px solid var(--orange);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99998;
  transform: translate(-50%, -50%);
  opacity: .45;
  transition: width .3s, height .3s;
}

.nvv-cursor.big {


  width: 18px;
  height: 18px;
}

.nvv-cursor-ring.big {


  width: 52px;
  height: 52px;
}

/* ---- PRELOADER ---- */
.nvv-preloader {


  position: fixed;
  inset: 0;
  z-index: 100000;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 20px;
  transition: opacity .5s ease, visibility .5s ease;
}

.nvv-preloader.hidden {


  opacity: 0;
  visibility: hidden;
}

.nvv-preloader__img {


  animation: loaderPulse 1.2s ease-in-out infinite;
}

@keyframes loaderPulse {

  0%,
  100% {


    transform: scale(1)
  }

  50% {


    transform: scale(1.12)
  }
}

.nvv-preloader__bar {


  width: 160px;
  height: 3px;
  background: var(--line);
  border-radius: 10px;
  overflow: hidden;
}

.nvv-preloader__fill {


  height: 100%;
  background: linear-gradient(90deg, var(--orange), var(--gold));
  border-radius: 10px;
  animation: preloaderBar 1.8s ease infinite;
}

@keyframes preloaderBar {
  0% {


    width: 0%;
    transform: translateX(0);
  }

  50% {


    width: 80%;
    transform: translateX(0);
  }

  100% {


    width: 0%;
    transform: translateX(100%);
  }
}

/* ---- SCROLL TO TOP ---- */
.nvv-scroll-top {


  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9000;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--orange);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  box-shadow: 0 6px 20px rgba(232, 100, 10, .35);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .3s, transform .3s, background .2s;
}

.nvv-scroll-top.visible {


  opacity: 1;
  transform: translateY(0);
}

.nvv-scroll-top:hover {


  background: var(--orange-md);
  color: white;
  transform: translateY(-3px);
}

/* ---- REVEAL ANIMATIONS ---- */
.reveal {


  opacity: 0;
  transform: translateY(36px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal.in {


  opacity: 1;
  transform: translateY(0);
}

/* ---- SHARED COMPONENTS ---- */
.nvv-chip {


  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary-lt);
  color: var(--primary);
  padding: 5px 14px;
  border-radius: 20px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.nvv-chip::before {


  content: '';
  width: 6px;
  height: 6px;
  background: var(--primary);
  border-radius: 50%;
  flex-shrink: 0;
}

.nvv-chip--light {


  background: rgba(255, 255, 255, .15);
  color: white;
}

.nvv-chip--light::before {


  background: white;
}

.nvv-section-title {


  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.9rem, 3.2vw, 2.9rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--navy);
  margin-bottom: 18px;
}

.nvv-section-title em {


  color: var(--primary);
  font-style: italic;
}

.nvv-section-lead {


  font-size: 1rem;
  line-height: 1.85;
  color: var(--muted);
  font-weight: 300;
  margin-bottom: 28px;
}

/* .nvv-section-header    {


  margin-bottom: 52px;
} */

.nvv-divider {


  width: 52px;
  height: 3px;
  background: var(--primary);
  border-radius: 3px;
  margin: 18px 0 24px;
}

/* BUTTONS */
.nvv-btn {


  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 30px;
  border-radius: 32px;
  font-family: 'Nunito', sans-serif;
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  transition: all .25s;
  border: none;
}

.nvv-btn--fill {


  background: var(--primary);
  color: white;
  box-shadow: 0 5px 20px rgba(31, 138, 59, 0.3);
}

.nvv-btn--fill:hover {


  background: var(--primary-dark);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(22, 106, 46, 0.4);
}


.nvv-btn--outline {


  background: transparent;
  color: var(--primary);
  border: 1.5px solid var(--primary);
}

.nvv-btn--outline:hover {


  background: var(--primary-lt);
}



.nvv-nav__item a {


  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 8px 14px;
  border-radius: 8px;
  display: block;
  transition: color .2s, background .2s;
  position: relative;
}

.nvv-nav__item a::after {


  content: '';
  position: absolute;
  bottom: 4px;
  left: 14px;
  right: 14px;
  height: 2px;
  background: var(--orange);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s;
}

.nvv-nav__item a:hover,
.nvv-nav__item.active a {


  color: var(--orange);
}

.nvv-nav__item a:hover::after,
.nvv-nav__item.active a::after {


  transform: scaleX(1);
}


.nvv-drawer__list {


  display: flex;
  flex-direction: column;
  gap: 4px;
}

.nvv-drawer__list a {


  display: block;
  padding: 10px 14px;
  border-radius: 10px;
  font-size: .88rem;
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: .06em;
  transition: background .2s, color .2s;
}

.nvv-drawer__list a:hover {


  background: var(--orange-lt);
  color: var(--orange);
}



/* ===========================================================
   HERO SLIDER
   =========================================================== */
.nvv-hero {


  margin-top: 0;
  /* offset handled by body padding */
  position: relative;
  overflow: hidden;
  padding-top: calc(72px + 37px);
  /* header height */
}

.nvv-hero__swiper {


  position: relative;
}



@keyframes fadeSlideUp {
  from {


    opacity: 0;
    transform: translateY(28px);
  }

  to {


    opacity: 1;
    transform: translateY(0);
  }
}





@keyframes tickerScroll {
  from {


    transform: translateX(0)
  }

  to {


    transform: translateX(-50%)
  }
}



.nvv-program-card {


  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform .3s, box-shadow .3s, border-color .3s;
  position: relative;
}

.nvv-program-card:hover {


  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, .25);
  border-color: rgba(232, 100, 10, .35);
}

.nvv-program-card::after {


  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s;
}

.nvv-program-card:hover::after {


  transform: scaleX(1);
}

/* ===========================================================
   JOIN / CTA
   =========================================================== */
.nvv-join {


  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.nvv-join__overlay {


  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(14, 32, 64, .82) 0%, rgba(14, 32, 64, .6) 100%);
}

.nvv-join .container {


  position: relative;
  z-index: 1;
}

.nvv-join__card {


  background: rgba(255, 255, 255, .07);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  text-align: center;
  transition: transform .3s, background .3s;
}

.nvv-join__card:hover {


  transform: translateY(-6px);
  background: rgba(255, 255, 255, .12);
}

.nvv-join__card-icon {


  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: rgba(232, 100, 10, .25);
  color: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin: 0 auto 24px;
}

.nvv-join__card h2 {


  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: white;
  margin-bottom: 28px;
  line-height: 1.3;
}

.nvv-join__card h2 em {


  color: var(--orange);
  font-style: italic;
}

/* ===========================================================
   THREE BOXES / CAUSES
   =========================================================== */
.nvv-causes {


  padding: 0 0 100px;
  background: var(--bg);
}

.nvv-causes__box {


  padding: 60px 36px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform .3s;
  position: relative;
  overflow: hidden;
}

.nvv-causes__box:hover {


  transform: translateY(-4px);
}

.nvv-causes__box h3 {


  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: white;
}

.nvv-causes__box p {


  font-size: .86rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, .7);
}

/* ===========================================================
   DONATE SECTION
   =========================================================== */
.nvv-donate {


  padding: 100px 0;
  background: white;
}

/* .nvv-donate__left    {


  padding-right: 20px;
} */

/* .nvv-donate__list    {


  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
} */

/* .nvv-donate__list li    {


  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .9rem;
  color: var(--text);
} */

/* .nvv-donate__list li i    {


  color: var(--orange);
} */

/* .nvv-donate__img-wrap    {


  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: inline-block;
  max-width: 80%;
} */

/* .nvv-donate__img-wrap img    {


  border-radius: var(--radius-lg);
} */

/* .nvv-donate__heart    {


  position: absolute;
  bottom: 16px;
  right: 5px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--orange);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  box-shadow: 0 6px 20px rgba(232, 100, 10, .4);
  animation: heartPulse 1.8s ease-in-out infinite;
} */

/* @keyframes heartPulse {


    0%,
100% {
        transform: scale(1)
    }
50% {


        transform: scale(1.12)
    }
}
/* Donate Form */
/* .nvv-donate__form-wrap    {


  background: var(--bg);
  border-radius: var(--radius-lg);
  padding: 40px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
} */

/* .nvv-donate__form-header    {


  margin-bottom: 24px;
} */

/* .nvv-donate__form-header h3    {


  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
} */

/* .nvv-donate__form-header p    {


  font-size: .84rem;
  color: var(--muted);
} */

/* .nvv-donate__amount-row    {


  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: 16px;
} */

.nvv-amt {


  padding: 12px;
  border-radius: 10px;
  border: 1.5px solid var(--line);
  background: white;
  font-family: 'Nunito';
  font-size: .9rem;
  font-weight: 700;
  color: var(--navy);
  transition: all .2s;
  text-align: center;
}

.nvv-amt:hover,
.nvv-amt.active {


  background: var(--orange);
  color: white;
  border-color: var(--orange);
  box-shadow: 0 4px 16px rgba(232, 100, 10, .3);
}

/* .nvv-donate__field    {


  position: relative;
  margin-bottom: 14px;
} */

.nvv-donate__field input,
/* .nvv-donate__field textarea    {


  width: 100%;
  background: white;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  padding: 13px 16px;
  font-family: 'Nunito';
  font-size: .9rem;
  color: var(--text);
  outline: none;
  transition: border-color .2s, background .2s;
  resize: none;
} */

.nvv-donate__field input:focus,
/* .nvv-donate__field textarea:focus    {


  border-color: var(--orange);
  background: var(--orange-lt);
} */

/* .nvv-donate__field--rupee input    {


  padding-left: 42px;
} */

/* .nvv-donate__rupee    {


  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--orange);
} */

/* ===========================================================
   GALLERY
   =========================================================== */
.nvv-gallery {


  padding: 100px 0;
  background: var(--bg);
}

/* .nvv-gallery__header    {


  margin-bottom: 40px;
} */

.nvv-gallery__carousel .owl-stage-outer {


  padding: 20px 0;
}

.nvv-gallery__item {


  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  margin: 0 10px;
  box-shadow: var(--shadow);
}

.nvv-gallery__item img {


  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform .45s ease;
}

.nvv-gallery__item:hover img {


  transform: scale(1.07);
}

/* .nvv-gallery__item-overlay    {


  position: absolute;
  inset: 0;
  background: rgba(14, 32, 64, .5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity .3s;
  color: white;
  font-size: 1.6rem;
} */

/* .nvv-gallery__item:hover .nvv-gallery__item-overlay    {


  opacity: 1;
} */

.nvv-gallery__carousel .owl-dots {


  margin-top: 24px;
}

.nvv-gallery__carousel .owl-dot span {


  width: 8px;
  height: 8px;
  background: var(--line) !important;
  border-radius: 50%;
  transition: all .3s;
  margin: 0 4px;
}

.nvv-gallery__carousel .owl-dot.active span {


  background: var(--orange) !important;
  width: 28px;
  border-radius: 4px;
}

/* ===========================================================
   TESTIMONIALS
   =========================================================== */
/* .nvv-testimonials    {


  position: relative;
  padding: 100px 0;
  overflow: hidden;
} */

/* .nvv-testimonials__bg    {


  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
} */

/* .nvv-testimonials__overlay    {


  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(14, 32, 64, .88) 0%, rgba(14, 32, 64, .72) 100%);
} */

/* .nvv-testimonials .container    {


  position: relative;
  z-index: 1;
} */

/* .nvv-testimonials__inner    {


  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 60px;
  align-items: start;
} */

/* .nvv-testimonials__head    {


  padding-top: 20px;
} */

/* Testimonial Cards */
.nvv-testi__card {


  background: rgba(255, 255, 255, .06);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
  margin: 0 12px;
  transition: transform .3s;
}

.nvv-testi__card:hover {


  transform: translateY(-4px);
}

/* .nvv-testi__quote    {


  color: var(--orange);
  font-size: 1.8rem;
  opacity: .4;
  margin-bottom: 14px;
  line-height: 1;
} */

/* .nvv-testi__text    {


  font-size: .88rem;
  line-height: 1.85;
  color: rgba(255, 255, 255, .75);
  margin-bottom: 24px;
  font-style: italic;
} */

/* .nvv-testi__author    {


  display: flex;
  align-items: center;
  gap: 14px;
} */

/* .nvv-testi__author-img    {


  width: 52px;
  height: 52px;
  border-radius: 50%;
  overflow: hidden;
  border: 2.5px solid var(--orange);
  flex-shrink: 0;
} */

/* .nvv-testi__author-img img    {


  width: 100%;
  height: 100%;
  object-fit: cover;
} */

/* .nvv-testi__author h4    {


  font-weight: 700;
  font-size: .92rem;
  color: white;
  margin-bottom: 3px;
} */

/* .nvv-testi__author span    {


  font-size: .74rem;
  color: var(--orange);
  font-weight: 600;
} */

.nvv-testi-carousel .owl-dots {


  margin-top: 28px;
}

.nvv-testi-carousel .owl-dot span {


  background: rgba(255, 255, 255, .2) !important;
  margin: 0 4px;
  transition: all .3s;
}

.nvv-testi-carousel .owl-dot.active span {


  background: var(--orange) !important;
  width: 28px;
  border-radius: 4px;
}

/* ===========================================================
   HELP THEM / VIDEO CTA
   =========================================================== */
.nvv-help {


  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

/* .nvv-help__overlay    {


  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(14, 32, 64, .84) 0%, rgba(14, 32, 64, .65) 100%);
} */

.nvv-help .container {


  position: relative;
  z-index: 1;
}

/* .nvv-help__top    {


  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 56px;
} */

/* .nvv-help__top-text h2    {


  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 700;
  color: white;
  line-height: 1.25;
} */

/* .nvv-help__top-text h2 em    {


  color: var(--orange);
  font-style: italic;
} */

/* .nvv-help__video-box    {


  text-align: center;
  flex-shrink: 0;
} */

/* .nvv-help__play-btn    {


  display: flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--orange);
  color: white;
  font-size: 1.3rem;
  margin: 0 auto 12px;
  box-shadow: 0 0 0 10px rgba(232, 100, 10, .2), 0 0 0 20px rgba(232, 100, 10, .1);
  animation: playPulse 2.5s ease-in-out infinite;
  transition: transform .25s;
} */

/* .nvv-help__play-btn:hover    {


  transform: scale(1.1);
  color: white;
} */

@keyframes playPulse {

  0%,
  100% {


    box-shadow: 0 0 0 10px rgba(232, 100, 10, .2), 0 0 0 22px rgba(232, 100, 10, .08);
  }

  50% {


    box-shadow: 0 0 0 14px rgba(232, 100, 10, .15), 0 0 0 30px rgba(232, 100, 10, .05);
  }
}

/* .nvv-help__video-box p    {


  color: rgba(255, 255, 255, .65);
  font-size: .82rem;
} */

/* .nvv-help__cards    {


  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
} */

.nvv-help__card {


  background: rgba(255, 255, 255, .07);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--radius-lg);
  padding: 32px;
  text-align: center;
  transition: all .3s;
}

.nvv-help__card:hover {


  background: rgba(255, 255, 255, .13);
  transform: translateY(-5px);
}

/* .nvv-help__card-icon    {


  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: rgba(232, 100, 10, .2);
  color: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin: 0 auto 20px;
} */

.nvv-help__card h3 {


  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: white;
  margin-bottom: 10px;
}

.nvv-help__card p {


  font-size: .85rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, .55);
}

/* ===========================================================
   FOUNDER
   =========================================================== */
.nvv-founder {


  padding: 100px 0;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}

.nvv-founder__decor {


  position: absolute;
  left: -100px;
  bottom: -100px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  /* background: radial-gradient(circle, var(--green-lt) 0%, transparent 70%); */
  pointer-events: none;
}

.nvv-founder__inner {


  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 72px;
  align-items: center;
}

.nvv-founder__img-col {


  position: relative;
}

.nvv-founder__img-wrap {


  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.nvv-founder__img-wrap img {
height: 470px;
  width: 100%;
  object-fit: cover;
}

.nvv-founder__tag {


  position: absolute;
  bottom: 20px;
  left: 20px;
}

.nvv-founder__social {


  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}

.nvv-founder__social a {


  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--bg);
  border: 1px solid var(--line);
  color: var(--muted);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .2s;
}

.nvv-founder__social a:hover {


  background: var(--orange);
  color: white;
  border-color: var(--orange);
}

.nvv-founder__content {
  margin-top: -140px;
  padding-top: 0;
}

.nvv-founder__name {


  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.7rem, 2.8vw, 2.6rem);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.nvv-founder__body {


  font-size: .92rem;
  line-height: 1.85;
  color: var(--muted);
  margin-bottom: 24px;
}

.nvv-founder__quote {


  background: var(--orange-lt);
  border-left: 4px solid var(--orange);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 18px 22px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.nvv-founder__quote i {


  color: var(--orange);
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 3px;
}

.nvv-founder__quote em {


  font-size: .92rem;
  color: var(--navy);
  line-height: 1.75;
}

/* ===========================================================
   FOOTER
   =========================================================== */
/* .nvv-footer    {


  position: relative;
  overflow: hidden;
  padding-top: 80px;
} */

/* .nvv-footer__bg    {


  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
} */

/* .nvv-footer__overlay    {


  position: absolute;
  inset: 0;
  background: rgba(8, 16, 32, 0.94);
} */

/* .nvv-footer .container    {


  position: relative;
  z-index: 1;
} */

/* .nvv-footer__top    {


  padding-bottom: 56px;
} */

/* .nvv-footer__col    {


  padding-right: 20px;
} */

/* .nvv-footer__col-title    {


  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .35);
  margin-bottom: 20px;
} */

/* .nvv-footer__col>p    {


  font-size: .84rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, .4);
  margin-bottom: 20px;
} */

/* .nvv-footer__donate    {


  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--orange);
  color: white;
  padding: 9px 20px;
  border-radius: 24px;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  transition: all .25s;
  box-shadow: 0 4px 14px rgba(232, 100, 10, .3);
} */

/* .nvv-footer__donate:hover    {


  background: var(--orange-md);
  color: white;
  transform: translateY(-2px);
} */

/* .nvv-footer__links    {


  display: flex;
  flex-direction: column;
  gap: 8px;
} */

/* .nvv-footer__links a    {


  font-size: .84rem;
  color: rgba(255, 255, 255, .45);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color .2s, gap .2s;
  padding: 2px 0;
} */

/* .nvv-footer__links a::before    {


  content: 'â†’';
  font-size: .7rem;
  opacity: 0;
  transition: opacity .2s, transform .2s;
  transform: translateX(-6px);
} */

/* .nvv-footer__links a:hover    {


  color: var(--orange);
  gap: 10px;
} */

/* .nvv-footer__links a:hover::before    {


  opacity: 1;
  transform: translateX(0);
} */

/* .nvv-footer__contact-list    {


  display: flex;
  flex-direction: column;
  gap: 18px;
} */

/* .nvv-footer__contact-list li    {


  display: flex;
  gap: 14px;
  align-items: flex-start;
} */

/* .nvv-footer__contact-list i    {


  color: var(--orange);
  margin-top: 3px;
  flex-shrink: 0;
} */

/* .nvv-footer__contact-list small    {


  display: block;
  font-size: .68rem;
  color: rgba(255, 255, 255, .3);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 3px;
} */

/* .nvv-footer__contact-list a    {


  display: block;
  font-size: .83rem;
  color: rgba(255, 255, 255, .55);
  transition: color .2s;
} */

/* .nvv-footer__contact-list a:hover    {


  color: var(--orange);
} */

/* .nvv-footer__contact-list span    {


  font-size: .83rem;
  color: rgba(255, 255, 255, .45);
  line-height: 1.6;
} */

/* .nvv-footer__newsletter    {


  display: flex;
  gap: 0;
  border-radius: 12px;
  overflow: hidden;
  border: 1.5px solid rgba(255, 255, 255, .1);
  margin-top: 16px;
} */

/* .nvv-footer__newsletter input    {


  flex: 1;
  min-width: 0;
  width: 100%;
  background: rgba(255, 255, 255, .06);
  border: none;
  padding: 12px 16px;
  font-family: 'Nunito';
  font-size: .86rem;
  color: white;
  outline: none;
} */

/* .nvv-footer__newsletter input::placeholder    {


  color: rgba(255, 255, 255, .3);
} */

/* .nvv-footer__newsletter button    {


  flex-shrink: 0;
  background: var(--orange);
  color: white;
  border: none;
  padding: 12px 16px;
  font-size: .82rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  transition: background .2s;
} */

/* .nvv-footer__newsletter button:hover    {


  background: var(--orange-md);
} */

/* .nvv-footer__bottom    {


  border-top: 1px solid rgba(255, 255, 255, .07);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
} */

/* .nvv-footer__bottom-logo img    {


  height: 40px;
  filter: brightness(0) invert(1) opacity(.6);
} */

/* .nvv-footer__copyright    {


  font-size: .76rem;
  color: rgba(255, 255, 255, .25);
} */

/* .nvv-footer__social    {


  display: flex;
  gap: 8px;
} */

/* .nvv-footer__social a    {


  width: 36px;
  height: 36px;
  border-radius: 9px;
  background: rgba(255, 255, 255, .07);
  color: rgba(255, 255, 255, .4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .9rem;
  transition: all .2s;
} */

/* .nvv-footer__social a:hover    {


  background: var(--orange);
  color: white;
} */

/* ===========================================================
   RESPONSIVE
   =========================================================== */
@media (max-width: 1100px) {
  /*   .nvv-programs__grid    {


    grid-template-columns: repeat(2, 1fr);
  } */

  .nvv-founder__inner {


    grid-template-columns: 300px 1fr;
    gap: 48px;
  }

  /*   .nvv-testimonials__inner    {


    grid-template-columns: 1fr;
  } */
}

@media (max-width: 900px) {
  /*   .nvv-header__topbar    {


    padding: 6px 24px;
  } */

  /*   .nvv-header__main    {


    padding: 0 24px;
  } */

  /*   .nvv-header__topbar-left span:last-child    {


    display: none;
  } */

  .nvv-nav,
  /*   .nvv-header__phone    {


    display: none;
  } */

  /*   .nvv-hamburger    {


    display: flex;
  } */

  /*   .nvv-hero__content    {


    padding: 90px 24px 80px;
  } */

  /*   .nvv-welcome__content    {


    padding: 32px 0 0;
  } */

  /*   .nvv-welcome .row    {


    flex-direction: column;
  } */

  /*   .nvv-welcome__img-main img    {


    height: 280px;
  } */

  /*   .nvv-welcome__img-secondary    {


    width: 140px;
  } */

  /*   .nvv-programs__grid    {


    grid-template-columns: 1fr;
  } */

  /*   .nvv-join__grid    {


    grid-template-columns: 1fr;
  } */

  /*   .nvv-causes__grid    {


    grid-template-columns: 1fr 1fr;
  } */

  /*   .nvv-causes__intro    {


    grid-column: span 2;
  } */

  .nvv-donate .row {


    flex-direction: column;
  }

  /*   .nvv-donate__left    {


    padding-right: 0;
    margin-bottom: 32px;
  } */

  .nvv-founder__inner {


    grid-template-columns: 1fr;
  }

  /*   .nvv-help__top    {


    flex-direction: column;
    align-items: flex-start;
  } */

  /*   .nvv-help__cards    {


    grid-template-columns: 1fr;
  } */

  .nvv-hero {


    padding-top: 72px;
  }

  /*   .nvv-footer__bottom    {


    flex-direction: column;
    text-align: center;
  } */

  footer .row>div {


    margin-bottom: 36px;
  }

  /*   .nvv-header__topbar-sep    {


    display: none;
  } */

  /*   .nvv-header__topbar-left .sep-text    {


    display: none;
  } */

  .section {


    padding: 72px 24px;
  }

  .nvv-welcome,
  .nvv-programs,
  .nvv-join,
  .nvv-donate,
  .nvv-gallery,
  .nvv-testimonials,
  .nvv-help,
  .nvv-founder {


    padding-left: 0;
    padding-right: 0;
  }

  /*   .nvv-donate__amount-row    {


    grid-template-columns: repeat(2, 1fr);
  } */
}

@media (max-width: 600px) {
  /*   .nvv-causes__grid    {


    grid-template-columns: 1fr;
  } */

  /*   .nvv-causes__intro    {


    grid-column: span 1;
  } */

  /*   .nvv-hero__title    {


    font-size: 2.4rem;
  } */

  /*   .nvv-welcome__years-badge    {


    left: 0;
  } */

  /*   .nvv-testimonials__inner    {


    gap: 32px;
  } */
}

/* ================================================================
   MODERN COMPONENTS (merged from style1.css)
   ================================================================ */

.container {


  max-width: 1220px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ======================== PRELOADER ======================== */
.preloader {


  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity .6s, visibility .6s;
}

.preloader.hidden {


  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader__inner {


  text-align: center;
}

.preloader__logo {


  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: .15em;
  margin-bottom: 20px;
  animation: pulse 1.5s ease-in-out infinite;
}

.preloader__bar {


  width: 200px;
  height: 4px;
  background: rgba(255, 255, 255, .1);
  border-radius: 99px;
  overflow: hidden;
  margin: 0 auto;
}

.preloader__fill {


  height: 100%;
  width: 0;
  background: var(--primary);
  border-radius: 99px;
  animation: fillBar 1.8s ease-out forwards;
}

@keyframes fillBar {
  to {


    width: 100%;
  }
}

@keyframes pulse {

  0%,
  100% {


    opacity: 1;
  }

  50% {


    opacity: .5;
  }
}

/* ======================== SCROLL TOP ======================== */
.scroll-top {


  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 46px;
  height: 46px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  box-shadow: var(--shadow-md);
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}

.scroll-top.visible {


  opacity: 1;
  pointer-events: all;
}

.scroll-top:hover {


  background: var(--primary-dark);
  transform: translateY(-3px);
}

/* ======================== REVEAL ANIMATION ======================== */
.reveal {


  opacity: 0;
  transform: translateY(32px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal.in-view {


  opacity: 1;
  transform: none;
}

.reveal-up {


  animation: revealUp .8s ease forwards;
}

@keyframes revealUp {
  from {


    opacity: 0;
    transform: translateY(30px);
  }

  to {


    opacity: 1;
    transform: none;
  }
}

/* ======================== UTILITY ======================== */
.chip {


  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--primary-light);
  color: var(--primary-dark);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 99px;
  border: 1.5px solid var(--border);
}

.chip--light {


  background: rgba(255, 255, 255, .15);
  color: var(--white);
  border-color: rgba(255, 255, 255, .3);
}

.divider {


  width: 54px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--primary-dark));
  border-radius: 99px;
  margin: 18px 0 24px;
}

.section-title {


  font-family: var(--font-display);
  font-size: clamp(1.85rem, 4vw, 2.75rem);
  font-weight: 700;
  color: var(--dark);
  line-height: 1.2;
  margin-top: 12px;
}

.section-title em {


  font-style: italic;
  color: var(--primary);
}

.section-lead {


  font-size: 1.05rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 24px;
}

.section-header {


  text-align: center;
  max-width: 680px;
  margin: 0 auto 56px;
}

.section-header .section-lead {


  margin: 16px auto 0;
}

/* ======================== BUTTONS ======================== */
.btn {


  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  font-size: .92rem;
  font-weight: 700;
  border-radius: 8px;
  border: 2px solid transparent;
  transition: var(--transition);
  white-space: nowrap;
}

.btn--fill {


  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}

.btn--fill:hover {


  background: var(--accent);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn--ghost {


  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, .6);
}

.btn--ghost:hover {


  background: rgba(255, 255, 255, .15);
  border-color: var(--white);
}

.btn--outline {


  background: transparent;
  color: var(--black);
  border-color: var(--accent);
}

.btn--outline:hover {


  background: var(--accent);
  color: var(--white);
  transform: translateY(-2px);
}

.btn--donate {


  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  border-color: transparent;
  box-shadow: 0 4px 16px rgba(21, 200, 160, .35);
}

.btn--donate:hover {


  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(21, 200, 160, .45);
}

.btn--full {


  width: 100%;
  justify-content: center;
}

/* ======================== ACCESSIBILITY BAR ======================== */
.accessibility-bar {


  background: linear-gradient(135deg, #6b46c1, #553c9a);
  padding: 6px 0;
  font-size: .75rem;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
  max-height: 50px;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease, border 0.3s ease, opacity 0.3s ease;
}

.accessibility-bar__inner {


  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.accessibility-bar__left {


  display: flex;
  align-items: center;
  gap: 8px;
}

.accessibility-btn {


  background: none;
  border: none;
  color: rgba(255, 255, 255, .85);
  font-size: .75rem;
  transition: color .2s;
  font-family: var(--font-body);
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.accessibility-btn i {


  font-size: .65rem;
}

.accessibility-btn:hover {


  color: var(--primary);
  text-decoration: underline;
}

.accessibility-sep {


  color: rgba(255, 255, 255, .3);
  font-size: .7rem;
  user-select: none;
}

.search-bar {


  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, .15);
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 20px;
  padding: 3px 12px;
  max-width: 220px;
  transition: all .3s;
}

.search-bar:focus-within {


  background: rgba(255, 255, 255, .25);
  border-color: rgba(255, 255, 255, .4);
}

.search-input {


  background: none;
  border: none;
  color: #fff;
  font-size: .78rem;
  padding: 4px 8px;
  width: 140px;
  outline: none;
  font-family: var(--font-body);
}

.search-input::placeholder {


  color: rgba(255, 255, 255, .6);
}

.search-btn {


  background: none;
  border: none;
  color: rgba(255, 255, 255, .8);
  padding: 4px;
  transition: color .2s;
  font-size: .8rem;
}

.search-btn:hover {


  color: var(--primary);
}

.accessibility-bar__right {


  display: flex;
  align-items: center;
  gap: 6px;
}

.contrast-btn {


  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .25);
  color: rgba(255, 255, 255, .85);
  width: 28px;
  height: 28px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: all .25s;
  position: relative;
  font-family: var(--font-body);
}

.contrast-btn sup {


  font-size: .45rem;
  position: absolute;
  top: 2px;
  right: 3px;
}

.contrast-btn:hover,
.contrast-btn--active {


  background: rgba(251, 191, 36, .25);
  border-color: #15c8a0;
  color: var(--primary);
}

/* ======================== HEADER ======================== */
.header {


  position: sticky;
  top: 0;
  z-index: 900;
  min-height: 100px;
  height: auto;
}

/* ===== TIER 2: Brand Header Band ===== */
.header__brand {


  background: var(--white);
  padding: 14px 0;
  border-bottom: 2px solid var(--border);
  position: relative;
  transition: padding 0.3s ease;
}

.header__brand::after {


  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-dark), var(--primary), var(--accent), var(--primary-dark));
}

.header__brand-inner {


  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

/* Left Logo Block */
.header__brand-logo {


  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
  transition: opacity .3s;
}

.header__brand-logo:hover {


  opacity: .85;
}

.header__brand-logo-img img {


  height: 62px;
  width: auto;
  object-fit: contain;
  transition: height 0.3s ease;
}

.header__logo-fallback {


  width: 62px;
  height: 62px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
}

.header__logo-abbr {


  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--white);
}

.header__brand-text {


  display: flex;
  flex-direction: column;
  gap: 1px;
}

.header__brand-name-mr {


  font-size: 1.35rem;
  font-weight: 700;
  color: var(--primary-dark);
  line-height: 1.2;
}

.header__brand-name-en {


  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.2;
}

.header__brand-tagline {


  font-size: .68rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-top: 2px;
}

/* Right Emblem Block */
.header__brand-right {


  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.header__brand-emblem {


  display: flex;
  align-items: center;
}

.header__brand-emblem-icon {


  width: 56px;
  height: 56px;
  /* background: linear-gradient(135deg, var(--primary), var(--primary-dark)); */
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: #fff;
  box-shadow: 0 4px 16px var(--primary-glow);
  transition: width 0.3s ease, height 0.3s ease, font-size 0.3s ease;
}

.header__brand-dept {


  display: flex;
  flex-direction: column;
  text-align: right;
}

.header__brand-dept-mr {


  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary-dark);
  line-height: 1.25;
}

.header__brand-dept-en {


  font-size: .82rem;
  font-weight: 600;
  color: #6b7280;
  line-height: 1.3;
}

/* ===== TIER 3: Primary Gradient Nav ===== */
.header__main {


  /* background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%); */
   background: var(--primary);
  border-bottom: 3px solid rgba(0, 0, 0, .1);
  box-shadow: 0 4px 20px var(--primary-glow);
  position: relative;
  height: 52px;
}

.header__main::before {


  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(255, 255, 255, .15);
}

.header__main-inner {


  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0;
  padding-bottom: 0;
  gap: 12px;
}

/* Nav */
.nav__list {


  display: flex;
  align-items: center;
  gap: 0;
}

.nav__item {


  position: relative;
}

.nav__item>a {


  display: flex;
  align-items: center;
  gap: 6px;
  padding: 14px 16px;
  font-size: .84rem;
  font-weight: 700;
  color: rgba(255, 255, 255, .92);
  transition: var(--transition);
  position: relative;
  white-space: nowrap;
  border-left: 1px solid rgba(255, 255, 255, .08);
}

.nav__item:first-child>a {


  border-left: none;
}

.nav__item>a i {


  font-size: .72rem;
}

.nav__caret {


  font-size: .6rem !important;
  margin-left: 2px;
  transition: transform .3s;
}

.nav__item:hover .nav__caret {


  transform: rotate(180deg);
}

.nav__item>a::after {


  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .3s ease;
  border-radius: 99px 99px 0 0;
}

.nav__item>a:hover,
.nav__item.active>a {


  color: #fff;
  background: rgba(255, 255, 255, .12);
}

.nav__item>a:hover::after,
.nav__item.active>a::after {


  transform: scaleX(1);
}

/* Dropdown */
.nav__dropdown {


  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: #fff;
  border-radius: 0 0 var(--radius) var(--radius);
  box-shadow: 0 12px 40px rgba(0, 0, 0, .15);
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  transition: all .3s ease;
  overflow: hidden;
  border-top: 3px solid var(--primary);
}

.nav__item--dropdown:hover .nav__dropdown {


  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav__dropdown li a {


  display: block;
  padding: 11px 20px;
  font-size: .84rem;
  font-weight: 600;
  color: var(--dark);
  transition: all .2s;
  border-bottom: 1px solid #f3f4f6;
}

.nav__dropdown li:last-child a {


  border-bottom: none;
}

.nav__dropdown li a:hover {


  background: var(--primary-light);
  color: var(--primary-dark);
  padding-left: 26px;
}

.header__actions {


  display: flex;
  align-items: center;
  gap: 12px;
}

/* Hamburger */
.hamburger {


  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px;
  width: 40px;
}

.hamburger span {


  display: block;
  width: 100%;
  height: 2.5px;
  background: #fff;
  border-radius: 99px;
  transition: var(--transition);
}

.hamburger.open span:nth-child(1) {


  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.open span:nth-child(2) {


  opacity: 0;
}

.hamburger.open span:nth-child(3) {


  transform: rotate(-45deg) translate(5px, -5px);
}

/* ===== TIER 4: Sub-Navigation Strip ===== */
.header__subnav {


  background: linear-gradient(90deg, #f5f3ff, #ede9fe, #f5f3ff);
  border-bottom: 1px solid #e2d6f5;
  padding: 6px 0;
  font-size: .8rem;
  max-height: 50px;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease, border 0.3s ease, opacity 0.3s ease;
}

.header__subnav-inner {


  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.header__subnav-links {


  display: flex;
  align-items: center;
  gap: 4px;
}

.header__subnav-links>a {


  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 14px;
  color: #5b21b6;
  font-weight: 700;
  font-size: .78rem;
  border-radius: 6px;
  transition: all .2s;
  position: relative;
}

.header__subnav-links>a:hover {


  background: #ede9fe;
  color: #4c1d95;
}

.header__subnav-links>a i {


  font-size: .72rem;
}

.subnav-badge {


  display: inline-block;
  background: linear-gradient(135deg, #ef4444, #dc2626);
  color: #fff;
  font-size: .55rem;
  font-weight: 800;
  padding: 1px 5px;
  border-radius: 4px;
  letter-spacing: .06em;
  line-height: 1.4;
  vertical-align: super;
  animation: badgePulse 1.5s ease-in-out infinite;
}

@keyframes badgePulse {

  0%,
  100% {


    transform: scale(1);
  }

  50% {


    transform: scale(1.12);
  }
}

.header__subnav-contact {


  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .76rem;
}

.header__subnav-contact>a {


  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: #6b7280;
  transition: color .2s;
}

.header__subnav-contact>a:hover {


  color: #6d28d9;
}

.header__subnav-contact>a i {


  color: #7c3aed;
  font-size: .7rem;
}

.header__subnav-social {


  display: flex;
  align-items: center;
  gap: 6px;
}

.header__subnav-social a {


  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ede9fe;
  color: #7c3aed;
  font-size: .7rem;
  transition: all .2s;
}

.header__subnav-social a:hover {


  background: #7c3aed;
  color: #fff;
  transform: translateY(-1px);
}

/* === Header Scrolled State === */
.header.scrolled .accessibility-bar {


  max-height: 0;
  padding: 0;
  border-bottom-color: transparent;
  opacity: 0;
}

.header.scrolled .header__brand {


  padding: 8px 0;
}

.header.scrolled .header__brand-logo-img img {


  height: 44px;
}

.header.scrolled .header__brand-emblem-icon {


  width: 40px;
  height: 40px;
  font-size: 1rem;
}

.header.scrolled .header__subnav {


  max-height: 0;
  padding: 0;
  border-bottom-color: transparent;
  opacity: 0;
}

/* Mobile Drawer */
.drawer__overlay {


  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .5);
  z-index: 1098;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}

.drawer__panel {


  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(320px, 90vw);
  background: var(--white);
  z-index: 1099;
  transform: translateX(100%);
  transition: transform .4s cubic-bezier(.4, 0, .2, 1);
  overflow-y: auto;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.drawer.open .drawer__overlay {


  opacity: 1;
  pointer-events: all;
}

.drawer.open .drawer__panel {


  transform: none;
}

.drawer__close {


  align-self: flex-end;
  width: 36px;
  height: 36px;
  background: var(--primary-light);
  border: none;
  border-radius: 50%;
  color: var(--primary-dark);
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.drawer__close:hover {


  background: var(--primary);
  color: var(--white);
}

.drawer__logo {


  display: flex;
  align-items: center;
  gap: 10px;
}

.drawer__logo-abbr {


  width: 44px;
  height: 44px;
  background: var(--primary);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
}

.drawer__logo-name {


  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark);
  display: block;
}

.drawer__logo-tagline {


  font-size: .7rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: .05em;
  display: block;
}

.drawer__list {


  display: flex;
  flex-direction: column;
  gap: 4px;
}

.drawer__list li a {


  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: var(--radius);
  font-weight: 600;
  color: var(--dark);
  transition: var(--transition);
}

.drawer__list li a:hover {


  background: var(--primary-light);
  color: var(--primary-dark);
}

.drawer__list li a i {


  width: 20px;
  color: var(--primary);
}

.drawer__donate {


  width: 100%;
  justify-content: center;
}

.drawer__contact {


  display: flex;
  flex-direction: column;
  gap: 8px;
  border-top: 1px solid var(--border);
  padding-top: 16px;
}

.drawer__contact a {


  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .85rem;
  color: var(--text);
  transition: var(--transition);
}

.drawer__contact a:hover {


  color: var(--primary);
}

.drawer__contact i {


  color: var(--primary);
  width: 18px;
}

/* ======================== HERO ======================== */
.hero {


  position: relative;
  height: 90vh;
  min-height: 560px;
  overflow: hidden;
}

.hero__slides {


  position: absolute;
  inset: 0;
}

.hero__slide {


  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity .9s ease;
}

.hero__slide.active {


  opacity: 1;
}

/* .hero__background-video    {


  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
} */

.hero__overlay {


  position: absolute;
  inset: 0;
  /* background: linear-gradient(120deg, rgba(15, 32, 39, .82) 0%, rgba(15, 32, 39, .45) 60%, rgba(21, 200, 160, .15) 100%); */
}

.hero__content {


  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 24px;
  max-width: 780px;
}

.hero__badge {


  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(21, 200, 160, .2);
  color: var(--primary);
  border: 1.5px solid rgba(21, 200, 160, .4);
  padding: 7px 18px;
  border-radius: 99px;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 20px;
  backdrop-filter: blur(8px);
}

.hero__title {


  font-family: var(--font-display);
  font-size: clamp(2.4rem, 7vw, 4.8rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 18px;
}

.hero__title em {


  font-style: italic;
  color: var(--primary);
  display: inline-block;
}

.hero__marathi {


  font-family: var(--font-display);
  font-size: clamp(.95rem, 2.5vw, 1.2rem);
  color: rgba(255, 255, 255, .75);
  margin-bottom: 32px;
  line-height: 1.6;
  font-style: italic;
}

.hero__actions {


  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* Hero Controls */
.hero__controls {


  position: absolute;
  bottom: 65px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 16px;
}

.hero__btn {


  width: 42px;
  height: 42px;
  background: rgba(255, 255, 255, .18);
  border: 1.5px solid rgba(255, 255, 255, .4);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(8px);
  transition: var(--transition);
  font-size: .9rem;
}

.hero__btn:hover {


  background: var(--primary);
  border-color: var(--primary);
}

.hero__dots {


  display: flex;
  gap: 8px;
}

.hero__dot {


  width: 8px;
  height: 8px;
  background: rgba(255, 255, 255, .4);
  border-radius: 99px;
  transition: var(--transition);
}

.hero__dot.active {


  background: var(--primary);
  width: 22px;
}

.hero__wave {


  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 60px;
  z-index: 11;
  overflow: hidden;
  line-height: 0;
}

.hero__wave svg.wave-svg {


  display: block;
  width: 100%;
  height: 100%;
}

.news-bar {


  display: flex;
  position: relative;
  z-index: 20;
}

.news-bar__label {


  background: var(--primary);
  color: var(--white);
  padding: 10px 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-width: 220px;
  text-align: center;
  flex-shrink: 0;
}

.news-bar__label strong {


  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
  line-height: 1.1;
  text-transform: uppercase;
}

.news-bar__label span {


  font-size: 0.8rem;
  font-weight: 600;
  opacity: 0.9;
  margin-top: 2px;
}

.news-bar__marquee {


  background: #0ea882;
  flex-grow: 1;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 0 15px;
}

.news-bar__track {


  display: flex;
  gap: 40px;
  white-space: nowrap;
  animation: newsScroll 30s linear infinite;
  align-items: center;
}

.news-bar__track a {


  color: var(--white);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
}

.news-bar__track a:hover {


  color: #fff;
}

.news-bar__track a span {


  color: #ffd700;
  font-weight: 700;
  font-size: 0.85rem;
  text-decoration: underline;
}

.news-bar__track a i {


  font-size: 0.85rem;
  opacity: 0.85;
}

.news-bar__controls {


  background: var(--primary);
  display: flex;
  align-items: center;
  padding: 0 15px;
  gap: 8px;
}

.news-bar__btn {


  background: rgba(255, 255, 255, 0.25);
  border: none;
  color: var(--white);
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  transition: background 0.3s;
}

.news-bar__btn:hover {


  background: rgba(255, 255, 255, 0.4);
}

@keyframes newsScroll {
  from {


    transform: translateX(0);
  }

  to {


    transform: translateX(calc(-50% - 20px));
  }
}

.news-bar__marquee:hover .news-bar__track {


  animation-play-state: paused;
}

/* ======================== STATS BAR ======================== */
.stats-bar {


  background: var(--dark);
  padding: 28px 0;
  position: relative;
}

.stats-bar::before {


  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--primary-dark), var(--accent), var(--primary));
}

.stats-bar__inner {


  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.stats-bar__item {


  flex: 1;
  min-width: 180px;
  text-align: center;
  padding: 16px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.stats-bar__num {


  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
}

.stats-bar__suffix {


  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary);
}

.stats-bar__lbl {


  font-size: .78rem;
  font-weight: 700;
  color: rgba(255, 255, 255, .55);
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-top: 4px;
}

.stats-bar__divider {


  width: 1px;
  height: 50px;
  background: rgba(255, 255, 255, .12);
}

/* ======================== WELCOME ======================== */
.welcome {


  padding: 100px 0;
  background: var(--white);
  overflow: hidden;
  position: relative;
}

.welcome::before {


  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 380px;
  height: 380px;
  /* background: radial-gradient(circle, var(--primary-glow) 0%, transparent 70%); */
  border-radius: 50%;
  pointer-events: none;
}

.welcome__grid {


  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

/* Welcome Visual */
.welcome__visual {


  position: relative;
}

.welcome__img-main {


  border-radius: var(--radius-lg);
  overflow: hidden;
  /* box-shadow: var(--shadow-lg); */
  aspect-ratio: 4/3;
}

.welcome__img-main--logo {


  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
}

.welcome__img-main--logo img {


  object-fit: contain !important;
  width: auto !important;
  height: auto !important;
  max-width: 100%;
  max-height: 100%;
}

.welcome__img-main img {


  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}

.welcome__img-main:hover img {


  transform: scale(1.04);
}

/* .welcome__img-secondary    {


  position: absolute;
  bottom: 0;
  right: -20px;
  width: 44%;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 4px solid var(--white);
  aspect-ratio: 1;
} */

/* .welcome__img-secondary img    {


  width: 100%;
  height: 100%;
  object-fit: cover;
} */

/* .welcome__badge    {


  position: absolute;
  top: 30px;
  left: -20px;
  background: var(--primary);
  color: var(--white);
  border-radius: var(--radius);
  padding: 18px 20px;
  text-align: center;
  box-shadow: var(--shadow-md);
  line-height: 1.2;
} */

/* .welcome__badge-num    {


  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
} */

/* .welcome__badge-lbl    {


  display: block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  opacity: .85;
} */

/* Welcome Content */
/* .welcome__cards    {


  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 28px 0 32px;
} */

.welcome__card {


  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 22px;
  transition: var(--transition);
}

.welcome__card:hover {


  border-color: var(--primary);
  box-shadow: var(--shadow-sm);
  transform: translateX(4px);
}

.welcome__card-icon {


  width: 46px;
  height: 46px;
  background: var(--primary-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.15rem;
  flex-shrink: 0;
}

/* .welcome__card-body h3    {


  font-size: 1rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 4px;
} */

/* .welcome__card-body p    {


  font-size: .87rem;
  color: var(--text-light);
  line-height: 1.6;
  margin: 0;
} */

/* ======================== PROGRAMS ======================== */
.programs {


  padding: 100px 0;
  background: var(--white);
  position: relative;
  overflow: hidden;
}

/* .programs__bg-pattern    {


  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .03;
  background-image: repeating-linear-gradient(45deg, var(--primary) 0px, var(--primary) 1px, transparent 1px, transparent 40px);
} */

/* .programs__grid    {


  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
} */

.program-card {


  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1.5px solid var(--border);
  transition: var(--transition);
  position: relative;
}

.program-card:hover {


  border-color: var(--primary);
  box-shadow: var(--shadow-md);
  transform: translateY(-6px);
}

/* .program-card__img    {


  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
} */

/* .program-card__img img    {


  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
} */

/* .program-card:hover .program-card__img img    {


  transform: scale(1.06);
} */

/* .program-card__tag    {


  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--primary);
  color: var(--white);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 99px;
} */

/* .program-card__body    {


  padding: 22px 24px 24px;
} */

/* .program-card__body h3    {


  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
} */

/* .program-card__body p    {


  font-size: .87rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 18px;
} */

/* .program-card__link    {


  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--primary);
  font-size: .85rem;
  font-weight: 800;
  transition: var(--transition);
} */

/* .program-card__link:hover    {


  gap: 10px;
} */

/* ======================== CTA BANNER ======================== */
.cta {


  padding: 80px 0;
  background-size: cover;
  background-position: center;
  position: relative;
}

.cta__overlay {


  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15, 32, 39, .92) 0%, rgba(14, 168, 130, .7) 100%);
}

.cta__inner {


  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
}

.cta__card {


  text-align: center;
  padding: 40px 32px;
}

.cta__card-icon {


  width: 68px;
  height: 68px;
  background: rgba(21, 200, 160, .25);
  border: 2px solid rgba(21, 200, 160, .4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--primary);
  margin: 0 auto 20px;
}

.cta__card h2 {


  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 24px;
}

.cta__card h2 em {


  font-style: italic;
  color: var(--primary);
}

.cta__divider {


  width: 1px;
  height: 160px;
  background: rgba(255, 255, 255, .2);
  margin: 0 auto;
}

/* ======================== CAUSES ======================== */
.causes {


  padding: 100px 0;
  background: var(--off-white);
}

.causes__grid {


  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 0;
}

.causes__box {


  border-radius: var(--radius-lg);
  padding: 40px 32px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}

.causes__box::before {


  content: '';
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: var(--transition);
  border-radius: var(--radius-lg);
}

.causes__box:hover {


  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.causes__box--1 {


  background: #fff5e6;
}

.causes__box--1::before {


  background: linear-gradient(135deg, #fff5e6, #ffe4a0);
}

.causes__box--2 {


  background: var(--primary-light);
}

.causes__box--2::before {


  background: linear-gradient(135deg, var(--primary-light), #a0f0de);
}

.causes__box--3 {


  background: #fce8f0;
}

.causes__box--3::before {


  background: linear-gradient(135deg, #fce8f0, #f9bcd3);
}

.causes__box:hover::before {


  opacity: 1;
}

.causes__box>* {


  position: relative;
  z-index: 1;
}

.causes__box-icon {


  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  margin: 0 auto 20px;
}

.causes__box--1 .causes__box-icon {


  background: rgba(245, 158, 11, .15);
  color: var(--accent);
}

.causes__box--2 .causes__box-icon {


  background: rgba(21, 200, 160, .15);
  color: var(--primary-dark);
}

.causes__box--3 .causes__box-icon {


  background: rgba(220, 38, 127, .12);
  color: #c0255e;
}

.causes__box h3 {


  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 12px;
}

.causes__box p {


  font-size: .88rem;
  color: var(--text-light);
  margin-bottom: 24px;
  line-height: 1.7;
}

.causes__donate {


  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--primary);
  color: var(--white);
  padding: 10px 22px;
  border-radius: 8px;
  font-size: .85rem;
  font-weight: 700;
  transition: var(--transition);
}

.causes__donate:hover {


  background: var(--primary-dark);
  transform: translateY(-2px);
}

/* ======================== DONATE SECTION ======================== */
.donate-section {


  padding: 100px 0;
  background: var(--white);
}

.donate-section__grid {


  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}

.donate-section__list {


  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 36px;
}

.donate-section__list li {


  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .92rem;
  color: var(--text);
  font-weight: 600;
}

.donate-section__list li i {


  color: var(--primary);
  font-size: 1rem;
}

.donate-section__img-wrap {


  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.donate-section__img-wrap img {


  width: 100%;
  object-fit: cover;
}

.donate-section__heart {


  position: absolute;
  top: 18px;
  right: 18px;
  width: 46px;
  height: 46px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  animation: heartbeat 1.5s ease-in-out infinite;
}

@keyframes heartbeat {

  0%,
  100% {


    transform: scale(1);
  }

  50% {


    transform: scale(1.15);
  }
}

/* Donate Form */
.donate-section__form-wrap {


  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  position: sticky;
  top: 130px;
}

.donate-section__form-header {


  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  padding: 28px 32px;
}

.donate-section__form-header h3 {


  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}

.donate-section__form-header p {


  color: rgba(255, 255, 255, .8);
  font-size: .88rem;
  margin: 0;
}

.donate-form {


  padding: 28px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.donate-form__amounts {


  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.donate-form__amt {


  background: var(--primary-light);
  color: var(--primary-dark);
  border: 2px solid var(--border);
  border-radius: 8px;
  padding: 10px 6px;
  font-size: .82rem;
  font-weight: 800;
  transition: var(--transition);
}

.donate-form__amt:hover,
.donate-form__amt.active {


  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

.donate-form__field {


  position: relative;
}

.donate-form__field input,
.donate-form__field textarea {


  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-size: .9rem;
  color: var(--dark);
  background: var(--off-white);
  transition: var(--transition);
  outline: none;
}

.donate-form__field input:focus,
.donate-form__field textarea:focus {


  border-color: var(--primary);
  background: var(--white);
  box-shadow: 0 0 0 3px var(--primary-glow);
}

.donate-form__field textarea {


  resize: vertical;
  min-height: 80px;
}

.donate-form__field--rupee input {


  padding-left: 36px;
}

.donate-form__rupee {


  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  font-weight: 800;
  color: var(--primary-dark);
}

.donate-form__row {


  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

/* ======================== GALLERY SECTION ======================== */
.gallery-section {


  padding: 100px 0 60px;
  background: var(--white);
}

.gallery-track {


  overflow: hidden;
  margin: 40px 0;
  cursor: grab;
}

.gallery-track:active {


  cursor: grabbing;
}

.gallery-track__inner {


  display: flex;
  gap: 20px;
  padding: 10px 24px;
  animation: galleryScroll 22s linear infinite;
  will-change: transform;
}

.gallery-track:hover .gallery-track__inner {


  animation-play-state: paused;
}

.gallery-item {


  flex-shrink: 0;
  width: 320px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  aspect-ratio: 4/3;
}

.gallery-item:hover {


  transform: scale(1.03);
  box-shadow: var(--shadow-md);
}

.gallery-item img {


  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* .gallery-item__overlay {


  position: absolute;
  inset: 0;
  background: rgba(21, 200, 160, .7);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--white);
  opacity: 0;
  transition: var(--transition);
} */

.gallery-item:hover .gallery-item__overlay {


  opacity: 1;
}

@keyframes galleryScroll {
  from {
    transform: translateX(0);
  }
  25% {
    transform: translateX(calc(-320px * 1 - 20px * 1));
  }
  50% {
    transform: translateX(calc(-320px * 2 - 20px * 2));
  }
  75% {
    transform: translateX(calc(-320px * 3 - 20px * 3));
  }
  to {
    transform: translateX(calc(-320px * 5 - 20px * 5));
  }
}

.gallery-section__footer {


  text-align: center;
  padding-top: 16px;
}

/* ======================== TESTIMONIALS ======================== */
.testimonials {


  padding: 100px 0;
  background-size: cover;
  background-position: center;
  position: relative;
}

.testimonials__overlay {


  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15, 32, 39, .93) 0%, rgba(14, 168, 130, .6) 100%);
}

.testimonials__inner {


  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 64px;
  align-items: center;
}

.testimonials__head {


  color: rgba(255, 255, 255, .75);
}

.testimonials__head p {


  font-size: .92rem;
  line-height: 1.8;
  margin-top: 16px;
}

.testi-slider {


  position: relative;
}

.testi-slides {


  position: relative;
  min-height: 300px;
}

.testi-slide {


  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .6s ease;
  pointer-events: none;
}

.testi-slide.active {


  opacity: 1;
  pointer-events: all;
  position: relative;
}

.testi-card {


  background: rgba(255, 255, 255, .07);
  border: 1.5px solid rgba(255, 255, 255, .15);
  border-radius: var(--radius-lg);
  padding: 36px 40px;
  backdrop-filter: blur(12px);
  position: relative;
}

.testi-card::before {


  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--primary-dark));
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.testi-card__quote {


  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 16px;
  opacity: .8;
}

.testi-card p {


  color: rgba(255, 255, 255, .85);
  font-size: .95rem;
  line-height: 1.8;
  margin-bottom: 28px;
}

.testi-card__author {


  display: flex;
  align-items: center;
  gap: 14px;
}

.testi-card__img {


  width: 56px;
  height: 56px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--primary);
  flex-shrink: 0;
}

.testi-card__img img {


  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testi-card__author h4 {


  font-size: 1rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 2px;
}

.testi-card__author span {


  font-size: .8rem;
  color: var(--black);
  font-weight: 600;
}

.testi-controls {


  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 24px;
}

.testi-btn {


  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, .12);
  border: 1.5px solid rgba(255, 255, 255, .25);
  color: var(--white);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.testi-btn:hover {


  background: var(--primary);
  border-color: var(--primary);
}

.testi-dots {


  display: flex;
  gap: 6px;
}

.testi-dot {


  width: 8px;
  height: 8px;
  background: rgba(255, 255, 255, .3);
  border-radius: 99px;
  cursor: pointer;
  transition: var(--transition);
}

.testi-dot.active {


  background: var(--primary);
  width: 20px;
}

/* ======================== GET INVOLVED ======================== */
.get-involved {


  padding: 90px 0;
  background-size: cover;
  background-position: center;
  position: relative;
}

.get-involved__overlay {


  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15, 32, 39, .9) 0%, rgba(15, 32, 39, .75) 100%);
}

.get-involved__top {


  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 56px;
  flex-wrap: wrap;
}

.get-involved__text h2 {


  font-family: var(--font-display);
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 700;
  color: var(--white);
  margin-top: 12px;
  line-height: 1.2;
}

.get-involved__text h2 em {


  font-style: italic;
  color: var(--primary);
}

.get-involved__play {


  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-size: .85rem;
  font-weight: 700;
  transition: var(--transition);
}

.get-involved__play:hover {


  color: var(--accent-hover);
}

.get-involved__play-btn {


  width: 72px;
  height: 72px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--white);
  box-shadow: 0 0 0 12px rgba(21, 200, 160, .2), 0 0 0 24px rgba(21, 200, 160, .1);
  transition: var(--transition);
}

.get-involved__play:hover .get-involved__play-btn {


  background: var(--accent-hover);
  transform: scale(1.08);
}

.get-involved__cards {


  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.get-involved__card {


  background: rgba(255, 255, 255, .07);
  border: 1.5px solid rgba(255, 255, 255, .13);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  text-align: center;
  backdrop-filter: blur(10px);
  transition: var(--transition);
}

.get-involved__card:hover {


  background: rgba(21, 200, 160, .15);
  border-color: rgba(21, 200, 160, .4);
  transform: translateY(-6px);
}

.get-involved__card-icon {


  width: 60px;
  height: 60px;
  background: rgba(21, 200, 160, .2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--primary);
  margin: 0 auto 18px;
}

.get-involved__card h3 {


  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}

.get-involved__card p {


  font-size: .85rem;
  color: rgba(255, 255, 255, .65);
  line-height: 1.7;
  margin-bottom: 20px;
}

.get-involved__link {


  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--primary);
  font-size: .85rem;
  font-weight: 800;
  transition: var(--transition);
}

.get-involved__link:hover {


  gap: 10px;
}

/* ======================== FOUNDER ======================== */
.founder {


  padding: 100px 0;
  background: var(--off-white);
  position: relative;
  overflow: hidden;
}

.founder__decor {


  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--primary-glow) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.founder__grid {


  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 72px;
  align-items: center;
}

.founder__img-col {


  position: relative;
}

.founder__img-wrap {


  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.founder__img-wrap img {


  width: 100%;
  object-fit: cover;
}

.founder__img-badge {


  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
}

.founder__name {


  font-family: var(--font-display);
  font-size: clamp(1.7rem, 4vw, 2.6rem);
  font-weight: 700;
  color: var(--dark);
  margin-top: 12px;
  line-height: 1.2;
}

.founder__name em {


  font-style: italic;
  color: var(--primary);
}

.founder__body {


  font-size: .9rem;
  color: var(--text-light);
  line-height: 1.85;
  margin-bottom: 24px;
}

.founder__quote {


  background: var(--primary-light);
  border-left: 4px solid var(--primary);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 20px 24px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 28px;
}

.founder__quote i {


  color: var(--primary);
  font-size: 1.2rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.founder__quote em {


  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--dark);
  line-height: 1.6;
}

.founder__social {


  display: flex;
  gap: 10px;
}

.founder__social a {


  width: 38px;
  height: 38px;
  background: var(--primary-light);
  border: 1.5px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-dark);
  font-size: .9rem;
  transition: var(--transition);
}

.founder__social a:hover {


  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
  transform: translateY(-2px);
}

/* ======================== FOOTER ======================== */
.footer {


  position: relative;
  background-size: cover;
  background-position: center;
  padding: 80px 0 0;
}

.footer__overlay {


  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(10, 20, 28, .97) 0%, rgba(15, 40, 50, .95) 100%);
}

.footer>.container {


  position: relative;
  z-index: 1;
}

.footer__top {


  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.footer__logo {


  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}

.footer__logo img {


  height: 44px;
  width: auto;
  object-fit: contain;
}

.footer__logo-abbr {


  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--primary);
}

.footer__col p {


  font-size: .87rem;
  color: var(--white);
  line-height: 1.8;
  margin-bottom: 24px;
}

.footer__col-title {


  font-size: .82rem;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid rgba(21, 200, 160, .2);
}

.footer__links {


  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer__links li a {


  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .87rem;
  color: var(--white);
  transition: var(--transition);
}

.footer__links li a:hover {


  color: var(--primary);
  padding-left: 4px;
}

.footer__links li a i {


  font-size: .65rem;
}

.footer__contact {


  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer__contact li {


  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: .85rem;
}

.footer__contact li i {


  color: var(--primary);
  margin-top: 3px;
  flex-shrink: 0;
}

.footer__contact li div {


  display: flex;
  flex-direction: column;
  gap: 2px;
}

.footer__contact small {


  color: var(--white);
  font-size: .73rem;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.footer__contact a,
.footer__contact span {


  color: var(--white);
  font-size: .85rem;
  transition: var(--transition);
}

.footer__contact a:hover {


  color: var(--primary);
}

.footer__newsletter {


  display: flex;
  gap: 0;
  background: rgba(255, 255, 255, .07);
  border: 1.5px solid rgba(255, 255, 255, .12);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 24px;
}

.footer__newsletter input {


  flex: 1;
  background: none;
  border: none;
  padding: 12px 16px;
  font-size: .88rem;
  color: var(--white);
  outline: none;
}

.footer__newsletter input::placeholder {


  color: rgba(255, 255, 255, .35);
}

.footer__newsletter button {


  background: var(--primary);
  border: none;
  padding: 12px 16px;
  color: var(--white);
  cursor: pointer;
  font-size: 1rem;
  transition: var(--transition);
}

.footer__newsletter button:hover {


  background: var(--primary-dark);
}

.footer__social {


  display: flex;
  gap: 8px;
}

.footer__social a {


  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, .07);
  border: 1.5px solid rgba(255, 255, 255, .1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, .5);
  font-size: .85rem;
  transition: var(--transition);
}

.footer__social a:hover {


  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

.footer__donate {


  display: inline-flex;
  padding: 11px 22px;
  font-size: .85rem;
}

.footer__bottom {


  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  padding: 22px 0;
  font-size: .82rem;
  color: rgba(255, 255, 255, .35);
}

/* ======================== RESPONSIVE ======================== */
@media (max-width: 1080px) {
  /*   .programs__grid    {


    grid-template-columns: repeat(2, 1fr);
  } */

  .footer__top {


    grid-template-columns: repeat(2, 1fr);
  }

  .welcome__grid {


    gap: 48px;
  }

  .founder__grid {


    grid-template-columns: 340px 1fr;
    gap: 48px;
  }

  .nav__item>a {


    padding: 14px 12px;
    font-size: .8rem;
  }

  .header__brand-name-mr {


    font-size: 1.15rem;
  }

  .header__brand-name-en {


    font-size: 1rem;
  }

  .header__brand-dept-mr {


    font-size: .95rem;
  }

  .header__subnav-contact {


    display: none;
  }
}

@media (max-width: 900px) {

  .nav,
  .header__actions .btn--donate {


    display: none;
  }

  .hamburger {


    display: flex;
  }

  .header__brand-right {


    display: none;
  }

  .header__subnav {


    display: none;
  }

  .accessibility-bar__left {


    display: none;
  }

  .accessibility-bar__right {


    width: 100%;
    justify-content: center;
  }

  .welcome__grid {


    grid-template-columns: 1fr;
  }

  .welcome__visual {


    padding: 0 0 60px 0;
  }

  /*   .welcome__badge    {


    left: 0;
  } */

  .donate-section__grid {


    grid-template-columns: 1fr;
  }

  .testimonials__inner {


    grid-template-columns: 1fr;
    gap: 40px;
  }

  .founder__grid {


    grid-template-columns: 1fr;
  }

  .founder__img-col {


    max-width: 420px;
    margin: 0 auto;
  }

  .cta__inner {


    grid-template-columns: 1fr;
    text-align: center;
  }

  .cta__divider {


    width: 80%;
    height: 1px;
  }

  .get-involved__cards {


    grid-template-columns: 1fr;
  }

  .stats-bar__inner {


    flex-wrap: wrap;
  }

  .stats-bar__divider {


    display: none;
  }
}

@media (max-width: 680px) {
  /*   .programs__grid    {


    grid-template-columns: 1fr;
  } */

  .causes__grid {


    grid-template-columns: 1fr;
  }

  .footer__top {


    grid-template-columns: 1fr;
  }

  .hero__content {


    padding: 60px 20px;
  }

  .hero {


    height: auto;
    min-height: 80vh;
  }

  .accessibility-bar {


    display: none;
  }

  .header__brand {


    padding: 10px 0;
  }

  .header__brand-logo-img img {


    height: 44px;
  }

  .header__brand-name-mr {


    font-size: 1rem;
  }

  .header__brand-name-en {


    font-size: .88rem;
  }

  .header__brand-tagline {


    font-size: .6rem;
  }

  .donate-form__row {


    grid-template-columns: 1fr;
  }

  .donate-form__amounts {


    grid-template-columns: repeat(2, 1fr);
  }

  .footer__bottom {


    justify-content: center;
    text-align: center;
  }

  /*   .welcome__img-secondary    {


    width: 36%;
    right: 0;
  } */

  /*   .welcome__badge    {


    position: static;
    margin-bottom: 16px;
    display: inline-flex;
  } */

  .testi-card {


    padding: 24px 20px;
  }

  .get-involved__top {


    flex-direction: column;
    align-items: flex-start;
  }
}

/* ======================== HIGH CONTRAST MODE ======================== */
body.high-contrast {


  background: #000 !important;
  color: #fff !important;
}

body.high-contrast .header__brand {


  background: #000 !important;
  border-color: #fbbf24 !important;
}

body.high-contrast .header__brand::after {


  background: #fbbf24 !important;
}

body.high-contrast .header__brand-name-mr,
body.high-contrast .header__brand-name-en {


  color: #fff !important;
}

body.high-contrast .header__brand-tagline {


  color: #fbbf24 !important;
}

body.high-contrast .header__brand-dept-mr {


  color: #fbbf24 !important;
}

body.high-contrast .header__brand-dept-en {


  color: #ccc !important;
}

body.high-contrast .header__main {


  background: #1a1a2e !important;
  border-color: #fbbf24 !important;
}

body.high-contrast .header__subnav {


  background: #111 !important;
  border-color: #333 !important;
}

body.high-contrast .header__subnav-links>a {


  color: #fbbf24 !important;
}

body.high-contrast .header__subnav-contact>a {


  color: #ccc !important;
}

body.high-contrast .welcome,
body.high-contrast .programs,
body.high-contrast .causes,
body.high-contrast .donate-section,
body.high-contrast .gallery-section,
body.high-contrast .founder {


  background: #111 !important;
}

body.high-contrast .section-title {


  color: #fff !important;
}

body.high-contrast .section-title em {


  color: #fbbf24 !important;
}

body.high-contrast .section-lead {


  color: #ccc !important;
}

body.high-contrast .chip {


  background: #222 !important;
  color: #fbbf24 !important;
  border-color: #444 !important;
}

body.high-contrast .welcome__card,
body.high-contrast .program-card {


  background: #1a1a2e !important;
  border-color: #333 !important;
}

body.high-contrast .welcome__card-body h3,
/* body.high-contrast .program-card__body h3    {


  color: #fff !important;
} */

body.high-contrast .welcome__card-body p,
/* body.high-contrast .program-card__body p    {


  color: #aaa !important;
} */

body.high-contrast .founder__name {


  color: #fff !important;
}

body.high-contrast .founder__body {


  color: #ccc !important;
}

body.high-contrast .founder__quote {


  background: #1a1a2e !important;
}

/* ======================== STORY TABS ======================== */
.story-container {


  text-align: center;
  font-family: inherit;
  padding: 10px 0;
  width: 100%;
}

.story-title {


  font-size: 2.2rem;
  font-weight: 500;
  color: #333;
  margin-bottom: 20px;
}

/* .story-divider    {


  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #d3208b, #8b3d99);
  margin: 0 auto 30px;
} */

.story-tabs-nav {


  display: flex;
  justify-content: center;
  gap: 40px;
  border-bottom: 1px solid #f0f0f0;
  margin-bottom: 30px;
}

.story-tab-btn {


  background: none;
  border: none;
  font-size: 1.2rem;
  font-weight: 500;
  color: #555;
  padding: 10px 20px;
  cursor: pointer;
  position: relative;
  transition: all 0.3s;
}

.story-tab-btn.active {


  color: #d4a017;
}

.story-tab-btn::after {


  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 2px;
  background: transparent;
  transition: background 0.3s;
}

.story-tab-btn.active::after {


  background: #a966d5;
}

.story-tabs-content {


  text-align: center;
}

.story-tab-pane {


  display: none;
  animation: fadeIn 0.5s;
}

.story-tab-pane.active {


  display: block;
}

.story-subtitle {


  font-size: 1.1rem;
  font-weight: 700;
  color: #888;
  margin-bottom: 15px;
}

.story-text {


  font-size: 1.2rem;
  color: #666;
  line-height: 1.6;
  margin-bottom: 25px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* .story-btn    {


  display: inline-block;
  padding: 10px 30px;
  border: 1px solid #ddd;
  border-radius: 30px;
  color: #444;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
  transition: all 0.3s;
} */

/* .story-btn:hover    {


  background: #f9f9f9;
  border-color: #ccc;
} */

@keyframes fadeIn {
  from {


    opacity: 0;
    transform: translateY(10px);
  }

  to {


    opacity: 1;
    transform: translateY(0);
  }
}

/* ======================== PROGRAMS ALT DESIGN ======================== */
.programs-alt {


  padding: 80px 0 100px;
  background: var(--white);
  position: relative;
  /* margin-top: 50px; */
}

.programs-alt__top-notch {


  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 40px;
  background: var(--white);
  border-radius: 100px 100px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 6px;
}

.programs-alt__top-notch i {


  color: var(--primary);
  font-size: 1.2rem;
}

.programs-alt__title {


  color: var(--dark);
  margin-bottom: 24px;
}

.programs-alt__title em {


  font-style: italic;
  color: var(--primary);
}

.programs-alt__divider {


  width: 50px;
  height: 3px;
  background: var(--accent);
  /* Matches site accent */
  margin: 0 auto 24px;
}

.programs-alt__lead {


  color: var(--text-light);
}

.programs-alt__grid {


  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 30px;
}

.program-alt-card {


  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.program-alt-card__icon {


  width: 280px;
  height: 200px;
  margin: 0 auto 20px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  border-radius: 20px;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.program-alt-card__icon img {


  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

.program-alt-card h3 {


  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 10px;
}

.programs-alt__tag {


  display: inline-block;
  background: var(--primary-light);
  color: var(--primary-dark);
  padding: 2px 10px;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.program-alt-card p {


  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}

.programs-alt__link {


  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--primary);
  font-weight: 800;
  font-size: 0.85rem;
  transition: var(--transition);
}

.programs-alt__link:hover {


  gap: 10px;
}

@media (max-width: 991px) {
  .programs-alt__grid {


    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .programs-alt__grid {


    grid-template-columns: 1fr;
  }
}

/* ======================== BOARD ALT DESIGN ======================== */
.board-alt {


  padding: 80px 0 100px;
  background: var(--white);
  position: relative;
  margin-top: 50px;
  color: var(--text);
}

.board-alt__top-notch {


  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 40px;
  background: var(--white);
  border-radius: 100px 100px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 6px;
}

.board-alt__top-notch i {


  color: var(--primary);
  font-size: 1.2rem;
}

.board-alt .section-title {


  color: var(--dark);
}

.board-alt__divider-main {


  width: 50px;
  height: 3px;
  background: var(--accent);
  margin: 15px auto 40px;
}

.board-alt__grid {


  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 50px 30px;
  max-width: 1100px;
  margin: 0 auto;
}

.board-alt-card {


  width: 200px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.board-alt-card__img-wrap {


  width: 130px;
  height: 130px;
  border-radius: 50%;
  border: 4px solid var(--primary);
  overflow: hidden;
  position: relative;
  margin-bottom: 20px;
  box-shadow: var(--shadow-sm);
}

.board-alt-card__img-wrap img {


  width: 100%;
  height: 120%;
  object-fit: cover;
}

.board-alt-card h3 {


  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 12px;
  line-height: 1.25;
}

.board-alt-card__line {


  width: 30px;
  height: 1px;
  background: rgba(0, 0, 0, 0.1);
  margin: 0 auto 12px;
}

.board-alt-card__role {


  font-size: 0.85rem;
  color: var(--text-light);
  font-weight: 600;
  line-height: 1.4;
}

@media (max-width: 991px) {
  .board-alt-card {


    width: 250px;
  }
}

/* ======================== IMPACT RING ======================== */
.impact-ring-section {


  padding: 40px 0 60px;
  background: var(--white);
  overflow: hidden;
}

.impact-ring-wrapper {


  position: relative;
  max-width: 330px;
  height: 330px;
  margin: 0 auto;
}

.impact-ring {


  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 1px dashed var(--primary);
  position: relative;
  transform-origin: center;
  animation: spinRing 30s linear infinite;
}

@keyframes spinRing {
  0% {


    transform: rotate(0deg);
  }

  100% {


    transform: rotate(360deg);
  }
}

.ring-item i {


  animation: spinIcon 30s linear infinite;
}

@keyframes spinIcon {
  0% {


    transform: rotate(0deg);
  }

  100% {


    transform: rotate(-360deg);
  }
}

.impact-ring-wrapper:hover .impact-ring,
.impact-ring-wrapper:hover .ring-item i {


  animation-play-state: paused;
}

/* Base styles for the outer icons */
.ring-item {


  position: absolute;
  top: 50%;
  left: 50%;
  width: 70px;
  height: 70px;
  margin: -35px 0 0 -35px;
  background: var(--white);
  border: 2px solid var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--primary);
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.06);
  z-index: 2;
}

.ring-item:nth-child(1) {


  top: 0%;
  left: 50%;
}

.ring-item:nth-child(2) {


  top: 25%;
  left: 93.3%;
}

.ring-item:nth-child(3) {


  top: 75%;
  left: 93.3%;
}

.ring-item:nth-child(4) {


  top: 100%;
  left: 50%;
}

.ring-item:nth-child(5) {


  top: 75%;
  left: 6.7%;
}

.ring-item:nth-child(6) {


  top: 25%;
  left: 6.7%;
}

.ring-item {


  transform: scale(1);
}

.ring-item:hover,
.ring-item.active {


  background: var(--primary);
  color: var(--white);
  transform: scale(1.15);
  box-shadow: 0px 8px 25px rgba(21, 200, 160, 0.4);
}

.ring-center {


  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 250px;
  text-align: center;
  transition: opacity 0.2s ease;
  z-index: 1;
}

.ring-center h3 {


  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 12px;
  line-height: 1.25;
}

.ring-center p {


  color: var(--text-light);
  line-height: 1.6;
  font-size: 0.95rem;
  margin: 0;
}

@media (max-width: 768px) {
  .impact-ring-wrapper {


    max-width: 350px;
    height: 350px;
  }

  .ring-item {


    width: 60px;
    height: 60px;
    margin: -30px 0 0 -30px;
    font-size: 1.25rem;
  }

  .ring-center {


    width: 220px;
  }

  .ring-center h3 {


    font-size: 1.3rem;
  }
}

@media (max-width: 480px) {
  .impact-ring-wrapper {


    max-width: 280px;
    height: 280px;
  }

  .ring-item {


    width: 45px;
    height: 45px;
    margin: -22.5px 0 0 -22.5px;
    font-size: 1rem;
    border-width: 1px;
  }

  .ring-center {


    width: 170px;
  }

  .ring-center h3 {


    font-size: 1.1rem;
  }

  .ring-center p {


    font-size: 0.8rem;
  }
}

/* ===============================================================
   UTILITY CLASSES (Missing Bootstrap fallbacks)
   =============================================================== */
.text-center { text-align: center !important; }
.mb-5 { margin-bottom: 3rem !important; }
.pt-4 { padding-top: 1.5rem !important; }