:root {
  --green: #0a4a2f;
  --gold: #c8941a;
  --light-gold: #f0c050;
  --orange: #e07b1a;
  --cream: #fdf8f0;
  --dark: #0d1a10;
  --text: #2c2c2c;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Lato', sans-serif;
  color: var(--text);
  background: #fff;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: 'Cinzel', serif;
}

/* NAVBAR */
html,
body {
  overflow-x: hidden;
  max-width: 100%;
}

.navbar {
  background: var(--dark) !important;
  padding: .3rem .75rem;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(0, 0, 0, .5);
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: .55rem !important;
  margin-right: .6rem;
  flex-shrink: 0;
}

.navbar-brand img.logo {
  height: 50px;
  width: 50px;
  object-fit: contain;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, .4));
  flex-shrink: 0;
}

.navbar-brand .brand-text {
  font-family: 'Cinzel', serif;
  line-height: 1.2;
}

.brand-main {
  font-size: .88rem;
  color: var(--light-gold);
  font-weight: 700;
  display: block;
  line-height: 1.2;
  white-space: nowrap;
}

.brand-sub {
  font-size: .56rem;
  color: rgba(255, 255, 255, .5);
  letter-spacing: .07em;
  text-transform: uppercase;
  display: block;
  line-height: 1.5;
  white-space: nowrap;
}

.brand-sub+.brand-sub {
  font-size: .52rem;
  color: rgba(240, 192, 80, .55);
}

.nav-link {
  color: #ddd !important;
  font-size: .7rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: 1.2rem .42rem !important;
  transition: color .2s;
  white-space: nowrap;
}

.nav-link:hover,
.nav-link.active {
  color: var(--light-gold) !important;
}

/* ─── Dropdown submenu (e.g. WMC Members ▾) ─── */
.navbar-nav .dropdown-toggle::after {
  display: inline-block;
  margin-left: .35em;
  vertical-align: .15em;
  border-top: .35em solid;
  border-right: .3em solid transparent;
  border-bottom: 0;
  border-left: .3em solid transparent;
  color: var(--light-gold);
  opacity: .85;
}
.navbar-nav .dropdown-menu {
  background: var(--dark);
  border: 1px solid rgba(212, 175, 55, .25);
  border-radius: 10px;
  padding: .35rem 0;
  margin-top: 0;
  box-shadow: 0 12px 32px rgba(0, 0, 0, .45);
  min-width: 220px;
}
.navbar-nav .dropdown-menu .dropdown-item {
  color: #ddd;
  font-size: .78rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: .6rem 1.1rem;
  transition: background .15s, color .15s, padding-left .15s;
}
.navbar-nav .dropdown-menu .dropdown-item:hover,
.navbar-nav .dropdown-menu .dropdown-item:focus,
.navbar-nav .dropdown-menu .dropdown-item.active {
  background: rgba(212, 175, 55, .12);
  color: var(--light-gold);
  padding-left: 1.3rem;
}

/* Open submenu on hover for desktop (click still works on touch / keyboard) */
@media (min-width: 992px) {
  .navbar-nav .nav-item.dropdown:hover > .dropdown-menu {
    display: block;
  }
  /* Bridge the gap between toggle and menu so the menu doesn't close
     when the cursor crosses the small empty space below the toggle. */
  .navbar-nav .nav-item.dropdown > .dropdown-menu {
    margin-top: -2px;
  }
}

/* Mobile: dropdown sits inline inside the collapsed menu */
@media (max-width: 991px) {
  .navbar-nav .dropdown-menu {
    background: transparent;
    border: none;
    box-shadow: none;
    padding-left: 1rem;
  }
  .navbar-nav .dropdown-menu .dropdown-item {
    padding: .55rem .5rem;
    border-bottom: 1px solid rgba(255, 255, 255, .04);
  }
}

.navbar-toggler {
  border-color: var(--gold);
  padding: .35rem .55rem;
  flex-shrink: 0;
  margin-left: auto;
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 2px rgba(200, 148, 26, .35);
}

.navbar-toggler-icon {
  filter: invert(1);
  width: 1.2em;
  height: 1.2em;
}

/* Mid-desktop: keep all nav items in one line on 992-1280px screens */
@media (min-width: 992px) and (max-width: 1280px) {
  .navbar-brand img.logo { height: 44px; width: 44px; }
  .brand-main { font-size: .82rem; }
  .brand-sub  { font-size: .52rem; }
  .nav-link { font-size: .65rem !important; padding: 1.1rem .35rem !important; letter-spacing: .03em; }
  .navbar-brand { margin-right: .4rem; }
}

/* Mobile-specific navbar adjustments */
@media (max-width: 991px) {
  .navbar {
    padding: .5rem .8rem;
  }

  .navbar>.container {
    flex-wrap: wrap;
  }

  .navbar-brand {
    flex: 1 1 0;
    min-width: 0;
    margin-right: 0;
  }

  .navbar-brand .brand-text {
    min-width: 0;
    flex: 1 1 auto;
    overflow: hidden;
  }

  .navbar-brand img.logo {
    height: 46px;
    width: 46px;
  }

  .brand-main {
    font-size: .85rem;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .brand-sub {
    font-size: .55rem;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .brand-sub+.brand-sub {
    font-size: .52rem;
  }

  .navbar-collapse {
    flex-basis: 100%;
    width: 100%;
    background: var(--dark);
    margin: .5rem -.8rem -.5rem;
    padding: .5rem 1rem 1rem;
    border-top: 1px solid rgba(255, 255, 255, .08);
  }

  .navbar-nav {
    width: 100%;
    align-items: stretch;
  }

  .nav-link {
    padding: .8rem .5rem !important;
    border-bottom: 1px solid rgba(255, 255, 255, .05);
    text-align: left;
  }

  .nav-link:last-child {
    border-bottom: none;
  }
}

@media (max-width: 480px) {
  .brand-main {
    font-size: .78rem;
  }

  .brand-sub {
    font-size: .5rem;
    letter-spacing: .06em;
  }

  .navbar-brand img.logo {
    height: 40px;
    width: 40px;
  }
}


/* ── MEGA EVENT BANNER ─────────────────────────────────── */
.mega-event-banner {
  width: 100%;
  background: #0a1a10;
  border-bottom: 3px solid #c9a84c;
  overflow: hidden;
  position: relative;
}

.mega-event-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  padding: 0.6rem 1.5rem;
  flex-wrap: wrap;
}

.mega-event-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: #c9a84c;
  color: #0a1a10;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.35rem 0.85rem;
  border-radius: 4px;
  white-space: nowrap;
  flex-shrink: 0;
}

.pulse-dot {
  width: 9px;
  height: 9px;
  background: #0a1a10;
  border-radius: 50%;
  display: inline-block;
  animation: pulse-ring 1.4s ease-in-out infinite;
}

