/* -------------------------------------------------------------
   AJANTA SANGH SAMITI - DURGA PUJA WEBSITE STYLESHEET
   Theme: Regal Maroon & Gold with Emerald accents & Glassmorphism
   Fully Responsive for Mobile, Tablet & Desktop with Rich Visuals
   ------------------------------------------------------------- */

:root {
  --maroon-dark: #1b0201;
  --maroon-deep: #280402;
  --maroon-main: #54090a;
  --maroon-mid: #7c1210;
  --maroon-light: #9a201c;
  --maroon-border: #a43a29;
  
  --gold-light: #fbe69b;
  --gold-main: #cf9d2f;
  --gold-bright: #f4d888;
  --gold-dark: #8a6a2c;
  --gold-gradient: linear-gradient(135deg, #fceabb 0%, #f8b500 50%, #c18817 100%);

  --cream-bg: #fdf8ef;
  --cream-card: #fbf1de;
  --cream-text: #f5eedc;
  --cream-dim: #e6d3af;

  --ink-dark: #200a04;
  --ink-body: #3d1c10;
  --ink-muted: #6e4635;

  --green-deep: #062b18;
  --green-main: #0e4c2b;
  --green-accent: #278e52;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --wrap-max: 1240px;

  --shadow-card: 0 16px 36px rgba(0, 0, 0, 0.4);
  --shadow-glow: 0 0 25px rgba(207, 157, 47, 0.35);
}

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

html, body {
  overflow-x: hidden;
  max-width: 100vw;
  scroll-behavior: smooth;
}

body {
  background-color: var(--maroon-dark);
  background-image: 
    radial-gradient(circle at 10% 20%, rgba(84, 9, 10, 0.6) 0%, transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(207, 157, 47, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(40, 4, 2, 0.9) 0%, #170201 100%);
  background-attachment: fixed;
  color: var(--cream-text);
  font-family: 'Jost', 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.25s ease;
}

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

button, input, select {
  font-family: inherit;
}

/* Typography */
h1, h2, h3, h4, .font-cinzel {
  font-family: 'Cinzel', Georgia, serif;
  letter-spacing: 0.04em;
}

.bengali-script {
  font-family: 'Hind Siliguri', 'Noto Serif Bengali', serif;
}

.eyebrow {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-size: clamp(1rem, 3.5vw, 1.25rem);
  color: var(--gold-bright);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 8px;
  text-align: center;
}

.eyebrow::before, .eyebrow::after {
  content: "";
  display: inline-block;
  width: clamp(20px, 6vw, 40px);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-main), transparent);
}

.wrap {
  max-width: var(--wrap-max);
  margin: 0 auto;
  padding: 0 20px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 22px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  white-space: nowrap;
}

.btn-gold {
  background: var(--gold-gradient);
  color: var(--ink-dark);
  border-color: #f7d070;
  box-shadow: 0 6px 20px rgba(207, 157, 47, 0.4);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(207, 157, 47, 0.6);
  filter: brightness(1.08);
}

.btn-maroon {
  background: linear-gradient(180deg, var(--maroon-mid), var(--maroon-main));
  color: var(--gold-light);
  border-color: var(--gold-dark);
}

.btn-maroon:hover {
  background: linear-gradient(180deg, var(--maroon-light), var(--maroon-mid));
  border-color: var(--gold-main);
  transform: translateY(-2px);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.05);
  color: var(--gold-bright);
  border-color: var(--gold-main);
  backdrop-filter: blur(4px);
}

.btn-outline:hover {
  background: rgba(207, 157, 47, 0.15);
  color: #fff;
  border-color: var(--gold-light);
  transform: translateY(-2px);
}

.btn-green {
  background: linear-gradient(180deg, var(--green-accent), var(--green-main));
  color: #fff;
  border-color: #38b76c;
}

.btn-icon {
  width: 18px;
  height: 18px;
  fill: currentColor;
  flex-shrink: 0;
}

/* Section Styling */
section {
  padding: clamp(40px, 8vw, 80px) 0;
  position: relative;
}

.section-head {
  text-align: center;
  margin-bottom: clamp(30px, 6vw, 50px);
}

.section-head h2 {
  font-size: clamp(1.6rem, 5vw, 2.75rem);
  color: var(--gold-bright);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
  margin-top: 6px;
  line-height: 1.25;
}

.section-head p {
  max-width: 680px;
  margin: 12px auto 0;
  color: var(--cream-dim);
  font-size: clamp(0.9rem, 3vw, 1.05rem);
}

.divider-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 12px 0;
}

.divider-icon svg {
  width: 24px;
  height: 24px;
  fill: var(--gold-main);
}

.divider-line {
  width: clamp(40px, 12vw, 80px);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-main), transparent);
}

/* Header & Nav */
.header-top {
  position: sticky;
  top: 0;
  z-index: 100;
  background: linear-gradient(180deg, rgba(32, 2, 2, 0.98), rgba(20, 1, 1, 0.95));
  border-bottom: 1px solid rgba(207, 157, 47, 0.3);
  backdrop-filter: blur(10px);
}

.header-top .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
}

/* -------------------------------------------------------------
   INTERACTIVE ANIMATED EMBLEM FOR AJANTA SAMITI LOGO
   ------------------------------------------------------------- */

.brand-emblem-stage {
  position: relative;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  flex-shrink: 0;
  cursor: pointer;
  perspective: 600px;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease, filter 0.3s ease;
  box-shadow: 0 0 15px rgba(207, 157, 47, 0.4), inset 0 0 8px rgba(0, 0, 0, 0.8);
}

.brand-emblem-stage:hover,
.brand-logo:hover .brand-emblem-stage {
  transform: scale(1.08);
  box-shadow: 0 0 25px rgba(244, 216, 136, 0.7), inset 0 0 10px rgba(0, 0, 0, 0.6);
  filter: brightness(1.12);
}

.brand-emblem-stage:active {
  transform: scale(0.94);
}

.logo-clicked-ripple {
  animation: logoClickPulse 0.5s ease-out;
}

@keyframes logoClickPulse {
  0% { transform: scale(1); box-shadow: 0 0 15px rgba(207, 157, 47, 0.4); }
  50% { transform: scale(1.18); box-shadow: 0 0 35px rgba(255, 215, 0, 0.9); }
  100% { transform: scale(1); }
}

.emblem-base-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 50%;
  display: block;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.5));
}

.emblem-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

/* 1. Outer Bearing Rotation */
.outer-bearings-svg {
  z-index: 4;
}

.bearing-track-group {
  transform-origin: 100px 100px;
  animation: bearingRotateCW calc(26s / var(--bearing-speed-mult, 1)) linear infinite;
}

.brand-emblem-stage:hover .bearing-track-group,
.brand-logo:hover .bearing-track-group {
  animation-duration: calc(16s / var(--bearing-speed-mult, 1));
}

