/* ==========================================================================
   BHAGWAN MAHAVEER PUBLIC SCHOOL BALOTRA - PREMIUM STYLESHEET
   Colors: Royal Imperial Navy (#061530) & Luxurious Champagne Gold (#D4AF37)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@500;600;700;800;900&family=Great+Vibes&family=Noto+Serif+Devanagari:wght@400;600;700;800&family=Outfit:wght@300;400;500;600;700;800;900&family=Playfair+Display:ital,wght@0,500;0,600;0,700;0,800;1,400;1,600&family=Plus+Jakarta+Sans:wght@400;500;600;700&display=swap');

:root {
  --navy-darkest: #030a17;
  --navy-deep: #061530;
  --navy-primary: #0a214d;
  --navy-sapphire: #103273;
  --navy-light: #1b4b9b;

  --gold-dark: #966f1e;
  --gold-primary: #c59b27;
  --gold-bright: #d4af37;
  --gold-light: #f3d87a;
  --gold-champagne: #faecd0;

  --gold-gradient: linear-gradient(135deg, #bf953f 0%, #fcf6ba 25%, #b38728 50%, #fbf5b7 75%, #aa771c 100%);
  --gold-gradient-shine: linear-gradient(90deg, #b38728 0%, #fdf5c9 30%, #e5c07b 50%, #fdf5c9 70%, #9e7a2b 100%);
  --navy-gradient: linear-gradient(145deg, #051329 0%, #0a214d 60%, #123470 100%);
  --navy-radial: radial-gradient(circle at center, #0e295d 0%, #061530 65%, #030a17 100%);

  --bg-ivory: #fcfbfa;
  --bg-cream: #f7f4ed;
  --bg-card: rgba(255, 255, 255, 0.94);
  --text-dark: #0f172a;
  --text-muted: #475569;
  --text-light: #94a3b8;

  --shadow-gold: 0 10px 30px -5px rgba(197, 155, 39, 0.28);
  --shadow-navy: 0 20px 40px -10px rgba(6, 21, 48, 0.15);
  --shadow-card: 0 12px 32px rgba(10, 33, 77, 0.08);

  --font-serif: 'Playfair Display', serif;
  --font-display: 'Cinzel', serif;
  --font-body: 'Outfit', 'Plus Jakarta Sans', sans-serif;
  --font-script: 'Great Vibes', cursive;
  --font-hindi: 'Noto Serif Devanagari', serif;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-full: 9999px;

  --transition-smooth: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

/* RESET & BASE */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-ivory);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
  background-image:
    radial-gradient(circle at 10% 20%, rgba(212, 175, 55, 0.03) 0%, transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(10, 33, 77, 0.03) 0%, transparent 40%);
}

/* TYPOGRAPHY HELPERS */
.font-display { font-family: var(--font-display); }
.font-serif { font-family: var(--font-serif); }
.font-script { font-family: var(--font-script); }
.font-hindi { font-family: var(--font-hindi); }

.gold-gradient-text {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  font-weight: 800;
}

.gold-gradient-shine-text {
  background: var(--gold-gradient-shine);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shineText 4s linear infinite;
  display: inline-block;
}

@keyframes shineText {
  0% { background-position: 0% center; }
  100% { background-position: 200% center; }
}

/* CONTAINER */
.container {
  width: 100%;
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

/* TOP ANNOUNCEMENT TICKER */
.top-ticker {
  background: var(--navy-darkest);
  color: var(--gold-champagne);
  padding: 8px 0;
  font-size: 0.85rem;
  border-bottom: 1px solid rgba(212, 175, 55, 0.25);
  position: relative;
  z-index: 50;
}

.top-ticker-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
}

