/* ============================================================
   UDAY SANSTHA — Main Theme CSS
   Color Palette from Logo:
   Saffron/Orange  #F5A623 | Green #4A7C2E | Brown #3D2B1F
   Beige #FAF6F0 | White #FFFFFF
============================================================ */

/* ── Variables ──────────────────────────────────────────── */
:root {
  --primary:          #F5A623;
  --primary-dark:     #D4881A;
  --primary-light:    #FFF3E0;
  --secondary:        #4A7C2E;
  --secondary-dark:   #3A6023;
  --secondary-light:  #E8F5E3;
  --brown:            #3D2B1F;
  --brown-light:      #6B4C3B;
  --beige:            #FAF6F0;
  --beige-dark:       #F0E8DC;
  --beige-mid:        #EDE0D0;
  --white:            #FFFFFF;
  --text:             #000000;
  --text-muted:       #000000;
  --border:           #E8DDD2;
  --shadow-sm:        0 2px 12px rgba(61,43,31,0.08);
  --shadow:           0 4px 24px rgba(61,43,31,0.13);
  --shadow-lg:        0 8px 40px rgba(61,43,31,0.20);
  --shadow-hover:     0 12px 48px rgba(61,43,31,0.25);
  --radius:           12px;
  --radius-lg:        20px;
  --radius-xl:        32px;
  --transition:       all 0.35s cubic-bezier(0.25,0.8,0.25,1);
  --font-primary:     'Poppins', sans-serif;
  --font-hindi:       'Noto Sans Devanagari', sans-serif;
  --navbar-height:    80px;
}

/* ── Reset & Base ───────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-primary);
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.75;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--primary); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--primary-dark); }

h1,h2,h3,h4,h5,h6 {
  font-weight: 700;
  line-height: 1.25;
  color: var(--brown);
}

p { margin-bottom: 1rem; }

/* ── Utility Classes ────────────────────────────────────── */
.bg-beige   { background-color: var(--beige); }
.text-primary-uday { color: var(--primary) !important; }
.text-secondary-uday { color: var(--secondary) !important; }
.text-white-75 { color: rgba(255,255,255,0.85); }
.section-padding { padding: 90px 0; }
.section-tagline {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--primary);
  background: var(--primary-light);
  border-radius: 50px;
  padding: 5px 16px;
  margin-bottom: 12px;
}
.section-tagline.light {
  color: var(--primary-light);
  background: rgba(245,166,35,0.25);
}
.section-title {
  font-size: clamp(1.8rem, 4vw, 2.75rem);
  font-weight: 800;
  margin-bottom: 1rem;
  color: var(--brown);
}
.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 620px;
  margin: 0 auto;
}

/* ── Buttons ────────────────────────────────────────────── */
.btn {
  border-radius: 50px;
  font-weight: 600;
  transition: var(--transition);
  padding: 0.6rem 1.6rem;
  font-size: 0.9rem;
}
.btn-primary-uday {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  border: none;
  box-shadow: 0 4px 16px rgba(245,166,35,0.35);
}
.btn-primary-uday:hover {
  background: linear-gradient(135deg, var(--primary-dark), #B5700E);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(245,166,35,0.45);
}
.btn-secondary-uday {
  background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
  color: var(--white);
  border: none;
  box-shadow: 0 4px 16px rgba(74,124,46,0.30);
}
.btn-secondary-uday:hover {
  background: linear-gradient(135deg, var(--secondary-dark), #2A4A18);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-outline-uday {
  border: 2px solid var(--primary);
  color: var(--primary);
  background: transparent;
}
.btn-outline-uday:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-donate {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white) !important;
  border-radius: 50px;
  padding: 0.5rem 1.2rem;
  font-size: 0.85rem;
  font-weight: 700;
  box-shadow: 0 4px 14px rgba(245,166,35,0.4);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  white-space: nowrap;
  transition: var(--transition);
}
.btn-donate:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(245,166,35,0.5);
}
.btn-donate-footer {
  background: var(--primary);
  color: var(--white) !important;
  border-radius: 50px;
  padding: 0.5rem 1.5rem;
  font-weight: 700;
}
.btn-donate-footer:hover { background: var(--primary-dark); color: var(--white); }

.btn-hero-primary {
  background: var(--primary);
  color: var(--white);
  padding: 0.8rem 2rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  border: none;
  box-shadow: 0 6px 20px rgba(245,166,35,0.45);
}
.btn-hero-primary:hover { background: var(--primary-dark); color: var(--white); transform: translateY(-3px); }
.btn-hero-secondary {
  background: transparent;
  color: var(--white);
  padding: 0.8rem 2rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  border: 2px solid rgba(255,255,255,0.7);
}
.btn-hero-secondary:hover {
  background: rgba(255,255,255,0.15);
  color: var(--white);
  border-color: var(--white);
  transform: translateY(-3px);
}
.btn-involve { background: rgba(255,255,255,0.15); color: var(--white); border: 1.5px solid rgba(255,255,255,0.5); border-radius: 50px; padding: 0.45rem 1.2rem; font-size: 0.85rem; font-weight: 600; }
.btn-involve:hover { background: rgba(255,255,255,0.28); color: var(--white); transform: translateY(-2px); }
.btn-subscribe {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  border: none;
  border-radius: 0 50px 50px 0;
  padding: 0.6rem 1.4rem;
  font-weight: 600;
}
.btn-subscribe:hover { background: var(--primary-dark); color: var(--white); }

/* ── Preloader ──────────────────────────────────────────── */
.preloader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--beige);
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}
.preloader.loaded { opacity: 0; visibility: hidden; }
.preloader-inner { text-align: center; }
.preloader-sun {
  width: 60px; height: 60px;
  background: radial-gradient(circle, var(--primary), var(--primary-dark));
  border-radius: 50%;
  margin: 0 auto 12px;
  animation: pulseSun 1.2s ease-in-out infinite;
  box-shadow: 0 0 0 0 rgba(245,166,35,0.5);
}
.preloader-inner p { font-weight: 700; color: var(--brown); margin: 0; font-size: 0.9rem; }
@keyframes pulseSun {
  0%,100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(245,166,35,0.5); }
  50%     { transform: scale(1.12); box-shadow: 0 0 0 16px rgba(245,166,35,0); }
}

/* ── Top Bar ────────────────────────────────────────────── */
.top-bar {
  background: var(--brown);
  padding: 7px 0;
  font-size: 0.82rem;
}
.top-bar-info { display: flex; gap: 1.5rem; }
.top-bar-info a, .top-bar-social a {
  color: rgba(255,255,255,0.82);
  transition: var(--transition);
  display: inline-flex; align-items: center; gap: 0.4rem;
}
.top-bar-info a:hover, .top-bar-social a:hover { color: var(--primary); }
.top-bar-social { display: flex; gap: 0.8rem; justify-content: flex-end; }
.top-bar-social a {
  width: 28px; height: 28px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
}
.top-bar-social a:hover { background: var(--primary); color: var(--white); }

/* ── Header ─────────────────────────────────────────────── */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(248,236,220,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(61,43,31,0.08);
  transition: var(--transition);
}
.site-header.has-topbar { top: 42px; }
.site-header.scrolled {
  box-shadow: 0 4px 30px rgba(61,43,31,0.15);
  background: rgba(248,236,220,1);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: var(--navbar-height);
  gap: 1.5rem;
}
.header-spacer { height: calc(var(--navbar-height) + 42px); }
body:not(.has-topbar) .header-spacer { height: var(--navbar-height); }

/* ── Logo — strict size cap ─────────────────────────────── */
.site-logo { flex-shrink: 0; display: flex; align-items: center; }
.site-logo .logo-link { display: flex; align-items: center; }

/* ACF logo image */
.site-logo .logo-img {
  display: block;
  height: 56px !important;
  max-height: 56px !important;
  width: auto !important;
  max-width: 180px !important;
  object-fit: contain;
}

/* WordPress custom_logo() — the_custom_logo() output */
.site-logo .custom-logo-wrap { display: flex; align-items: center; }
.site-logo .custom-logo-wrap a,
.site-logo .custom-logo-link { display: flex; align-items: center; }
.site-logo .custom-logo-wrap img,
.site-logo .custom-logo-link img,
.custom-logo { /* WordPress default class */
  display: block !important;
  height: 56px !important;
  max-height: 56px !important;
  width: auto !important;
  max-width: 180px !important;
  object-fit: contain !important;
}

/* Text fallback logo */
.site-logo .text-logo { display: flex; flex-direction: column; text-decoration: none; }
.site-logo .logo-title { font-size: 1.2rem; font-weight: 800; color: var(--brown); line-height: 1.1; }
.site-logo .logo-tagline { font-size: 0.65rem; color: var(--text-muted); line-height: 1; }

/* Navigation */
.main-navigation .nav-menu {
  list-style: none; margin: 0; padding: 0;
  display: flex; align-items: center; gap: 0.25rem;
}
.nav-menu .nav-item > .nav-link {
  color: var(--brown);
  font-weight: 600;
  font-size: 0.88rem;
  padding: 0.5rem 0.85rem;
  border-radius: 8px;
  position: relative;
}
.nav-menu .nav-item > .nav-link::after {
  content: '';
  position: absolute; bottom: 4px; left: 50%; right: 50%;
  height: 2px; background: var(--primary);
  border-radius: 2px;
  transition: var(--transition);
}
.nav-menu .nav-item > .nav-link:hover::after,
.nav-menu .nav-item.active > .nav-link::after { left: 12px; right: 12px; }
.nav-menu .nav-item > .nav-link:hover,
.nav-menu .nav-item.active > .nav-link { color: var(--primary); }

/* Dropdowns */
.nav-menu .dropdown .dropdown-menu {
  display: none;
  position: absolute; top: 100%; left: 0;
  background: var(--white);
  border: none;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  min-width: 200px;
  padding: 8px;
  animation: fadeDown 0.25s ease;
}
.nav-menu .dropdown:hover .dropdown-menu { display: block; }
.dropdown-menu .dropdown-item {
  border-radius: 8px;
  color: var(--brown);
  font-size: 0.85rem;
  font-weight: 500;
  padding: 0.45rem 0.9rem;
}
.dropdown-menu .dropdown-item:hover { background: var(--primary-light); color: var(--primary); }
@keyframes fadeDown { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: translateY(0); } }

