/* ============================================================
   Brajavaasee Vikaas Parishad — Green & White Design System
   Modern | Professional | Attractive | Unique Sections
   ============================================================ */

/* ---- CSS Variables (Green/White Theme) ---- */
:root {
  --primary:        #16A34A;
  --primary-dark:   #15803D;
  --primary-light:  #22C55E;
  --primary-50:     #F0FDF4;
  --primary-100:    #DCFCE7;
  --primary-200:    #BBF7D0;
  --secondary-light:#86EFAC;
  --accent:         #F59E0B;
  --accent-dark:    #D97706;
  --accent-light:   #FCD34D;
  --dark:           #0F172A;
  --darker:         #0F172A;
  --dark-2:         #1E293B;
  --gray:           #6B7280;
  --gray-light:     #E5E7EB;
  --gray-lighter:   #F9FAFB;
  --white:          #FFFFFF;
  --success: #16A34A;
  --info:    #0EA5E9;
  --warning: #F59E0B;
  --danger:  #EF4444;
  --shadow-xs:  0 1px 2px rgba(0,0,0,.05);
  --shadow:     0 4px 6px -1px rgba(0,0,0,.07), 0 2px 4px -1px rgba(0,0,0,.04);
  --shadow-md:  0 10px 15px -3px rgba(0,0,0,.08), 0 4px 6px -2px rgba(0,0,0,.05);
  --shadow-lg:  0 20px 25px -5px rgba(0,0,0,.08), 0 10px 10px -5px rgba(0,0,0,.04);
  --shadow-xl:  0 25px 50px -12px rgba(0,0,0,.12);
  --shadow-2xl: 0 40px 80px -20px rgba(0,0,0,.18);
  --shadow-green: 0 8px 25px rgba(22,163,74,.25);
  --shadow-accent: 0 8px 25px rgba(245,158,11,.3);
  --radius:    10px;
  --radius-sm: 6px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;
  --transition:      all .3s cubic-bezier(.4,0,.2,1);
  --transition-fast: all .15s cubic-bezier(.4,0,.2,1);
  --transition-slow: all .5s cubic-bezier(.4,0,.2,1);
  --font-main:    'Poppins', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-display: 'Playfair Display', 'Georgia', serif;
  --section-py:    90px;
  --section-py-sm: 60px;
}

/* Base */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
html, body { overflow-x: clip; }
body { font-family: var(--font-main); color: var(--dark-2); background: var(--white); line-height: 1.7; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; transition: var(--transition); color: inherit; }
h1,h2,h3,h4,h5,h6 { font-weight: 700; line-height: 1.25; color: var(--dark); }
p { line-height: 1.75; }
::selection { background: rgba(22,163,74,.15); color: var(--primary); }
/* Devanagari text inherits a legible Hindi font */
:lang(hi), [style*="Noto Sans Devanagari"] { font-family: 'Noto Sans Devanagari', var(--font-main); }
/* Prevent icons from being overridden by language fonts */
.fas, .fab, .far, .fal, .fad, .fat, [class^="fa-"], [class*=" fa-"] {
  font-family: "Font Awesome 6 Free", "Font Awesome 6 Brands" !important;
}

/* Preloader */
#preloader { position: fixed; inset: 0; z-index: 99999; background: var(--white); display: flex; align-items: center; justify-content: center; transition: opacity .5s ease; }
.preloader-inner { text-align: center; }
.preloader-logo { width: 80px; height: 80px; border-radius: 22px; background: linear-gradient(135deg, var(--primary), var(--primary-dark)); display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; animation: preloaderPulse 2s ease-in-out infinite; box-shadow: 0 0 40px rgba(22,163,74,.35); }
.preloader-logo i { font-size: 32px; color: white; }
.preloader-text { font-size: .75rem; color: var(--gray); letter-spacing: 2px; text-transform: uppercase; margin-bottom: 16px; font-weight: 600; }
.preloader-dots { display: flex; gap: 10px; justify-content: center; }
.preloader-dots span { width: 8px; height: 8px; border-radius: 50%; animation: dot-bounce 1.4s infinite ease-in-out; }
.preloader-dots span:nth-child(1) { background: var(--primary-light); animation-delay: 0s; }
.preloader-dots span:nth-child(2) { background: var(--primary); animation-delay: .2s; }
.preloader-dots span:nth-child(3) { background: var(--accent); animation-delay: .4s; }
@keyframes dot-bounce { 0%,80%,100% { transform: scale(0); opacity: .3; } 40% { transform: scale(1); opacity: 1; } }
@keyframes preloaderPulse { 0%,100% { transform: scale(1); box-shadow: 0 0 40px rgba(22,163,74,.35); } 50% { transform: scale(1.08); box-shadow: 0 0 60px rgba(22,163,74,.6); } }

/* ============================================================ HINDI TICKER / MARQUEE ============================================================ */
.bvp-ticker { background: linear-gradient(90deg, #7C1D1D, #991B1B 40%, #A52828); color: #FFF7ED; font-size: .8rem; font-family: 'Noto Sans Devanagari', 'Poppins', sans-serif; overflow: hidden; border-bottom: 2px solid rgba(245,158,11,.5); position: relative; z-index: 1020; }
.bvp-ticker-label { background: var(--accent); color: #111; font-weight: 700; padding: 8px 18px; font-size: .76rem; letter-spacing: .5px; flex-shrink: 0; white-space: nowrap; font-family: 'Poppins', sans-serif; text-transform: uppercase; }
.bvp-ticker-track { overflow: hidden; flex: 1; padding: 7px 0; }
.bvp-ticker-inner { display: flex; gap: 0; white-space: nowrap; animation: ticker-scroll 55s linear infinite; }
.bvp-ticker-inner span { padding-right: 80px; letter-spacing: .3px; }
@keyframes ticker-scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
.bvp-ticker:hover .bvp-ticker-inner { animation-play-state: paused; }

/* ============================================================ TOPBAR ============================================================ */
.topbar { background: #0F172A; color: rgba(255,255,255,.85); font-size: .8rem; padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,.08); position: relative; z-index: 1050; }
.topbar-contact { display: flex; align-items: center; gap: 20px; }
.topbar-link { color: rgba(255,255,255,.8); display: flex; align-items: center; gap: 6px; font-size: .78rem; transition: var(--transition); white-space: nowrap; }
.topbar-link:hover { color: var(--accent-light); }
.topbar-icon { width: 20px; height: 20px; border-radius: 50%; background: rgba(255,255,255,.15); display: inline-flex; align-items: center; justify-content: center; font-size: .65rem; color: var(--accent-light); flex-shrink: 0; }
.topbar-social { display: flex; align-items: center; gap: 4px; }
.topbar-social a { width: 26px; height: 26px; border-radius: 6px; background: rgba(255,255,255,.12); color: rgba(255,255,255,.7); display: inline-flex; align-items: center; justify-content: center; font-size: .7rem; transition: var(--transition); }
.topbar-social a:hover { background: var(--accent); color: white; transform: translateY(-2px); }
.topbar-divider { width: 1px; height: 18px; background: rgba(255,255,255,.2); margin: 0 4px; }
.topbar-auth-btn { padding: 4px 14px; border-radius: 20px; font-size: .77rem; font-weight: 600; transition: var(--transition); display: inline-flex; align-items: center; gap: 4px; }
.topbar-auth-login { border: 1px solid rgba(255,255,255,.3); color: rgba(255,255,255,.85); }
.topbar-auth-login:hover { background: rgba(255,255,255,.15); color: white; }
.topbar-auth-register { background: var(--accent); color: white; border: 1px solid transparent; }
.topbar-auth-register:hover { transform: translateY(-2px); color: white; box-shadow: 0 4px 12px rgba(245,158,11,.4); }
.topbar-auth-dashboard { background: rgba(255,255,255,.15); color: white; border: 1px solid rgba(255,255,255,.3); }
.topbar-auth-dashboard:hover { background: rgba(255,255,255,.25); color: white; }

/* ============================================================ NAVBAR (WHITE) ============================================================ */
#mainNav { background: var(--white); padding: 12px 0; transition: padding .4s ease, background .4s ease, box-shadow .4s ease; box-shadow: 0 2px 20px rgba(0,0,0,.08); border-bottom: 3px solid var(--primary); width: 100%; top: 0; z-index: 1040; }
#mainNav.scrolled { background: rgba(255,255,255,.97); padding: 8px 0; box-shadow: 0 4px 30px rgba(0,0,0,.1); z-index: 1040; margin-top: -1px; }
@media (min-width: 1200px) {
  #mainNav.scrolled { backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); }
}
.brand-wrap { display: flex; align-items: center; gap: 12px; }
.brand-logo-img { height: 44px; width: auto; object-fit: contain; border-radius: 8px; }
.brand-icon { width: 44px; height: 44px; border-radius: 12px; flex-shrink: 0; background: linear-gradient(135deg, var(--primary), var(--primary-dark)); display: flex; align-items: center; justify-content: center; font-size: 1.3rem; color: white; }
.brand-text { display: flex; flex-direction: column; line-height: 1.25; }
.brand-name { font-size: .92rem; font-weight: 700; color: var(--dark); white-space: nowrap; }
.brand-tagline { font-size: .62rem; color: var(--primary); font-weight: 600; letter-spacing: .5px; white-space: nowrap; }
.navbar-nav .nav-link { color: var(--dark-2) !important; font-size: .87rem; font-weight: 500; padding: 8px 13px !important; border-radius: 8px; transition: var(--transition); position: relative; }
.navbar-nav .nav-link:hover { color: var(--primary) !important; background: var(--primary-50); }
.navbar-nav .nav-link.active { color: var(--primary) !important; background: var(--primary-50); font-weight: 600; }
.navbar-nav .nav-link.active::after { content: ''; position: absolute; bottom: 2px; left: 50%; transform: translateX(-50%); width: 16px; height: 3px; background: var(--primary); border-radius: 10px; }
.navbar-nav .dropdown-menu { background: white; border: 1px solid var(--gray-light); border-radius: var(--radius-md); box-shadow: var(--shadow-xl); padding: 8px; min-width: 230px; animation: dropdownFade .2s ease; }
@keyframes dropdownFade { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: translateY(0); } }
.navbar-nav .dropdown-item { color: var(--dark-2); border-radius: 8px; padding: 9px 14px; font-size: .85rem; transition: var(--transition); display: flex; align-items: center; }
.navbar-nav .dropdown-item:hover { background: var(--primary-50); color: var(--primary); }
.navbar-nav .dropdown-item.dropdown-all { color: var(--primary); font-weight: 600; background: var(--primary-50); }
.navbar-nav .dropdown-item.dropdown-all:hover { background: var(--primary); color: white; }
.navbar-nav .dropdown-divider { border-color: var(--gray-light); }
.dropdown-menu-programs { min-width: 260px; }
.dropdown-user { min-width: 240px; }
.nav-user-btn { display: flex; align-items: center; gap: 8px; cursor: pointer; }
.nav-avatar { position: relative; width: 34px; height: 34px; flex-shrink: 0; }
.nav-avatar img { width: 34px; height: 34px; border-radius: 50%; object-fit: cover; border: 2px solid var(--primary); }
.nav-avatar-initials { width: 34px; height: 34px; border-radius: 50%; background: linear-gradient(135deg, var(--primary), var(--primary-dark)); display: flex; align-items: center; justify-content: center; color: white; font-size: .82rem; font-weight: 700; }
.nav-avatar-lg { width: 42px; height: 42px; }
.nav-avatar-lg img { width: 42px; height: 42px; }
.nav-avatar-initials-lg { width: 42px; height: 42px; font-size: 1rem; }
.nav-notif-dot { position: absolute; top: -4px; right: -4px; width: 18px; height: 18px; border-radius: 50%; font-size: .6rem; background: #ef4444; color: white; display: flex; align-items: center; justify-content: center; font-weight: 700; border: 2px solid white; }
.nav-username { color: var(--dark-2); font-size: .85rem; font-weight: 500; }
.nav-login-link { border: 1px solid var(--gray-light) !important; }
.nav-login-link:hover { border-color: var(--primary) !important; }
.btn-donate { background: linear-gradient(135deg, var(--primary), var(--primary-dark)) !important; color: white !important; border-radius: 25px !important; padding: 9px 22px !important; font-weight: 600 !important; font-size: .85rem; box-shadow: var(--shadow-green); display: inline-flex; align-items: center; gap: 8px; border: none !important; transition: all .3s ease !important; }
.btn-donate:hover { transform: translateY(-2px) !important; color: white !important; box-shadow: 0 8px 25px rgba(22,163,74,.45) !important; }
.donate-icon { animation: heartbeat 1.5s infinite; display: inline-flex; }
@keyframes heartbeat { 0%,100% { transform: scale(1); } 14% { transform: scale(1.3); } 28% { transform: scale(1); } 42% { transform: scale(1.15); } }
.btn-donate-sm { width: 36px; height: 36px; border-radius: 50%; background: linear-gradient(135deg, var(--primary), var(--primary-dark)); color: white; display: flex; align-items: center; justify-content: center; font-size: .95rem; border: none; box-shadow: var(--shadow-green); flex-shrink: 0; }
.navbar-toggler { border: 1px solid var(--gray-light); padding: 8px 10px; background: var(--primary-50); }
.toggler-bar { display: block; width: 22px; height: 2px; background: var(--primary); border-radius: 2px; transition: var(--transition); margin: 4px 0; }
.navbar-toggler[aria-expanded="true"] .toggler-bar:nth-child(1) { transform: rotate(45deg) translate(4px,4px); }
.navbar-toggler[aria-expanded="true"] .toggler-bar:nth-child(2) { opacity: 0; }
.navbar-toggler[aria-expanded="true"] .toggler-bar:nth-child(3) { transform: rotate(-45deg) translate(4px,-4px); }
.flash-alert-wrap { position: relative; z-index: 100; }
.alert-flash { border-radius: 0; border-left: 4px solid currentColor; margin: 0; padding: 12px 20px; font-size: .9rem; }

/* ============================================================ HERO — SPLIT SCREEN "HATKE" DESIGN ============================================================ */
.hero-split { min-height: 100vh; display: flex; align-items: stretch; background: var(--white); position: relative; overflow: hidden; }
.hero-split > .container-fluid { display: flex; flex: 1; }
.hero-split > .container-fluid > .row { flex: 1; }
.hero-left { display: flex; align-items: center; background: var(--white); position: relative; z-index: 2; padding: 120px 0 80px; }
.hero-left::after { content: ''; position: absolute; top: 0; right: -55px; width: 110px; height: 100%; background: var(--white); clip-path: polygon(0 0, 0% 100%, 100% 100%, 25% 0); z-index: 3; }
.hero-left-inner { padding: 0 60px 0 80px; position: relative; z-index: 2; max-width: 640px; }
.hero-shape { position: absolute; border-radius: 50%; background: var(--primary-100); opacity: .6; animation: shapeFloat 8s ease-in-out infinite; }
.hs-1 { width: 320px; height: 320px; top: -100px; left: -130px; animation-delay: 0s; }
.hs-2 { width: 200px; height: 200px; bottom: 40px; right: 0; animation-delay: 3s; opacity: .35; }
@keyframes shapeFloat { 0%,100% { transform: translate(0,0) rotate(0deg); } 33% { transform: translate(20px,-15px) rotate(5deg); } 66% { transform: translate(-10px,10px) rotate(-3deg); } }
.hero-badge-new { display: inline-flex; align-items: center; gap: 10px; background: var(--primary-50); border: 1.5px solid var(--primary-200); color: var(--primary-dark); padding: 8px 20px; border-radius: var(--radius-full); font-size: .78rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 22px; }
.badge-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--primary); box-shadow: 0 0 0 3px rgba(22,163,74,.25); animation: pulseDot 2s infinite; flex-shrink: 0; }
@keyframes pulseDot { 0%,100% { box-shadow: 0 0 0 3px rgba(22,163,74,.25); } 50% { box-shadow: 0 0 0 8px rgba(22,163,74,.05); } }
.hero-head { font-family: var(--font-display); font-size: clamp(2.2rem, 4vw, 3.8rem); font-weight: 800; line-height: 1.15; color: var(--dark); margin-bottom: 20px; }
.hero-head-hl { display: block; background: linear-gradient(135deg, var(--primary), var(--primary-light)); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; position: relative; }
.hero-head-hl::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 100%; height: 4px; background: linear-gradient(90deg, var(--primary), transparent); border-radius: 10px; }
.hero-desc { font-size: 1.05rem; color: var(--gray); max-width: 520px; margin-bottom: 35px; line-height: 1.8; }
.hero-cta-group { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 45px; }
.btn-hero-main { display: inline-flex; align-items: center; gap: 10px; background: linear-gradient(135deg, var(--primary), var(--primary-dark)); color: white; padding: 15px 34px; border-radius: var(--radius-full); font-weight: 700; font-size: .95rem; box-shadow: var(--shadow-green); transition: var(--transition); }
.btn-hero-main:hover { transform: translateY(-3px); color: white; box-shadow: 0 12px 35px rgba(22,163,74,.45); }
.btn-hero-ghost { display: inline-flex; align-items: center; gap: 10px; background: white; color: var(--primary); border: 2px solid var(--primary); padding: 13px 32px; border-radius: var(--radius-full); font-weight: 700; font-size: .95rem; transition: var(--transition); }
.btn-hero-ghost:hover { background: var(--primary); color: white; transform: translateY(-3px); box-shadow: var(--shadow-green); }
.hero-quick-stats { display: flex; gap: 30px; flex-wrap: wrap; padding-top: 35px; border-top: 1px solid var(--gray-light); }
.hqs-item { display: flex; align-items: center; gap: 12px; }
.hqs-icon { width: 44px; height: 44px; border-radius: 12px; background: var(--primary-50); border: 1.5px solid var(--primary-200); display: flex; align-items: center; justify-content: center; color: var(--primary); font-size: 1.1rem; flex-shrink: 0; }
.hqs-num { font-size: 1.4rem; font-weight: 800; color: var(--dark); line-height: 1.1; }
.hqs-label { font-size: .72rem; color: var(--gray); font-weight: 500; text-transform: uppercase; letter-spacing: .5px; }
.hero-right { background: var(--primary-50); position: relative; overflow: hidden; min-height: 100vh; display: flex; align-items: center; justify-content: center; }
.hero-right::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(22,163,74,.06) 0%, rgba(22,163,74,.03) 100%); pointer-events: none; }
.hero-right-deco { position: absolute; border-radius: 50%; background: var(--primary-100); opacity: .7; }
.hero-right-deco-1 { width: 300px; height: 300px; top: -80px; right: -80px; }
.hero-right-deco-2 { width: 180px; height: 180px; bottom: 40px; left: -50px; opacity:.4; }
.hero-img-showcase { position: relative; padding: 60px 45px; z-index: 1; width: 100%; }
.hero-img-main { width: 88%; margin: 0 auto; border-radius: 24px; overflow: hidden; box-shadow: 0 30px 60px rgba(22,163,74,.18); border: 4px solid rgba(255,255,255,.9); aspect-ratio: 4/3; }
.hero-img-main img { width: 100%; height: 100%; object-fit: cover; }
.hero-float-card { position: absolute; border-radius: 16px; overflow: hidden; box-shadow: var(--shadow-xl); border: 3px solid rgba(255,255,255,.4); animation: floatCard 6s ease-in-out infinite; }
.hfc-1 { width: 115px; height: 90px; bottom: 80px; left: 15px; animation-delay: 0s; }
.hfc-2 { width: 105px; height: 82px; top: 65px; right: 10px; animation-delay: 2s; }
.hero-float-card img { width: 100%; height: 100%; object-fit: cover; }
@keyframes floatCard { 0%,100% { transform: translateY(0) rotate(0); } 50% { transform: translateY(-14px) rotate(2deg); } }
.hero-img-badge { position: absolute; bottom: 32px; right: 32px; background: white; color: var(--primary); padding: 12px 20px; border-radius: 14px; display: flex; align-items: center; gap: 8px; font-size: .88rem; font-weight: 700; box-shadow: 0 8px 30px rgba(0,0,0,.12); animation: floatCard 5s ease-in-out infinite reverse; border: 2px solid var(--primary-100); }
.hero-img-badge i { font-size: 1.3rem; color: var(--primary); }
.hero-head-sub { font-family: var(--font-main); font-size: clamp(.85rem,1.5vw,1rem); font-weight: 400; color: var(--gray); margin-top: 6px; letter-spacing: .3px; }
.hero-circle { position: absolute; border-radius: 50%; border: 2px solid rgba(22,163,74,.12); }
.hc-1 { width: 220px; height: 220px; top: -70px; right: -70px; }
.hc-2 { width: 380px; height: 380px; bottom: -110px; left: -110px; opacity: .4; }
@media(max-width:991px) {
  .hero-split { flex-direction: column; min-height: auto; }
  .hero-left { padding: 90px 0 40px; }
  .hero-left-inner { padding: 0 24px; max-width: 100%; }
  .hero-left::after { display: none; }
  .hero-right { min-height: 380px; }
  .hfc-1,.hfc-2 { display: none; }
  .hero-img-main { width: 92%; }
  .hero-head { font-size: clamp(1.8rem, 3vw, 2.8rem); }
  .hero-desc { font-size: .95rem; }
}
@media(max-width: 576px) {
  .hero-left { padding: 60px 0 30px; }
  .hero-left-inner { padding: 0 16px; }
  .hero-head { font-size: 1.5rem; margin-bottom: 16px; }
  .hero-desc { font-size: .88rem; margin-bottom: 24px; }
  .hero-cta-group { flex-direction: column; }
  .btn-hero-main, .btn-hero-ghost { width: 100%; justify-content: center; }
  .hero-quick-stats { flex-direction: column; gap: 16px; }
  .hero-right { min-height: 300px; }
  .hero-img-showcase { padding: 30px 20px; }
  .hero-img-main { width: 100%; }
}