.ticker-marquee {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.ticker-badge {
  background: var(--gold-primary);
  color: var(--navy-darkest);
  padding: 2px 10px;
  border-radius: var(--radius-full);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.top-contact-links {
  display: flex;
  align-items: center;
  gap: 18px;
}

.top-contact-link {
  color: var(--gold-champagne);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition-smooth);
}

.top-contact-link:hover {
  color: var(--gold-bright);
}

/* NAVBAR */
.navbar {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow-card);
  transition: var(--transition-smooth);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.nav-logo-img {
  width: 58px;
  height: 58px;
  object-fit: contain;
  filter: drop-shadow(0 4px 8px rgba(6, 21, 48, 0.15));
  transition: transform 0.4s ease;
}

.nav-brand:hover .nav-logo-img {
  transform: rotate(5deg) scale(1.05);
}

.nav-title-box {
  display: flex;
  flex-direction: column;
}

.nav-title-main {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--navy-primary);
  letter-spacing: 0.8px;
  line-height: 1.15;
}

.nav-title-sub {
  font-family: var(--font-hindi);
  font-size: 0.82rem;
  color: var(--gold-dark);
  font-weight: 700;
  letter-spacing: 0.5px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 24px;
  list-style: none;
}

.nav-link {
  text-decoration: none;
  color: var(--navy-primary);
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition-smooth);
  position: relative;
  padding: 6px 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold-gradient);
  transition: width 0.3s ease;
}

.nav-link:hover {
  color: var(--gold-primary);
}

.nav-link:hover::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 700;
  padding: 12px 26px;
  border-radius: var(--radius-full);
  text-decoration: none;
  cursor: pointer;
  border: none;
  outline: none;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.btn-gold {
  background: var(--gold-gradient);
  color: var(--navy-darkest);
  box-shadow: var(--shadow-gold);
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.btn-gold::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(60deg, transparent, rgba(255, 255, 255, 0.5), transparent);
  transform: rotate(25deg) translateY(-100%);
  transition: transform 0.7s ease;
}

.btn-gold:hover::before {
  transform: rotate(25deg) translateY(100%);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 25px rgba(197, 155, 39, 0.45);
}

.btn-navy {
  background: var(--navy-primary);
  color: #ffffff;
  border: 1px solid rgba(212, 175, 55, 0.4);
}

.btn-navy:hover {
  background: var(--navy-sapphire);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(10, 33, 77, 0.3);
}

.btn-whatsapp {
  background: #25d366;
  color: #ffffff;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
  background: #20ba59;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.45);
}

.btn-outline-gold {
  background: transparent;
  color: var(--navy-primary);
  border: 2px solid var(--gold-primary);
}

.btn-outline-gold:hover {
  background: var(--gold-primary);
  color: var(--navy-darkest);
  transform: translateY(-2px);
}

/* HERO SECTION */
.hero-section {
  position: relative;
  background: var(--bg-ivory);
  padding: 50px 0 90px 0;
  overflow: hidden;
}

/* Background Canvas & Decorative Elements */
#particle-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.hero-bg-accent {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: radial-gradient(circle at 75% 30%, rgba(212, 175, 55, 0.12) 0%, rgba(255, 255, 255, 0) 70%);
  pointer-events: none;
  z-index: 1;
}

.hero-curve-shape {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle at bottom right, rgba(10, 33, 77, 0.06), transparent 70%);
  border-radius: 50% 0 0 0;
  pointer-events: none;
  z-index: 1;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 40px;
  position: relative;
  z-index: 10;
}

/* HERO LEFT CONTENT */
.hero-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.9);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(212, 175, 55, 0.4);
  box-shadow: 0 4px 14px rgba(10, 33, 77, 0.05);
  width: fit-content;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--navy-primary);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.badge-pulse-dot {
  width: 9px;
  height: 9px;
  background: var(--gold-primary);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.7);
  animation: pulseGoldDot 2s infinite;
}

@keyframes pulseGoldDot {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(212, 175, 55, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(212, 175, 55, 0); }
}

.hero-script-tag {
  font-family: var(--font-script);
  font-size: 3.2rem;
  color: var(--gold-primary);
  line-height: 1;
  text-shadow: 0 2px 8px rgba(197, 155, 39, 0.2);
  margin-bottom: -10px;
}