/* Header Actions */
.header-actions { display: flex; align-items: center; gap: 0.75rem; }
.search-toggle {
  background: none; border: none;
  color: var(--brown);
  font-size: 1rem;
  width: 38px; height: 38px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
  cursor: pointer;
}
.search-toggle:hover { background: var(--beige); color: var(--primary); }
.hamburger {
  display: none;
  flex-direction: column; justify-content: center; align-items: center;
  gap: 5px; width: 40px; height: 40px;
  background: none; border: none; cursor: pointer;
  border-radius: 8px; padding: 0;
}
.hamburger span {
  display: block; width: 24px; height: 2.5px;
  background: var(--brown);
  border-radius: 2px; transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* Search Overlay */
.search-overlay {
  position: fixed; inset: 0; z-index: 9998;
  background: rgba(61,43,31,0.92);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden;
  transition: var(--transition);
}
.search-overlay.open { opacity: 1; visibility: visible; }
.search-overlay-inner { width: 100%; max-width: 600px; padding: 2rem; }
.search-close {
  position: absolute; top: 2rem; right: 2rem;
  background: none; border: none;
  color: var(--white); font-size: 1.5rem; cursor: pointer;
}
.search-form {
  display: flex; border-radius: 50px;
  overflow: hidden; background: var(--white);
}
.search-form input {
  flex: 1; border: none; outline: none;
  padding: 1rem 1.5rem;
  font-size: 1.1rem; font-family: var(--font-primary);
}
.search-form button {
  background: var(--primary); border: none;
  color: var(--white); padding: 0 1.5rem;
  font-size: 1.1rem; cursor: pointer;
  transition: var(--transition);
}
.search-form button:hover { background: var(--primary-dark); }

/* ── Hero ───────────────────────────────────────────────── */
.hero-section { position: relative; }
.hero-slide {
  position: relative;
  height: 100vh; min-height: 580px;
  display: flex; align-items: center;
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: scroll;
  background-color: var(--brown);
  transition: transform 8s ease;
}
.swiper-slide-active .hero-bg {
  transform: scale(1.06);
}
.hero-bg-default {
  background: linear-gradient(135deg, var(--brown) 0%, var(--brown-light) 40%, var(--secondary-dark) 100%);
}
.hero-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(30,20,10,0.78) 0%, rgba(50,80,20,0.58) 60%, rgba(30,20,10,0.72) 100%);
}
.hero-content { position: relative; z-index: 2; }
.hero-badge {
  display: inline-block;
  background: rgba(245,166,35,0.25);
  color: var(--primary);
  border: 1px solid rgba(245,166,35,0.5);
  border-radius: 50px; padding: 6px 18px;
  font-size: 0.8rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.1em;
  margin-bottom: 1rem;
}
.hero-title {
  font-size: clamp(2.2rem, 6vw, 4.2rem);
  font-weight: 900;
  color: var(--white);
  text-shadow: 0 2px 12px rgba(0,0,0,0.3);
  margin-bottom: 1rem;
  line-height: 1.15;
}
.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(255,255,255,0.9);
  margin-bottom: 2rem;
  max-width: 600px; margin-left: auto; margin-right: auto;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; }
.hero-swiper .swiper-button-next,
.hero-swiper .swiper-button-prev {
  color: var(--white);
  width: 48px; height: 48px;
  background: rgba(255,255,255,0.18);
  border-radius: 50%; backdrop-filter: blur(4px);
}
.hero-swiper .swiper-button-next::after,
.hero-swiper .swiper-button-prev::after { display: none; }
.hero-pagination .swiper-pagination-bullet {
  width: 10px; height: 10px; background: rgba(255,255,255,0.6);
}
.hero-pagination .swiper-pagination-bullet-active {
  background: var(--primary); width: 28px; border-radius: 5px;
}
.hero-scroll-indicator {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  z-index: 3; animation: bounce 2s infinite;
}
.scroll-mouse {
  display: block; width: 28px; height: 44px;
  border: 2px solid rgba(255,255,255,0.7);
  border-radius: 14px; position: relative; margin: 0 auto;
}
.scroll-wheel {
  display: block; width: 4px; height: 8px;
  background: var(--primary); border-radius: 2px;
  position: absolute; top: 6px; left: 50%; transform: translateX(-50%);
  animation: scrollWheel 2s ease infinite;
}
@keyframes bounce { 0%,100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(6px); } }
@keyframes scrollWheel { 0% { opacity: 1; top: 6px; } 100% { opacity: 0; top: 24px; } }

/* ── About Preview ──────────────────────────────────────── */
.about-image-wrapper {
  position: relative;
  width: 100%;
}
.about-main-image {
  width: 100%;
  height: 480px;
  object-fit: cover;
  object-position: center top;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  display: block;
}

/* Responsive height adjustments */
@media (max-width: 1199.98px) { .about-main-image { height: 420px; } }
@media (max-width: 991.98px)  { .about-main-image { height: 380px; } }
@media (max-width: 767.98px)  { .about-main-image { height: 300px; } }
.about-shape-1, .about-shape-2 {
  position: absolute; border-radius: var(--radius-lg);
  opacity: 0.18; z-index: -1;
}
.about-shape-1 { width: 80%; height: 80%; top: -20px; left: -20px; background: var(--primary); border-radius: var(--radius-lg); }
.about-shape-2 { width: 60%; height: 60%; bottom: -20px; right: -20px; background: var(--secondary); }
.about-image-placeholder {
  background: var(--beige-dark); border-radius: var(--radius-lg);
  aspect-ratio: 4/3;
  display: flex; align-items: center; justify-content: center;
  color: var(--primary); font-size: 3rem;
}
.about-badge-float {
  position: absolute; bottom: -16px; right: 24px;
  background: var(--white); border-radius: var(--radius);
  padding: 0.8rem 1.2rem;
  box-shadow: var(--shadow);
  display: flex; flex-direction: column; align-items: center;
  min-width: 110px; text-align: center;
}
.badge-number { font-size: 2rem; font-weight: 900; color: var(--primary); line-height: 1; }
.badge-label  { font-size: 0.72rem; color: var(--text-muted); font-weight: 600; }
.about-content { padding-left: 1rem; }
.about-mini-stats .mini-stat {
  background: var(--beige);
  border-radius: var(--radius);
  padding: 1rem 0.5rem;
  text-align: center;
  border: 1px solid var(--border);
}
.mini-stat-icon { font-size: 1.4rem; color: var(--primary); display: block; margin-bottom: 0.3rem; }
.mini-stat-number { display: block; font-size: 1.6rem; font-weight: 800; color: var(--brown); line-height: 1; }
.mini-stat-label  { font-size: 0.7rem; color: var(--text-muted); font-weight: 600; }

/* ── Mission Cards ──────────────────────────────────────── */
.mission-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  text-align: center;
  transition: var(--transition);
  height: 100%;
}
.mission-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--primary); }
.mission-card-icon {
  width: 72px; height: 72px;
  background: linear-gradient(135deg, var(--primary-light), var(--beige));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.2rem;
  font-size: 1.8rem; color: var(--primary);
  transition: var(--transition);
}
.mission-card:hover .mission-card-icon { background: linear-gradient(135deg, var(--primary), var(--primary-dark)); color: var(--white); }
.mission-card-title { font-size: 1.1rem; font-weight: 700; margin-bottom: 0.6rem; color: var(--brown); }
.mission-card-text  { font-size: 0.88rem; color: var(--text-muted); margin: 0; }

/* Mission/Vision Tabs */
.mv-tabs .nav-link {
  border-radius: 50px; padding: 0.5rem 1.5rem;
  color: var(--brown); font-weight: 600;
  border: 1.5px solid var(--border);
  margin: 0 4px;
  transition: var(--transition);
}
.mv-tabs .nav-link.active { background: var(--primary); border-color: var(--primary); color: var(--white); }
.mv-content { padding: 2rem; }
.mv-icon { font-size: 2.5rem; color: var(--primary); margin-bottom: 1rem; }
.mv-text { font-size: 1.05rem; max-width: 700px; margin: 0 auto; color: var(--text-muted); line-height: 1.8; }

/* MVV Cards (About page) */
.mvv-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow-sm);
  height: 100%;
  text-align: center;
  border-top: 4px solid transparent;
  transition: var(--transition);
}
.mvv-mission { border-top-color: var(--primary); }
.mvv-vision  { border-top-color: var(--secondary); }
.mvv-approach{ border-top-color: var(--brown); }
.mvv-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.mvv-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.mvv-mission .mvv-icon  { color: var(--primary); }
.mvv-vision  .mvv-icon  { color: var(--secondary); }
.mvv-approach .mvv-icon { color: var(--brown); }
.mvv-text { font-size: 0.92rem; color: var(--text-muted); line-height: 1.8; }

/* ── Impact Section ─────────────────────────────────────── */
.impact-section {
  background: linear-gradient(160deg, var(--brown) 0%, var(--secondary-dark) 100%);
  background-size: cover; background-position: center; background-attachment: fixed;
  position: relative;
}
.impact-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(61,43,31,0.88), rgba(58,96,35,0.85));
}
.impact-card {
  text-align: center; padding: 2rem 1rem;
  background: rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,0.15);
  backdrop-filter: blur(4px);
  transition: var(--transition);
}
.impact-card:hover { background: rgba(255,255,255,0.15); transform: translateY(-6px); }
.impact-icon { font-size: 2.2rem; color: var(--primary); margin-bottom: 0.8rem; }
.impact-number { font-size: clamp(1.5rem, 2.5vw, 2rem); font-weight: 800; color: var(--white); line-height: 1.1; margin-bottom: 0.4rem; }
.impact-label { font-size: 0.88rem; color: rgba(255,255,255,0.8); font-weight: 600; margin: 0; }
.achievement-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 50px; padding: 0.5rem 1.2rem;
  color: var(--white); font-size: 0.85rem; font-weight: 600;
}
.achievement-badge i { color: var(--primary); }

/* ── Board & Team Cards ─────────────────────────────────── */
.board-card, .team-card {
  text-align: center;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  cursor: pointer;
  height: 100%;
}
.board-card:hover, .team-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.board-photo-wrap, .team-photo-wrap { position: relative; overflow: hidden; aspect-ratio: 3/4; }
.board-photo, .team-photo { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.board-card:hover .board-photo, .team-card:hover .team-photo { transform: scale(1.06); }
.board-overlay {
  position: absolute; inset: 0;
  background: rgba(245,166,35,0.75);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: var(--transition); color: var(--white); font-size: 1.8rem;
}
.board-card:hover .board-overlay { opacity: 1; }
.board-photo-placeholder, .team-photo-placeholder {
  width: 100%; aspect-ratio: 3/4;
  background: var(--beige-dark);
  display: flex; align-items: center; justify-content: center;
  color: var(--primary);
}
.board-info, .team-info { padding: 1rem; }
.board-name, .team-name { font-size: 0.95rem; font-weight: 700; margin-bottom: 0.2rem; color: var(--brown); }
.board-designation, .team-designation { font-size: 0.78rem; color: var(--primary); font-weight: 600; margin: 0; }
.team-socials {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(61,43,31,0.85), transparent);
  padding: 1.2rem 0.5rem 0.6rem;
  display: flex; justify-content: center; gap: 0.6rem;
  transform: translateY(100%); transition: var(--transition);
}
.team-card:hover .team-socials { transform: translateY(0); }
.team-socials a {
  width: 32px; height: 32px;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-size: 0.75rem;
}
.team-socials a:hover { background: var(--primary); }

/* Member Modal */
.member-modal .modal-header { border-bottom: 2px solid var(--primary-light); }
.member-bio { font-size: 0.9rem; color: var(--text-muted); line-height: 1.8; }
.member-designation-modal { font-weight: 700; color: var(--primary); margin-bottom: 0.5rem; }