@keyframes pulse-ring {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%       { transform: scale(1.5); opacity: 0.5; }
}

.mega-event-img {
  max-height: 90px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  display: block;
  border-radius: 4px;
}

.mega-event-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: #c9a84c;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-decoration: none;
  border: 1.5px solid #c9a84c;
  padding: 0.35rem 1rem;
  border-radius: 4px;
  white-space: nowrap;
  transition: background 0.25s, color 0.25s;
  flex-shrink: 0;
}

.mega-event-cta:hover {
  background: #c9a84c;
  color: #0a1a10;
}

@media (max-width: 576px) {
  .mega-event-inner {
    flex-direction: column;
    gap: 0.6rem;
    padding: 0.8rem 1rem;
  }
  .mega-event-img {
    max-height: 70px;
  }
}
/* ───────────────────────────────────────────────────────── */

/* HERO */
.hero {
  position: relative;
  height: 65vh;
  min-height: 420px;
  max-height: 620px;
  background: #0d1a10;
  display: flex;
  align-items: center;
  overflow: hidden;
}

@media (max-width:768px) {
  .hero {
    height: 55vh;
    min-height: 340px;
  }

  .hero p,
  .hero-badge {
    display: none !important;
  }
}

.hero-bg-slider {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.06);
  transition: opacity 1.4s ease, transform 9s ease;
}

.hero-bg-slide.active {
  opacity: 1;
  transform: scale(1);
}

.hero-bg-slider::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10, 26, 16, .85) 0%, rgba(10, 26, 16, .55) 45%, rgba(10, 26, 16, .15) 75%, rgba(10, 26, 16, .45) 100%);
  pointer-events: none;
}

.hero>.hero-pattern,
.hero>.container,
.hero>.hero-scroll,
.hero>.hero-arrow,
.hero>.hero-dots {
  position: relative;
  z-index: 3;
}

.hero::before {
  display: none;
}

.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(0, 0, 0, .35);
  border: 1px solid rgba(255, 255, 255, .25);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all .3s;
  backdrop-filter: blur(6px);
  font-size: 1.2rem;
}

.hero-arrow:hover {
  background: var(--gold);
  border-color: var(--gold);
  transform: translateY(-50%) scale(1.06);
}

.hero-arrow.prev {
  left: 1.5rem;
}

.hero-arrow.next {
  right: 1.5rem;
}

.hero-dots {
  position: absolute;
  bottom: 5.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: .55rem;
  z-index: 3;
}

.hero-dots span {
  width: 34px;
  height: 3px;
  background: rgba(255, 255, 255, .3);
  cursor: pointer;
  transition: background .3s, transform .3s;
  border-radius: 2px;
}

.hero-dots span.active {
  background: var(--light-gold);
  transform: scaleY(1.4);
}

.hero-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  background: var(--gold);
  width: 0;
  transition: width 5s linear;
  z-index: 3;
}

@media (max-width:768px) {
  .hero-arrow {
    display: none;
  }

  .hero-dots {
    bottom: 3.5rem;
  }
}

.hero-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 50%, rgba(200, 148, 26, .12) 0%, transparent 50%), radial-gradient(circle at 80% 20%, rgba(200, 148, 26, .08) 0%, transparent 40%);
}

.hero-badge {
  display: inline-block;
  border: 1px solid var(--gold);
  color: var(--light-gold);
  font-size: .7rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  padding: .4rem 1.2rem;
  border-radius: 2px;
  margin-bottom: 1.5rem;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.8rem);
  color: #fff;
  line-height: 1.15;
  margin-bottom: 1.5rem;
}

.hero h1 span {
  color: var(--light-gold);
}

.hero p {
  color: rgba(255, 255, 255, .75);
  font-size: 1rem;
  line-height: 1.9;
  max-width: 560px;
  margin-bottom: 2rem;
}

.btn-gold {
  background: var(--gold);
  color: #fff;
  border: none;
  padding: .75rem 2rem;
  font-family: 'Cinzel', serif;
  font-size: .8rem;
  letter-spacing: .1em;
  border-radius: 2px;
  transition: background .2s, transform .2s;
  display: inline-block;
  text-decoration: none;
}

.btn-gold:hover {
  background: var(--light-gold);
  color: var(--dark);
  transform: translateY(-2px);
}

.btn-outline-gold {
  border: 1px solid var(--gold);
  color: var(--light-gold);
  background: transparent;
  padding: .75rem 2rem;
  font-family: 'Cinzel', serif;
  font-size: .8rem;
  letter-spacing: .1em;
  border-radius: 2px;
  transition: all .2s;
  display: inline-block;
  text-decoration: none;
}

.btn-outline-gold:hover {
  background: var(--gold);
  color: #fff;
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, .4);
  font-size: .7rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  text-align: center;
  animation: bounce 2s infinite;
}

.hero-scroll i {
  display: block;
  font-size: 1.2rem;
  margin-top: .3rem;
}

@keyframes bounce {

  0%,
  100% {
    transform: translateX(-50%) translateY(0)
  }

  50% {
    transform: translateX(-50%) translateY(6px)
  }
}

.hero-logo-float {
  position: absolute;
  right: 8%;
  top: 50%;
  transform: translateY(-50%);
  width: 320px;
  opacity: .18;
  pointer-events: none;
}

/* TICKER */
.ticker-bar {
  background: var(--gold);
  padding: .5rem 0;
  overflow: hidden;
  white-space: nowrap;
}

.ticker-track {
  display: inline-block;
  animation: ticker 35s linear infinite;
}

.ticker-track span {
  font-size: .78rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #fff;
  margin-right: 4rem;
}

.ticker-track span::before {
  content: "✦  ";
  color: rgba(255, 255, 255, .5);
}

@keyframes ticker {
  0% {
    transform: translateX(0)
  }

  100% {
    transform: translateX(-50%)
  }
}

/* STATS */
.stats-section {
  background: var(--dark);
  padding: 3.5rem 0;
}

.stat-item {
  text-align: center;
  padding: 1rem;
}

.stat-number {
  font-family: 'Cinzel', serif;
  font-size: 2.8rem;
  color: var(--light-gold);
  font-weight: 700;
  line-height: 1;
}

.stat-number {
  font-size: clamp(1.6rem, 4vw, 2.8rem); /* scales down on small screens */
  white-space: nowrap;
}

.stat-item {
  padding: 15px 8px;
}

.stat-label {
  font-size: .75rem;
  color: rgba(255, 255, 255, .5);
  letter-spacing: .15em;
  text-transform: uppercase;
  margin-top: .4rem;
}

.stat-divider {
  width: 1px;
  background: rgba(255, 255, 255, .1);
  height: 60px;
  align-self: center;
}

