﻿/*==================================================
  Jai Navdurga Mitra Mandal
  Premium 3D Institutional Theme — v3.0
==================================================*/

/*==============================
  Google Fonts
==============================*/
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600;700;800;900&family=Poppins:wght@300;400;500;600;700&family=Tiro+Devanagari+Hindi&display=swap');

/*==============================
  Design Tokens
==============================*/
:root {
  /* Brand colors */
  --gold: #D4AF37;
  --gold-light: #F0D060;
  --gold-dark: #A88B20;
  --orange: #E8860A;
  --gold-rgb: 212,175,55;
  --orange-rgb: 232,134,10;

  /* Backgrounds — rich layered darks */
  --bg:  #060608;
  --bg2: #0b0b0f;
  --bg3: #040406;
  --bg-card: rgba(255,255,255,0.055);
  --bg-card-hover: rgba(255,255,255,0.09);

  /* Glass */
  --glass: rgba(255,255,255,0.055);
  --glass-border: rgba(255,255,255,0.10);
  --glass-border-hover: rgba(212,175,55,0.45);

  /* Text */
  --white: #ffffff;
  --text: #c8c8cc;
  --text-muted: #888898;

  /* Shadows */
  --shadow-sm: 0 4px 16px rgba(0,0,0,0.35);
  --shadow-md: 0 12px 36px rgba(0,0,0,0.50);
  --shadow-lg: 0 24px 64px rgba(0,0,0,0.60);
  --shadow-gold: 0 8px 32px rgba(212,175,55,0.20);
  --shadow-gold-hover: 0 16px 48px rgba(212,175,55,0.35);

  /* Geometry */
  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-pill: 9999px;

  /* Transitions */
  --transition: 0.38s cubic-bezier(0.25,0.8,0.25,1);
  --transition-fast: 0.22s ease;

  /* Spacing */
  --section-py: 80px;

  /* Typography scale */
  --fs-display: clamp(3rem, 5.5vw, 5.2rem);
  --fs-h2: clamp(1.9rem, 3.2vw, 3rem);
  --fs-h3: clamp(1.3rem, 2vw, 1.75rem);
  --fs-body: 1rem;
  --fs-small: 0.88rem;
  --fs-tag: 0.78rem;
}

/*==============================
  Reset & Base
==============================*/
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  background: var(--bg);
  color: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  transition: var(--transition);
}

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

p {
  color: var(--text);
  line-height: 1.85;
}

/*==============================
  Headings
==============================*/
h1, h2, h3, h4, h5, h6 {
  font-family: 'Cinzel', serif;
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
}

/*==============================
  Scrollbar
==============================*/
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #0a0a0c; }
::-webkit-scrollbar-thumb {
  background: linear-gradient(var(--gold), var(--orange));
  border-radius: 99px;
}

/*==============================
  Selection
==============================*/
::selection {
  background: var(--gold);
  color: #000;
}

/*==============================
  Section Layout
==============================*/
.section-padding {
  padding: var(--section-py) 0;
  position: relative;
}

.section-dark {
  background: var(--bg2);
}

.section-tag {
  display: inline-block;
  color: var(--gold);
  font-size: var(--fs-tag);
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 6px 18px;
  border: 1px solid rgba(var(--gold-rgb), 0.28);
  border-radius: var(--radius-pill);
  background: rgba(var(--gold-rgb), 0.07);
  backdrop-filter: blur(8px);
}

.section-title {
  font-size: var(--fs-h2);
  margin-top: 14px;
  letter-spacing: -0.01em;
}

.section-title span {
  color: var(--gold);
}

.section-subtitle {
  max-width: 660px;
  margin: 16px auto 0;
  color: var(--text-muted);
  font-size: 1.02rem;
}

.section-text {
  font-size: var(--fs-body);
  color: var(--text);
}

/* Ambient glow blobs for dark sections */
.section-dark::before,
.section-dark::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.section-dark::before {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(var(--gold-rgb),0.06), transparent 70%);
  top: -180px; right: -180px;
  filter: blur(60px);
}

.section-dark::after {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(var(--orange-rgb),0.05), transparent 70%);
  bottom: -140px; left: -140px;
  filter: blur(60px);
}

/*==============================
  Premium Glass Card — Base
==============================*/
.glass-card {
  background: var(--bg-card);
  backdrop-filter: blur(22px) saturate(140%);
  -webkit-backdrop-filter: blur(22px) saturate(140%);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md),
              inset 0 1px 0 rgba(255,255,255,0.06);
  transition: transform var(--transition),
              box-shadow var(--transition),
              border-color var(--transition),
              background var(--transition);
  transform-style: preserve-3d;
  will-change: transform;
}

.glass-card:hover {
  border-color: var(--glass-border-hover);
  box-shadow: var(--shadow-gold-hover),
              inset 0 1px 0 rgba(255,255,255,0.10);
}

/*==============================
  Buttons
==============================*/
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: var(--radius-pill);
  padding: 14px 36px;
  font-weight: 600;
  font-size: 0.93rem;
  letter-spacing: 0.5px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

/* Ripple shine */
.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 30%, rgba(255,255,255,0.18) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform 0.55s ease;
}

.btn:hover::after {
  transform: translateX(100%);
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--orange));
  color: #000;
  border: none;
  box-shadow: 0 4px 20px rgba(var(--gold-rgb), 0.35);
}

.btn-gold:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 32px rgba(var(--gold-rgb), 0.55);
  color: #000;
}

.btn-gold:active {
  transform: translateY(0) scale(0.99);
}

.btn-outline-gold {
  color: var(--gold);
  border: 1.5px solid rgba(var(--gold-rgb), 0.55);
  background: rgba(var(--gold-rgb), 0.04);
}

.btn-outline-gold:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #000;
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(var(--gold-rgb), 0.40);
}

/*==============================
  Preloader
==============================*/
#preloader {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 99999;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 20px;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

#preloader.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-wrapper {
  text-align: center;
}

.loader-ring {
  width: 72px;
  height: 72px;
  border: 3px solid rgba(var(--gold-rgb), 0.12);
  border-top: 3px solid var(--gold);
  border-right: 3px solid var(--orange);
  border-radius: 50%;
  animation: spin 0.9s linear infinite;
  margin: 0 auto 18px;
  box-shadow: 0 0 30px rgba(var(--gold-rgb), 0.18);
}

.loader-wrapper h4 {
  font-family: 'Cinzel', serif;
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 2px;
  opacity: 0.9;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/*==============================
  Navbar
==============================*/
.luxury-navbar {
  background: rgba(6,6,8,0.30);
  backdrop-filter: blur(24px) saturate(160%);
  -webkit-backdrop-filter: blur(24px) saturate(160%);
  border-bottom: 1px solid rgba(var(--gold-rgb), 0.06);
  transition: background 0.4s ease, box-shadow 0.4s ease,
              padding 0.4s ease, border-color 0.4s ease;
  padding: 14px 0;
}

.luxury-navbar.scrolled {
  background: rgba(4,4,6,0.94);
  box-shadow: 0 4px 30px rgba(0,0,0,0.55);
  padding: 8px 0;
  border-bottom-color: rgba(var(--gold-rgb), 0.12);
}

.logo {
  width: 50px;
  transition: transform var(--transition);
  filter: drop-shadow(0 0 8px rgba(var(--gold-rgb),0.25));
}

.logo:hover {
  transform: rotate(-6deg) scale(1.08);
}

.luxury-navbar .navbar-brand {
  flex-shrink: 0;
  margin-right: 20px;
}

.luxury-navbar .navbar-brand h5 {
  font-family: 'Cinzel', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin: 0;
  letter-spacing: 0.5px;
}

.luxury-navbar .navbar-brand small {
  font-size: 0.7rem;
  letter-spacing: 1px;
  color: var(--gold);
  font-weight: 600;
}

.navbar-nav .nav-link {
  color: rgba(255,255,255,0.87);
  margin-left: 4px;
  font-weight: 500;
  font-size: 0.9rem;
  padding: 8px 12px !important;
  position: relative;
  transition: color var(--transition-fast);
}

.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  left: 12px; bottom: 2px;
  width: 0; height: 1.5px;
  background: linear-gradient(90deg, var(--gold), var(--orange));
  transition: width 0.35s cubic-bezier(0.25,0.8,0.25,1);
  border-radius: 2px;
}

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

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  width: calc(100% - 24px);
}

.navbar-toggler {
  border: 1px solid rgba(var(--gold-rgb), 0.30);
  border-radius: var(--radius-sm);
  padding: 6px 10px;
}

.navbar-toggler:focus { box-shadow: 0 0 0 3px rgba(var(--gold-rgb), 0.20); }
.navbar-toggler-icon { filter: invert(1); }

/*==============================
  Dropdown (Language / Theme)
==============================*/
.navbar .dropdown-menu {
  min-width: 220px;
  background: rgba(10,10,14,0.97);
  backdrop-filter: blur(24px);
  border: 1px solid rgba(var(--gold-rgb), 0.14);
  border-radius: var(--radius-md);
  padding: 10px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.55);
  margin-top: 10px !important;
}

.navbar .dropdown-item {
  color: rgba(255,255,255,0.88);
  border-radius: var(--radius-sm);
  padding: 11px 14px;
  font-weight: 500;
  font-size: 0.88rem;
  transition: background var(--transition-fast), color var(--transition-fast), transform var(--transition-fast);
}

.navbar .dropdown-item:hover {
  background: rgba(var(--gold-rgb), 0.10);
  color: var(--gold);
  transform: translateX(5px);
}

.navbar .dropdown-item.active,
.navbar .dropdown-item:active {
  background: rgba(var(--gold-rgb), 0.16);
  color: var(--gold) !important;
}

.navbar .dropdown-toggle::after { margin-left: 6px; }

.theme-dot {
  display: inline-block;
  width: 12px; height: 12px;
  border-radius: 50%;
  margin-right: 9px;
  vertical-align: -1px;
  background: var(--dot);
  box-shadow: 0 0 8px var(--dot);
}

/*==============================
  Hero Section
==============================*/
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 90px;
  background:
    radial-gradient(ellipse 80% 60% at 75% 30%, rgba(var(--gold-rgb),0.10), transparent 55%),
    radial-gradient(ellipse 60% 50% at 20% 80%, rgba(var(--orange-rgb),0.08), transparent 50%),
    var(--bg);
}

/* Rich layered background texture */
.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23D4AF37' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.4;
  pointer-events: none;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    110deg,
    rgba(6,6,8,0.88) 0%,
    rgba(6,6,8,0.60) 50%,
    rgba(6,6,8,0.25) 100%
  );
  z-index: 1;
}

.hero-section .container {
  position: relative;
  z-index: 2;
}

/*-- Hero Tag --*/
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  font-size: var(--fs-tag);
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 8px 22px;
  border: 1px solid rgba(var(--gold-rgb), 0.30);
  border-radius: var(--radius-pill);
  background: rgba(var(--gold-rgb), 0.08);
  backdrop-filter: blur(8px);
  box-shadow: 0 0 20px rgba(var(--gold-rgb),0.10);
}

/*-- Hero Title --*/
.hero-title {
  font-size: var(--fs-display);
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin-top: 20px;
}

/*-- Line Reveal Animation --*/
.reveal-line {
  display: block;
  overflow: hidden;
}

.hero-tag.reveal-line {
  display: inline-flex;
}

.reveal-line-inner {
  display: inline-block;
  transform: translateY(110%);
  animation: lineUp 0.95s cubic-bezier(0.22,1,0.36,1) 0.30s forwards;
}