/* FALLBACK: SWIPER HERO */
.hero-section { position: relative; overflow: hidden; min-height: 100vh; }
.hero-swiper { width: 100%; height: 100vh; min-height: 560px; }
@supports (height: 100svh) { .hero-swiper { height: 100svh; } }
.hero-slide { position: relative; background-size: cover; background-position: center; display: flex; align-items: center; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(21,128,61,.88) 0%, rgba(22,163,74,.55) 50%, rgba(21,128,61,.7) 100%); }
.hero-content { position: relative; z-index: 2; color: white; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,.15); border: 1px solid rgba(255,255,255,.3); color: white; padding: 8px 18px; border-radius: 25px; font-size: .82rem; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 20px; }
.hero-title { font-family: var(--font-display); font-size: clamp(2.2rem, 5.5vw, 4.2rem); font-weight: 700; line-height: 1.15; margin-bottom: 24px; letter-spacing: -1px; text-shadow: 0 4px 20px rgba(0,0,0,.3); }
.hero-title .highlight { color: var(--accent-light); text-shadow: 0 2px 10px rgba(245,158,11,.3); }
.hero-subtitle { font-size: clamp(.95rem, 2.2vw, 1.25rem); color: rgba(255,255,255,.95); max-width: 600px; margin-bottom: 40px; line-height: 1.85; font-weight: 500; letter-spacing: 0.3px; }
.hero-btns { display: flex; gap: 15px; flex-wrap: wrap; }
.btn-hero-primary { background: white; color: var(--primary); padding: 15px 36px; border-radius: 30px; font-weight: 700; font-size: .95rem; box-shadow: 0 10px 35px rgba(0,0,0,.3); transition: var(--transition-slow); border: 2px solid white; }
.btn-hero-primary:hover { transform: translateY(-4px) scale(1.05); color: var(--primary-dark); box-shadow: 0 15px 45px rgba(0,0,0,.4); }
.btn-hero-secondary { background: transparent; color: white; border: 2px solid rgba(255,255,255,.8); padding: 15px 36px; border-radius: 30px; font-weight: 600; font-size: .95rem; transition: var(--transition-slow); }
.btn-hero-secondary:hover { background: white; color: var(--primary); border-color: white; transform: translateY(-4px); box-shadow: 0 10px 30px rgba(0,0,0,.3); }
@media(max-width:768px) { .hero-btns { flex-direction: column; gap: 12px; } .btn-hero-primary, .btn-hero-secondary { width: 100%; padding: 13px 28px; } }
@media(max-width:576px) { .btn-hero-primary, .btn-hero-secondary { padding: 12px 24px; font-size: 0.9rem; } }
.hero-stats { margin-top: 50px; display: flex; gap: 30px; flex-wrap: wrap; }
.hero-stat { text-align: center; }
.hero-stat .stat-number { font-size: 1.8rem; font-weight: 800; color: var(--accent-light); }
.hero-stat .stat-label { font-size: .75rem; color: rgba(255,255,255,.8); }
.hero-stats-row { position: relative; z-index: 2; }
.hero-stat-card { background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.2); border-radius: 14px; padding: 16px 18px; backdrop-filter: blur(10px); }
.swiper-pagination-bullet { background: white; opacity: .5; }
.swiper-pagination-bullet-active { background: var(--accent-light); opacity: 1; width: 25px; border-radius: 10px; }
.video-hero-wrap { position: relative; min-height: 100vh; display: flex; align-items: center; overflow: hidden; }
.hero-bg-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.hero-video-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(21,128,61,.88), rgba(22,163,74,.6)); z-index: 1; }

/* ============================================================ SHARED SECTION STYLES ============================================================ */
.section-padding { padding: var(--section-py) 0; }
.section-sm { padding: var(--section-py-sm) 0; }
.section-title { margin-bottom: 56px; }
.section-badge { display: inline-flex; align-items: center; gap: 6px; background: var(--primary-50); border: 1.5px solid var(--primary-200); color: var(--primary-dark); padding: 7px 20px; border-radius: var(--radius-full); font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 14px; }
.section-badge::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--primary); flex-shrink: 0; }
.section-heading { font-family: var(--font-display); font-size: clamp(1.9rem,4vw,3rem); font-weight: 700; color: var(--dark); line-height: 1.2; }
.section-heading span { color: var(--primary); position: relative; }
.section-heading span::after { content: ''; position: absolute; bottom: 2px; left: 0; width: 100%; height: 3px; background: linear-gradient(90deg, var(--primary), var(--primary-light)); border-radius: 10px; opacity: .4; }
.section-desc { color: var(--gray); font-size: .96rem; max-width: 620px; line-height: 1.8; }
.divider { width: 50px; height: 4px; background: linear-gradient(90deg, var(--primary), var(--primary-light)); border-radius: 10px; margin: 18px 0; }
.divider-center { margin: 18px auto; }
.section-bg { background: var(--gray-lighter); }
.section-bg-green { background: var(--primary-50); }
.section-bg-dark { background: var(--darker); }

/* Buttons */
.btn { border-radius: 10px; font-weight: 500; transition: var(--transition); }
.btn-primary { background: var(--primary); border: 1px solid var(--primary-dark); color: white; border-radius: 8px; }
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: var(--shadow-green); color: white; }
.btn-outline-primary { border: 2px solid var(--primary); color: var(--primary); background: transparent; }
.btn-outline-primary:hover { background: var(--primary); color: white; transform: translateY(-2px); }
.btn-secondary { background: var(--accent); border: 1px solid var(--accent-dark); color: white; border-radius: 8px; }
.btn-secondary:hover { background: var(--accent-dark); color: white; transform: translateY(-2px); }
.btn-outline-secondary { border: 2px solid var(--accent); color: var(--accent); }
.btn-outline-secondary:hover { background: var(--accent); color: white; }
.btn-lg { padding: 14px 32px; font-size: 1rem; border-radius: 12px; }
.btn-pill { border-radius: 50px; }
.btn-xs { padding: .2rem .5rem; font-size: .75rem; border-radius: 6px; }
.btn-icon { width: 44px; height: 44px; padding: 0; border-radius: 10px; display: inline-flex; align-items: center; justify-content: center; }
.btn-outline-light { border: 2px solid rgba(255,255,255,.4); color: white; }
.btn-outline-light:hover { background: rgba(255,255,255,.15); color: white; }

/* Cards */
.card { border: 1px solid rgba(0,0,0,.05); border-radius: var(--radius); box-shadow: var(--shadow); transition: var(--transition); background: var(--white); }
.card:hover { box-shadow: var(--shadow-xl); transform: translateY(-4px); border-color: rgba(22,163,74,.15); }

/* Forms */
.form-control, .form-select { border-radius: 10px; border: 2px solid var(--gray-light); padding: 12px 16px; font-size: .9rem; transition: var(--transition); }
.form-control:focus, .form-select:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(22,163,74,.12); }
.form-label { font-weight: 500; font-size: .9rem; margin-bottom: 6px; }
.form-group { margin-bottom: 20px; }