.hero-main-title {
  font-family: var(--font-display);
  font-size: 3.2rem;
  font-weight: 900;
  color: var(--navy-deep);
  line-height: 1.1;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.hero-main-title span {
  display: block;
  font-size: 2.3rem;
  color: var(--gold-dark);
  letter-spacing: 2px;
  margin-top: 6px;
}

.hero-hindi-motto {
  font-family: var(--font-hindi);
  font-size: 1.35rem;
  color: var(--navy-primary);
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 14px;
  letter-spacing: 1px;
}

.hero-hindi-motto::before,
.hero-hindi-motto::after {
  content: '';
  flex: 1;
  max-width: 60px;
  height: 2px;
  background: var(--gold-gradient);
}

/* BIG COMING SOON BANNER CARD */
.coming-soon-banner {
  background: var(--navy-gradient);
  border-radius: var(--radius-lg);
  padding: 30px 35px;
  color: #ffffff;
  position: relative;
  overflow: hidden;
  border: 2px solid rgba(212, 175, 55, 0.4);
  box-shadow: var(--shadow-navy), 0 0 35px rgba(212, 175, 55, 0.2);
}

.coming-soon-banner::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.25) 0%, transparent 70%);
  pointer-events: none;
}

.coming-soon-heading {
  font-family: var(--font-display);
  font-size: 2.7rem;
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: 2px;
  text-align: center;
  margin-bottom: 8px;
}

.coming-soon-subheading {
  text-align: center;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--gold-light);
  text-transform: uppercase;
  margin-bottom: 24px;
}

/* HERO SCHOOL HIGHLIGHTS & WINGS TILES */
.hero-highlights-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.highlight-tile {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(212, 175, 55, 0.35);
  border-radius: var(--radius-md);
  padding: 14px 10px;
  text-align: center;
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.highlight-tile::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2.5px;
  background: var(--gold-gradient);
  opacity: 0.7;
}

.highlight-tile:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.14);
  border-color: var(--gold-bright);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35), 0 0 15px rgba(212, 175, 55, 0.25);
}

.highlight-tile-icon {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-full);
  background: rgba(212, 175, 55, 0.18);
  border: 1px solid rgba(212, 175, 55, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  color: var(--gold-bright);
  margin-bottom: 8px;
  transition: var(--transition-smooth);
}

.highlight-tile:hover .highlight-tile-icon {
  background: var(--gold-gradient);
  color: var(--navy-darkest);
  transform: scale(1.12) rotate(6deg);
}

.highlight-tile-title {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: 0.4px;
  line-height: 1.2;
}

.highlight-tile-sub {
  font-size: 0.74rem;
  font-weight: 500;
  color: var(--gold-champagne);
  margin-top: 4px;
  line-height: 1.3;
}

/* HERO CTAs */
.hero-cta-group {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 10px;
}

/* HERO RIGHT - VISUAL & STATUE AURA */
.hero-visual-card {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.statue-aura-wrapper {
  position: relative;
  width: 100%;
  max-width: 460px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.statue-img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 15px 35px rgba(10, 33, 77, 0.18));
  animation: gentleFloat 6s ease-in-out infinite;
}

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

/* FLOATING VALUE CHIPS */
.floating-pill {
  position: absolute;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(212, 175, 55, 0.4);
  border-radius: var(--radius-full);
  padding: 8px 18px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--navy-deep);
  box-shadow: 0 8px 24px rgba(6, 21, 48, 0.12);
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 15;
  animation: floatChip 5s ease-in-out infinite alternate;
}

.floating-pill-1 {
  top: 8%;
  left: -8%;
  animation-delay: 0s;
}

.floating-pill-2 {
  bottom: 12%;
  right: -5%;
  animation-delay: 1.5s;
}

.floating-pill-3 {
  top: 45%;
  right: -10%;
  animation-delay: 3s;
}

@keyframes floatChip {
  0% { transform: translateY(0) rotate(0deg); }
  100% { transform: translateY(-12px) rotate(2deg); }
}

/* BOOKS & PEN STACK ILLUSTRATION BOX */
.books-showcase-box {
  position: absolute;
  bottom: -30px;
  left: -20px;
  width: 180px;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.15));
  z-index: 20;
}