.hero-title .reveal-line:nth-child(2) .reveal-line-inner {
  animation-delay: 0.50s;
}

.hero-title .reveal-line:first-child .reveal-line-inner {
  color: var(--gold);
  text-shadow: 0 0 60px rgba(var(--gold-rgb),0.35);
}

.hero-title .reveal-line:nth-child(2) .reveal-line-inner {
  color: var(--white);
}

@keyframes lineUp {
  to { transform: translateY(0); }
}

/*-- Hero Subtitle & Buttons --*/
.hero-subtitle {
  font-size: 1.05rem;
  max-width: 560px;
  margin-top: 20px;
  color: var(--text);
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
}

/*-- Hero Image --*/
.hero-image-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-glow {
  position: absolute;
  width: 480px; height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(var(--gold-rgb),0.22) 0%, transparent 70%);
  filter: blur(55px);
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  pointer-events: none;
  animation: glowPulse 6s ease-in-out infinite;
}

@keyframes glowPulse {
  0%, 100% { opacity: 0.8; transform: translate(-50%,-50%) scale(1); }
  50% { opacity: 1; transform: translate(-50%,-50%) scale(1.06); }
}

.hero-image {
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 30px 60px rgba(var(--gold-rgb),0.18))
          drop-shadow(0 0 120px rgba(var(--orange-rgb),0.10));
  animation: floating 5.5s ease-in-out infinite;
  max-height: 580px;
}

@keyframes floating {
  0%,100% { transform: translateY(0px); }
  50% { transform: translateY(-16px); }
}

/* 3D ring around image */
.hero-image-wrapper::before {
  content: "";
  position: absolute;
  width: 420px; height: 420px;
  border-radius: 50%;
  border: 1px solid rgba(var(--gold-rgb),0.12);
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  animation: rotateSlow 30s linear infinite;
}

.hero-image-wrapper::after {
  content: "";
  position: absolute;
  width: 340px; height: 340px;
  border-radius: 50%;
  border: 1px dashed rgba(var(--gold-rgb),0.08);
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  animation: rotateSlow 20s linear infinite reverse;
}

@keyframes rotateSlow {
  to { transform: translate(-50%,-50%) rotate(360deg); }
}

/*-- Scroll Indicator --*/
.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}

.scroll-indicator a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(var(--gold-rgb),0.7);
  font-size: 1.4rem;
  animation: bounce 2.2s ease-in-out infinite;
}

@keyframes bounce {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(9px); }
}

/*==============================
  Countdown
==============================*/
.countdown-wrapper {
  padding: 28px 24px;
  margin-top: 40px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(var(--gold-rgb),0.15);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow-md),
              inset 0 1px 0 rgba(255,255,255,0.05);
}

.count-box {
  padding: 8px 4px;
  position: relative;
}

.count-box h2 {
  color: var(--gold);
  font-size: 2.4rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 6px;
  text-shadow: 0 0 30px rgba(var(--gold-rgb),0.40);
}

.count-box span {
  color: var(--text-muted);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.count-box:not(:last-child)::after {
  content: ":";
  position: absolute;
  right: -10px;
  top: 50%;
  transform: translateY(-60%);
  color: rgba(var(--gold-rgb),0.45);
  font-size: 1.6rem;
  font-weight: 700;
  font-family: 'Cinzel', serif;
}

/*==============================
  Festive Marquee
==============================*/
.festive-marquee {
  overflow: hidden;
  white-space: nowrap;
  background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 40%, var(--orange) 100%);
  color: #000;
  padding: 13px 0;
  border-top: 1px solid rgba(0,0,0,0.20);
  border-bottom: 1px solid rgba(0,0,0,0.20);
  box-shadow: 0 2px 20px rgba(var(--gold-rgb),0.20);
}

.marquee-track {
  display: inline-flex;
  align-items: center;
  gap: 36px;
  padding-right: 36px;
  animation: marquee 36s linear infinite;
  font-family: 'Tiro Devanagari Hindi','Poppins',sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 1px;
}

.marquee-track i { font-size: 0.75rem; opacity: 0.8; }

.festive-marquee:hover .marquee-track { animation-play-state: paused; }

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/*==============================
  Statistics Section
==============================*/
.stats-section {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
  background: var(--bg);
}

/* Premium background grid */
.stats-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(var(--gold-rgb),0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(var(--gold-rgb),0.03) 1px, transparent 1px);
  background-size: 55px 55px;
  pointer-events: none;
}

.stat-card {
  padding: 44px 28px 36px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  transform-style: preserve-3d;
}

/* Top border highlight */
.stat-card::before {
  content: "";
  position: absolute;
  top: 0; left: 15%; right: 15%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  border-radius: 2px;
  opacity: 0.7;
}

/* Bottom inner glow */
.stat-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  background: radial-gradient(ellipse at 50% 100%, rgba(var(--gold-rgb),0.06), transparent 65%);
  pointer-events: none;
}

.stat-card:hover {
  transform: translateY(-8px) perspective(600px) rotateX(2deg);
  border-color: rgba(var(--gold-rgb),0.40);
  box-shadow: var(--shadow-gold-hover), inset 0 1px 0 rgba(255,255,255,0.08);
}

.stat-card i {
  font-size: 2.4rem;
  color: var(--gold);
  margin-bottom: 16px;
  display: block;
  filter: drop-shadow(0 0 12px rgba(var(--gold-rgb),0.35));
}

.stat-card h2 {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--gold);
  margin-bottom: 8px;
  line-height: 1;
  text-shadow: 0 0 40px rgba(var(--gold-rgb),0.30);
}

.stat-card p {
  color: var(--text-muted);
  font-size: 0.80rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin: 0;
}

/*==============================
  About Section
==============================*/
.image-stack {
  position: relative;
}

.image-stack img {
  width: 100%;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg), 0 0 60px rgba(var(--gold-rgb),0.08);
  transition: transform 0.55s cubic-bezier(0.25,0.8,0.25,1),
              box-shadow 0.55s ease;
  object-fit: cover;
  aspect-ratio: 4/3;
}

.image-stack img:hover {
  transform: scale(1.025) translateY(-6px);
  box-shadow: var(--shadow-lg), 0 20px 60px rgba(var(--gold-rgb),0.16);
}

/* Decorative frame around image */
.image-stack::before {
  content: "";
  position: absolute;
  inset: -12px;
  border-radius: 36px;
  border: 1px solid rgba(var(--gold-rgb),0.12);
  pointer-events: none;
  z-index: -1;
}

.image-stack::after {
  content: "";
  position: absolute;
  bottom: -20px; right: -20px;
  width: 180px; height: 180px;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, rgba(var(--gold-rgb),0.08), transparent);
  border: 1px solid rgba(var(--gold-rgb),0.10);
  z-index: -1;
}

/* Feature boxes */
.feature-box {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: rgba(var(--gold-rgb),0.05);
  border: 1px solid rgba(var(--gold-rgb),0.12);
  border-radius: var(--radius-md);
  transition: background var(--transition-fast), border-color var(--transition-fast), transform var(--transition-fast);
}

.feature-box:hover {
  background: rgba(var(--gold-rgb),0.09);
  border-color: rgba(var(--gold-rgb),0.30);
  transform: translateX(5px);
}

.feature-box i {
  color: var(--gold);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.feature-box span {
  color: rgba(255,255,255,0.9);
  font-weight: 500;
  font-size: 0.92rem;
}

/*==============================
  Journey / Timeline
==============================*/
.timeline {
  position: relative;
  max-width: 1100px;
  margin: 64px auto 0;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 0; left: 50%;
  width: 2px; height: 100%;
  background: linear-gradient(to bottom, transparent 0%, var(--gold) 15%, var(--orange) 50%, var(--gold) 85%, transparent 100%);
  transform: translateX(-50%);
}

.timeline-item {
  position: relative;
  width: 50%;
  padding: 16px 48px;
  margin-bottom: 32px;
}

.timeline-item.left  { left: 0; text-align: right; }
.timeline-item.right { left: 50%; text-align: left; }

/* Dot on the line */
.timeline-item::before {
  content: "";
  position: absolute;
  top: 44px;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--orange));
  border: 3px solid var(--bg2);
  box-shadow: 0 0 0 3px rgba(var(--gold-rgb),0.25),
              0 0 20px rgba(var(--gold-rgb),0.45);
  z-index: 1;
}

.timeline-item.left::before  { right: -9px; }
.timeline-item.right::before { left: -7px; }

.timeline-content {
  padding: 28px 30px;
  position: relative;
  transition: var(--transition);
}

.timeline-content:hover {
  transform: translateY(-6px);
  border-color: rgba(var(--gold-rgb),0.40);
  box-shadow: var(--shadow-gold-hover);
}

.timeline-year {
  display: inline-block;
  padding: 6px 18px;
  border-radius: var(--radius-pill);
  background: linear-gradient(135deg, var(--gold), var(--orange));
  color: #000;
  font-weight: 800;
  font-size: 0.88rem;
  letter-spacing: 1px;
  margin-bottom: 14px;
  box-shadow: 0 4px 16px rgba(var(--gold-rgb),0.30);
}

.timeline-content h4 {
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.timeline-content p { margin: 0; font-size: 0.92rem; }

/*==============================
  Events Section
==============================*/
.event-card {
  padding: 36px 30px;
  height: 100%;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}

/* Animated gradient sweep on hover */
.event-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(var(--gold-rgb),0.07), transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
  border-radius: inherit;
  pointer-events: none;
}

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

.event-card:hover {
  transform: translateY(-8px) scale(1.008);
  border-color: rgba(var(--gold-rgb),0.40);
  box-shadow: var(--shadow-gold-hover);
}

.event-icon {
  width: 66px; height: 66px;
  border-radius: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(135deg, var(--gold), var(--orange));
  color: #000;
  font-size: 1.7rem;
  margin-bottom: 24px;
  box-shadow: 0 8px 24px rgba(var(--gold-rgb),0.30);
  transition: transform var(--transition), box-shadow var(--transition);
}

.event-card:hover .event-icon {
  transform: scale(1.08) rotate(-4deg);
  box-shadow: 0 12px 32px rgba(var(--gold-rgb),0.45);
}

.event-date {
  display: inline-block;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.event-card h4 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.event-card p { margin: 0; font-size: 0.92rem; }

/*==============================
  Gallery
==============================*/
.gallery-item {
  position: relative;
  overflow: hidden;
  display: block;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}

.gallery-item:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-gold-hover);
}

.gallery-item img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform 0.65s cubic-bezier(0.25,0.8,0.25,1);
  display: block;
}

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

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.80) 0%,
    rgba(var(--gold-rgb),0.12) 100%
  );
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.42s ease;
}

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

.gallery-overlay i {
  width: 70px; height: 70px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(255,255,255,0.10);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.18);
  color: var(--gold);
  font-size: 1.8rem;
  transform: scale(0.65);
  transition: transform 0.38s cubic-bezier(0.34,1.56,0.64,1);
}

.gallery-item:hover .gallery-overlay i { transform: scale(1); }

/* Border highlight on hover */
.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  border: 1px solid transparent;
  transition: border-color 0.38s ease;
  pointer-events: none;
}

.gallery-item:hover::after {
  border-color: rgba(var(--gold-rgb),0.40);
}

/*-- Modal --*/
/*-- Modal styles removed — replaced by custom lightbox --*/

/*==============================
  Sponsors — 4-visible sliding window
==============================*/

/* Outer viewport — shows exactly 4 cards */
.sponsor-slider {
  overflow: hidden;
  position: relative;
  width: 100%;
}