/* SECTION HEADERS */
.section-eyebrow {
  font-size: .7rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .6rem;
  display: block;
}

.section-title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: var(--dark);
  margin-bottom: 1rem;
}

.section-title.light {
  color: #fff;
}

.gold-line {
  width: 48px;
  height: 3px;
  background: var(--gold);
  margin-bottom: 1.5rem;
}

.gold-line.center {
  margin-left: auto;
  margin-right: auto;
}

/* ABOUT */
.about-section {
  background: var(--cream);
  padding: 5rem 0;
}

.about-img-wrap {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, .15);
}

.about-img-wrap img {
  width: 100%;
  display: block;
}

.about-img-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 74, 47, .3);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .2s;
}

.about-img-overlay:hover {
  background: rgba(10, 74, 47, .5);
}

.about-img-overlay i {
  font-size: 4rem;
  color: rgba(255, 255, 255, .85);
}

/* CPST LEADER GRID */
.cpst-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.cpst-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 6px 28px rgba(0, 0, 0, .10);
  transition: transform .3s, box-shadow .3s;
}

.cpst-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, .16);
}

.cpst-portrait {
  width: 100%;
  aspect-ratio: 1/1;
  overflow: hidden;
}

.cpst-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform .4s;
}

.cpst-card:hover .cpst-portrait img {
  transform: scale(1.05);
}

.cpst-info {
  padding: .7rem .85rem .85rem;
  text-align: center;
  border-top: 3px solid var(--gold);
}

.cpst-name {
  font-family: 'Cinzel', serif;
  font-size: .8rem;
  color: var(--dark);
  font-weight: 700;
  margin-bottom: .3rem;
  line-height: 1.3;
}

.cpst-role {
  display: inline-block;
  font-size: .62rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: .22rem .7rem;
  border-radius: 2px;
  font-weight: 700;
}

.cpst-chairman {
  background: #FF993322;
  color: #c8600a;
  border: 1px solid #FF993355;
}

.cpst-president {
  background: #13880822;
  color: #0a5c1a;
  border: 1px solid #13880855;
}

.cpst-secretary {
  background: #0a4a2f22;
  color: #0a4a2f;
  border: 1px solid #0a4a2f55;
}

.cpst-treasurer {
  background: #c8941a22;
  color: #8a6010;
  border: 1px solid #c8941a55;
}

.cpst-team-link {
  font-size: .75rem;
  padding: .6rem 1.6rem;
  display: inline-block;
}

@media(max-width:576px) {
  .cpst-grid {
    gap: .85rem;
  }

  .cpst-name {
    font-size: .72rem;
  }
}

.about-text p {
  color: #555;
  line-height: 1.9;
  margin-bottom: 1.2rem;
  font-size: .97rem;
}

/* CHAIRMAN HIGHLIGHT */
.chairman-section {
  background: #fff;
  padding: 5rem 0;
}

.chairman-img {
  width: 100%;
  border-radius: 4px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, .12);
  display: block;
}

.chairman-quote {
  border-left: 4px solid var(--gold);
  padding-left: 1.5rem;
  margin: 1.5rem 0;
  font-style: italic;
  color: #555;
  font-size: 1.05rem;
  line-height: 1.8;
}

/* LEADERSHIP */
.leadership-section {
  background: var(--dark);
  padding: 5rem 0;
}

.leader-card {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  cursor: pointer;
  aspect-ratio: 3/4;
  background: linear-gradient(135deg, var(--gold), #0a4a2f);
  display: flex;
  align-items: flex-end;
  transition: transform .4s ease, box-shadow .4s ease;
}

.leader-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, .4);
}

.leader-card .leader-initials {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -60%);
  font-family: 'Cinzel', serif;
  font-size: 3rem;
  color: rgba(255, 255, 255, .9);
  font-weight: 700;
  letter-spacing: .05em;
  text-shadow: 0 4px 14px rgba(0, 0, 0, .3);
  transition: transform .4s ease;
}

.leader-card:hover .leader-initials {
  transform: translate(-50%, -65%) scale(1.08);
}

.leader-card .leader-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease, filter .4s ease;
  filter: saturate(.92);
  z-index: 1;
}

.leader-card:hover .leader-photo {
  transform: scale(1.06);
  filter: saturate(1.1);
}

.leader-card.has-photo .leader-overlay {
  background: linear-gradient(transparent 25%, rgba(0, 0, 0, .92) 90%);
}

.leader-overlay {
  position: relative;
  width: 100%;
  background: linear-gradient(transparent, rgba(0, 0, 0, .85));
  padding: 2rem 1rem 1rem;
  z-index: 2;
}

.leader-name {
  font-family: 'Cinzel', serif;
  font-size: .9rem;
  color: #fff;
  margin-bottom: .2rem;
}

.leader-role {
  font-size: .68rem;
  color: var(--light-gold);
  letter-spacing: .1em;
  text-transform: uppercase;
}

.leader-card .read-more {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--gold);
  color: #fff;
  font-size: .62rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .25rem .7rem;
  border-radius: 2px;
  opacity: 0;
  transition: opacity .3s;
  text-decoration: none;
  z-index: 3;
}

.leader-card:hover .read-more {
  opacity: 1;
}