/* VALUES MARQUEE RIBBON */
.values-ribbon-section {
  background: var(--navy-primary);
  padding: 16px 0;
  border-top: 2px solid var(--gold-bright);
  border-bottom: 2px solid var(--gold-bright);
  overflow: hidden;
  position: relative;
  z-index: 20;
}

.marquee-track {
  display: flex;
  gap: 30px;
  width: max-content;
  animation: scrollMarquee 30s linear infinite;
}

.marquee-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--gold-champagne);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.marquee-star {
  color: var(--gold-bright);
  font-size: 0.8rem;
}

@keyframes scrollMarquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* 4 CORE PILLARS SECTION */
.pillars-section {
  padding: 90px 0 80px 0;
  background: var(--bg-cream);
  position: relative;
}

.section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 55px auto;
}

.section-tag {
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 2.5px;
  color: var(--gold-dark);
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 8px;
}

.section-title {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--navy-deep);
  line-height: 1.2;
  margin-bottom: 14px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.6;
}

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

.pillar-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 35px 25px;
  text-align: center;
  border: 1px solid rgba(212, 175, 55, 0.3);
  box-shadow: var(--shadow-card);
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.pillar-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gold-gradient);
  transition: height 0.3s ease;
}

.pillar-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(10, 33, 77, 0.12), var(--shadow-gold);
  border-color: var(--gold-bright);
}

.pillar-card:hover::before {
  height: 6px;
}

.pillar-icon-box {
  width: 72px;
  height: 72px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, rgba(255, 255, 255, 0) 70%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  border: 1px solid rgba(212, 175, 55, 0.3);
}

.pillar-icon-img {
  width: 44px;
  height: 44px;
}

.pillar-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy-deep);
  margin-bottom: 8px;
  letter-spacing: 0.5px;
}

.pillar-hindi-tag {
  font-family: var(--font-hindi);
  font-size: 0.88rem;
  color: var(--gold-dark);
  font-weight: 700;
  margin-bottom: 12px;
}

.pillar-desc {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* ABOUT & PHILOSOPHY SECTION */
.about-section {
  padding: 90px 0;
  background: var(--bg-ivory);
  position: relative;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.about-poster-card {
  position: relative;
  background: var(--navy-gradient);
  border-radius: var(--radius-lg);
  padding: 30px;
  border: 2px solid var(--gold-bright);
  box-shadow: var(--shadow-navy);
  text-align: center;
  color: #ffffff;
}

.poster-preview-box {
  background: #ffffff;
  border-radius: var(--radius-md);
  padding: 20px;
  color: var(--navy-deep);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  margin-bottom: 20px;
}

.poster-logo-large {
  width: 110px;
  height: 110px;
  margin: 0 auto 15px auto;
  display: block;
}

.poster-school-name {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--navy-deep);
  line-height: 1.2;
}

.poster-badge {
  display: inline-block;
  background: var(--gold-gradient);
  color: var(--navy-darkest);
  padding: 4px 16px;
  border-radius: var(--radius-full);
  font-weight: 800;
  font-size: 0.85rem;
  margin-top: 10px;
}

.about-text-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about-quote-box {
  background: rgba(212, 175, 55, 0.08);
  border-left: 4px solid var(--gold-primary);
  padding: 20px 24px;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  font-style: italic;
  color: var(--navy-deep);
  font-size: 1.05rem;
  line-height: 1.6;
}

.about-features-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  list-style: none;
  margin-top: 10px;
}

.about-feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--navy-deep);
}

.feature-check-icon {
  width: 22px;
  height: 22px;
  background: var(--gold-primary);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  flex-shrink: 0;
}

/* CAMPUS FACILITIES & FEATURES */
.facilities-section {
  padding: 90px 0;
  background: var(--bg-cream);
}

.facilities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.facility-card {
  background: #ffffff;
  border-radius: var(--radius-md);
  padding: 30px 25px;
  border: 1px solid rgba(212, 175, 55, 0.25);
  box-shadow: var(--shadow-card);
  transition: var(--transition-smooth);
}