/* ============================================================ STATS SECTION — On Green Band ============================================================ */
.stats-section { background: var(--primary); padding: 70px 0; position: relative; overflow: hidden; }
.stats-section::before { content: ''; position: absolute; top: -50px; left: -50px; width: 200px; height: 200px; border-radius: 50%; background: rgba(255,255,255,.06); }
.stats-section::after { content: ''; position: absolute; bottom: -70px; right: -30px; width: 280px; height: 280px; border-radius: 50%; background: rgba(255,255,255,.05); }
.stat-card { background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.2); backdrop-filter: blur(10px); text-align: center; padding: 32px 20px; border-radius: var(--radius-lg); transition: var(--transition); }
.stat-card:hover { background: rgba(255,255,255,.2); transform: translateY(-6px); box-shadow: 0 20px 40px rgba(0,0,0,.15); }
.stat-card .stat-icon { font-size: 2.4rem; margin-bottom: 14px; color: var(--accent-light); }
.stat-card .stat-number { font-size: 2.6rem; font-weight: 800; color: white; display: block; line-height: 1; }
.stat-card .stat-label { color: rgba(255,255,255,.8); font-size: .88rem; margin-top: 8px; font-weight: 500; }

/* ============================================================ ABOUT SECTION ============================================================ */
.about-premium-media { position: relative; }
.about-premium-media .media-shape { display: none !important; }
.about-main-img { border-radius: var(--radius-xl); box-shadow: var(--shadow-2xl); width: 100%; object-fit: cover; }
.about-side-img { position: absolute; width: 50%; border-radius: var(--radius-lg); box-shadow: var(--shadow-xl); border: 4px solid white; object-fit: cover; aspect-ratio: 1; bottom: -25px; right: -25px; }
@media(max-width: 768px) {
  .about-side-img { width: 45%; bottom: -15px; right: -15px; }
  .about-premium-media { position: relative; height: auto; }
  .about-main-img { max-height: 400px; }
}
.play-btn-pulse { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 64px; height: 64px; border-radius: 50%; background: white; color: var(--primary); display: flex; align-items: center; justify-content: center; font-size: 1.3rem; box-shadow: 0 0 0 0 rgba(22,163,74,.4); animation: pulsePing 2s infinite; z-index: 2; }
.play-btn-pulse:hover { background: var(--primary); color: white; }
@keyframes pulsePing { 0% { box-shadow: 0 0 0 0 rgba(22,163,74,.4); } 70% { box-shadow: 0 0 0 20px rgba(22,163,74,0); } 100% { box-shadow: 0 0 0 0 rgba(22,163,74,0); } }
.about-card-float { position: absolute; bottom: -20px; right: -20px; background: linear-gradient(135deg, var(--primary), var(--primary-dark)); color: white; border-radius: var(--radius); padding: 20px 25px; box-shadow: var(--shadow-xl); text-align: center; min-width: 160px; display: flex; align-items: center; gap: 16px; }
.about-card-float .icon-wrap { font-size: 2rem; }
.about-card-float .number { font-size: 2rem; font-weight: 800; line-height: 1; color: var(--accent-light); }
.about-card-float .label { font-size: .78rem; opacity: .85; }
.about-feature { display: flex; align-items: flex-start; gap: 15px; margin-bottom: 22px; }
.about-feature-icon { width: 48px; height: 48px; border-radius: 12px; flex-shrink: 0; background: linear-gradient(135deg, var(--primary), var(--primary-dark)); display: flex; align-items: center; justify-content: center; color: white; font-size: 1.1rem; }
.about-feature h4 { font-size: 1rem; margin-bottom: 4px; color: var(--dark); }
.about-feature p { font-size: .87rem; color: var(--gray); margin: 0; }
.media-shape { position: absolute; border-radius: 50%; }
.media-shape-1 { width: 80px; height: 80px; background: var(--primary-100); top: 20px; right: -20px; animation: shapeFloat 7s ease-in-out infinite; }
.media-shape-2 { width: 50px; height: 50px; background: var(--primary-200); bottom: 80px; left: -10px; animation: shapeFloat 5s ease-in-out infinite reverse; }
.pulse-premium { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); }
.home-about-section { position: relative; overflow: hidden; background: linear-gradient(180deg, #fff 0%, #fbfefb 100%); }
.home-about-section::before { content: ''; position: absolute; top: -120px; right: -80px; width: 320px; height: 320px; border-radius: 50%; background: radial-gradient(circle, rgba(22,163,74,.08), rgba(22,163,74,0)); }
.about-highlight-band { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
.about-highlight-chip { padding: 16px 18px; border-radius: 18px; border: 1px solid rgba(22,163,74,.12); background: linear-gradient(180deg, rgba(255,255,255,.95), rgba(240,253,244,.95)); box-shadow: 0 14px 34px rgba(15,23,42,.06); }
.about-highlight-chip strong { display: block; font-size: .9rem; color: var(--dark); margin-bottom: 4px; }
.about-highlight-chip span { display: block; color: var(--gray); font-size: .8rem; line-height: 1.6; }

/* ============================================================ SERVICE STRIP ============================================================ */
.service-strip { background: linear-gradient(135deg, var(--primary-dark), var(--primary)); padding: 28px 0; }
.service-strip-item { display: flex; align-items: center; gap: 14px; color: white; padding: 8px 0; }
.service-strip-item i { font-size: 1.8rem; color: var(--accent-light); flex-shrink: 0; }
.service-strip-item h6 { margin: 0; font-size: .92rem; font-weight: 600; }
.service-strip-item p { margin: 0; font-size: .78rem; opacity: .8; }
.service-strip-divider { border-left: 1px solid rgba(255,255,255,.2); height: 50px; }
.service-strip-premium { position: relative; overflow: hidden; background: linear-gradient(135deg, #106d3a 0%, #15803D 100%); }
.service-strip-premium::before { display: none; }
.service-strip-card { padding: 14px 16px; border-radius: 14px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.16); min-height: 100%; box-shadow: none; }
.service-strip-card:hover { transform: none; background: rgba(255,255,255,.12); box-shadow: none; }
.service-strip-icon-wrap { width: 44px; height: 44px; border-radius: 12px; display: inline-flex; align-items: center; justify-content: center; background: rgba(255,255,255,.16); border: 1px solid rgba(255,255,255,.2); flex-shrink: 0; }
.service-strip-kicker { display: inline-block; margin-bottom: 2px; font-size: .6rem; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.65); font-weight: 700; }

/* ============================================================ ABOUT HERO - DECORATIVE CIRCLES ============================================================ */
.about-hero { position: relative; overflow: hidden; background: linear-gradient(135deg, #f0fdf4 0%, #ffffff 100%); padding: 90px 0; }
.about-hero-shapes { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.ahs-1 { position: absolute; width: 500px; height: 500px; border-radius: 50%; background: rgba(22,163,74,.06); top: -100px; right: -120px; opacity: 0.6; animation: shapeFloat 8s ease-in-out infinite; z-index: 1; }
.ahs-2 { position: absolute; width: 300px; height: 300px; border-radius: 50%; background: rgba(59,130,246,.06); bottom: 100px; left: -80px; opacity: 0.35; animation: shapeFloat 6s ease-in-out infinite reverse; animation-delay: 1s; z-index: 1; }
.ahs-3 { position: absolute; width: 200px; height: 200px; border-radius: 50%; background: rgba(245,158,11,.04); top: 30%; right: 25%; opacity: 0.4; animation: shapeFloat 7s ease-in-out infinite; animation-delay: 2s; z-index: 1; }

/* ============================================================ WHY CHOOSE US ============================================================ */
.why-us-section { background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, #34D399 100%); padding: var(--section-py) 0; position: relative; overflow: hidden; }
.why-us-section::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 20% 50%, rgba(255,255,255,.05) 0%, transparent 60%); }
.why-us-card { background: linear-gradient(135deg, rgba(255,255,255,.12) 0%, rgba(255,255,255,.08) 100%); border: 1px solid rgba(255,255,255,.2); backdrop-filter: blur(12px); border-radius: var(--radius-lg); padding: 36px 26px; text-align: center; transition: var(--transition-slow); color: white; position: relative; overflow: hidden; height: 100%; }
.why-us-card::after { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 50% 0%, rgba(255,255,255,.1) 0%, transparent 70%); opacity: 0; transition: opacity 0.4s ease; pointer-events: none; z-index: 1; }
.why-us-card:hover { transform: translateY(-12px) scale(1.02); box-shadow: 0 30px 60px rgba(0,0,0,.3); background: linear-gradient(135deg, rgba(255,255,255,.18) 0%, rgba(255,255,255,.14) 100%); border-color: rgba(255,255,255,.5); }
.why-us-card:hover::after { opacity: 1; }
.why-us-icon { width: 72px; height: 72px; border-radius: 20px; background: rgba(255,255,255,.18); border: 1.5px solid rgba(255,255,255,.3); display: flex; align-items: center; justify-content: center; font-size: 1.8rem; margin: 0 auto 20px; transition: var(--transition-slow); position: relative; z-index: 2; }
.why-us-card:hover .why-us-icon { background: rgba(255,255,255,.35); transform: scale(1.15) rotate(8deg) translateZ(0); box-shadow: 0 12px 25px rgba(0,0,0,.2); }
@media(max-width:768px) { .why-us-card { padding: 28px 20px; } .why-us-card:hover { transform: translateY(-8px) scale(1.01); } }
@media(max-width:576px) { .why-us-card { padding: 22px 16px; border-radius: var(--radius-md); } .why-us-icon { width: 60px; height: 60px; font-size: 1.5rem; margin-bottom: 16px; } }
.why-us-card h4 { font-size: 1.05rem; margin-bottom: 10px; color: white; }
.why-us-card p { font-size: .87rem; color: rgba(255,255,255,.8); line-height: 1.7; margin: 0; }
.why-us-section .section-badge { background: rgba(255,255,255,.15); border-color: rgba(255,255,255,.3); color: white; }
.why-us-section .section-badge::before { background: white; }
.why-us-section .section-heading { color: white; }
.why-us-section .section-heading span { color: var(--accent-light); }
.why-us-section .section-heading span::after { background: linear-gradient(90deg, var(--accent-light), transparent); }
.why-us-section .section-desc { color: rgba(255,255,255,.8); }
.why-us-section .divider { background: linear-gradient(90deg, var(--accent-light), transparent); }

/* ============================================================ PROGRAM CARDS ============================================================ */
.program-card { background: white; border-radius: var(--radius-lg); box-shadow: var(--shadow); overflow: hidden; transition: var(--transition); height: 100%; border: 1px solid rgba(0,0,0,.06); }
.program-card:hover { transform: translateY(-10px) rotate(-0.3deg); box-shadow: 0 30px 60px rgba(0,0,0,.12); border-color: rgba(22,163,74,.2); }
.program-card-img { position: relative; overflow: hidden; height: 210px; }
.program-card-img img { width: 100%; height: 100%; object-fit: cover; transition: .6s; }
.program-card:hover .program-card-img img { transform: scale(1.12); }
.program-cat-badge { position: absolute; top: 14px; left: 14px; background: var(--primary); color: white; padding: 4px 14px; border-radius: var(--radius-full); font-size: .72rem; font-weight: 700; }
.program-icon-overlay { position: absolute; bottom: -26px; right: 20px; width: 52px; height: 52px; border-radius: 50%; background: linear-gradient(135deg, var(--primary), var(--primary-dark)); display: flex; align-items: center; justify-content: center; color: white; font-size: 1.2rem; box-shadow: var(--shadow-green); }
.program-card-body { padding: 32px 22px 22px; }

/* Crowdfunding Hero Stats */
.crowd-hero-metrics { display: flex; flex-wrap: wrap; gap: 12px; margin: 0 0 20px; }
.crowd-hero-chip { display: inline-flex; flex-direction: column; align-items: center; gap: 3px; background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.2); color: white; padding: 10px 20px; border-radius: 8px; font-weight: 600; backdrop-filter: blur(10px); }
.crowd-hero-chip strong { font-size: 1.2rem; display: block; }
.crowd-hero-chip span { font-size: .75rem; opacity: .8; }

/* Crowdfunding Impact Band */
.crowd-impact-band { background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, #4ADE80 100%); padding: 32px 0; }
.crowd-impact-card { padding: 12px; }
.crowd-impact-card .fw-bold { font-size: 1.5rem; }
.crowd-impact-card .small { font-size: .8rem; opacity: .7; }
.program-card-body h3 { font-size: 1.1rem; margin-bottom: 10px; }
.program-card-body h3 a:hover { color: var(--primary); }
.program-card-body p { color: var(--gray); font-size: .87rem; margin-bottom: 16px; }
.progress-section { margin-bottom: 16px; }
.progress-info { display: flex; justify-content: space-between; font-size: .8rem; margin-bottom: 6px; }
.progress-info .raised { color: var(--primary); font-weight: 600; }
.progress { height: 8px; border-radius: 10px; background: var(--primary-100); }
.progress-bar { background: linear-gradient(90deg, var(--primary), var(--primary-light)); border-radius: 10px; transition: width 1.5s ease; }
.funding-info { display: flex; gap: 15px; font-size: .8rem; color: var(--gray); flex-wrap: wrap; }

/* ============================================================ DONATE CTA ============================================================ */
.donate-cta { background: var(--white); padding: var(--section-py) 0; position: relative; }
.donate-cta-inner { background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 60%, #4ADE80 100%); border-radius: var(--radius-xl); padding: 70px 65px; position: relative; overflow: hidden; }
.donate-cta-inner::before { content: ''; position: absolute; top: -80px; right: -80px; width: 300px; height: 300px; border-radius: 50%; background: rgba(255,255,255,.07); }
.donate-cta-inner::after { content: ''; position: absolute; bottom: -60px; left: 30%; width: 200px; height: 200px; border-radius: 50%; background: rgba(255,255,255,.05); }
@media(max-width:767px) { .donate-cta-inner { padding: 44px 28px; } }
.donate-banner-title { font-family: var(--font-display); font-size: clamp(1.6rem,3vw,2.5rem); font-weight: 700; color: white; }
.donate-amount-btns { display: flex; flex-wrap: wrap; gap: 10px; margin: 20px 0; }
.donate-amount-btn { padding: 10px 22px; border-radius: 25px; border: 2px solid rgba(255,255,255,.4); color: white; background: transparent; cursor: pointer; font-weight: 600; transition: var(--transition); font-size: .9rem; }
.donate-amount-btn.active, .donate-amount-btn:hover { background: var(--accent); border-color: var(--accent); }

/* ============================================================ EVENT CARDS ============================================================ */
.event-card { background: white; border-radius: var(--radius-lg); box-shadow: var(--shadow); overflow: hidden; transition: var(--transition); display: flex; border: 1px solid rgba(0,0,0,.06); }
.event-card:hover { box-shadow: 0 20px 50px rgba(0,0,0,.1); transform: translateY(-6px); border-color: rgba(22,163,74,.2); }
.event-date-box { min-width: 82px; padding: 22px 16px; background: linear-gradient(135deg, var(--primary), var(--primary-dark)); text-align: center; display: flex; flex-direction: column; align-items: center; justify-content: center; color: white; }
.event-date-box .day { font-size: 2.2rem; font-weight: 800; line-height: 1; }
.event-date-box .month { font-size: .72rem; text-transform: uppercase; letter-spacing: 1px; opacity: .9; }
.event-date-box .year { font-size: .68rem; opacity: .75; }
.event-card-img { width: 130px; flex-shrink: 0; overflow: hidden; }
.event-card-img img { width: 100%; height: 100%; object-fit: cover; transition: .5s; }
.event-card:hover .event-card-img img { transform: scale(1.1); }
.event-body { padding: 18px 22px; flex: 1; }
.event-type-badge { font-size: .7rem; font-weight: 700; padding: 3px 12px; border-radius: var(--radius-full); margin-bottom: 8px; display: inline-block; }
.event-title { font-size: .97rem; font-weight: 600; margin-bottom: 8px; color: var(--dark); }
.event-title a:hover { color: var(--primary); }
.event-meta { display: flex; gap: 14px; flex-wrap: wrap; }
.event-meta span { font-size: .78rem; color: var(--gray); display: flex; align-items: center; gap: 4px; }
.event-meta i { color: var(--primary); }

/* ---- Vertical Event Card (events listing page) ---- */
.event-card-v { flex-direction: column; }
.event-card-v .event-card-img { width: 100%; height: 220px; position: relative; flex-shrink: 0; overflow: hidden; }
.event-card-v .event-card-img img { width: 100%; height: 100%; object-fit: cover; transition: .5s; }
.event-card-v:hover .event-card-img img { transform: scale(1.07); }
.event-date-badge { position: absolute; bottom: 12px; left: 12px; background: linear-gradient(135deg, var(--primary), var(--primary-dark)); color: white; border-radius: 12px; padding: 8px 14px; text-align: center; min-width: 56px; box-shadow: 0 4px 14px rgba(22,163,74,.4); z-index: 1; }
.event-date-badge .day { font-size: 1.6rem; font-weight: 800; line-height: 1; display: block; }
.event-date-badge .month { font-size: .62rem; text-transform: uppercase; letter-spacing: 1.5px; display: block; margin-top: 2px; }
.event-card-body { padding: 22px; flex: 1; display: flex; flex-direction: column; }
.event-card-body h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; line-height: 1.4; }
.event-card-body h3 a { color: var(--dark); text-decoration: none; }
.event-card-body h3 a:hover { color: var(--primary); }
.event-card-body > p { font-size: .85rem; color: var(--gray); flex: 1; margin-bottom: 10px; }
.event-card-body .event-meta { margin-bottom: 12px; }

/* ============================================================ GALLERY ============================================================ */
.gallery-section { background: linear-gradient(180deg, #f6fff8 0%, #effbf3 100%); }
.gallery-masonry { column-count: 3; column-gap: 16px; }
.gallery-item { break-inside: avoid; margin-bottom: 16px; border-radius: var(--radius-md); overflow: hidden; position: relative; cursor: pointer; display: block; }
.gallery-item img { width: 100%; object-fit: cover; transition: .5s; display: block; }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(15,23,42,.15) 10%, rgba(15,23,42,.78) 100%); opacity: 0; transition: var(--transition); display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 8px; }
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay i { font-size: 2rem; color: white; }
.gallery-overlay span { font-size: .8rem; color: rgba(255,255,255,.9); font-weight: 600; letter-spacing: .5px; }
.gallery-item-caption {
  position: absolute;
  left: 10px;
  bottom: 10px;
  z-index: 2;
  max-width: calc(100% - 20px);
  padding: 3px 10px;
  border-radius: 999px;
  background: rgba(15,23,42,.68);
  color: #fff;
  font-size: .66rem;
  font-weight: 700;
  letter-spacing: .3px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: inherit;
  pointer-events: none;
}
.home-gallery-section { position: relative; }
.home-gallery-grid { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); gap: 18px; }
.home-gallery-grid .gallery-item { margin-bottom: 0; min-height: 250px; height: 100%; grid-column: span 4; border-radius: 24px; box-shadow: 0 20px 45px rgba(15,23,42,.08); }
.home-gallery-grid .gallery-item img { width: 100%; height: 100%; min-height: 250px; object-fit: cover; }
.home-gallery-grid .gallery-item-featured { grid-column: span 8; min-height: 420px; }
.home-gallery-grid .gallery-item-featured img { min-height: 420px; }
.home-gallery-grid .gallery-item-tall { min-height: 340px; }
.home-gallery-grid .gallery-item-tall img { min-height: 340px; }
.gallery-item-caption-wrap { position: absolute; left: 16px; right: 16px; bottom: 16px; z-index: 2; display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; }
.gallery-item-caption-wrap small { color: rgba(255,255,255,.84); font-size: .68rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; }
.gallery-item-caption { position: static; max-width: none; padding: 6px 12px; background: rgba(15,23,42,.76); backdrop-filter: blur(8px); }
@media(max-width:767px) { .gallery-masonry { column-count: 2; } }
@media(max-width:480px) { .gallery-masonry { column-count: 1; } }

/* ============================================================ TEAM CARDS ============================================================ */
.team-card { background: white; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); transition: var(--transition-slow); text-align: center; border: 1px solid rgba(0,0,0,.06); position: relative; }
.team-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, var(--primary), var(--accent)); transform: scaleX(0); transform-origin: left; transition: transform 0.4s ease; z-index: 2; }
.team-card:hover { transform: translateY(-12px) scale(1.02); box-shadow: 0 30px 65px rgba(22,163,74,.25); border-color: rgba(22,163,74,.3); }
.team-card:hover::before { transform: scaleX(1); }
.team-img-wrap { position: relative; overflow: hidden; height: 240px; }
.team-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: .6s cubic-bezier(.4,0,.2,1); }
.team-card:hover .team-img-wrap img { transform: scale(1.1) rotate(-1deg); }
.team-card-ribbon { position: absolute; top: 0; right: 0; background: var(--primary); color: white; font-size: .68rem; font-weight: 700; padding: 6px 14px; border-radius: 0 0 0 14px; text-transform: uppercase; letter-spacing: .5px; }
.team-social-overlay { position: absolute; inset: 0; background: rgba(21,128,61,.88); opacity: 0; transition: var(--transition); display: flex; align-items: center; justify-content: center; gap: 10px; }
.team-card:hover .team-social-overlay { opacity: 1; }
.team-social-overlay a { width: 38px; height: 38px; border-radius: 50%; background: white; color: var(--primary); display: flex; align-items: center; justify-content: center; font-size: .9rem; transform: translateY(20px); transition: .3s; }
.team-card:hover .team-social-overlay a { transform: translateY(0); }
.team-body { padding: 22px; }
.team-name { font-size: 1rem; font-weight: 700; margin-bottom: 4px; color: var(--dark); }
.team-designation { font-size: .82rem; color: var(--primary); font-weight: 600; }