.leader-card.tier-chair {
  background: linear-gradient(135deg, #c8941a, #e07b1a);
}

.leader-card.tier-vchair {
  background: linear-gradient(135deg, #0a4a2f, #1a6b42);
}

.leader-card.tier-pres {
  background: linear-gradient(135deg, #FF9933, #c8941a);
}

.leader-card.tier-vpres {
  background: linear-gradient(135deg, #138808, #0a4a2f);
}

.leader-card.tier-sec {
  background: linear-gradient(135deg, #1a6b42, #0a4a2f);
}

.leader-card.tier-treas {
  background: linear-gradient(135deg, #c8941a, #8b5e10);
}

.leader-card.tier-advb {
  background: linear-gradient(135deg, #0d1a10, #0a4a2f);
}

/* ===================================
   LEADERSHIP SECTION - FULL CSS
   =================================== */

/* Desktop Layout */
.cpst-grid {
  display: flex;
  flex-wrap: nowrap;
  gap: 25px;
  justify-content: center;
}

.cpst-card {
  width: 250px;
  text-align: center;
  flex-shrink: 0;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  overflow: hidden;
}

.cpst-portrait {
  width: 100%;
  height: 280px;
  background-color: #fff; /* fallback if image has no bg */
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.cpst-portrait img {
  width: 100%;
  height: 100%;
  object-fit: contain;        /* ✅ KEY FIX: show full image, no crop */
  object-position: top center;
  display: block;
}

.cpst-name {
  font-size: 16px;
  font-weight: 700;
  margin-top: 10px;
  margin-bottom: 6px;
  word-break: break-word;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.cpst-info {
  padding: 10px 8px 14px;
  border-top: 2px solid #c8a951;
  margin-top: 6px;
}

.cpst-role {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  padding: 5px 14px;
  border-radius: 20px;
  text-transform: uppercase;
  white-space: nowrap;
}

/* Role Badge Colors */
.cpst-chairman {
  background: #fff0e0;
  color: #c8841a;
  border: 1px solid #c8841a;
}

.cpst-president {
  background: #e8f5e9;
  color: #2e7d32;
  border: 1px solid #2e7d32;
}

.cpst-secretary {
  background: #e3f2fd;
  color: #1565c0;
  border: 1px solid #1565c0;
}

.cpst-treasurer {
  background: #fce4ec;
  color: #c62828;
  border: 1px solid #c62828;
}


/* ===================================
   TABLET - 2x2 Grid
   =================================== */
@media (max-width: 991px) {
  .cpst-grid {
    flex-wrap: wrap !important;
    gap: 20px !important;
    justify-content: center !important;
  }

  .cpst-card {
    width: 200px !important;
    flex-shrink: 1;
  }

  .cpst-portrait {
    height: 230px !important;
  }
}


/* ===================================
   MOBILE - 2x2 Grid
   =================================== */
@media (max-width: 767px) {

  .cpst-grid {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 16px !important;
    padding: 0 8px !important;
    justify-items: center;
  }

  .cpst-card {
    width: 100% !important;
    max-width: 180px;
  }

  .cpst-portrait {
    height: 170px !important;
  }

  .cpst-portrait img {
    object-fit: contain !important;
    object-position: top center !important;
  }

  .cpst-name {
    font-size: 13px !important;
    line-height: 1.4;
    margin-top: 8px;
    margin-bottom: 5px;
  }

  .cpst-role {
    font-size: 10px !important;
    padding: 4px 10px !important;
    white-space: normal !important;
    text-align: center;
  }

  .cpst-info {
    padding: 6px 4px 10px !important;
  }
}


/* ===================================
   SMALL MOBILE - Under 400px
   =================================== */
@media (max-width: 400px) {

  .cpst-grid {
    gap: 12px !important;
    padding: 0 5px !important;
  }

  .cpst-card {
    max-width: 155px;
  }

  .cpst-portrait {
    height: 145px !important;
  }

  .cpst-name {
    font-size: 12px !important;
  }

  .cpst-role {
    font-size: 9px !important;
    padding: 3px 8px !important;
  }
}
/* INITIATIVES */
.initiatives-section {
  padding: 5rem 0;
  background: #fff;
}

.initiative-card {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  height: 280px;
  cursor: pointer;
}

.initiative-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s;
}

.initiative-card:hover img {
  transform: scale(1.08);
}

.initiative-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 30%, rgba(0, 0, 0, .8));
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
}

.initiative-title {
  font-family: 'Cinzel', serif;
  font-size: 1rem;
  color: #fff;
  margin-bottom: .5rem;
}

.initiative-link {
  font-size: .72rem;
  color: var(--light-gold);
  letter-spacing: .12em;
  text-transform: uppercase;
  text-decoration: none;
}

.initiative-link i {
  margin-left: .3rem;
  transition: margin .2s;
}

.initiative-card:hover .initiative-link i {
  margin-left: .6rem;
}

/* OBJECTIVES */
.objectives-section {
  background: var(--cream);
  padding: 5rem 0;
}

.obj-card {
  background: #fff;
  border-radius: 4px;
  padding: 2rem 1.5rem;
  height: 100%;
  border-bottom: 3px solid transparent;
  transition: border-color .3s, box-shadow .3s, transform .3s;
  box-shadow: 0 2px 12px rgba(0, 0, 0, .06);
}

.obj-card:hover {
  border-color: var(--gold);
  box-shadow: 0 8px 30px rgba(0, 0, 0, .12);
  transform: translateY(-4px);
}

.obj-icon {
  width: 52px;
  height: 52px;
  background: rgba(200, 148, 26, .1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
  font-size: 1.4rem;
  color: var(--gold);
}

.obj-title {
  font-family: 'Cinzel', serif;
  font-size: .95rem;
  color: var(--dark);
  margin-bottom: .7rem;
}

.obj-text {
  font-size: .88rem;
  color: #666;
  line-height: 1.7;
}

/* REACH */
.reach-section {
  background: var(--dark);
  padding: 5rem 0;
}

.region-pill {
  display: inline-block;
  border: 1px solid rgba(200, 148, 26, .4);
  color: rgba(255, 255, 255, .75);
  font-size: .75rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .45rem 1.2rem;
  border-radius: 20px;
  margin: .3rem;
  transition: all .2s;
  cursor: default;
}

.region-pill:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #fff;
}

/* GALLERY */
.gallery-section {
  padding: 5rem 0;
  background: #fff;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.gallery-item {
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.gallery-item:first-child {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  transition: transform .5s;
}

.gallery-item:first-child img {
  height: 448px;
}

.gallery-item:hover img {
  transform: scale(1.07);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 74, 47, 0);
  transition: background .3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-overlay i {
  font-size: 2rem;
  color: #fff;
  opacity: 0;
  transition: opacity .3s;
}

.gallery-item:hover .gallery-overlay {
  background: rgba(10, 74, 47, .5);
}

.gallery-item:hover .gallery-overlay i {
  opacity: 1;
}

/* EVENTS */
.events-section {
  background: var(--cream);
  padding: 5rem 0;
}

.event-card {
  background: #fff;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, .07);
  transition: transform .3s, box-shadow .3s;
  height: 100%;
}

.event-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, .12);
}

.event-img-wrap {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.event-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s;
}

.event-card:hover .event-img-wrap img {
  transform: scale(1.08);
}

.event-date-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--gold);
  color: #fff;
  text-align: center;
  padding: .4rem .8rem;
  border-radius: 2px;
  line-height: 1.2;
}

.event-date-badge .day {
  font-family: 'Cinzel', serif;
  font-size: 1.4rem;
  font-weight: 700;
  display: block;
}

.event-date-badge .month {
  font-size: .65rem;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.event-body {
  padding: 1.4rem;
}

.event-location {
  font-size: .75rem;
  color: var(--gold);
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: .5rem;
}

.event-title {
  font-family: 'Cinzel', serif;
  font-size: 1rem;
  color: var(--dark);
  margin-bottom: .7rem;
}

.event-desc {
  font-size: .85rem;
  color: #666;
  line-height: 1.7;
}

/* FORMER LEADERS */
.former-section {
  background: #f5f5f5;
  padding: 5rem 0;
}

.former-card {
  text-align: center;
  padding: 1rem;
}

.former-card img {
  width: 110px;
  height: 110px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid var(--gold);
  margin-bottom: 1rem;
  filter: grayscale(30%);
  transition: filter .3s;
}

.former-card:hover img {
  filter: grayscale(0%);
}

.former-name {
  font-family: 'Cinzel', serif;
  font-size: .82rem;
  color: var(--dark);
}

.former-role {
  font-size: .7rem;
  color: #888;
  margin-top: .2rem;
}

/* THEME SONG */
.theme-section {
  background: linear-gradient(135deg, var(--dark), #0a4a2f);
  padding: 5rem 0;
  text-align: center;
}

/* CTA */
.cta-section {
  background: linear-gradient(135deg, var(--green), var(--dark));
  padding: 5rem 0;
  text-align: center;
}

.cta-section h2 {
  color: #fff;
  margin-bottom: 1rem;
}

.cta-section p {
  color: rgba(255, 255, 255, .65);
  max-width: 540px;
  margin: 0 auto 2rem;
  font-size: .95rem;
  line-height: 1.8;
}

/* FOOTER */
footer {
  background: var(--dark);
  padding: 4rem 0 1.5rem;
}

.footer-brand {
  font-family: 'Cinzel', serif;
  color: var(--light-gold);
  font-size: 1.1rem;
  margin-bottom: .8rem;
}

.footer-desc {
  line-height: 1.8;
  color: rgba(255, 255, 255, .45);
  font-size: .82rem;
  margin-bottom: 1.5rem;
}

.footer-heading {
  font-family: 'Cinzel', serif;
  font-size: .75rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: .5rem;
}

.footer-links a {
  color: rgba(255, 255, 255, .5);
  text-decoration: none;
  font-size: .82rem;
  transition: color .2s;
}

.footer-links a:hover {
  color: var(--light-gold);
}

.footer-social a {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, .5);
  font-size: .9rem;
  margin-right: .4rem;
  text-decoration: none;
  transition: all .2s;
}

.footer-social a:hover {
  border-color: var(--gold);
  color: var(--light-gold);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .07);
  margin-top: 3rem;
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: .5rem;
  font-size: .75rem;
  color: rgba(255, 255, 255, .3);
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: .6rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: .7rem;
  font-size: .82rem;
  color: rgba(255, 255, 255, .5);
}

.contact-item i {
  color: var(--gold);
  margin-top: .15rem;
  flex-shrink: 0;
}

@media(max-width:768px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-item:first-child {
    grid-column: span 2;
  }

  .gallery-item img {
    height: 160px;
  }

  .gallery-item:first-child img {
    height: 328px;
  }

  .hero-logo-float {
    display: none;
  }
}

@media(max-width:576px) {
  .hero h1 {
    font-size: 1.8rem;
  }
}

/* ── ANIMATION BASE STATES ── */

/* fade up (default for most elements) */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* fade in from left */
.fade-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

.fade-left.visible {
  opacity: 1;
  transform: translateX(0);
}

/* fade in from right */
.fade-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

.fade-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* simple fade (no movement) */
.fade-in {
  opacity: 0;
  transition: opacity 0.9s ease;
}

.fade-in.visible {
  opacity: 1;
}

/* zoom in */
.fade-zoom {
  opacity: 0;
  transform: scale(0.88);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-zoom.visible {
  opacity: 1;
  transform: scale(1);
}

/* stagger delay helpers */
.delay-1 {
  transition-delay: 0.1s !important;
}

.delay-2 {
  transition-delay: 0.2s !important;
}

.delay-3 {
  transition-delay: 0.3s !important;
}

.delay-4 {
  transition-delay: 0.4s !important;
}

.delay-5 {
  transition-delay: 0.5s !important;
}

.delay-6 {
  transition-delay: 0.6s !important;
}

/* Hero entrance animations (run once on load) */
.hero-badge {
  animation: heroFadeDown 0.8s ease 0.2s both;
}

.hero h1 {
  animation: heroFadeUp 0.9s ease 0.4s both;
}

.hero p {
  animation: heroFadeUp 0.9s ease 0.65s both;
}

.hero .d-flex {
  animation: heroFadeUp 0.9s ease 0.85s both;
}

.hero-logo-float {
  animation: heroFloat 0.9s ease 0.5s both;
}

@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(30px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

@keyframes heroFadeDown {
  from {
    opacity: 0;
    transform: translateY(-20px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

@keyframes heroFloat {
  from {
    opacity: 0
  }

  to {
    opacity: .18
  }
}

/* Stat counter pulse */
@keyframes statPop {
  0% {
    transform: scale(0.6);
    opacity: 0;
  }

  70% {
    transform: scale(1.08);
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.stat-item.visible .stat-number {
  animation: statPop 0.6s ease forwards;
}

.stat-item {
  opacity: 0;
}

.stat-item.visible {
  opacity: 1;
}

/* Gold line draw animation */
.gold-line {
  width: 0;
  transition: width 0.8s ease 0.3s;
}

.gold-line.visible {
  width: 48px;
}

/* Navbar fade in on load */
.navbar {
  animation: navbarSlideDown 0.6s ease both;
}

@keyframes navbarSlideDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Page transition overlay */
.page-loader {
  position: fixed;
  inset: 0;
  background: var(--dark);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1rem;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.page-loader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-logo {
  width: 90px;
  height: 90px;
  object-fit: contain;
  animation: loaderPulse 1.2s ease-in-out infinite;
}

@keyframes loaderPulse {

  0%,
  100% {
    transform: scale(1);
    opacity: .8
  }

  50% {
    transform: scale(1.1);
    opacity: 1
  }
}

.loader-text {
  font-family: 'Cinzel', serif;
  color: var(--light-gold);
  font-size: .75rem;
  letter-spacing: .3em;
  text-transform: uppercase;
}

.loader-bar {
  width: 160px;
  height: 2px;
  background: rgba(255, 255, 255, .1);
  border-radius: 2px;
  overflow: hidden;
}

.loader-bar-inner {
  height: 100%;
  width: 0;
  background: var(--gold);
  animation: loadFill 1.2s ease forwards;
}

@keyframes loadFill {
  to {
    width: 100%;
  }
}

/* Section fade overlay for section transitions */
section {
  position: relative;
}

/* ── PROVINCES SECTION ── */
.provinces-section {
  background: linear-gradient(180deg, var(--cream) 0%, #fff 50%, var(--cream) 100%);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.province-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  justify-content: center;
  margin-bottom: 2.5rem;
}

.prov-tab {
  background: #fff;
  border: 1px solid rgba(200, 148, 26, .3);
  color: var(--dark);
  font-family: 'Cinzel', serif;
  font-size: .8rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .65rem 1.4rem;
  border-radius: 28px;
  cursor: pointer;
  transition: all .3s;
  box-shadow: 0 2px 8px rgba(0, 0, 0, .04);
}

.prov-tab:hover,
.prov-tab.active {
  background: linear-gradient(135deg, var(--gold), #FF9933);
  color: #fff;
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(200, 148, 26, .35);
}

.prov-tab .badge-num {
  display: inline-block;
  background: rgba(255, 255, 255, .25);
  padding: .1rem .55rem;
  border-radius: 12px;
  margin-left: .5rem;
  font-size: .7rem;
}

.prov-tab:not(.active) .badge-num {
  background: rgba(200, 148, 26, .12);
  color: var(--gold);
}

.province-panel {
  display: none;
}

.province-panel.active {
  display: block;
  animation: provPanelIn .55s ease both;
}

@keyframes provPanelIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.province-header {
  text-align: center;
  margin-bottom: 2rem;
  padding: 2rem 1rem;
  background: linear-gradient(135deg, var(--dark), #0a4a2f);
  border-radius: 10px;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.province-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(240, 192, 80, .15), transparent 60%);
}

.province-header h3 {
  font-family: 'Cinzel', serif;
  color: var(--light-gold);
  margin: 0 0 .4rem;
  font-size: 1.5rem;
  position: relative;
}

.province-header .sub {
  font-size: .8rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .6);
  position: relative;
}

.ob-card {
  background: #fff;
  border-radius: 10px;
  padding: 1.6rem 1.2rem;
  text-align: center;
  border-top: 4px solid var(--gold);
  box-shadow: 0 4px 16px rgba(0, 0, 0, .07);
  transition: transform .4s cubic-bezier(.2, .7, .3, 1), box-shadow .4s;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.ob-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 153, 51, .04), transparent 60%);
  opacity: 0;
  transition: opacity .3s;
  pointer-events: none;
}

.ob-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, .14);
  border-top-color: #FF9933;
}

.ob-card:hover::after {
  opacity: 1;
}

.ob-portrait {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin: 0 auto .9rem;
  background: linear-gradient(135deg, var(--gold), var(--light-gold));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: 'Cinzel', serif;
  font-size: 1.6rem;
  font-weight: 700;
  box-shadow: 0 6px 16px rgba(200, 148, 26, .35);
  overflow: hidden;
  border: 4px solid #fff;
  outline: 2px solid var(--gold);
  position: relative;
}

.ob-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ob-card[data-role="chairman"] .ob-portrait {
  background: linear-gradient(135deg, #FF9933, #c8941a);
  outline-color: #FF9933;
}

.ob-card[data-role="vchairman"] .ob-portrait {
  background: linear-gradient(135deg, #c8941a, #8b5e10);
  outline-color: #c8941a;
}

.ob-card[data-role="president"] .ob-portrait {
  background: linear-gradient(135deg, #138808, #0a4a2f);
  outline-color: #138808;
}

.ob-card[data-role="vpresident"] .ob-portrait {
  background: linear-gradient(135deg, #1a6b42, #0a4a2f);
  outline-color: #1a6b42;
}

.ob-card[data-role="secretary"] .ob-portrait {
  background: linear-gradient(135deg, #0a4a2f, #0d1a10);
  outline-color: #0a4a2f;
}

.ob-card[data-role="treasurer"] .ob-portrait {
  background: linear-gradient(135deg, #c8941a, var(--light-gold));
  outline-color: #c8941a;
}

.ob-name {
  font-family: 'Cinzel', serif;
  font-size: .92rem;
  color: var(--dark);
  margin-bottom: .35rem;
  line-height: 1.3;
}

.ob-role {
  display: inline-block;
  font-size: .62rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(200, 148, 26, .1);
  padding: .25rem .7rem;
  border-radius: 12px;
  margin-bottom: .6rem;
}

.ob-meta {
  font-size: .76rem;
  color: #777;
  line-height: 1.5;
}

.ob-meta a {
  color: #777;
  text-decoration: none;
  transition: color .2s;
}

.ob-meta a:hover {
  color: var(--gold);
}

.vanitha-strip {
  margin-top: 2rem;
  padding: 1.5rem;
  background: linear-gradient(135deg, #fff5e5, #ffe6cc);
  border-radius: 10px;
  border-left: 4px solid #FF9933;
}

.vanitha-strip h4 {
  font-family: 'Cinzel', serif;
  color: #c8941a;
  font-size: 1.05rem;
  margin-bottom: 1rem;
}

.vanitha-strip h4 i {
  color: #FF9933;
  margin-right: .5rem;
}

/* ── MEMBERS DIRECTORY ── */
.members-section {
  background: linear-gradient(180deg, #fff 0%, var(--cream) 100%);
  padding: 5rem 0;
  position: relative;
}

.members-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  justify-content: center;
  margin-bottom: 2.5rem;
}

.filter-pill {
  background: #fff;
  border: 1px solid rgba(200, 148, 26, .3);
  color: var(--dark);
  font-size: .75rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .55rem 1.2rem;
  border-radius: 24px;
  cursor: pointer;
  transition: all .25s;
}

.filter-pill:hover,
.filter-pill.active {
  background: var(--gold);
  color: #fff;
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(200, 148, 26, .3);
}

.members-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 340px));
  gap: 1.2rem;
  justify-content: center;
  max-width: 1100px;
  margin: 0 auto;
}

.member-card {
  background: #fff;
  border-radius: 8px;
  padding: 1.4rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  box-shadow: 0 3px 14px rgba(0, 0, 0, .06);
  border-left: 3px solid var(--gold);
  transition: transform .35s cubic-bezier(.2, .7, .3, 1), box-shadow .35s, border-color .25s;
  position: relative;
  overflow: hidden;
}

.member-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 80px;
  height: 80px;
  background: radial-gradient(circle, rgba(200, 148, 26, .08), transparent 70%);
  border-radius: 50%;
  transform: translate(30%, -30%);
}

.member-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, .12);
  border-left-color: #FF9933;
}

.member-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(200, 148, 26, .3);
  border: 3px solid var(--gold);
  background: linear-gradient(135deg, var(--gold), var(--light-gold));
  position: relative;
}

.member-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s ease, filter .4s ease;
  filter: saturate(.9);
}

.member-card:hover .member-avatar img {
  transform: scale(1.12);
  filter: saturate(1.15);
}

.member-card[data-tier="leadership"] .member-avatar {
  border-color: #FF9933;
}

.member-card[data-tier="committee"] .member-avatar {
  border-color: #138808;
}

.member-card[data-tier="advisory"] .member-avatar {
  border-color: #0d1a10;
}

.member-card[data-tier="member"] .member-avatar {
  border-color: var(--gold);
}

.member-info {
  flex: 1;
  min-width: 0;
}

.member-name {
  font-family: 'Cinzel', serif;
  font-size: .95rem;
  color: var(--dark);
  margin-bottom: .25rem;
  line-height: 1.3;
}

.member-role {
  display: inline-block;
  font-size: .65rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(200, 148, 26, .1);
  padding: .15rem .55rem;
  border-radius: 12px;
  margin-bottom: .6rem;
}

.member-contact {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: .78rem;
  color: #666;
}

.member-contact li {
  display: flex;
  align-items: flex-start;
  gap: .4rem;
  padding: .15rem 0;
  line-height: 1.5;
}

.member-contact i {
  color: var(--gold);
  margin-top: .12rem;
  font-size: .85rem;
  flex-shrink: 0;
}

.member-contact a {
  color: #555;
  text-decoration: none;
  transition: color .2s;
}

.member-contact a:hover {
  color: var(--gold);
}

.member-sn {
  position: absolute;
  top: .6rem;
  right: .8rem;
  font-family: 'Cinzel', serif;
  font-size: .7rem;
  color: rgba(200, 148, 26, .4);
  font-weight: 700;
}

.members-hidden {
  display: none !important;
}

@media (max-width:576px) {
  .members-grid {
    grid-template-columns: 1fr;
  }
}

/* ── INDIA REGION SECTION ── */
.india-section {
  background: linear-gradient(135deg, #fdf8f0 0%, #fff 50%, #fdf8f0 100%);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.india-section::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 153, 51, 0.15), transparent 70%);
  border-radius: 50%;
  animation: floatOrb 8s ease-in-out infinite;
}

.india-section::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(19, 136, 8, 0.15), transparent 70%);
  border-radius: 50%;
  animation: floatOrb 9s ease-in-out infinite reverse;
}

.india-flag-strip {
  display: inline-flex;
  align-items: center;
  gap: 0;
  margin-bottom: 1rem;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
}

.india-flag-strip span {
  display: block;
  width: 22px;
  height: 14px;
}

.india-flag-strip .saffron {
  background: #FF9933;
}

.india-flag-strip .white {
  background: #FFFFFF;
  position: relative;
}

.india-flag-strip .white::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  width: 10px;
  height: 10px;
  transform: translate(-50%, -50%);
  border: 1.2px solid #000080;
  border-radius: 50%;
}

.india-flag-strip .green {
  background: #138808;
}

.india-intro p {
  color: #444;
  line-height: 1.9;
  font-size: .97rem;
  margin-bottom: 1.1rem;
}

.province-card {
  position: relative;
  background: #fff;
  border-radius: 8px;
  padding: 2rem 1.6rem;
  height: 100%;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.07);
  border-top: 4px solid var(--gold);
  transition: transform .45s cubic-bezier(.2, .7, .3, 1), box-shadow .45s, border-color .3s;
  overflow: hidden;
}

.province-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 153, 51, 0.05), transparent 50%, rgba(19, 136, 8, 0.05));
  opacity: 0;
  transition: opacity .4s;
  pointer-events: none;
}

.province-card:hover {
  transform: translateY(-10px) rotateZ(-0.4deg);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.16);
  border-top-color: #FF9933;
}