/* ── Partners Swiper ────────────────────────────────────── */
.partner-slide {
  display: flex; align-items: center; justify-content: center;
  padding: 1rem;
}
.partner-link, .partner-link div {
  display: flex; align-items: center; justify-content: center;
  height: 80px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--white);
  padding: 1rem 1.5rem;
  width: 100%;
  transition: var(--transition);
}
.partner-link:hover { border-color: var(--primary); box-shadow: var(--shadow-sm); transform: translateY(-3px); }
.partner-logo { max-height: 60px; max-width: 160px; width: auto; margin: 0 auto; filter: grayscale(0.3); transition: var(--transition); }
.partner-link:hover .partner-logo { filter: none; }
.partner-name-fallback { font-size: 0.85rem; font-weight: 700; color: var(--brown); text-align: center; }

/* ── Programs ───────────────────────────────────────────── */
.program-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: var(--transition);
  height: 100%;
  display: flex; flex-direction: column;
}
.program-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--primary); }
.program-card-img { position: relative; overflow: hidden; aspect-ratio: 16/10; }
.program-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.program-card:hover .program-card-img img { transform: scale(1.06); }
.program-img-placeholder { aspect-ratio: 16/10; background: var(--beige-dark); display: flex; align-items: center; justify-content: center; color: var(--secondary); }
.program-cat-badge {
  position: absolute; top: 10px; left: 10px;
  background: var(--primary); color: var(--white);
  font-size: 0.72rem; font-weight: 700;
  padding: 3px 10px; border-radius: 50px;
  text-transform: uppercase; letter-spacing: 0.05em;
}
.program-card-body { padding: 1.3rem; flex: 1; display: flex; flex-direction: column; }
.program-meta { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 0.7rem; }
.program-meta span { font-size: 0.78rem; color: var(--text-muted); display: flex; align-items: center; gap: 0.3rem; }
.program-meta i { color: var(--primary); }
.program-card-title { font-size: 1rem; font-weight: 700; margin-bottom: 0.5rem; color: var(--brown); }
.program-card-title a { color: inherit; }
.program-card-title a:hover { color: var(--primary); }
.program-card-excerpt { font-size: 0.85rem; color: var(--text-muted); flex: 1; }
.program-card-actions { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-top: auto; }

/* List view */
.program-card--list { flex-direction: row; align-items: center; }
.program-card--list .program-card-body { padding: 1.2rem 1.5rem; }