@keyframes bearingRotateCW {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* 2. Gear Rotations */
.mechanical-gears-svg {
  z-index: 3;
}

.gear-large-cw {
  transform-origin: center;
  animation: gearSpinCW calc(22s / var(--large-gear-mult, 1)) linear infinite;
}

.gear-medium-ccw {
  transform-origin: center;
  animation: gearSpinCCW calc(14s / var(--small-gear-mult, 1)) linear infinite;
}

.gear-small-cw {
  transform-origin: center;
  animation: gearSpinCW calc(10s / var(--small-gear-mult, 1)) linear infinite;
}

@keyframes gearSpinCW {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes gearSpinCCW {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(-360deg); }
}

/* 3. Reciprocating Piston Stroke */
.mechanical-pistons-svg {
  z-index: 3;
}

.piston-element {
  animation: pistonReciprocate 2.4s ease-in-out infinite;
}

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

/* 4. Trishul Red Rudraksha Spiritual Breathing Glow */
.emblem-rudraksha-glow {
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #ff002b;
  z-index: 5;
  pointer-events: none;
  animation: rudrakshaBreathing 2.5s ease-in-out infinite;
}

.glow-bead-top {
  top: 18.5%;
  left: 49.5%;
  transform: translateX(-50%);
}

.glow-bead-left {
  top: 24.5%;
  left: 40.5%;
}

.glow-bead-right {
  top: 24.5%;
  left: 56.5%;
}

@keyframes rudrakshaBreathing {
  0%, 100% {
    opacity: 0.35;
    transform: scale(0.85);
    box-shadow: 0 0 3px #d90429;
  }
  50% {
    opacity: 1;
    transform: scale(1.3);
    box-shadow: 0 0 10px #ff002b, 0 0 16px #ff4d6d;
  }
}

/* 5. Text Metallic Shine Sweep */
.emblem-text-shine {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  z-index: 6;
  pointer-events: none;
  background: linear-gradient(
    120deg, 
    transparent 35%, 
    rgba(255, 255, 255, 0.4) 48%, 
    rgba(254, 240, 138, 0.7) 50%, 
    rgba(255, 255, 255, 0.4) 52%, 
    transparent 65%
  );
  background-size: 200% 200%;
  animation: textShineSweep 4s linear infinite;
  mix-blend-mode: overlay;
}

@keyframes textShineSweep {
  0% { background-position: -150% -150%; }
  100% { background-position: 150% 150%; }
}

.brand-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.brand-text h1 {
  font-size: clamp(1.05rem, 3.8vw, 1.3rem);
  color: var(--gold-bright);
  line-height: 1.25;
  letter-spacing: 0.04em;
  margin: 0;
  padding-top: 2px;
  white-space: nowrap;
}

.brand-text small {
  display: block;
  font-family: 'Jost', sans-serif;
  font-size: 0.68rem;
  color: var(--cream-dim);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 12px;
  list-style: none;
  font-size: 0.83rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.nav-links a {
  padding: 6px 0;
  color: var(--cream-text);
  position: relative;
  white-space: nowrap;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold-bright);
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--gold-main);
  transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.header-actions .btn {
  padding: 8px 14px;
  font-size: 0.84rem;
  white-space: nowrap;
}

.burger-btn {
  display: none;
  background: rgba(207, 157, 47, 0.12);
  border: 1px solid var(--gold-main);
  color: var(--gold-bright);
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  font-size: 1.2rem;
  cursor: pointer;
  min-height: 42px;
  min-width: 42px;
}

/* Mobile Nav Drawer */
.mobile-nav {
  display: none;
  position: fixed;
  top: 76px;
  left: 0;
  width: 100%;
  max-height: calc(100vh - 76px);
  overflow-y: auto;
  background: rgba(22, 2, 2, 0.98);
  border-bottom: 2px solid var(--gold-main);
  backdrop-filter: blur(14px);
  padding: 24px 20px 32px;
  z-index: 99;
  box-shadow: 0 20px 40px rgba(0,0,0,0.8);
}

.mobile-nav.active {
  display: block;
  animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

.mobile-nav ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.mobile-nav a {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--cream-text);
  display: block;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(207, 157, 47, 0.15);
}

.mobile-nav a:hover, .mobile-nav a:active {
  background: rgba(207, 157, 47, 0.2);
  color: var(--gold-bright);
  border-color: var(--gold-main);
}

/* Hero Section (Compact 1-Page Layout shifted UP) */
.hero {
  position: relative;
  padding: 14px 0 20px;
  background: 
    radial-gradient(ellipse 900px 500px at 75% 30%, rgba(207, 157, 47, 0.22), transparent 60%),
    linear-gradient(180deg, #360504 0%, #1e0201 100%);
  overflow: hidden;
  border-bottom: 1px solid var(--maroon-border);
}

/* Hero Top Grid: Title Block (Left) + Countdown Box (Top Right) */
.hero-top-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 16px;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(207, 157, 47, 0.25);
}

.hero-title-block {
  text-align: left;
}

.hero-title-block .hero-bengali-title {
  font-size: clamp(0.95rem, 2.8vw, 1.3rem);
  color: var(--gold-bright);
  margin-bottom: 2px;
  text-shadow: 0 0 12px rgba(207, 157, 47, 0.4);
}

.hero-title-block .hero-main-title {
  font-size: clamp(1.5rem, 4vw, 2.3rem);
  line-height: 1.08;
  color: var(--gold-light);
  margin-bottom: 3px;
  text-shadow: 2px 4px 10px rgba(0, 0, 0, 0.8);
  letter-spacing: 0.03em;
  font-family: 'Cinzel', serif;
}

.hero-title-block .hero-subtitle {
  font-size: clamp(0.8rem, 2.2vw, 0.95rem);
  color: var(--cream-text);
  font-weight: 500;
  letter-spacing: 0.05em;
  margin-bottom: 3px;
}

.hero-title-block .hero-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(0.82rem, 2.3vw, 0.98rem);
  color: var(--cream-dim);
  margin-bottom: 0;
}

/* Top Right Countdown Box (Circular Theme & Digital Clock) */
.hero-countdown-box.circular-theme {
  background: rgba(26, 2, 2, 0.96);
  border: 1.5px solid var(--gold-main);
  border-radius: var(--radius-lg);
  padding: 10px 12px;
  text-align: center;
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.75), inset 0 0 15px rgba(207, 157, 47, 0.2);
  width: 100%;
  max-width: 440px;
  justify-self: end;
}

.digital-clock-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(207, 157, 47, 0.3);
  border-radius: 16px;
  padding: 3px 10px;
  margin: 0 auto 6px;
  width: fit-content;
}

.digital-clock-label {
  font-size: 0.62rem;
  color: var(--gold-bright);
  font-weight: 700;
  letter-spacing: 0.08em;
}

.digital-clock-display {
  font-family: 'Cinzel', monospace, sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.06em;
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.6);
}

.countdown-heading-title {
  font-size: clamp(0.65rem, 2vw, 0.74rem);
  letter-spacing: 0.08em;
  color: var(--gold-bright);
  text-transform: uppercase;
  margin-bottom: 6px;
  font-family: 'Jost', sans-serif;
}

.circular-countdown-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  margin-bottom: 8px;
  justify-items: center;
}

.circle-unit-item {
  position: relative;
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.circle-svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg); /* Start arc from top center */
}

.circle-bg-track {
  fill: none;
  stroke: rgba(255, 255, 255, 0.12);
  stroke-width: 6;
}

.circle-progress-arc {
  fill: none;
  stroke-width: 6;
  stroke-linecap: round;
  stroke-dasharray: 264; /* 2 * PI * r = 2 * 3.14159 * 42 = 263.89 */
  stroke-dashoffset: 0;
  transition: stroke-dashoffset 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  filter: drop-shadow(0 0 4px currentColor);
}

.circle-center-text {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.circle-num {
  font-size: 1.1rem;
  font-weight: 800;
  color: #fff;
  font-family: 'Cinzel', serif;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.9);
}