.province-card:hover::before {
  opacity: 1;
}

.province-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #FF9933, var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: #fff;
  margin-bottom: 1.2rem;
  box-shadow: 0 6px 16px rgba(255, 153, 51, 0.4);
  animation: provinceGlow 3s ease-in-out infinite;
}

.province-card:nth-child(2) .province-icon {
  animation-delay: .6s;
  background: linear-gradient(135deg, #138808, #0a4a2f);
  box-shadow: 0 6px 16px rgba(19, 136, 8, 0.4);
}

.province-card:nth-child(3) .province-icon {
  animation-delay: 1.2s;
  background: linear-gradient(135deg, #c8941a, #e07b1a);
  box-shadow: 0 6px 16px rgba(200, 148, 26, 0.4);
}

.province-name {
  font-family: 'Cinzel', serif;
  font-size: 1.2rem;
  color: var(--dark);
  margin-bottom: .5rem;
}

.province-tag {
  display: inline-block;
  font-size: .65rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .9rem;
}

.province-desc {
  font-size: .88rem;
  color: #666;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.province-feat {
  list-style: none;
  padding: 0;
  margin: 0;
}

.province-feat li {
  font-size: .82rem;
  color: #555;
  padding: .3rem 0 .3rem 1.3rem;
  position: relative;
}

.province-feat li::before {
  content: '\F633';
  font-family: 'bootstrap-icons';
  position: absolute;
  left: 0;
  top: .3rem;
  color: var(--gold);
  font-size: .85rem;
}

.india-info-card {
  background: linear-gradient(135deg, var(--dark), #0a4a2f);
  border-radius: 8px;
  padding: 2.2rem;
  color: #fff;
  position: relative;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
}

.india-info-card::before {
  content: '';
  position: absolute;
  right: -60px;
  top: -60px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(240, 192, 80, .25), transparent 70%);
  border-radius: 50%;
  animation: floatOrb 6s ease-in-out infinite;
}

.india-info-title {
  font-family: 'Cinzel', serif;
  color: var(--light-gold);
  font-size: 1.25rem;
  margin-bottom: 1.3rem;
  position: relative;
  z-index: 1;
}

.india-info-list {
  list-style: none;
  padding: 0;
  margin: 0;
  position: relative;
  z-index: 1;
}

.india-info-list li {
  display: flex;
  align-items: flex-start;
  gap: .8rem;
  padding: .7rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  font-size: .88rem;
  color: rgba(255, 255, 255, .78);
  line-height: 1.6;
}

.india-info-list li:last-child {
  border-bottom: none;
}

.india-info-list i {
  color: var(--gold);
  font-size: 1rem;
  margin-top: .15rem;
  flex-shrink: 0;
}

.india-stat-strip {
  background: linear-gradient(90deg, #FF9933, #fff, #138808);
  background-size: 200% 100%;
  padding: 1.5rem 0;
  margin-top: 3rem;
  border-radius: 6px;
  position: relative;
  animation: stripShift 12s ease-in-out infinite;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .08);
}

.india-stat-strip .inner {
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(6px);
  margin: 0 6px;
  border-radius: 4px;
  padding: 1.4rem 1rem;
}

.india-stat-item {
  text-align: center;
  padding: .3rem;
}

.india-stat-num {
  font-family: 'Cinzel', serif;
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1;
}

.india-stat-num span {
  color: #FF9933;
}

.india-stat-label {
  font-size: .7rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: #666;
  margin-top: .4rem;
}

.leader-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  margin-top: 1.5rem;
}

.leader-pill {
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(240, 192, 80, .3);
  color: rgba(255, 255, 255, .85);
  padding: .45rem 1rem;
  border-radius: 20px;
  font-size: .78rem;
  transition: all .3s;
}

.leader-pill:hover {
  background: var(--gold);
  color: #fff;
  border-color: var(--gold);
  transform: translateY(-2px);
}

@media (max-width:768px) {
  .india-stat-num {
    font-size: 1.4rem;
  }
}

/* India Hero Showcase */
.india-hero {
  position: relative;
  height: 420px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 0, 0, .18);
  margin-bottom: 4rem;
}