/* ============================================================ TESTIMONIALS ============================================================ */
.testimonial-section { background: var(--primary-dark); position: relative; overflow: hidden; }
.testimonial-section::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 80% 20%, rgba(255,255,255,.04) 0%, transparent 60%); }
.testimonial-section .section-badge { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.2); color: white; }
.testimonial-section .section-badge::before { background: white; }
.testimonial-section .section-heading { color: white; }
.testimonial-section .section-heading span { color: var(--accent-light); }
.testimonial-section .section-heading span::after { background: linear-gradient(90deg, var(--accent-light), transparent); }
.testimonial-section .divider { background: linear-gradient(90deg, var(--accent-light), transparent); }
.testimonial-card { background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.15); backdrop-filter: blur(10px); border-radius: var(--radius-lg); padding: 32px; position: relative; height: 100%; transition: var(--transition); cursor: pointer; }
.testimonial-card::before { content: '\201C'; font-family: Georgia, serif; position: absolute; top: 16px; right: 24px; font-size: 5rem; line-height: 1; color: rgba(255,255,255,.07); }
.testimonial-card:hover { background: rgba(255,255,255,.15); border-color: rgba(255,255,255,.3); transform: translateY(-6px) scale(1.01); box-shadow: 0 15px 40px rgba(0,0,0,.3); }
@media (max-width: 768px) {
  .testimonial-card { padding: 24px; }
  .testimonial-card:hover { transform: translateY(-3px); }
}
@media (max-width: 576px) {
  .testimonial-card { padding: 18px; border-radius: var(--radius-md); font-size: 0.9rem; }
  .testimonial-card::before { font-size: 3rem; right: 12px; }
}
.testimonial-rating { color: var(--accent-light); margin-bottom: 14px; font-size: .9rem; }
.testimonial-text { color: rgba(255,255,255,.85); font-size: .92rem; font-style: italic; line-height: 1.85; margin-bottom: 22px; }
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.testimonial-author img { width: 50px; height: 50px; border-radius: 50%; object-fit: cover; border: 3px solid var(--primary-light); }
.testimonial-author .author-avatar { width: 50px; height: 50px; border-radius: 50%; background: linear-gradient(135deg, var(--primary-light), var(--primary)); display: flex; align-items: center; justify-content: center; color: white; font-size: 1.2rem; font-weight: 700; flex-shrink: 0; }
.author-name { font-weight: 600; font-size: .95rem; color: white; }
.author-role { font-size: .8rem; color: rgba(255,255,255,.65); }

/* ============================================================ NEWS CARDS ============================================================ */
.news-card { background: white; border-radius: var(--radius-lg); box-shadow: var(--shadow); overflow: hidden; transition: var(--transition); height: 100%; border: 1px solid rgba(0,0,0,.06); }
.news-card:hover { transform: translateY(-6px); box-shadow: 0 25px 55px rgba(0,0,0,.1); border-color: rgba(22,163,74,.2); }
.news-card-img { position: relative; overflow: hidden; height: auto; aspect-ratio: 16 / 9; background: linear-gradient(135deg, #e2e8f0, #f8fafc); }
.news-card-img img { width: 100%; height: 100%; object-fit: contain; object-position: center; transition: .35s; background: #f8fafc; }
.news-card:hover .news-card-img img { transform: scale(1.03); }
.news-category { position: absolute; top: 14px; left: 14px; background: var(--primary); color: white; padding: 4px 14px; border-radius: var(--radius-full); font-size: .72rem; font-weight: 700; }
.news-card-body { padding: 22px; }
.news-date { font-size: .8rem; color: var(--gray); margin-bottom: 10px; display: flex; align-items: center; gap: 6px; }
.news-date i { color: var(--primary); }
.news-title { font-size: 1rem; font-weight: 700; margin-bottom: 10px; line-height: 1.45; }
.news-title a:hover { color: var(--primary); }
.news-excerpt { color: var(--gray); font-size: .87rem; margin-bottom: 18px; }
.news-footer { display: flex; align-items: center; justify-content: space-between; padding-top: 16px; border-top: 1px solid var(--gray-light); }
.news-card-featured {
  border: 1px solid rgba(22,163,74,.18);
  box-shadow: 0 16px 42px rgba(15,23,42,.08);
  overflow: hidden;
}
.home-news-section { position: relative; background: radial-gradient(circle at top right, rgba(22,163,74,.07), transparent 28%), linear-gradient(180deg, #ffffff 0%, #fbfffc 100%); }
.home-news-featured { height: 100%; border-radius: 28px; }
.news-card-img-lg { height: auto; min-height: 360px; }
.news-card-body-lg { padding: 28px; }
.news-title-lg { font-size: 1.42rem; }
.news-excerpt-lg { font-size: .92rem; line-height: 1.85; }
.news-featured-badge { position: absolute; right: 14px; top: 14px; padding: 6px 14px; border-radius: 999px; background: rgba(15,23,42,.8); color: #fff; font-size: .68rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.news-card-compact { display: grid; grid-template-columns: 220px minmax(0, 1fr); min-height: 100%; }
.news-card-compact .news-card-img { height: auto; min-height: 210px; }
.news-card-compact .news-card-body { display: flex; flex-direction: column; justify-content: center; }
.news-card-featured .section-badge {
  margin-bottom: 8px;
}
.news-img {
  position: relative;
  border-radius: 16px 16px 0 0;
  overflow: hidden;
  height: 220px;
  background: linear-gradient(135deg, #e2e8f0, #f8fafc);
}
.news-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #f8fafc;
  object-position: center;
}
.news-cat-badge {
  position: absolute;
  left: 12px;
  top: 12px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(15,23,42,.75);
  color: #fff;
  font-size: .68rem;
  font-weight: 700;
}
.news-body {
  padding: 18px;
  border: 1px solid rgba(15,23,42,.06);
  border-top: 0;
  border-radius: 0 0 16px 16px;
  background: #fff;
}
.news-body h4 {
  font-size: 1.04rem;
  font-weight: 700;
  line-height: 1.4;
}
.btn-link-custom {
  display: inline-flex;
  align-items: center;
  color: var(--primary);
  font-weight: 700;
  font-size: .82rem;
}
.btn-link-custom:hover { color: var(--primary-dark); }
.news-article-cover {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  margin-bottom: 22px;
  box-shadow: 0 20px 46px rgba(15,23,42,.15);
}
.news-article-cover img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}
.news-article-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15,23,42,.12), rgba(15,23,42,.55));
}
.article-content {
  background: #fff;
  border: 1px solid var(--gray-light);
  border-radius: 16px;
  padding: 24px;
  line-height: 1.85;
}
.article-content img {
  max-width: 100%;
  border-radius: 12px;
  margin: 12px 0;
}

/* ============================================================ CONTACT ============================================================ */
.contact-info-card { background: linear-gradient(135deg, var(--primary), var(--primary-dark)); color: white; border-radius: var(--radius-xl); padding: 45px 35px; }
.contact-detail { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 28px; }
.contact-detail-icon { width: 48px; height: 48px; background: rgba(255,255,255,.15); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; }
.contact-detail h5 { margin-bottom: 3px; font-size: .95rem; }
.contact-detail p { margin: 0; font-size: .88rem; opacity: .85; }

/* ============================================================ MEMBERSHIP CARDS ============================================================ */
.membership-card { background: white; border-radius: var(--radius-lg); box-shadow: var(--shadow); overflow: hidden; transition: var(--transition); height: 100%; border: 2px solid transparent; }
.membership-card:hover, .membership-card.featured { border-color: var(--primary); transform: translateY(-8px); box-shadow: var(--shadow-xl); }
.membership-header { padding: 30px 25px; text-align: center; background: linear-gradient(135deg, var(--primary), var(--primary-dark)); color: white; }
.membership-card.featured .membership-header { background: linear-gradient(135deg, var(--accent-dark), var(--accent)); }
.membership-price { font-size: 2.5rem; font-weight: 800; }
.membership-price small { font-size: 1rem; font-weight: 400; }
.membership-body { padding: 25px; }
.membership-features { list-style: none; padding: 0; margin: 0 0 25px; }
.membership-features li { padding: 8px 0; border-bottom: 1px solid var(--gray-light); font-size: .88rem; display: flex; align-items: center; gap: 10px; }
.membership-features li i { color: var(--primary); font-size: .85rem; }

/* ============================================================ DONATE PAGE ============================================================ */
.donate-form-card { background: white; border-radius: var(--radius-xl); box-shadow: var(--shadow-xl); overflow: hidden; }
.donate-form-header { background: linear-gradient(135deg, var(--primary), var(--primary-dark)); padding: 30px; color: white; text-align: center; }
.amount-selector { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 20px; }
.amount-btn { padding: 12px 22px; border-radius: 25px; border: 2px solid var(--gray-light); background: transparent; cursor: pointer; font-weight: 600; transition: var(--transition); font-size: .9rem; }
.amount-btn.active, .amount-btn:hover { background: var(--primary); border-color: var(--primary); color: white; }
.payment-methods { display: grid; grid-template-columns: repeat(auto-fill,minmax(120px,1fr)); gap: 10px; }
.payment-method-btn { border: 2px solid var(--gray-light); border-radius: 10px; padding: 14px 10px; text-align: center; cursor: pointer; transition: var(--transition); }
.payment-method-btn.active, .payment-method-btn:hover { border-color: var(--primary); background: var(--primary-50); }
.payment-method-btn i { font-size: 1.5rem; display: block; margin-bottom: 6px; color: var(--primary); }
.payment-method-btn span { font-size: .78rem; font-weight: 500; }
.upi-box { background: var(--primary-50); border: 2px dashed var(--primary); border-radius: var(--radius); padding: 25px; text-align: center; }
.upi-id { font-size: 1.3rem; font-weight: 700; color: var(--primary); font-family: monospace; }

/* ============================================================ DASHBOARD ============================================================ */
.dashboard-card { background: white; border-radius: var(--radius); padding: 25px; box-shadow: var(--shadow); margin-bottom: 20px; border-left: 4px solid var(--primary); }
.dashboard-stat-card { border-radius: var(--radius); padding: 25px; color: white; position: relative; overflow: hidden; }
.dashboard-stat-card .bg-icon { position: absolute; right: -10px; top: -10px; font-size: 4rem; opacity: .1; }
.dashboard-stat-card h3 { font-size: 2rem; font-weight: 800; margin-bottom: 5px; }
.dashboard-stat-card p { margin: 0; opacity: .85; font-size: .88rem; }

/* ============================================================ PAGE HERO (Inner Pages) ============================================================ */
.page-hero { background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, #34D399 100%); padding: 110px 0 70px; color: white; position: relative; overflow: hidden; }
.page-hero::before { content: ''; position: absolute; width: 500px; height: 500px; border-radius: 50%; background: rgba(255,255,255,.05); top: -120px; right: -120px; }
.page-hero::after { content: ''; position: absolute; width: 300px; height: 300px; border-radius: 50%; background: rgba(255,255,255,.04); bottom: -80px; left: 5%; }
.page-hero-title { font-family: var(--font-display); font-size: clamp(2rem,4.5vw,3.2rem); font-weight: 700; line-height: 1.2; margin-bottom: 10px; }
.breadcrumb-item a { color: rgba(255,255,255,.75); transition: var(--transition); }
.breadcrumb-item a:hover { color: var(--accent-light); }
.breadcrumb-item.active { color: var(--accent-light); }
.breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,.4); }
.page-hero-badge2 { display: inline-flex; align-items: center; background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.2); padding: 7px 18px; border-radius: var(--radius-full); font-size: .77rem; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; color: rgba(255,255,255,.9); margin-bottom: 14px; }
.page-hero-contact {
  min-height: 360px;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #0F172A 0%, #1E3A8A 52%, #047857 100%);
}
.page-hero-contact .page-hero-title span { color: var(--accent-light); }
.page-hero-contact p { color: rgba(255,255,255,.86) !important; }
.page-hero-contact .page-hero-title,
.page-hero-contact .breadcrumb-item,
.page-hero-contact .breadcrumb-item.active,
.page-hero-contact .breadcrumb-item a,
.gallery-hero .page-hero-title,
.gallery-hero .breadcrumb-item,
.gallery-hero .breadcrumb-item.active,
.gallery-hero .breadcrumb-item a,
.gallery-hero .page-hero-badge2 {
  color: #fff !important;
}

