/* ===================================================
   MISSION MODI AGAIN PM — BJP.ORG INSPIRED STYLES
   =================================================== */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Roboto', 'Hind', sans-serif;
  font-size: 15px;
  line-height: 1.65;
  color: #333;
  background: #fff;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color .25s; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }
h1, h2, h3, h4, h5 { font-family: 'Oswald', 'Roboto', sans-serif; font-weight: 600; line-height: 1.2; color: #1a1a1a; }
input, textarea { font-family: inherit; }

/* TOKENS */
:root {
  --saffron: #FF6700;
  --saffron-light: #FF8C2E;
  --saffron-dark: #E55B0E;
  --saffron-deep: #C7480A;
  --green: #138808;
  --navy: #002F6C;
  --gold: #FFB300;
  --cream: #FFF8F0;
  --bg-light: #F8F8F8;
  --text: #1a1a1a;
  --text-muted: #6a6a6a;
  --text-soft: #999;
  --line: #E5E5E5;
  --line-dark: #CCC;
  --shadow-sm: 0 2px 8px rgba(0,0,0,.06);
  --shadow-md: 0 8px 24px rgba(0,0,0,.1);
  --shadow-lg: 0 20px 50px rgba(0,0,0,.15);
}

.container { width: 100%; max-width: 1340px; margin: 0 auto; padding: 0 24px; }

/* ===== LOTUS EMBLEM (CSS-DRAWN) ===== */
.lotus-emblem {
  position: relative;
  width: 90px; height: 90px;
  margin: 0 auto;
}
.lotus-emblem .petal {
  position: absolute;
  width: 22px; height: 50px;
  background: linear-gradient(180deg, #FF8C2E 0%, #FF6700 50%, #C7480A 100%);
  border-radius: 50% 50% 50% 50% / 70% 70% 30% 30%;
  left: 50%; bottom: 50%;
  margin-left: -11px;
  transform-origin: bottom center;
  box-shadow: inset -2px 0 4px rgba(0,0,0,.15);
}
.lotus-emblem .petal.p1 { transform: rotate(-50deg); }
.lotus-emblem .petal.p2 { transform: rotate(-25deg); }
.lotus-emblem .petal.p3 { transform: rotate(0deg); }
.lotus-emblem .petal.p4 { transform: rotate(25deg); }
.lotus-emblem .petal.p5 { transform: rotate(50deg); }
.lotus-emblem .lotus-center {
  position: absolute;
  width: 20px; height: 10px;
  background: linear-gradient(180deg, #5C2C0A 0%, #3D1A04 100%);
  border-radius: 50% 50% 0 0;
  left: 50%; bottom: 50%;
  margin-left: -10px;
  margin-bottom: -5px;
  box-shadow: 0 -1px 2px rgba(0,0,0,.2);
}

/* Mini lotus for header */
.lotus-mini {
  position: relative;
  width: 42px; height: 42px;
}
.lotus-mini .petal-m {
  position: absolute;
  width: 10px; height: 24px;
  background: linear-gradient(180deg, #FF8C2E, #C7480A);
  border-radius: 50% 50% 50% 50% / 70% 70% 30% 30%;
  left: 50%; bottom: 50%;
  margin-left: -5px;
  transform-origin: bottom center;
}
.lotus-mini .petal-m.p1 { transform: rotate(-50deg); }
.lotus-mini .petal-m.p2 { transform: rotate(-25deg); }
.lotus-mini .petal-m.p3 { transform: rotate(0deg); }
.lotus-mini .petal-m.p4 { transform: rotate(25deg); }
.lotus-mini .petal-m.p5 { transform: rotate(50deg); }
.lotus-mini::after {
  content: ''; position: absolute;
  width: 12px; height: 6px;
  background: linear-gradient(180deg, #5C2C0A, #3D1A04);
  border-radius: 50% 50% 0 0;
  left: 50%; bottom: 50%;
  margin-left: -6px;
  margin-bottom: -3px;
}

/* ===== LOADER ===== */
.bjp-loader {
  position: fixed; inset: 0; z-index: 99999;
  background: #fff;
  display: flex; align-items: center; justify-content: center;
  transition: opacity .6s, visibility .6s;
}
.bjp-loader.hide { opacity: 0; visibility: hidden; }
.loader-inner { text-align: center; }
.loader-logo { margin-bottom: 28px; animation: bounce 2s ease-in-out infinite; }
.loader-inner h2 {
  font-size: 22px; font-weight: 500;
  margin-bottom: 6px; color: #333;
  letter-spacing: .5px;
}
.loader-inner h2 strong { color: var(--saffron); font-weight: 700; }
.loader-inner p {
  font-family: 'Hind', sans-serif;
  font-size: 16px; color: #666;
  margin-bottom: 22px;
}
.loading-dots { display: flex; gap: 8px; justify-content: center; }
.loading-dots span {
  width: 10px; height: 10px;
  background: var(--saffron);
  border-radius: 50%;
  animation: dot-bounce 1.4s ease-in-out infinite both;
}
.loading-dots span:nth-child(2) { animation-delay: -0.32s; }
.loading-dots span:nth-child(3) { animation-delay: -0.16s; }
@keyframes dot-bounce {
  0%, 80%, 100% { transform: scale(0); }
  40% { transform: scale(1); }
}
@keyframes bounce { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }

/* ===== TOP UTILITY BAR ===== */
.top-utility {
  background: #1a1a1a;
  color: #ccc;
  font-size: 12px;
  border-bottom: 3px solid var(--saffron);
}
.utility-inner {
  display: flex; justify-content: space-between; align-items: center;
  padding: 8px 24px;
  flex-wrap: wrap; gap: 12px;
}
.util-left { display: flex; gap: 4px; align-items: center; flex-wrap: wrap; }
.util-left li {
  border-right: 1px solid rgba(255,255,255,.15);
}
.util-left li:last-child { border-right: none; }
.util-left a {
  padding: 4px 14px; display: inline-flex; align-items: center; gap: 6px;
  color: #ccc;
}
.util-left a:hover { color: var(--saffron); }
.util-left i { font-size: 11px; }
.util-right { display: flex; gap: 16px; align-items: center; }
.lang-switch { display: flex; gap: 2px; }
.lang-switch .lang {
  padding: 4px 10px;
  color: #ccc; font-size: 11px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 3px;
  transition: all .2s;
}
.lang-switch .lang.active, .lang-switch .lang:hover { background: var(--saffron); color: #fff; border-color: var(--saffron); }

.search-bar {
  display: flex; align-items: center;
  background: rgba(255,255,255,.08);
  border-radius: 100px;
  overflow: hidden;
}
.search-bar input {
  background: none; border: none; outline: none;
  color: #fff; padding: 6px 14px;
  font-size: 12px; width: 140px;
}
.search-bar input::placeholder { color: #888; }
.search-bar button {
  padding: 6px 12px; color: var(--saffron);
}

/* ===== MAIN HEADER ===== */
.main-header {
  background: #fff;
  border-bottom: 1px solid var(--line);
  position: sticky; top: 0;
  z-index: 998;
  box-shadow: var(--shadow-sm);
  transition: all .3s ease;
}
.main-header.scrolled { box-shadow: var(--shadow-md); }
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 24px;
  gap: 20px;
}
.brand {
  display: flex; align-items: center; gap: 14px;
}
.brand-emblem { flex-shrink: 0; }
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-name {
  font-family: 'Oswald', sans-serif;
  font-size: 24px; font-weight: 700;
  color: var(--saffron);
  letter-spacing: .5px;
}
.brand-tag {
  font-family: 'Hind', sans-serif;
  font-size: 11px; color: #555;
  letter-spacing: 1px; font-weight: 500;
}

.primary-nav > ul {
  display: flex; align-items: center; gap: 2px;
}
.nav-link {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 12px 16px;
  font-family: 'Oswald', sans-serif;
  font-size: 13px; font-weight: 500;
  color: #333;
  letter-spacing: 1px;
  border-radius: 4px;
  transition: all .25s;
  position: relative;
}
.nav-link i { font-size: 10px; opacity: .7; }
.nav-link:hover { color: var(--saffron); }
.nav-link:not(.btn-join):not(.btn-donate):not(.btn-login)::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 16px; right: 16px;
  height: 2px; background: var(--saffron);
  transform: scaleX(0); transform-origin: center;
  transition: transform .3s ease;
}
.nav-link:not(.btn-join):not(.btn-donate):not(.btn-login):hover::after,
.nav-link.active::after { transform: scaleX(1); }

.has-dropdown { position: relative; }
.has-dropdown .dropdown {
  display: block;
  position: absolute; top: calc(100% + 10px); left: 0;
  min-width: 240px;
  background: #fff;
  border-radius: 12px;
  border-top: 3px solid var(--saffron);
  box-shadow: 0 18px 44px -12px rgba(17,17,17,.22), 0 6px 16px -8px rgba(17,17,17,.16);
  padding: 8px;
  opacity: 0; visibility: hidden;
  transform: translateY(10px) scale(.97);
  transform-origin: top left;
  transition: opacity .22s ease, transform .22s ease, visibility .22s;
  z-index: 100;
}
/* invisible bridge so the dropdown doesn't close in the 10px gap */
.has-dropdown .dropdown::before {
  content: ''; position: absolute; top: -13px; left: 0; right: 0; height: 13px;
}
.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown {
  opacity: 1; visibility: visible; transform: translateY(0) scale(1);
}
.has-dropdown .dropdown li a {
  display: flex; align-items: center; gap: 10px;
  padding: 11px 16px;
  font-family: 'Roboto', sans-serif;
  font-size: 13.5px; font-weight: 500; color: #3a3a3a;
  border-radius: 8px;
  position: relative;
  transition: color .2s ease, background .2s ease, padding-left .2s ease;
}
.has-dropdown .dropdown li a::before {
  content: ''; flex: 0 0 auto;
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--saffron);
  transform: scale(0); transition: transform .2s ease;
}
.has-dropdown .dropdown li a:hover {
  background: #fff5ed; color: var(--saffron); padding-left: 20px;
}
.has-dropdown .dropdown li a:hover::before { transform: scale(1); }
.has-dropdown:hover > .nav-link i,
.has-dropdown:focus-within > .nav-link i { transform: rotate(180deg); }
.has-dropdown > .nav-link i { transition: transform .25s ease; }

.btn-join {
  background: #fff;
  color: var(--saffron) !important;
  border: 2px solid var(--saffron);
  padding: 9px 18px !important;
  margin-left: 6px;
  border-radius: 3px;
  font-weight: 600 !important;
  font-size: 12px !important;
}
.btn-join:hover {
  background: var(--saffron); color: #fff !important;
}
.btn-donate {
  background: var(--saffron);
  color: #fff !important;
  padding: 9px 18px !important;
  margin-left: 4px;
  border-radius: 3px;
  font-weight: 600 !important;
  font-size: 12px !important;
}
.btn-donate:hover { background: var(--saffron-dark); }
.btn-login {
  border: 1.5px solid var(--saffron) !important;
  color: var(--saffron) !important;
  padding: 7px 15px !important;
  margin-left: 4px;
  border-radius: 3px;
  font-weight: 600 !important;
  font-size: 12px !important;
  display: inline-flex; align-items: center; gap: 7px;
  transition: background .25s, color .25s, box-shadow .25s, border-color .25s;
}
.btn-login i { font-size: 13px !important; opacity: 1 !important; }
.btn-login:hover {
  background: var(--saffron); color: #fff !important; border-color: var(--saffron) !important;
  box-shadow: 0 6px 16px rgba(255,103,0,.3);
}

.menu-bars a {
  display: flex; flex-direction: column; gap: 4px;
  padding: 12px 10px;
  margin-left: 6px;
}
.menu-bars span {
  width: 22px; height: 2px;
  background: #333;
  transition: all .25s;
}
.menu-bars:hover span { background: var(--saffron); }

.mobile-toggle {
  display: none;
  flex-direction: column; gap: 5px;
  padding: 8px;
}
.mobile-toggle span {
  width: 26px; height: 2px; background: var(--saffron); border-radius: 2px;
  transition: all .3s;
}
.mobile-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mobile-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav backdrop + body scroll lock */
.nav-backdrop {
  position: fixed; inset: 0;
  background: rgba(17,17,17,.5);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  opacity: 0; visibility: hidden;
  transition: opacity .35s ease, visibility .35s ease;
  z-index: 1000;
}
.nav-backdrop.show { opacity: 1; visibility: visible; }
body.nav-open { overflow: hidden; }
@keyframes navItemIn {
  to { opacity: 1; transform: translateX(0); }
}
@media (prefers-reduced-motion: reduce) {
  .primary-nav.open ul > li { animation: none; opacity: 1; transform: none; }
  .slide.active .slide-bg { animation: none; transform: scale(1); }
  .moti { animation: none !important; opacity: 0; }
}

/* ===== MEGA MENU ===== */
.mega-menu {
  position: fixed; inset: 0;
  background: rgba(26,26,26,.97);
  color: #fff;
  z-index: 1000;
  opacity: 0; visibility: hidden;
  transition: all .4s ease;
  padding: 80px 0 40px;
  overflow-y: auto;
}
.mega-menu.open { opacity: 1; visibility: visible; }
.mega-close {
  position: absolute; top: 24px; right: 24px;
  width: 44px; height: 44px;
  border: 1px solid rgba(255,255,255,.3);
  border-radius: 50%;
  color: #fff; font-size: 18px;
  transition: all .25s;
}
.mega-close:hover { background: var(--saffron); border-color: var(--saffron); transform: rotate(90deg); }
.mega-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}
.mega-col h4 {
  color: var(--saffron);
  font-size: 18px; font-weight: 600;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,.2);
  letter-spacing: 1px;
}
.mega-col ul li { margin-bottom: 10px; }
.mega-col ul a {
  color: #ddd; font-size: 14px;
  display: inline-flex; align-items: center; gap: 8px;
  transition: all .25s;
}
.mega-col ul a::before {
  content: '›';
  color: var(--saffron); font-size: 18px;
  transition: transform .2s;
}
.mega-col ul a:hover { color: var(--saffron); padding-left: 4px; }

/* ===== FIXED SOCIAL ===== */
.fixed-social {
  position: fixed; top: 50%; left: 0;
  transform: translateY(-50%);
  display: flex; flex-direction: column;
  z-index: 90;
  background: rgba(0,0,0,.6);
  border-radius: 0 8px 8px 0;
  backdrop-filter: blur(10px);
}
.fixed-social li a {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 14px;
  transition: all .25s;
}
.fixed-social .facebook:hover { background: #3b5998; }
.fixed-social .twitter:hover { background: #000; }
.fixed-social .youtube:hover { background: #ff0000; }
.fixed-social .instagram:hover { background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.fixed-social .whatsapp:hover { background: #25D366; }

/* ===== HERO SLIDER ===== */
.hero-slider {
  position: relative;
  width: 100%;
  /* Full-screen immersive hero: fills almost the whole viewport for a premium feel.
     Banners are 2048x1153 (~16:9) and use `cover`, so they fill edge-to-edge. */
  height: 74vh;
  min-height: 448px;
  max-height: 736px;
  overflow: hidden;
  /* Black gradient backdrop — safety fill behind the image */
  background:
    radial-gradient(120% 100% at 50% 28%, #313131 0%, #161616 55%, #0a0a0a 100%);
}
.slides { position: relative; height: 100%; }

/* Desktop only: bottom breathing room for the hero (top stays flush to the
   announcement bar — no top gap). Full-width is preserved (no side padding). */
@media (min-width: 1025px) {
  .hero-slider { background: #fff; }
  .hero-slider .slides {
    position: absolute;
    top: 0; bottom: 22px; left: 0; right: 0;
    height: auto;
  }
  .hero-slider::after { top: 0; bottom: 22px; }
}

.slide {
  position: absolute; inset: 0;
  opacity: 0; visibility: hidden;
  transition: opacity .8s ease;
}
.slide.active { opacity: 1; visibility: visible; }
.slide-bg {
  position: absolute; inset: 0;
  /* cover = banner fills the whole hero edge-to-edge (container is 16:9 to match) */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1.08);
  will-change: transform;
}
/* Gentle Ken Burns: scale stays >=1 so the image always fully covers the hero. */
.slide.active .slide-bg {
  animation: heroKenburns 9s ease-out forwards;
}
@keyframes heroKenburns {
  0%   { transform: scale(1.08); }
  100% { transform: scale(1); }
}
/* Black shadow only at the BOTTOM — top stays fully clear (no shadow) */
.hero-slider::after {
  content: '';
  position: absolute; inset: 0;
  pointer-events: none;
  z-index: 4;
  background: linear-gradient(to top,
    rgba(0,0,0,.72) 0%,
    rgba(0,0,0,.38) 18%,
    rgba(0,0,0,.1) 38%,
    rgba(0,0,0,0) 56%);
}

/* ===== HERO WHITE PEARLS (MOTI) — floating particle animation ===== */
.hero-deco {
  position: absolute; inset: 0;
  z-index: 2;
  pointer-events: none;
  overflow: hidden;
}
.moti {
  position: absolute;
  bottom: -40px;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: radial-gradient(circle at 32% 30%, #ffffff 0%, rgba(255,255,255,.85) 45%, rgba(255,255,255,.35) 100%);
  box-shadow: 0 0 12px rgba(255,255,255,.65), 0 0 4px rgba(255,255,255,.9);
  opacity: 0;
  will-change: transform, opacity;
  animation: motiRise linear infinite;
}
/* Each pearl: own column, size, speed and start delay — staggered field */
.moti:nth-child(1)  { left: 5%;  width: 8px;  height: 8px;  animation-duration: 13s; animation-delay: 0s;   }
.moti:nth-child(2)  { left: 12%; width: 14px; height: 14px; animation-duration: 17s; animation-delay: 2.5s; }
.moti:nth-child(3)  { left: 19%; width: 6px;  height: 6px;  animation-duration: 11s; animation-delay: 5s;   }
.moti:nth-child(4)  { left: 27%; width: 11px; height: 11px; animation-duration: 15s; animation-delay: 1.2s; }
.moti:nth-child(5)  { left: 34%; width: 9px;  height: 9px;  animation-duration: 14s; animation-delay: 4s;   }
.moti:nth-child(6)  { left: 42%; width: 16px; height: 16px; animation-duration: 19s; animation-delay: 6.5s; }
.moti:nth-child(7)  { left: 49%; width: 7px;  height: 7px;  animation-duration: 12s; animation-delay: 3s;   }
.moti:nth-child(8)  { left: 57%; width: 12px; height: 12px; animation-duration: 16s; animation-delay: 0.6s; }
.moti:nth-child(9)  { left: 64%; width: 8px;  height: 8px;  animation-duration: 13s; animation-delay: 5.8s; }
.moti:nth-child(10) { left: 71%; width: 15px; height: 15px; animation-duration: 18s; animation-delay: 2s;   }
.moti:nth-child(11) { left: 79%; width: 6px;  height: 6px;  animation-duration: 11s; animation-delay: 7s;   }
.moti:nth-child(12) { left: 86%; width: 11px; height: 11px; animation-duration: 15s; animation-delay: 3.6s; }
.moti:nth-child(13) { left: 92%; width: 9px;  height: 9px;  animation-duration: 14s; animation-delay: 1.8s; }
.moti:nth-child(14) { left: 97%; width: 13px; height: 13px; animation-duration: 17s; animation-delay: 4.8s; }
@keyframes motiRise {
  0%   { transform: translate(0, 0) scale(.6);     opacity: 0; }
  12%  {                                            opacity: .9; }
  50%  { transform: translate(20px, -52vh) scale(1); }
  88%  {                                            opacity: .9; }
  100% { transform: translate(-12px, -104vh) scale(.7); opacity: 0; }
}
.slide-pattern { position: absolute; inset: 0; opacity: .25; }
.slide-pattern.p1 {
  background:
    radial-gradient(circle at 80% 20%, rgba(255,179,0,.6), transparent 40%),
    radial-gradient(circle at 20% 80%, rgba(19,136,8,.4), transparent 40%);
}
.slide-pattern.p2 {
  background:
    radial-gradient(circle at 30% 30%, rgba(255,255,255,.3), transparent 40%),
    radial-gradient(circle at 70% 70%, rgba(255,140,46,.6), transparent 40%);
}
.slide-pattern.p3 {
  background:
    radial-gradient(circle at 50% 50%, rgba(255,179,0,.5), transparent 50%),
    linear-gradient(135deg, rgba(0,0,0,.3) 0%, transparent 70%);
}
.slide-pattern.p4 {
  background:
    radial-gradient(circle at 70% 30%, rgba(19,136,8,.5), transparent 45%),
    radial-gradient(circle at 30% 70%, rgba(255,140,46,.5), transparent 45%);
}
/* Hero slides — pure banner images, full-bleed, animated with Ken Burns.
   Base .slide-bg already sets cover/center; here we only swap the image. */
.slide[data-bg="slide1"] .slide-bg { background-image: url('../img/banner/pro_slider_1.jpg'); }
.slide[data-bg="slide2"] .slide-bg { background-image: url('../img/banner/pro_slider_2.jpg'); }
.slide[data-bg="slide3"] .slide-bg { background-image: url('../img/banner/pro_slider_3.jpg'); }
.slide[data-bg="slide4"] .slide-bg { background-image: url('../img/banner/pro_slider_4.jpg'); }
.slide[data-bg="slide5"] .slide-bg { background-image: url('../img/banner/1606138105event.jpg'); }
.slide[data-bg="slide6"] .slide-bg { background-image: url('../img/banner/u.jpg'); }
.slide[data-bg="slide7"] .slide-bg { background-image: url('../img/banner/y.jpg'); }

/* Decorative pattern overlays — removed (we now have real photos) */
.slide-pattern { display: none; }

.slide-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,.1) 0%, rgba(0,0,0,0) 30%, rgba(0,0,0,0) 100%);
}
.slide-content {
  position: relative; z-index: 2;
  height: 100%;
  display: flex; flex-direction: column; justify-content: center;
  max-width: 720px;
}
.slide-tag {
  display: inline-block;
  font-family: 'Hind', sans-serif;
  background: rgba(255,255,255,.15);
  backdrop-filter: blur(8px);
  color: #fff; font-size: 14px; font-weight: 600;
  padding: 8px 18px;
  border-left: 3px solid var(--gold);
  margin-bottom: 22px;
  align-self: flex-start;
  letter-spacing: 1px;
  opacity: 0; transform: translateY(20px);
  animation: slideUp .8s .2s forwards ease;
}
.slide.active .slide-tag { animation: slideUp .8s .2s forwards ease; }
.slide-content h1 {
  font-family: 'Oswald', sans-serif;
  color: #fff;
  font-size: clamp(36px, 5.5vw, 64px);
  font-weight: 700; line-height: 1.1;
  letter-spacing: 0;
  margin-bottom: 20px;
  text-shadow: 0 4px 20px rgba(0,0,0,.3);
  opacity: 0; transform: translateY(30px);
  animation: slideUp .8s .4s forwards ease;
}
.slide-content h1 span { color: var(--gold); }
.slide-content p {
  color: rgba(255,255,255,.95);
  font-size: 17px; line-height: 1.7;
  margin-bottom: 32px;
  max-width: 580px;
  opacity: 0; transform: translateY(30px);
  animation: slideUp .8s .6s forwards ease;
}
.slide-cta {
  display: flex; gap: 14px; flex-wrap: wrap;
  opacity: 0; transform: translateY(30px);
  animation: slideUp .8s .8s forwards ease;
}
@keyframes slideUp { to { opacity: 1; transform: translateY(0); } }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 28px;
  font-family: 'Oswald', sans-serif;
  font-size: 13px; font-weight: 600;
  letter-spacing: 1.5px; text-transform: uppercase;
  border-radius: 3px;
  transition: all .3s ease;
  position: relative; overflow: hidden;
}
.btn-primary {
  background: var(--saffron);
  color: #fff;
  box-shadow: 0 8px 22px rgba(255,103,0,.4);
}
.btn-primary:hover { background: var(--saffron-dark); transform: translateY(-2px); box-shadow: 0 12px 30px rgba(255,103,0,.55); }
.btn-ghost {
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(10px);
  color: #fff;
  border: 1.5px solid rgba(255,255,255,.4);
}
.btn-ghost:hover { background: #fff; color: var(--saffron); border-color: #fff; }
.btn-outline-saffron {
  background: transparent;
  color: var(--saffron);
  border: 2px solid var(--saffron);
}
.btn-outline-saffron:hover { background: var(--saffron); color: #fff; }
.btn-outline-light {
  background: rgba(255,255,255,.15);
  color: #fff;
  border: 1.5px solid rgba(255,255,255,.5);
  backdrop-filter: blur(8px);
}
.btn-outline-light:hover { background: #fff; color: var(--saffron); }

.slide-arrow {
  position: absolute; top: 50%;
  transform: translateY(-50%);
  width: 52px; height: 52px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(0,0,0,.32);
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.28);
  color: #fff;
  border-radius: 50%;
  font-size: 16px;
  z-index: 5;
  box-shadow: 0 8px 24px -8px rgba(0,0,0,.5);
  opacity: .55;
  transition: opacity .3s ease, background .3s ease, border-color .3s ease, transform .3s cubic-bezier(.34,1.56,.64,1);
}
.hero-slider:hover .slide-arrow { opacity: 1; }
.slide-arrow:hover {
  background: var(--saffron); border-color: var(--saffron);
  box-shadow: 0 10px 28px -6px rgba(255,140,46,.55);
}
.slide-arrow.prev { left: 24px; }
.slide-arrow.next { right: 24px; }
.slide-arrow.prev:hover { transform: translateY(-50%) scale(1.1); }
.slide-arrow.next:hover { transform: translateY(-50%) scale(1.1); }

.slide-dots {
  position: absolute; bottom: 32px; left: 50%;
  transform: translateX(-50%);
  display: flex; gap: 10px;
  z-index: 5;
}
.slide-dots button {
  width: 30px; height: 4px;
  background: rgba(255,255,255,.45);
  border-radius: 2px;
  transition: all .35s cubic-bezier(.4,0,.2,1);
}
.slide-dots button:hover { background: rgba(255,255,255,.8); }
.slide-dots button.active {
  background: var(--saffron); width: 50px;
  box-shadow: 0 0 12px rgba(255,140,46,.7);
}

.hero-indicator {
  position: absolute; bottom: 80px; left: 50%;
  transform: translateX(-50%);
  z-index: 5;
}
.hero-indicator .dot {
  display: block;
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  position: relative;
  box-shadow: 0 0 0 4px rgba(255,179,0,.3);
  animation: pulse-dot 1.5s ease-out infinite;
}
@keyframes pulse-dot {
  0% { box-shadow: 0 0 0 0 rgba(255,179,0,.7); }
  100% { box-shadow: 0 0 0 20px rgba(255,179,0,0); }
}

/* ===== PRESIDENT BANNER ===== */
.president-banner {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
  color: #fff;
}
.banner-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 50%, var(--saffron-deep) 100%);
}
.banner-bg .bg-overlay {
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 80% 50%, rgba(255,103,0,.3) 0%, transparent 50%),
    radial-gradient(circle at 20% 80%, rgba(255,179,0,.2) 0%, transparent 50%);
}
.banner-bg .bg-pattern {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 50px 50px;
  mask-image: radial-gradient(ellipse at center, black, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at center, black, transparent 80%);
}
.banner-content {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}
.banner-eyebrow {
  font-family: 'Oswald', sans-serif;
  display: inline-block;
  color: var(--gold);
  font-size: 13px; font-weight: 600;
  letter-spacing: 4px;
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--gold);
}
.banner-left h2 {
  font-size: clamp(24px, 3vw, 32px);
  color: rgba(255,255,255,.85);
  margin-bottom: 8px;
  font-weight: 400;
}
.banner-left h1,
.banner-left .banner-name {
  font-size: clamp(40px, 5.5vw, 60px);
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 22px;
  text-shadow: 0 4px 20px rgba(0,0,0,.3);
}
.banner-desc {
  font-size: 17px; line-height: 1.75;
  color: rgba(255,255,255,.85);
  max-width: 540px;
  margin-bottom: 36px;
}
.banner-actions { display: flex; gap: 24px; flex-wrap: wrap; margin-bottom: 36px; }
.btn-arrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: 'Oswald', sans-serif;
  color: #fff;
  font-size: 14px; font-weight: 500;
  letter-spacing: 2px;
  padding: 12px 0;
  border-bottom: 2px solid var(--gold);
  transition: all .25s;
}
.btn-arrow i { transition: transform .25s; }
.btn-arrow:hover { color: var(--gold); }
.btn-arrow:hover i { transform: translateX(6px); }
.btn-arrow.outline {
  padding: 12px 24px;
  background: transparent;
  border: 1.5px solid rgba(255,255,255,.3);
  border-bottom: 1.5px solid rgba(255,255,255,.3);
}
.btn-arrow.outline:hover { background: var(--saffron); border-color: var(--saffron); color: #fff; }

.banner-social {
  display: flex; gap: 14px;
}
.banner-social a {
  width: 38px; height: 38px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 13px;
  transition: all .25s;
}
.banner-social a:hover { background: var(--saffron); border-color: var(--saffron); transform: translateY(-4px); }

.banner-right { display: flex; justify-content: center; align-items: center; }
.portrait-wrap {
  position: relative;
  width: 340px; height: 420px;
}
.portrait {
  position: relative;
  width: 100%; height: 100%;
  background: linear-gradient(180deg, var(--saffron-dark) 0%, var(--saffron-deep) 100%);
  border-radius: 8px;
  overflow: hidden;
  z-index: 2;
  box-shadow: 0 30px 80px rgba(0,0,0,.5);
}
.portrait::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at center 30%, rgba(255,255,255,.2), transparent 60%);
}
.portrait-initials {
  position: absolute; top: 45%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Oswald', sans-serif;
  font-size: 110px; font-weight: 700;
  color: #fff;
  text-shadow: 0 8px 30px rgba(0,0,0,.4);
  letter-spacing: -3px;
}
.portrait-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  z-index: 1;
}
.portrait-id {
  position: absolute; bottom: 24px; left: 24px; right: 24px;
  text-align: center;
  color: rgba(255,255,255,.95);
  font-family: 'Oswald', sans-serif;
  font-size: 13px;
  letter-spacing: 3px;
  padding: 8px 0;
  border-top: 1px solid rgba(255,255,255,.4);
  background: linear-gradient(transparent, rgba(0,0,0,.55));
  z-index: 2;
}
.portrait-frame {
  position: absolute; top: 20px; left: 20px;
  width: 100%; height: 100%;
  border: 2px solid var(--gold);
  border-radius: 8px;
  z-index: 1;
}
.portrait-glow {
  position: absolute; inset: -40px;
  background: radial-gradient(circle, rgba(255,179,0,.4) 0%, transparent 60%);
  z-index: 0;
  filter: blur(40px);
  animation: glow-pulse 4s ease-in-out infinite;
}
@keyframes glow-pulse { 0%, 100% { opacity: .6; } 50% { opacity: 1; } }