.india-hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.08);
  transition: opacity 1.2s ease, transform 7s ease;
}

.india-hero-slide.active {
  opacity: 1;
  transform: scale(1);
}

.india-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10, 26, 16, .78) 0%, rgba(10, 74, 47, .55) 50%, rgba(255, 153, 51, .35) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2.5rem;
  z-index: 2;
}

.india-hero-tag {
  display: inline-block;
  background: rgba(255, 153, 51, .85);
  color: #fff;
  font-size: .7rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  padding: .4rem 1rem;
  border-radius: 2px;
  width: max-content;
  margin-bottom: 1rem;
  backdrop-filter: blur(4px);
}

.india-hero h3 {
  font-family: 'Cinzel', serif;
  color: #fff;
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  margin: 0;
  max-width: 700px;
  text-shadow: 0 2px 14px rgba(0, 0, 0, .4);
}

.india-hero-dots {
  position: absolute;
  bottom: 1.4rem;
  right: 1.6rem;
  display: flex;
  gap: .5rem;
  z-index: 3;
}

.india-hero-dots span {
  width: 28px;
  height: 3px;
  background: rgba(255, 255, 255, .3);
  cursor: pointer;
  transition: background .3s;
}

.india-hero-dots span.active {
  background: var(--light-gold);
}