.facility-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 35px rgba(10, 33, 77, 0.1);
  border-color: var(--gold-primary);
}

.facility-icon-circle {
  width: 56px;
  height: 56px;
  background: var(--navy-primary);
  color: var(--gold-bright);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 18px;
  box-shadow: 0 6px 15px rgba(10, 33, 77, 0.2);
}

.facility-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy-deep);
  margin-bottom: 10px;
}

.facility-desc {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* ACADEMIC WINGS / GRADES */
.grades-section {
  padding: 90px 0;
  background: var(--navy-darkest);
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.grades-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 30% 50%, rgba(16, 50, 115, 0.5) 0%, transparent 60%);
  pointer-events: none;
}

.grades-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
  z-index: 10;
}

.grade-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: var(--radius-lg);
  padding: 30px 22px;
  text-align: center;
  transition: var(--transition-smooth);
}

.grade-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--gold-bright);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4), var(--shadow-gold);
}

.grade-icon {
  font-size: 2.2rem;
  margin-bottom: 15px;
}

.grade-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gold-light);
  margin-bottom: 8px;
}

.grade-classes {
  font-size: 0.85rem;
  font-weight: 700;
  color: #ffffff;
  background: rgba(212, 175, 55, 0.2);
  padding: 4px 12px;
  border-radius: var(--radius-full);
  display: inline-block;
  margin-bottom: 14px;
}

.grade-desc {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.5;
}

/* ADMISSION INQUIRY & FORM SECTION */
.inquiry-section {
  padding: 95px 0;
  background: var(--bg-ivory);
  position: relative;
}

.inquiry-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 50px;
  align-items: center;
}

.inquiry-info-box {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.contact-card-mini {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #ffffff;
  padding: 16px 20px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(212, 175, 55, 0.25);
  box-shadow: var(--shadow-card);
  text-decoration: none;
  color: var(--text-dark);
  transition: var(--transition-smooth);
}

.contact-card-mini:hover {
  transform: translateX(6px);
  border-color: var(--gold-primary);
}

.contact-icon-wrapper {
  width: 46px;
  height: 46px;
  background: var(--navy-primary);
  color: var(--gold-bright);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

/* FORM WRAPPER */
.inquiry-form-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 40px;
  border: 2px solid rgba(212, 175, 55, 0.35);
  box-shadow: 0 20px 45px rgba(10, 33, 77, 0.1);
  position: relative;
}

.form-title {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--navy-deep);
  margin-bottom: 6px;
}

.form-subtitle {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 25px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-label {
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--navy-deep);
}

.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid #cbd5e1;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: var(--transition-smooth);
  background: #f8fafc;
}

.form-control:focus {
  outline: none;
  border-color: var(--gold-primary);
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(197, 155, 39, 0.18);
}

.form-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 20px;
}

/* SUCCESS ALERT MODAL */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(3, 10, 23, 0.8);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
  padding: 20px;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  max-width: 520px;
  width: 100%;
  padding: 35px;
  text-align: center;
  position: relative;
  border: 2px solid var(--gold-bright);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.35);
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.modal-overlay.active .modal-card {
  transform: scale(1);
}

.modal-close-btn {
  position: absolute;
  top: 15px;
  right: 18px;
  background: transparent;
  border: none;
  font-size: 1.5rem;
  color: var(--text-muted);
  cursor: pointer;
}

.modal-icon-badge {
  width: 70px;
  height: 70px;
  background: var(--gold-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 18px auto;
  color: var(--navy-darkest);
}

/* FAQ SECTION */
.faq-section {
  padding: 85px 0;
  background: var(--bg-cream);
}

.faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  background: #ffffff;
  border-radius: var(--radius-md);
  border: 1px solid rgba(212, 175, 55, 0.25);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  transition: var(--transition-smooth);
}

.faq-question {
  padding: 20px 24px;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy-deep);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
}