.circle-lbl {
  font-size: 0.55rem;
  font-weight: 700;
  color: var(--cream-dim);
  letter-spacing: 0.05em;
  margin-top: 2px;
}

@media (max-width: 480px) {
  .circular-countdown-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .circle-unit-item {
    width: 68px;
    height: 68px;
  }
}

.hero-buttons-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
}

.btn-xs {
  padding: 5px 11px !important;
  font-size: 0.76rem !important;
  font-weight: 600 !important;
  border-radius: 16px !important;
  letter-spacing: 0.02em;
}

/* Single Landscape Row: 3D Video on LEFT + 3D Image on RIGHT */
.hero-landscape-media-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  align-items: center;
}

.durga-stage-landscape {
  aspect-ratio: 16 / 9;
  width: 100%;
  max-height: 250px;
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 2px solid var(--gold-main);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.8), 0 0 25px rgba(207, 157, 47, 0.35);
  background: #120101;
  display: block;
}

/* 3D Animated Video Player */
.durga-hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  z-index: 1;
  position: relative;
  filter: brightness(0.96) contrast(1.06);
}

/* Durga Idol 3D Cinematic Scene Stage */
.durga-card-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 2px solid var(--gold-main);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.85), 0 0 35px rgba(207, 157, 47, 0.45);
  background: #120101;
  aspect-ratio: 4 / 3;
  width: 100%;
  display: block;
}

.durga-3d-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.durga-hero-img.durga-depth-blend {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
  z-index: 1;
  position: relative;
  filter: brightness(0.95) contrast(1.1);
  animation: divineAuraBreathing 6s ease-in-out infinite, cameraPanZoom 16s ease-in-out infinite alternate;
}

.camera-shake-active {
  animation: cameraShake 0.4s ease-out !important;
}

@keyframes cameraPanZoom {
  0% { transform: scale(1) translate(0, 0); }
  50% { transform: scale(1.05) translate(-0.8%, -0.8%); }
  100% { transform: scale(1.02) translate(0.5%, 0.5%); }
}

@keyframes cameraShake {
  0%, 100% { transform: translate(0, 0); }
  20% { transform: translate(-6px, 4px) rotate(-0.5deg); }
  40% { transform: translate(6px, -4px) rotate(0.5deg); }
  60% { transform: translate(-4px, -3px); }
  80% { transform: translate(4px, 3px); }
}

@keyframes divineAuraBreathing {
  0%, 100% { filter: brightness(0.94) contrast(1.1); }
  50% { filter: brightness(1.12) contrast(1.22) drop-shadow(0 0 25px rgba(255, 215, 0, 0.7)); }
}

.durga-img-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(180deg, transparent 0%, rgba(20, 2, 1, 0.95) 75%);
  padding: 26px 16px 14px;
  color: var(--gold-bright);
  font-family: 'Cinzel', serif;
  font-size: clamp(0.95rem, 3vw, 1.1rem);
  text-align: center;
  z-index: 4;
}

/* Trishool Strike Interactive Button */
.trishul-strike-trigger-btn {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 6;
  background: linear-gradient(135deg, rgba(220, 38, 38, 0.9), rgba(146, 64, 14, 0.95));
  border: 1px solid var(--gold-bright);
  color: #ffffff;
  padding: 7px 14px;
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(220, 38, 38, 0.6);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  letter-spacing: 0.04em;
}

.trishul-strike-trigger-btn:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.8);
  background: linear-gradient(135deg, rgba(255, 0, 43, 0.95), rgba(207, 157, 47, 0.95));
}

.trishul-strike-trigger-btn svg {
  width: 15px;
  height: 15px;
  fill: var(--gold-bright);
}

/* Divine Shockwave Effect */
.divine-shockwave-ring {
  position: absolute;
  top: 45%;
  left: 50%;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 4px solid var(--gold-bright);
  box-shadow: 0 0 40px #ff002b, inset 0 0 20px #ffd700;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0);
  pointer-events: none;
  z-index: 5;
}

.divine-shockwave-ring.trigger-shockwave {
  animation: shockwaveExpand 1.2s cubic-bezier(0.1, 0.8, 0.3, 1) forwards;
}

@keyframes shockwaveExpand {
  0% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(0.2);
    border-width: 8px;
  }
  50% {
    opacity: 0.85;
    border-width: 4px;
  }
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(14);
    border-width: 1px;
  }
}

.trishul-spark-container {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 3;
}

/* Countdown Card */
.countdown-card {
  position: absolute;
  bottom: -25px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  background: rgba(30, 3, 2, 0.95);
  border: 1px solid var(--gold-main);
  border-radius: var(--radius-md);
  padding: 14px 16px;
  text-align: center;
  backdrop-filter: blur(8px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
  z-index: 5;
}

.countdown-card h4 {
  font-size: clamp(0.75rem, 2.5vw, 0.85rem);
  letter-spacing: 0.12em;
  color: var(--gold-bright);
  text-transform: uppercase;
  margin-bottom: 8px;
  font-family: 'Jost', sans-serif;
}

.countdown-digits {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(6px, 2vw, 12px);
}

.countdown-unit {
  min-width: clamp(42px, 12vw, 55px);
}

.countdown-unit span {
  display: block;
  font-family: 'Cinzel', serif;
  font-size: clamp(1.2rem, 4.5vw, 1.6rem);
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
}

.countdown-unit small {
  font-size: clamp(0.6rem, 2vw, 0.65rem);
  letter-spacing: 0.1em;
  color: var(--cream-dim);
  text-transform: uppercase;
}

.countdown-sep {
  color: var(--gold-dark);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 10px;
}

/* Values Banner */
.values-banner {
  margin-top: clamp(30px, 6vw, 50px);
  position: relative;
  z-index: 10;
}

.values-grid {
  background: var(--cream-card);
  color: var(--ink-dark);
  border: 1px solid var(--gold-main);
  border-radius: var(--radius-md);
  padding: 20px 16px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  box-shadow: var(--shadow-card);
}

.value-item {
  text-align: center;
  padding: 8px 10px;
  border-right: 1px solid #d7bf8f;
}

.value-item:last-child {
  border-right: none;
}

.value-icon {
  width: 32px;
  height: 32px;
  margin: 0 auto 6px;
  color: var(--maroon-mid);
}

.value-icon svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.value-item h3 {
  font-size: clamp(0.85rem, 2.5vw, 0.95rem);
  color: var(--maroon-main);
  margin-bottom: 4px;
  font-weight: 700;
}

.value-item p {
  font-size: clamp(0.75rem, 2vw, 0.82rem);
  color: var(--ink-body);
  line-height: 1.3;
}

/* Section Cards & Panels */
.panel-cream {
  background: var(--cream-card);
  color: var(--ink-dark);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 5vw, 44px) clamp(18px, 4vw, 36px);
  box-shadow: var(--shadow-card);
  border: 1px solid #d7bf8f;
}

/* About Us Section */
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 32px;
  align-items: center;
}

.about-text h3 {
  color: var(--maroon-mid);
  font-size: clamp(0.95rem, 3vw, 1.1rem);
  margin-bottom: 6px;
}

.about-text h2 {
  color: var(--maroon-main);
  font-size: clamp(1.6rem, 5vw, 2.2rem);
  margin-bottom: 14px;
  line-height: 1.2;
}