/* India Activities Cards */
.india-activities {
  margin-top: 3rem;
}

.activity-card {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  height: 280px;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(0, 0, 0, .1);
  transition: transform .45s cubic-bezier(.2, .7, .3, 1), box-shadow .45s;
}

.activity-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s ease;
}

.activity-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, .2);
}

.activity-card:hover img {
  transform: scale(1.1);
}

.activity-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 40%, rgba(10, 26, 16, .92));
  padding: 1.4rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: #fff;
}

.activity-badge {
  align-self: flex-start;
  background: var(--gold);
  color: #fff;
  font-size: .65rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  padding: .3rem .7rem;
  border-radius: 2px;
  margin-bottom: .7rem;
}

.activity-title {
  font-family: 'Cinzel', serif;
  font-size: 1.05rem;
  margin-bottom: .5rem;
  line-height: 1.35;
}

.activity-meta {
  font-size: .75rem;
  color: rgba(255, 255, 255, .7);
  letter-spacing: .08em;
}

.activity-meta i {
  color: var(--light-gold);
  margin-right: .3rem;
}

/* India Gallery Strip */
.india-gallery {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
  margin-top: 3rem;
}

.india-gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  aspect-ratio: 1;
  cursor: pointer;
}

.india-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease, filter .4s ease;
  filter: saturate(.85);
}