.faq-toggle-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.15);
  color: var(--gold-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-item.active .faq-toggle-icon {
  transform: rotate(45deg);
  background: var(--gold-primary);
  color: #ffffff;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 24px;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  padding-bottom: 20px;
}

/* FOOTER */
.footer {
  background: var(--navy-darkest);
  color: var(--gold-champagne);
  padding: 70px 0 30px 0;
  border-top: 3px solid var(--gold-bright);
  position: relative;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
}

.footer-brand-box {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-logo {
  width: 72px;
  height: 72px;
  object-fit: contain;
}

.footer-school-name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.2;
}

.footer-tagline {
  font-family: var(--font-hindi);
  color: var(--gold-light);
  font-weight: 700;
  font-size: 0.95rem;
}

.footer-heading {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--gold-bright);
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-link {
  color: var(--text-light);
  text-decoration: none;
  font-size: 0.92rem;
  transition: var(--transition-smooth);
}

.footer-link:hover {
  color: var(--gold-bright);
  padding-left: 5px;
}

.footer-bottom {
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
  font-size: 0.85rem;
  color: var(--text-light);
}

.footer-dev-credit {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.25);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  color: var(--gold-champagne);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.4px;
  transition: var(--transition-smooth);
}

.footer-dev-credit:hover {
  background: rgba(212, 175, 55, 0.2);
  border-color: var(--gold-bright);
  transform: translateY(-2px);
}

.footer-dev-credit strong {
  color: #ffffff;
  font-weight: 700;
  letter-spacing: 0.6px;
}

/* FLOATING MOBILE BOTTOM BAR */
.mobile-bottom-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(6, 21, 48, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid rgba(212, 175, 55, 0.35);
  padding: 8px 12px;
  z-index: 900;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
}

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

.mobile-bar-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  text-decoration: none;
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 6px 4px;
  border-radius: var(--radius-sm);
  transition: background 0.2s ease;
}

.mobile-bar-btn i {
  font-size: 1.25rem;
  color: var(--gold-bright);
}

.mobile-bar-btn.active-action {
  background: var(--gold-gradient);
  color: var(--navy-darkest);
}

.mobile-bar-btn.active-action i {
  color: var(--navy-darkest);
}

/* FLOATING WHATSAPP CHAT BUTTON (DESKTOP/MOBILE) */
.floating-whatsapp-widget {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 850;
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.whatsapp-pulse-btn {
  width: 58px;
  height: 58px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.8rem;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
  animation: pulseWhatsapp 2.5s infinite;
  transition: transform 0.3s ease;
}

.whatsapp-pulse-btn:hover {
  transform: scale(1.1);
}

.whatsapp-tooltip {
  background: #ffffff;
  color: var(--navy-deep);
  padding: 8px 14px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 700;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(37, 211, 102, 0.3);
  display: flex;
  align-items: center;
  gap: 6px;
}

@keyframes pulseWhatsapp {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
  70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* ==========================================================================
   FOUNDER'S VISION & LEADERSHIP SECTION
   ========================================================================== */
.founder-section {
  padding: 95px 0;
  background: var(--bg-ivory);
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.founder-section::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.founder-section::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(10, 33, 77, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.founder-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 50px;
  align-items: center;
  position: relative;
  z-index: 10;
}

.founder-portrait-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 18px;
  border: 2px solid rgba(212, 175, 55, 0.4);
  box-shadow: var(--shadow-navy), 0 0 40px rgba(212, 175, 55, 0.18);
  position: relative;
  transition: var(--transition-smooth);
}

.founder-portrait-card:hover {
  transform: translateY(-5px);
  border-color: var(--gold-bright);
  box-shadow: var(--shadow-navy), 0 0 50px rgba(212, 175, 55, 0.3);
}

.founder-img-wrapper {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.3);
  box-shadow: 0 10px 25px rgba(6, 21, 48, 0.12);
}

.founder-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.founder-portrait-card:hover .founder-img {
  transform: scale(1.02);
}

.founder-nameplate {
  margin-top: 16px;
  background: var(--navy-gradient);
  border: 1.5px solid var(--gold-bright);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(6, 21, 48, 0.25);
  position: relative;
  overflow: hidden;
}

.founder-nameplate::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--gold-gradient);
}