/* Track — all cards in a row, JS slides this left */
.sponsor-slider-track {
  display: flex;
  flex-wrap: nowrap;       /* always one row, even after DOM rotation */
  gap: 20px;
  transition: transform 0.65s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

/* Each card — exactly 1/4 of container width minus gaps */
.sponsor-slide {
  flex: 0 0 calc(25% - 15px);
  height: 320px;
  border-radius: var(--radius-md);
  background: #ffffff !important;
  border: 1.5px solid rgba(var(--gold-rgb), 0.22) !important;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition),
              box-shadow var(--transition),
              border-color var(--transition);
}

/* Gold top accent line */
.sponsor-slide::before {
  content: "";
  position: absolute;
  top: 0; left: 10%; right: 10%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(var(--gold-rgb), 0.65), transparent);
  border-radius: 2px;
  z-index: 2;
  pointer-events: none;
}

.sponsor-slide:hover {
  transform: translateY(-5px) scale(1.02);
  border-color: rgba(var(--gold-rgb), 0.55) !important;
  box-shadow: 0 16px 48px rgba(var(--gold-rgb), 0.20);
}

/* Image — object-fit:contain shows full image + name, white bg fills space */
.sponsor-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  filter: none;
  transition: transform 0.42s ease;
  padding: 6px;
}

.sponsor-slide:hover img {
  transform: scale(1.04);
}

/* Responsive */
@media (max-width: 991px) {
  .sponsor-slide {
    flex: 0 0 calc(50% - 10px);
    height: 260px;
  }
}

@media (max-width: 576px) {
  .sponsor-slide {
    flex: 0 0 calc(50% - 8px);
    height: 210px;
  }
  .sponsor-slider-track { gap: 16px; }
}

/* Remove old carousel control styles that no longer apply */
.carousel-control-prev,
.carousel-control-next {
  width: 50px; height: 50px;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 50%;
  backdrop-filter: blur(10px);
}

.carousel-control-prev { left: -20px; }
.carousel-control-next { right: -20px; }
.carousel-control-prev-icon,
.carousel-control-next-icon { filter: invert(1); width: 18px; height: 18px; }

@media (max-width: 991px) {
  .carousel-control-prev, .carousel-control-next { display: none; }
}

/*==============================
  Committee
==============================*/
/*==============================
  Committee — circular photo card
  matches reference design
==============================*/
.committee-card {
  padding: 36px 28px 32px;
  text-align: center;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(var(--gold-rgb), 0.18) !important;
  background: linear-gradient(160deg, #1a1a1e 0%, #111114 100%) !important;
  position: relative;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

/* Subtle radial glow at top */
.committee-card::before {
  content: "";
  position: absolute;
  top: -60px; left: 50%;
  transform: translateX(-50%);
  width: 260px; height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(var(--gold-rgb),0.08), transparent 65%);
  pointer-events: none;
}

.committee-card:hover {
  transform: translateY(-8px);
  border-color: rgba(var(--gold-rgb), 0.45) !important;
  box-shadow: 0 24px 64px rgba(0,0,0,0.60),
              0 0 50px rgba(var(--gold-rgb), 0.12);
}

/* ── Circular image ── */
.committee-circle-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
}

/* Outer gold ring */
.committee-ring {
  width: 180px; height: 230px;
  border-radius: 5%;
  /* Double gold ring — thick outer, thin inner */
  background: conic-gradient(
    var(--gold-dark) 0deg,
    var(--gold) 90deg,
    var(--gold-light) 180deg,
    var(--gold) 270deg,
    var(--gold-dark) 360deg
  );
  padding: 4px;
  box-shadow:
    0 0 0 8px rgba(var(--gold-rgb), 0.08),
    0 0 30px rgba(var(--gold-rgb), 0.20),
    0 8px 32px rgba(0,0,0,0.55);
  transition: box-shadow var(--transition), transform var(--transition);
  position: relative;
}

/* Inner spacer ring — the dark gap between outer gold and image */
.committee-ring::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: 5%;
  background: #111114;
  box-shadow: inset 0 0 0 1px rgba(var(--gold-rgb), 0.22);
  z-index: 0;
}

.committee-card:hover .committee-ring {
  transform: scale(1.04);
  box-shadow:
    0 0 0 10px rgba(var(--gold-rgb), 0.12),
    0 0 45px rgba(var(--gold-rgb), 0.30),
    0 12px 40px rgba(0,0,0,0.65);
}

/* Photo inside ring */
.committee-circle-img {
  width: 100%;
  height: 100%;
  border-radius: 5%;
  object-fit: cover;
  object-position: top center;
  display: block;
  position: relative;
  z-index: 1;
  /* Inset to sit inside the inner dark gap */
  padding: 2px;
  transition: transform 0.55s ease;
}

.committee-card:hover .committee-circle-img {
  transform: scale(1.06);
}

/* ── Role title ── */
.committee-name {
  font-family: 'Cinzel', serif;
  font-size: 1.25rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: 0.04em;
  margin: 0 0 8px;
  position: relative; z-index: 1;
}

/* ── Sub-title ── */
.committee-sub {
  font-size: 0.95rem;
  font-weight: 400;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.5px;
  position: relative; z-index: 1;
}

/* ── Social links — visible, dark circles ── */
.social-links {
  display: flex;
  justify-content: center;
  gap: 14px;
  position: relative; z-index: 1;
}

.social-links a {
  width: 46px; height: 46px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.08);
  font-size: 1.1rem;
  transition: background var(--transition), color var(--transition),
              transform var(--transition), border-color var(--transition);
}

.social-links a:hover {
  background: var(--gold);
  color: #000;
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(var(--gold-rgb),0.35);
}

/* Mobile */
@media (max-width: 576px) {
  .committee-ring { width: 200px; height: 250px; }
  .committee-name { font-size: 1.05rem; }
  .committee-sub  { font-size: 0.85rem; }
  .committee-card { padding: 28px 20px 24px; }
}


/*==============================
  Donation Section
==============================*/
.donation-card {
  padding: 60px 50px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Radial ambient light */
.donation-card::before {
  content: "";
  position: absolute;
  top: -160px; right: -100px;
  width: 450px; height: 450px;
  background: radial-gradient(circle, rgba(var(--gold-rgb),0.09), transparent 65%);
  filter: blur(60px);
  pointer-events: none;
}

.donation-card::after {
  content: "";
  position: absolute;
  bottom: -120px; left: -80px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(var(--orange-rgb),0.06), transparent 65%);
  filter: blur(50px);
  pointer-events: none;
}

.qr-image {
  width: 220px;
  margin: 0 auto;
  border-radius: var(--radius-md);
  padding: 14px;
  background: #ffffff;
  box-shadow: 0 20px 50px rgba(0,0,0,0.40),
              0 0 0 1px rgba(var(--gold-rgb),0.20);
  transition: transform var(--transition), box-shadow var(--transition);
}

.qr-image:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 28px 60px rgba(0,0,0,0.50), 0 0 0 2px var(--gold);
}

.upi-box { padding: 28px; }

.upi-box h5 {
  color: var(--gold);
  margin-bottom: 14px;
  font-size: 1rem;
  letter-spacing: 1px;
}

.upi-box p {
  font-size: 1.05rem;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  background: rgba(255,255,255,0.04);
  border: 1px dashed rgba(var(--gold-rgb),0.30);
  border-radius: var(--radius-sm);
  padding: 14px;
  word-break: break-word;
}

.upi-box .btn { min-width: 175px; }

/*==============================
  Contact Section
==============================*/
.contact-card {
  padding: 36px;
  height: 100%;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.contact-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.contact-icon {
  width: 54px; height: 54px;
  flex-shrink: 0;
  border-radius: 14px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(135deg, var(--gold), var(--orange));
  color: #000;
  font-size: 1.2rem;
  box-shadow: 0 6px 20px rgba(var(--gold-rgb),0.28);
  transition: transform var(--transition), box-shadow var(--transition);
}

.contact-item:hover .contact-icon {
  transform: scale(1.08) rotate(-4deg);
  box-shadow: 0 10px 28px rgba(var(--gold-rgb),0.40);
}

.contact-item h5 {
  font-size: 0.88rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}

.contact-item p {
  margin: 0;
  color: var(--text);
  font-size: 0.95rem;
  line-height: 1.6;
}

.map-card {
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(var(--gold-rgb),0.12);
  box-shadow: var(--shadow-lg);
}

.map-card iframe {
  width: 100%;
  height: 480px;
  border: none;
  display: block;
  filter: grayscale(100%) contrast(110%) brightness(75%);
  transition: filter 0.45s ease;
}

.map-card:hover iframe { filter: none; }

/*==============================
  Footer
==============================*/
.footer {
  background: var(--bg3);
  padding: 90px 0 28px;
  border-top: 1px solid rgba(var(--gold-rgb),0.10);
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), var(--orange), transparent);
  opacity: 0.4;
}

.footer-title {
  font-family: 'Cinzel', serif;
  color: var(--gold);
  margin-bottom: 18px;
  font-size: 1.2rem;
}

.footer-text {
  color: var(--text-muted);
  margin-bottom: 28px;
  line-height: 1.9;
  font-size: 0.93rem;
}

.footer-heading {
  color: rgba(255,255,255,0.9);
  margin-bottom: 22px;
  font-size: 0.88rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}

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

.footer-links li,
.footer-info li {
  margin-bottom: 12px;
}

.footer-links a {
  color: var(--text-muted);
  font-size: 0.92rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color var(--transition-fast), gap var(--transition-fast), padding-left var(--transition-fast);
}

.footer-links a::before {
  content: "—";
  font-size: 0.7rem;
  color: rgba(var(--gold-rgb),0.35);
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: var(--gold);
  padding-left: 6px;
}

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

.footer-info li {
  color: var(--text-muted);
  font-size: 0.92rem;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.footer-info i {
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 44px; height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  color: var(--gold);
  font-size: 1.1rem;
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #000;
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(var(--gold-rgb),0.35);
}

.footer-divider {
  margin: 48px 0 24px;
  border-color: rgba(255,255,255,0.06);
}

.copyright,
.developer-credit {
  color: var(--text-muted);
  font-size: 0.87rem;
}

/*==============================
  WhatsApp Button
==============================*/
.whatsapp-btn {
  position: fixed;
  right: 24px; bottom: 92px;
  width: 58px; height: 58px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  font-size: 1.7rem;
  z-index: 999;
  box-shadow: 0 8px 28px rgba(37,211,102,0.42);
  transition: transform var(--transition), box-shadow var(--transition);
}

.whatsapp-btn:hover {
  transform: scale(1.10) translateY(-3px);
  color: #fff;
  box-shadow: 0 14px 38px rgba(37,211,102,0.55);
}

/*==============================
  Scroll Top Button
==============================*/
.scroll-top-btn {
  position: fixed;
  right: 24px; bottom: 20px;
  width: 52px; height: 52px;
  border: none;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--orange));
  color: #000;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999;
  box-shadow: 0 6px 22px rgba(var(--gold-rgb),0.38);
  transition: var(--transition);
  font-size: 1.2rem;
}

.scroll-top-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(var(--gold-rgb),0.50);
}