.about-text p {
  color: var(--ink-body);
  font-size: clamp(0.9rem, 2.8vw, 1.02rem);
  margin-bottom: 12px;
}

.stat-badges {
  display: flex;
  gap: 20px;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid #d8be90;
  flex-wrap: wrap;
}

.stat-badge b {
  display: block;
  font-family: 'Cinzel', serif;
  font-size: clamp(1.4rem, 4vw, 1.8rem);
  color: var(--maroon-main);
}

.stat-badge span {
  font-size: 0.75rem;
  color: var(--ink-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.about-illustration {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 2px solid var(--gold-main);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
  aspect-ratio: 4 / 3;
}

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

/* Memorial & Tributes Section */
.memorial-section {
  background: linear-gradient(180deg, rgba(40, 4, 2, 0.95), rgba(20, 2, 1, 0.98));
  border-top: 1px solid var(--gold-dark);
  border-bottom: 1px solid var(--gold-dark);
}

.tribute-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 24px;
}

.special-tribute-card {
  background: linear-gradient(145deg, #3d0705, #1d0302);
  border: 1px solid var(--gold-main);
  border-radius: var(--radius-md);
  padding: clamp(20px, 4vw, 32px);
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.tribute-tag {
  display: inline-block;
  background: var(--gold-main);
  color: var(--ink-dark);
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  padding: 4px 10px;
  border-radius: 20px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.special-tribute-card h3 {
  font-size: clamp(1.3rem, 4vw, 1.6rem);
  color: var(--gold-bright);
  margin-bottom: 10px;
}

.special-tribute-card p {
  color: var(--cream-text);
  font-size: clamp(0.9rem, 2.8vw, 0.98rem);
  line-height: 1.6;
}

.memorial-list-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(207, 157, 47, 0.3);
  border-radius: var(--radius-md);
  padding: clamp(20px, 4vw, 28px);
}

.memorial-list-card h4 {
  color: var(--gold-bright);
  font-size: clamp(1.05rem, 3.5vw, 1.2rem);
  margin-bottom: 14px;
  border-bottom: 1px solid var(--gold-dark);
  padding-bottom: 8px;
}

.memorial-names {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.memorial-names li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: clamp(0.95rem, 3vw, 1.05rem);
  color: var(--cream-dim);
}

.memorial-names li svg {
  width: 16px;
  height: 16px;
  fill: var(--gold-main);
  flex-shrink: 0;
}

/* Puja Schedule Section */
.schedule-tabs-wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin-bottom: 24px;
  padding-bottom: 6px;
}

.schedule-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  min-width: max-content;
}

.tab-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--maroon-border);
  color: var(--cream-dim);
  padding: 8px 16px;
  border-radius: 30px;
  font-weight: 600;
  font-size: clamp(0.8rem, 2.5vw, 0.9rem);
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.3s ease;
}

.tab-btn:hover,
.tab-btn.active {
  background: var(--gold-main);
  color: var(--ink-dark);
  border-color: var(--gold-light);
  box-shadow: 0 4px 15px rgba(207, 157, 47, 0.4);
}

.schedule-card {
  background: var(--cream-card);
  color: var(--ink-dark);
  border-radius: var(--radius-lg);
  padding: clamp(20px, 4vw, 36px);
  box-shadow: var(--shadow-card);
  margin-bottom: 24px;
  border: 1px solid #d7bf8f;
}

.schedule-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 2px solid var(--gold-main);
  padding-bottom: 12px;
  margin-bottom: 18px;
  flex-wrap: wrap;
  gap: 10px;
}

.schedule-title h3 {
  font-size: clamp(1.2rem, 4vw, 1.5rem);
  color: var(--maroon-main);
}

.schedule-title p {
  font-size: clamp(0.82rem, 2.5vw, 0.9rem);
  color: var(--ink-muted);
  font-weight: 600;
}

.schedule-date-badge {
  background: var(--maroon-main);
  color: var(--gold-light);
  padding: 6px 14px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 0.82rem;
}

.sched-table {
  width: 100%;
  border-collapse: collapse;
}

.sched-table th {
  text-align: left;
  font-family: 'Cinzel', serif;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  color: var(--maroon-mid);
  border-bottom: 2px solid var(--gold-main);
  padding: 10px 12px;
}

.sched-table td {
  padding: 12px;
  border-bottom: 1px solid #e3d2ab;
  font-size: clamp(0.88rem, 2.6vw, 0.95rem);
}

.sched-table tr:last-child td {
  border-bottom: none;
}

.sched-time {
  font-weight: 700;
  color: var(--maroon-main);
  white-space: nowrap;
}

.significance-banner {
  background: linear-gradient(135deg, #124e2d, #082817);
  border: 1px solid #3fae6c;
  border-radius: var(--radius-md);
  padding: 16px 20px;
  color: #eafff0;
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 20px;
}

.significance-banner svg {
  width: 28px;
  height: 28px;
  fill: #54e493;
  flex-shrink: 0;
}

/* Committee Section */
.committee-filter-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  gap: 16px;
  flex-wrap: wrap;
}

.committee-tabs-wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  width: 100%;
  padding-bottom: 6px;
}

.committee-tabs {
  display: flex;
  gap: 8px;
  min-width: max-content;
}

.committee-search {
  position: relative;
  width: 100%;
  max-width: 340px;
}

.committee-search input {
  width: 100%;
  padding: 10px 16px 10px 38px;
  border-radius: 20px;
  border: 1px solid var(--gold-dark);
  background: rgba(255, 255, 255, 0.08);
  color: var(--cream-text);
  font-size: 0.9rem;
  outline: none;
}

.committee-search input:focus {
  border-color: var(--gold-bright);
  box-shadow: 0 0 10px rgba(207, 157, 47, 0.3);
}

.committee-search svg {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  fill: var(--gold-main);
}

.committee-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 16px;
}

.member-card {
  background: linear-gradient(150deg, #3a0604, #1c0201);
  border: 1px solid var(--maroon-border);
  border-radius: var(--radius-md);
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 14px;
  transition: all 0.3s ease;
}

.member-card:hover {
  transform: translateY(-2px);
  border-color: var(--gold-main);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.member-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--maroon-light), var(--maroon-deep));
  border: 1.5px solid var(--gold-main);
  display: grid;
  place-items: center;
  color: var(--gold-bright);
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
  overflow: hidden;
}

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

.member-info h4 {
  font-size: clamp(0.92rem, 3vw, 1.02rem);
  color: var(--gold-bright);
  margin-bottom: 2px;
  line-height: 1.25;
}

.member-info p {
  font-size: 0.8rem;
  color: var(--cream-dim);
  line-height: 1.3;
}

.member-info .role-tag {
  display: inline-block;
  font-size: 0.68rem;
  background: rgba(207, 157, 47, 0.2);
  color: var(--gold-light);
  padding: 2px 8px;
  border-radius: 10px;
  margin-top: 4px;
  font-weight: 600;
}

/* Gallery Section */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  border: 1px solid var(--maroon-border);
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(0,0,0,0.4);
}

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

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

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(20, 2, 1, 0.92) 85%);
  display: flex;
  align-items: flex-end;
  padding: 14px;
  opacity: 0.9;
  transition: opacity 0.3s ease;
}

.gallery-overlay h4 {
  font-size: clamp(0.85rem, 2.5vw, 0.95rem);
  color: var(--gold-bright);
  font-family: 'Cinzel', serif;
  text-shadow: 0 2px 6px rgba(0,0,0,0.8);
}