/* ============================================================ FILTER BUTTONS ============================================================ */
.filter-buttons { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 30px; }
.filter-btn { padding: 9px 22px; border-radius: var(--radius-full); border: 1.5px solid var(--gray-light); background: white; cursor: pointer; font-size: .84rem; font-weight: 600; transition: var(--transition); color: var(--gray); box-shadow: var(--shadow-xs); }
.filter-btn:hover { border-color: var(--primary); color: var(--primary); }
.filter-btn.active { background: var(--primary); border-color: var(--primary); color: white; box-shadow: var(--shadow-green); }

/* ============================================================ NEWSLETTER ============================================================ */
.newsletter-section { background: var(--primary-50); border-top: 2px solid var(--primary-100); border-bottom: 2px solid var(--primary-100); padding: 70px 0; }
.newsletter-icon { width: 80px; height: 80px; border-radius: 50%; background: var(--primary); color: white; display: flex; align-items: center; justify-content: center; font-size: 2rem; margin: 0 auto 24px; animation: pulsePing 2.5s infinite; }
.newsletter-form { max-width: 500px; margin: 0 auto; }
.home-newsletter-section { background: linear-gradient(180deg, #eefcf2 0%, #ffffff 100%); border: 0; }
.newsletter-shell { padding: 42px; border-radius: 28px; background: linear-gradient(135deg, rgba(255,255,255,.96), rgba(240,253,244,.92)); border: 1px solid rgba(22,163,74,.12); box-shadow: 0 26px 60px rgba(15,23,42,.08); }
.newsletter-content-block { max-width: 520px; }
.newsletter-content-block .newsletter-icon { margin: 0 0 22px; box-shadow: 0 18px 40px rgba(22,163,74,.2); }
.newsletter-points { display: flex; flex-wrap: wrap; gap: 10px; }
.newsletter-points span { display: inline-flex; align-items: center; gap: 8px; padding: 10px 14px; border-radius: 999px; background: #fff; border: 1px solid rgba(22,163,74,.12); color: var(--dark); font-size: .8rem; font-weight: 600; }
.newsletter-points i { color: var(--primary); }

/* ============================================================ IMPACT SECTION ============================================================ */
.impact-counter-card { background: white; border-radius: var(--radius-lg); padding: 24px; box-shadow: var(--shadow-lg); border-left: 4px solid var(--primary); transition: var(--transition); }
.impact-counter-card:hover { transform: translateX(6px); box-shadow: var(--shadow-xl); }
.impact-counter-card .ic-num { font-size: 2.5rem; font-weight: 800; color: var(--primary); line-height: 1; }
.impact-counter-card .ic-label { font-size: .9rem; color: var(--gray); }
.impact-list li { padding: 12px 0; border-bottom: 1px solid var(--primary-100); font-size: .92rem; display: flex; align-items: center; gap: 12px; }
.impact-list li:last-child { border-bottom: none; }
.impact-list li i { color: var(--primary); width: 20px; }

/* ============================================================ PARTNER MARQUEE ============================================================ */
.partners-section { padding: 50px 0; background: var(--gray-lighter); border-top: 1px solid var(--gray-light); border-bottom: 1px solid var(--gray-light); }
.partners-marquee { overflow: hidden; }
.partners-track { display: flex; gap: 50px; animation: marqueeScroll 20s linear infinite; width: max-content; }
.partners-track:hover { animation-play-state: paused; }
.partner-item { display: flex; align-items: center; justify-content: center; min-width: 140px; height: 60px; filter: grayscale(1) opacity(.5); transition: var(--transition); }
.partner-item:hover { filter: grayscale(0) opacity(1); transform: scale(1.05); }
.partner-item img { max-height: 50px; max-width: 130px; object-fit: contain; }
@keyframes marqueeScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ============================================================ RECEIPT / ID CARD ============================================================ */
.receipt-card { background: white; border-radius: var(--radius); border: 1px dashed var(--primary); overflow: hidden; position: relative; }
.receipt-card-header { background: linear-gradient(135deg, var(--primary), var(--primary-dark)); color: white; padding: 16px 20px; display: flex; align-items: center; justify-content: space-between; }
.receipt-no { font-family: monospace; font-size: .85rem; }
.receipt-card-body { padding: 20px; }
.receipt-row { display: flex; justify-content: space-between; align-items: center; padding: 6px 0; border-bottom: 1px dashed rgba(0,0,0,.08); font-size: .87rem; }
.receipt-row:last-child { border-bottom: none; }
.receipt-row .label { color: var(--gray); }
.receipt-row .value { font-weight: 600; }
.receipt-amount { font-size: 1.6rem; font-weight: 800; color: var(--primary); }
.id-card { background: linear-gradient(135deg, var(--primary-dark), var(--primary)); border-radius: var(--radius-lg); overflow: hidden; color: white; box-shadow: var(--shadow-xl); max-width: 380px; position: relative; }

/* ============================================================ FOOTER ============================================================ */
.footer { background: #0F172A; color: rgba(255,255,255,.82); }
.footer-cta { background: linear-gradient(135deg, #16A34A 0%, #15803D 60%, #14532D 100%); padding: 50px 0; border-bottom: 3px solid rgba(255,255,255,.06); position: relative; overflow: hidden; }
.footer-cta::before { content: ''; position: absolute; inset: 0; background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 60 60"><circle cx="30" cy="30" r="25" fill="none" stroke="rgba(255,255,255,.04)" stroke-width="1"/></svg>') repeat; background-size: 60px; pointer-events: none; }
.footer-cta-title { font-family: var(--font-display); font-size: clamp(1.4rem,3vw,2rem); color: white; }
.footer-cta-sub { color: rgba(255,255,255,.85); font-size: .9rem; }
.footer-cta-btn { display: inline-flex; align-items: center; gap: 8px; padding: 12px 28px; border-radius: 30px; font-weight: 600; font-size: .9rem; transition: var(--transition); }
.footer-cta-btn-primary { background: var(--accent); color: white; border: 2px solid transparent; }
.footer-cta-btn-primary:hover { transform: translateY(-3px); color: white; box-shadow: var(--shadow-accent); }
.footer-cta-btn-outline { border: 2px solid rgba(255,255,255,.5); color: white; }
.footer-cta-btn-outline:hover { background: rgba(255,255,255,.15); color: white; border-color: white; }
.footer-main { padding: 70px 0 50px; position: relative; background: #0F172A; }
.footer-main::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, rgba(22,163,74,.4), transparent); }
.footer-brand-block { display: flex; flex-direction: column; }
.footer-brand-logo { display: flex; align-items: center; gap: 14px; margin-bottom: 12px; justify-content: flex-start; }
.footer-brand-icon { width: 50px; height: 50px; border-radius: 14px; flex-shrink: 0; background: linear-gradient(135deg, var(--primary), var(--primary-dark)); display: flex; align-items: center; justify-content: center; color: white; font-size: 1.4rem; box-shadow: 0 4px 15px rgba(22,163,74,.35); }
.footer-brand-name { font-size: 1.1rem; font-weight: 700; color: white; line-height: 1.3; }
.footer-about { font-size: .87rem; line-height: 1.9; color: rgba(255,255,255,.7); margin-bottom: 0; }
.footer-brand-block-premium { padding: 0; border-radius: 0; background: transparent; border: 0; box-shadow: none; }
.footer-brand-mark { min-width: auto; min-height: auto; padding: 0; border-radius: 0; display: inline-flex; align-items: center; justify-content: center; background: transparent; border: 0; box-shadow: none; }
.footer-brand-panel { margin-top: 16px; display: flex; flex-wrap: wrap; gap: 10px; }
.footer-brand-panel span { display: inline-flex; align-items: center; gap: 8px; padding: 8px 12px; border-radius: 999px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.08); color: rgba(255,255,255,.78); font-size: .74rem; font-weight: 600; }
.footer-brand-panel i { color: var(--accent-light); }
.footer-brand-block-premium { padding: 0; border-radius: 0; }
.footer-brand-logo { justify-content: flex-start; margin-bottom: 0; }
.footer-brand-mark-light {
  min-width: auto;
  min-height: auto;
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}
.footer-brand-mark-light img {
  display: block;
  max-height: 78px;
  width: auto;
}
.footer-contact { list-style: none; padding: 0; margin: 0; }
.footer-contact li { display: flex; align-items: flex-start; gap: 12px; font-size: .85rem; color: rgba(255,255,255,.78); margin-bottom: 12px; }
.footer-contact li i { color: var(--primary-light); margin-top: 2px; flex-shrink: 0; width: 30px; height: 30px; background: rgba(22,163,74,.15); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: .8rem; }
.footer-contact li a { color: rgba(255,255,255,.78); }
.footer-contact li a:hover { color: var(--primary-light); }
.footer-social { display: flex; gap: 10px; flex-wrap: wrap; }
.footer-social a { width: 40px; height: 40px; border-radius: 10px; background: rgba(255,255,255,.07); color: rgba(255,255,255,.75); display: flex; align-items: center; justify-content: center; font-size: .9rem; transition: var(--transition); border: 1px solid rgba(255,255,255,.1); }
.footer-social a:hover { background: var(--primary); color: white; transform: translateY(-4px); border-color: var(--primary); box-shadow: 0 8px 20px rgba(22,163,74,.4); }
.footer-widget-title, .footer-title { font-size: .9rem; font-weight: 700; color: white; margin-bottom: 18px; padding-bottom: 12px; border-bottom: 1px solid rgba(255,255,255,.1); position: relative; text-transform: uppercase; letter-spacing: .6px; }
.footer-widget-title::after, .footer-title::after { content: ''; position: absolute; bottom: -1px; left: 0; width: 36px; height: 2px; background: linear-gradient(90deg, var(--primary-light), var(--primary)); border-radius: 10px; }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 8px; }
.footer-links a { color: rgba(255,255,255,.68); font-size: .86rem; transition: var(--transition); display: flex; align-items: center; gap: 8px; }
.footer-links a .fa-arrow-right { font-size: .6rem; color: var(--primary-light); opacity: 0; transition: var(--transition); }
.footer-links a:hover { color: var(--primary-light); padding-left: 5px; }
.footer-links a:hover .fa-arrow-right { opacity: 1; }
.footer-certs { border-top: 1px solid rgba(255,255,255,.08); padding-top: 16px; }
.footer-certs-title { font-size: .75rem; font-weight: 600; color: rgba(255,255,255,.45); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 10px; }
.footer-cert-badge { display: inline-flex; align-items: center; gap: 6px; background: rgba(22,163,74,.15); border: 1px solid rgba(22,163,74,.3); color: rgba(255,255,255,.82); padding: 5px 13px; border-radius: 20px; font-size: .76rem; margin: 3px 4px 3px 0; }
.footer-cert-badge i { color: var(--primary-light); }
.footer-events { display: flex; flex-direction: column; gap: 12px; }
.footer-event-item { display: flex; align-items: center; gap: 14px; padding: 12px 14px; border-radius: 12px; background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.07); transition: var(--transition); }
.footer-event-item:hover { background: rgba(22,163,74,.1); border-color: rgba(22,163,74,.35); transform: translateX(4px); }
.footer-event-date { min-width: 48px; height: 52px; background: linear-gradient(135deg, var(--primary), var(--primary-dark)); border-radius: 10px; text-align: center; display: flex; flex-direction: column; align-items: center; justify-content: center; color: white; flex-shrink: 0; box-shadow: 0 4px 12px rgba(22,163,74,.3); }
.footer-event-date .day { font-size: 1.15rem; font-weight: 800; line-height: 1; }
.footer-event-date .mon { font-size: .62rem; text-transform: uppercase; letter-spacing: .5px; }
.footer-event-info { flex: 1; }
.footer-event-info span { color: rgba(255,255,255,.75); font-size: .84rem; line-height: 1.4; display: block; }
.footer-event-item:hover .footer-event-info span { color: rgba(255,255,255,.95); }
/* Newsletter widget */
.footer-newsletter { background: rgba(22,163,74,.08); border: 1px solid rgba(22,163,74,.2); border-radius: 14px; padding: 18px; margin-top: 20px; }
.footer-newsletter p { font-size: .83rem; color: rgba(255,255,255,.65); margin-bottom: 12px; }
.footer-newsletter .input-group input { background: rgba(255,255,255,.07); border-color: rgba(255,255,255,.12); color: white; font-size: .84rem; }
.footer-newsletter .input-group input::placeholder { color: rgba(255,255,255,.35); }
.footer-newsletter .input-group input:focus { background: rgba(255,255,255,.1); border-color: var(--primary-light); box-shadow: none; color: white; }
.footer-bottom { background: rgba(0,0,0,.4); padding: 18px 0; border-top: 1px solid rgba(22,163,74,.12); }
.footer-bottom p { font-size: .82rem; color: rgba(255,255,255,.5); margin: 0; }
.footer-bottom-links { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; justify-content: flex-end; }
.footer-bottom-links a { color: rgba(255,255,255,.5); font-size: .8rem; transition: var(--transition); }
.footer-bottom-links a:hover { color: var(--primary-light); }

/* Footer Bank Card */
.footer-bank-card { background: rgba(255,255,255,.04); border: 1px solid rgba(22,163,74,.2); border-radius: 14px; padding: 18px; }
.footer-bank-row { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 12px; }
.footer-bank-row i { margin-top: 3px; font-size: 1rem; flex-shrink: 0; width: 28px; }
.footer-bank-label { font-size: .68rem; color: rgba(255,255,255,.4); text-transform: uppercase; letter-spacing: .6px; margin-bottom: 2px; }
.footer-bank-val { font-size: .9rem; color: rgba(255,255,255,.85); font-weight: 600; }
.footer-bank-sub { font-size: .75rem; color: rgba(255,255,255,.5); margin-top: 2px; }
.footer-bank-divider { height: 1px; background: rgba(255,255,255,.07); margin: 12px 0; }
.footer-slogan { padding: 10px 14px; background: rgba(245,158,11,.07); border-left: 3px solid rgba(245,158,11,.4); border-radius: 0 8px 8px 0; }

/* ============================================================ FLOATING ELEMENTS ============================================================ */
.whatsapp-float { position: fixed; bottom: 90px; right: 25px; z-index: 999; width: 55px; height: 55px; border-radius: 50%; background: #25D366; color: white; display: flex; align-items: center; justify-content: center; font-size: 1.6rem; box-shadow: 0 5px 20px rgba(37,211,102,.4); transition: var(--transition); animation: float-bounce 3s ease-in-out infinite; }
.whatsapp-float:hover { background: #1ea952; color: white; transform: scale(1.1); animation: none; }
.whatsapp-tooltip { position: absolute; right: calc(100% + 12px); top: 50%; transform: translateY(-50%); background: var(--darker); color: white; padding: 5px 12px; border-radius: 20px; font-size: .75rem; white-space: nowrap; opacity: 0; pointer-events: none; transition: opacity .2s ease; }
.whatsapp-float:hover .whatsapp-tooltip { opacity: 1; }
@keyframes float-bounce { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
.back-to-top { position: fixed; bottom: 25px; right: 25px; z-index: 999; width: 46px; height: 46px; border-radius: 50%; background: linear-gradient(135deg, var(--primary), var(--primary-dark)); color: white; display: flex; align-items: center; justify-content: center; font-size: .9rem; box-shadow: var(--shadow-green); opacity: 0; visibility: hidden; transition: var(--transition); }
.back-to-top.visible { opacity: 1; visibility: visible; }
.back-to-top:hover { color: white; transform: translateY(-3px); }

/* ============================================================ UTILITY ============================================================ */
.text-primary-custom { color: var(--primary) !important; }
.text-secondary-custom { color: var(--accent) !important; }
.bg-primary-custom { background-color: var(--primary) !important; }
.bg-light-green { background-color: var(--primary-50) !important; }
.section-bg { background: var(--gray-lighter); }
.rounded-xl { border-radius: var(--radius-xl) !important; }
.shadow-custom { box-shadow: var(--shadow) !important; }
.shadow-custom-lg { box-shadow: var(--shadow-xl) !important; }
.z-1 { position: relative; z-index: 1; }
.tracking-wider { letter-spacing: .05em; }
.fs-7 { font-size: .85rem !important; }
.fs-8 { font-size: .75rem !important; }
.breadcrumb { margin: 0; }
.breadcrumb-item { font-size: .88rem; }
.alert { border-radius: var(--radius); border: none; }
.table th { background: var(--primary-50); font-weight: 600; font-size: .88rem; color: var(--primary-dark); }
.table td { font-size: .88rem; vertical-align: middle; }
.badge { font-weight: 500; padding: 5px 10px; border-radius: 6px; }
.page-link { border-radius: 8px !important; margin: 0 3px; border: 1px solid var(--gray-light); color: var(--dark); }
.page-item.active .page-link { background: var(--primary); border-color: var(--primary); }
.page-link:hover { background: var(--primary); border-color: var(--primary); color: white; }
.fade-in-up { animation: fadeInUp .6s ease forwards; }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }

/* ============================================================ RESPONSIVE ============================================================ */
@media(max-width:1200px) {
  .hero-left-inner { padding: 0 40px 0 40px; }
}
@media(max-width:991px) {
  :root { --section-py: 65px; --section-py-sm: 44px; }
  .hero-swiper, .video-hero-wrap { min-height: 65vh; }
  .hero-stats { gap: 20px; }
  .hero-stat .stat-number { font-size: 1.6rem; }
  .event-card-v .event-card-img { height: 190px; }
}
@media(max-width:767px) {
  :root { --section-py: 55px; --section-py-sm: 36px; }
  .section-heading { font-size: 1.7rem; }
  .donate-cta-inner { padding: 35px 24px; }
  .hero-swiper { height: auto; min-height: 100svh; }
  .hero-title { font-size: clamp(1.7rem, 7vw, 2.5rem); }
  .hero-stats { gap: 14px; margin-top: 30px; flex-wrap: wrap; }
  .hero-stat .stat-number { font-size: 1.4rem; }
  .hero-stat .stat-label { font-size: .7rem; }
  .service-strip-divider { display: none; }
  .contact-info-card { padding: 30px 22px; }
  .footer-main .row > [class^="col-"] { margin-bottom: 2rem; }
  .footer-bottom-links { justify-content: flex-start; margin-top: 8px; }
  .event-card:not(.event-card-v) { flex-direction: column; }
  .event-card:not(.event-card-v) .event-card-img { width: 100%; height: 160px; }
  .event-card:not(.event-card-v) .event-date-box { flex-direction: row; gap: 8px; padding: 12px 20px; min-width: auto; width: 100%; justify-content: flex-start; }
  .event-card:not(.event-card-v) .event-date-box .day { font-size: 1.5rem; }
  .page-hero { padding: 90px 0 50px; }
  .page-hero-title { font-size: clamp(1.6rem, 6vw, 2.4rem); }
  .donate-amount-btns { gap: 8px; }
  .donate-amount-btn { padding: 8px 16px; font-size: .82rem; }
  .membership-card { margin-bottom: 24px; }
  .stat-card { padding: 22px 14px; }
  .stat-card .stat-number { font-size: 2rem; }
}
@media(max-width:575px) {
  :root { --section-py: 45px; --section-py-sm: 30px; }
  .section-heading { font-size: 1.5rem; }
  .section-badge { font-size: .65rem; padding: 6px 14px; }
  .hero-btns { flex-direction: column; }
  .btn-hero-primary, .btn-hero-secondary { width: 100%; text-align: center; justify-content: center; }
  .hero-stats { gap: 10px; }
  .hero-stat .stat-number { font-size: 1.2rem; }
  .hero-stat .stat-label { font-size: .65rem; }
  .feature-card, .why-us-card { padding: 24px 18px; }
  .team-img-wrap { height: 200px; }
  .news-card-img, .program-card-img { height: 180px; }
  .event-card-v .event-card-img { height: 170px; }
  .footer-main { padding: 50px 0 30px; }
  .footer-brand-name { font-size: .95rem; }
  .footer-newsletter { padding: 14px; }
  .filter-buttons { gap: 6px; }
  .filter-btn { padding: 7px 14px; font-size: .78rem; }
  .navbar-brand-text { font-size: .88rem !important; }
}
@media(max-width:480px) {
  .hero-cta-group { flex-direction: column; }
  .btn-hero-main, .btn-hero-ghost { width: 100%; justify-content: center; }
  .gallery-masonry { column-count: 1; }
  .stats-section { padding: 50px 0; }
  .stat-card .stat-number { font-size: 1.8rem; }
  .team-card { max-width: 90%; margin: 0 auto; }
  .payment-methods { grid-template-columns: repeat(2, 1fr); }
  .footer-bottom { text-align: center; }
  .footer-bottom-links { justify-content: center; }
}

/* ===== BVP ATTRACTIVE ENHANCEMENTS ===== */

/* Gradient text for key headings */
.gradient-text {
  background: linear-gradient(135deg, var(--primary) 0%, #0ea15a 40%, #F59E0B 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Animated section badge — subtle pulse */
.section-badge {
  animation: none;
}
@keyframes badgePulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(22,163,74,.25); }
  50%       { box-shadow: 0 0 0 8px rgba(22,163,74,0); }
}

/* Glowing CTA button */
.btn-primary {
  box-shadow: 0 4px 20px rgba(22,163,74,.35);
  transition: box-shadow .25s, transform .2s;
}
.btn-primary:hover {
  box-shadow: 0 6px 28px rgba(22,163,74,.55);
  transform: translateY(-2px);
}

/* Card hover lift — unified */
.card, .feature-card, .why-us-card, .team-card, .news-card, .program-card, .stat-card {
  transition: transform .3s cubic-bezier(.4,0,.2,1), box-shadow .3s;
}
.card:hover, .feature-card:hover, .why-us-card:hover,
.news-card:hover, .program-card:hover, .stat-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0,0,0,.12) !important;
}

/* Section divider wave */
.section-wave {
  line-height: 0;
  overflow: hidden;
}
.section-wave svg { display: block; }

/* Founder / President highlight card */
.founder-card {
  border: 2px solid var(--primary) !important;
  background: linear-gradient(145deg, #f0fdf4, #fff) !important;
  position: relative;
  overflow: hidden;
}
.founder-card::before {
  content: '';
  position: absolute;
  top: -30px; right: -30px;
  width: 100px; height: 100px;
  background: radial-gradient(circle, rgba(22,163,74,.18) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.founder-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, var(--primary), #0ea15a);
  color: #fff;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 30px;
}

/* Image overlay shimmer on hover */
.team-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 40%, rgba(255,255,255,.18) 60%, transparent 65%);
  background-size: 200% 100%;
  background-position: 200% 0;
  transition: background-position .6s ease;
  pointer-events: none;
}
.team-card:hover .team-img-wrap::after {
  background-position: -200% 0;
}

/* Hindi text weight enhancement */
.section-heading:lang(hi),
.hero-title:lang(hi),
h1:lang(hi), h2:lang(hi), h3:lang(hi) {
  font-weight: 700;
  letter-spacing: .01em;
}

/* Stats bar attractive gradient */
.donate-stats-bar {
  background: linear-gradient(135deg, var(--primary) 0%, #137333 60%, #0f5c2a 100%);
  position: relative;
  overflow: hidden;
}
.donate-stats-bar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Ccircle cx='20' cy='20' r='12'/%3E%3C/g%3E%3C/svg%3E") repeat;
  pointer-events: none;
}

/* Payment method card polish */
.payment-method-card {
  transition: border-color .2s, box-shadow .2s, background .2s;
}
.payment-method-card:hover {
  border-color: var(--primary) !important;
  background: rgba(22,163,74,.06);
}
.payment-method-card.active {
  border-color: var(--primary) !important;
  background: rgba(22,163,74,.1);
  box-shadow: 0 0 0 3px rgba(22,163,74,.2);
}

/* UPI box highlight */
#upiIdText {
  color: var(--primary);
  font-family: 'Courier New', monospace;
  font-size: 1.05rem;
}

/* Smooth scroll */
html { scroll-behavior: smooth; }

/* Focus ring brand color */
*:focus-visible {
  outline: 3px solid rgba(22,163,74,.55);
  outline-offset: 2px;
}

/* BVP green highlight bar before section heading */
.section-heading::after {
  content: '';
  display: block;
  width: 52px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 2px;
  margin: 14px auto 0;
}
.section-heading.text-start::after { margin-left: 0; }

/* Nav active indicator dot */
.nav-link.active::after {
  content: '';
  display: block;
  width: 6px; height: 6px;
  background: var(--primary);
  border-radius: 50%;
  margin: 3px auto 0;
}

/* Floating WhatsApp / Contact FAB */
.fab-contact {
  position: fixed;
  bottom: 28px; left: 24px;
  z-index: 9998;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}
.fab-btn {
  width: 52px; height: 52px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.35rem;
  color: #fff;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 18px rgba(0,0,0,.22);
  transition: transform .2s, box-shadow .2s;
  text-decoration: none;
}
.fab-btn:hover { transform: scale(1.12); box-shadow: 0 6px 24px rgba(0,0,0,.3); color: #fff; }
.fab-whatsapp { background: #25D366; }
.fab-phone    { background: var(--primary); }
@media(max-width:575px) {
  .fab-contact { bottom: 16px; left: 14px; }
  .fab-btn { width: 46px; height: 46px; font-size: 1.15rem; }
}

/* ===== END BVP ENHANCEMENTS ===== */

/* ============================================================
   USER PANEL — Dashboard Cards, Sidebar, Mobile Nav
   ============================================================ */

/* --- Stat Cards --- */
.user-dash-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 22px 18px;
  text-align: center;
  box-shadow: 0 2px 16px rgba(0,0,0,.07);
  border: 1px solid var(--gray-light);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.user-dash-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.user-dash-card:hover { transform: translateY(-5px); box-shadow: 0 12px 36px rgba(0,0,0,.12); }
.user-dash-card-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem; color: #fff;
  margin: 0 auto 14px;
}
.user-dash-card-val {
  font-size: 1.85rem; font-weight: 800;
  color: var(--dark); line-height: 1; margin-bottom: 6px;
}
.user-dash-card-lbl {
  font-size: .74rem; color: var(--gray);
  font-weight: 600; text-transform: uppercase; letter-spacing: .6px;
}

/* --- Quick Action Cards --- */
.quick-action-card {
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 9px; padding: 20px 14px;
  background: #fff; border-radius: var(--radius-lg);
  border: 1.5px solid var(--gray-light);
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
  text-decoration: none; color: var(--dark);
  font-size: .8rem; font-weight: 600;
  transition: var(--transition); text-align: center;
}
.quick-action-card i { font-size: 1.6rem; }
.quick-action-card:hover {
  border-color: var(--primary); color: var(--primary);
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(22,163,74,.18);
}

/* --- Certificate Status Cards --- */
.cert-status-card {
  background: #fff; border-radius: var(--radius-lg);
  padding: 22px 18px; text-align: center;
  border: 1px solid var(--gray-light);
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
  height: 100%; display: flex; flex-direction: column;
  align-items: center; transition: var(--transition);
}
.cert-status-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,.1); }
.cert-status-icon {
  width: 60px; height: 60px; border-radius: 18px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; margin: 0 auto 14px;
}

/* --- User Sidebar Nav --- */
.user-sidebar-nav .list-group-item {
  border: none !important;
  border-radius: 10px !important;
  margin-bottom: 3px;
  padding: 10px 14px;
  font-size: .875rem; font-weight: 500;
  color: var(--dark-sub);
  transition: var(--transition);
  display: flex; align-items: center;
}
.user-sidebar-nav .list-group-item i {
  margin-right: 10px; width: 18px;
  text-align: center; color: var(--gray);
  font-size: .9rem; transition: var(--transition);
}
.user-sidebar-nav .list-group-item.active {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark)) !important;
  color: #fff !important;
  box-shadow: 0 4px 16px rgba(22,163,74,.3);
}
.user-sidebar-nav .list-group-item.active i { color: #fff !important; }
.user-sidebar-nav .list-group-item:hover:not(.active) {
  background: rgba(22,163,74,.08);
  color: var(--primary-dark);
}
.user-sidebar-nav .list-group-item:hover:not(.active) i { color: var(--primary); }

/* --- User Mobile Bottom Nav --- */
.user-mobile-nav {
  display: none;
}
@media (max-width: 991.98px) {
  .user-mobile-nav {
    display: flex;
    position: fixed; bottom: 0; left: 0; right: 0;
    background: #fff;
    border-top: 1px solid var(--gray-light);
    z-index: 1040;
    padding: 6px 0 max(8px, env(safe-area-inset-bottom));
    box-shadow: 0 -4px 20px rgba(0,0,0,.08);
  }
  .user-mobile-nav-item {
    flex: 1; display: flex; flex-direction: column;
    align-items: center; gap: 3px; padding: 4px 2px;
    color: #9ca3af; font-size: .62rem; font-weight: 700;
    text-decoration: none; transition: color .2s;
    text-transform: uppercase; letter-spacing: .3px;
    position: relative;
  }
  .user-mobile-nav-item i { font-size: 1.15rem; }
  .user-mobile-nav-item.active { color: var(--primary); }
  .user-mobile-nav-item:hover { color: var(--primary-dark); }
  .user-mobile-nav-badge {
    position: absolute; top: 0; right: calc(50% - 18px);
    min-width: 16px; height: 16px; padding: 0 4px;
    background: #ef4444; color: #fff;
    border-radius: 50px; font-size: .56rem; font-weight: 800;
    display: flex; align-items: center; justify-content: center;
    border: 1.5px solid #fff;
  }
  body.has-user-mobile-nav { padding-bottom: 72px !important; }
}

/* --- Admin Quick-Bar (floating, logged-in admins only) --- */
.bvp-admin-bar {
  position: fixed; bottom: 80px; right: 18px;
  z-index: 1050;
  display: flex; flex-direction: column; gap: 8px;
}
.bvp-admin-bar .bvp-ab-btn {
  display: flex; align-items: center; gap: 6px;
  padding: 8px 14px; border-radius: 50px;
  font-size: .78rem; font-weight: 700;
  box-shadow: 0 4px 18px rgba(0,0,0,.18);
  border: none; cursor: pointer; text-decoration: none;
  white-space: nowrap; transition: var(--transition);
}
.bvp-admin-bar .bvp-ab-btn:hover { transform: translateX(-4px) scale(1.04); }
.bvp-admin-bar .bvp-ab-toggle {
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--primary); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; box-shadow: 0 4px 18px rgba(22,163,74,.4);
  cursor: pointer; transition: var(--transition);
  align-self: flex-end;
}
.bvp-admin-bar .bvp-ab-toggle:hover { background: var(--primary-dark); transform: scale(1.08); }
.bvp-admin-bar .bvp-ab-links { display: none; }
.bvp-admin-bar.open .bvp-ab-links { display: flex; flex-direction: column; gap: 7px; align-items: flex-end; }