/*==============================
  Scroll Reveal
==============================*/
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.75s cubic-bezier(0.25,0.8,0.25,1),
              transform 0.75s cubic-bezier(0.25,0.8,0.25,1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

.reveal-left.active {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

.reveal-right.active {
  opacity: 1;
  transform: translateX(0);
}

/* Stagger delays */
.reveal-delay-1 { transition-delay: 0.10s; }
.reveal-delay-2 { transition-delay: 0.20s; }
.reveal-delay-3 { transition-delay: 0.30s; }
.reveal-delay-4 { transition-delay: 0.40s; }

/*==============================
  Utility helpers
==============================*/
.text-gold { color: var(--gold); }
.bg-gold { background: var(--gold); }
.gold-glow { box-shadow: 0 0 35px rgba(var(--gold-rgb),0.32); }
.text-muted-light { color: var(--text-muted); }
.shadow-gold { box-shadow: var(--shadow-gold); }

.mt-6 { margin-top: 5rem; }
.mb-6 { margin-bottom: 5rem; }
.rounded-xl { border-radius: var(--radius-xl); }
.transition { transition: all var(--transition); }

/*==============================
  Theme Variables
==============================*/
[data-theme="gold"] {
  --gold: #D4AF37;
  --gold-light: #F0D060;
  --gold-dark: #A88B20;
  --gold-rgb: 212,175,55;
  --orange: #E8860A;
  --orange-rgb: 232,134,10;
  --bg: #060608;
  --bg2: #0b0b0f;
  --bg3: #040406;
  --bg-card: rgba(255,255,255,0.055);
  --bg-card-hover: rgba(255,255,255,0.09);
  --glass: rgba(255,255,255,0.055);
  --glass-border: rgba(255,255,255,0.10);
}

[data-theme="midnight"] {
  --gold: #8FA8D8;
  --gold-light: #B0C4E8;
  --gold-dark: #607AA8;
  --gold-rgb: 143,168,216;
  --orange: #5E7BB8;
  --orange-rgb: 94,123,184;
  --bg: #020409;
  --bg2: #050a14;
  --bg3: #010207;
  --bg-card: rgba(143,168,216,0.07);
  --bg-card-hover: rgba(143,168,216,0.11);
  --glass: rgba(143,168,216,0.07);
  --glass-border: rgba(143,168,216,0.15);
}

[data-theme="saffron"] {
  --gold: #FF9933;
  --gold-light: #FFB84D;
  --gold-dark: #CC7700;
  --gold-rgb: 255,153,51;
  --orange: #E67A00;
  --orange-rgb: 230,122,0;
  --bg: #140a02;
  --bg2: #1d1005;
  --bg3: #0d0601;
  --bg-card: rgba(255,153,51,0.07);
  --bg-card-hover: rgba(255,153,51,0.11);
  --glass: rgba(255,153,51,0.07);
  --glass-border: rgba(255,153,51,0.16);
}

[data-theme="maroon"] {
  --gold: #E8B84B;
  --gold-light: #F0CE7A;
  --gold-dark: #B88A25;
  --gold-rgb: 232,184,75;
  --orange: #C0404B;
  --orange-rgb: 192,64,75;
  --bg: #150408;
  --bg2: #1f070d;
  --bg3: #0e0205;
  --bg-card: rgba(232,184,75,0.06);
  --bg-card-hover: rgba(232,184,75,0.10);
  --glass: rgba(232,184,75,0.06);
  --glass-border: rgba(232,184,75,0.14);
}

[data-theme="purple"] {
  --gold: #B57EDC;
  --gold-light: #CC9EEA;
  --gold-dark: #8855AA;
  --gold-rgb: 181,126,220;
  --orange: #7E57C2;
  --orange-rgb: 126,87,194;
  --bg: #0c0614;
  --bg2: #140a22;
  --bg3: #08040e;
  --bg-card: rgba(181,126,220,0.07);
  --bg-card-hover: rgba(181,126,220,0.11);
  --glass: rgba(181,126,220,0.07);
  --glass-border: rgba(181,126,220,0.15);
}

[data-theme="ocean"] {
  --gold: #4FC3F7;
  --gold-light: #80D4FA;
  --gold-dark: #2090C0;
  --gold-rgb: 79,195,247;
  --orange: #1E88E5;
  --orange-rgb: 30,136,229;
  --bg: #020a12;
  --bg2: #041222;
  --bg3: #01060c;
  --bg-card: rgba(79,195,247,0.07);
  --bg-card-hover: rgba(79,195,247,0.11);
  --glass: rgba(79,195,247,0.07);
  --glass-border: rgba(79,195,247,0.15);
}

/*==============================
  Dynamic Theme Application
==============================*/
body {
  background: var(--bg);
  color: rgba(255,255,255,0.92);
}

.glass-card {
  background: var(--bg-card);
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--orange));
}

.section-title span,
.text-gold,
.hero-title .reveal-line:first-child .reveal-line-inner {
  color: var(--gold);
}

.footer { background: var(--bg3); }
.section-dark { background: var(--bg2); }

/* Smooth theme transitions */
body, .luxury-navbar, .glass-card, .event-card,
.timeline-content, .stat-card, .btn, .footer,
.section-dark, .stats-section {
  transition:
    background 0.42s ease,
    color 0.42s ease,
    border-color 0.42s ease,
    box-shadow 0.42s ease;
}

/*==============================
  Dropdown menus
==============================*/
.navbar .dropdown-menu {
  background: rgba(8,8,12,0.97);
}

/*==============================
  Language Dropdown
==============================*/
.navbar .dropdown-item.active,
.navbar .dropdown-item:active {
  background: rgba(var(--gold-rgb),0.14);
  color: var(--gold) !important;
}

/*==============================
  Devanagari Typography
==============================*/
html[lang="hi"] body,
html[lang="mr"] body {
  font-family: 'Poppins','Tiro Devanagari Hindi', sans-serif;
}

html[lang="hi"] h1, html[lang="hi"] h2, html[lang="hi"] h3,
html[lang="hi"] h4, html[lang="hi"] h5, html[lang="hi"] h6,
html[lang="mr"] h1, html[lang="mr"] h2, html[lang="mr"] h3,
html[lang="mr"] h4, html[lang="mr"] h5, html[lang="mr"] h6 {
  font-family: 'Tiro Devanagari Hindi','Poppins', serif;
}

html[lang="hi"] .hero-title,
html[lang="mr"] .hero-title { font-size: 3.8rem; }

/*==============================
  Reduced Motion
==============================*/
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .hero-image { animation: none; }
  .hero-image-wrapper::before,
  .hero-image-wrapper::after { animation: none; }
  .hero-glow { animation: none; }
  .reveal, .reveal-left, .reveal-right {
    opacity: 1;
    transform: none;
  }
}

/*==============================
  Responsive — 1199px
==============================*/
@media (max-width: 1199px) {
  :root {
    --fs-display: clamp(2.8rem, 5vw, 4.5rem);
    --fs-h2: clamp(1.8rem, 3vw, 2.6rem);
  }
}

/*==============================
  Responsive — 991px (Tablet)
==============================*/
@media (max-width: 991px) {
  :root { --section-py: 80px; }

  .hero-section { text-align: center; }
  .hero-buttons { justify-content: center; }
  .hero-subtitle { margin-left: auto; margin-right: auto; }
  .hero-image { margin-top: 50px; }

  .timeline::before { left: 22px; }
  .timeline-item {
    width: 100%;
    left: 0 !important;
    padding-left: 64px;
    padding-right: 0;
    text-align: left;
  }
  .timeline-item::before { left: 15px !important; right: auto !important; }

  .contact-card { margin-bottom: 30px; }

  .footer { text-align: center; }
  .footer-social { justify-content: center; }

  .hero-image-wrapper::before,
  .hero-image-wrapper::after { display: none; }
}

/*==============================
  Responsive — 767px (Mobile)
==============================*/
@media (max-width: 767px) {
  :root {
    --fs-display: clamp(2.4rem, 8vw, 3rem);
    --fs-h2: clamp(1.7rem, 5vw, 2.1rem);
    --section-py: 70px;
  }

  .count-box h2 { font-size: 1.9rem; }
  .countdown-wrapper { padding: 20px 14px; }
  .count-box:not(:last-child)::after { display: none; }

  .stat-card { padding: 28px 18px; }
  .stat-card h2 { font-size: 2.2rem; }

  /* committee-img sizing handled by aspect-ratio on parent */

  .qr-image { width: 180px; }

  .map-card iframe { height: 320px; }

  .footer { padding-top: 60px; }

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

/*==============================
  Responsive — 576px (Small Mobile)
==============================*/
@media (max-width: 576px) {
  .navbar-brand { max-width: 200px; }

  .btn { width: 100%; justify-content: center; }
  .hero-buttons { flex-direction: column; }

  .donation-card { padding: 36px 20px; }
  .upi-box { padding: 18px 8px; }

  .whatsapp-btn { width: 52px; height: 52px; right: 16px; }
  .scroll-top-btn { width: 48px; height: 48px; right: 16px; }

  .timeline-content { padding: 20px 18px; }

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

  html[lang="hi"] .hero-title,
  html[lang="mr"] .hero-title { font-size: 2.2rem; }
}

/*==============================
  Fix: navbar brand no wrap
==============================*/
.luxury-navbar .navbar-brand > div { white-space: nowrap; }
.luxury-navbar .navbar-nav { flex-shrink: 1; }

/*==============================
  Button Ripple Effect
==============================*/
.btn { position: relative; overflow: hidden; }

span.ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.28);
  transform: scale(0);
  animation: rippleAnim 0.6s linear;
  pointer-events: none;
}

@keyframes rippleAnim {
  to { transform: scale(4); opacity: 0; }
}

/*==============================
  Section transition dividers
==============================*/
.wave-divider {
  position: relative;
  overflow: hidden;
  height: 60px;
  background: transparent;
}

.wave-divider svg {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 100%;
}

/*==============================
  Premium highlight box (About section)
==============================*/
.highlight-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: rgba(var(--gold-rgb),0.08);
  border: 1px solid rgba(var(--gold-rgb),0.18);
  border-radius: var(--radius-pill);
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

/*==============================
  Tilt card — ensure transforms work
==============================*/
.glass-card { transform-style: preserve-3d; }
.event-card { transform-style: preserve-3d; }
.stat-card { transform-style: preserve-3d; }
.committee-card { transform-style: preserve-3d; }

/*==============================
  Print / High Contrast fix
==============================*/
@media print {
  .luxury-navbar, #preloader, .whatsapp-btn,
  .scroll-top-btn, .hero-section, .scroll-indicator { display: none !important; }
  body { background: #fff !important; color: #000 !important; }
}

/*==============================
  Stat card — h2 with span counter
==============================*/
.stat-card h2 {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--gold);
  margin-bottom: 8px;
  line-height: 1;
  text-shadow: 0 0 40px rgba(var(--gold-rgb),0.30);
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
}

.stat-card h2 .counter {
  display: inline;
}

/*==============================
  Hero section mobile fix
==============================*/
@media (max-width: 991px) {
  .hero-image-wrapper {
    margin-top: 40px;
  }
}

@media (max-width: 576px) {
  .count-box:not(:last-child)::after {
    display: none;
  }
  .countdown-wrapper {
    padding: 18px 12px;
  }
  .count-box h2 {
    font-size: 1.7rem;
  }
}

/*==============================
  Milestone Highlight (About)
==============================*/
.milestone-highlight {
  position: relative;
  padding: 22px 24px;
  background: linear-gradient(
    135deg,
    rgba(var(--gold-rgb), 0.08) 0%,
    rgba(var(--orange-rgb), 0.05) 100%
  );
  border: 1px solid rgba(var(--gold-rgb), 0.28);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius-md);
  backdrop-filter: blur(10px);
  overflow: hidden;
}