/* Donation / Chanda Section */
.donation-card {
  background: linear-gradient(135deg, #440705, #220302);
  border: 2px solid var(--gold-main);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 5vw, 40px);
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 28px;
  align-items: center;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
}

.donation-info h2 {
  font-size: clamp(1.6rem, 5vw, 2.2rem);
  color: var(--gold-bright);
  margin-bottom: 10px;
}

.donation-info p {
  color: var(--cream-dim);
  font-size: clamp(0.9rem, 2.8vw, 1.02rem);
  margin-bottom: 20px;
}

.donation-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.qr-display-box {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 16px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  border: 3px solid var(--gold-main);
}

.qr-display-box img {
  max-width: clamp(160px, 45vw, 220px);
  margin: 0 auto 10px;
  display: block;
}

.qr-display-box p {
  color: var(--ink-dark);
  font-weight: 700;
  font-size: clamp(0.78rem, 2.4vw, 0.88rem);
}

/* Contact & Location Section */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.contact-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--maroon-border);
  border-radius: var(--radius-lg);
  padding: clamp(20px, 4vw, 32px);
}

.contact-card h3 {
  font-size: clamp(1.2rem, 4vw, 1.4rem);
  color: var(--gold-bright);
  margin-bottom: 16px;
  border-bottom: 1px solid var(--gold-dark);
  padding-bottom: 8px;
}

.contact-item {
  display: flex;
  gap: 14px;
  margin-bottom: 16px;
}

.contact-icon {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: rgba(207, 157, 47, 0.15);
  color: var(--gold-bright);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.contact-icon svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.contact-details h4 {
  font-size: clamp(0.92rem, 3vw, 1rem);
  color: var(--cream-text);
  margin-bottom: 2px;
}

.contact-details p {
  font-size: clamp(0.82rem, 2.6vw, 0.9rem);
  color: var(--cream-dim);
}

/* Social Buttons */
.social-buttons-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 16px;
}

.social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.82rem;
  color: #fff;
  transition: transform 0.2s ease;
  white-space: nowrap;
}

.social-btn:hover {
  transform: translateY(-2px);
}

.social-btn.linkedin { background: #0a66c2; }
.social-btn.youtube { background: #ff0000; }
.social-btn.instagram { background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045); }
.social-btn.facebook { background: #1877f2; }
.social-btn.twitter { background: #000000; border: 1px solid #444; }
.social-btn.whatsapp { background: #25d366; }

/* Modal Lightbox */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.88);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: 16px;
  backdrop-filter: blur(8px);
}

.modal-overlay.active {
  display: flex;
}

.modal-content {
  background: var(--maroon-dark);
  border: 2px solid var(--gold-main);
  border-radius: var(--radius-lg);
  max-width: 500px;
  width: 100%;
  padding: clamp(20px, 4vw, 30px);
  position: relative;
  text-align: center;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.9);
  max-height: 90vh;
  overflow-y: auto;
}

.close-modal-btn {
  position: absolute;
  top: 10px;
  right: 14px;
  background: transparent;
  border: none;
  color: var(--gold-bright);
  font-size: 1.8rem;
  cursor: pointer;
  line-height: 1;
}

/* Footer */
footer {
  background: #120101;
  border-top: 1px solid var(--gold-dark);
  padding: 36px 0 24px;
  text-align: center;
  font-size: 0.85rem;
  color: var(--cream-dim);
}

.footer-blessing {
  font-family: 'Hind Siliguri', serif;
  font-size: clamp(1.4rem, 4vw, 1.8rem);
  color: var(--gold-bright);
  margin-bottom: 10px;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin: 16px 0;
  list-style: none;
  flex-wrap: wrap;
  font-size: 0.85rem;
}

/* -------------------------------------------------------------
   RESPONSIVE MEDIA QUERIES (TABLETS & MOBILE SMARTPHONES)
   ------------------------------------------------------------- */

@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-content {
    text-align: center;
  }

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

  /* Fix countdown card position on mobile */
  .countdown-card {
    position: relative;
    bottom: auto;
    left: auto;
    transform: none;
    width: 100%;
    margin-top: 16px;
  }

  .values-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }

  .value-item {
    border-right: none;
  }

  .about-grid, .donation-card, .contact-grid, .tribute-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1180px) {
  .nav-links {
    font-size: 0.78rem;
    gap: 8px;
  }
}

@media (max-width: 1040px) {
  .nav-links {
    display: none;
  }

  .burger-btn {
    display: block;
  }
}

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

  .value-item {
    border-bottom: 1px solid #d7bf8f;
    padding-bottom: 12px;
  }

  .value-item:last-child {
    border-bottom: none;
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }

  .hero-buttons .btn {
    width: 100%;
  }

  .stat-badges {
    justify-content: space-around;
  }

  .social-buttons-grid {
    grid-template-columns: 1fr;
  }

  .donation-actions {
    flex-direction: column;
    width: 100%;
  }

  .donation-actions .btn {
    width: 100%;
  }

  .committee-search {
    max-width: 100%;
  }
}

/* Mobile Small Devices (< 600px) - Stack Tables into Mobile Cards */
@media (max-width: 600px) {
  .sched-table, .sched-table tbody, .sched-table tr, .sched-table td {
    display: block;
    width: 100%;
  }

  .sched-table th {
    display: none;
  }

  .sched-table tr {
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid #e3d2ab;
  }

  .sched-table tr:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
  }

  .sched-table td {
    padding: 4px 0;
    border-bottom: none;
  }

  .sched-time {
    display: inline-block;
    background: var(--maroon-main);
    color: var(--gold-light);
    padding: 3px 10px;
    border-radius: 12px;
    font-size: 0.8rem;
    margin-bottom: 6px;
  }

  .member-card {
    padding: 12px;
  }
}

/* -------------------------------------------------------------
   ORGANIZATIONAL CHART & 5-DEPARTMENT SECTIONS STYLING
   ------------------------------------------------------------- */

.org-chart-section {
  background: linear-gradient(180deg, rgba(30, 3, 2, 0.95), rgba(15, 1, 1, 0.98));
  border-top: 1px solid var(--gold-dark);
  border-bottom: 1px solid var(--gold-dark);
  padding: clamp(30px, 6vw, 60px) 0;
}

.org-tree {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  max-width: 1050px;
  margin: 0 auto;
  position: relative;
}

.org-vertical-chain {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  width: 100%;
}