/* --- Why Us New Layout --- */
.why-us-new-layout { margin-top: 40px; }
.why-feat-box {
  display: flex; gap: 20px; align-items: flex-start;
  transition: var(--transition-slow);
}
.why-feat-icon {
  width: 64px; height: 64px; border-radius: 18px;
  background: white; color: var(--primary);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; flex-shrink: 0;
  box-shadow: 0 10px 25px rgba(0,0,0,.06);
  transition: var(--transition);
}
.why-feat-box:hover .why-feat-icon {
  background: var(--primary); color: white;
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(22,163,74,.25);
}
.why-feat-text h4 { font-size: 1.15rem; font-weight: 700; margin-bottom: 8px; color: white; text-shadow: 0 2px 4px rgba(0,0,0,0.1); }
.why-feat-text p { font-size: .92rem; color: rgba(255,255,255,0.85); line-height: 1.6; margin: 0; }

.why-feat-box.feat-right { flex-direction: row-reverse; text-align: right; }

/* Why Us Visibility Fix for Headings */
.why-us-section .section-badge { background: rgba(255,255,255,0.15); color: white; border: 1px solid rgba(255,255,255,0.3); }
.why-us-section .section-heading { color: white; }
.why-us-section .section-heading span { color: #34D399; }
.why-us-section .section-desc { color: rgba(255,255,255,0.8); }
.why-us-section .divider { background: rgba(255,255,255,0.2); }
.why-us-section .divider::after { background: var(--primary-light); }

/* Center Rotating */
.why-us-center-wrap {
  position: relative;
  width: 300px; height: 300px;
  margin: 0 auto;
  display: flex; align-items: center; justify-content: center;
}
.why-us-rotate-bg {
  position: absolute; inset: 0;
  border-radius: 50%;
  border: 2px dashed rgba(22,163,74,.2);
  animation: rotateWhy 20s linear infinite;
}
@keyframes rotateWhy { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

.why-us-center-logo {
  position: relative; z-index: 2;
  background: white; width: 180px; height: 180px;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 20px 50px rgba(0,0,0,.12);
  border: 8px solid rgba(255,255,255,.8);
}
.orbit-dot {
  position: absolute; width: 12px; height: 12px;
  background: var(--primary); border-radius: 50%;
  box-shadow: 0 0 15px var(--primary);
}
.dot-1 { top: 0; left: 50%; transform: translateX(-50%); }
.dot-2 { bottom: 20%; left: 10%; }
.dot-3 { bottom: 20%; right: 10%; }

@media (max-width: 991px) {
  .why-feat-box.feat-right { flex-direction: row; text-align: left; }
  .why-us-center-wrap { width: 240px; height: 240px; }
  .why-us-center-logo { width: 140px; height: 140px; }
}

/* --- Home Gallery New Grid --- */
.home-gallery-grid-new {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 240px;
  gap: 15px;
}
.hg-item { position: relative; border-radius: 16px; overflow: hidden; }
.hg-large { grid-column: span 2; grid-row: span 2; }
.hg-tall  { grid-row: span 2; }

.hg-card { width: 100%; height: 100%; position: relative; }
.hg-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s cubic-bezier(.165,.84,.44,1); }
.hg-card:hover img { transform: scale(1.08); }

.hg-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(15,23,42,.85) 0%, transparent 60%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 24px; opacity: 0; transition: var(--transition);
}
.hg-card:hover .hg-overlay { opacity: 1; }