.milestone-highlight::before {
  content: "";
  position: absolute;
  top: -30px; right: -30px;
  width: 100px; height: 100px;
  background: radial-gradient(circle, rgba(var(--gold-rgb), 0.12), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.milestone-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 14px;
  background: linear-gradient(135deg, var(--gold), var(--orange));
  color: #000;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: var(--radius-pill);
  margin-bottom: 12px;
  box-shadow: 0 4px 16px rgba(var(--gold-rgb), 0.30);
}

.milestone-text {
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.93rem;
  line-height: 1.75;
  margin: 0;
}

/*==============================
  10th Year Campaign Banner
==============================*/
.campaign-banner {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
  background: var(--bg);
}

/* Subtle grid texture */
.campaign-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(var(--gold-rgb), 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(var(--gold-rgb), 0.025) 1px, transparent 1px);
  background-size: 50px 50px;
  pointer-events: none;
}

.campaign-card {
  position: relative;
  overflow: hidden;
  padding: 60px 70px;
  display: flex;
  align-items: center;
  gap: 60px;
  border: 1px solid rgba(var(--gold-rgb), 0.20);
  box-shadow:
    0 0 0 1px rgba(var(--gold-rgb), 0.06),
    0 30px 80px rgba(0, 0, 0, 0.50),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

/* Gold top edge */
.campaign-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), var(--orange), transparent);
}

/* Ambient radial glow */
.campaign-card::after {
  content: "";
  position: absolute;
  top: -80px; right: -80px;
  width: 350px; height: 350px;
  background: radial-gradient(circle, rgba(var(--gold-rgb), 0.10), transparent 65%);
  filter: blur(40px);
  pointer-events: none;
}

/* Large "10" display number */
.campaign-year-display {
  font-family: 'Cinzel', serif;
  font-size: clamp(5rem, 10vw, 9rem);
  font-weight: 900;
  line-height: 1;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 40%, var(--orange) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 30px rgba(var(--gold-rgb), 0.35));
  animation: floating 5s ease-in-out infinite;
  position: relative;
  z-index: 1;
}

.campaign-content {
  position: relative;
  z-index: 1;
}

.campaign-heading {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  margin: 12px 0 16px;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.campaign-desc {
  color: var(--text);
  font-size: 1rem;
  margin-bottom: 6px;
  line-height: 1.75;
}

.campaign-sub {
  color: var(--gold);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 28px;
}

@media (max-width: 991px) {
  .campaign-card {
    flex-direction: column;
    text-align: center;
    padding: 44px 32px;
    gap: 24px;
  }
  .campaign-year-display { font-size: clamp(4rem, 18vw, 6rem); }
}

@media (max-width: 576px) {
  .campaign-card { padding: 36px 20px; }
  .campaign-year-display { font-size: 4.5rem; }
}

/*==============================
  Timeline — 2026 Milestone Card
==============================*/
.timeline-milestone {
  border-color: rgba(var(--gold-rgb), 0.40) !important;
  background: linear-gradient(
    135deg,
    rgba(var(--gold-rgb), 0.10) 0%,
    rgba(var(--orange-rgb), 0.06) 100%
  ) !important;
  box-shadow:
    0 0 0 1px rgba(var(--gold-rgb), 0.15),
    0 20px 60px rgba(var(--gold-rgb), 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  position: relative;
  overflow: hidden;
  animation: milestoneGlow 4s ease-in-out infinite;
}

@keyframes milestoneGlow {
  0%, 100% { box-shadow: 0 0 0 1px rgba(var(--gold-rgb), 0.15), 0 20px 60px rgba(var(--gold-rgb), 0.14), inset 0 1px 0 rgba(255,255,255,0.08); }
  50% { box-shadow: 0 0 0 1px rgba(var(--gold-rgb), 0.30), 0 24px 70px rgba(var(--gold-rgb), 0.22), inset 0 1px 0 rgba(255,255,255,0.10); }
}

/* Gold top edge accent */
.timeline-milestone::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), var(--orange), transparent);
}

/* Inner ambient light */
.timeline-milestone::after {
  content: "";
  position: absolute;
  bottom: -40px; right: -40px;
  width: 160px; height: 160px;
  background: radial-gradient(circle, rgba(var(--gold-rgb), 0.10), transparent 70%);
  filter: blur(20px);
  pointer-events: none;
}

.milestone-year-badge {
  display: inline-block;
  padding: 4px 14px;
  background: linear-gradient(135deg, var(--gold), var(--orange));
  color: #000;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  border-radius: var(--radius-pill);
  margin-bottom: 8px;
  box-shadow: 0 4px 14px rgba(var(--gold-rgb), 0.35);
  position: relative;
  z-index: 1;
}

.timeline-milestone .timeline-year {
  position: relative;
  z-index: 1;
}

.timeline-milestone h4,
.timeline-milestone p,
.timeline-milestone .btn {
  position: relative;
  z-index: 1;
}

.timeline-milestone h4 {
  font-size: 1.2rem;
  color: var(--gold);
}

/* Dot on the timeline line — make it special for 2026 */
[data-testid="timeline-2026"]::before {
  background: linear-gradient(135deg, var(--gold), var(--orange)) !important;
  width: 18px !important;
  height: 18px !important;
  box-shadow:
    0 0 0 4px rgba(var(--gold-rgb), 0.20),
    0 0 25px rgba(var(--gold-rgb), 0.60) !important;
}

/* btn-sm override */
.btn-sm {
  padding: 10px 24px;
  font-size: 0.84rem;
}

/*==============================
  Events — Special Grand Aagman Card
==============================*/
.event-card-special {
  border-color: rgba(var(--gold-rgb), 0.35) !important;
  background: linear-gradient(
    135deg,
    rgba(var(--gold-rgb), 0.10) 0%,
    rgba(var(--orange-rgb), 0.06) 100%
  ) !important;
  box-shadow: 0 12px 40px rgba(var(--gold-rgb), 0.15);
  position: relative;
  overflow: hidden;
}

.event-card-special::after {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), var(--orange), transparent);
}

.event-icon-special {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-light)) !important;
  box-shadow: 0 8px 30px rgba(var(--gold-rgb), 0.45) !important;
  animation: iconPulse 3s ease-in-out infinite;
}

@keyframes iconPulse {
  0%, 100% { box-shadow: 0 8px 30px rgba(var(--gold-rgb), 0.45); }
  50% { box-shadow: 0 10px 40px rgba(var(--gold-rgb), 0.65); }
}

.event-card-special h4 { color: var(--gold); }

.event-card-special .event-date {
  background: linear-gradient(90deg, var(--gold), var(--orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 800;
}

/*==============================
  Milestone inner wrapper
==============================*/
.milestone-inner {
  position: relative;
  z-index: 1;
}

/*==============================
  Timeline section comment fix
==============================*/
/* The journey section heading uses "A Decade of Devotion"
   which is accurate — 2017 to 2026 is a 10-year journey */

/*==============================
  Sponsor card — full-size variant (card 4) — deprecated, merged above
==============================*/

/*==============================
  Hero Carousel — frame fits image naturally
  Images are portrait ~2:3 (1086×1448, 1023×1537)
  width:100% + height:auto = frame always = image size
==============================*/
.hero-carousel-wrapper {
  position: relative;
  width: 100%;
  max-width: 420px;   /* cap on large screens — adjust freely */
  margin: 0 auto;
  z-index: 2;
}

/* Glow behind */
.hero-carousel-wrapper .hero-glow {
  position: absolute;
  width: 480px; height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(var(--gold-rgb),0.22) 0%, transparent 70%);
  filter: blur(55px);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 0;
  animation: glowPulse 6s ease-in-out infinite;
}

/* Carousel box */
.hero-carousel {
  position: relative;
  z-index: 1;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow:
    0 0 0 1.5px rgba(var(--gold-rgb), 0.28),
    0 32px 80px rgba(0,0,0,0.65),
    0 0 60px rgba(var(--gold-rgb), 0.12);
}

/* Gold border overlay */
.hero-carousel::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--radius-xl);
  border: 1.5px solid rgba(var(--gold-rgb), 0.28);
  z-index: 10;
  pointer-events: none;
}

/* Let Bootstrap inner/item size themselves naturally */
.hero-carousel-inner,
#heroCarousel .carousel-inner,
#heroCarousel .carousel-item {
  border-radius: var(--radius-xl);
}

/* THE KEY RULE — image drives the frame, no forced height */
.hero-carousel-img {
  width: 100%;
  height: auto;         /* ← natural height, no crop */
  display: block;
  border-radius: var(--radius-xl);
}

/* Slide-in reveal */
.hero-carousel .carousel-item.active .hero-carousel-img {
  animation: heroImgReveal 0.65s cubic-bezier(0.25,0.8,0.25,1) forwards;
}

@keyframes heroImgReveal {
  from { transform: scale(1.03); opacity: 0.72; }
  to   { transform: scale(1);    opacity: 1; }
}

/* Dot indicators */
.hero-carousel-indicators {
  bottom: 14px;
  margin: 0;
  gap: 6px;
}

.hero-carousel-indicators button {
  width: 26px; height: 3px;
  border-radius: 3px;
  background: rgba(255,255,255,0.32);
  border: none;
  opacity: 1;
  transition: background 0.35s, width 0.35s;
}

.hero-carousel-indicators button.active {
  background: var(--gold);
  width: 38px;
}

/* Prev / Next */
.hero-carousel-prev,
.hero-carousel-next {
  width: 38px; height: 38px;
  top: 50%; transform: translateY(-50%);
  opacity: 1;
  background: rgba(0,0,0,0.42);
  backdrop-filter: blur(8px);
  border-radius: 50%;
  border: 1px solid rgba(var(--gold-rgb),0.28);
  transition: background var(--transition-fast), border-color var(--transition-fast), transform var(--transition-fast);
  z-index: 20;
  display: flex; align-items: center; justify-content: center;
}

.hero-carousel-prev { left: 10px; }
.hero-carousel-next { right: 10px; }

.hero-carousel-prev:hover,
.hero-carousel-next:hover {
  background: rgba(var(--gold-rgb), 0.22);
  border-color: var(--gold);
  transform: translateY(-50%) scale(1.08);
}

.hero-carousel-arrow {
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-size: 1rem; line-height: 1;
}

/* Responsive — only constrain max-width */
@media (max-width: 991px) {
  .hero-carousel-wrapper {
    max-width: 340px;
    margin-top: 40px;
  }
}

@media (max-width: 767px) {
  .hero-carousel-wrapper { max-width: 280px; }
}

@media (max-width: 480px) {
  .hero-carousel-wrapper { max-width: 220px; }
  .hero-carousel-prev,
  .hero-carousel-next { width: 30px; height: 30px; font-size: 0.8rem; }
}

/*==============================
  About Section Carousel
  Images are landscape ~4:3 (1422×1106, 1536×1024)
==============================*/
.about-carousel-wrapper {
  position: relative;
  width: 100%;
  z-index: 1;
}

/* Carousel frame */
.about-carousel {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow:
    0 0 0 1.5px rgba(var(--gold-rgb), 0.22),
    0 24px 60px rgba(0,0,0,0.55),
    0 0 50px rgba(var(--gold-rgb), 0.08);
}

/* Gold border overlay */
.about-carousel::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--radius-xl);
  border: 1.5px solid rgba(var(--gold-rgb), 0.28);
  z-index: 10;
  pointer-events: none;
}

/* Bottom gradient so indicators are readable */
.about-carousel::after {
  content: "";
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 72px;
  background: linear-gradient(to top, rgba(0,0,0,0.45), transparent);
  z-index: 5;
  pointer-events: none;
  border-radius: 0 0 var(--radius-xl) var(--radius-xl);
}