/* ── News Cards ─────────────────────────────────────────── */
.news-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: var(--transition);
  height: 100%;
  display: flex; flex-direction: column;
}
.news-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.news-card-img { position: relative; overflow: hidden; aspect-ratio: 16/10; }
.news-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.news-card:hover .news-card-img img { transform: scale(1.06); }
.news-img-placeholder { aspect-ratio: 16/10; background: var(--beige-dark); display: flex; align-items: center; justify-content: center; color: var(--primary); text-decoration: none; }
.news-cat-badge {
  position: absolute; top: 10px; left: 10px;
  background: var(--secondary); color: var(--white);
  font-size: 0.72rem; font-weight: 700;
  padding: 3px 10px; border-radius: 50px;
}
.news-cat-badge:hover { background: var(--secondary-dark); color: var(--white); }
.news-type-badge {
  position: absolute; top: 10px; right: 10px;
  font-size: 0.7rem; font-weight: 700;
  padding: 3px 10px; border-radius: 50px; color: var(--white);
}
.news-type-pdf  { background: #E53935; }
.news-type-video{ background: #1565C0; }
.news-card-body { padding: 1.3rem; flex: 1; display: flex; flex-direction: column; }
.news-meta { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-bottom: 0.6rem; }
.news-meta span { font-size: 0.76rem; color: var(--text-muted); display: flex; align-items: center; gap: 0.3rem; }
.news-meta i { color: var(--primary); }
.news-card-title { font-size: 1rem; font-weight: 700; margin-bottom: 0.5rem; color: var(--brown); }
.news-card-title a { color: inherit; }
.news-card-title a:hover { color: var(--primary); }
.news-card-excerpt { font-size: 0.85rem; color: var(--text-muted); flex: 1; }
.news-card-footer { display: flex; justify-content: space-between; align-items: center; margin-top: auto; padding-top: 0.8rem; }
.news-read-more { font-size: 0.84rem; font-weight: 700; color: var(--primary); }
.news-read-more:hover { color: var(--primary-dark); }
.news-pdf-link { color: #E53935; font-size: 1rem; }
.news-pdf-link:hover { color: #B71C1C; }

/* ── Gallery ────────────────────────────────────────────── */
.gallery-card {
  position: relative; overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.gallery-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.gallery-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.gallery-card:hover .gallery-img { transform: scale(1.08); }
.gallery-img-placeholder { width:100%; height:100%; background: var(--beige-dark); display:flex; align-items:center; justify-content:center; color:var(--secondary); }
.gallery-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(61,43,31,0.85) 0%, rgba(61,43,31,0.2) 60%, transparent 100%);
  opacity: 0; transition: var(--transition);
  display: flex; align-items: flex-end; padding: 1rem;
}
.gallery-card:hover .gallery-overlay { opacity: 1; }
.gallery-overlay-content { color: var(--white); text-align: center; width: 100%; }
.gallery-overlay-content i { font-size: 1.4rem; display: block; margin-bottom: 0.4rem; }
.gallery-event-name { font-size: 0.82rem; font-weight: 700; margin: 0; }
.gallery-date { font-size: 0.72rem; opacity: 0.85; }
.gallery-cat-tag {
  display: block; font-size: 0.72rem; font-weight: 600;
  color: var(--secondary); margin-top: 6px;
}
.gallery-lightbox { display: block; }

/* Masonry */
.gallery-masonry { column-gap: 1rem; }
.gallery-item { break-inside: avoid; margin-bottom: 1rem; }

/* ── Testimonials ───────────────────────────────────────── */
.testimonials-section { background: var(--beige); }
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem 1.8rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  margin: 0 8px 24px;
  transition: var(--transition);
}
.testimonial-stars { color: var(--primary); font-size: 0.9rem; margin-bottom: 0.8rem; }
.testimonial-quote { color: var(--primary); font-size: 1.8rem; margin-bottom: 0.5rem; opacity: 0.3; }
.testimonial-text { font-size: 0.95rem; color: var(--text-muted); line-height: 1.85; font-style: italic; margin-bottom: 1.5rem; }
.testimonial-author { display: flex; align-items: center; gap: 1rem; }
.testimonial-photo {
  width: 52px; height: 52px; border-radius: 50%;
  object-fit: cover; border: 3px solid var(--primary-light);
  flex-shrink: 0;
}
.testimonial-photo-placeholder {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--beige-dark); display: flex; align-items: center; justify-content: center;
  color: var(--primary); flex-shrink: 0;
}
.author-name  { display: block; font-size: 0.9rem; font-weight: 700; color: var(--brown); }
.author-role  { font-size: 0.78rem; color: var(--text-muted); }
.testimonials-pagination .swiper-pagination-bullet-active { background: var(--primary); }

/* ── Get Involved Section ───────────────────────────────── */
.involve-section {
  background: linear-gradient(160deg, var(--secondary-dark) 0%, var(--brown) 100%);
  background-size: cover; background-attachment: fixed;
  position: relative;
}
.involve-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(58,96,35,0.88), rgba(61,43,31,0.85));
}
.involve-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  backdrop-filter: blur(4px);
  transition: var(--transition);
  height: 100%;
}
.involve-card:hover { background: rgba(255,255,255,0.16); transform: translateY(-8px); }
.involve-card--primary { border-top: 3px solid var(--primary); }
.involve-card--secondary { border-top: 3px solid var(--secondary-light); }
.involve-icon {
  width: 68px; height: 68px;
  background: rgba(245,166,35,0.2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.2rem;
  font-size: 1.7rem; color: var(--primary);
  transition: var(--transition);
}
.involve-card:hover .involve-icon { background: var(--primary); color: var(--white); }
.involve-title { font-size: 1.15rem; font-weight: 700; color: var(--white); margin-bottom: 0.6rem; }
.involve-desc  { font-size: 0.86rem; color: rgba(255,255,255,0.8); margin-bottom: 1.2rem; }

/* ── Footer ─────────────────────────────────────────────── */
.footer-newsletter {
  background: linear-gradient(135deg, var(--secondary-dark), var(--brown));
  padding: 48px 0;
}
.newsletter-title { font-size: 1.6rem; font-weight: 800; color: var(--white); margin-bottom: 0.4rem; }
.newsletter-text  { color: rgba(255,255,255,0.8); margin: 0; font-size: 0.95rem; }
.newsletter-input-group { display: flex; max-width: 480px; }
.newsletter-input {
  flex: 1; padding: 0.7rem 1.2rem;
  border: none; border-radius: 50px 0 0 50px;
  outline: none; font-family: var(--font-primary);
  font-size: 0.9rem;
}
.newsletter-form .wpcf7-form { display: flex; flex-wrap: wrap; gap: 0.5rem; align-items: center; }

.site-footer { background: var(--brown); color: rgba(255,255,255,0.85); }
.footer-main { padding: 64px 0 40px; }
.footer-logo { max-height: 60px; width: auto; }
.footer-brand { font-size: 1.4rem; font-weight: 800; color: var(--white); margin-bottom: 1rem; }
.footer-about-text { font-size: 0.88rem; color: rgba(255,255,255,0.75); line-height: 1.8; margin-bottom: 1.2rem; }
.widget-title {
  font-size: 1rem; font-weight: 800; color: var(--white);
  margin-bottom: 1.2rem; padding-bottom: 0.6rem;
  border-bottom: 2px solid rgba(245,166,35,0.5);
  text-transform: uppercase; letter-spacing: 0.08em;
}
.footer-socials { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 1rem; }
.social-icon, .social-icons-row a {
  width: 38px; height: 38px;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.8);
  background: rgba(255,255,255,0.1);
  font-size: 0.82rem;
  transition: var(--transition);
}
.social-icon:hover { color: var(--white); transform: translateY(-3px); }
.social-icon.social-facebook:hover  { background: #1877F2; }
.social-icon.social-instagram:hover { background: linear-gradient(45deg, #f09433,#e6683c,#dc2743,#cc2366,#bc1888); }
.social-icon.social-linkedin:hover  { background: #0A66C2; }
.social-icon.social-youtube:hover   { background: #FF0000; }
.social-icon.social-twitter:hover   { background: #000000; }
.social-icon.social-whatsapp:hover  { background: #25D366; }

.footer-menu { list-style: none; padding: 0; margin: 0; }
.footer-menu li { margin-bottom: 0.6rem; }
.footer-menu a { color: rgba(255,255,255,0.75); font-size: 0.88rem; transition: var(--transition); }
.footer-menu a:hover { color: var(--primary); padding-left: 6px; }
.footer-contact-list { list-style: none; padding: 0; margin: 0; }
.footer-contact-list li {
  display: flex; align-items: flex-start; gap: 0.8rem;
  margin-bottom: 0.9rem; font-size: 0.87rem; color: rgba(255,255,255,0.78);
}
.footer-contact-list i { color: var(--primary); font-size: 0.9rem; margin-top: 2px; flex-shrink: 0; }
.footer-contact-list a { color: rgba(255,255,255,0.78); }
.footer-contact-list a:hover { color: var(--primary); }
.footer-bottom {
  background: rgba(0,0,0,0.25);
  padding: 18px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.copyright, .footer-credits {
  font-size: 0.82rem; color: rgba(255,255,255,0.6); margin: 0;
}

/* ── Sticky Donate / WhatsApp ───────────────────────────── */
.sticky-donate {
  position: fixed; bottom: 80px; right: 20px; z-index: 999;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white) !important;
  border-radius: 50px;
  padding: 0.6rem 1.1rem;
  font-size: 0.82rem; font-weight: 700;
  box-shadow: 0 6px 20px rgba(245,166,35,0.5);
  display: flex; align-items: center; gap: 0.4rem;
  transition: var(--transition);
  text-decoration: none;
}
.sticky-donate:hover { transform: translateY(-3px) scale(1.04); box-shadow: 0 10px 30px rgba(245,166,35,0.6); }
.whatsapp-float {
  position: fixed; bottom: 20px; right: 20px; z-index: 999;
  background: #25D366;
  color: var(--white) !important;
  width: 52px; height: 52px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 6px 20px rgba(37,211,102,0.5);
  transition: var(--transition);
  text-decoration: none;
}
.whatsapp-float:hover { transform: scale(1.1); }

/* Back To Top */
.back-to-top {
  position: fixed; bottom: 140px; right: 20px; z-index: 998;
  width: 42px; height: 42px;
  background: var(--brown);
  color: var(--white);
  border: none; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem;
  opacity: 0; visibility: hidden;
  cursor: pointer;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.back-to-top.visible { opacity: 1; visibility: visible; }
.back-to-top:hover { background: var(--primary); transform: translateY(-3px); }

/* ── Page Banner ────────────────────────────────────────── */
.page-banner {
  position: relative;
  padding: 90px 0 30px;
  background: linear-gradient(135deg, var(--brown), var(--secondary-dark));
  background-size: cover; background-position: center;
  min-height: 160px; display: flex; align-items: center;
}
.page-banner-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(61,43,31,0.82), rgba(74,124,46,0.65));
}
.page-banner-content { position: relative; z-index: 2; }
.page-title {
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  font-weight: 800; color: var(--white); margin-bottom: 0.4rem;
}

/* ── Breadcrumbs ────────────────────────────────────────── */
.uday-breadcrumbs { position: relative; z-index: 2; }
.uday-breadcrumbs .breadcrumb { background: none; padding: 0; margin: 0; }
.uday-breadcrumbs .breadcrumb-item { font-size: 0.82rem; color: rgba(255,255,255,0.7); }
.uday-breadcrumbs .breadcrumb-item a { color: rgba(255,255,255,0.8); }
.uday-breadcrumbs .breadcrumb-item a:hover { color: var(--primary); }
.uday-breadcrumbs .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,0.4); }
.uday-breadcrumbs .breadcrumb-item.active { color: var(--primary); }

/* ── Contact Page ───────────────────────────────────────── */
.contact-info-panel {
  background: var(--beige);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  height: 100%;
}
.contact-info-title { font-size: 1.7rem; font-weight: 800; margin-bottom: 1rem; }
.contact-intro { font-size: 0.92rem; color: var(--text-muted); margin-bottom: 1.5rem; }
.contact-details-list { list-style: none; padding: 0; margin: 0; }
.contact-detail-item {
  display: flex; gap: 1rem; align-items: flex-start;
  padding: 1rem 0; border-bottom: 1px solid var(--border);
}
.contact-detail-icon {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-size: 0.9rem; flex-shrink: 0;
}
.contact-detail-item strong { display: block; font-size: 0.82rem; color: var(--brown); font-weight: 700; margin-bottom: 0.2rem; }
.contact-detail-item p { font-size: 0.88rem; color: var(--text-muted); margin: 0; }
.contact-form-panel {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow);
}
.contact-form-title { font-size: 1.7rem; font-weight: 800; margin-bottom: 1.5rem; }
.form-control {
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 0.7rem 1rem;
  font-family: var(--font-primary); font-size: 0.9rem;
  transition: var(--transition);
}
.form-control:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(245,166,35,0.18); }
.form-group { margin-bottom: 0; }
.form-group label { font-size: 0.82rem; font-weight: 700; color: var(--brown); margin-bottom: 6px; display: block; }
.map-wrapper { height: 400px; }
.map-wrapper iframe { width: 100%; height: 100%; border: none; display: block; }
.social-icons-row { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 0.8rem; }
.social-icon-lg { width: 44px; height: 44px; border-radius: 50%; font-size: 1rem; }
.social-icon-lg.social-facebook  { background: #1877F2; color: var(--white); }
.social-icon-lg.social-instagram { background: linear-gradient(45deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); color: var(--white); }
.social-icon-lg.social-linkedin  { background: #0A66C2; color: var(--white); }
.social-icon-lg.social-youtube   { background: #FF0000; color: var(--white); }
.social-icon-lg.social-twitter   { background: #000; color: var(--white); }
.social-icon-lg.social-whatsapp  { background: #25D366; color: var(--white); }
.social-icon-lg:hover { transform: translateY(-3px) scale(1.1); }

/* ── Programs/Gallery Filter Toolbar ───────────────────── */
.filter-tabs { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.filter-btn {
  background: var(--white);
  border: 1.5px solid var(--border);
  color: var(--brown);
  border-radius: 50px;
  padding: 0.35rem 1rem;
  font-size: 0.82rem; font-weight: 600;
  cursor: pointer; transition: var(--transition);
}
.filter-btn:hover, .filter-btn.active {
  background: var(--primary); border-color: var(--primary); color: var(--white);
}
.view-toggle { display: flex; gap: 0.4rem; }
.view-btn {
  width: 36px; height: 36px;
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: 8px; color: var(--text-muted);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem; cursor: pointer; transition: var(--transition);
}
.view-btn.active { background: var(--primary); border-color: var(--primary); color: var(--white); }
.load-more-btn { min-width: 160px; }
.load-more-btn.loading { pointer-events: none; opacity: 0.7; }

/* ── Get Involved Page ──────────────────────────────────── */
.sticky-tabs { position: sticky; top: var(--navbar-height); z-index: 100; box-shadow: 0 2px 12px rgba(0,0,0,0.08); }
.involve-nav .nav-link {
  border-radius: 50px; padding: 0.45rem 1.2rem;
  color: var(--brown); font-size: 0.85rem; font-weight: 600;
  transition: var(--transition);
}
.involve-nav .nav-link.active { background: var(--primary); color: var(--white); }
.bank-details-box {
  background: var(--beige);
  border-radius: var(--radius);
  padding: 1.5rem;
  border-left: 4px solid var(--primary);
}
.bank-details-box h4 { font-size: 1rem; color: var(--brown); margin-bottom: 0.8rem; }
.qr-code-wrap { display: inline-block; }
.donation-qr { max-width: 250px; margin: 0 auto; border-radius: var(--radius); box-shadow: var(--shadow); }
.qr-label { font-size: 0.85rem; color: var(--text-muted); margin-top: 0.6rem; }
.donate-illustration { padding: 3rem 0; }
.form-placeholder-notice {
  text-align: center; padding: 3rem;
  background: var(--beige);
  border-radius: var(--radius-lg);
  color: var(--text-muted);
}

/* Career Cards */
.career-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: var(--transition);
}
.career-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--secondary); }
.career-card-header { display: flex; justify-content: space-between; align-items: flex-start; padding: 1.3rem 1.3rem 0; }
.career-position { font-size: 1rem; font-weight: 700; color: var(--brown); margin-bottom: 0.3rem; }
.career-type-badge { background: var(--secondary-light); color: var(--secondary-dark); font-size: 0.72rem; font-weight: 700; padding: 3px 10px; border-radius: 50px; }
.career-card-body { padding: 1rem 1.3rem; }
.career-card-body p { font-size: 0.87rem; color: var(--text-muted); }
.career-meta { display: flex; flex-wrap: wrap; gap: 0.7rem; margin-top: 0.5rem; }
.career-meta span { font-size: 0.78rem; color: var(--text-muted); display: flex; align-items: center; gap: 0.3rem; }
.career-meta i { color: var(--secondary); }
.career-card-footer { padding: 1rem 1.3rem; border-top: 1px solid var(--border); display: flex; gap: 0.6rem; }

/* ── About Page ─────────────────────────────────────────── */
.value-card {
  text-align: center;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.8rem 1.2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: var(--transition);
  height: 100%;
}
.value-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: var(--primary); }
.value-icon { font-size: 2.2rem; color: var(--primary); margin-bottom: 0.8rem; }
.value-title { font-size: 0.95rem; font-weight: 700; margin-bottom: 0.4rem; color: var(--brown); }
.value-desc  { font-size: 0.82rem; color: var(--text-muted); margin: 0; }

/* Timeline */
.timeline { position: relative; padding: 1rem 0; }
.timeline::before {
  content: '';
  position: absolute; left: 50%; top: 0; bottom: 0;
  width: 2px; background: var(--border);
  transform: translateX(-50%);
}
.timeline-item {
  display: flex; margin-bottom: 2.5rem;
  position: relative;
}
.timeline-left { flex-direction: row; }
.timeline-right { flex-direction: row-reverse; }
.timeline-dot {
  position: absolute; left: 50%; top: 14px;
  width: 16px; height: 16px;
  background: var(--primary);
  border-radius: 50%;
  border: 3px solid var(--white);
  box-shadow: 0 0 0 3px var(--primary);
  transform: translateX(-50%); z-index: 1;
}
.timeline-content {
  width: calc(50% - 30px);
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.3rem 1.5rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}
.timeline-left  .timeline-content { margin-right: 30px; }
.timeline-right .timeline-content { margin-left: 30px; }
.timeline-year {
  display: inline-block;
  background: var(--primary);
  color: var(--white);
  font-size: 0.78rem; font-weight: 700;
  padding: 2px 10px; border-radius: 50px;
  margin-bottom: 0.5rem;
}
.timeline-title { font-size: 1rem; font-weight: 700; color: var(--brown); margin-bottom: 0.3rem; }
.timeline-desc  { font-size: 0.85rem; color: var(--text-muted); margin: 0; }

/* ── Single Program / Media ─────────────────────────────── */
.program-sidebar .sidebar-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}
.sidebar-download { border-left: 3px solid #E53935; }
.sidebar-cta { background: var(--primary-light); border-color: var(--primary); }
.related-item { display: flex; align-items: center; gap: 0.8rem; padding: 0.6rem 0; border-bottom: 1px solid var(--border); }
.related-item:last-child { border-bottom: none; }
.related-thumb { width: 60px; height: 60px; object-fit: cover; border-radius: var(--radius); flex-shrink: 0; }
.related-title { font-size: 0.85rem; font-weight: 700; color: var(--brown); }
.related-title:hover { color: var(--primary); }
.impact-stat-card { background: var(--beige); border-radius: var(--radius); padding: 1rem 0.5rem; }
.impact-stat-number { display: block; font-size: 1.8rem; font-weight: 900; color: var(--primary); }
.impact-stat-label  { font-size: 0.75rem; color: var(--text-muted); font-weight: 600; }
.program-detail-meta { display: flex; flex-wrap: wrap; gap: 0.75rem; align-items: center; }
.program-detail-meta .program-cat-badge { position: static; }
.pdf-download-bar { display: flex; align-items: center; gap: 1rem; background: var(--beige); border-radius: var(--radius); padding: 1rem 1.5rem; }

/* ── Share Buttons ──────────────────────────────────────── */
.uday-share-buttons { display: flex; align-items: center; gap: 0.6rem; flex-wrap: wrap; }
.share-label { font-size: 0.82rem; font-weight: 700; color: var(--brown); }
.share-btn {
  width: 38px; height: 38px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-size: 0.82rem;
  transition: var(--transition);
}
.share-btn:hover { transform: translateY(-3px) scale(1.1); color: var(--white); }
.share-btn.facebook  { background: #1877F2; }
.share-btn.twitter   { background: #000; }
.share-btn.linkedin  { background: #0A66C2; }
.share-btn.whatsapp  { background: #25D366; }

/* ── Pagination ─────────────────────────────────────────── */
.uday-pagination { margin-top: 3rem; }
.uday-pagination .page-link {
  color: var(--brown);
  border: 1.5px solid var(--border);
  border-radius: 8px !important;
  margin: 0 3px;
  font-weight: 600; font-size: 0.9rem;
  transition: var(--transition);
}
.uday-pagination .page-item.active .page-link { background: var(--primary); border-color: var(--primary); color: var(--white); }
.uday-pagination .page-link:hover { background: var(--primary-light); border-color: var(--primary); color: var(--primary); }

/* ── Newsletter Footer ──────────────────────────────────── */
.footer-newsletter .wpcf7-form input[type="email"] {
  border-radius: 50px 0 0 50px; border: none;
  padding: 0.7rem 1.2rem; font-size: 0.9rem; flex: 1; outline: none;
}
.footer-newsletter .wpcf7-form input[type="submit"] {
  background: var(--primary); color: var(--white); border: none;
  border-radius: 0 50px 50px 0; padding: 0.7rem 1.4rem;
  font-weight: 700; cursor: pointer; transition: var(--transition);
}
.footer-newsletter .wpcf7-form input[type="submit"]:hover { background: var(--primary-dark); }

/* CF7 Styling */
.wpcf7 .wpcf7-form-control { font-family: var(--font-primary); }
.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 textarea,
.wpcf7 select {
  width: 100%;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 0.7rem 1rem;
  font-family: var(--font-primary); font-size: 0.9rem;
  transition: var(--transition);
  margin-bottom: 1rem;
  background: var(--white);
}
.wpcf7 input:focus, .wpcf7 textarea:focus {
  outline: none; border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(245,166,35,0.18);
}
.wpcf7 input[type="submit"] {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white); border: none;
  border-radius: 50px; padding: 0.7rem 2rem;
  font-weight: 700; font-size: 0.95rem; cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 16px rgba(245,166,35,0.35);
}
.wpcf7 input[type="submit"]:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(245,166,35,0.45); }
.wpcf7-not-valid-tip { color: #E53935; font-size: 0.78rem; }
.wpcf7-response-output { border-radius: var(--radius); padding: 0.8rem 1.2rem; margin-top: 1rem; font-size: 0.88rem; }

/* ── 404 ────────────────────────────────────────────────── */
.error-404-section { min-height: 70vh; display: flex; align-items: center; }
.error-404-number { font-size: clamp(6rem, 15vw, 10rem); font-weight: 900; color: var(--primary); line-height: 1; opacity: 0.15; }
.error-404-inner { max-width: 500px; margin: 0 auto; }
.error-sun-icon { margin: -2rem 0 1rem; }

/* ── Post Meta ──────────────────────────────────────────── */
.post-meta { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 1.2rem; font-size: 0.82rem; color: var(--text-muted); }
.post-meta span { display: flex; align-items: center; gap: 0.3rem; }
.post-meta i { color: var(--primary); }

/* ── Responsive ─────────────────────────────────────────── */
@media (max-width: 991.98px) {
  :root { --navbar-height: 70px; }
  .section-padding { padding: 64px 0; }
  .hamburger { display: flex; }
  .main-navigation {
    position: fixed; top: 0; right: -100%; bottom: 0;
    width: min(320px, 85vw);
    background: var(--white);
    box-shadow: var(--shadow-lg);
    padding: 80px 1.5rem 2rem;
    overflow-y: auto;
    transition: right 0.35s cubic-bezier(0.25,0.8,0.25,1);
    z-index: 1001;
  }
  .main-navigation.open { right: 0; }
  .nav-menu { flex-direction: column; gap: 0; }
  .nav-menu .nav-item > .nav-link {
    display: flex; justify-content: space-between; align-items: center;
    padding: 0.85rem 0.5rem;
    border-bottom: 1px solid var(--border);
    border-radius: 0;
  }
  .nav-menu .nav-item > .nav-link::after { display: none; }
  .nav-menu .dropdown .dropdown-menu {
    position: static; box-shadow: none; border: none;
    background: var(--beige); border-radius: var(--radius);
    padding: 0.4rem 0;
    animation: none; display: none;
  }
  .nav-menu .dropdown.open .dropdown-menu { display: block; }
  .timeline::before { left: 16px; }
  .timeline-item { flex-direction: column !important; padding-left: 48px; }
  .timeline-dot { left: 16px; }
  .timeline-content { width: 100%; margin: 0 !important; }
}

@media (max-width: 767.98px) {
  .hero-slide { min-height: 500px; }
  .hero-title  { font-size: 2rem; }
  .hero-actions { flex-direction: column; align-items: center; }
  .hero-actions .btn { width: 100%; max-width: 280px; text-align: center; }
  .about-badge-float { display: none; }
  .section-padding { padding: 48px 0; }
  .header-spacer { height: var(--navbar-height); }
  .top-bar { display: none !important; }
  .involve-tabs-nav .involve-nav { gap: 0.25rem; }
  .involve-nav .nav-link { padding: 0.35rem 0.7rem; font-size: 0.78rem; }
  .contact-info-panel, .contact-form-panel { padding: 1.5rem; }
  .footer-main { padding: 48px 0 32px; }
  .gallery-masonry { columns: 2; }
}

@media (max-width: 575.98px) {
  .about-shape-1, .about-shape-2 { display: none; }
  .sticky-donate { display: none; }
  .gallery-masonry { columns: 1; }
  .hero-actions .btn-hero-primary,
  .hero-actions .btn-hero-secondary { font-size: 0.9rem; padding: 0.7rem 1.5rem; }
}

/* ── AOS overrides ──────────────────────────────────────── */
[data-aos] { pointer-events: none; }
[data-aos].aos-animate { pointer-events: auto; }

/* ── Swiper overrides ───────────────────────────────────── */
.partners-swiper { padding-bottom: 0 !important; }
.partners-swiper .swiper-slide { height: auto; }

/* ── Newsletter Standalone ──────────────────────────────── */
.newsletter-section-standalone { padding: 0; }
.newsletter-standalone-inner {
  background: linear-gradient(135deg, var(--secondary-dark), var(--brown));
  background-size: cover; background-position: center;
  border-radius: var(--radius-xl);
  padding: 80px 40px;
  position: relative;
  overflow: hidden;
}
.newsletter-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(58,96,35,0.88), rgba(61,43,31,0.85));
  border-radius: inherit;
}
.newsletter-inline-form .newsletter-input-group {
  display: flex; max-width: 520px; margin: 0 auto;
}
.newsletter-inline-form .newsletter-input {
  flex: 1; padding: 0.75rem 1.3rem;
  border: none; border-radius: 50px 0 0 50px;
  outline: none; font-family: var(--font-primary); font-size: 0.92rem;
}
.newsletter-privacy { font-size: 0.78rem; color: rgba(255,255,255,0.65); }
.newsletter-privacy i { color: var(--primary); }

/* ── Gallery Single ─────────────────────────────────────── */
.gallery-single-item { display: block; }
.gallery-single-grid .gallery-card { aspect-ratio: 4/3; }

/* ── Input Group Search ─────────────────────────────────── */
.search-form-inline .form-control {
  border-radius: 50px 0 0 50px !important;
  border: 1.5px solid var(--border);
  border-right: none;
  padding: 0.7rem 1.2rem;
  font-size: 0.95rem;
}
.search-form-inline .form-control:focus { border-color: var(--primary); box-shadow: none; }
.search-form-inline .btn { border-radius: 0 50px 50px 0 !important; }

/* ── ACF/CF7 misc ───────────────────────────────────────── */
.wpcf7 .wpcf7-spinner { display: none !important; }
.wpcf7 .wpcf7-response-output.wpcf7-mail-sent-ok {
  background: var(--secondary-light); border-color: var(--secondary);
  color: var(--secondary-dark);
}
.wpcf7 .wpcf7-response-output.wpcf7-validation-errors {
  background: #FFF3E0; border-color: var(--primary); color: var(--brown);
}

/* ── Media queries additions ────────────────────────────── */
@media (max-width: 767.98px) {
  .newsletter-standalone-inner { padding: 48px 24px; border-radius: var(--radius-lg); }
  .timeline { padding-left: 0; }
  .career-card-footer { flex-direction: column; }
}

/* ── Print styles ───────────────────────────────────────── */
@media print {
  .site-header, .site-footer, .sticky-donate, .whatsapp-float,
  .back-to-top, .preloader { display: none !important; }
  .section-padding { padding: 32px 0; }
  body { font-size: 12pt; color: #000; }
}

/* ============================================================
   DESIGN ENHANCEMENTS — Added for visual completeness
============================================================ */

/* ── Hero: animated default background ─────────────────── */
.hero-bg-default {
  background: linear-gradient(135deg, #3D2B1F 0%, #6B4C3B 30%, #4A7C2E 70%, #3A6023 100%);
  background-size: 400% 400%;
  animation: gradientShift 12s ease infinite;
}
@keyframes gradientShift {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
.hero-bg-particles { position: absolute; inset: 0; overflow: hidden; }
.hero-bg-particles span {
  position: absolute;
  display: block;
  width: 20px; height: 20px;
  background: rgba(245,166,35,0.15);
  border-radius: 50%;
  animation: floatParticle 10s infinite;
}
.hero-bg-particles span:nth-child(1)  { left:10%; top:20%; width:12px; height:12px; animation-delay:0s;   animation-duration:9s; }
.hero-bg-particles span:nth-child(2)  { left:25%; top:60%; width:20px; height:20px; animation-delay:1s;   animation-duration:12s; }
.hero-bg-particles span:nth-child(3)  { left:50%; top:15%; width:8px;  height:8px;  animation-delay:2s;   animation-duration:8s; }
.hero-bg-particles span:nth-child(4)  { left:70%; top:40%; width:16px; height:16px; animation-delay:0.5s; animation-duration:11s; }
.hero-bg-particles span:nth-child(5)  { left:85%; top:70%; width:10px; height:10px; animation-delay:3s;   animation-duration:14s; }
.hero-bg-particles span:nth-child(6)  { left:15%; top:80%; width:14px; height:14px; animation-delay:1.5s; animation-duration:10s; }
.hero-bg-particles span:nth-child(7)  { left:60%; top:80%; width:6px;  height:6px;  animation-delay:2.5s; animation-duration:7s; }
.hero-bg-particles span:nth-child(8)  { left:40%; top:50%; width:18px; height:18px; animation-delay:0.8s; animation-duration:13s; background:rgba(74,124,46,0.15); }
.hero-bg-particles span:nth-child(9)  { left:80%; top:10%; width:22px; height:22px; animation-delay:4s;   animation-duration:9s; }
.hero-bg-particles span:nth-child(10) { left:5%;  top:45%; width:10px; height:10px; animation-delay:1.2s; animation-duration:11s; background:rgba(255,255,255,0.08); }
@keyframes floatParticle {
  0%,100% { transform: translateY(0) scale(1); opacity: 0.6; }
  50%      { transform: translateY(-40px) scale(1.2); opacity: 1; }
}
.hero-overlay-default {
  background: linear-gradient(160deg, rgba(61,43,31,0.55) 0%, rgba(74,124,46,0.35) 100%);
}

/* ── Hero Stats Strip ───────────────────────────────────── */
.hero-stats-strip {
  display: flex;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
  margin-top: 2.5rem;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-xl);
  overflow: hidden;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}
.hero-stat-item {
  flex: 1;
  min-width: 120px;
  padding: 1rem 1.2rem;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.15);
  transition: var(--transition);
}
.hero-stat-item:last-child { border-right: none; }
.hero-stat-item:hover { background: rgba(255,255,255,0.08); }
.hero-stat-item strong {
  display: block;
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 0.2rem;
}
.hero-stat-item span {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.8);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.hero-badge-wrap { margin-bottom: 1rem; }

/* ── About: new stats row & floating card ───────────────── */
.about-stats-row {
  display: flex;
  gap: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  margin: 1.5rem 0 2rem;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}
.about-stat-item {
  flex: 1;
  padding: 1.2rem 0.8rem;
  text-align: center;
  border-right: 1px solid var(--border);
  transition: var(--transition);
}
.about-stat-item:last-child { border-right: none; }
.about-stat-item:hover { background: var(--primary-light); }
.about-stat-item i { display: block; font-size: 1.4rem; color: var(--primary); margin-bottom: 0.4rem; }
.stat-number { display: block; font-size: 1.5rem; font-weight: 900; color: var(--brown); line-height: 1; }
.stat-label  { font-size: 0.72rem; color: var(--text-muted); font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; }
.about-content .about-text { font-size: 0.96rem; line-height: 1.85; color: var(--text-muted); }

/* Floating cert card */
.about-floating-card {
  position: absolute;
  top: 24px; right: -20px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 1rem 1.2rem;
  box-shadow: var(--shadow);
  display: flex; flex-direction: column; align-items: center;
  text-align: center; min-width: 130px;
  z-index: 2;
  animation: floatCard 3s ease-in-out infinite;
}
.about-floating-card strong { font-size: 0.85rem; font-weight: 800; color: var(--brown); display: block; margin-top: 0.3rem; }
.about-floating-card span  { font-size: 0.7rem; color: var(--text-muted); }
@keyframes floatCard { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }

/* Better about shapes */
.about-shape-1 { width: 85%; height: 85%; top: -18px; left: -18px; background: var(--primary); opacity: 0.12; border-radius: var(--radius-lg); }
.about-shape-2 { width: 55%; height: 55%; bottom: -18px; right: -18px; background: var(--secondary); opacity: 0.12; border-radius: var(--radius-lg); }

/* ── Mission: enhanced tab design ──────────────────────── */
.mv-tab-content {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  overflow: hidden;
}
.mv-content { padding: 2.5rem 2rem; }
.mv-icon {
  width: 72px; height: 72px;
  background: linear-gradient(135deg, var(--primary-light), var(--beige));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem; color: var(--primary);
  margin: 0 auto 1.2rem;
}
.mv-text { font-size: 1.05rem; line-height: 1.9; color: var(--text-muted); max-width: 680px; margin: 0 auto; }

/* ── Impact: 6-col grid ─────────────────────────────────── */
.impact-section { background-attachment: scroll; }
@supports (background-attachment: fixed) {
  @media (min-width: 768px) { .impact-section { background-attachment: fixed; } }
}

/* ── Programs card: aspect ratio fix ───────────────────── */
.program-card-img { aspect-ratio: 16/10; }
.program-card-img img { width: 100%; height: 100%; object-fit: cover; }

/* ── Board/Team card: uniform aspect ratio ──────────────── */
.board-photo-wrap { aspect-ratio: 3/4; }
.team-photo-wrap  { aspect-ratio: 3/4; }
.board-photo, .team-photo { width: 100%; height: 100%; object-fit: cover; object-position: top; }

/* ── Testimonial card: consistent height ────────────────── */
.testimonials-swiper .swiper-slide { height: auto; }
.testimonial-card { height: 100%; display: flex; flex-direction: column; }
.testimonial-text { flex: 1; }

/* ── Get Involved gradient fix ──────────────────────────── */
.involve-section { background-attachment: scroll; }
@supports (background-attachment: fixed) {
  @media (min-width: 768px) { .involve-section { background-attachment: fixed; } }
}

/* ── News card image height ─────────────────────────────── */
.news-card-img { aspect-ratio: 16/10; overflow: hidden; }
.news-card-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.news-img-placeholder { aspect-ratio: 16/10; }

/* ── Partners: better name fallback display ─────────────── */
.partner-name-fallback {
  font-size: 0.9rem; font-weight: 700;
  color: var(--brown-light); text-align: center;
  padding: 0.5rem;
}

/* ── Section spacing on mobile ──────────────────────────── */
@media (max-width: 991.98px) {
  .hero-stats-strip { max-width: 100%; border-radius: var(--radius); }
  .hero-stat-item { min-width: 80px; padding: 0.8rem 0.5rem; }
  .hero-stat-item strong { font-size: 1.2rem; }
  .about-floating-card { display: none; }
  .about-content { padding-left: 0; }
}
@media (max-width: 575.98px) {
  .hero-stats-strip { display: grid; grid-template-columns: 1fr 1fr; }
  .hero-stat-item { border-right: 1px solid rgba(255,255,255,0.15); border-bottom: 1px solid rgba(255,255,255,0.15); }
  .about-stats-row { display: grid; grid-template-columns: 1fr 1fr; }
  .about-stat-item:nth-child(odd) { border-right: 1px solid var(--border); }
  .about-stat-item { border-bottom: 1px solid var(--border); }
}

/* ============================================================
   FOOTER REDESIGN — Complete footer styles
============================================================ */

/* ── Newsletter banner ──────────────────────────────────── */
.footer-newsletter {
  background: linear-gradient(135deg, var(--secondary-dark) 0%, var(--brown) 100%);
  padding: 56px 0;
}
.newsletter-banner-text .newsletter-title {
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}
.newsletter-banner-text .newsletter-text {
  color: rgba(255,255,255,0.78);
  font-size: 0.9rem;
  margin: 0;
}
.footer-nl-form .newsletter-input-group { display: flex; }
.footer-nl-form .newsletter-input {
  flex: 1;
  border: none;
  border-radius: 50px 0 0 50px;
  padding: 0.75rem 1.3rem;
  font-family: var(--font-primary);
  font-size: 0.9rem;
  outline: none;
}
.nl-privacy { font-size: 0.76rem; color: rgba(255,255,255,0.55); margin: 0; }
.nl-privacy i { color: var(--primary); }

/* ── Footer logo ────────────────────────────────────────── */
.footer-logo-img { max-height: 72px; width: auto; filter: brightness(0) invert(1); }
.footer-text-logo {
  display: flex; align-items: center; gap: 0.8rem;
  text-decoration: none;
}
.footer-logo-icon {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; color: var(--white);
  flex-shrink: 0;
}
.footer-logo-hindi {
  display: block;
  font-family: var(--font-hindi), sans-serif;
  font-size: 1.1rem; font-weight: 700;
  color: var(--primary); line-height: 1.1;
}
.footer-logo-eng {
  display: block;
  font-size: 0.65rem; font-weight: 800;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.7);
}

/* ── Footer about ───────────────────────────────────────── */
.footer-about-text {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.85;
  margin: 1rem 0;
}
.footer-reg-info p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 0.3rem;
}

/* ── Footer socials ─────────────────────────────────────── */
.footer-socials { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.footer-socials .social-icon {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.8);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.82rem;
  transition: var(--transition);
  text-decoration: none;
}
.footer-socials .social-icon:hover { transform: translateY(-3px); color: var(--white); }
.footer-socials .social-icon.social-facebook:hover  { background: #1877F2; border-color: #1877F2; }
.footer-socials .social-icon.social-instagram:hover { background: linear-gradient(45deg,#f09433,#dc2743,#bc1888); border-color: #dc2743; }
.footer-socials .social-icon.social-linkedin:hover  { background: #0A66C2; border-color: #0A66C2; }
.footer-socials .social-icon.social-youtube:hover   { background: #FF0000; border-color: #FF0000; }
.footer-socials .social-icon.social-twitter:hover   { background: #000;    border-color: #000; }

/* ── Footer menu ────────────────────────────────────────── */
.footer-menu { list-style: none; padding: 0; margin: 0; }
.footer-menu li { margin-bottom: 0.65rem; }
.footer-menu a {
  color: rgba(255,255,255,0.68);
  font-size: 0.875rem;
  transition: var(--transition);
  display: flex; align-items: center;
  text-decoration: none;
}
.footer-menu a i { font-size: 0.6rem; color: var(--primary); transition: var(--transition); }
.footer-menu a:hover { color: var(--primary); padding-left: 4px; }
.footer-menu a:hover i { transform: translateX(3px); }
.footer-view-all-link {
  color: var(--primary) !important;
  font-weight: 700; font-size: 0.82rem !important;
  text-decoration: none;
}
.footer-view-all-link:hover { color: var(--white) !important; }

/* ── Footer contact list ────────────────────────────────── */
.footer-contact-list { list-style: none; padding: 0; margin: 0 0 1.5rem; }
.footer-contact-list li {
  display: flex; gap: 0.85rem; align-items: flex-start;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-contact-list li:last-child { border-bottom: none; }
.fc-icon {
  width: 36px; height: 36px; flex-shrink: 0;
  background: rgba(245,166,35,0.15);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--primary); font-size: 0.85rem;
}
.footer-contact-list strong {
  display: block; font-size: 0.72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.06em;
  color: rgba(255,255,255,0.5); margin-bottom: 0.15rem;
}
.footer-contact-list span,
.footer-contact-list a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.8);
  text-decoration: none; line-height: 1.5;
}
.footer-contact-list a:hover { color: var(--primary); }

/* ── Donate button in footer ────────────────────────────── */
.btn-footer-donate {
  display: inline-flex; align-items: center;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white) !important;
  border-radius: 50px;
  padding: 0.65rem 1.6rem;
  font-weight: 700; font-size: 0.9rem;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(245,166,35,0.35);
  transition: var(--transition);
}
.btn-footer-donate:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(245,166,35,0.5);
  color: var(--white) !important;
}
.footer-donate-cta { text-align: center; }
.footer-donate-cta p { color: rgba(255,255,255,0.65); }

/* ── Widget title ───────────────────────────────────────── */
.widget-title {
  font-size: 0.95rem; font-weight: 800;
  color: var(--white);
  text-transform: uppercase; letter-spacing: 0.1em;
  margin-bottom: 1.4rem;
  padding-bottom: 0.65rem;
  position: relative;
}
.widget-title::after {
  content: '';
  position: absolute; bottom: 0; left: 0;
  width: 36px; height: 2px;
  background: var(--primary);
  border-radius: 2px;
}

/* ── Footer bottom ──────────────────────────────────────── */
.footer-bottom {
  background: rgba(0,0,0,0.3);
  padding: 1.1rem 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.copyright { font-size: 0.82rem; color: rgba(255,255,255,0.5); margin: 0; }
.footer-bottom-links {
  display: flex; align-items: center; justify-content: flex-end;
  gap: 0.6rem; flex-wrap: wrap;
  font-size: 0.8rem; color: rgba(255,255,255,0.45);
}
.footer-bottom-links a {
  color: rgba(255,255,255,0.55);
  text-decoration: none; transition: var(--transition);
}
.footer-bottom-links a:hover { color: var(--primary); }
.footer-bottom-links .sep { opacity: 0.3; }

/* ── Footer responsive ──────────────────────────────────── */
@media (max-width: 767.98px) {
  .footer-newsletter { padding: 40px 0; }
  .footer-main { padding: 48px 0 32px; }
  .footer-bottom-links { justify-content: center; }
  .copyright { text-align: center; margin-bottom: 0.5rem; }
}

/* ============================================================
   PAGE BANNER ENHANCEMENTS + INNER PAGE STYLES
============================================================ */

/* ── Page banner ────────────────────────────────────────── */
.page-banner {
  position: relative;
  padding: 90px 0 30px;
  min-height: 160px;
  display: flex; align-items: center;
  background: linear-gradient(135deg, var(--brown) 0%, var(--secondary-dark) 100%);
  background-size: cover; background-position: center;
  overflow: hidden;
}
.page-banner.has-image { background-color: var(--brown); }
.page-banner-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(61,43,31,0.80) 0%, rgba(74,124,46,0.65) 100%);
}
.page-banner-content { position: relative; z-index: 2; }
.page-banner-tag {
  display: inline-block;
  background: rgba(245,166,35,0.25);
  color: var(--primary);
  border: 1px solid rgba(245,166,35,0.4);
  border-radius: 50px;
  padding: 3px 14px;
  font-size: 0.72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}
.page-title {
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  font-weight: 800; color: var(--white);
  margin-bottom: 0.4rem; line-height: 1.2;
}
.page-banner-wave {
  position: absolute; bottom: 0; left: 0; right: 0;
  line-height: 0;
}
.page-banner-wave svg { display: block; width: 100%; height: 40px; }

/* ── About page: overview section ──────────────────────── */
.about-overview-content p {
  color: var(--text-muted); line-height: 1.85; margin-bottom: 1rem;
}
.about-overview-content p:last-child { margin-bottom: 0; }

/* ── MVV cards (about page) ─────────────────────────────── */
.mvv-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow-sm);
  height: 100%; text-align: center;
  border-top: 4px solid transparent;
  transition: var(--transition);
}
.mvv-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.mvv-mission  { border-top-color: var(--primary); }
.mvv-vision   { border-top-color: var(--secondary); }
.mvv-approach { border-top-color: var(--brown); }
.mvv-card .mvv-icon {
  width: 72px; height: 72px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem; margin: 0 auto 1.2rem;
}
.mvv-mission .mvv-icon  { background: var(--primary-light); color: var(--primary); }
.mvv-vision  .mvv-icon  { background: var(--secondary-light); color: var(--secondary); }
.mvv-approach .mvv-icon { background: var(--beige-dark); color: var(--brown); }
.mvv-card h3 { font-size: 1.2rem; font-weight: 800; margin-bottom: 0.8rem; color: var(--brown); }
.mvv-text { font-size: 0.9rem; color: var(--text-muted); line-height: 1.85; }

/* ── Timeline: responsive ───────────────────────────────── */
.timeline { position: relative; padding: 1rem 0; }
.timeline::before {
  content: ''; position: absolute; left: 50%; top: 0; bottom: 0;
  width: 2px; background: linear-gradient(to bottom, var(--primary), var(--secondary));
  transform: translateX(-50%); border-radius: 2px;
}
.timeline-item { display: flex; margin-bottom: 3rem; position: relative; }
.timeline-left  { flex-direction: row; }
.timeline-right { flex-direction: row-reverse; }
.timeline-dot {
  position: absolute; left: 50%; top: 18px;
  width: 18px; height: 18px;
  background: var(--primary); border-radius: 50%;
  border: 3px solid var(--white);
  box-shadow: 0 0 0 4px rgba(245,166,35,0.3);
  transform: translateX(-50%); z-index: 1;
}
.timeline-content {
  width: calc(50% - 40px);
  background: var(--white); border-radius: var(--radius-lg);
  padding: 1.5rem 1.8rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: var(--transition);
}
.timeline-content:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.timeline-left  .timeline-content { margin-right: 40px; }
.timeline-right .timeline-content { margin-left:  40px; }
.timeline-year {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white); font-size: 0.78rem; font-weight: 800;
  padding: 3px 12px; border-radius: 50px; margin-bottom: 0.6rem;
}
.timeline-title { font-size: 1rem; font-weight: 700; color: var(--brown); margin-bottom: 0.3rem; }
.timeline-desc  { font-size: 0.85rem; color: var(--text-muted); margin: 0; line-height: 1.7; }

@media (max-width: 767.98px) {
  .timeline::before { left: 16px; }
  .timeline-item { flex-direction: column !important; padding-left: 50px; }
  .timeline-dot  { left: 16px; transform: none; }
  .timeline-content { width: 100%; margin: 0 !important; }
}

/* ── Contact page improvements ───────────────────────────── */
.contact-info-panel { background: var(--beige); border-radius: var(--radius-lg); padding: 2.5rem; height: 100%; }
.contact-info-title { font-size: 1.6rem; font-weight: 800; margin-bottom: 0.5rem; color: var(--brown); }
.contact-detail-item { display: flex; gap: 1rem; align-items: flex-start; padding: 1rem 0; border-bottom: 1px solid var(--border); }
.contact-detail-item:last-child { border-bottom: none; }
.contact-detail-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  color: var(--white); font-size: 0.9rem;
}
.contact-detail-item strong { display: block; font-size: 0.78rem; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 0.15rem; }
.contact-detail-item p, .contact-detail-item a { font-size: 0.9rem; color: var(--brown); margin: 0; text-decoration: none; }
.contact-detail-item a:hover { color: var(--primary); }
.contact-form-panel { background: var(--white); border-radius: var(--radius-lg); padding: 2.5rem; box-shadow: var(--shadow); }
.contact-form-title { font-size: 1.6rem; font-weight: 800; margin-bottom: 1.5rem; color: var(--brown); }

/* ── Inner page entry content ────────────────────────────── */
.entry-content h2 { font-size: 1.6rem; font-weight: 800; color: var(--brown); margin: 2rem 0 1rem; }
.entry-content h3 { font-size: 1.3rem; font-weight: 700; color: var(--brown); margin: 1.5rem 0 0.75rem; }
.entry-content p  { color: var(--text-muted); line-height: 1.85; margin-bottom: 1.2rem; }
.entry-content ul, .entry-content ol { color: var(--text-muted); line-height: 2; padding-left: 1.5rem; margin-bottom: 1.2rem; }
.entry-content img { border-radius: var(--radius); margin: 1rem 0; }
.entry-content blockquote {
  border-left: 4px solid var(--primary);
  background: var(--primary-light);
  padding: 1.2rem 1.5rem;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 1.5rem 0; font-style: italic; color: var(--brown);
}
.entry-content a { color: var(--primary); }
.entry-content a:hover { color: var(--primary-dark); text-decoration: underline; }

/* ── Program single page ─────────────────────────────────── */
.program-description { font-size: 0.96rem; line-height: 1.9; color: var(--text-muted); }
.program-objectives h3 { font-size: 1.2rem; font-weight: 700; color: var(--brown); margin-bottom: 1rem; }
.objectives-content { font-size: 0.9rem; color: var(--text-muted); line-height: 1.85; }
.gallery-thumb-img { width:100%; height:90px; object-fit:cover; border-radius:var(--radius); transition:var(--transition); }
.gallery-thumb-img:hover { transform: scale(1.05); }

/* ── Get involved: tab active indicator ─────────────────── */
.involve-nav .nav-link {
  border-radius: 50px; padding: 0.5rem 1.2rem;
  color: var(--brown); font-weight: 600; font-size: 0.85rem;
  border: 1.5px solid var(--border); background: var(--white);
  transition: var(--transition);
}
.involve-nav .nav-link.active,
.involve-nav .nav-link:hover { background: var(--primary); border-color: var(--primary); color: var(--white); }

/* ── Gallery page enhancements ───────────────────────────── */
.gallery-single-grid .gallery-card { aspect-ratio: unset; height: 220px; }
.gallery-item .gallery-card { height: 200px; }
.gallery-item .gallery-img  { height: 100%; width: 100%; object-fit: cover; }

/* ── Media page: search input group ─────────────────────── */
.input-group-text { background: var(--white); border: 1.5px solid var(--border); border-right: none; color: var(--text-muted); }
#mediaSearch { border-left: none; }
#mediaSearch:focus { border-color: var(--primary); box-shadow: none; }

/* ── Careers card polish ─────────────────────────────────── */
.career-card-header { padding: 1.3rem 1.3rem 0.5rem; }
.career-card-body   { padding: 0.5rem 1.3rem 1rem; }

@media (max-width: 767.98px) {
  .page-banner { padding: 80px 0 24px; min-height: 130px; }
  .contact-info-panel, .contact-form-panel { padding: 1.5rem; }
  .about-image-wrapper { margin-bottom: 2rem; }
}

/* ── Team group labels ──────────────────────────────────── */
.team-group-label {
  font-size: 0.85rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--text-muted);
  display: flex; align-items: center; justify-content: center;
}
.team-group-label i { font-size: 1rem; }
.team-card--featured .team-photo-wrap { aspect-ratio: 1/1; }
.team-card--featured .team-photo     { object-position: top center; }
.team-designation--leader {
  color: var(--primary); font-weight: 700;
  background: var(--primary-light);
  display: inline-block;
  padding: 2px 10px; border-radius: 50px;
  font-size: 0.78rem;
}