.org-node {
  background: linear-gradient(145deg, #3d0705, #1d0302);
  border: 2px solid var(--gold-main);
  border-radius: var(--radius-md);
  padding: 14px 20px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
  min-width: 240px;
  max-width: 320px;
  position: relative;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.org-node:hover {
  transform: translateY(-3px);
  border-color: var(--gold-bright);
  box-shadow: 0 12px 30px rgba(207, 157, 47, 0.35);
}

.org-photo-badge {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  margin: 0 auto 8px;
  overflow: hidden;
  border: 2px solid var(--gold-main);
  background: radial-gradient(circle, var(--maroon-light), var(--maroon-deep));
  display: grid;
  place-items: center;
  color: var(--gold-bright);
  font-weight: 700;
  font-size: 1.05rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
}

.org-photo-badge img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.org-node-title {
  font-family: 'Cinzel', serif;
  font-size: 0.76rem;
  letter-spacing: 0.1em;
  color: var(--gold-bright);
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 4px;
}

.org-node-name {
  font-size: 1.02rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.25;
}

.org-node-sub {
  font-size: 0.78rem;
  color: var(--cream-dim);
  margin-top: 2px;
}

.org-arrow {
  color: var(--gold-main);
  font-size: 1.4rem;
  line-height: 1;
}

/* Horizontal Management Branches (7 Branches under Secretary) */
.org-horizontal-row {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 10px;
  width: 100%;
  margin-top: 10px;
}

.org-horizontal-row.grid-7 {
  grid-template-columns: repeat(7, 1fr);
  gap: 10px;
}

.org-horizontal-row .org-node {
  min-width: 0;
  max-width: 100%;
  padding: 10px 8px;
}

.org-horizontal-row .org-node-title {
  font-size: 0.68rem;
}

.org-horizontal-row .org-node-name {
  font-size: 0.88rem;
}

@media (max-width: 1200px) {
  .org-horizontal-row,
  .org-horizontal-row.grid-7 {
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
  }
}

@media (max-width: 768px) {
  .org-horizontal-row,
  .org-horizontal-row.grid-7 {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
}

@media (max-width: 480px) {
  .org-horizontal-row,
  .org-horizontal-row.grid-7 {
    grid-template-columns: 1fr;
  }
}

/* 5 Department Section Containers */
.dept-block {
  margin-bottom: 44px;
}

.dept-block:last-child {
  margin-bottom: 0;
}

.dept-header {
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 2px solid var(--gold-main);
  padding-bottom: 10px;
  margin-bottom: 20px;
}

.dept-icon {
  font-size: 1.5rem;
  line-height: 1;
}

.dept-header h3 {
  font-size: clamp(1.2rem, 3.5vw, 1.6rem);
  color: var(--gold-bright);
}

.dept-header p {
  font-size: 0.85rem;
  color: var(--cream-dim);
  margin-left: auto;
}

/* Expandable Member Cards */
.member-card.expandable {
  cursor: pointer;
  flex-direction: column;
  align-items: stretch;
}

.member-card-header {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
}

.view-details-btn {
  margin-left: auto;
  font-size: 0.72rem;
  background: rgba(207, 157, 47, 0.15);
  color: var(--gold-bright);
  padding: 4px 10px;
  border-radius: 12px;
  border: 1px solid rgba(207, 157, 47, 0.4);
  white-space: nowrap;
  transition: all 0.2s ease;
}

.member-card.expandable:hover .view-details-btn {
  background: var(--gold-main);
  color: var(--ink-dark);
}

.member-duties-drawer {
  display: none;
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px dashed rgba(207, 157, 47, 0.3);
  font-size: 0.85rem;
  color: var(--cream-text);
  animation: fadeIn 0.3s ease;
}

.member-card.active .member-duties-drawer {
  display: block;
}

.member-duties-drawer h5 {
  color: var(--gold-bright);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 6px;
}

.member-duties-drawer ul {
  padding-left: 18px;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.member-duties-drawer li {
  color: var(--cream-dim);
}

/* -------------------------------------------------------------
   DEPARTMENT UNIQUE COLOR THEMES
   ------------------------------------------------------------- */

/* Department 1: 🏛️ Executive Committee - Regal Maroon & Gold */
.dept-block[data-dept="executive"] .dept-header { border-bottom-color: var(--gold-main); }
.dept-block[data-dept="executive"] .dept-header h3 { color: var(--gold-bright); }
.member-card[data-category="executive"] {
  background: linear-gradient(150deg, #3a0604, #1c0201);
  border-color: var(--maroon-border);
}
.member-card[data-category="executive"]:hover {
  border-color: var(--gold-bright);
  box-shadow: 0 8px 24px rgba(207, 157, 47, 0.35);
}

/* Department 2: 💰 Finance & Administration - Sapphire Blue & Gold */
.dept-block[data-dept="finance"] .dept-header { border-bottom-color: #2b75c7; }
.dept-block[data-dept="finance"] .dept-header h3 { color: #88c0f7; }
.member-card[data-category="finance"] {
  background: linear-gradient(150deg, #092244, #030e1f);
  border-color: #1b5299;
}
.member-card[data-category="finance"]:hover {
  border-color: #5ea4f5;
  box-shadow: 0 8px 24px rgba(43, 117, 199, 0.4);
}
.member-card[data-category="finance"] .member-avatar {
  background: radial-gradient(circle, #1b5299, #05162e);
  border-color: #5ea4f5;
  color: #88c0f7;
}
.member-card[data-category="finance"] .role-tag {
  background: rgba(43, 117, 199, 0.25);
  color: #a0d0ff;
  border: 1px solid rgba(43, 117, 199, 0.5);
}

/* Department 3: 🎪 Puja Operations - Emerald Green & Gold */
.dept-block[data-dept="operations"] .dept-header { border-bottom-color: #278e52; }
.dept-block[data-dept="operations"] .dept-header h3 { color: #6ee7a4; }
.member-card[data-category="operations"] {
  background: linear-gradient(150deg, #062b18, #02140a);
  border-color: #1e7040;
}
.member-card[data-category="operations"]:hover {
  border-color: #38d682;
  box-shadow: 0 8px 24px rgba(39, 142, 82, 0.4);
}
.member-card[data-category="operations"] .member-avatar {
  background: radial-gradient(circle, #1e7040, #031c0e);
  border-color: #38d682;
  color: #6ee7a4;
}
.member-card[data-category="operations"] .role-tag {
  background: rgba(39, 142, 82, 0.25);
  color: #86f0b7;
  border: 1px solid rgba(39, 142, 82, 0.5);
}

/* Department 4: ⚕️ Medical Department - Rose Crimson & Gold */
.dept-block[data-dept="medical"] .dept-header { border-bottom-color: #b81c4e; }
.dept-block[data-dept="medical"] .dept-header h3 { color: #f48fb1; }
.member-card[data-category="medical"] {
  background: linear-gradient(150deg, #420718, #1f020a);
  border-color: #8f173d;
}
.member-card[data-category="medical"]:hover {
  border-color: #f45185;
  box-shadow: 0 8px 24px rgba(184, 28, 78, 0.4);
}
.member-card[data-category="medical"] .member-avatar {
  background: radial-gradient(circle, #8f173d, #2b030f);
  border-color: #f45185;
  color: #f48fb1;
}
.member-card[data-category="medical"] .role-tag {
  background: rgba(184, 28, 78, 0.25);
  color: #ffb2cc;
  border: 1px solid rgba(184, 28, 78, 0.5);
}

/* Department 5: 👥 Members Directory & Advisory - Amethyst Purple & Gold */
.dept-block[data-dept="members"] .dept-header { border-bottom-color: #7e22ce; }
.dept-block[data-dept="members"] .dept-header h3 { color: #d8b4fe; }
.member-card[data-category="general"],
.member-card[data-category="women"],
.member-card[data-category="advisory"] {
  background: linear-gradient(150deg, #2b083b, #12031c);
  border-color: #6b219e;
}
.member-card[data-category="general"]:hover,
.member-card[data-category="women"]:hover,
.member-card[data-category="advisory"]:hover {
  border-color: #a855f7;
  box-shadow: 0 8px 24px rgba(126, 34, 206, 0.4);
}
.member-card[data-category="general"] .member-avatar,
.member-card[data-category="women"] .member-avatar,
.member-card[data-category="advisory"] .member-avatar {
  background: radial-gradient(circle, #6b219e, #1a0329);
  border-color: #c084fc;
  color: #e9d5ff;
}
.member-card[data-category="general"] .role-tag,
.member-card[data-category="women"] .role-tag,
.member-card[data-category="advisory"] .role-tag {
  background: rgba(126, 34, 206, 0.25);
  color: #e9d5ff;
  border: 1px solid rgba(126, 34, 206, 0.5);
}


/* -------------------------------------------------------------
   OUR ESTEEMED SPONSORS & KALYANI AUTOMATION ANIMATED LOGO
   ------------------------------------------------------------- */

.sponsors-section {
  background: linear-gradient(180deg, #180202 0%, #2b0404 50%, #150101 100%);
  border-top: 1px solid var(--gold-dark);
  border-bottom: 1px solid var(--gold-dark);
  padding: clamp(40px, 6vw, 70px) 0;
  position: relative;
  overflow: hidden;
}

.sponsor-card-hero {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.97), rgba(245, 247, 250, 0.99));
  border: 3px solid var(--gold-main);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 5vw, 40px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.6), 0 0 25px rgba(207, 157, 47, 0.3);
  max-width: 960px;
  margin: 0 auto;
  color: #0b1a30;
  display: grid;
  grid-template-columns: 300px 1fr;
  align-items: center;
  gap: 36px;
  position: relative;
}

@media (max-width: 820px) {
  .sponsor-card-hero {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

/* Animated Logo Stage Container */
.kalyani-logo-stage {
  position: relative;
  width: 270px;
  height: 270px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.kalyani-base-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 6px 15px rgba(0,0,0,0.15));
}

/* 1. Antenna Flicker / Twinkle */
.kalyani-antenna-twinkle {
  position: absolute;
  top: 25.2%;
  left: 30.6%;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #ffea00;
  z-index: 10;
  pointer-events: none;
  animation: antennaTwinkle 2.5s infinite ease-in-out;
}

@keyframes antennaTwinkle {
  0%, 100% {
    opacity: 0.2;
    transform: scale(0.7);
    box-shadow: 0 0 4px #ffea00;
  }
  20%, 40% {
    opacity: 1;
    transform: scale(1.4);
    box-shadow: 0 0 14px #ffea00, 0 0 22px #ff9800;
  }
  50% {
    opacity: 0.3;
    transform: scale(0.9);
  }
  75% {
    opacity: 1;
    transform: scale(1.3);
    box-shadow: 0 0 16px #ffea00, 0 0 25px #ff5722;
  }
}

/* 2. Orbiting Gears (Orange & Sky Blue) around outer circle */
.orbit-ring-svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 4;
  pointer-events: none;
}

.orbit-gear-orange {
  transform-origin: 135px 135px;
  animation: orbitClockwiseRest 7.5s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

.orbit-gear-blue {
  transform-origin: 135px 135px;
  animation: orbitCounterClockwiseRest 7.5s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

/* Both complete 360° loop in 4.5 seconds, then stay/rest at origin for 3 seconds */
@keyframes orbitClockwiseRest {
  0% { transform: rotate(0deg); }
  60% { transform: rotate(360deg); }
  100% { transform: rotate(360deg); }
}

@keyframes orbitCounterClockwiseRest {
  0% { transform: rotate(0deg); }
  60% { transform: rotate(-360deg); }
  100% { transform: rotate(-360deg); }
}

/* 3. Robot Turn Left & Right with rest pause */
.kalyani-robot-layer {
  position: absolute;
  top: 23%;
  left: 25.5%;
  width: 17%;
  height: 18%;
  z-index: 5;
  pointer-events: none;
  animation: robotTurnSequence 6s ease-in-out infinite;
}

@keyframes robotTurnSequence {
  0%, 20% { transform: rotate(0deg); }
  35% { transform: rotate(-14deg); }
  35%, 55% { transform: rotate(-14deg); } /* Hold left */
  70% { transform: rotate(14deg); }
  70%, 90% { transform: rotate(14deg); } /* Hold right */
  100% { transform: rotate(0deg); }
}

/* 4. Gear near Robot continuous spinning */
.kalyani-robot-gear {
  position: absolute;
  top: 13%;
  left: 16.5%;
  width: 35%;
  height: 35%;
  z-index: 3;
  pointer-events: none;
  transform-origin: center center;
  animation: continuousGearSpin 10s linear infinite;
}

@keyframes continuousGearSpin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* 5. Every Orange color shine & continuous move */
.kalyani-orange-shimmer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  z-index: 6;
  pointer-events: none;
  background: linear-gradient(
    115deg, 
    transparent 35%, 
    rgba(255, 140, 0, 0.45) 48%, 
    rgba(255, 215, 0, 0.7) 50%, 
    rgba(255, 140, 0, 0.45) 52%, 
    transparent 65%
  );
  background-size: 250% 250%;
  animation: orangeShineSweep 3.5s linear infinite;
  mix-blend-mode: color-dodge;
}

@keyframes orangeShineSweep {
  0% { background-position: -150% -150%; }
  100% { background-position: 150% 150%; }
}

.sponsor-details-text h3 {
  font-size: clamp(1.4rem, 4vw, 2rem);
  color: #0d284c;
  margin-bottom: 4px;
  font-family: 'Jost', sans-serif;
  font-weight: 700;
}

.sponsor-tag-badge {
  display: inline-block;
  background: linear-gradient(90deg, #ff7b00, #e65100);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 12px;
}

.sponsor-details-text p {
  font-size: 0.95rem;
  color: #334155;
  line-height: 1.65;
  margin-bottom: 16px;
}

.sponsor-highlights {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.sponsor-chip {
  background: rgba(13, 40, 76, 0.08);
  border: 1px solid rgba(13, 40, 76, 0.2);
  color: #0d284c;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
}

/* Header Social Media Icons (Authentic Brand Colors) */
.header-social-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.header-social-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #ffffff;
  transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.35);
}

.header-social-icon:hover {
  transform: translateY(-3px) scale(1.08);
  filter: brightness(1.15);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.5);
  color: #ffffff;
}

.header-social-icon.whatsapp { background: #25D366; }
.header-social-icon.linkedin { background: #0A66C2; }
.header-social-icon.youtube { background: #FF0000; }
.header-social-icon.instagram { background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%,#d6249f 60%,#285AEB 90%); }
.header-social-icon.facebook { background: #1877F2; }
.header-social-icon.twitter { background: #000000; border: 1px solid rgba(255,255,255,0.25); }

.header-social-icon svg {
  width: 17px;
  height: 17px;
  fill: #ffffff;
}

/* Contact Section Social Buttons (Authentic Brand Colors) */
.social-buttons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 12px;
  margin-top: 14px;
}

.social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 24px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #ffffff !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  transition: all 0.25s ease;
}

.social-btn:hover {
  transform: translateY(-2px) scale(1.03);
  filter: brightness(1.12);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.45);
  color: #ffffff !important;
}

.social-btn.whatsapp { background: #25D366; }
.social-btn.linkedin { background: #0A66C2; }
.social-btn.youtube { background: #FF0000; }
.social-btn.instagram { background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%,#d6249f 60%,#285AEB 90%); }
.social-btn.facebook { background: #1877F2; }
.social-btn.twitter { background: #000000; border: 1px solid rgba(255,255,255,0.25); }

@media (max-width: 900px) {
  .header-social-links {
    display: none; /* Hidden on small screens to fit mobile menu */
  }
}

/* 6-Column Grid for Management Branches in Hierarchy */
.org-horizontal-row.grid-6 {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
  width: 100%;
  margin-top: 10px;
}

.org-horizontal-row.grid-6 .org-node {
  min-width: 0;
  max-width: 100%;
  padding: 10px 8px;
}

.org-horizontal-row.grid-6 .org-node-title {
  font-size: 0.68rem;
}

.org-horizontal-row.grid-6 .org-node-name {
  font-size: 0.88rem;
}

@media (max-width: 1100px) {
  .org-horizontal-row.grid-6 {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 650px) {
  .org-horizontal-row.grid-6 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 440px) {
  .org-horizontal-row.grid-6 {
    grid-template-columns: 1fr;
  }
}

/* Donor Recognition Notice Box */
.donor-notice-box {
  background: linear-gradient(145deg, rgba(84, 9, 10, 0.95), rgba(40, 4, 2, 0.98));
  border: 2px solid var(--gold-main);
  border-radius: var(--radius-md);
  padding: clamp(20px, 4vw, 32px);
  margin-top: 36px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  color: var(--cream-text);
}

.donor-notice-box h3 {
  color: var(--gold-bright);
  font-size: clamp(1.15rem, 3.5vw, 1.45rem);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.donor-notice-box p {
  font-size: 0.93rem;
  line-height: 1.65;
  color: var(--cream-dim);
  margin-bottom: 10px;
}

.donor-notice-box p strong {
  color: var(--gold-light);
}

.donor-notice-box p em {
  font-size: 0.86rem;
  color: #f7a092;
  display: block;
  margin-top: 6px;
}

/* Donors List Table & Cards */
.donors-table-card {
  background: var(--cream-card);
  border: 2px solid var(--gold-main);
  border-radius: var(--radius-md);
  padding: 24px;
  color: var(--ink-dark);
  box-shadow: var(--shadow-card);
  margin-top: 30px;
}

.donors-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 14px;
}

.donors-table th, .donors-table td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid #e2d1ae;
  font-size: 0.92rem;
}

.donors-table th {
  background: var(--maroon-main);
  color: var(--gold-bright);
  font-family: 'Cinzel', serif;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
}

.donors-table tr:hover td {
  background: rgba(207, 157, 47, 0.12);
}

.donor-badge-honor {
  display: inline-block;
  background: linear-gradient(90deg, #d97706, #b45309);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 12px;
}

/* Consent Modal Buttons */
.consent-options {
  display: flex;
  gap: 14px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.btn-yes-display {
  background: linear-gradient(135deg, #15803d, #166534);
  color: #fff;
  border: 1px solid #4ade80;
  flex: 1;
}

.btn-no-anonymous {
  background: linear-gradient(135deg, #475569, #334155);
  color: #fff;
  border: 1px solid #94a3b8;
  flex: 1;
}

.member-avatar {
  width: 38px;
  height: 38px;
  font-size: 0.9rem;
}

/* ==================== LOGO-INSPIRED MOBILE APP SYSTEM ==================== */
@media (max-width: 768px) {
  /* Mobile Header Styling based on Metallic Logo Seal */
  .header-top {
    height: 70px;
    background: linear-gradient(180deg, #1c0201 0%, #280402 100%);
    border-bottom: 2px solid var(--gold-main);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.85);
  }

  .brand-logo .emblem-base-img {
    width: 44px;
    height: 44px;
    filter: drop-shadow(0 0 8px rgba(207, 157, 47, 0.6));
  }

  /* Logo-Inspired Mobile Nav Drawer */
  .mobile-nav {
    top: 70px;
    background: radial-gradient(circle at top center, #3a0604 0%, #160202 100%);
    border-bottom: 2px solid var(--gold-bright);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.95);
  }

  .mobile-nav a {
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(207, 157, 47, 0.15);
    margin-bottom: 8px;
    font-size: 0.95rem;
    font-weight: 600;
  }

  /* Mobile Grid Responsiveness */
  .org-horizontal-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .org-node {
    padding: 12px 8px;
    background: linear-gradient(160deg, #2b0403, #150101);
    border: 1px solid rgba(207, 157, 47, 0.4);
    border-radius: 12px;
  }

  .org-photo-badge {
    width: 44px;
    height: 44px;
    font-size: 0.85rem;
  }

  .org-node-title {
    font-size: 0.72rem;
  }

  .org-node-name {
    font-size: 0.85rem;
  }

  .org-node-sub {
    font-size: 0.68rem;
  }
}

/* Floating Logo-Inspired Mobile Bottom Action App Dock */
.mobile-bottom-app-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 64px;
  background: linear-gradient(180deg, rgba(30, 3, 3, 0.98), rgba(12, 1, 1, 0.99));
  border-top: 2px solid var(--gold-bright);
  backdrop-filter: blur(16px);
  z-index: 9999;
  justify-content: space-around;
  align-items: center;
  box-shadow: 0 -6px 25px rgba(0, 0, 0, 0.9);
}

@media (max-width: 768px) {
  .mobile-bottom-app-bar {
    display: flex;
  }
  body {
    padding-bottom: 64px;
  }
}

.mobile-app-tab {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #d1d5db;
  font-size: 0.66rem;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.25 ease;
  flex: 1;
}

.mobile-app-tab svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
  margin-bottom: 2px;
  transition: transform 0.2s ease;
}

.mobile-app-tab.active,
.mobile-app-tab:hover {
  color: var(--gold-bright);
}

.mobile-app-tab.active svg {
  transform: translateY(-2px);
  filter: drop-shadow(0 0 6px rgba(255, 215, 0, 0.8));
}

/* Central Glowing Trishul / Donate Button in Mobile App Dock */
.mobile-app-tab.tab-trishul-donate {
  position: relative;
  top: -12px;
  background: linear-gradient(135deg, #b91c1c, #7f1d1d);
  border: 2px solid var(--gold-bright);
  border-radius: 50%;
  width: 52px;
  height: 52px;
  flex: none;
  box-shadow: 0 4px 18px rgba(185, 28, 28, 0.8), 0 0 12px rgba(255, 215, 0, 0.5);
  color: #fff !important;
}

.mobile-app-tab.tab-trishul-donate svg {
  width: 24px;
  height: 24px;
  fill: var(--gold-bright);
  margin-bottom: 0;
}

.btn-app-download {
  background: linear-gradient(135deg, #1e3a8a, #1d4ed8);
  color: #fff !important;
  border: 1px solid #60a5fa;
  font-weight: 700;
  border-radius: 20px;
  padding: 6px 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(29, 78, 216, 0.4);
  transition: all 0.3s ease;
}

.btn-app-download:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(29, 78, 216, 0.6);
}

/* Mobile App Banner Card */
.mobile-app-install-banner {
  background: radial-gradient(circle at center, #3b0604 0%, #170202 100%);
  border: 2px solid var(--gold-main);
  border-radius: var(--radius-lg);
  padding: 20px;
  margin: 20px 0;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.6);
}

.mobile-app-install-banner img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 2px solid var(--gold-bright);
  box-shadow: 0 0 12px rgba(207, 157, 47, 0.6);
}

.mobile-app-install-info h4 {
  font-size: 1.1rem;
  color: var(--gold-bright);
  margin-bottom: 4px;
}

.mobile-app-install-info p {
  font-size: 0.82rem;
  color: var(--cream-dim);
  line-height: 1.4;
}