/* ===== COMMON SECTION HEAD ===== */
.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 60px;
}
.section-head .eyebrow,
.eyebrow {
  display: inline-block;
  font-family: 'Hind', sans-serif;
  color: var(--saffron);
  font-size: 14px; font-weight: 600;
  letter-spacing: 3px;
  margin-bottom: 14px;
  position: relative;
  padding-bottom: 14px;
}
.eyebrow.light { color: var(--gold); }
.section-head .eyebrow::after,
.eyebrow::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 60px; height: 3px;
  background: var(--saffron);
}
.section-head h2 {
  font-size: clamp(32px, 4.5vw, 48px);
  font-weight: 700;
  letter-spacing: 0;
  margin-bottom: 14px;
}
.section-head h2 span { color: var(--saffron); }
.section-head p { color: var(--text-muted); font-size: 16px; }
.section-head.light h2 { color: #fff; }
.section-head.light h2 span { color: var(--gold); }
.section-head.light p { color: rgba(255,255,255,.7); }

/* ===== JOURNEY TIMELINE ===== */
.journey { padding: 100px 0; background: var(--bg-light); }
.timeline { position: relative; max-width: 920px; margin: 60px auto 0; }
.timeline-line {
  position: absolute; top: 0; bottom: 0; left: 50%;
  width: 3px;
  background: linear-gradient(180deg, transparent, var(--saffron) 10%, var(--saffron) 90%, transparent);
  transform: translateX(-50%);
}
.timeline-item {
  position: relative;
  width: 50%;
  margin-bottom: 50px;
  padding: 0 40px;
}
.timeline-item.left { left: 0; }
.timeline-item.right { left: 50%; }

.timeline-item .t-year {
  position: absolute;
  top: 14px;
  width: 56px; height: 56px;
  background: #fff;
  border: 3px solid var(--saffron);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Oswald', sans-serif;
  font-size: 14px; font-weight: 700;
  color: var(--saffron);
  z-index: 2;
  box-shadow: 0 6px 16px rgba(255,103,0,.25);
  transition: all .35s;
}
.timeline-item.left .t-year { right: -28px; }
.timeline-item.right .t-year { left: -28px; }
.timeline-item.active .t-year,
.timeline-item:hover .t-year { background: var(--saffron); color: #fff; transform: scale(1.1); }

.t-card {
  background: #fff;
  padding: 28px 32px;
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--saffron);
  transition: all .35s;
  position: relative;
}
.timeline-item.right .t-card { border-left: none; border-right: 4px solid var(--saffron); }
.t-card::before {
  content: '';
  position: absolute; top: 24px;
  width: 16px; height: 16px;
  background: #fff;
  transform: rotate(45deg);
  box-shadow: var(--shadow-sm);
}
.timeline-item.left .t-card::before { right: -8px; border-right: 1px solid #f0f0f0; border-top: 1px solid #f0f0f0; }
.timeline-item.right .t-card::before { left: -8px; border-left: 1px solid #f0f0f0; border-bottom: 1px solid #f0f0f0; }
.t-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.t-card h4 { font-size: 20px; margin-bottom: 8px; color: var(--saffron); }
.t-card p { color: var(--text-muted); font-size: 14.5px; }

/* ===== INSPIRATION ===== */
.inspiration { position: relative; padding: 110px 0; overflow: hidden; color: #fff; }
.inspiration-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #1a1a1a 0%, #2C1810 50%, #5C2C0A 100%);
}
.inspiration-bg::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(255,103,0,.3), transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(255,179,0,.2), transparent 50%);
}
.inspiration .container { position: relative; z-index: 1; }
.insp-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.insp-card {
  background: rgba(255,255,255,.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.1);
  padding: 36px 28px;
  border-radius: 8px;
  text-align: center;
  transition: all .35s ease;
  position: relative;
  overflow: hidden;
}
.insp-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--saffron), var(--gold), var(--saffron));
  transform: scaleX(0); transform-origin: left;
  transition: transform .5s;
}
.insp-card:hover { transform: translateY(-8px); background: rgba(255,255,255,.08); }
.insp-card:hover::before { transform: scaleX(1); }
.insp-portrait { position: relative; width: 140px; height: 140px; margin: 0 auto 24px; }
.insp-avatar {
  width: 100%; height: 100%;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 50px; color: #fff;
  box-shadow: 0 12px 30px rgba(0,0,0,.4);
}
.insp-avatar.deepa { background: linear-gradient(135deg, #FF6700, #C7480A); }
.insp-avatar.pandit { background: linear-gradient(135deg, #FFB300, #FF6700); }
.insp-avatar.atal { background: linear-gradient(135deg, #138808, #0A5C00); }
.insp-avatar { overflow: hidden; padding: 4px; }
.insp-avatar img {
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: 50%;
  display: block;
}
.insp-frame {
  position: absolute; inset: -8px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  animation: spin-slow 20s linear infinite;
  border-style: dashed;
}
@keyframes spin-slow { to { transform: rotate(360deg); } }
.insp-content h3 { color: #fff; font-size: 22px; margin-bottom: 4px; }
.insp-content .dates { color: var(--gold); font-size: 13px; letter-spacing: 2px; margin-bottom: 18px; font-family: 'Oswald', sans-serif; }
.insp-content .quote {
  font-family: 'Hind', sans-serif;
  font-style: italic;
  font-size: 15px;
  color: rgba(255,255,255,.95);
  padding: 16px 20px;
  background: rgba(0,0,0,.25);
  border-radius: 6px;
  margin-bottom: 16px;
  border-left: 3px solid var(--gold);
  text-align: left;
}
.insp-content > p { color: rgba(255,255,255,.7); font-size: 14px; margin-bottom: 22px; }

/* ===== LEADERSHIP TILES ===== */
.leadership { padding: 100px 0; background: #fff; }
/* Leadership row — continuous infinite carousel (pixel-perfect, no gap) */
.leader-row {
  display: block;
  overflow: hidden;
  position: relative;
  width: 100vw;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  padding: 8px 0;
  -webkit-mask-image: linear-gradient(to right, transparent 0, #000 8%, #000 92%, transparent 100%);
          mask-image: linear-gradient(to right, transparent 0, #000 8%, #000 92%, transparent 100%);
}
/* Static rows (e.g. National Level — apex team) — centered grid, no scroll */
.leader-row.is-static {
  width: 100%;
  left: 0;
  right: 0;
  margin-left: 0;
  margin-right: 0;
  -webkit-mask-image: none;
          mask-image: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
  padding: 0;
  overflow: visible;
}
.leader-row.is-static .leader-tile {
  flex: 0 0 280px;
  width: 280px;
  margin-right: 0;
}
@media (max-width: 768px) {
  .leader-row.is-static .leader-tile { flex: 0 0 240px; width: 240px; }
}

/* Section spacing for the 5 hierarchy carousels */
.level-block { padding: 60px 0; }
.level-block:nth-of-type(even) { background: #fafafa; }
.level-block + .level-block { padding-top: 60px; }
.leader-row-track {
  display: flex;
  width: max-content;
  will-change: transform;
  /* Shift by exactly one set width (--marq-shift, set in JS); content repeats
     every set, so the loop is seamless and gap-free at any viewport width. */
  opacity: 0;
  transition: opacity .35s ease;
}
.leader-row-track.is-ready {
  opacity: 1;
}
@keyframes leaderMarquee {
  from { transform: translateX(0); }
  to   { transform: translateX(calc(-1 * var(--marq-shift))); }
}
.leader-row:hover .leader-row-track {
  animation-play-state: paused;
}
@media (prefers-reduced-motion: reduce) {
  .leader-row-track { animation: none !important; transform: none !important; }
}
/* Each tile is a self-contained box (photo + right-margin) so loop math is exact. */
.leader-row .leader-tile {
  flex: 0 0 280px;
  width: 280px;
  margin-right: 24px;
  box-sizing: border-box;
}
@media (max-width: 768px) {
  .leader-row .leader-tile { flex: 0 0 240px; width: 240px; margin-right: 18px; }
}
.leader-tile {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  transition: all .35s;
  position: relative;
}
.leader-tile::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: var(--saffron);
  transform: scaleX(0); transform-origin: left;
  transition: transform .4s;
  z-index: 2;
}
.leader-tile:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--saffron); }
.leader-tile:hover::after { transform: scaleX(1); }
.tile-img {
  position: relative;
  height: 260px;
  background: linear-gradient(180deg, var(--saffron) 0%, var(--saffron-dark) 100%);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.tile-img::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at top, rgba(255,255,255,.2), transparent 60%);
}
.tile-avatar {
  width: 130px; height: 130px;
  border-radius: 50%;
  background: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Oswald', sans-serif;
  font-size: 44px; font-weight: 700;
  color: var(--saffron);
  box-shadow: 0 12px 30px rgba(0,0,0,.25);
  position: relative; z-index: 1;
  border: 4px solid #fff;
  transition: transform .35s;
}
.leader-tile:hover .tile-avatar { transform: scale(1.05); }
.tile-avatar.c1 { color: var(--saffron-dark); }
.tile-avatar.c2 { color: var(--green); }
.tile-avatar.c3 { color: var(--navy); }
.tile-avatar.c4 { color: #C2185B; }
.tile-avatar.c5 { color: #6A1B9A; }
.tile-avatar.c6 { color: #00838F; }
.tile-photo {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
}
.leader-tile:hover .tile-photo { transform: scale(1.06); }
.tile-badge {
  position: absolute; bottom: 16px;
  background: rgba(0,0,0,.55); backdrop-filter: blur(6px);
  color: #fff; font-family: 'Oswald', sans-serif;
  font-size: 11px; letter-spacing: 2px;
  padding: 4px 14px;
  border-radius: 100px;
  z-index: 2;
}
.tile-info { padding: 24px 24px 26px; text-align: center; }
.tile-info h4 { font-size: 20px; margin-bottom: 4px; }
.tile-info p { color: var(--saffron); font-weight: 600; font-size: 14px; margin-bottom: 14px; font-family: 'Hind', sans-serif; }
.tile-social { display: flex; justify-content: center; gap: 8px; }
.tile-social a {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: #f5f5f5;
  display: flex; align-items: center; justify-content: center;
  color: #777; font-size: 12px;
  transition: all .25s;
}
.tile-social a:hover { background: var(--saffron); color: #fff; transform: translateY(-3px); }
.leader-cta { text-align: center; margin-top: 50px; }

/* ===== COMMITTEE STRIP ===== */
.committee-strip-section { padding: 80px 0; background: var(--bg-light); overflow: hidden; }
.committee-strip-section .section-head { margin-bottom: 40px; }
.strip-wrapper { width: 100%; overflow: hidden; padding: 20px 0; }
.strip-row {
  display: flex; gap: 20px;
  width: max-content;
  animation: strip-scroll 70s linear infinite;
}
.strip-wrapper:hover .strip-row { animation-play-state: paused; }
@keyframes strip-scroll { to { transform: translateX(-50%); } }
.strip-card {
  flex-shrink: 0;
  width: 250px;
  background: #fff;
  padding: 24px 20px;
  border-radius: 8px;
  text-align: center;
  border: 1px solid var(--line);
  transition: all .3s;
}
.strip-card:hover { transform: translateY(-6px); border-color: var(--saffron); box-shadow: var(--shadow-md); }
.strip-avatar {
  width: 70px; height: 70px;
  margin: 0 auto 14px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Oswald', sans-serif;
  font-size: 24px; font-weight: 700;
  color: #fff;
}
.strip-avatar.a1 { background: linear-gradient(135deg, #FF8C2E, #C7480A); }
.strip-avatar.a2 { background: linear-gradient(135deg, #138808, #0A5C00); }
.strip-avatar.a3 { background: linear-gradient(135deg, #002F6C, #1A237E); }
.strip-avatar.a4 { background: linear-gradient(135deg, #C2185B, #880E4F); }
.strip-avatar.a5 { background: linear-gradient(135deg, #6A1B9A, #4A148C); }
.strip-avatar.a6 { background: linear-gradient(135deg, #00838F, #006064); }
.strip-avatar.a7 { background: linear-gradient(135deg, #F57F17, #E65100); }
.strip-avatar.a8 { background: linear-gradient(135deg, #2E7D32, #1B5E20); }
.strip-card strong { display: block; font-size: 15px; color: var(--text); margin-bottom: 4px; font-family: 'Roboto', sans-serif; font-weight: 700; }
.strip-card span { font-size: 12px; color: var(--text-muted); }

/* ===== NEWS & PRESS ===== */
.news-section { padding: 100px 0; background: #fff; }
.news-grid {
  display: grid; grid-template-columns: 1.4fr 1fr;
  gap: 30px;
}
.news-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--line);
  transition: all .35s;
}
.news-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--saffron); }
.news-card.featured .news-img {
  position: relative; height: 360px;
  background: linear-gradient(135deg, var(--saffron-dark), var(--saffron));
  overflow: hidden;
}
.news-pattern { position: absolute; inset: 0; z-index: 1; pointer-events: none; }
.news-pattern.p1 { background: linear-gradient(180deg, rgba(0,0,0,.1) 0%, rgba(199,72,10,.45) 100%), radial-gradient(circle at 70% 50%, rgba(255,179,0,.25), transparent 60%); }
.news-pattern.p2 { background: linear-gradient(180deg, rgba(0,0,0,.15) 0%, rgba(199,72,10,.4) 100%); }
.news-pattern.p3 { background: linear-gradient(180deg, rgba(0,0,0,.15) 0%, rgba(19,136,8,.4) 100%); }
.news-pattern.p4 { background: linear-gradient(180deg, rgba(0,0,0,.15) 0%, rgba(255,179,0,.4) 100%); }
.news-photo,
.news-photo-sm {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  z-index: 0;
}
.news-tag, .news-date, .news-date-sm { z-index: 2; }
.news-tag {
  position: absolute; top: 20px; left: 20px;
  background: #fff;
  color: var(--saffron);
  padding: 6px 14px;
  font-family: 'Oswald', sans-serif;
  font-size: 11px; font-weight: 700;
  letter-spacing: 2px;
  border-radius: 3px;
}
.news-date {
  position: absolute; bottom: 20px; left: 20px;
  background: var(--saffron);
  color: #fff;
  padding: 10px 16px;
  border-radius: 4px;
  text-align: center;
  line-height: 1;
  font-family: 'Oswald', sans-serif;
}
.news-date strong { display: block; font-size: 26px; }
.news-date {
  font-size: 11px; letter-spacing: 1px;
}
.news-body { padding: 28px; }
.news-cat {
  font-family: 'Oswald', sans-serif;
  font-size: 12px; font-weight: 600;
  color: var(--saffron);
  letter-spacing: 2px;
  display: inline-block;
  margin-bottom: 10px;
}
.news-body h3 { font-size: 24px; line-height: 1.3; margin-bottom: 12px; }
.news-body h4 { font-size: 16px; line-height: 1.4; margin-bottom: 10px; }
.news-body p { color: var(--text-muted); font-size: 14.5px; margin-bottom: 18px; }
.news-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Oswald', sans-serif;
  color: var(--saffron);
  font-size: 13px; font-weight: 600;
  letter-spacing: 1.5px;
}
.news-link.sm { font-size: 12px; }
.news-link i { transition: transform .25s; }
.news-link:hover i { transform: translateX(5px); }
.news-side { display: flex; flex-direction: column; gap: 18px; }
.news-card.small {
  display: grid; grid-template-columns: 120px 1fr;
}
.news-img-sm {
  position: relative;
  height: 100%; min-height: 110px;
  background: linear-gradient(135deg, var(--saffron-dark), var(--saffron));
  overflow: hidden;
}
.news-date-sm {
  position: absolute; top: 12px; left: 12px;
  background: rgba(0,0,0,.5);
  color: #fff;
  padding: 4px 10px;
  font-family: 'Oswald', sans-serif;
  font-size: 11px; letter-spacing: 1px;
  border-radius: 3px;
}
.news-card.small .news-body { padding: 16px 18px; }

/* ===== EVENTS ===== */
.events-section { padding: 100px 0; background: var(--bg-light); }
.events-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.event-card {
  display: grid; grid-template-columns: 100px 1fr;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-left: 4px solid var(--saffron);
  transition: all .3s;
}
.event-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.event-date {
  background: linear-gradient(180deg, var(--saffron), var(--saffron-dark));
  color: #fff;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 20px 0;
  font-family: 'Oswald', sans-serif;
  line-height: 1;
}
.event-date strong { font-size: 36px; }
.event-date span { font-size: 14px; letter-spacing: 2px; margin: 4px 0; }
.event-date small { font-size: 11px; opacity: .8; }
.event-info { padding: 22px; }
.event-time {
  display: inline-flex; align-items: center; gap: 6px;
  background: #FFF0E5;
  color: var(--saffron);
  padding: 4px 12px;
  font-size: 12px; font-weight: 600;
  border-radius: 100px;
  margin-bottom: 10px;
}
.event-info h4 { font-size: 17px; margin-bottom: 8px; }
.event-info p { color: var(--text-muted); font-size: 13.5px; margin-bottom: 14px; }
.event-info p i { color: var(--saffron); margin-right: 4px; }
.event-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Oswald', sans-serif;
  color: var(--saffron);
  font-size: 12px; font-weight: 600;
  letter-spacing: 1.5px;
}
.event-link:hover i { transform: translateX(5px); }
.event-link i { transition: transform .25s; }

/* ===== VISION MISSION ===== */
.vm-section { padding: 100px 0; background: #fff; }
.vm-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.vm-block {
  text-align: center;
  padding: 36px 24px;
  background: var(--bg-light);
  border-radius: 8px;
  border: 1px solid var(--line);
  transition: all .35s;
}
.vm-block:hover {
  background: var(--saffron);
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.vm-block:hover .vm-icon { background: rgba(255,255,255,.2); }
.vm-block:hover .vm-icon i,
.vm-block:hover h3,
.vm-block:hover p { color: #fff; }
.vm-icon {
  width: 70px; height: 70px;
  margin: 0 auto 20px;
  background: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-sm);
  transition: all .35s;
}
.vm-icon i { font-size: 28px; color: var(--saffron); transition: color .35s; }
.vm-block h3 { font-size: 22px; margin-bottom: 12px; transition: color .35s; }
.vm-block p { color: var(--text-muted); font-size: 14px; transition: color .35s; }

/* ===== DONATE BANNER ===== */
.donate-banner { position: relative; padding: 100px 0; overflow: hidden; color: #fff; }
.donate-bg {
  position: absolute; inset: 0;
  background:
    linear-gradient(135deg, var(--saffron-deep) 0%, var(--saffron) 50%, var(--saffron-dark) 100%);
}
.donate-bg::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(255,179,0,.4), transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(0,0,0,.2), transparent 40%);
}
.donate-bg::after {
  content: ''; position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(ellipse at center, black, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at center, black, transparent 80%);
}
.donate-inner { position: relative; z-index: 1; }
.donate-text { max-width: 760px; margin: 0 auto; text-align: center; }
.donate-text .eyebrow { color: var(--gold); }
.donate-text .eyebrow::after { background: var(--gold); }
.donate-text h2 { font-size: clamp(30px, 4vw, 44px); color: #fff; margin-bottom: 16px; }
.donate-text h2 span { color: var(--gold); }
.donate-text p { font-size: 17px; opacity: .9; margin-bottom: 32px; }
.donate-options {
  display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-bottom: 32px;
}
.donate-options .amount {
  padding: 12px 22px;
  background: rgba(255,255,255,.15);
  backdrop-filter: blur(10px);
  border: 1.5px solid rgba(255,255,255,.4);
  color: #fff;
  border-radius: 4px;
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  letter-spacing: 1px;
  transition: all .25s;
}
.donate-options .amount:hover, .donate-options .amount.active {
  background: #fff; color: var(--saffron); border-color: #fff;
}
.donate-cta {
  display: flex; gap: 14px; justify-content: center; flex-wrap: wrap;
}
.donate-cta .btn-primary { background: #fff; color: var(--saffron); }
.donate-cta .btn-primary:hover { background: var(--gold); color: #fff; }

/* ===== CONTACT ===== */
.contact-section { padding: 100px 0; background: #fff; }
.contact-row {
  display: grid; grid-template-columns: 1fr 1.4fr;
  gap: 50px;
}
.contact-info {
  display: flex; flex-direction: column; gap: 28px;
  background: var(--bg-light);
  padding: 40px 32px;
  border-radius: 8px;
  border-top: 4px solid var(--saffron);
}
.ci-block { display: flex; gap: 18px; align-items: flex-start; }
.ci-block i {
  width: 48px; height: 48px;
  flex-shrink: 0;
  background: var(--saffron);
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
}
.ci-block h5 { font-size: 15px; margin-bottom: 4px; }
.ci-block p { color: var(--text-muted); font-size: 14.5px; line-height: 1.7; }
.ci-block a:hover { color: var(--saffron); }

.contact-form {
  background: #fff;
  padding: 40px;
  border-radius: 8px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  position: relative;
}
.contact-form h4 { font-size: 22px; margin-bottom: 24px; color: var(--saffron); }
.form-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
  margin-bottom: 16px;
}
.contact-form input, .contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: #fff;
  font-size: 14px;
  outline: none;
  transition: all .25s;
}
.contact-form input:focus, .contact-form textarea:focus {
  border-color: var(--saffron);
  box-shadow: 0 0 0 3px rgba(255,103,0,.1);
}
.contact-form textarea { margin-bottom: 20px; resize: vertical; }
.contact-form .btn { width: 100%; }
.contact-form .ok {
  margin-top: 16px; padding: 12px;
  background: #E8F5E8; color: var(--green);
  border-radius: 4px;
  font-size: 14px; font-weight: 600;
  display: none; align-items: center; gap: 8px;
}
.contact-form .ok.show { display: flex; }

/* ===== SUBSCRIBE STRIP ===== */
.subscribe-strip {
  background: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 100%);
  padding: 50px 0;
  color: #fff;
}
.sub-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 40px; align-items: center;
}
.sub-left { display: flex; gap: 22px; align-items: center; }
.sub-left i {
  font-size: 44px; color: var(--saffron);
  flex-shrink: 0;
}
.sub-left h3 { color: #fff; font-size: 22px; margin-bottom: 4px; }
.sub-left p { color: rgba(255,255,255,.7); font-size: 14px; }
.sub-form {
  display: flex;
  background: #fff;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0,0,0,.3);
}
.sub-form input {
  flex: 1; border: none; outline: none;
  padding: 16px 20px;
  font-size: 14px;
}
.sub-form button {
  background: var(--saffron);
  color: #fff;
  padding: 16px 30px;
  font-family: 'Oswald', sans-serif;
  font-size: 14px; font-weight: 600;
  letter-spacing: 2px;
  transition: background .25s;
}
.sub-form button:hover { background: var(--saffron-dark); }

/* ===== FOOTER ===== */
.main-footer {
  background: #0f0f0f;
  color: #B8B8C5;
  border-top: 3px solid var(--saffron);
}
.footer-top {
  padding: 70px 0 50px;
}
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1.1fr 1.1fr 1.1fr 1.2fr;
  gap: 36px;
  align-items: start;
}
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
}
@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* Real logo (Mission Modi PNG) — used in header, footer, and loader */
.brand-emblem .footer-logo {
  width: 60px; height: 60px; object-fit: contain;
}
.footer-brand .footer-logo {
  width: 64px; height: 64px; object-fit: contain;
}
.footer-logo { display: block; }

/* Loader screen — real logo with subtle pulse */
.loader-logo-img {
  width: 140px;
  height: 140px;
  object-fit: contain;
  margin: 0 auto 24px;
  display: block;
  filter: drop-shadow(0 8px 24px rgba(255,103,0,0.35));
  animation: loaderLogoPulse 2.2s ease-in-out infinite;
}
@keyframes loaderLogoPulse {
  0%, 100% { transform: scale(1); }
  50%      { transform: scale(1.05); }
}
.footer-col .connect-social a { padding-left: 0; }
.footer-col .connect-social a::before { content: none; display: none; }
.footer-brand {
  display: flex; gap: 14px; align-items: center;
  margin-bottom: 20px;
}
.footer-brand > div { display: flex; flex-direction: column; }
.footer-brand strong { color: var(--saffron); font-family: 'Oswald', sans-serif; font-size: 20px; font-weight: 700; }
.footer-brand span { color: rgba(255,255,255,.6); font-size: 11px; letter-spacing: 2px; font-family: 'Hind', sans-serif; }
.footer-col p { font-size: 14px; line-height: 1.7; margin-bottom: 16px; }
.footer-col .connect { color: #fff; font-size: 13px; margin-top: 16px; margin-bottom: 12px; letter-spacing: 1px; }
.connect-social { display: flex; gap: 8px; flex-wrap: wrap; }
.connect-social a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,.06);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 13px;
  transition: all .25s;
}
.connect-social a:hover { background: var(--saffron); transform: translateY(-3px); }
.footer-col h5 {
  color: #fff;
  font-size: 16px;
  margin-bottom: 22px;
  padding-bottom: 12px;
  position: relative;
  font-family: 'Oswald', sans-serif;
  letter-spacing: 1px;
}
.footer-col h5::after {
  content: '';
  position: absolute; bottom: 0; left: 0;
  width: 36px; height: 2px;
  background: var(--saffron);
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a {
  color: #B8B8C5;
  font-size: 14px;
  position: relative;
  padding-left: 14px;
  transition: all .25s;
}
.footer-col ul a::before {
  content: '›';
  position: absolute; left: 0;
  color: var(--saffron);
  transition: transform .25s;
}
.footer-col ul a:hover { color: var(--saffron); padding-left: 18px; }
.footer-col p i { color: var(--saffron); margin-right: 8px; }
.btn-track {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 14px;
  background: var(--saffron);
  color: #fff !important;
  padding: 10px 18px;
  border-radius: 3px;
  font-size: 13px;
  font-family: 'Oswald', sans-serif;
  letter-spacing: 1px;
  transition: all .25s;
}
.btn-track:hover { background: var(--saffron-dark); padding-left: 22px; }

.footer-bottom {
  background: #000;
  padding: 18px 0;
  border-top: 1px solid rgba(255,255,255,.05);
}
.fb-inner {
  display: flex; justify-content: space-between; align-items: center; gap: 20px; flex-wrap: wrap;
}
.fb-links { display: flex; gap: 24px; flex-wrap: wrap; }
.fb-links a { color: #999; font-size: 13px; }
.fb-links a:hover { color: var(--saffron); }
.copyright { color: #777; font-size: 13px; }

/* ===== BACK TO TOP ===== */
.back-top {
  position: fixed; bottom: 28px; right: 28px;
  width: 46px; height: 46px;
  background: var(--saffron);
  color: #fff;
  border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
  box-shadow: 0 8px 24px rgba(255,103,0,.4);
  z-index: 99;
  opacity: 0; visibility: hidden;
  transform: translateY(20px);
  transition: all .3s;
}
.back-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.back-top:hover { background: var(--saffron-dark); transform: translateY(-4px); }

/* ===== REVEAL ANIMATIONS ===== */
/* ===== REVEAL / SCROLL ANIMATIONS ===== */
.fade-up,
.fade-left,
.fade-right,
.fade-in,
.scale-in,
.blur-in {
  opacity: 0;
  transition: opacity .9s cubic-bezier(.2,.7,.2,1),
              transform .9s cubic-bezier(.2,.7,.2,1),
              filter .9s cubic-bezier(.2,.7,.2,1);
  will-change: opacity, transform;
}
.fade-up    { transform: translateY(40px); }
.fade-left  { transform: translateX(-50px); }
.fade-right { transform: translateX(50px); }
.scale-in   { transform: scale(.9); }
.blur-in    { filter: blur(12px); }

.fade-up.visible,
.fade-left.visible,
.fade-right.visible,
.fade-in.visible,
.scale-in.visible { opacity: 1; transform: none; }
.blur-in.visible  { opacity: 1; filter: blur(0); }

@media (prefers-reduced-motion: reduce) {
  .fade-up, .fade-left, .fade-right, .fade-in, .scale-in, .blur-in {
    opacity: 1 !important; transform: none !important; filter: none !important; transition: none !important;
  }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
  .primary-nav ul { gap: 0; }
  .nav-link { padding: 12px 10px; font-size: 12px; }
  .news-grid { grid-template-columns: 1fr; }
  .vm-row { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 1024px) {
  .top-utility { display: none; }

  /* Slide-in panel from the right */
  .primary-nav {
    position: fixed; top: 0; right: 0; bottom: 0;
    width: min(360px, 86vw);
    background: #fff;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    box-shadow: -16px 0 50px rgba(0,0,0,.22);
    z-index: 1001;
    padding-top: 74px;
    transform: translateX(100%);
    transition: transform .42s cubic-bezier(.4,0,.2,1);
  }
  .primary-nav.open { transform: translateX(0); }
  .primary-nav ul { flex-direction: column; align-items: stretch; padding: 8px 0 48px; gap: 0; }
  .primary-nav ul li { width: 100%; border-bottom: 1px solid var(--line); }

  .nav-link {
    width: 100%; padding: 16px 24px; font-size: 14px;
    justify-content: space-between; border-radius: 0;
  }
  .nav-link i { font-size: 12px; opacity: .6; transition: transform .3s ease; }
  .nav-link:hover { background: #fff5ed; }
  .nav-link::after { display: none; }

  /* Accordion dropdowns */
  .has-dropdown > .nav-link { cursor: pointer; }
  .has-dropdown.open > .nav-link { color: var(--saffron); background: #fff5ed; }
  .has-dropdown.open > .nav-link i { transform: rotate(180deg); }
  .has-dropdown .dropdown {
    position: static; opacity: 1; visibility: visible; transform: none;
    box-shadow: none; border-top: none; border-radius: 0; padding: 0; min-width: 0;
    background: #faf7f3;
    max-height: 0; overflow: hidden;
    transition: max-height .4s ease;
  }
  .has-dropdown .dropdown li a { border-radius: 0; }
  .has-dropdown .dropdown li a::before { display: none; }
  .has-dropdown.open .dropdown { max-height: 60vh; }
  .has-dropdown .dropdown li a { padding: 13px 24px 13px 40px; border-bottom: 1px solid #efe9e3; }
  .has-dropdown .dropdown li a:hover { padding-left: 44px; }

  .btn-join, .btn-donate, .btn-login {
    margin: 14px 24px !important; text-align: center; justify-content: center;
    border-radius: 4px; padding: 13px 18px !important;
  }
  .menu-bars { display: none; }
  .mobile-toggle { display: flex; position: relative; z-index: 1003; }
  .fixed-social { display: none; }

  /* Keep the hamburger/X above the backdrop so it stays tappable */
  body.nav-open .main-header { z-index: 1002; }

  /* Staggered link entrance once the panel is open */
  .primary-nav.open ul > li {
    opacity: 0; transform: translateX(24px);
    animation: navItemIn .45s cubic-bezier(.2,.7,.2,1) forwards;
  }
  .primary-nav.open ul > li:nth-child(1) { animation-delay: .08s; }
  .primary-nav.open ul > li:nth-child(2) { animation-delay: .13s; }
  .primary-nav.open ul > li:nth-child(3) { animation-delay: .18s; }
  .primary-nav.open ul > li:nth-child(4) { animation-delay: .23s; }
  .primary-nav.open ul > li:nth-child(5) { animation-delay: .28s; }
  .primary-nav.open ul > li:nth-child(6) { animation-delay: .33s; }
  .primary-nav.open ul > li:nth-child(7) { animation-delay: .38s; }
  .primary-nav.open ul > li:nth-child(8) { animation-delay: .43s; }
  .banner-content { grid-template-columns: 1fr; gap: 50px; text-align: center; }
  .banner-actions, .banner-social { justify-content: center; }
  .portrait-wrap { width: 280px; height: 360px; margin: 0 auto; }
  .timeline-line { left: 24px; }
  .timeline-item { width: 100%; padding: 0 0 0 70px; left: 0 !important; }
  .timeline-item.left .t-card { border-left: 4px solid var(--saffron); border-right: none; }
  .timeline-item.left .t-card::before { left: -8px; right: auto; border-left: 1px solid #f0f0f0; border-bottom: 1px solid #f0f0f0; border-right: none; border-top: none; }
  .timeline-item .t-year { left: 0 !important; right: auto !important; }
  .insp-grid { grid-template-columns: 1fr; }
  .leader-row { grid-template-columns: repeat(2, 1fr); }
  .events-grid { grid-template-columns: 1fr; }
  .contact-row { grid-template-columns: 1fr; }
  .sub-inner { grid-template-columns: 1fr; }
  .mega-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 720px) {
  .container { padding: 0 16px; }
  .brand-text { display: none; }
  .header-inner { padding: 12px 16px; }

  /* Hero on phones: 16:9 banner fills edge-to-edge (cover), matching the image ratio. */
  .hero-slider { aspect-ratio: 16 / 9; height: auto; min-height: 0; max-height: 60vh; }
  .slide-bg { background-size: cover; }
  .slide.active .slide-bg { animation: none; transform: none; }

  .slide-arrow { width: 38px; height: 38px; font-size: 14px; opacity: 1; }
  .slide-arrow.prev { left: 10px; }
  .slide-arrow.next { right: 10px; }
  .slide-dots { bottom: 14px; }
  .slide-dots button { width: 22px; }
  .slide-dots button.active { width: 36px; }
  .hero-indicator { display: none; }
  .slide-content h1 { font-size: 32px; }
  .slide-content p { font-size: 15px; }
  .leader-row { grid-template-columns: 1fr; }
  .vm-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .form-grid { grid-template-columns: 1fr; }
  .contact-form { padding: 28px 20px; }
  .news-card.small { grid-template-columns: 1fr; }
  .news-img-sm { height: 140px; }
  .event-card { grid-template-columns: 80px 1fr; }
  .mega-grid { grid-template-columns: 1fr; }
  .sub-left { flex-direction: column; text-align: center; }
  .sub-form { flex-direction: column; }
  .sub-form button { width: 100%; }
  .timeline-line { display: none; }
  .timeline-item { padding-left: 0; }
  .timeline-item .t-year { position: static; margin-bottom: 14px; }
  .t-card::before { display: none; }
  .fb-inner { flex-direction: column; text-align: center; }
}

/* ===========================================================
   SUB-PAGE STYLES (used by about, mission, leadership, etc.)
   =========================================================== */
.page-hero {
  position: relative;
  padding: 130px 0 80px;
  background:
    linear-gradient(135deg, rgba(199,72,10,.85) 0%, rgba(255,103,0,.75) 60%, rgba(255,179,0,.75) 100%),
    url('https://images.unsplash.com/photo-1635438747567-8244074a3180?w=1600&q=80') center/cover no-repeat;
  color: #fff;
  text-align: center;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 100%, rgba(0,0,0,.4), transparent 60%);
  pointer-events: none;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero .eyebrow {
  color: #fff;
  background: rgba(0,0,0,.2);
  border-radius: 100px;
  padding: 6px 18px 4px;
}
.page-hero .eyebrow::after { display: none; }
.page-hero h1 {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 700;
  margin: 18px 0 14px;
  color: #fff;
  text-shadow: 0 4px 18px rgba(0,0,0,.35);
}
.page-hero p.lead {
  max-width: 720px;
  margin: 0 auto 20px;
  font-size: 17px;
  color: rgba(255,255,255,.92);
  line-height: 1.6;
}
.breadcrumb {
  margin-top: 16px;
  font-family: 'Oswald', sans-serif;
  font-size: 13px;
  letter-spacing: 2px;
  color: rgba(255,255,255,.9);
}
.breadcrumb a {
  color: #fff;
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,.4);
  padding-bottom: 1px;
  transition: color .25s;
}
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb .sep { margin: 0 10px; opacity: .6; }
.breadcrumb .current { color: var(--gold); }

.page-section { padding: 80px 0; }
.page-section.alt { background: #FFF8F0; }
.page-section.dark { background: #1A1A1A; color: rgba(255,255,255,.85); }
.page-section.dark h2, .page-section.dark h3 { color: #fff; }

.prose {
  max-width: 880px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.8;
  color: var(--text);
}
.prose h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 26px;
  margin: 40px 0 14px;
  color: var(--saffron-dark);
}
.prose p { margin-bottom: 18px; }
.prose ul { margin: 0 0 22px 22px; }
.prose ul li { margin-bottom: 10px; }
.prose blockquote {
  border-left: 4px solid var(--saffron);
  background: #FFF8F0;
  padding: 18px 24px;
  margin: 24px 0;
  font-style: italic;
  font-family: 'Hind', sans-serif;
  color: var(--text);
}

.two-col {
  display: grid; grid-template-columns: 1.1fr .9fr;
  gap: 60px;
  align-items: center;
}
.two-col.reverse { grid-template-columns: .9fr 1.1fr; }
.two-col .col-img {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  min-height: 360px;
}
.two-col .col-img img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.two-col h2 {
  font-size: clamp(28px, 3.5vw, 40px);
  color: var(--text);
  margin-bottom: 18px;
}
.two-col h2 span { color: var(--saffron); }

.stat-row {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 50px;
}
.stat-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 28px 22px;
  text-align: center;
  transition: all .35s;
}
.stat-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--saffron); }
.stat-card i { color: var(--saffron); font-size: 30px; margin-bottom: 10px; }
.stat-card strong {
  display: block;
  font-family: 'Oswald', sans-serif;
  font-size: 36px; color: var(--saffron-dark);
  margin-bottom: 6px;
}
.stat-card span { color: var(--text-muted); font-size: 14px; letter-spacing: 1px; text-transform: uppercase; }

.gallery-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.gallery-item {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 6px;
  cursor: pointer;
}
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .5s ease;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,.55));
  opacity: 0; transition: opacity .3s;
}
.gallery-item:hover::after { opacity: 1; }
.gallery-cap {
  position: absolute; bottom: 12px; left: 14px; right: 14px;
  color: #fff;
  font-family: 'Oswald', sans-serif;
  font-size: 14px;
  z-index: 1;
  opacity: 0; transform: translateY(10px);
  transition: all .35s;
}
.gallery-item:hover .gallery-cap { opacity: 1; transform: translateY(0); }

/* ----- LIGHTBOX (full-size photo viewer) ----- */
.lightbox {
  position: fixed; inset: 0; z-index: 9999;
  display: flex; align-items: center; justify-content: center;
  padding: 40px 20px;
  background: rgba(10, 10, 12, .92);
  backdrop-filter: blur(4px);
  opacity: 0; visibility: hidden;
  transition: opacity .3s ease, visibility .3s ease;
}
.lightbox.open { opacity: 1; visibility: visible; }
.lb-stage {
  position: relative; margin: 0;
  max-width: 92vw; max-height: 86vh;
  display: flex; flex-direction: column; align-items: center;
}
.lb-img {
  max-width: 92vw; max-height: 80vh;
  width: auto; height: auto;
  border-radius: 6px;
  box-shadow: 0 20px 60px rgba(0,0,0,.6);
  border: 3px solid var(--gold);
  transform: scale(.96); transition: transform .3s ease;
}
.lightbox.open .lb-img { transform: scale(1); }
.lb-cap {
  margin-top: 14px; color: #fff;
  font-family: 'Oswald', sans-serif; font-size: 16px;
  text-align: center; letter-spacing: .3px;
}
.lb-count {
  position: absolute; top: -28px; left: 0;
  color: var(--gold); font-size: 13px; font-weight: 600;
  font-family: 'Oswald', sans-serif;
}
.lb-close, .lb-nav {
  position: absolute; z-index: 2;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,.08); color: #fff;
  border: 1px solid rgba(255,255,255,.25);
  cursor: pointer; transition: all .25s ease;
}
.lb-close {
  top: 22px; right: 24px;
  width: 46px; height: 46px; border-radius: 50%;
  font-size: 28px; line-height: 1;
}
.lb-nav {
  top: 50%; transform: translateY(-50%);
  width: 52px; height: 52px; border-radius: 50%;
  font-size: 20px;
}
.lb-prev { left: 24px; }
.lb-next { right: 24px; }
.lb-close:hover, .lb-nav:hover {
  background: var(--saffron); border-color: var(--saffron);
  transform: scale(1.08);
}
.lb-nav:hover { transform: translateY(-50%) scale(1.08); }
@media (max-width: 560px) {
  .lb-close { top: 14px; right: 16px; width: 40px; height: 40px; font-size: 24px; }
  .lb-nav { width: 42px; height: 42px; font-size: 16px; }
  .lb-prev { left: 10px; }
  .lb-next { right: 10px; }
  .lb-cap { font-size: 14px; }
}

.video-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.video-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  transition: all .35s;
}
.video-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.video-thumb {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.video-thumb img { width: 100%; height: 100%; object-fit: cover; }
.video-thumb::after {
  content: '\f04b';
  font-family: 'Font Awesome 6 Free'; font-weight: 900;
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 64px; height: 64px;
  background: rgba(199,72,10,.92);
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  padding-left: 4px;
  transition: transform .25s;
}
.video-card:hover .video-thumb::after { transform: translate(-50%, -50%) scale(1.12); }
.video-meta { padding: 18px 20px 22px; }
.video-meta .v-cat {
  font-family: 'Oswald', sans-serif;
  font-size: 12px; letter-spacing: 2px;
  color: var(--saffron);
  display: inline-block; margin-bottom: 8px;
}
.video-meta h4 { font-size: 17px; line-height: 1.4; margin-bottom: 8px; }
.video-meta .v-date { font-size: 13px; color: var(--text-muted); }

/* ===== ENROL SUCCESS (auto ID + joining letter ready) ===== */
.enrol-success {
  max-width: 620px; margin: 0 auto; text-align: center;
  background: #fff; border: 1px solid var(--line);
  border-radius: 18px; padding: 44px 34px;
  box-shadow: 0 24px 60px rgba(199,72,10,.14);
  animation: esPop .5s cubic-bezier(.2,.7,.2,1) both;
}
@keyframes esPop { from { opacity: 0; transform: translateY(24px) scale(.97); } to { opacity: 1; transform: none; } }
.enrol-success .es-check {
  width: 84px; height: 84px; margin: 0 auto 18px;
  border-radius: 50%; display: grid; place-items: center;
  background: linear-gradient(135deg, #34c759, #138808);
  color: #fff; font-size: 42px;
  box-shadow: 0 12px 30px rgba(19,136,8,.35);
  animation: esCheck .6s cubic-bezier(.2,.7,.2,1) .15s both;
}
@keyframes esCheck { from { transform: scale(0); } 60% { transform: scale(1.15); } to { transform: scale(1); } }
.enrol-success h3 { font-family: 'Oswald', sans-serif; font-size: 26px; color: var(--text-dark, #1a1a1a); margin-bottom: 8px; }
.enrol-success h3 span { color: var(--saffron); }
.enrol-success > p { color: var(--text-muted); font-size: 15px; max-width: 460px; margin: 0 auto 22px; line-height: 1.6; }
.enrol-success .es-id {
  display: inline-flex; align-items: center; gap: 12px;
  background: #FFF3E8; border: 1px dashed var(--saffron);
  border-radius: 12px; padding: 12px 18px; margin-bottom: 24px;
}
.enrol-success .es-id small { display: block; font-size: 11px; letter-spacing: 1px; text-transform: uppercase; color: var(--text-muted); }
.enrol-success .es-id b { font-family: 'Oswald', sans-serif; font-size: 22px; letter-spacing: 1px; color: var(--saffron-deep, #C7480A); }
.enrol-success .es-copy { width: 36px; height: 36px; border-radius: 9px; background: #fff; border: 1px solid var(--line); color: var(--saffron); transition: all .2s; }
.enrol-success .es-copy:hover { background: var(--saffron); color: #fff; border-color: var(--saffron); }
.enrol-success .es-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 20px; }
.enrol-success .es-links { display: flex; gap: 22px; justify-content: center; flex-wrap: wrap; padding-top: 18px; border-top: 1px solid var(--line); }
.enrol-success .es-links a, .enrol-success .es-links button {
  font-size: 13.5px; font-weight: 600; color: var(--text-muted);
  display: inline-flex; align-items: center; gap: 7px; background: none; transition: color .2s;
}
.enrol-success .es-links a:hover, .enrol-success .es-links button:hover { color: var(--saffron); }
.enrol-success .es-links a.es-dash { color: var(--saffron); }
.enrol-success .es-links a.es-dash:hover { color: var(--saffron-deep, #C7480A); }
@media (max-width: 560px) {
  .enrol-success { padding: 32px 20px; }
  .enrol-success .es-actions .btn { width: 100%; justify-content: center; }
}

/* =====================================================================
   PRO PAGES — about / contact / join  (scoped to body.pro-page)
   Animated hero, refined cards, micro-interactions.
   ===================================================================== */

/* ---- Animated hero ---- */
.pro-page .page-hero { overflow: hidden; }
.pro-page .page-hero .container { position: relative; z-index: 2; }
/* Entrance only when motion is allowed — text stays visible by default otherwise. */
@media (prefers-reduced-motion: no-preference) {
  .pro-page .page-hero .eyebrow   { animation: heroUp .7s cubic-bezier(.2,.7,.2,1) .05s both; }
  .pro-page .page-hero h1         { animation: heroUp .8s cubic-bezier(.2,.7,.2,1) .18s both; }
  .pro-page .page-hero p.lead     { animation: heroUp .8s cubic-bezier(.2,.7,.2,1) .32s both; }
  .pro-page .page-hero .hero-tricolor { animation: heroUp .8s cubic-bezier(.2,.7,.2,1) .44s both; }
  .pro-page .page-hero .breadcrumb { animation: heroUp .8s cubic-bezier(.2,.7,.2,1) .56s both; }
}
@keyframes heroUp { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: none; } }

.hero-tricolor {
  display: block; width: 120px; height: 5px; border-radius: 4px;
  margin: 22px auto 4px;
  background: linear-gradient(90deg, #FF6700 33.3%, #fff 33.3% 66.6%, #138808 66.6%);
  box-shadow: 0 4px 14px rgba(0,0,0,.22);
}
.hero-orbs { position: absolute; inset: 0; z-index: 1; pointer-events: none; }
.hero-orbs span {
  position: absolute; display: block; border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,.4), rgba(255,255,255,.04));
  animation: orbFloat 10s ease-in-out infinite;
}
.hero-orbs span:nth-child(1) { width: 170px; height: 170px; top: -34px; left: 6%; }
.hero-orbs span:nth-child(2) { width: 90px;  height: 90px;  top: 38%; right: 9%; animation-delay: -2.5s; }
.hero-orbs span:nth-child(3) { width: 230px; height: 230px; bottom: -84px; left: 40%; opacity: .55; animation-delay: -5s; }
.hero-orbs span:nth-child(4) { width: 56px;  height: 56px;  top: 26%; left: 22%; animation-delay: -7s; }
@keyframes orbFloat { 0%,100% { transform: translateY(0) translateX(0); } 50% { transform: translateY(-26px) translateX(12px); } }

/* ---- Cards: vm-block (pillars / regional / praveshika) ---- */
.pro-page .vm-block { transition: transform .45s cubic-bezier(.2,.7,.2,1), box-shadow .4s, background .35s, border-color .35s; }
.pro-page .vm-block:hover { transform: translateY(-10px); box-shadow: 0 26px 54px rgba(199,72,10,.18); }
.pro-page .vm-block .vm-icon { transition: transform .5s cubic-bezier(.2,.7,.2,1), background .35s; }
.pro-page .vm-block:hover .vm-icon { transform: rotate(-8deg) scale(1.12); }

/* ---- Stat cards (about) ---- */
.pro-page .stat-card { transition: transform .4s cubic-bezier(.2,.7,.2,1), box-shadow .4s, border-color .4s; }
.pro-page .stat-card:hover { transform: translateY(-8px); box-shadow: 0 22px 48px rgba(199,72,10,.16); border-color: rgba(255,103,0,.4); }
.pro-page .stat-card i { transition: transform .45s cubic-bezier(.2,.7,.2,1); }
.pro-page .stat-card:hover i { transform: scale(1.18) rotate(-6deg); }

/* ---- Two-col image (about / join) ---- */
.pro-page .two-col .col-img { position: relative; }
.pro-page .two-col .col-img img { border-radius: 16px; box-shadow: 0 24px 60px rgba(0,0,0,.16); transition: transform .7s cubic-bezier(.2,.7,.2,1); }
.pro-page .two-col .col-img:hover img { transform: scale(1.03); }
.img-badge {
  position: absolute; left: 18px; bottom: 18px; z-index: 2;
  display: flex; align-items: center; gap: 12px;
  background: rgba(255,255,255,.95); backdrop-filter: blur(6px);
  border-radius: 14px; padding: 12px 18px; box-shadow: 0 14px 34px rgba(0,0,0,.18);
  animation: badgeFloat 5s ease-in-out infinite;
}
.img-badge i { font-size: 22px; color: var(--saffron); }
.img-badge b { display: block; font-family: 'Oswald', sans-serif; font-size: 20px; color: #1a1a1a; line-height: 1; }
.img-badge small { font-size: 11.5px; color: var(--text-muted); letter-spacing: .4px; }
@keyframes badgeFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }

/* ---- Contact: quick action cards ---- */
.contact-quick { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 46px; }
.cq-card {
  display: flex; flex-direction: column; align-items: center; text-align: center; gap: 8px;
  padding: 30px 20px; background: #fff; border: 1px solid var(--line); border-radius: 16px;
  box-shadow: var(--shadow-sm); transition: transform .4s cubic-bezier(.2,.7,.2,1), box-shadow .4s, border-color .4s;
}
.cq-card:hover { transform: translateY(-8px); box-shadow: 0 24px 50px rgba(199,72,10,.16); border-color: rgba(255,103,0,.4); }
.cq-ic { width: 62px; height: 62px; border-radius: 16px; display: grid; place-items: center; font-size: 25px; color: #fff; background: linear-gradient(135deg, var(--saffron), var(--saffron-dark)); transition: transform .45s cubic-bezier(.2,.7,.2,1); }
.cq-card:hover .cq-ic { transform: rotate(-8deg) scale(1.1); }
.cq-card.wa .cq-ic { background: linear-gradient(135deg, #25d366, #128c4b); }
.cq-card.mail .cq-ic { background: linear-gradient(135deg, #3b82f6, #1e40af); }
.cq-card h4 { font-size: 16px; margin: 4px 0 0; }
.cq-card span { font-size: 13.5px; color: var(--text-muted); }
.cq-card b.cq-val { font-size: 14.5px; color: var(--saffron-deep, #C7480A); font-weight: 700; }

/* ---- Contact info / form polish ---- */
.pro-page .ci-block { padding: 12px; border-radius: 12px; transition: background .25s, transform .25s, box-shadow .25s; }
.pro-page .ci-block:hover { background: #fff; transform: translateX(4px); box-shadow: var(--shadow-sm); }
.pro-page .ci-block i { transition: transform .4s cubic-bezier(.2,.7,.2,1); }
.pro-page .ci-block:hover i { transform: rotate(8deg) scale(1.08); }
.pro-page .contact-form .ok.show { animation: okPop .4s cubic-bezier(.2,.7,.2,1) both; }
@keyframes okPop { from { opacity: 0; transform: scale(.92); } to { opacity: 1; transform: none; } }

/* ---- Join form panel polish ---- */
.pro-page .form-panel { border-top: 4px solid var(--saffron); }
.pro-page .form-panel input:focus, .pro-page .form-panel select:focus, .pro-page .form-panel textarea:focus {
  border-color: var(--saffron); box-shadow: 0 0 0 3px rgba(255,103,0,.12); outline: none;
}

@media (max-width: 680px) { .contact-quick { grid-template-columns: 1fr; } }
@media (prefers-reduced-motion: reduce) {
  .hero-orbs span, .img-badge { animation: none !important; }
  .pro-page .page-hero .eyebrow, .pro-page .page-hero h1, .pro-page .page-hero p.lead,
  .pro-page .page-hero .hero-tricolor, .pro-page .page-hero .breadcrumb { animation: none !important; opacity: 1 !important; transform: none !important; }
}

/* =====================================================================
   ABOUT PAGE — extra pro sections
   ===================================================================== */

/* Vision & Mission cards */
.about-page .vm-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
.about-page .vm-pro {
  background: #fff; border: 1px solid var(--line); border-radius: 18px;
  padding: 40px 36px; position: relative; overflow: hidden; box-shadow: var(--shadow-sm);
  transition: transform .45s cubic-bezier(.2,.7,.2,1), box-shadow .4s;
}
.about-page .vm-pro::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 5px; background: linear-gradient(90deg, var(--saffron), var(--gold)); }
.about-page .vm-pro:hover { transform: translateY(-8px); box-shadow: 0 26px 54px rgba(199,72,10,.16); }
.about-page .vm-pro-ic { width: 64px; height: 64px; border-radius: 16px; display: grid; place-items: center; font-size: 26px; color: #fff; background: linear-gradient(135deg, var(--saffron), var(--saffron-dark)); margin-bottom: 20px; transition: transform .45s cubic-bezier(.2,.7,.2,1); }
.about-page .vm-pro:hover .vm-pro-ic { transform: rotate(-8deg) scale(1.1); }
.about-page .vm-pro h3 { font-size: 24px; margin-bottom: 12px; }
.about-page .vm-pro p { color: var(--text-muted); line-height: 1.85; font-size: 15px; }
.about-page .vm-pro ul { margin: 14px 0 0; padding: 0; list-style: none; }
.about-page .vm-pro li { display: flex; align-items: flex-start; gap: 10px; font-size: 14.5px; color: var(--text-muted); margin-bottom: 9px; }
.about-page .vm-pro li i { color: var(--green); margin-top: 4px; }
@media (max-width: 760px) { .about-page .vm-cards { grid-template-columns: 1fr; } }

/* Focus areas */
.about-page .focus-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.about-page .focus-card { background: var(--bg-light); border: 1px solid var(--line); border-radius: 16px; padding: 30px 24px; transition: transform .45s cubic-bezier(.2,.7,.2,1), box-shadow .4s, background .35s; }
.about-page .focus-card .fc-num { font-family: 'Oswald', sans-serif; font-size: 13px; color: var(--saffron); font-weight: 700; letter-spacing: 1.5px; }
.about-page .focus-card .fc-ic { width: 56px; height: 56px; border-radius: 14px; display: grid; place-items: center; font-size: 22px; color: var(--saffron); background: #fff; box-shadow: var(--shadow-sm); margin: 12px 0 16px; transition: transform .4s cubic-bezier(.2,.7,.2,1), background .35s, color .35s; }
.about-page .focus-card h3 { font-size: 18px; margin-bottom: 8px; }
.about-page .focus-card p { color: var(--text-muted); font-size: 14px; line-height: 1.7; }
.about-page .focus-card:hover { transform: translateY(-8px); box-shadow: 0 24px 50px rgba(199,72,10,.16); background: #fff; }
.about-page .focus-card:hover .fc-ic { background: linear-gradient(135deg, var(--saffron), var(--saffron-dark)); color: #fff; transform: rotate(-8deg) scale(1.08); }
@media (max-width: 980px) { .about-page .focus-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .about-page .focus-grid { grid-template-columns: 1fr; } }

/* Quote band */
.about-page .quote-band { position: relative; padding: 90px 0; background: linear-gradient(135deg, #1a1a1a, #2c2c2c); color: #fff; text-align: center; overflow: hidden; }
.about-page .quote-band::before { content: '\201C'; position: absolute; top: -34px; left: 50%; transform: translateX(-50%); font-family: Georgia, serif; font-size: 230px; color: rgba(255,103,0,.14); line-height: 1; pointer-events: none; }
.about-page .quote-inner { max-width: 860px; margin: 0 auto; position: relative; z-index: 1; padding: 0 20px; }
.about-page .quote-tricolor { width: 120px; height: 4px; margin: 0 auto 28px; border-radius: 4px; background: linear-gradient(90deg, #FF6700 33.3%, #fff 33.3% 66.6%, #138808 66.6%); }
.about-page .quote-inner blockquote { font-family: 'Hind', sans-serif; font-size: clamp(20px, 2.6vw, 28px); line-height: 1.6; font-style: italic; margin: 0 0 28px; }
.about-page .quote-inner blockquote span { color: var(--gold); font-style: normal; }
.about-page .q-author { display: flex; align-items: center; justify-content: center; gap: 16px; }
.about-page .q-author .qa-av { width: 58px; height: 58px; border-radius: 50%; background: linear-gradient(135deg, var(--saffron), var(--gold)); display: grid; place-items: center; font-family: 'Oswald', sans-serif; font-weight: 700; font-size: 20px; color: #fff; }
.about-page .q-author .qa-info { text-align: left; }
.about-page .q-author .qa-info b { display: block; font-family: 'Oswald', sans-serif; font-size: 18px; }
.about-page .q-author .qa-info small { color: rgba(255,255,255,.6); font-size: 13px; }

/* Chairman fact strip (leadership page) */
.chair-facts { display: flex; flex-wrap: wrap; gap: 14px; list-style: none; margin: 26px 0 30px; padding: 0; }
.chair-facts li { display: flex; align-items: center; gap: 12px; background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 12px 18px; box-shadow: var(--shadow-sm); }
.chair-facts li i { font-size: 20px; color: var(--saffron); }
.chair-facts li b { display: block; font-family: 'Oswald', sans-serif; font-size: 16px; color: #1a1a1a; line-height: 1.1; }
.chair-facts li small { font-size: 11.5px; color: var(--text-muted); letter-spacing: .3px; }

/* What We Do */
.about-page .do-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.about-page .do-card { display: flex; gap: 16px; align-items: flex-start; background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 24px; transition: transform .4s cubic-bezier(.2,.7,.2,1), box-shadow .4s, border-color .4s; }
.about-page .do-card:hover { transform: translateY(-6px); box-shadow: 0 22px 46px rgba(199,72,10,.14); border-color: rgba(255,103,0,.35); }
.about-page .do-card .do-ic { width: 50px; height: 50px; flex-shrink: 0; border-radius: 13px; display: grid; place-items: center; font-size: 20px; color: #fff; background: linear-gradient(135deg, var(--saffron), var(--saffron-dark)); transition: transform .4s cubic-bezier(.2,.7,.2,1); }
.about-page .do-card:hover .do-ic { transform: rotate(-8deg) scale(1.08); }
.about-page .do-card h4 { font-size: 16px; margin-bottom: 5px; }
.about-page .do-card p { font-size: 13.5px; color: var(--text-muted); line-height: 1.6; }
@media (max-width: 900px) { .about-page .do-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .about-page .do-grid { grid-template-columns: 1fr; } }

/* Guiding inspirations */
.about-page .mentor-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.about-page .mentor-card { text-align: center; background: var(--bg-light); border: 1px solid var(--line); border-radius: 18px; padding: 36px 26px; position: relative; overflow: hidden; transition: transform .45s cubic-bezier(.2,.7,.2,1), box-shadow .4s, background .35s; }
.about-page .mentor-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, var(--saffron), var(--gold)); transform: scaleX(0); transform-origin: left; transition: transform .45s; }
.about-page .mentor-card:hover { transform: translateY(-8px); box-shadow: 0 24px 50px rgba(199,72,10,.16); background: #fff; }
.about-page .mentor-card:hover::before { transform: scaleX(1); }
.about-page .mentor-card .mc-av { width: 84px; height: 84px; margin: 0 auto 18px; border-radius: 50%; display: grid; place-items: center; font-family: 'Oswald', sans-serif; font-size: 28px; font-weight: 700; color: #fff; background: linear-gradient(135deg, var(--saffron), var(--gold)); box-shadow: 0 10px 26px rgba(255,103,0,.3); }
.about-page .mentor-card h3 { font-size: 19px; margin-bottom: 4px; }
.about-page .mentor-card .mc-role { font-size: 13px; color: var(--saffron); font-weight: 600; letter-spacing: .3px; margin-bottom: 12px; display: block; }
.about-page .mentor-card p { font-size: 14px; color: var(--text-muted); line-height: 1.7; }
@media (max-width: 820px) { .about-page .mentor-grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; } }

/* =====================================================================
   VIDEOS PAGE — pro gallery (scoped to body.videos-page)
   ===================================================================== */
.videos-page .video-thumb::after { display: none; } /* use explicit .play-btn instead */

/* Category accent colors */
.cat-live        { --cat: #E23B3B; }
.cat-speech      { --cat: var(--saffron); }
.cat-documentary { --cat: #2b5fd0; }
.cat-karyakarta  { --cat: #138808; }
.cat-promo       { --cat: #E08A00; }

/* ---- Play button (shared by grid + featured) ---- */
.videos-page .play-btn {
  position: absolute; top: 50%; left: 50%;
  width: 64px; height: 64px; border-radius: 50%;
  transform: translate(-50%, -50%) scale(.9);
  background: rgba(199,72,10,.92); color: #fff;
  display: grid; place-items: center; font-size: 22px; padding-left: 4px;
  box-shadow: 0 8px 24px rgba(0,0,0,.4);
  opacity: 0; transition: opacity .35s, transform .35s, background .25s;
  z-index: 3; cursor: pointer;
}
.videos-page .play-btn.lg { width: 84px; height: 84px; font-size: 30px; }
.videos-page .play-btn::before {
  content: ''; position: absolute; inset: -8px;
  border-radius: 50%; border: 2px solid rgba(255,255,255,.6);
  opacity: 0;
}
.videos-page .video-card:hover .play-btn,
.videos-page .fv-stage:hover .play-btn,
.videos-page .fv-stage:focus-visible .play-btn {
  opacity: 1; transform: translate(-50%, -50%) scale(1);
  background: var(--saffron);
}
.videos-page .video-card:hover .play-btn::before,
.videos-page .fv-stage:hover .play-btn::before {
  animation: vbPulse 1.6s ease-out infinite;
}
@keyframes vbPulse {
  0%   { opacity: .7; transform: scale(.85); }
  100% { opacity: 0;  transform: scale(1.35); }
}

/* ---- Grid card enhancements ---- */
.videos-page .video-card { cursor: pointer; border-radius: 12px; }
.videos-page .video-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 48px rgba(199,72,10,.18);
  border-color: rgba(255,103,0,.4);
}
.videos-page .video-thumb { aspect-ratio: 16/9; }
.videos-page .video-thumb img { transition: transform .8s cubic-bezier(.2,.7,.2,1); }
.videos-page .video-card:hover .video-thumb img { transform: scale(1.09); }
.videos-page .video-thumb::before {
  content: ''; position: absolute; inset: 0; z-index: 2;
  background: linear-gradient(180deg, rgba(0,0,0,.05) 0%, transparent 35%, rgba(0,0,0,.45) 100%);
  opacity: .85; transition: opacity .3s;
}
.videos-page .video-card:hover .video-thumb::before { opacity: 1; }

/* badges + duration */
.videos-page .cat-badge {
  position: absolute; top: 12px; left: 12px; z-index: 3;
  font-family: 'Oswald', sans-serif; font-size: 11px; font-weight: 600;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: #fff; background: var(--cat, var(--saffron));
  padding: 5px 11px; border-radius: 6px; line-height: 1;
  display: inline-flex; align-items: center; gap: 6px;
  box-shadow: 0 4px 12px rgba(0,0,0,.25);
}
.videos-page .live-dot { width: 7px; height: 7px; border-radius: 50%; background: #fff; animation: liveBlink 1.2s steps(1) infinite; }
@keyframes liveBlink { 50% { opacity: .25; } }
.videos-page .v-duration {
  position: absolute; bottom: 12px; right: 12px; z-index: 3;
  font-size: 12px; font-weight: 600; color: #fff;
  background: rgba(0,0,0,.78); padding: 3px 9px; border-radius: 5px;
  font-variant-numeric: tabular-nums;
}
.videos-page .video-meta .v-cat { color: var(--cat, var(--saffron)); }
.videos-page .video-card[data-cat="live"]        { --cat: #E23B3B; }
.videos-page .video-card[data-cat="speech"]       { --cat: var(--saffron); }
.videos-page .video-card[data-cat="documentary"]  { --cat: #2b5fd0; }
.videos-page .video-card[data-cat="karyakarta"]   { --cat: #138808; }
.videos-page .video-card[data-cat="promo"]        { --cat: #E08A00; }

/* filter hide/show */
.videos-page .video-card.v-hide { display: none; }
.videos-page .video-card.v-show { animation: vCardIn .5s cubic-bezier(.2,.7,.2,1) both; }
@keyframes vCardIn { from { opacity: 0; transform: translateY(24px) scale(.96); } to { opacity: 1; transform: none; } }
.videos-page .no-vids { text-align: center; color: var(--text-muted); padding: 40px 0; font-size: 15px; }

/* filter chips: icons + active glow */
.videos-page .vid-filters { justify-content: center; gap: 10px; margin-bottom: 36px; }
.videos-page .vid-filters .chip { display: inline-flex; align-items: center; gap: 7px; }
.videos-page .vid-filters .chip i { font-size: 12px; }
.videos-page .vid-filters .chip.active { box-shadow: 0 8px 20px rgba(255,103,0,.32); }

/* ---- Featured video ---- */
.videos-page .featured-video {
  display: grid; grid-template-columns: 1.4fr 1fr; gap: 0;
  background: #1A1A1A; border-radius: 18px; overflow: hidden;
  box-shadow: 0 30px 70px rgba(0,0,0,.22);
}
.videos-page .fv-stage {
  position: relative; aspect-ratio: 16/9; cursor: pointer; overflow: hidden;
}
.videos-page .fv-stage img { width: 100%; height: 100%; object-fit: cover; transition: transform .9s cubic-bezier(.2,.7,.2,1); }
.videos-page .fv-stage:hover img { transform: scale(1.06); }
.videos-page .vf-shade { position: absolute; inset: 0; background: linear-gradient(120deg, transparent 55%, rgba(26,26,26,.9) 100%); z-index: 2; }
.videos-page .fv-stage .cat-badge { top: 16px; left: 16px; font-size: 12px; padding: 6px 13px; }
.videos-page .fv-stage .v-duration { bottom: 16px; right: 16px; font-size: 13px; }
.videos-page .fv-stage .play-btn { opacity: 1; transform: translate(-50%, -50%) scale(1); background: rgba(255,103,0,.95); }
.videos-page .fv-stage:hover .play-btn { transform: translate(-50%, -50%) scale(1.08); }
.videos-page .fv-body {
  padding: 38px 40px; display: flex; flex-direction: column; justify-content: center;
  color: rgba(255,255,255,.88);
}
.videos-page .v-cat-tag {
  align-self: flex-start; font-family: 'Oswald', sans-serif; font-size: 12px;
  letter-spacing: 2px; text-transform: uppercase; color: #fff;
  background: var(--cat, var(--saffron)); padding: 5px 13px; border-radius: 6px;
  display: inline-flex; align-items: center; gap: 7px; margin-bottom: 16px;
}
.videos-page .fv-body h3 { font-family: 'Oswald', sans-serif; font-size: clamp(22px, 2.4vw, 30px); color: #fff; line-height: 1.25; margin-bottom: 14px; }
.videos-page .fv-body p { font-size: 15px; line-height: 1.7; color: rgba(255,255,255,.7); margin-bottom: 20px; }
.videos-page .fv-tags { display: flex; flex-wrap: wrap; gap: 18px; margin-bottom: 26px; font-size: 13.5px; color: rgba(255,255,255,.6); }
.videos-page .fv-tags i { color: var(--saffron); margin-right: 6px; }
.videos-page .fv-body .btn { align-self: flex-start; }

/* ---- YouTube CTA ---- */
.videos-page .yt-cta { background: linear-gradient(135deg, #b30000 0%, #E23B3B 100%); padding: 46px 0; }
.videos-page .yt-cta-inner { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; justify-content: center; text-align: left; }
.videos-page .yt-cta-icon { font-size: 52px; color: #fff; flex-shrink: 0; }
.videos-page .yt-cta-text { flex: 1; min-width: 240px; }
.videos-page .yt-cta-text h3 { font-family: 'Oswald', sans-serif; font-size: 24px; color: #fff; margin-bottom: 4px; }
.videos-page .yt-cta-text p { color: rgba(255,255,255,.9); font-size: 15px; }
.videos-page .yt-btn { background: #fff; color: #c00 !important; font-weight: 700; flex-shrink: 0; }
.videos-page .yt-btn:hover { background: #1A1A1A; color: #fff !important; transform: translateY(-2px); }

/* ---- Video lightbox player ---- */
.v-lightbox {
  position: fixed; inset: 0; z-index: 9999;
  display: flex; align-items: center; justify-content: center; padding: 30px 20px;
  background: rgba(8,8,12,.94); backdrop-filter: blur(5px);
  opacity: 0; visibility: hidden; transition: opacity .3s, visibility .3s;
}
.v-lightbox.open { opacity: 1; visibility: visible; }
.v-lb-inner { width: min(1000px, 94vw); transform: scale(.96); transition: transform .3s; }
.v-lightbox.open .v-lb-inner { transform: none; }
.v-lb-frame { position: relative; width: 100%; aspect-ratio: 16/9; background: #000; border-radius: 12px; overflow: hidden; box-shadow: 0 30px 80px rgba(0,0,0,.6); border: 1px solid rgba(255,255,255,.08); }
.v-lb-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.v-lb-fallback { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 14px; text-align: center; padding: 24px; background-size: cover; background-position: center; }
.v-lb-fallback::before { content: ''; position: absolute; inset: 0; background: rgba(10,10,14,.74); }
.v-lb-fallback > * { position: relative; z-index: 1; }
.v-lb-fallback .fb-play { width: 78px; height: 78px; border-radius: 50%; background: var(--saffron); color: #fff; display: grid; place-items: center; font-size: 28px; padding-left: 5px; }
.v-lb-fallback p { color: rgba(255,255,255,.9); font-size: 15px; max-width: 420px; }
.v-lb-fallback .yt-btn { background: #c00; color: #fff !important; }
.v-lb-fallback .yt-btn:hover { background: #fff; color: #c00 !important; }
.v-lb-title { margin-top: 16px; color: #fff; font-family: 'Oswald', sans-serif; font-size: 17px; text-align: center; }
.v-lb-close { position: absolute; top: 18px; right: 22px; width: 48px; height: 48px; border-radius: 50%; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.25); color: #fff; font-size: 22px; display: grid; place-items: center; cursor: pointer; transition: background .2s, transform .2s; z-index: 2; }
.v-lb-close:hover { background: var(--saffron); border-color: var(--saffron); transform: rotate(90deg); }

@media (max-width: 860px) {
  .videos-page .featured-video { grid-template-columns: 1fr; }
  .videos-page .fv-body { padding: 28px 24px; }
}
@media (prefers-reduced-motion: reduce) {
  .videos-page .play-btn::before { animation: none !important; }
  .videos-page .video-card.v-show { animation: none !important; }
}

.member-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.member-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  text-align: center;
  transition: all .35s;
}
.member-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--saffron); }
.member-photo {
  position: relative;
  aspect-ratio: 1/1;
  background: linear-gradient(180deg, var(--saffron), var(--saffron-dark));
  overflow: hidden;
}
.member-photo img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .45s; }
.member-card:hover .member-photo img { transform: scale(1.06); }
.member-info { padding: 18px 16px 22px; }
.member-info h5 { font-size: 16px; margin-bottom: 4px; }
.member-info .role { color: var(--saffron); font-size: 13px; font-family: 'Oswald', sans-serif; letter-spacing: 1px; margin-bottom: 6px; }
.member-info .loc { font-size: 12px; color: var(--text-muted); }

.filter-chips {
  display: flex; gap: 10px; flex-wrap: wrap;
  justify-content: center;
  margin: 0 0 40px;
}
.chip {
  padding: 8px 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 100px;
  font-family: 'Oswald', sans-serif;
  font-size: 13px;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all .25s;
  color: var(--text);
}
.chip.active, .chip:hover { background: var(--saffron); color: #fff; border-color: var(--saffron); }

.form-panel {
  background: #fff;
  border-radius: 10px;
  padding: 40px;
  box-shadow: var(--shadow-md);
  max-width: 760px;
  margin: 0 auto;
}
.form-panel h3 { font-size: 24px; margin-bottom: 8px; color: var(--saffron-dark); }
.form-panel .muted { color: var(--text-muted); font-size: 14px; margin-bottom: 26px; }
.form-panel .fp-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 14px; margin-bottom: 14px;
}
.form-panel input, .form-panel select, .form-panel textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 4px;
  font-family: inherit;
  font-size: 14px;
  background: #FAFAFA;
  transition: border-color .25s;
}
.form-panel input:focus, .form-panel select:focus, .form-panel textarea:focus {
  outline: none; border-color: var(--saffron); background: #fff;
}
.form-panel textarea { min-height: 120px; resize: vertical; }
.form-panel .full { grid-column: 1 / -1; }
.form-panel label { display: block; font-size: 13px; font-weight: 600; margin-bottom: 6px; color: var(--text); }

.live-hero {
  background: linear-gradient(135deg, #0a0a0a, #2C1810);
  color: #fff;
  padding: 130px 0 80px;
  text-align: center;
}
.live-hero h1 { color: #fff; font-family: 'Oswald', sans-serif; font-size: clamp(34px, 5vw, 52px); margin-bottom: 14px; }
.live-hero p { color: rgba(255,255,255,.8); max-width: 680px; margin: 0 auto 30px; }
.live-player {
  max-width: 980px;
  margin: 0 auto;
  background: #000;
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 16/9;
  position: relative;
  box-shadow: 0 30px 80px rgba(0,0,0,.6);
}
.live-player img { width: 100%; height: 100%; object-fit: cover; opacity: .6; }
.live-player::after {
  content: '\f144';
  font-family: 'Font Awesome 6 Free'; font-weight: 900;
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  color: #fff; font-size: 80px;
  text-shadow: 0 6px 24px rgba(0,0,0,.5);
}
.live-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: #dc2626; color: #fff;
  padding: 6px 14px;
  border-radius: 100px;
  font-family: 'Oswald', sans-serif;
  font-size: 12px; letter-spacing: 2px;
  margin-bottom: 18px;
}
.live-badge::before {
  content: '';
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #fff;
  animation: pulse-dot 1.5s infinite;
}
@keyframes pulse-dot { 0%, 100% { opacity: 1; } 50% { opacity: .3; } }

.sitemap-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 40px 30px;
}
.sitemap-col h4 {
  color: var(--saffron);
  font-size: 14px;
  letter-spacing: 2px;
  font-family: 'Oswald', sans-serif;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--saffron);
  margin-bottom: 16px;
}
.sitemap-col ul { list-style: none; padding: 0; }
.sitemap-col ul li { margin-bottom: 10px; }
.sitemap-col ul a {
  color: var(--text);
  text-decoration: none;
  font-size: 14px;
  display: inline-flex; align-items: center; gap: 8px;
  transition: color .25s;
}
.sitemap-col ul a::before { content: '\203A'; color: var(--saffron); font-weight: 700; }
.sitemap-col ul a:hover { color: var(--saffron); }

@media (max-width: 960px) {
  .two-col, .two-col.reverse { grid-template-columns: 1fr; gap: 32px; }
  .stat-row { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .video-grid { grid-template-columns: repeat(2, 1fr); }
  .member-grid { grid-template-columns: repeat(2, 1fr); }
  .sitemap-grid { grid-template-columns: repeat(2, 1fr); }
  .form-panel { padding: 26px; }
  .form-panel .fp-grid { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .page-hero { padding: 100px 0 56px; }
  .stat-row { grid-template-columns: 1fr 1fr; }
  .gallery-grid, .video-grid, .member-grid { grid-template-columns: 1fr; }
  .sitemap-grid { grid-template-columns: 1fr; }
}

/* ===========================================================
   ENHANCED ANIMATIONS  (page-load entrance, hover, scroll-fx)
   =========================================================== */

/* Scroll progress bar (top) */
.scroll-progress {
  position: fixed; top: 0; left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--saffron), var(--gold), var(--green));
  z-index: 10000;
  transition: width .15s linear;
  box-shadow: 0 0 12px rgba(255,103,0,.6);
}

/* Page-hero entrance */
.page-hero .container > * {
  opacity: 0;
  transform: translateY(20px);
  animation: heroIn .8s cubic-bezier(.2,.7,.2,1) forwards;
}
.page-hero .eyebrow { animation-delay: .15s; }
.page-hero h1 { animation-delay: .30s; }
.page-hero p.lead { animation-delay: .45s; }
.page-hero .breadcrumb { animation-delay: .60s; }
@keyframes heroIn {
  to { opacity: 1; transform: translateY(0); }
}

/* Subtle background-position drift on page-hero image */
.page-hero { background-attachment: scroll; }
@keyframes heroPan {
  0% { background-position: 50% 50%, 50% 50%; }
  100% { background-position: 50% 50%, 50% 56%; }
}
@media (prefers-reduced-motion: no-preference) {
  .page-hero { animation: heroPan 18s ease-in-out infinite alternate; }
}

/* Counter number animation (stat-card) — combined with .visible */
.stat-card strong {
  background: linear-gradient(90deg, var(--saffron-dark), var(--saffron));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: transform .35s;
}
.stat-card:hover strong { transform: scale(1.08); }

/* Magnetic / lift hover for primary buttons */
.btn-primary, .btn-outline-saffron, .btn-outline-light, .btn-ghost {
  position: relative;
  transition: transform .25s cubic-bezier(.2,.7,.2,1), box-shadow .3s, background-color .3s, color .3s;
}
.btn-primary:hover, .btn-outline-saffron:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 28px rgba(199,72,10,.35);
}
.btn-outline-light:hover, .btn-ghost:hover { transform: translateY(-3px); }

/* Card lift micro-interactions */
.member-card, .video-card, .gallery-item, .stat-card,
.event-card, .news-card, .insp-card, .leader-tile,
.t-card {
  will-change: transform;
}

/* Ken-burns slow zoom on gallery images on idle (subtle) */
@keyframes kenBurns {
  0%   { transform: scale(1) translate(0,0); }
  50%  { transform: scale(1.06) translate(-1%, 1%); }
  100% { transform: scale(1) translate(0,0); }
}
@media (prefers-reduced-motion: no-preference) {
  .gallery-item:not(:hover) img { animation: kenBurns 14s ease-in-out infinite; }
}

/* Filter chip click ripple */
.chip {
  overflow: hidden;
  position: relative;
}
.chip::after {
  content: '';
  position: absolute; left: 50%; top: 50%;
  width: 0; height: 0;
  background: rgba(255,255,255,.5);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width .55s ease, height .55s ease, opacity .8s ease;
  pointer-events: none;
  opacity: 0;
}
.chip.clicked::after {
  width: 240px; height: 240px;
  opacity: 1;
  transition: width 0s, height 0s, opacity 0s;
}

/* Image lazy fade-in */
img.loaded {
  animation: imgFade .6s ease;
}
@keyframes imgFade {
  from { opacity: 0; transform: scale(1.02); }
  to   { opacity: 1; transform: scale(1); }
}

/* Form field lift on focus */
.form-panel input:focus,
.form-panel select:focus,
.form-panel textarea:focus {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(199,72,10,.12);
  transition: transform .25s, box-shadow .25s, border-color .25s, background-color .25s;
}

/* Lotus mini in header — pulse on hover */
.brand:hover .lotus-mini {
  animation: lotusSpin 1.2s ease;
}
@keyframes lotusSpin {
  to { transform: rotate(360deg); }
}

/* Underline grow effect for in-text links */
.breadcrumb a, .prose a, .footer-col ul a, .sitemap-col ul a {
  position: relative;
}

/* Section head underline draw on view */
.section-head h2 {
  position: relative;
  display: inline-block;
}
.section-head h2::after {
  content: '';
  position: absolute; left: 50%; bottom: -10px;
  width: 0; height: 3px;
  background: linear-gradient(90deg, var(--saffron), var(--gold));
  transform: translateX(-50%);
  transition: width .8s cubic-bezier(.2,.7,.2,1);
}
.section-head.visible h2::after { width: 80px; }

/* Hover tilt on cards (light) */
.member-card, .video-card, .insp-card {
  transition: transform .45s cubic-bezier(.2,.7,.2,1), box-shadow .35s, border-color .3s, background .3s;
}

/* Donate amount selected pulse */
.donate-options .amount.active {
  animation: amountPulse .45s ease;
}
@keyframes amountPulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.08); }
  100% { transform: scale(1); }
}

/* Page-load body fade */
body.page-loading > * { opacity: 0; }
body { animation: pageIn .55s ease forwards .05s; }
@keyframes pageIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* Stagger helper (data-attribute based delays applied by JS) */
[data-stagger] { transition-delay: var(--stagger, 0ms) !important; }

/* ===========================================================
   STATE WEBSITES PAGE — BJP-style clean layout
   =========================================================== */
.state-section-clean {
  background: #fff;
  padding: 60px 0 80px;
  position: relative;
  overflow: hidden;
}
.state-section-clean::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image:
    linear-gradient(45deg, rgba(199,72,10,.025) 25%, transparent 25%),
    linear-gradient(-45deg, rgba(199,72,10,.025) 25%, transparent 25%);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 0;
}
.state-section-clean > .container { position: relative; z-index: 1; }
.page-title-simple {
  font-family: 'Oswald', sans-serif;
  font-size: 32px;
  color: #002F6C;
  margin-bottom: 30px;
  font-weight: 600;
}
.crumb-simple {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 14px;
}
.crumb-simple a { color: var(--text-muted); text-decoration: none; }
.crumb-simple a:hover { color: var(--saffron); }
.crumb-simple .sep { margin: 0 8px; color: var(--saffron); }

.state-select-row {
  display: grid; grid-template-columns: 360px 1fr;
  gap: 60px;
  align-items: center;
  min-height: 600px;
}
.state-select-row .pick h2 {
  font-family: 'Oswald', sans-serif;
  font-size: 36px;
  color: #002F6C;
  margin-bottom: 24px;
  font-weight: 600;
}
.state-select-row select.state-dropdown {
  width: 100%;
  padding: 14px 18px;
  font-family: 'Oswald', sans-serif;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: 1px solid #d0d0d0;
  border-radius: 4px;
  background: #fff;
  color: var(--text);
  cursor: pointer;
  transition: border-color .25s, box-shadow .25s;
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path fill='%23333' d='M6 8L0 0h12z'/></svg>");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 44px;
  box-shadow: 0 2px 6px rgba(0,0,0,.06);
}
.state-select-row select.state-dropdown:hover,
.state-select-row select.state-dropdown:focus {
  outline: none;
  border-color: var(--saffron);
  box-shadow: 0 4px 14px rgba(199,72,10,.15);
}
.state-select-row .selected-info {
  margin-top: 20px;
  padding: 16px 18px;
  background: #FFF8F0;
  border-left: 3px solid var(--saffron);
  border-radius: 3px;
  display: none;
}
.state-select-row .selected-info.show { display: block; animation: imgFade .4s ease; }
.state-select-row .selected-info strong {
  display: block;
  font-family: 'Oswald', sans-serif;
  font-size: 16px;
  color: var(--saffron-dark);
  margin-bottom: 3px;
}
.state-select-row .selected-info span { font-size: 12px; color: var(--text-muted); display: block; margin-bottom: 10px; }
.state-select-row .selected-info a {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--saffron);
  text-decoration: none;
  font-family: 'Oswald', sans-serif;
  font-size: 12px;
  letter-spacing: 1.5px;
  border-bottom: 1px solid var(--saffron);
  padding-bottom: 1px;
  transition: color .25s;
}
.state-select-row .selected-info a:hover { color: var(--saffron-dark); }

/* SVG India Map container */
.india-map-svg {
  width: 100%;
  max-width: 720px;
  margin-left: auto;
  position: relative;
  filter: drop-shadow(0 12px 24px rgba(199,72,10,.12));
}
.india-map-svg svg {
  width: 100%; height: auto;
  display: block;
}
.india-map-svg svg path {
  fill: #C9C9C9;
  stroke: #fff;
  stroke-width: 1.2;
  cursor: pointer;
  transition: fill .25s ease, transform .2s ease, filter .25s;
  transform-box: fill-box;
  transform-origin: center;
}
.india-map-svg svg path.active {
  fill: #FF6700;
}
.india-map-svg svg path:hover {
  fill: #C7480A !important;
  filter: brightness(1.05);
}
.india-map-svg svg path.highlight {
  fill: #002F6C !important;
  filter: drop-shadow(0 0 6px rgba(0,47,108,.5));
}

/* Tooltip for hovered state */
.map-tooltip {
  position: fixed;
  background: #002F6C;
  color: #fff;
  padding: 8px 14px;
  border-radius: 4px;
  font-family: 'Oswald', sans-serif;
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -120%);
  opacity: 0;
  transition: opacity .15s;
  white-space: nowrap;
  box-shadow: 0 8px 20px rgba(0,0,0,.25);
}
.map-tooltip.show { opacity: 1; }
.map-tooltip::after {
  content: '';
  position: absolute;
  bottom: -5px; left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 10px; height: 10px;
  background: #002F6C;
}

/* ---------- Stats Bar (just under page title) ---------- */
.state-stats-bar {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: linear-gradient(135deg, #002F6C 0%, #1A237E 100%);
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 40px;
  box-shadow: 0 6px 24px rgba(0,47,108,.18);
}
.state-stat {
  padding: 24px 20px;
  text-align: center;
  color: #fff;
  position: relative;
  border-right: 1px solid rgba(255,255,255,.12);
}
.state-stat:last-child { border-right: none; }
.state-stat strong {
  display: block;
  font-family: 'Oswald', sans-serif;
  font-size: 32px;
  font-weight: 700;
  background: linear-gradient(90deg, #FFB300, #FF6700);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 4px;
}
.state-stat span {
  font-family: 'Oswald', sans-serif;
  font-size: 11.5px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,.85);
}
.state-stat i {
  position: absolute;
  top: 50%; left: 16px;
  transform: translateY(-50%);
  font-size: 28px;
  color: rgba(255,179,0,.18);
}

/* ---------- Region tabs + search ---------- */
.region-tools {
  display: flex; justify-content: space-between; align-items: center;
  gap: 20px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}
.region-tabs {
  display: flex; gap: 6px;
  flex-wrap: wrap;
}
.region-tab {
  padding: 10px 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 100px;
  font-family: 'Oswald', sans-serif;
  font-size: 12px;
  letter-spacing: 1.5px;
  cursor: pointer;
  transition: all .25s;
  color: var(--text);
  text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 8px;
}
.region-tab:hover { border-color: var(--saffron); color: var(--saffron); }
.region-tab.active {
  background: var(--saffron);
  color: #fff;
  border-color: var(--saffron);
  box-shadow: 0 6px 14px rgba(199,72,10,.3);
}
.region-tab .count {
  background: rgba(255,255,255,.25);
  border-radius: 100px;
  padding: 1px 8px;
  font-size: 10.5px;
  font-weight: 600;
}
.region-tab:not(.active) .count {
  background: #FFF8F0;
  color: var(--saffron);
}
.state-search {
  position: relative;
  min-width: 240px;
}
.state-search input {
  width: 100%;
  padding: 10px 14px 10px 38px;
  border: 1px solid var(--line);
  border-radius: 100px;
  font-family: inherit;
  font-size: 13px;
  background: #fff;
  transition: border-color .25s, box-shadow .25s;
}
.state-search input:focus {
  outline: none;
  border-color: var(--saffron);
  box-shadow: 0 4px 14px rgba(199,72,10,.15);
}
.state-search i {
  position: absolute;
  left: 14px; top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  font-size: 13px;
}

/* ---------- Enhanced State Grid (HORIZONTAL scrollable) ---------- */
/* ---------- Pro Horizontal Scroller (single flex + scroll element) ---------- */
.state-scroll {
  position: relative;
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  gap: 22px;
  overflow-x: auto !important;
  overflow-y: hidden !important;
  white-space: nowrap;
  padding: 24px 30px 28px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background:
    linear-gradient(180deg, #fff 0%, #FFFBF5 100%);
  box-shadow: 0 4px 20px rgba(199,72,10,.04), inset 0 0 0 1px rgba(255,255,255,.6);
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-color: var(--saffron) #FFF8F0;
  scrollbar-width: thin;
  cursor: grab;
}
.state-scroll.dragging { cursor: grabbing; user-select: none; }
.state-scroll::-webkit-scrollbar { height: 8px; }
.state-scroll::-webkit-scrollbar-track {
  background: #FFF8F0;
  border-radius: 100px;
  margin: 0 16px;
}
.state-scroll::-webkit-scrollbar-thumb {
  background: linear-gradient(90deg, var(--saffron), var(--saffron-dark));
  border-radius: 100px;
}
.state-scroll::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(90deg, var(--saffron-dark), var(--saffron-deep));
}

/* Pro state card */
.state-card {
  flex: 0 0 300px !important;
  width: 300px !important;
  min-width: 300px;
  background: #fff;
  border: 1px solid #F0E5D0;
  border-radius: 12px;
  text-decoration: none;
  color: var(--text);
  transition: transform .35s cubic-bezier(.2,.7,.2,1), box-shadow .35s, border-color .35s;
  position: relative;
  overflow: hidden;
  display: flex !important;
  flex-direction: column;
  scroll-snap-align: start;
  white-space: normal;
  cursor: pointer;
}
.state-card.hidden { display: none !important; }

/* Region color stripe on left edge */
.state-card::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  background: var(--saffron);
  z-index: 2;
}
.state-card[data-region="north"]::before { background: linear-gradient(180deg, #FF9933, #FF6700); }
.state-card[data-region="south"]::before { background: linear-gradient(180deg, #2E7D32, #1B5E20); }
.state-card[data-region="east"]::before { background: linear-gradient(180deg, #1976D2, #0D47A1); }
.state-card[data-region="west"]::before { background: linear-gradient(180deg, #C62828, #8B0000); }
.state-card[data-region="central"]::before { background: linear-gradient(180deg, #FFB300, #FF6700); }
.state-card[data-region="northeast"]::before { background: linear-gradient(180deg, #6A1B9A, #4A148C); }

.state-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,.10);
  border-color: var(--saffron);
}

/* Card top: icon + state name */
.state-card-top {
  position: relative;
  padding: 22px 22px 18px 26px;
  background: linear-gradient(135deg, #FFF8F0 0%, #fff 70%);
  border-bottom: 1px solid #F5E8D0;
  display: flex !important;
  align-items: center;
  gap: 14px;
}
.state-card .state-icon {
  width: 54px; height: 54px;
  background: linear-gradient(135deg, var(--saffron), var(--saffron-dark));
  color: #fff;
  border-radius: 10px;
  display: flex !important; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 17px;
  letter-spacing: 1px;
  box-shadow: 0 8px 18px rgba(199,72,10,.3);
  transition: transform .4s cubic-bezier(.2,.7,.2,1);
}
.state-card:hover .state-icon { transform: rotate(-6deg) scale(1.08); }
.state-card .state-head { min-width: 0; flex: 1; }
.state-card .state-head strong {
  display: block;
  font-size: 16px;
  margin-bottom: 3px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.2px;
  overflow: hidden;
  text-overflow: ellipsis;
}
.state-card .state-head .hindi {
  font-family: 'Hind', sans-serif;
  font-size: 13px;
  color: var(--saffron);
  font-weight: 500;
}
.state-card .region-tag {
  position: absolute;
  top: 18px; right: 18px;
  font-family: 'Oswald', sans-serif;
  font-size: 9px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  background: rgba(255,255,255,.8);
  padding: 3px 8px;
  border-radius: 100px;
  border: 1px solid #F0E5D0;
}

/* Body: chairman row */
.state-card-body {
  padding: 18px 22px 14px 26px;
  flex: 1;
  display: flex !important;
  flex-direction: column;
}
.state-card .chair-row {
  display: flex !important;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.state-card .chair-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background: linear-gradient(135deg, #ddd, #ccc);
  border: 2px solid #fff;
  box-shadow: 0 4px 10px rgba(0,0,0,.12);
  position: relative;
}
.state-card .chair-avatar::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  box-shadow: inset 0 0 0 2px rgba(255,179,0,.3);
}
.state-card .chair-avatar img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.state-card .chair-meta { font-size: 13px; line-height: 1.3; min-width: 0; }
.state-card .chair-meta b {
  display: block;
  color: var(--text);
  font-weight: 600;
  font-size: 13.5px;
  overflow: hidden;
  text-overflow: ellipsis;
}
.state-card .chair-meta em {
  color: var(--text-muted);
  font-style: normal;
  font-family: 'Oswald', sans-serif;
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

/* Quick stats with mini progress */
.state-card .quick-stats {
  display: flex !important;
  gap: 16px;
  padding-top: 14px;
  border-top: 1px dashed #F0E5D0;
  margin-bottom: 0;
}
.state-card .qs {
  flex: 1;
  position: relative;
}
.state-card .qs strong {
  display: block;
  font-family: 'Oswald', sans-serif;
  font-size: 22px;
  color: var(--saffron-dark);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 6px;
}
.state-card .qs span {
  font-size: 10px;
  color: var(--text-muted);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-family: 'Oswald', sans-serif;
}

/* CTA button at bottom */
.state-card-foot {
  margin-top: auto;
  padding: 14px 22px 18px;
  display: flex !important;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  border-top: 1px solid #F8F2E5;
  background: #FFFBF5;
}
.state-card .visit-btn {
  display: inline-flex !important;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  background: linear-gradient(135deg, var(--saffron), var(--saffron-dark));
  color: #fff;
  font-family: 'Oswald', sans-serif;
  font-size: 11.5px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 100px;
  font-weight: 600;
  transition: transform .25s, box-shadow .25s, gap .25s;
  white-space: nowrap;
}
.state-card .visit-btn i { font-size: 10px; }
.state-card .visit-btn:hover {
  gap: 12px;
  box-shadow: 0 8px 18px rgba(199,72,10,.35);
  transform: translateY(-1px);
  color: #fff;
}
.state-card .social-mini { display: flex !important; gap: 6px; }
.state-card .social-mini a {
  color: var(--text-muted);
  font-size: 11px;
  width: 28px; height: 28px;
  display: flex !important;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #fff;
  border: 1px solid #F0E5D0;
  transition: all .25s;
}
.state-card .social-mini a:hover {
  background: var(--saffron);
  color: #fff;
  border-color: var(--saffron);
  transform: translateY(-2px);
}

/* Scroll arrow buttons (left/right) */
.scroll-arrows {
  position: relative;
  margin-bottom: 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.scroll-arrows .arrow-label {
  font-family: 'Oswald', sans-serif;
  font-size: 12px;
  letter-spacing: 2px;
  color: var(--text-muted);
  text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 8px;
}
.scroll-arrows .arrow-label b {
  color: var(--saffron);
  font-weight: 700;
}
.scroll-arrows .arrow-btns { display: flex; gap: 8px; }
.scroll-arrows button {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--saffron);
  cursor: pointer;
  font-size: 14px;
  display: inline-flex; align-items: center; justify-content: center;
  transition: all .25s;
}
.scroll-arrows button:hover {
  background: var(--saffron);
  color: #fff;
  border-color: var(--saffron);
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(199,72,10,.3);
}
.scroll-arrows button:disabled {
  opacity: .35;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
  background: #fff;
  color: var(--text-muted);
  border-color: var(--line);
}

/* Scroll progress bar (under arrows) */
.scroll-progress-bar {
  height: 3px;
  background: var(--line);
  border-radius: 100px;
  overflow: hidden;
  margin-bottom: 14px;
  position: relative;
}
.scroll-progress-bar .bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--saffron), var(--gold));
  width: 0%;
  transition: width .15s linear;
  border-radius: 100px;
}

.scroll-hint {
  position: absolute;
  bottom: 30px; right: 20px;
  display: flex; align-items: center; gap: 6px;
  font-family: 'Oswald', sans-serif;
  font-size: 11px;
  letter-spacing: 1.5px;
  color: var(--saffron);
  text-transform: uppercase;
  z-index: 5;
  pointer-events: none;
  background: rgba(255,255,255,.9);
  padding: 6px 12px;
  border-radius: 100px;
  border: 1px solid var(--line);
  box-shadow: 0 4px 12px rgba(0,0,0,.06);
  transition: opacity .3s;
}
.scroll-hint i {
  animation: scrollHintRight 1.6s ease-in-out infinite;
}
@keyframes scrollHintRight {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(5px); }
}
/* No results state (inside flex .state-scroll) */
.no-results {
  flex: 1 1 100%;
  text-align: center;
  padding: 60px 20px;
  color: var(--text-muted);
  width: 100%;
  min-width: 100%;
}
.no-results i { font-size: 48px; color: var(--saffron); opacity: .5; margin-bottom: 14px; }
.no-results h4 { margin: 0 0 6px; color: var(--text); }

/* ---------- State Spotlight ---------- */
.state-spotlight {
  background: linear-gradient(135deg, #002F6C 0%, #C7480A 100%);
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  margin: 60px 0;
  color: #fff;
  min-height: 320px;
}
.state-spotlight::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 30%, rgba(255,179,0,.3), transparent 50%);
  pointer-events: none;
}
.spot-img {
  position: relative;
  overflow: hidden;
}
.spot-img img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  filter: brightness(.9);
}
.spot-img::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent 60%, #002F6C);
}
.spot-content {
  padding: 50px 50px;
  display: flex; flex-direction: column; justify-content: center;
  position: relative;
  z-index: 1;
}
.spot-content .badge {
  display: inline-block;
  background: rgba(255,179,0,.2);
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 5px 14px;
  border-radius: 100px;
  font-family: 'Oswald', sans-serif;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
  align-self: flex-start;
}
.spot-content h2 {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(28px, 3.5vw, 40px);
  margin-bottom: 12px;
  color: #fff;
}
.spot-content .hindi-sub {
  font-family: 'Hind', sans-serif;
  color: var(--gold);
  font-size: 16px;
  margin-bottom: 18px;
}
.spot-content p { color: rgba(255,255,255,.85); margin-bottom: 22px; line-height: 1.7; }
.spot-stats {
  display: flex; gap: 26px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,.2);
  margin-bottom: 24px;
}
.spot-stats div strong {
  display: block;
  font-family: 'Oswald', sans-serif;
  font-size: 24px;
  color: var(--gold);
}
.spot-stats div span {
  font-size: 11px;
  letter-spacing: 1.5px;
  color: rgba(255,255,255,.75);
}

/* ---------- Office Contact Callout ---------- */
.office-callout {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 40px;
  margin-top: 50px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.office-callout::before {
  content: '';
  position: absolute;
  right: -100px; top: -100px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(255,179,0,.15), transparent 70%);
  pointer-events: none;
}
.office-callout h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 26px;
  color: var(--navy);
  margin-bottom: 10px;
}
.office-callout p {
  color: var(--text-muted);
  margin-bottom: 18px;
  font-size: 14.5px;
  line-height: 1.6;
}
.office-callout .ctas {
  display: flex; gap: 12px;
  flex-wrap: wrap;
}
.office-callout .ctas .btn {
  position: relative;
  z-index: 1;
}
.office-info {
  background: linear-gradient(135deg, #FFF8F0, #FFFBF2);
  border-radius: 8px;
  padding: 24px;
  border-left: 4px solid var(--saffron);
}
.office-info .oi-line {
  display: flex; gap: 12px;
  margin-bottom: 12px;
  align-items: flex-start;
}
.office-info .oi-line:last-child { margin-bottom: 0; }
.office-info .oi-line i {
  color: var(--saffron);
  margin-top: 3px;
  width: 16px;
}
.office-info .oi-line strong {
  display: block;
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 2px;
  font-family: 'Oswald', sans-serif;
}
.office-info .oi-line span { color: var(--text); font-size: 14px; }

@media (max-width: 960px) {
  .state-stats-bar { grid-template-columns: repeat(2, 1fr); }
  .state-stat { border-right: 1px solid rgba(255,255,255,.12); }
  .state-stat:nth-child(2) { border-right: none; }
  .state-stat:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.12); }
  .region-tools { flex-direction: column; align-items: stretch; }
  .state-search { min-width: auto; }
  .state-spotlight { grid-template-columns: 1fr; }
  .spot-img { aspect-ratio: 16/9; }
  .spot-img::after { background: linear-gradient(180deg, transparent 60%, #002F6C); }
  .office-callout { grid-template-columns: 1fr; gap: 24px; padding: 28px; }
}

@media (max-width: 960px) {
  .state-select-row { grid-template-columns: 1fr; gap: 30px; min-height: auto; }
  .india-map-svg { max-width: 100%; margin: 0 auto; }
}
@media (max-width: 560px) {
  .state-select-row .pick h2 { font-size: 28px; }
  .state-card { flex: 0 0 240px; width: 240px; }
}

/* =====================================================
   PREMIUM EVENTS / CALENDAR SECTION
   ===================================================== */
.events-premium-section {
  padding: 90px 0;
  background:
    linear-gradient(180deg, #fff 0%, #fff8eb 100%),
    radial-gradient(ellipse at 80% 20%, rgba(255,103,0,.04) 0%, transparent 50%);
  position: relative;
  overflow: hidden;
}
.events-premium-section::before {
  content: '';
  position: absolute; inset: 0;
  background:
    repeating-linear-gradient(45deg, rgba(255,103,0,.015) 0px, rgba(255,103,0,.015) 1px, transparent 1px, transparent 80px);
  pointer-events: none;
}

/* Featured event hero card */
.event-featured {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 0;
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 16px 50px rgba(255,103,0,.12);
  margin: 50px 0 50px;
  border: 1px solid rgba(255,103,0,.15);
  position: relative;
  z-index: 2;
  transition: transform .4s cubic-bezier(.215,.61,.355,1), box-shadow .4s;
}
.event-featured:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 70px rgba(255,103,0,.25);
}
.event-featured-img {
  position: relative;
  min-height: 320px;
  overflow: hidden;
}
.event-featured-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  position: absolute; inset: 0;
  transition: transform .8s cubic-bezier(.215,.61,.355,1);
}
.event-featured:hover .event-featured-img img {
  transform: scale(1.08);
}
.event-featured-img::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,.15) 0%, rgba(0,0,0,0) 50%);
}
.event-featured-tag {
  position: absolute;
  top: 18px; left: 18px;
  background: var(--saffron);
  color: #fff;
  font-family: 'Oswald', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  padding: 6px 16px;
  border-radius: 100px;
  box-shadow: 0 4px 14px rgba(255,103,0,.4);
  z-index: 2;
  animation: featured-pulse 2.5s ease-in-out infinite;
}
@keyframes featured-pulse {
  0%, 100% { transform: scale(1); }
  50%      { transform: scale(1.05); }
}
.event-featured-body {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 28px;
  padding: 38px;
  align-items: start;
}
.event-featured-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: linear-gradient(135deg, var(--saffron) 0%, var(--saffron-dark) 100%);
  color: #fff;
  border-radius: 10px;
  padding: 18px 8px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(255,103,0,.3);
  font-family: 'Oswald', sans-serif;
  position: sticky;
  top: 100px;
}
.ef-day {
  font-size: 44px;
  font-weight: 700;
  line-height: 1;
  display: block;
}
.ef-month {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 2px;
  margin-top: 4px;
  display: block;
}
.ef-year {
  font-size: 13px;
  font-weight: 400;
  opacity: .85;
  margin-top: 6px;
  display: block;
}
.event-featured-content h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 28px;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 12px;
}
.event-featured-content p {
  color: #555;
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 18px;
}
.event-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 22px;
  font-size: 13px;
  color: #666;
}
.event-meta-row i { color: var(--saffron); margin-right: 5px; }
.event-featured-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* Grid of smaller event cards */
.events-premium-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
  z-index: 2;
}
.event-pcard {
  background: #fff;
  border-radius: 10px;
  padding: 24px;
  border: 1px solid var(--line);
  border-left: 4px solid var(--saffron);
  box-shadow: 0 4px 16px rgba(0,0,0,.06);
  transition: transform .35s cubic-bezier(.215,.61,.355,1), box-shadow .35s, border-left-color .35s;
  position: relative;
  overflow: hidden;
}
.event-pcard::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 80px; height: 80px;
  background: radial-gradient(circle at top right, rgba(255,103,0,.08) 0%, transparent 70%);
  pointer-events: none;
}
.event-pcard:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 42px rgba(255,103,0,.18);
  border-left-color: var(--saffron-deep);
  border-left-width: 6px;
}
.event-pcard-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 16px;
}
.event-pcard-date {
  background: var(--navy);
  color: #fff;
  border-radius: 8px;
  padding: 10px 14px;
  text-align: center;
  font-family: 'Oswald', sans-serif;
  flex-shrink: 0;
  min-width: 64px;
}
.event-pcard-date strong {
  display: block;
  font-size: 26px;
  font-weight: 700;
  line-height: 1;
}
.event-pcard-date span {
  display: block;
  font-size: 11px;
  letter-spacing: 1.5px;
  margin-top: 4px;
  color: #ffd166;
}
.event-pcard-cat {
  background: var(--saffron);
  color: #fff;
  font-family: 'Oswald', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.2px;
  padding: 5px 10px;
  border-radius: 3px;
  align-self: flex-start;
  text-transform: uppercase;
}
.event-pcard-cat.cat-training { background: #002F6C; }
.event-pcard-cat.cat-mahila   { background: #c2185b; }
.event-pcard-cat.cat-rashtra  { background: var(--saffron-deep); }
.event-pcard-cat.cat-campaign { background: var(--green); }
.event-pcard-cat.cat-webinar  { background: #6a1b9a; }
.event-pcard-cat.cat-seva     { background: #00838f; }

.event-pcard h4 {
  font-family: 'Oswald', sans-serif;
  font-size: 18px;
  color: var(--navy);
  line-height: 1.3;
  margin-bottom: 14px;
  transition: color .25s;
}
.event-pcard:hover h4 { color: var(--saffron); }
.event-pcard-meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 12px;
  color: #777;
  margin-bottom: 16px;
}
.event-pcard-meta i {
  color: var(--saffron);
  margin-right: 5px;
  width: 14px;
}
.event-pcard-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--saffron);
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: gap .25s, color .25s;
  position: relative;
  z-index: 2;
}
.event-pcard-cta:hover {
  gap: 12px;
  color: var(--saffron-deep);
}
.events-cta-row {
  text-align: center;
  margin-top: 48px;
}

/* Responsive */
@media (max-width: 1024px) {
  .events-premium-grid { grid-template-columns: repeat(2, 1fr); }
  .event-featured { grid-template-columns: 1fr; }
  .event-featured-img { min-height: 240px; }
  .event-featured-content h3 { font-size: 24px; }
}
@media (max-width: 640px) {
  .events-premium-section { padding: 60px 0; }
  .events-premium-grid { grid-template-columns: 1fr; }
  .event-featured-body { grid-template-columns: 80px 1fr; gap: 18px; padding: 24px; }
  .ef-day { font-size: 32px; }
  .event-featured-actions { flex-direction: column; align-items: stretch; }
  .event-featured-actions .btn { justify-content: center; }
}

/* =====================================================
   PREMIUM PHOTO GALLERY & VIDEO HIGHLIGHTS SECTIONS
   ===================================================== */
.media-section { padding: 80px 0; }
.photo-gallery-section { background: linear-gradient(180deg, #fff 0%, #faf8f3 100%); }
.video-highlights-section {
  background: linear-gradient(180deg, #1a1a2e 0%, #0f0f1e 100%);
  position: relative;
}
.video-highlights-section::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 20% 30%, rgba(255,103,0,.08) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 70%, rgba(255,179,0,.06) 0%, transparent 50%);
  pointer-events: none;
}
.video-highlights-section .container { position: relative; z-index: 2; }
.video-highlights-section .section-head h2,
.video-highlights-section .section-head .eyebrow { color: #fff; }
.video-highlights-section .section-head .eyebrow { color: #ffd166; }
.video-highlights-section .section-head h2 span { color: var(--saffron); }
.video-highlights-section .section-head p { color: #b8b8d4; }

.media-cta {
  text-align: center;
  margin-top: 44px;
}

/* ---- PHOTO GALLERY GRID ---- */
.premium-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 50px;
}
.premium-gallery-item {
  position: relative;
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 10px;
  cursor: pointer;
  background: #e8e8e8;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  transition: transform .45s cubic-bezier(.215,.61,.355,1), box-shadow .45s;
  will-change: transform;
}
.premium-gallery-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 44px rgba(255,103,0,0.22);
}
.premium-gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .8s cubic-bezier(.215,.61,.355,1), filter .4s;
}
.premium-gallery-item:hover img {
  transform: scale(1.12);
  filter: brightness(.92) saturate(1.1);
}
.premium-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.85) 0%, rgba(0,0,0,.4) 40%, rgba(0,0,0,0) 70%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  padding: 18px 16px;
  opacity: 0;
  transition: opacity .4s ease;
}
.premium-gallery-item:hover .premium-overlay { opacity: 1; }
.overlay-icon {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%) scale(.5);
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--saffron);
  color: #fff;
  font-size: 20px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(255,103,0,.5);
  opacity: 0;
  transition: all .4s cubic-bezier(.215,.61,.355,1) .1s;
}
.premium-gallery-item:hover .overlay-icon {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}
.overlay-title {
  color: #fff;
  font-family: 'Oswald', sans-serif;
  font-size: 15px;
  text-align: center;
  letter-spacing: .3px;
  transform: translateY(20px);
  opacity: 0;
  transition: all .4s ease .2s;
}
.premium-gallery-item:hover .overlay-title {
  transform: translateY(0);
  opacity: 1;
}

/* ---- VIDEO GRID ---- */
.premium-video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}
.premium-video-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(0,0,0,.18);
  transition: transform .45s cubic-bezier(.215,.61,.355,1), box-shadow .45s;
  display: block;
  color: inherit;
  position: relative;
}
.premium-video-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 24px 56px rgba(255,103,0,.32);
}
.video-thumb {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #111;
}
.video-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(.78) saturate(1.05);
  transition: transform .8s cubic-bezier(.215,.61,.355,1), filter .4s;
}
.premium-video-card:hover .video-thumb img {
  transform: scale(1.1);
  filter: brightness(.62) saturate(1.15);
}
.video-thumb::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 50%, rgba(0,0,0,.6) 100%);
  pointer-events: none;
}
.video-category {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--saffron);
  color: #fff;
  font-family: 'Oswald', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  padding: 5px 12px;
  border-radius: 3px;
  z-index: 3;
  text-transform: uppercase;
}
.video-duration {
  position: absolute;
  bottom: 14px; right: 14px;
  background: rgba(0,0,0,.75);
  backdrop-filter: blur(4px);
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  padding: 4px 10px;
  border-radius: 4px;
  z-index: 3;
}
.video-duration i { font-size: 11px; margin-right: 4px; opacity: .9; }
.video-play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 72px; height: 72px;
  border-radius: 50%;
  background: rgba(255,103,0,.95);
  color: #fff;
  font-size: 22px;
  border: 3px solid rgba(255,255,255,.95);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  z-index: 4;
  padding-left: 6px;
  animation: pulse-play 2.2s ease-in-out infinite;
  transition: all .3s ease;
  box-shadow: 0 8px 32px rgba(255,103,0,.5);
}
.premium-video-card:hover .video-play {
  transform: translate(-50%, -50%) scale(1.18);
  background: var(--saffron-dark);
  animation: none;
}
@keyframes pulse-play {
  0%, 100% {
    box-shadow:
      0 8px 32px rgba(255,103,0,.5),
      0 0 0 0 rgba(255,103,0,.5);
  }
  60% {
    box-shadow:
      0 8px 32px rgba(255,103,0,.5),
      0 0 0 22px rgba(255,103,0,0);
  }
}
.video-info {
  padding: 22px 22px 24px;
}
.video-info h4 {
  font-family: 'Oswald', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 8px;
  line-height: 1.3;
  transition: color .25s;
}
.premium-video-card:hover .video-info h4 { color: var(--saffron); }
.video-info p {
  color: #666;
  font-size: 13px;
  line-height: 1.55;
}

/* Scroll-reveal stagger */
.premium-gallery-item.reveal,
.premium-video-card.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s ease, transform .7s cubic-bezier(.215,.61,.355,1);
}
.premium-gallery-item.reveal.visible,
.premium-video-card.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
/* Stagger delay using nth-child */
.premium-gallery-grid .reveal:nth-child(1) { transition-delay: 0s; }
.premium-gallery-grid .reveal:nth-child(2) { transition-delay: .05s; }
.premium-gallery-grid .reveal:nth-child(3) { transition-delay: .1s; }
.premium-gallery-grid .reveal:nth-child(4) { transition-delay: .15s; }
.premium-gallery-grid .reveal:nth-child(5) { transition-delay: .2s; }
.premium-gallery-grid .reveal:nth-child(6) { transition-delay: .25s; }
.premium-gallery-grid .reveal:nth-child(7) { transition-delay: .3s; }
.premium-gallery-grid .reveal:nth-child(8) { transition-delay: .35s; }
.premium-video-grid .reveal:nth-child(1) { transition-delay: 0s; }
.premium-video-grid .reveal:nth-child(2) { transition-delay: .1s; }
.premium-video-grid .reveal:nth-child(3) { transition-delay: .2s; }
.premium-video-grid .reveal:nth-child(4) { transition-delay: .15s; }
.premium-video-grid .reveal:nth-child(5) { transition-delay: .25s; }
.premium-video-grid .reveal:nth-child(6) { transition-delay: .35s; }

/* Responsive */
@media (max-width: 1024px) {
  .premium-gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .premium-video-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .premium-gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .premium-video-grid { grid-template-columns: 1fr; gap: 22px; }
  .media-section { padding: 60px 0; }
  .video-play { width: 60px; height: 60px; font-size: 18px; }
}

/* =====================================================
   NEWS & PRESS RELEASES — MAGAZINE 3-COLUMN GRID
   ===================================================== */
.news-mag-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}
.news-mag-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
  border: 1px solid var(--line);
  transition: transform .35s, box-shadow .35s, border-color .35s;
  display: flex;
  flex-direction: column;
}
.news-mag-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(255,103,0,0.18);
  border-color: var(--saffron);
}
.news-mag-img-link {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: #f5f5f5;
}
.news-mag-img-link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.news-mag-card:hover .news-mag-img-link img {
  transform: scale(1.08);
}
.news-mag-cat {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--saffron);
  color: #fff;
  font-family: 'Oswald', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 3px;
  z-index: 2;
}
.news-mag-cat.cat-press    { background: #002F6C; }
.news-mag-cat.cat-event    { background: var(--saffron); }
.news-mag-cat.cat-campaign { background: var(--green); }
.news-mag-body {
  padding: 22px 22px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.news-mag-meta {
  display: flex;
  gap: 18px;
  font-size: 12px;
  color: #888;
  margin-bottom: 12px;
}
.news-mag-meta i {
  color: var(--saffron);
  margin-right: 4px;
}
.news-mag-card h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 10px;
}
.news-mag-card h3 a {
  color: #1a1a1a;
  transition: color .25s;
}
.news-mag-card:hover h3 a {
  color: var(--saffron);
}
.news-mag-card p {
  color: #555;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 16px;
  flex: 1;
}
.news-mag-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--saffron);
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: gap .25s, color .25s;
}
.news-mag-link:hover {
  gap: 12px;
  color: var(--saffron-deep);
}
.news-mag-cta {
  text-align: center;
  margin-top: 36px;
}

@media (max-width: 1024px) {
  .news-mag-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
}
@media (max-width: 640px) {
  .news-mag-grid { grid-template-columns: 1fr; }
}

/* =====================================================
   ORGANIZATION HIERARCHY SECTION
   ===================================================== */
.hierarchy-section {
  padding: 80px 0;
  background:
    linear-gradient(180deg, #fff 0%, #fffaf0 60%, #fff5e6 100%),
    repeating-linear-gradient(45deg, rgba(255,103,0,.02) 0 2px, transparent 2px 60px);
  position: relative;
  overflow: hidden;
}
.hierarchy-flow {
  max-width: 760px;
  margin: 50px auto 36px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.h-tier {
  display: grid;
  grid-template-columns: 56px 76px 1fr;
  gap: 22px;
  background: #fff;
  border-radius: 10px;
  padding: 22px 28px;
  border: 1px solid var(--line);
  border-left: 5px solid var(--saffron);
  align-items: center;
  box-shadow: 0 4px 14px rgba(0,0,0,0.05);
  transition: all .3s;
  position: relative;
}
.h-tier:hover {
  transform: translateX(6px);
  box-shadow: 0 10px 28px rgba(255,103,0,0.18);
}
.h-badge {
  background: var(--saffron);
  color: #fff;
  width: 48px; height: 48px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Oswald', sans-serif;
  font-weight: 700; font-size: 16px;
  letter-spacing: 0.5px;
}
.h-icon {
  width: 70px; height: 70px;
  background: rgba(255,103,0,0.08);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 30px;
  color: var(--saffron);
}
.h-content h4 {
  font-family: 'Oswald', sans-serif;
  font-size: 22px;
  color: var(--navy);
  margin-bottom: 2px;
  line-height: 1.2;
}
.h-hindi {
  display: inline-block;
  font-family: 'Hind', sans-serif;
  font-size: 14px;
  color: var(--saffron);
  font-weight: 500;
  margin-bottom: 8px;
}
.h-content p {
  color: #555;
  font-size: 14px;
  line-height: 1.55;
  margin-bottom: 10px;
}
.h-stat {
  display: inline-block;
  background: linear-gradient(135deg, var(--navy), #001f4d);
  color: #fff;
  padding: 5px 14px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.5px;
}
.h-stat strong {
  font-family: 'Oswald', sans-serif;
  font-size: 16px;
  color: #ffd166;
  margin-right: 6px;
}
.h-arrow {
  text-align: center;
  padding: 4px 0;
  color: var(--saffron);
  font-size: 22px;
  animation: pulse-down 1.6s ease-in-out infinite;
}
@keyframes pulse-down {
  0%, 100% { transform: translateY(-2px); opacity: 0.65; }
  50% { transform: translateY(4px); opacity: 1; }
}

/* Tier color variants — visual hierarchy from navy (top) to green (bottom) */
.h-tier.t1 { border-left-color: #002F6C; }
.h-tier.t1 .h-badge { background: #002F6C; }
.h-tier.t1 .h-icon { background: rgba(0,47,108,0.08); color: #002F6C; }

.h-tier.t2 { border-left-color: var(--saffron-deep); }
.h-tier.t2 .h-badge { background: var(--saffron-deep); }
.h-tier.t2 .h-icon { background: rgba(199,72,10,0.1); color: var(--saffron-deep); }

.h-tier.t3 { border-left-color: var(--saffron); }
.h-tier.t3 .h-badge { background: var(--saffron); }
.h-tier.t3 .h-icon { background: rgba(255,103,0,0.1); color: var(--saffron); }

.h-tier.t4 { border-left-color: var(--gold); }
.h-tier.t4 .h-badge { background: var(--gold); color: #2a1a05; }
.h-tier.t4 .h-icon { background: rgba(255,179,0,0.12); color: #c08000; }

.h-tier.t5 { border-left-color: var(--green); }
.h-tier.t5 .h-badge { background: var(--green); }
.h-tier.t5 .h-icon { background: rgba(19,136,8,0.1); color: var(--green); }

.hierarchy-cta {
  display: flex; gap: 14px; justify-content: center; flex-wrap: wrap;
  margin-top: 32px;
}

@media (max-width: 700px) {
  .h-tier { grid-template-columns: 44px 56px 1fr; gap: 14px; padding: 18px 18px; }
  .h-badge { width: 40px; height: 40px; font-size: 14px; }
  .h-icon { width: 54px; height: 54px; font-size: 22px; }
  .h-content h4 { font-size: 18px; }
  .h-content p { font-size: 13px; }
}

/* =====================================================
   OUR FOOTPRINTS SECTION (BJP-led NDA map)
   ===================================================== */
.footprints-section {
  position: relative;
  padding: 90px 0;
  background: linear-gradient(135deg, #f4d35e 0%, #f6c247 35%, #f0a020 100%);
  overflow: hidden;
}
.footprints-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 15% 40%, rgba(255,255,255,.55) 0%, transparent 55%),
    radial-gradient(ellipse at 85% 80%, rgba(255,230,180,.4) 0%, transparent 50%),
    repeating-linear-gradient(45deg, rgba(255,255,255,.03) 0px, rgba(255,255,255,.03) 2px, transparent 2px, transparent 80px);
  pointer-events: none;
}
.footprints-inner {
  display: grid; grid-template-columns: 1.05fr 1fr; gap: 50px; align-items: center;
  position: relative; z-index: 2;
}
.footprints-left .eyebrow.dark {
  color: #6b3a1a; font-weight: 600;
}
.footprints-title {
  font-family: 'Oswald', sans-serif;
  font-size: 68px; font-weight: 700; line-height: 1.05;
  color: #002F6C; letter-spacing: 1px; margin: 10px 0 14px;
}
.footprints-title span { color: #002F6C; }
.footprints-sub {
  font-family: 'Oswald', sans-serif;
  font-size: 30px; font-weight: 500; color: #1a1a2e;
  margin-bottom: 32px;
}
.footprints-sub strong { color: #002F6C; }
.footprints-stats {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 30px; max-width: 460px; margin-bottom: 36px;
}
.fp-stat .fp-label {
  display: block; font-size: 15px; font-weight: 700;
  color: #1a1a2e; letter-spacing: 1.5px; margin-bottom: 4px;
}
.fp-stat strong {
  display: block;
  font-family: 'Oswald', sans-serif; font-size: 50px; font-weight: 600;
  color: #6b3a1a; line-height: 1;
}
.fp-stat strong small { font-size: 32px; color: #8a4a25; font-weight: 500; }

.state-info-card {
  background: rgba(255,255,255,0.92);
  border-radius: 6px;
  padding: 22px 26px;
  box-shadow: 0 12px 36px rgba(0,0,0,0.12);
  max-width: 560px;
  border-left: 4px solid var(--saffron);
}
.sic-top {
  display: flex; gap: 18px; align-items: center;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.sic-state-icon {
  width: 78px; height: 78px; flex-shrink: 0;
  background: linear-gradient(135deg, #3a2515, #5a3a25);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  color: #f4d35e;
  font-family: 'Oswald', sans-serif;
  font-size: 30px; font-weight: 700; letter-spacing: 1px;
}
.sic-state-icon span { line-height: 1; }

/* Member photo (replaces the abbreviation box when a state has a member) */
.sic-member-photo {
  position: relative;
  width: 90px; height: 90px; flex-shrink: 0;
  border-radius: 8px;
  overflow: hidden;
  border: 3px solid var(--saffron);
  box-shadow: 0 6px 18px rgba(255,103,0,0.25);
  background: #f5f5f5;
}
.sic-member-photo img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
/* Level badge (NATIONAL / STATE / DISTRICT) on member photo */
.sic-level-badge {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: rgba(0,47,108,0.92);
  color: #ffd166;
  font-family: 'Oswald', sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-align: center;
  padding: 3px 2px;
  text-transform: uppercase;
}
.sic-level-badge.level-national { background: #002F6C; color: #ffd166; }
.sic-level-badge.level-state    { background: var(--saffron-deep); color: #fff; }
.sic-level-badge.level-district { background: var(--green); color: #fff; }

/* Pagination — only shown when state has 2+ members */
.sic-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 14px 0 4px;
  margin-top: 10px;
  border-top: 1px solid rgba(0,0,0,0.06);
}
.sic-page-btn {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: rgba(255,103,0,0.12);
  color: var(--saffron-deep);
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  transition: all .2s;
}
.sic-page-btn:hover {
  background: var(--saffron);
  color: #fff;
  transform: scale(1.08);
}
.sic-page-counter {
  font-family: 'Oswald', sans-serif;
  font-size: 13px;
  letter-spacing: 0.5px;
  color: #5a3a1a;
  min-width: 110px;
  text-align: center;
}
.sic-pagination[hidden] { display: none; }
.sic-member-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 6px;
  font-size: 12px;
  color: #555;
}
.sic-member-meta i { color: var(--saffron); margin-right: 4px; }
.sic-member-meta .sic-id {
  background: #002F6C;
  color: #ffd166;
  padding: 3px 10px;
  border-radius: 3px;
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  letter-spacing: 0.5px;
}
.sic-member-meta .sic-id i { color: #ffd166; }

/* Empty state — when a state has no member registered yet */
.sic-empty {
  text-align: center;
  padding: 14px 8px;
}
.sic-empty i {
  font-size: 36px;
  color: var(--saffron);
  margin-bottom: 12px;
  display: block;
}
.sic-empty h4 {
  font-family: 'Oswald', sans-serif;
  font-size: 18px;
  color: var(--navy);
  margin-bottom: 8px;
}
.sic-empty h4 span { color: var(--saffron); }
.sic-empty p {
  color: #666;
  font-size: 13px;
  line-height: 1.5;
  margin-bottom: 16px;
}
.sic-empty .sic-cta { display: inline-flex; }
.member-view[hidden] { display: none; }
.sic-leader h4 {
  font-size: 22px; color: #002F6C;
  margin-bottom: 4px; font-family: 'Oswald', sans-serif;
}
.sic-leader p { color: #555; font-size: 14px; margin-bottom: 4px; }
.sic-url { color: var(--saffron); font-size: 13px; word-break: break-all; }
.sic-url:hover { color: var(--saffron-dark); text-decoration: underline; }
.sic-stats {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 8px; padding: 18px 0;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.sic-stats > div { text-align: center; }
.sic-stats span {
  display: block; font-size: 11px; color: #777;
  line-height: 1.3; margin-bottom: 6px; font-weight: 500;
}
.sic-stats strong {
  font-family: 'Oswald', sans-serif;
  font-size: 28px; color: #6b3a1a;
}
.sic-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 18px; flex-wrap: wrap; gap: 14px;
}
.sic-socials a {
  display: inline-flex; width: 30px; height: 30px;
  background: rgba(0,0,0,0.05); border-radius: 50%;
  align-items: center; justify-content: center;
  color: #555; margin-right: 6px;
  font-size: 12px; transition: all .25s;
}
.sic-socials a:hover { background: var(--saffron); color: #fff; transform: translateY(-2px); }
.sic-cta {
  background: var(--saffron); color: #fff;
  padding: 11px 22px; border-radius: 4px;
  font-weight: 600; font-size: 13px; letter-spacing: .3px;
  display: inline-flex; align-items: center; gap: 8px;
  transition: all .25s;
}
.sic-cta:hover { background: var(--saffron-dark); transform: translateY(-2px); box-shadow: 0 6px 18px rgba(255,103,0,.35); }

.footprints-right .india-map-svg { max-width: 580px; margin-left: auto; }
.footprints-right .india-map-svg svg path {
  fill: #ffffff; stroke: #b8b8b8; stroke-width: 0.8;
  transition: fill .25s, filter .25s, stroke-width .25s;
}
.footprints-right .india-map-svg svg path.active { fill: var(--saffron); stroke: #fff; }
.footprints-right .india-map-svg svg path.active:hover { fill: var(--saffron-dark); filter: brightness(1.08); }
.footprints-right .india-map-svg svg path.selected {
  fill: var(--saffron-deep) !important;
  stroke: #ffd166;
  stroke-width: 2;
  filter: drop-shadow(0 0 8px rgba(199,72,10,.6));
}
.footprints-right .india-map-svg svg path:focus { outline: none; }

/* Hint card */
.footprints-hint {
  font-size: 14px; color: #5a3a1a;
  margin: 0 0 22px;
  padding: 10px 16px;
  background: rgba(255,255,255,0.55);
  border-left: 3px solid var(--saffron);
  border-radius: 4px;
  max-width: 560px;
  line-height: 1.5;
}
.footprints-hint i { color: var(--saffron); margin-right: 6px; }
.saffron-pill {
  background: var(--saffron); color: #fff;
  padding: 2px 10px; border-radius: 12px;
  font-weight: 600; font-size: 12px;
  display: inline-block;
}

/* View all states CTA */
.footprints-allstates {
  display: inline-flex; align-items: center; gap: 10px;
  margin-top: 22px;
  padding: 12px 22px;
  background: rgba(0,47,108,0.9);
  color: #fff !important;
  border-radius: 4px;
  font-weight: 600; font-size: 14px;
  transition: all .25s;
}
.footprints-allstates:hover {
  background: #002F6C;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0,47,108,.35);
}
.footprints-allstates i:first-child { color: #ffd166; }

@media (max-width: 1024px) {
  .footprints-title { font-size: 54px; }
  .footprints-sub { font-size: 26px; }
}
@media (max-width: 900px) {
  .footprints-inner { grid-template-columns: 1fr; gap: 40px; }
  .footprints-right .india-map-svg { margin: 0 auto; max-width: 420px; }
  .footprints-title { font-size: 44px; }
  .footprints-sub { font-size: 22px; }
  .fp-stat strong { font-size: 40px; }
  .fp-stat strong small { font-size: 24px; }
}
@media (max-width: 560px) {
  .sic-stats strong { font-size: 22px; }
  .sic-bottom { flex-direction: column; align-items: stretch; }
  .sic-cta { justify-content: center; }
}

/* =====================================================
   ANNOUNCEMENT MARQUEE (top red bar)
   ===================================================== */
/* Premium saffron/orange marquee bar with text highlights */
.announce-bar {
  background:
    linear-gradient(90deg, rgba(255,255,255,.06) 0%, rgba(255,255,255,0) 50%, rgba(255,255,255,.06) 100%),
    linear-gradient(90deg, #d96b1b 0%, #ff6700 25%, #ff8c2e 50%, #ff6700 75%, #d96b1b 100%);
  color: #fff;
  overflow: hidden;
  white-space: nowrap;
  padding: 11px 0;
  font-size: 14px;
  font-weight: 500;
  font-family: 'Hind', 'Roboto', sans-serif;
  position: relative;
  z-index: 200;
  border-top: 2px solid #ffb300;
  border-bottom: 2px solid #c7480a;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.18),
    inset 0 -1px 0 rgba(0,0,0,.15),
    0 4px 14px rgba(199,72,10,.25);
  text-shadow: 0 1px 2px rgba(0,0,0,.25);
}
/* Soft shimmer running across the bar */
.announce-bar::before {
  content: '';
  position: absolute;
  top: 0; left: -30%;
  width: 30%;
  height: 100%;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,.18) 50%, transparent 100%);
  animation: announce-shimmer 6s linear infinite;
  pointer-events: none;
}
@keyframes announce-shimmer {
  0%   { left: -30%; }
  100% { left: 130%; }
}
.announce-bar .marquee-inner {
  display: inline-block;
  padding-left: 100%;
  animation: announce-scroll 120s linear infinite;
  position: relative;
  z-index: 2;
}
.announce-bar:hover .marquee-inner { animation-play-state: paused; }

/* Pro text highlights — dates in bright gold pill, names emphasized */
.announce-bar strong {
  font-weight: 700;
  color: #ffe066;
  text-shadow: 0 1px 0 rgba(120,40,0,.5);
  letter-spacing: .3px;
}
/* Date strongs get an extra bold treatment */
.announce-bar strong:first-letter { font-size: 1.05em; }

.announce-bar a {
  color: #ffec99;
  text-decoration: none;
  font-weight: 600;
  border-bottom: 1px dashed rgba(255,236,153,.6);
  padding-bottom: 1px;
  transition: all .2s;
}
.announce-bar a:hover {
  color: #fff;
  border-bottom-color: #fff;
}
.announce-bar .sep {
  display: inline-block;
  margin: 0 14px;
  color: #ffd166;
  font-weight: 700;
  opacity: .9;
  transform: scale(1.4);
}
@keyframes announce-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}

/* =====================================================
   FOOTER CONTACT INFO STRIP (4-column)
   ===================================================== */
.footer-info {
  border-top: 1px solid rgba(255,255,255,.08);
  background: rgba(0,0,0,.18);
  padding: 22px 0;
}
.footer-info-grid {
  display: grid;
  grid-template-columns: 1.6fr 1.3fr 1.2fr;
  gap: 24px;
  color: #B8B8C5;
  font-size: 14px;
  align-items: center;
}
.gmm-credit { color: #ffd166; }
.gmm-credit:hover { color: var(--saffron); }
.footer-info-grid > div { text-align: center; }
.footer-info-grid i { color: var(--saffron); margin-right: 8px; }
.footer-info-grid a { color: #B8B8C5; }
.footer-info-grid a:hover { color: var(--saffron); }
@media (max-width: 900px) {
  .footer-info-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
}
@media (max-width: 560px) {
  .footer-info-grid { grid-template-columns: 1fr; gap: 12px; }
  .footer-info-grid > div { text-align: left; }
}