.hg-cat { color: var(--primary-light); font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 4px; display: block; }
.hg-title { color: white; font-size: 1.1rem; font-weight: 700; margin: 0; }

.hg-zoom {
  position: absolute; top: 20px; right: 20px;
  width: 44px; height: 44px; border-radius: 50%;
  background: white; color: var(--dark);
  display: flex; align-items: center; justify-content: center;
  transform: translateY(-20px); transition: all .4s ease;
}
.hg-card:hover .hg-zoom { transform: translateY(0); }
.hg-zoom:hover { background: var(--primary); color: white; }

@media (max-width: 991px) {
  .home-gallery-grid-new { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px; }
  .hg-large { grid-column: span 2; }
}
@media (max-width: 575px) {
  .home-gallery-grid-new { grid-template-columns: 1fr; grid-auto-rows: 250px; }
  .hg-large, .hg-tall { grid-column: span 1; grid-row: span 1; }
}

/* --- Donation CTA Stripe --- */
.donation-cta-stripe { padding: 40px 0; background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%); }
.cta-card-premium {
  display: flex; align-items: center; justify-content: space-between;
  gap: 30px; color: white;
}
.cta-content { display: flex; align-items: center; gap: 24px; }
.cta-icon { width: 80px; height: 80px; border-radius: 50%; background: rgba(255,255,255,.15); display: flex; align-items: center; justify-content: center; font-size: 2.2rem; flex-shrink: 0; }
.cta-text h3 { font-size: 1.6rem; font-weight: 800; margin-bottom: 8px; }
.cta-text h3 span { color: var(--accent-light); }
.cta-text p { font-size: 1rem; color: rgba(255,255,255,.8); margin: 0; }

@media (max-width: 991px) {
  .cta-card-premium { flex-direction: column; text-align: center; }
  .cta-content { flex-direction: column; }
  .cta-actions { width: 100%; }
}