/* ── Programs: Other Activities strip ───────────────────── */
.other-activities-strip {
  background: var(--beige);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.2rem 1.5rem;
  display: flex; align-items: center; gap: 1rem; flex-wrap: wrap;
}
.strip-label {
  font-size: 0.8rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--brown); white-space: nowrap; margin: 0;
}
.activity-chip {
  display: inline-flex; align-items: center; gap: 0.4rem;
  background: var(--white);
  border: 1.5px solid var(--border);
  color: var(--brown);
  border-radius: 50px; padding: 0.3rem 0.9rem;
  font-size: 0.8rem; font-weight: 600;
  transition: var(--transition);
}
.activity-chip:hover { border-color: var(--secondary); color: var(--secondary); }
.activity-chip i { color: var(--secondary); font-size: 0.75rem; }

/* ── Impact: tracking-wide utility ──────────────────────── */
.tracking-wide { letter-spacing: 0.1em; }

/* ── Pillar Cards (About page) ──────────────────────────── */
.pillar-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  height: 100%;
  position: relative;
  transition: var(--transition);
  overflow: hidden;
}
.pillar-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
}
.pillar-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.pillar-number {
  position: absolute; top: 1.2rem; right: 1.2rem;
  font-size: 3rem; font-weight: 900;
  color: var(--beige-dark); line-height: 1;
}
.pillar-icon {
  width: 60px; height: 60px;
  background: linear-gradient(135deg, var(--primary-light), var(--beige));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; color: var(--primary);
  margin-bottom: 1rem;
  transition: var(--transition);
}
.pillar-card:hover .pillar-icon { background: linear-gradient(135deg, var(--primary), var(--primary-dark)); color: var(--white); }
.pillar-title { font-size: 1rem; font-weight: 800; color: var(--brown); margin-bottom: 0.75rem; }
.pillar-desc  { font-size: 0.84rem; color: var(--text-muted); line-height: 1.8; margin: 0; }