.about-carousel-inner {
  border-radius: var(--radius-xl);
}

/* Image — width:100% + height:auto = frame matches image exactly, no crop */
.about-carousel-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-xl);
  animation: none;
}

.about-carousel .carousel-item.active .about-carousel-img {
  animation: aboutImgReveal 0.65s cubic-bezier(0.25,0.8,0.25,1) forwards;
}

@keyframes aboutImgReveal {
  from { transform: scale(1.03); opacity: 0.72; }
  to   { transform: scale(1);    opacity: 1; }
}

/* Dot indicators */
.about-carousel-indicators {
  bottom: 14px;
  margin: 0;
  gap: 6px;
  z-index: 20;
}

.about-carousel-indicators button {
  width: 26px; height: 3px;
  border-radius: 3px;
  background: rgba(255,255,255,0.35);
  border: none;
  opacity: 1;
  transition: background 0.35s, width 0.35s;
}

.about-carousel-indicators button.active {
  background: var(--gold);
  width: 38px;
}

/* Prev / Next arrows */
.about-carousel-prev,
.about-carousel-next {
  width: 38px; height: 38px;
  top: 50%; transform: translateY(-50%);
  opacity: 1;
  background: rgba(0,0,0,0.42);
  backdrop-filter: blur(8px);
  border-radius: 50%;
  border: 1px solid rgba(var(--gold-rgb),0.28);
  transition: background var(--transition-fast),
              border-color var(--transition-fast),
              transform var(--transition-fast);
  z-index: 20;
  display: flex; align-items: center; justify-content: center;
}

.about-carousel-prev { left: 10px; }
.about-carousel-next { right: 10px; }

.about-carousel-prev:hover,
.about-carousel-next:hover {
  background: rgba(var(--gold-rgb), 0.22);
  border-color: var(--gold);
  transform: translateY(-50%) scale(1.08);
}

.about-carousel-arrow {
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-size: 1rem; line-height: 1;
}

/* Decorative outer glow */
.about-carousel-wrapper::before {
  content: "";
  position: absolute;
  inset: -12px;
  border-radius: calc(var(--radius-xl) + 8px);
  border: 1px solid rgba(var(--gold-rgb), 0.08);
  pointer-events: none;
  z-index: 0;
}

/* Mobile */
@media (max-width: 991px) {
  .about-carousel-wrapper { margin-bottom: 20px; }
}

@media (max-width: 480px) {
  .about-carousel-prev,
  .about-carousel-next { width: 30px; height: 30px; font-size: 0.8rem; }
}

/* =====================================================
   MOBILE RESPONSIVE OVERHAUL
   Covers 320px → 576px → 768px → 991px
   ===================================================== */

/* ========================
   GLOBAL — all mobile
   ======================== */
@media (max-width: 991px) {
  :root {
    --section-py: 72px;
    --fs-display: clamp(2.2rem, 7vw, 3.2rem);
    --fs-h2: clamp(1.6rem, 5vw, 2.2rem);
  }

  body { overflow-x: hidden; }

  .section-padding { padding: 72px 0; }

  /* Buttons full-width stacked only on smallest screens, not tablet */
  .hero-buttons { gap: 12px; }

  /* Section titles center on mobile */
  .section-title { line-height: 1.2; }
}

/* ========================
   HERO — mobile
   ======================== */
@media (max-width: 991px) {
  .hero-section {
    padding-top: 80px;
    text-align: center;
  }

  .hero-title {
    font-size: clamp(2rem, 7vw, 3rem);
  }

  .hero-subtitle {
    font-size: 0.95rem;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-tag { font-size: 0.7rem; letter-spacing: 1.5px; padding: 6px 14px; }

  .hero-buttons {
    justify-content: center;
    flex-wrap: wrap;
  }

  .hero-buttons .btn { width: auto; min-width: 160px; }

  /* Hero carousel — full width on mobile */
  .hero-carousel-wrapper {
    max-width: 100%;
    margin-top: 36px;
  }
}

@media (max-width: 576px) {
  .hero-title { font-size: clamp(1.8rem, 8vw, 2.4rem); }
  .hero-subtitle { font-size: 0.9rem; }
  .hero-tag { font-size: 0.65rem; letter-spacing: 1px; }
  .hero-buttons .btn { width: 100%; }
  .hero-buttons { flex-direction: column; align-items: center; }
}

/* ========================
   COUNTDOWN — mobile
   ======================== */
@media (max-width: 576px) {
  .countdown-wrapper { padding: 16px 10px; }
  .count-box h2 { font-size: 1.5rem; }
  .count-box span { font-size: 0.62rem; letter-spacing: 1px; }
  /* Hide separators on very small screens */
  .count-box:not(:last-child)::after { display: none; }
}

/* ========================
   STATS — mobile
   ======================== */
@media (max-width: 576px) {
  .stats-section { padding: 50px 0; }
  .stat-card { padding: 24px 14px; }
  .stat-card h2 { font-size: 2rem; }
  .stat-card i { font-size: 1.8rem; }
}

/* ========================
   ABOUT — mobile
   ======================== */
@media (max-width: 991px) {
  .about-carousel-wrapper {
    max-width: 100%;
    margin-bottom: 28px;
  }
}

@media (max-width: 576px) {
  .milestone-highlight { padding: 16px 14px; }
  .milestone-badge { font-size: 0.65rem; padding: 4px 10px; }
  .milestone-text { font-size: 0.88rem; }
  .feature-box { padding: 10px 12px; }
  .feature-box span { font-size: 0.85rem; }
}

/* ========================
   JOURNEY / TIMELINE — mobile
   ======================== */
@media (max-width: 991px) {
  .timeline::before { left: 20px; }

  .timeline-item {
    width: 100% !important;
    left: 0 !important;
    padding-left: 58px;
    padding-right: 12px;
    text-align: left;
    margin-bottom: 24px;
  }

  .timeline-item.left,
  .timeline-item.right { text-align: left; }

  .timeline-item::before {
    left: 12px !important;
    right: auto !important;
  }

  .timeline-content { padding: 22px 20px; }

  .timeline-year { font-size: 0.82rem; }

  .timeline-content h4 { font-size: 1rem; }
}

@media (max-width: 576px) {
  .timeline-item { padding-left: 48px; padding-right: 8px; }
  .timeline-content { padding: 18px 16px; }
}

/* ========================
   CAMPAIGN BANNER — mobile
   ======================== */
@media (max-width: 991px) {
  .campaign-banner { padding: 52px 0; }

  .campaign-card {
    flex-direction: column;
    text-align: center;
    padding: 36px 24px;
    gap: 18px;
  }

  .campaign-year-display { font-size: clamp(4rem, 18vw, 6rem); }

  .campaign-heading { font-size: clamp(1.4rem, 5vw, 1.9rem); }

  .campaign-desc,
  .campaign-sub { font-size: 0.92rem; }
}

@media (max-width: 576px) {
  .campaign-card { padding: 28px 16px; }
  .campaign-year-display { font-size: 4rem; }
  .campaign-heading { font-size: 1.3rem; }
}

/* ========================
   EVENTS — mobile
   ======================== */
@media (max-width: 991px) {
  .event-card { padding: 26px 22px; }
  .event-icon { width: 56px; height: 56px; font-size: 1.4rem; }
}

@media (max-width: 576px) {
  .event-card { padding: 22px 18px; }
  .event-card h4 { font-size: 1rem; }
}

/* ========================
   GALLERY — mobile
   ======================== */
@media (max-width: 576px) {
  .gallery-item img { height: 180px; }
}

/* ========================
   SPONSOR SLIDER — mobile
   ======================== */
@media (max-width: 991px) {
  /* Show 2 cards at a time on tablet */
  .sponsor-slide {
    flex: 0 0 calc(50% - 10px);
    height: 260px;
  }
}

@media (max-width: 576px) {
  /* Show 2 cards on mobile too */
  .sponsor-slide {
    flex: 0 0 calc(50% - 8px);
    height: 200px;
  }
  .sponsor-slider-track { gap: 12px; }
}

/* ========================
   COMMITTEE — mobile
   ======================== */
@media (max-width: 576px) {
  .committee-info-bar { padding: 28px 14px 12px; }
  .committee-role { font-size: 0.95rem; }
}

/* ========================
   DONATION — mobile
   ======================== */
@media (max-width: 767px) {
  .donation-card { padding: 36px 20px; }
  .qr-image { width: 170px; }
  .upi-box { padding: 20px 10px; }
  .upi-box .btn { width: 100%; }
}

@media (max-width: 576px) {
  .donation-card { padding: 28px 14px; }
  .qr-image { width: 150px; }
}

/* ========================
   CONTACT — mobile
   ======================== */
@media (max-width: 991px) {
  .contact-card { margin-bottom: 0; }
  .map-card iframe { height: 300px; }
}

@media (max-width: 576px) {
  .contact-card { padding: 24px 18px; }
  .contact-icon { width: 46px; height: 46px; font-size: 1rem; border-radius: 12px; }
  .contact-item { gap: 14px; }
  .map-card iframe { height: 260px; }
}

/* ========================
   FOOTER — mobile
   ======================== */
@media (max-width: 991px) {
  .footer {
    padding-top: 56px;
    text-align: center;
  }

  .footer-social { justify-content: center; }

  .footer-links a { justify-content: center; }
}

@media (max-width: 576px) {
  .footer { padding-top: 44px; }
  .footer-title { font-size: 1rem; }
  .footer-text { font-size: 0.88rem; }
  .footer-social a { width: 40px; height: 40px; font-size: 1rem; }
  .copyright,
  .developer-credit { font-size: 0.78rem; text-align: center; }
  .col-md-6.text-md-end { text-align: center !important; margin-top: 6px; }
}

/* ========================
   NAVBAR — mobile
   ======================== */
@media (max-width: 991px) {
  .luxury-navbar .navbar-collapse {
    background: rgba(4,4,6,0.97);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(var(--gold-rgb),0.10);
    border-radius: var(--radius-md);
    padding: 16px;
    margin-top: 10px;
  }

  .navbar-nav .nav-link { padding: 10px 14px !important; margin-left: 0; }
  .navbar-nav .nav-link::after { display: none; }

  /* Donate button full width in mobile menu */
  .navbar-nav .ms-lg-3 { margin-top: 10px; }
  .navbar-nav .ms-lg-3 .btn { width: 100%; }
}

/* ========================
   MARQUEE — mobile
   ======================== */
@media (max-width: 576px) {
  .marquee-track { font-size: 0.9rem; gap: 24px; }
}

/* ========================
   HINDI/MARATHI HERO — mobile
   ======================== */
@media (max-width: 991px) {
  html[lang="hi"] .hero-title,
  html[lang="mr"] .hero-title {
    font-size: clamp(1.9rem, 6.5vw, 2.8rem);
  }
}

@media (max-width: 576px) {
  html[lang="hi"] .hero-title,
  html[lang="mr"] .hero-title {
    font-size: clamp(1.6rem, 7vw, 2.1rem);
  }
}

/* ========================
   NO HORIZONTAL OVERFLOW
   ======================== */
html, body {
  max-width: 100%;
  overflow-x: hidden;
}

* { box-sizing: border-box; }

img { max-width: 100%; }

/* ========================
   FIXED BUTTONS — mobile
   ======================== */
@media (max-width: 576px) {
  .whatsapp-btn { width: 50px; height: 50px; font-size: 1.5rem; right: 14px; bottom: 80px; }
  .scroll-top-btn { width: 46px; height: 46px; font-size: 1rem; right: 14px; bottom: 18px; }
}

/*==============================
  Gallery — single-row slider
==============================*/
.gallery-slider-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0;
}