/* --- Impact Metrics --- */
.impact-metric-card {
  background: white; border-radius: 24px; padding: 24px;
  display: flex; align-items: center; gap: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,.04);
  transition: var(--transition);
  border: 1px solid var(--gray-light);
}
.impact-metric-card:hover { transform: translateY(-5px); box-shadow: 0 15px 40px rgba(0,0,0,.08); }
.imp-icon { width: 56px; height: 56px; border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; flex-shrink: 0; }
.imp-num { font-size: 1.4rem; font-weight: 800; color: var(--dark); margin: 0; }
.imp-lbl { font-size: .85rem; color: #64748b; margin: 0; font-weight: 500; }

/* --- Testimonials Home --- */
.testimonial-section-home { background: #f8fafc; }
.testimonial-card-premium {
  background: white; padding: 40px; border-radius: 24px;
  box-shadow: 0 10px 40px rgba(0,0,0,.04);
  height: 100%; position: relative; border: 1px solid var(--gray-light);
  transition: var(--transition);
}
.testimonial-card-premium:hover { transform: translateY(-5px); box-shadow: 0 15px 50px rgba(0,0,0,.08); }
.testi-quote { position: absolute; top: 30px; right: 30px; font-size: 2.5rem; color: rgba(22,163,74,.1); }
.testi-rating { color: var(--accent); font-size: .85rem; margin-bottom: 16px; }
.testi-text { font-size: .95rem; line-height: 1.8; color: #475569; font-style: italic; margin-bottom: 24px; }
.testi-author { display: flex; align-items: center; gap: 15px; }
.testi-avatar { width: 48px; height: 48px; border-radius: 50%; background: var(--primary); color: white; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 1.2rem; }
.testi-name { font-size: 1rem; font-weight: 700; color: var(--dark); margin: 0; }
.testi-role { font-size: .8rem; color: #64748b; margin: 0; }

/* ============================================================
   END USER PANEL + ADMIN BAR
   ============================================================ */

/* ============================================================
   GALLERY HERO
   ============================================================ */
.gallery-hero {
  background: linear-gradient(135deg, #0F172A 0%, #1a2f6e 55%, #0b5d3b 100%);
  padding: 110px 0 60px; color: white;
  position: relative; overflow: hidden;
}
.gh-pattern {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background-image: radial-gradient(circle, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 28px 28px;
}
.gh-preview-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; width: 280px; }
.gh-preview-img { border-radius: 12px; overflow: hidden; box-shadow: 0 8px 25px rgba(0,0,0,.35); height: 120px; border: 1.5px solid rgba(255,255,255,.12); }
.gh-preview-img img { width: 100%; height: 100%; object-fit: cover; }
/* Gallery Stats Row */
.gallery-stats-row {
  display: flex; align-items: center; justify-content: center;
  gap: 32px; padding: 20px 32px;
  background: white; border-radius: 16px;
  box-shadow: 0 4px 24px rgba(0,0,0,.08); border: 1px solid var(--gray-light);
  max-width: 500px;
}
.gsr-item { text-align: center; }
.gsr-num  { display: block; font-size: 2rem; font-weight: 800; color: var(--primary); line-height: 1; margin-bottom: 4px; }
.gsr-label{ font-size: .78rem; color: var(--gray); font-weight: 600; text-transform: uppercase; letter-spacing: .5px; }
.gsr-divider { width: 1px; height: 40px; background: var(--gray-light); flex-shrink: 0; }
@media(max-width:767px) {
  .gallery-hero { padding: 90px 0 50px; }
  .gallery-stats-row { gap: 18px; padding: 16px 18px; }
}

/* ============================================================
   CONTACT PAGE HERO EXTRAS
   ============================================================ */
.page-hero-shapes { position: absolute; inset: 0; overflow: hidden; pointer-events: none; z-index: 0; }
.hero-shape { position: absolute; border-radius: 50%; }
.hero-shape-1 { width: 420px; height: 420px; background: rgba(255,255,255,.04); top: -110px; right: -90px; }
.hero-shape-2 { width: 260px; height: 260px; background: rgba(255,255,255,.03); bottom: -70px; left: 8%; }
.hero-shape-3 { width: 130px; height: 130px; background: var(--accent); opacity: .08; top: 42%; right: 22%; }
.page-hero-icon-wrap {
  width: 130px; height: 130px;
  background: rgba(255,255,255,.12); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  border: 2px solid rgba(255,255,255,.2);
}
.page-hero-big-icon { font-size: 3.5rem; color: rgba(255,255,255,.7); }
/* Contact Info Tiles */
.contact-info-tile {
  background: white; border-radius: var(--radius-lg); padding: 28px 20px;
  text-align: center; box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-light); height: 100%; transition: var(--transition);
}
.contact-info-tile:hover { transform: translateY(-5px); box-shadow: var(--shadow-xl); }
.cit-icon {
  width: 56px; height: 56px; border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; color: white; margin: 0 auto 14px;
}
.cit-icon-blue   { background: linear-gradient(135deg, #1E3A8A, #3B82F6); }
.cit-icon-green  { background: linear-gradient(135deg, var(--primary-dark), var(--primary-light)); }
.cit-icon-orange { background: linear-gradient(135deg, #D97706, #F59E0B); }
.cit-icon-purple { background: linear-gradient(135deg, #7C3AED, #A78BFA); }
.cit-title { font-size: 1rem; font-weight: 700; color: var(--dark); margin-bottom: 6px; }
.cit-text  { font-size: .85rem; color: var(--gray); margin: 0; line-height: 1.6; }
.cit-text a { color: var(--primary); font-weight: 600; }
/* Contact Form Card */
.contact-form-card { background: white; border-radius: var(--radius-xl); box-shadow: var(--shadow-xl); overflow: hidden; border: 1px solid var(--gray-light); }
.contact-form-header { background: linear-gradient(135deg, var(--primary-dark), var(--primary)); padding: 28px 32px; }
.cfh-icon { width: 48px; height: 48px; background: rgba(255,255,255,.15); border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 1.3rem; color: white; flex-shrink: 0; }
.cfh-title { font-size: 1.2rem; font-weight: 700; color: white; margin: 0; }
.cfh-sub   { font-size: .82rem; color: rgba(255,255,255,.65); margin: 4px 0 0; }
.contact-form-body { padding: 32px; }
.cf-group { position: relative; margin-bottom: 0; }
.cf-group label { font-size: .8rem; font-weight: 600; color: var(--dark); text-transform: uppercase; letter-spacing: .6px; margin-bottom: 8px; display: block; }
.req { color: var(--danger); }
.cf-input {
  width: 100%; padding: 12px 16px 12px 44px;
  border: 1.5px solid var(--gray-light); border-radius: var(--radius);
  font-size: .9rem; font-family: inherit; color: var(--dark);
  transition: border-color .2s, box-shadow .2s; background: white; appearance: none;
}
.cf-input:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(22,163,74,.15); }
.cf-icon { position: absolute; left: 14px; bottom: 14px; color: var(--gray); font-size: .85rem; pointer-events: none; }
.cf-textarea { resize: vertical; min-height: 130px; }
.btn-contact-submit {
  width: 100%; padding: 14px; background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: white; border: none; border-radius: var(--radius);
  font-size: .95rem; font-weight: 700; cursor: pointer;
  display: flex; align-items: center; justify-content: center; gap: 10px;
  transition: var(--transition);
}
.btn-contact-submit:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(22,163,74,.4); }
.contact-success-msg {
  background: rgba(22,163,74,.06); border: 1px solid rgba(22,163,74,.2);
  border-radius: var(--radius); padding: 16px 20px;
  display: flex; gap: 14px; align-items: flex-start; margin-bottom: 20px;
}
.csm-icon { font-size: 1.5rem; color: var(--primary); flex-shrink: 0; margin-top: 2px; }
.contact-error-msg {
  background: rgba(239,68,68,.06); border: 1px solid rgba(239,68,68,.2);
  border-radius: var(--radius); padding: 12px 16px;
  color: var(--danger); font-size: .88rem; margin-bottom: 12px;
}
@media(max-width:575px) {
  .contact-form-header { padding: 20px 18px; }
  .contact-form-body  { padding: 18px; }
}

/* ============================================================
   AWARDS & CERTIFICATES PAGE
   ============================================================ */
.awards-hero {
  background: linear-gradient(135deg, #0F172A 0%, #1a2f6e 50%, #4c1d95 100%);
  padding: 110px 0 70px; color: white; position: relative; overflow: hidden;
}
.awards-hero::before {
  content: ''; position: absolute; width: 500px; height: 500px;
  border-radius: 50%; background: rgba(255,255,255,.03); top: -150px; right: -150px;
}
.award-filter-bar { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 40px; justify-content: center; }
.award-filter-btn {
  padding: 9px 22px; border-radius: var(--radius-full);
  border: 1.5px solid var(--gray-light); background: white;
  cursor: pointer; font-size: .84rem; font-weight: 600;
  transition: var(--transition); color: var(--gray);
}
.award-filter-btn.active, .award-filter-btn:hover {
  background: var(--primary); border-color: var(--primary); color: white; box-shadow: var(--shadow-green);
}
.award-card {
  background: white; border-radius: 20px; overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,.07); transition: var(--transition);
  border: 1px solid var(--gray-light); height: 100%; display: flex; flex-direction: column;
}
.award-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-xl); }
.award-card-media { position: relative; }
.award-card-img { height: 200px; overflow: hidden; }
.award-card-img img { width: 100%; height: 100%; object-fit: contain; padding: 16px; background: var(--gray-lighter); }
.award-card-icon-wrap { height: 130px; display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg, #f0fdf4, #e0f2fe); }
.award-card-icon-wrap i { font-size: 3.8rem; color: var(--primary); }
.award-type-pill {
  position: absolute; top: 10px; right: 10px;
  padding: 4px 12px; border-radius: 20px;
  font-size: .7rem; font-weight: 700; letter-spacing: .5px; text-transform: uppercase;
}
.award-type-pill.certificate { background: #FEF9C3; color: #713F12; }
.award-type-pill.award       { background: #DCFCE7; color: #14532D; }
.award-type-pill.recognition { background: #EDE9FE; color: #4C1D95; }
.award-card-body { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.award-card-title  { font-size: 1.05rem; font-weight: 700; color: var(--dark); margin-bottom: 6px; }
.award-card-issuer { font-size: .82rem; color: var(--gray); margin-bottom: 10px; display: flex; align-items: center; gap: 6px; }
.award-card-desc   { font-size: .85rem; color: var(--dark-2); margin-bottom: 14px; flex: 1; }
.award-download-btn {
  display: flex; align-items: center; gap: 8px; padding: 10px 18px;
  background: var(--primary-50); border: 1px solid var(--primary-100);
  border-radius: var(--radius); color: var(--primary-dark);
  font-size: .82rem; font-weight: 700; text-decoration: none;
  transition: var(--transition); margin-top: auto;
}
.award-download-btn:hover { background: var(--primary); color: white; }
@media(max-width:767px) { .awards-hero { padding: 90px 0 50px; } }

/* ============================================================
   RESPONSIVE HARDENING + EVENTS POLISH
   ============================================================ */
@media (max-width: 1199px) {
  .topbar-contact { gap: 12px; }
  .topbar-link { font-size: .73rem; }
  .brand-name { font-size: .86rem; }
  .topbar-right .topbar-social { display: none; }
  .topbar-translate { margin-left: 10px; }
}

@media (max-width: 1366px) {
  .topbar-contact .topbar-link:last-child { display: none; }
}

@media (max-width: 1199px) {
  body.mobile-nav-open { overflow: hidden; }
  body.mobile-nav-open #mainNav { z-index: 1040; }
  .mobile-nav-backdrop {
    position: fixed; inset: 0;
    background: rgba(15,23,42,.6);
    opacity: 0; visibility: hidden;
    transition: all .3s ease;
    z-index: 1029;
  }
  body.mobile-nav-open .mobile-nav-backdrop { opacity: 1; visibility: visible; }
  .navbar-collapse.nav-drawer {
    position: fixed; top: 0; right: 0;
    width: min(320px, 85vw); height: 100vh !important;
    margin-top: 0; padding: 24px 20px;
    background: var(--white);
    border-left: 1px solid rgba(255,255,255,.3);
    border-radius: 24px 0 0 24px;
    overflow-y: auto; overflow-x: hidden;
    box-shadow: -15px 0 45px rgba(0,0,0,.15);
    transform: translateX(105%);
    transition: transform .4s cubic-bezier(0.16, 1, 0.3, 1) !important;
    display: block !important; visibility: hidden;
    z-index: 1039;
  }
  .navbar-collapse.nav-drawer.show { transform: translateX(0); visibility: visible; }
  .navbar-collapse.nav-drawer.collapsing { visibility: visible; height: 100vh !important; }
  .navbar-collapse.nav-drawer:not(.show):not(.collapsing) { visibility: hidden; }
  .mobile-drawer-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; padding-bottom: 16px; margin-bottom: 16px; border-bottom: 1px solid rgba(148,163,184,.18); }
  .mobile-drawer-kicker { display: block; font-size: .68rem; text-transform: uppercase; letter-spacing: .12em; color: var(--primary); font-weight: 700; margin-bottom: 6px; }
  .mobile-drawer-title { display: block; color: var(--dark); font-size: 1rem; line-height: 1.35; }
  .mobile-drawer-close { width: 42px; height: 42px; border-radius: 14px; border: 1px solid rgba(148,163,184,.2); background: #fff; color: var(--dark); display: inline-flex; align-items: center; justify-content: center; box-shadow: 0 12px 24px rgba(15,23,42,.08); }
  .mobile-drawer-actions { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; margin-bottom: 18px; }
  .mobile-drawer-action { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 12px 14px; border-radius: 14px; background: #fff; border: 1px solid rgba(148,163,184,.18); color: var(--dark); font-size: .84rem; font-weight: 700; }
  .mobile-drawer-action-primary { background: linear-gradient(135deg, var(--primary), var(--primary-dark)); color: #fff; border-color: transparent; box-shadow: var(--shadow-green); }
  .navbar-nav .nav-link { white-space: normal; }
  .nav-drawer .navbar-nav { align-items: stretch !important; gap: 8px !important; }
  .nav-drawer .nav-item,
  .nav-drawer .dropdown { width: 100%; }
  .nav-drawer .navbar-nav .nav-link,
  .nav-drawer .dropdown-toggle,
  .nav-drawer .nav-login-link,
  .nav-drawer .btn-donate { width: 100%; }
  .nav-drawer .navbar-nav .nav-link { padding: 12px 14px !important; border-radius: 14px; background: rgba(255,255,255,.7); border: 1px solid rgba(148,163,184,.12); }
  .nav-drawer .navbar-nav .nav-link.active { background: linear-gradient(135deg, rgba(22,163,74,.12), rgba(22,163,74,.05)); }
  .nav-drawer .dropdown-menu { position: static !important; transform: none !important; box-shadow: none; margin-top: 8px; border-radius: 16px; border-color: rgba(148,163,184,.18); }
  .nav-drawer .btn-donate { justify-content: center; margin-top: 8px; }
  .hero-left { padding: 70px 0 24px; }
  .hero-right { min-height: 330px; }
  .hero-img-showcase { padding: 30px 14px; }
  .about-highlight-band { grid-template-columns: 1fr; }
  .home-gallery-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .home-gallery-grid .gallery-item,
  .home-gallery-grid .gallery-item-featured,
  .home-gallery-grid .gallery-item-tall { grid-column: span 1; min-height: 240px; }
  .home-gallery-grid .gallery-item img,
  .home-gallery-grid .gallery-item-featured img,
  .home-gallery-grid .gallery-item-tall img { min-height: 240px; }
  .news-card-compact { grid-template-columns: 1fr; }
  .news-card-compact .news-card-img { min-height: 220px; }
  .newsletter-shell { padding: 28px; }
}

@media (max-width: 1199px) and (min-width: 992px) {
  .topbar { display: none !important; }
}

@media (max-width: 575px) {
  .brand-wrap { max-width: calc(100vw - 128px); }
  .brand-text { min-width: 0; }
  .brand-name {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 170px;
  }
  .brand-tagline {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 170px;
  }
  .section-padding { padding: 64px 0; }
  .mobile-drawer-actions { grid-template-columns: 1fr; }
  .home-gallery-grid { grid-template-columns: 1fr; }
  .gallery-item-caption-wrap { flex-direction: column; align-items: flex-start; }
}

.events-detail-wrap .event-detail-cover {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 14px 34px rgba(0,0,0,.14);
}
.events-detail-wrap .event-detail-cover img {
  width: 100%;
  height: 360px;
  object-fit: cover;
}
.events-detail-wrap .event-detail-cover-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15,23,42,.08), rgba(15,23,42,.55));
}
.events-detail-wrap .event-detail-status {
  position: absolute;
  top: 14px;
  left: 14px;
}
.events-detail-wrap .event-detail-content {
  background: #fff;
  border: 1px solid var(--gray-light);
  border-radius: 16px;
  padding: 22px;
  box-shadow: var(--shadow);
}
.events-detail-wrap .event-detail-lead {
  font-size: 1rem;
  color: var(--dark);
  font-weight: 500;
  margin-bottom: 12px;
}
.event-info-pro {
  border-radius: 16px;
  position: sticky;
  top: 90px;
}
.event-register-banner {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  height: 160px;
}
.event-register-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.event-register-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15,23,42,.2), rgba(15,23,42,.75));
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 14px;
}

@media (max-width: 767px) {
  .events-detail-wrap .event-detail-cover img { height: 250px; }
  .events-detail-wrap .event-detail-content { padding: 16px; }
  .event-info-pro { position: static; }
  .news-article-cover img { height: 260px; }
  .article-content { padding: 16px; }
}