/* ============================================================
   PRECISE TEXT COLOR RULES
   BLACK  → light-background sections (cards, content, forms)
   WHITE  → dark-background sections (hero, impact, footer, banners)
============================================================ */

/* ── Base body text ─────────────────────────────────────── */
body { color: #000000; }

/* ── LIGHT-BACKGROUND SECTIONS → black text ─────────────── */
/* About, Mission, Programs, Team, Advisory, Testimonials,
   Partners, News, Gallery, Contact, Careers, Media, Search */
.about-preview-section,
.mission-section,
.programs-section,
.advisory-section,
.team-section,
.testimonials-section,
.partners-section,
.news-section,
.timeline-section,
.values-section,
.pillars-section,
.about-overview,
.mvv-section,
.contact-section,
.gallery-archive,
.gallery-page,
.media-archive,
.media-page,
.involve-content,
.programs-archive,
.careers-grid,
.single-program,
.single-media,
.single-career,
.single-gallery,
.single-post,
.single-page,
.page-content,
.search-results-page .container,
.error-404-section,
.sidebar-card,
.program-card,
.news-card,
.team-card,
.board-card,
.mission-card,
.pillar-card,
.value-card,
.testimonial-card,
.career-card,
.timeline-content,
.contact-info-panel,
.contact-form-panel,
.bank-details-box,
.program-sidebar,
.member-modal .modal-body,
.about-content,
.mvv-card {
  color: #000000;
}

/* All headings in light sections */
.about-preview-section h1,.about-preview-section h2,.about-preview-section h3,.about-preview-section h4,.about-preview-section h5,
.mission-section h1,.mission-section h2,.mission-section h3,.mission-section h4,
.programs-section h1,.programs-section h2,.programs-section h3,.programs-section h4,
.advisory-section h1,.advisory-section h2,.advisory-section h3,.advisory-section h4,
.team-section h1,.team-section h2,.team-section h3,.team-section h4,
.testimonials-section h1,.testimonials-section h2,.testimonials-section h3,
.partners-section h1,.partners-section h2,.partners-section h3,
.news-section h1,.news-section h2,.news-section h3,.news-section h4,
.timeline-section h2,.timeline-section h3,.timeline-section h4,
.values-section h2,.values-section h3,.values-section h4,
.pillars-section h2,.pillars-section h3,.pillars-section h4,
.about-overview h2,.about-overview h3,.about-overview h4,
.mvv-section h2,.mvv-section h3,.mvv-card h3,
.contact-section h2,.contact-section h3,.contact-section h4,
.involve-content h2,.involve-content h3,.involve-content h4,
.page-content h1,.page-content h2,.page-content h3,.page-content h4,
.single-program h1,.single-program h2,.single-program h3,
.single-media h1,.single-media h2,.single-media h3,
.program-card h3,.program-card h4,.program-card-title,.program-card-title a,
.news-card h3,.news-card h4,.news-card-title,.news-card-title a,
.team-card h4,.team-name,
.board-card h4,.board-name,
.mission-card h3,.mission-card-title,
.pillar-card h4,.pillar-title,
.value-card h4,.value-title,
.testimonial-card .author-name,
.timeline-content h4,.timeline-title,
.sidebar-card h4,
.contact-info-title,.contact-form-title,
.career-position,.career-card h4,
.related-title,
.member-modal h5 { color: #000000 !important; }

/* Paragraphs/spans in light sections */
.about-text p, .about-text,
.about-overview-content p, .about-overview-content,
.mvv-text, .mvv-card p,
.mission-card-text,
.pillar-desc,
.value-desc,
.timeline-desc,
.program-card-excerpt,
.news-card-excerpt,
.testimonial-text,
.section-subtitle:not(.text-white),
.contact-intro, .contact-detail-item p, .contact-detail-item span,
.member-bio, .member-bio p,
.career-card-body p, .career-meta span,
.program-description, .objectives-content,
.program-meta span, .news-meta span, .post-meta span,
.board-info p, .team-info p,
.about-stat-item .stat-label, .stat-number,
.mini-stat-label, .mini-stat-number,
.activity-chip,
.impact-stat-label, .impact-stat-number,
.page-intro, .search-result-count,
.entry-content p, .entry-content li, .entry-content span,
.wpcf7-form label,
.newsletter-banner-text .newsletter-text { color: #000000 !important; }

/* Section headings on light backgrounds */
.section-title:not(.text-white) { color: #000000 !important; }
.section-tagline { color: var(--primary) !important; }
.section-tagline.light { color: rgba(255,255,255,0.9) !important; }

/* Header nav — brown on light header */
.nav-menu .nav-item > .nav-link { color: var(--brown) !important; }
.nav-menu .nav-item > .nav-link:hover,
.nav-menu .nav-item.active > .nav-link { color: var(--primary) !important; }
.dropdown-menu .dropdown-item { color: var(--brown) !important; }

/* ── DARK-BACKGROUND SECTIONS → white text ──────────────── */
/* Hero, Impact, Get-Involved, About Impact strip,
   Page Banners, Footer, Newsletter, Top Bar */

/* Hero — all white */
.hero-section *:not(.hero-badge) { color: #ffffff; }
.hero-badge { color: var(--primary) !important; }
.hero-title { color: #ffffff !important; }
.hero-subtitle { color: rgba(255,255,255,0.92) !important; }
.hero-stat-item strong { color: var(--primary) !important; }
.hero-stat-item span { color: rgba(255,255,255,0.82) !important; }

/* Impact section — white */
.impact-section,
.impact-section * { color: #ffffff !important; }
.impact-icon i { color: var(--primary) !important; }
.impact-number .counter-up,
.impact-number span { color: #ffffff !important; }
.impact-label { color: rgba(255,255,255,0.85) !important; }
.achievement-badge { color: #ffffff !important; }
.achievement-badge span { color: #ffffff !important; }
.impact-section .section-title { color: #ffffff !important; }
.impact-section .section-subtitle { color: rgba(255,255,255,0.85) !important; }
.impact-section .section-tagline { color: var(--primary) !important; }

/* About impact section (about page dark strip) */
.about-impact-section,
.about-impact-section * { color: #ffffff !important; }
.about-impact-section .section-title { color: #ffffff !important; }
.about-impact-section .section-tagline { color: var(--primary) !important; }

/* Get Involved section */
.involve-section,
.involve-section * { color: #ffffff !important; }
.involve-section .section-title { color: #ffffff !important; }
.involve-section .section-tagline { color: var(--primary) !important; }

/* Page banners */
.page-banner,
.page-banner * { color: #ffffff !important; }
.page-banner .page-title { color: #ffffff !important; }
.page-banner .page-banner-tag { color: var(--primary) !important; }
.page-banner .breadcrumb-item a { color: rgba(255,255,255,0.8) !important; }
.page-banner .breadcrumb-item.active { color: var(--primary) !important; }
.page-banner .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,0.4) !important; }

/* Top bar */
.top-bar,
.top-bar * { color: rgba(255,255,255,0.82) !important; }
.top-bar a:hover { color: var(--primary) !important; }

/* Footer newsletter banner */
.footer-newsletter,
.footer-newsletter .newsletter-title { color: #ffffff !important; }
.footer-newsletter .newsletter-text,
.footer-newsletter .nl-privacy { color: rgba(255,255,255,0.78) !important; }
.footer-newsletter .section-tagline { color: var(--primary) !important; }
.footer-newsletter .nl-privacy i { color: var(--primary) !important; }

/* Main footer */
.site-footer,
.footer-main { color: rgba(255,255,255,0.82); }
.footer-widget .widget-title { color: #ffffff !important; }
.footer-about-text, .footer-about-text p { color: rgba(255,255,255,0.72) !important; }
.footer-reg-info p { color: rgba(255,255,255,0.5) !important; }
.footer-socials .social-icon { color: rgba(255,255,255,0.78) !important; }
.footer-menu a { color: rgba(255,255,255,0.72) !important; }
.footer-menu a:hover { color: var(--primary) !important; }
.footer-view-all-link { color: var(--primary) !important; }
.footer-contact-list li { color: rgba(255,255,255,0.78) !important; }
.footer-contact-list strong { color: rgba(255,255,255,0.5) !important; }
.footer-contact-list span,
.footer-contact-list a { color: rgba(255,255,255,0.78) !important; }
.footer-contact-list a:hover { color: var(--primary) !important; }
.fc-icon i { color: var(--primary) !important; }
.footer-logo-hindi { color: var(--primary) !important; }
.footer-logo-eng { color: rgba(255,255,255,0.65) !important; }

/* Footer bottom bar */
.footer-bottom { color: rgba(255,255,255,0.5); }
.copyright { color: rgba(255,255,255,0.5) !important; }
.footer-bottom-links,
.footer-bottom-links span { color: rgba(255,255,255,0.5) !important; }
.footer-bottom-links a { color: rgba(255,255,255,0.55) !important; }
.footer-bottom-links a:hover { color: var(--primary) !important; }
.footer-credits { color: rgba(255,255,255,0.5) !important; }

/* ── Accent / link colors ────────────────────────────────── */
.news-read-more { color: var(--primary) !important; }
.news-read-more:hover { color: var(--primary-dark) !important; }
.news-cat-badge { color: #ffffff !important; }
.program-cat-badge { color: #ffffff !important; }
.news-type-badge { color: #ffffff !important; }
.board-designation { color: var(--primary) !important; }
.team-designation { color: var(--text-muted) !important; }
.team-designation--leader { color: var(--primary) !important; }
.career-type-badge { color: var(--secondary-dark) !important; }
.strip-label { color: var(--brown) !important; }
.timeline-year { color: #ffffff !important; }
.pillar-number { color: var(--beige-dark) !important; }
.contact-detail-item strong { color: var(--text-muted) !important; }