/* Scrollable track */
.gallery-slider-track {
  display: flex;
  gap: 16px;
  overflow: hidden;           /* JS controls scrolling */
  flex: 1;
  transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

/* Each gallery card */
.gallery-item {
  flex: 0 0 calc(33.333% - 11px); /* 3 visible on desktop */
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: block;
  position: relative;
  cursor: pointer;
  text-decoration: none;
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}

.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-gold-hover);
}

.gallery-item img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.55s ease;
}

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

/* Overlay */
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.70), rgba(var(--gold-rgb),0.10));
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.38s ease;
}

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

.gallery-overlay i {
  width: 52px; height: 52px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.20);
  color: var(--gold);
  font-size: 1.3rem;
  transform: scale(0.7);
  transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1);
}

.gallery-item:hover .gallery-overlay i { transform: scale(1); }

/* Arrow buttons */
.gallery-arrow {
  flex-shrink: 0;
  width: 46px; height: 46px;
  border-radius: 50%;
  border: 1.5px solid rgba(var(--gold-rgb), 0.30);
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(10px);
  color: var(--gold);
  font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background var(--transition-fast),
              border-color var(--transition-fast),
              transform var(--transition-fast);
  z-index: 5;
}

.gallery-arrow-prev { margin-right: 12px; }
.gallery-arrow-next { margin-left: 12px; }

.gallery-arrow:hover {
  background: rgba(var(--gold-rgb), 0.18);
  border-color: var(--gold);
  transform: scale(1.08);
}

.gallery-arrow:disabled {
  opacity: 0.3;
  cursor: default;
  transform: none;
}

/* Responsive */
@media (max-width: 991px) {
  .gallery-item {
    flex: 0 0 calc(50% - 8px);  /* 2 visible on tablet */
  }
  .gallery-item img { height: 220px; }
}

@media (max-width: 576px) {
  .gallery-item {
    flex: 0 0 calc(100% - 0px); /* 1 visible on phone */
  }
  .gallery-item img { height: 220px; }
  .gallery-arrow { width: 38px; height: 38px; font-size: 0.95rem; }
  .gallery-arrow-prev { margin-right: 8px; }
  .gallery-arrow-next { margin-left: 8px; }
}

/*==============================
  Custom Full-viewport Lightbox
==============================*/
.gallery-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.95);
  backdrop-filter: blur(12px);
  z-index: 99999;
  display: none;            /* shown via JS */
  align-items: center;
  justify-content: center;
  padding: 0;
}

.gallery-lightbox.active {
  display: flex;
}

/* Image wrapper — fills viewport, image fits inside without scrolling */
.lightbox-img-wrap {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  padding: 60px 80px;       /* space for nav buttons and counter */
  overflow: hidden;
}

#lightboxImg {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: var(--radius-md);
  box-shadow: 0 30px 100px rgba(0,0,0,0.80);
  display: block;
  transition: opacity 0.28s ease, transform 0.28s ease;
}

#lightboxImg.switching {
  opacity: 0;
  transform: scale(0.97);
}

/* Close button */
.lightbox-close {
  position: fixed;
  top: 18px; right: 20px;
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.20);
  background: rgba(0,0,0,0.55);
  color: #fff;
  font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: background var(--transition-fast), border-color var(--transition-fast), transform var(--transition-fast);
}

.lightbox-close:hover {
  background: rgba(var(--gold-rgb),0.18);
  border-color: var(--gold);
  color: var(--gold);
  transform: rotate(90deg) scale(1.1);
}

/* Prev / Next nav */
.lightbox-nav {
  position: fixed;
  top: 50%; transform: translateY(-50%);
  width: 52px; height: 52px;
  border-radius: 50%;
  border: 1.5px solid rgba(var(--gold-rgb),0.30);
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(8px);
  color: var(--gold);
  font-size: 1.2rem;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: background var(--transition-fast), border-color var(--transition-fast), transform var(--transition-fast);
}

.lightbox-prev { left: 16px; }
.lightbox-next { right: 16px; }

.lightbox-nav:hover {
  background: rgba(var(--gold-rgb),0.18);
  border-color: var(--gold);
  transform: translateY(-50%) scale(1.08);
}

/* Image counter */
.lightbox-counter {
  position: fixed;
  bottom: 18px; left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.65);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 2px;
  background: rgba(0,0,0,0.45);
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  z-index: 10;
}

/* Mobile lightbox */
@media (max-width: 576px) {
  .lightbox-img-wrap { padding: 50px 12px 50px; }
  .lightbox-nav { width: 40px; height: 40px; font-size: 1rem; }
  .lightbox-prev { left: 8px; }
  .lightbox-next { right: 8px; }
  .lightbox-close { top: 10px; right: 10px; }
}

/*==============================
  Events — activity tags (18th, 19th, 20th)
==============================*/
.event-activities {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 10px 0 14px;
}

.event-activities span {
  display: inline-block;
  padding: 4px 12px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--gold);
  background: rgba(var(--gold-rgb), 0.10);
  border: 1px solid rgba(var(--gold-rgb), 0.25);
  border-radius: var(--radius-pill);
  white-space: nowrap;
}

/*==============================
  Events — highlight card (19th)
==============================*/
.event-card-highlight {
  border-color: rgba(var(--gold-rgb), 0.32) !important;
  background: linear-gradient(
    135deg,
    rgba(var(--gold-rgb), 0.08) 0%,
    rgba(var(--orange-rgb), 0.05) 100%
  ) !important;
  box-shadow: 0 10px 36px rgba(var(--gold-rgb), 0.12);
}

.event-card-highlight::after {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), var(--orange), transparent);
}

.event-card-highlight .event-date {
  font-weight: 800;
  font-size: 1rem;
  color: var(--gold);
}

/*==============================
  Events — date number stronger
==============================*/
.event-date {
  display: inline-block;
  font-family: 'Cinzel', serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 6px;
  letter-spacing: 0;
  text-shadow: 0 0 20px rgba(var(--gold-rgb), 0.35);
}

/*==============================
  Journey — horizontal scroll timeline
==============================*/
.journey-section {
  padding-bottom: 40px;
}

/* Scrollable outer container — full viewport width */
.journey-scroll-outer {
  overflow-x: auto;
  overflow-y: visible;
  padding: 20px 60px 50px;
  cursor: grab;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: rgba(var(--gold-rgb),0.35) transparent;
}

.journey-scroll-outer:active { cursor: grabbing; }

.journey-scroll-outer::-webkit-scrollbar { height: 4px; }
.journey-scroll-outer::-webkit-scrollbar-track { background: transparent; }
.journey-scroll-outer::-webkit-scrollbar-thumb {
  background: linear-gradient(90deg, var(--gold), var(--orange));
  border-radius: 4px;
}

/* Track — all nodes in one row */
.journey-track {
  display: inline-flex;
  align-items: flex-end;
  gap: 0;
  position: relative;
  padding-bottom: 60px;
  min-width: max-content;
}

/* Horizontal progress line running through all dots */
.journey-line {
  position: absolute;
  bottom: 60px;
  left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg,
    transparent 0%,
    var(--gold) 8%,
    var(--orange) 50%,
    var(--gold) 92%,
    transparent 100%
  );
  z-index: 0;
}

/* Each milestone node */
.journey-node {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 280px;
  flex-shrink: 0;
  position: relative;
  padding: 0 16px;
}

/* Alternating up/down card layout */
.journey-node:nth-child(odd)  .journey-card { order: 1; margin-bottom: 24px; }
.journey-node:nth-child(odd)  .journey-dot  { order: 2; }
.journey-node:nth-child(even) .journey-card { order: 3; margin-top: 24px; }
.journey-node:nth-child(even) .journey-dot  { order: 1; }

/* Connector stem from card to dot */
.journey-node::before {
  content: "";
  position: absolute;
  width: 1.5px;
  background: linear-gradient(to bottom, rgba(var(--gold-rgb),0.40), rgba(var(--gold-rgb),0.10));
  z-index: 0;
}

.journey-node:nth-child(odd)::before {
  bottom: 60px;
  height: 28px;
}

.journey-node:nth-child(even)::before {
  top: 0;
  height: 28px;
}

/* Timeline dot */
.journey-dot {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--orange));
  display: flex; align-items: center; justify-content: center;
  color: #000;
  font-size: 1.2rem;
  position: relative;
  z-index: 2;
  box-shadow: 0 0 0 5px rgba(var(--gold-rgb),0.12),
              0 0 0 10px rgba(var(--gold-rgb),0.05),
              0 8px 24px rgba(var(--gold-rgb),0.30);
  transition: transform var(--transition), box-shadow var(--transition);
  flex-shrink: 0;
}

.journey-node:hover .journey-dot {
  transform: scale(1.12);
  box-shadow: 0 0 0 6px rgba(var(--gold-rgb),0.20),
              0 0 0 12px rgba(var(--gold-rgb),0.08),
              0 10px 32px rgba(var(--gold-rgb),0.45);
}

/* Timeline card */
.journey-card {
  width: 100%;
  padding: 22px 20px;
  border-radius: var(--radius-lg);
  position: relative;
  z-index: 2;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  opacity: 0;
  transform: translateY(20px);
}

.journey-card.visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s ease, transform 0.6s ease,
              box-shadow var(--transition), border-color var(--transition);
}

.journey-node:hover .journey-card {
  transform: translateY(-6px);
  border-color: rgba(var(--gold-rgb),0.40);
  box-shadow: 0 16px 48px rgba(var(--gold-rgb),0.15);
}

/* Year label inside card */
.journey-year {
  display: block;
  font-family: 'Cinzel', serif;
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
  text-shadow: 0 0 25px rgba(var(--gold-rgb),0.35);
  letter-spacing: -0.02em;
}

.journey-card h4 {
  font-size: 0.95rem;
  margin-bottom: 8px;
  color: rgba(255,255,255,0.95);
}

.journey-card p {
  font-size: 0.83rem;
  line-height: 1.65;
  margin: 0;
  color: var(--text-muted);
}

/* ── 2026 Milestone enhancements ──────── */
.journey-node-milestone { width: 300px; }

.journey-dot-milestone {
  width: 64px; height: 64px;
  font-size: 1.5rem;
  box-shadow: 0 0 0 6px rgba(var(--gold-rgb),0.18),
              0 0 0 14px rgba(var(--gold-rgb),0.07),
              0 10px 36px rgba(var(--gold-rgb),0.45);
  animation: milestoneGlow 3.5s ease-in-out infinite;
}

.journey-card-milestone {
  border-color: rgba(var(--gold-rgb), 0.38) !important;
  background: linear-gradient(135deg,
    rgba(var(--gold-rgb),0.10) 0%,
    rgba(var(--orange-rgb),0.06) 100%
  ) !important;
}

.journey-card-milestone::before {
  content: "";
  position: absolute;
  top: 0; left: 10%; right: 10%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), var(--orange), transparent);
  border-radius: 2px;
}

.journey-card-milestone .journey-year {
  font-size: 2.2rem;
}

/* Scroll hint arrow */
.journey-scroll-hint {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 8px;
  color: rgba(var(--gold-rgb),0.50);
  font-size: 0.78rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: hintPulse 2.5s ease-in-out infinite;
}

.journey-scroll-hint span {
  display: block;
  width: 40px; height: 1px;
  background: rgba(var(--gold-rgb),0.35);
}