.india-gallery-item:hover img {
  transform: scale(1.12);
  filter: saturate(1.15);
}

.india-gallery-item::after {
  content: '\F52A';
  font-family: 'bootstrap-icons';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.4rem;
  background: rgba(10, 74, 47, 0);
  opacity: 0;
  transition: opacity .3s, background .3s;
}

.india-gallery-item:hover::after {
  opacity: 1;
  background: rgba(10, 74, 47, .45);
}

.india-gallery-item:first-child {
  grid-column: span 2;
  grid-row: span 2;
  aspect-ratio: auto;
}

@media (max-width:768px) {
  .india-hero {
    height: 320px;
  }

  .india-hero-overlay {
    padding: 1.5rem;
  }

  .india-gallery {
    grid-template-columns: repeat(3, 1fr);
  }

  .india-gallery-item:first-child {
    grid-column: span 3;
    grid-row: auto;
    aspect-ratio: 16/9;
  }
}

/* ── ADDITIONAL ANIMATIONS ── */

/* float orb (used for ambient decoration) */
@keyframes floatOrb {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  50% {
    transform: translate(20px, -20px) scale(1.08);
  }
}

/* slow gradient strip shift */
@keyframes stripShift {

  0%,
  100% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }
}

/* glow pulse */
@keyframes provinceGlow {

  0%,
  100% {
    box-shadow: 0 6px 16px rgba(255, 153, 51, 0.4), 0 0 0 0 rgba(255, 153, 51, 0.4);
  }

  50% {
    box-shadow: 0 6px 20px rgba(255, 153, 51, 0.6), 0 0 0 8px rgba(255, 153, 51, 0);
  }
}

/* fade-flip (new entrance) */
.fade-flip {
  opacity: 0;
  transform: perspective(800px) rotateY(-22deg) translateY(20px);
  transform-origin: left center;
  transition: opacity .85s ease, transform .85s cubic-bezier(.2, .8, .25, 1);
}

.fade-flip.visible {
  opacity: 1;
  transform: perspective(800px) rotateY(0) translateY(0);
}

/* fade-blur (cinematic) */
.fade-blur {
  opacity: 0;
  filter: blur(10px);
  transition: opacity .9s ease, filter .9s ease;
}

.fade-blur.visible {
  opacity: 1;
  filter: blur(0);
}

/* fade-rise (gentle lift with slight rotate) */
.fade-rise {
  opacity: 0;
  transform: translateY(60px) rotateZ(-1.2deg);
  transition: opacity .9s ease, transform .9s cubic-bezier(.2, .8, .25, 1);
}

.fade-rise.visible {
  opacity: 1;
  transform: translateY(0) rotateZ(0);
}

/* shimmer (looped accent) */
.shimmer-text {
  background: linear-gradient(90deg, var(--dark) 0%, var(--gold) 25%, var(--light-gold) 50%, var(--gold) 75%, var(--dark) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmerMove 4.5s linear infinite;
}

@keyframes shimmerMove {
  0% {
    background-position: 0% center;
  }

  100% {
    background-position: 200% center;
  }
}

/* slow drift for the section eyebrow */
.india-eyebrow {
  animation: eyebrowDrift 3.5s ease-in-out infinite;
}

@keyframes eyebrowDrift {

  0%,
  100% {
    letter-spacing: .25em;
  }

  50% {
    letter-spacing: .32em;
  }
}

/* subtle continuous bounce for arrow indicators */
@keyframes arrowBounce {

  0%,
  100% {
    transform: translateX(0);
  }

  50% {
    transform: translateX(6px);
  }
}

.arrow-bounce {
  animation: arrowBounce 1.6s ease-in-out infinite;
}