.founder-name {
  font-family: var(--font-display);
  font-size: 1.38rem;
  font-weight: 800;
  color: var(--gold-light);
  letter-spacing: 0.8px;
  line-height: 1.2;
}

.founder-designation {
  font-size: 0.9rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 4px;
}

.founder-institution {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gold-champagne);
  letter-spacing: 0.5px;
  margin-top: 2px;
}

.founder-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.founder-quote-card {
  background: #ffffff;
  border-left: 5px solid var(--gold-primary);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 24px 28px;
  box-shadow: var(--shadow-card);
  border-top: 1px solid rgba(212, 175, 55, 0.25);
  border-right: 1px solid rgba(212, 175, 55, 0.25);
  border-bottom: 1px solid rgba(212, 175, 55, 0.25);
  position: relative;
}

.quote-icon-watermark {
  position: absolute;
  top: 14px;
  right: 20px;
  font-size: 2.8rem;
  color: rgba(212, 175, 55, 0.15);
}

.founder-quote-hindi {
  font-family: var(--font-hindi);
  font-size: 1.1rem;
  line-height: 1.75;
  color: var(--navy-deep);
  font-weight: 600;
  margin-bottom: 14px;
  position: relative;
  z-index: 5;
}

.founder-quote-english {
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--text-muted);
  font-style: italic;
  position: relative;
  z-index: 5;
}

.founder-tenets-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 4px;
}

.founder-tenet-item {
  background: #ffffff;
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: var(--radius-md);
  padding: 14px 16px;
  box-shadow: 0 4px 15px rgba(6, 21, 48, 0.04);
  display: flex;
  align-items: flex-start;
  gap: 12px;
  transition: var(--transition-smooth);
}

.founder-tenet-item:hover {
  transform: translateY(-3px);
  border-color: var(--gold-primary);
  box-shadow: 0 8px 20px rgba(10, 33, 77, 0.08);
}

.tenet-icon-box {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.15);
  border: 1px solid rgba(212, 175, 55, 0.35);
  color: var(--gold-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.tenet-title {
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--navy-deep);
  line-height: 1.25;
}

.tenet-desc {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 2px;
  line-height: 1.35;
}

.founder-bottom-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 15px;
  padding: 14px 20px;
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: var(--radius-md);
  margin-top: 5px;
}