@keyframes hintPulse {
  0%,100% { opacity: 0.5; transform: translateX(0); }
  50%      { opacity: 1;   transform: translateX(6px); }
}

/* Responsive — stack vertically on mobile */
@media (max-width: 767px) {
  .journey-scroll-outer { padding: 10px 20px 30px; }
  .journey-node { width: 220px; }
  .journey-node-milestone { width: 240px; }
  .journey-year { font-size: 1.5rem; }
  .journey-card-milestone .journey-year { font-size: 1.8rem; }
  .journey-dot { width: 44px; height: 44px; font-size: 1rem; }
  .journey-dot-milestone { width: 54px; height: 54px; font-size: 1.2rem; }
  .journey-card { padding: 18px 14px; }
}

/*==============================
  Vertical Timeline — vt-*
==============================*/
.vt-timeline {
  position: relative;
  max-width: 900px;
  margin: 60px auto 0;
  padding-bottom: 20px;
}

/* Centre line */
.vt-timeline::before {
  content: "";
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  width: 2px;
  transform: translateX(-50%);
  background: linear-gradient(
    to bottom,
    transparent 0%,
    var(--gold) 8%,
    var(--orange) 50%,
    var(--gold) 92%,
    transparent 100%
  );
}

/* Each row */
.vt-item {
  position: relative;
  width: 46%;
  margin-bottom: 48px;
  display: flex;
  align-items: flex-start;
}

.vt-left  { left: 0;    flex-direction: row-reverse; text-align: right; }
.vt-right { left: 54%;  flex-direction: row;          text-align: left;  }

/* Dot on the centre line */
.vt-dot {
  position: absolute;
  width: 50px; height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--orange));
  color: #000;
  font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 0 5px rgba(var(--gold-rgb),0.12),
              0 0 0 10px rgba(var(--gold-rgb),0.05),
              0 6px 20px rgba(var(--gold-rgb),0.35);
  z-index: 2;
  transition: transform var(--transition), box-shadow var(--transition);
  top: 18px;
}

.vt-left  .vt-dot { right: -25px; }
.vt-right .vt-dot { left:  -25px; }

.vt-item:hover .vt-dot {
  transform: scale(1.15);
  box-shadow: 0 0 0 6px rgba(var(--gold-rgb),0.20),
              0 0 0 14px rgba(var(--gold-rgb),0.07),
              0 8px 28px rgba(var(--gold-rgb),0.50);
}

/* Connector line from dot to card */
.vt-item::after {
  content: "";
  position: absolute;
  top: 42px;
  width: 28px; height: 1.5px;
  background: linear-gradient(90deg, rgba(var(--gold-rgb),0.40), rgba(var(--gold-rgb),0.10));
}

.vt-left::after  { right: -2px; }
.vt-right::after { left:  -2px; }

/* Card */
.vt-card {
  width: 100%;
  padding: 26px 28px;
  border-radius: var(--radius-lg);
  /* Scroll-reveal — hidden by default, shown by JS */
  opacity: 0;
  transition: opacity 0.7s ease, transform 0.7s ease,
              box-shadow var(--transition), border-color var(--transition);
}

.vt-left  .vt-card { transform: translateX(-30px); }
.vt-right .vt-card { transform: translateX(30px);  }

.vt-card.vt-visible {
  opacity: 1;
  transform: translateX(0) !important;
}

.vt-item:hover .vt-card {
  border-color: rgba(var(--gold-rgb),0.40);
  box-shadow: 0 16px 48px rgba(var(--gold-rgb),0.14);
}

/* Year number */
.vt-year {
  display: block;
  font-family: 'Cinzel', serif;
  font-size: 2rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
  text-shadow: 0 0 28px rgba(var(--gold-rgb),0.35);
  letter-spacing: -0.02em;
}

.vt-card h4 {
  font-size: 1rem;
  margin-bottom: 8px;
  color: rgba(255,255,255,0.95);
}

.vt-card p {
  font-size: 0.88rem;
  line-height: 1.7;
  margin: 0;
  color: var(--text-muted);
}

/* ── 2026 Milestone ──────────────── */
.vt-dot-milestone {
  width: 62px; height: 62px;
  font-size: 1.35rem;
  top: 12px;
  box-shadow: 0 0 0 6px rgba(var(--gold-rgb),0.18),
              0 0 0 14px rgba(var(--gold-rgb),0.07),
              0 8px 30px rgba(var(--gold-rgb),0.50);
  animation: milestoneGlow 3.5s ease-in-out infinite;
}

.vt-left.vt-milestone  .vt-dot { right: -32px; }
.vt-right.vt-milestone .vt-dot { left:  -32px; }

.vt-card-milestone {
  border-color: rgba(var(--gold-rgb),0.38) !important;
  background: linear-gradient(135deg,
    rgba(var(--gold-rgb),0.10) 0%,
    rgba(var(--orange-rgb),0.06) 100%
  ) !important;
  box-shadow: 0 12px 40px rgba(var(--gold-rgb),0.14);
}

.vt-card-milestone::before {
  content: "";
  position: absolute;
  top: 0; left: 10%; right: 10%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), var(--orange), transparent);
  border-radius: 2px;
}

.vt-card-milestone { position: relative; overflow: hidden; }

.vt-card-milestone .vt-year { font-size: 2.4rem; }

/* ── Responsive ───────────────────── */
@media (max-width: 991px) {
  .vt-timeline::before { left: 28px; }

  .vt-item {
    width: 100%;
    left: 0 !important;
    flex-direction: row !important;
    text-align: left !important;
    padding-left: 72px;
    margin-bottom: 36px;
  }

  .vt-left  .vt-dot,
  .vt-right .vt-dot { left: 4px !important; right: auto !important; }

  .vt-left.vt-milestone  .vt-dot,
  .vt-right.vt-milestone .vt-dot { left: -2px !important; }

  .vt-left  .vt-card { transform: translateX(-20px); }
  .vt-right .vt-card { transform: translateX(20px); }

  .vt-left::after  { left: 52px; right: auto; }
  .vt-right::after { left: 52px; right: auto; }
}

@media (max-width: 576px) {
  .vt-card { padding: 20px 18px; }
  .vt-year { font-size: 1.6rem; }
  .vt-card-milestone .vt-year { font-size: 1.9rem; }
  .vt-dot { width: 42px; height: 42px; font-size: 0.95rem; }
  .vt-dot-milestone { width: 52px; height: 52px; font-size: 1.1rem; }
}

/* =====================================================
   MOBILE AUDIT FIXES — targeted patches
   ===================================================== */

/* ── FIX 1: Gallery arrows — position:absolute overlay
   so they don't shrink the track width on mobile,
   and meet 44px minimum touch target ─────────────── */
.gallery-slider-wrapper {
  position: relative;
}

.gallery-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px; height: 44px;   /* 44px min touch target */
  z-index: 10;
  flex-shrink: 0;
}

.gallery-arrow-prev {
  left: 4px;
  margin-right: 0;
}

.gallery-arrow-next {
  right: 4px;
  margin-left: 0;
}

/* Track no longer needs margin for arrows — arrows overlay */
.gallery-slider-track {
  margin: 0;
  width: 100%;
}

/* Slight inner padding so first/last card isn't hidden under arrows */
.gallery-slider-wrapper .gallery-slider-track {
  padding: 0 52px;
}

@media (max-width: 576px) {
  .gallery-arrow { width: 40px; height: 40px; }
  .gallery-slider-wrapper .gallery-slider-track { padding: 0 44px; }
}

/* ── FIX 2: Hero min-height on mobile stacks to ~180vh
   Reduce min-height and add padding so content breathes ── */
@media (max-width: 991px) {
  .hero-section {
    min-height: auto;
    padding-top: 90px;
    padding-bottom: 60px;
  }

  .hero-section .row.min-vh-100 {
    min-height: auto !important;
  }
}

/* ── FIX 3: vt-timeline overflow — handled by html/body only ── */

.vt-card {
  /* Constrain initial translateX so it never escapes the viewport */
  overflow: visible;
}

@media (max-width: 991px) {
  /* On mobile the cards are full-width, translateX is irrelevant */
  .vt-left  .vt-card,
  .vt-right .vt-card { transform: translateY(20px); }

  .vt-card.vt-visible { transform: translateY(0) !important; }
}

/* ── FIX 4: About carousel arrows — 44px touch target ── */
.about-carousel-prev,
.about-carousel-next {
  width: 44px; height: 44px;
}

/* ── FIX 5: Navbar dropdown width on 375px screens ── */
@media (max-width: 420px) {
  .navbar .dropdown-menu {
    min-width: 180px;
    max-width: calc(100vw - 32px);
  }

  /* Navbar toggler — ensure 44px tap target */
  .navbar-toggler {
    min-width: 44px;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

/* ── FIX 6: Footer copyright centering on mobile ── */
@media (max-width: 767px) {
  .footer .row.align-items-center > div {
    text-align: center !important;
  }

  .footer .developer-credit {
    margin-top: 8px;
  }
}

/* ── FIX 7: Committee portrait max-height on mobile
   aspect-ratio 4/5 on full-width = ~480px — cap it ── */
@media (max-width: 991px) {
  .committee-img-wrap {
    max-height: 380px;
  }
}

@media (max-width: 576px) {
  .committee-img-wrap {
    max-height: 320px;
  }
}

/* ── FIX 8: Feature boxes long Hindi/Marathi text in col-6 ── */
@media (max-width: 576px) {
  .feature-box {
    padding: 8px 10px;
    gap: 8px;
  }

  .feature-box span {
    font-size: 0.78rem;
    line-height: 1.3;
  }

  .feature-box i {
    font-size: 0.95rem;
    flex-shrink: 0;
  }
}

/* ── FIX 9: overflow-x handled only by html/body — do NOT
   set overflow on sections as it creates scroll containers ── */

/* ── FIX 10: vt-timeline dot positioning on mobile
   ensure dots don't bleed outside container ── */
@media (max-width: 991px) {
  .vt-timeline {
    padding-left: 0;
    padding-right: 0;
  }

  .vt-item {
    padding-left: 64px;
    padding-right: 8px;
  }

  .vt-dot {
    left: 4px !important;
    right: auto !important;
  }

  .vt-dot-milestone {
    left: -2px !important;
  }

  .vt-item::after {
    left: 48px !important;
    right: auto !important;
    width: 20px;
  }
}

/* ── FIX 11: Event activity tags wrap cleanly on mobile ── */
@media (max-width: 576px) {
  .event-activities {
    gap: 4px;
  }

  .event-activities span {
    font-size: 0.70rem;
    padding: 3px 9px;
  }
}

/* ── FIX 12: Countdown box separators on 320px ── */
@media (max-width: 360px) {
  .countdown-wrapper {
    padding: 14px 8px;
  }

  .count-box h2 {
    font-size: 1.3rem;
  }

  .count-box span {
    font-size: 0.55rem;
  }
}

/* ── FIX 13: Section subtitle max-width on mobile ── */
@media (max-width: 576px) {
  .section-subtitle {
    font-size: 0.88rem;
    max-width: 100%;
    padding: 0 4px;
  }
}

/* ── FIX 14: Hero tag text overflow on very small screens ── */
@media (max-width: 380px) {
  .hero-tag {
    font-size: 0.58rem;
    letter-spacing: 0.8px;
    padding: 5px 10px;
    white-space: normal;
    text-align: center;
  }
}

/* ── FIX 15: Contact row gap on mobile ── */
@media (max-width: 991px) {
  .contact-card {
    margin-bottom: 24px;
  }
}