.founder-motto-text {
  font-family: var(--font-hindi);
  font-weight: 700;
  color: var(--navy-deep);
  font-size: 0.98rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.founder-motto-text i {
  color: var(--gold-primary);
}

/* ==========================================================================
   RESPONSIVE MEDIA QUERIES
   ========================================================================== */

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

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

  .hero-hindi-motto {
    justify-content: center;
  }

  .pillars-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .facilities-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .grades-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-grid,
  .founder-grid,
  .inquiry-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  body {
    padding-bottom: 60px; /* space for mobile bottom bar */
  }

  .top-ticker {
    display: none;
  }

  /* NAVBAR COMPACT */
  .navbar-inner {
    padding: 8px 0;
  }

  .nav-brand {
    gap: 8px;
  }

  .nav-logo-img {
    width: 36px;
    height: 36px;
  }

  .nav-title-main {
    font-size: 0.82rem;
    line-height: 1.1;
  }

  .nav-title-sub {
    font-size: 0.62rem;
  }

  .nav-menu {
    display: none; /* simple clean mobile header */
  }

  .nav-actions .btn {
    padding: 6px 12px;
    font-size: 0.74rem;
    border-radius: var(--radius-full);
    box-shadow: none;
  }

  .nav-actions .btn i {
    font-size: 0.75rem;
  }

  /* HERO SECTION COMPACT */
  .hero-section {
    padding: 16px 0 28px;
  }

  .hero-grid {
    gap: 20px;
  }

  .hero-content {
    gap: 10px;
    text-align: center;
    align-items: center;
  }

  .hero-badge-pill {
    padding: 4px 10px;
    font-size: 0.65rem;
    letter-spacing: 0.3px;
    max-width: 95%;
    line-height: 1.3;
  }

  .hero-script-tag {
    font-size: 1.5rem;
    margin-bottom: -6px;
  }

  .hero-main-title {
    font-size: 1.45rem;
    line-height: 1.15;
    letter-spacing: 0.5px;
  }

  .hero-main-title span {
    font-size: 1.12rem;
    letter-spacing: 1px;
    margin-top: 2px;
  }

  .hero-hindi-motto {
    font-size: 0.92rem;
    gap: 8px;
    margin: 2px 0 6px;
  }

  .hero-hindi-motto::before,
  .hero-hindi-motto::after {
    max-width: 25px;
  }

  /* COMING SOON BANNER */
  .coming-soon-banner {
    padding: 16px 12px;
    border-radius: 14px;
    width: 100%;
  }

  .coming-soon-heading {
    font-size: 1.35rem;
    letter-spacing: 1px;
    margin-bottom: 2px;
  }

  .coming-soon-subheading {
    font-size: 0.72rem;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
  }

  /* HIGHLIGHTS TILES */
  .hero-highlights-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  .highlight-tile {
    padding: 8px 6px;
    border-radius: 10px;
  }

  .highlight-tile-icon {
    width: 28px;
    height: 28px;
    font-size: 0.85rem;
    margin-bottom: 4px;
  }

  .highlight-tile-title {
    font-size: 0.76rem;
    line-height: 1.15;
  }

  .highlight-tile-sub {
    font-size: 0.62rem;
    margin-top: 2px;
  }

  /* HERO CTAs */
  .hero-cta-group {
    flex-direction: column;
    width: 100%;
    gap: 8px;
    margin-top: 6px;
  }

  .hero-cta-group .btn {
    width: 100%;
    justify-content: center;
    padding: 10px 14px;
    font-size: 0.85rem;
  }

  /* STATUE & VISUAL */
  .statue-aura-wrapper {
    max-width: 260px;
  }

  /* SECTIONS */
  .founder-section {
    padding: 45px 0;
  }

  .founder-portrait-card {
    padding: 12px;
    border-radius: 16px;
  }

  .founder-nameplate {
    padding: 12px 14px;
  }

  .founder-name {
    font-size: 1.15rem;
  }

  .founder-designation {
    font-size: 0.78rem;
    letter-spacing: 1px;
  }

  .founder-institution {
    font-size: 0.72rem;
  }

  .founder-quote-card {
    padding: 18px 14px;
    border-radius: 0 12px 12px 0;
  }

  .founder-quote-hindi {
    font-size: 0.94rem;
    line-height: 1.6;
    margin-bottom: 10px;
  }

  .founder-quote-english {
    font-size: 0.82rem;
    line-height: 1.5;
  }

  .founder-tenets-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .founder-tenet-item {
    padding: 10px 12px;
  }

  .founder-bottom-bar {
    flex-direction: column;
    text-align: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 14px;
  }

  .section-tag {
    font-size: 0.68rem;
    padding: 3px 10px;
  }

  .section-title {
    font-size: 1.45rem;
    line-height: 1.25;
  }

  .section-subtitle {
    font-size: 0.85rem;
  }

  .pillars-grid,
  .facilities-grid,
  .grades-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .pillar-card,
  .facility-card,
  .grade-card {
    padding: 18px 14px;
  }

  .about-poster-card {
    padding: 16px 12px;
  }

  .poster-logo-large {
    width: 65px;
    height: 65px;
  }

  .poster-school-name {
    font-size: 1.05rem;
  }

  .form-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .inquiry-form-card {
    padding: 20px 14px;
    border-radius: 14px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

  .mobile-bottom-bar {
    display: block;
  }

  /* Hide floating whatsapp button on mobile since we have dedicated bottom bar */
  .floating-whatsapp-widget {
    display: none !important;
  }

  .floating-pill {
    display: none; /* clean mobile canvas without overlapping chips */
  }
}
