/* ==========================================================================
   NETAJI PUBLIC SCHOOL - Core Design System & Stylesheet
   ========================================================================== */

/* -----------------------------
   CSS Variables & Design Tokens
   ----------------------------- */
:root {
  /* Color Palette */
  --primary-900: #0a192f;
  --primary-800: #0f2744;
  --primary-700: #14355a;
  --primary-600: #1e4a7a;
  --primary-500: #2b6cb0;
  
  --accent-gold-600: #c98200;
  --accent-gold-500: #e59819;
  --accent-gold-400: #f6ad2b;
  --accent-gold-100: #fef4e6;
  
  --accent-saffron: #ff6f00;
  --accent-emerald: #0d9488;
  --accent-emerald-light: #ecfdf5;
  
  --neutral-900: #0f172a;
  --neutral-800: #1e293b;
  --neutral-700: #334155;
  --neutral-600: #475569;
  --neutral-500: #64748b;
  --neutral-400: #94a3b8;
  --neutral-300: #cbd5e1;
  --neutral-200: #e2e8f0;
  --neutral-100: #f1f5f9;
  --neutral-50:  #f8fafc;
  --white:       #ffffff;
  
  /* Typography */
  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-serif: 'Cinzel', serif;

  /* Elevation Shadows */
  --shadow-xs: 0 1px 2px rgba(15, 23, 42, 0.05);
  --shadow-sm: 0 2px 4px rgba(15, 23, 42, 0.06), 0 1px 2px rgba(15, 23, 42, 0.04);
  --shadow-md: 0 4px 12px rgba(15, 23, 42, 0.08), 0 2px 4px rgba(15, 23, 42, 0.04);
  --shadow-lg: 0 10px 25px -3px rgba(15, 23, 42, 0.1), 0 4px 6px -2px rgba(15, 23, 42, 0.05);
  --shadow-xl: 0 20px 35px -5px rgba(15, 23, 42, 0.15), 0 10px 10px -5px rgba(15, 23, 42, 0.04);
  --shadow-gold: 0 10px 25px -3px rgba(229, 152, 25, 0.35);

  /* Radius */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  /* Transitions */
  --transition-fast: 0.15s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);

  /* Container */
  --container-max: 1240px;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  color: var(--neutral-800);
  background-color: var(--neutral-50);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--primary-900);
  line-height: 1.25;
  font-weight: 700;
  letter-spacing: -0.02em;
}

p {
  margin-bottom: 1rem;
}

p:last-child {
  margin-bottom: 0;
}

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

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

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

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

/* -----------------------------
   Utility Components & Badges
   ----------------------------- */
.section-padding {
  padding: 5rem 0;
}

@media (max-width: 768px) {
  .section-padding {
    padding: 3.5rem 0;
  }
}

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

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.35rem 1rem;
  background-color: var(--accent-gold-100);
  color: var(--accent-gold-600);
  border-radius: var(--radius-full);
  margin-bottom: 1rem;
}

.section-tag.emerald {
  background-color: var(--accent-emerald-light);
  color: var(--accent-emerald);
}

.section-tag.saffron {
  background-color: #fff3e0;
  color: #d97706;
}

.section-title {
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 800;
  margin-bottom: 1rem;
  color: var(--primary-900);
}

.section-desc {
  font-size: 1.1rem;
  color: var(--neutral-600);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-family: var(--font-heading);
  font-size: 0.9375rem;
  font-weight: 600;
  padding: 0.75rem 1.6rem;
  border-radius: var(--radius-md);
  border: 1px solid transparent;
  cursor: pointer;
  transition: all var(--transition-normal);
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-gold-500), var(--accent-gold-600));
  color: var(--white);
  box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--accent-gold-400), var(--accent-gold-500));
  box-shadow: var(--shadow-gold);
  transform: translateY(-2px);
}

.btn-navy {
  background-color: var(--primary-800);
  color: var(--white);
}

.btn-navy:hover {
  background-color: var(--primary-900);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline-white {
  background-color: transparent;
  border-color: rgba(255, 255, 255, 0.4);
  color: var(--white);
  backdrop-filter: blur(4px);
}

.btn-outline-white:hover {
  background-color: rgba(255, 255, 255, 0.15);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-outline-navy {
  background-color: transparent;
  border-color: var(--primary-700);
  color: var(--primary-800);
}

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

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
}

.btn-lg {
  padding: 0.95rem 2rem;
  font-size: 1.05rem;
}

/* -----------------------------
   Top Announcement Bar & Header
   ----------------------------- */
.topbar {
  background-color: var(--primary-900);
  color: var(--neutral-300);
  font-size: 0.8125rem;
  padding: 0.45rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.topbar-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.topbar-info {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.topbar-item {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.topbar-item svg {
  width: 14px;
  height: 14px;
  color: var(--accent-gold-400);
}

.topbar-links {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.topbar-links a {
  color: var(--neutral-300);
  font-weight: 500;
}

.topbar-links a:hover {
  color: var(--accent-gold-400);
}

.badge-pulse {
  display: inline-block;
  width: 8px;
  height: 8px;
  background-color: #22c55e;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
  animation: pulseGreen 2s infinite;
}

@keyframes pulseGreen {
  0% {
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
  }
  70% {
    box-shadow: 0 0 0 6px rgba(34, 197, 94, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0);
  }
}

/* -----------------------------
   Main Header & Navigation
   ----------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
}

.site-header.scrolled {
  box-shadow: var(--shadow-md);
  padding: 0.2rem 0;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1.5rem;
  max-width: var(--container-max);
  margin: 0 auto;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
}

.brand-crest {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--primary-900), var(--primary-700));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-gold-400);
  box-shadow: 0 4px 10px rgba(10, 25, 47, 0.2);
  border: 1.5px solid var(--accent-gold-500);
}

.brand-crest svg {
  width: 32px;
  height: 32px;
}

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

.brand-name {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--primary-900);
  letter-spacing: -0.01em;
  line-height: 1.1;
}

.brand-sub {
  font-size: 0.725rem;
  font-weight: 600;
  color: var(--accent-gold-600);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* Nav Menu */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 1.35rem;
}

.nav-link {
  font-family: var(--font-heading);
  font-size: 0.925rem;
  font-weight: 600;
  color: var(--neutral-700);
  padding: 0.4rem 0.2rem;
  position: relative;
}

.nav-link:hover, .nav-link.active {
  color: var(--primary-700);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background-color: var(--accent-gold-500);
  transition: width var(--transition-normal);
}

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

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  color: var(--primary-900);
}

.mobile-toggle svg {
  width: 28px;
  height: 28px;
}

/* -----------------------------
   Hero Section
   ----------------------------- */
.hero-section {
  position: relative;
  background: linear-gradient(135deg, #091a32 0%, #0d2648 60%, #153c6e 100%);
  color: var(--white);
  padding: 5.5rem 0 6rem;
  overflow: hidden;
}

.hero-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.07;
  background-image: radial-gradient(var(--accent-gold-400) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 3.5rem;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(229, 152, 25, 0.4);
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent-gold-400);
  margin-bottom: 1.5rem;
}

.hero-title {
  font-size: clamp(2.3rem, 4vw, 3.5rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 1.25rem;
}

.hero-title span {
  color: var(--accent-gold-400);
  position: relative;
}

.hero-description {
  font-size: 1.1rem;
  color: var(--neutral-300);
  margin-bottom: 2rem;
  max-width: 580px;
  line-height: 1.65;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-stat-item h3 {
  font-size: 1.85rem;
  color: var(--accent-gold-400);
  font-weight: 800;
  margin-bottom: 0.2rem;
}

.hero-stat-item p {
  font-size: 0.825rem;
  color: var(--neutral-300);
  font-weight: 500;
}

/* Hero Media Card */
.hero-visual {
  position: relative;
}

.hero-image-wrapper {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  border: 4px solid rgba(255, 255, 255, 0.15);
  background-color: var(--primary-800);
}

.hero-image-wrapper img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  display: block;
  transition: transform var(--transition-smooth);
}

.hero-image-wrapper:hover img {
  transform: scale(1.03);
}

.hero-badge-overlay {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  right: 1.25rem;
  background: rgba(10, 25, 47, 0.9);
  backdrop-filter: blur(12px);
  padding: 1.1rem 1.4rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 1rem;
}

.hero-badge-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background-color: var(--accent-gold-500);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hero-badge-icon svg {
  width: 24px;
  height: 24px;
}

.hero-badge-overlay h4 {
  font-size: 0.95rem;
  color: var(--white);
  margin-bottom: 0.15rem;
}

.hero-badge-overlay p {
  font-size: 0.8rem;
  color: var(--neutral-300);
}

/* -----------------------------
   Ticker / Announcement Bar
   ----------------------------- */
.ticker-bar {
  background-color: #0b1f38;
  color: var(--white);
  padding: 0.8rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.ticker-container {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.ticker-label {
  background-color: var(--accent-saffron);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 800;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-sm);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.ticker-content {
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  width: 100%;
}

.ticker-items {
  display: inline-flex;
  align-items: center;
  gap: 3rem;
  animation: tickerScroll 30s linear infinite;
}

.ticker-items:hover {
  animation-play-state: paused;
}

.ticker-link {
  font-size: 0.875rem;
  color: var(--neutral-200);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.ticker-link:hover {
  color: var(--accent-gold-400);
  text-decoration: underline;
}

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

/* -----------------------------
   Netaji Legacy & About Section
   ----------------------------- */
.about-section {
  background-color: var(--white);
}

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

.about-quote-card {
  background: linear-gradient(135deg, var(--primary-900), var(--primary-800));
  border-radius: var(--radius-xl);
  padding: 2.75rem 2.25rem;
  color: var(--white);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 1px solid rgba(229, 152, 25, 0.3);
}

.about-quote-card::before {
  content: '“';
  position: absolute;
  top: 10px;
  right: 25px;
  font-size: 10rem;
  line-height: 1;
  font-family: var(--font-serif);
  color: rgba(255, 255, 255, 0.05);
  pointer-events: none;
}

.about-quote-text {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 500;
  line-height: 1.5;
  color: var(--neutral-100);
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.quote-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.quote-author-img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--accent-gold-500);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 800;
}

.quote-author h4 {
  font-size: 1.05rem;
  color: var(--accent-gold-400);
  margin-bottom: 0.1rem;
}

.quote-author p {
  font-size: 0.8rem;
  color: var(--neutral-300);
}

.about-content h2 {
  font-size: clamp(2rem, 3.2vw, 2.5rem);
  margin-bottom: 1.25rem;
  line-height: 1.2;
}

.about-lead {
  font-size: 1.1rem;
  color: var(--primary-700);
  font-weight: 600;
  margin-bottom: 1.25rem;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin: 2rem 0;
}

.about-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.about-feature-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: var(--accent-emerald-light);
  color: var(--accent-emerald);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.about-feature-icon svg {
  width: 14px;
  height: 14px;
}

.about-feature-item h4 {
  font-size: 0.95rem;
  margin-bottom: 0.2rem;
}

.about-feature-item p {
  font-size: 0.825rem;
  color: var(--neutral-600);
}

/* -----------------------------
   Campus Aerial Banner Showcase
   ----------------------------- */
.campus-showcase-section {
  background-color: var(--neutral-100);
}

.campus-hero-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--neutral-300);
  background-color: var(--primary-900);
}

.campus-hero-card img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
}

.campus-hero-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(10, 25, 47, 0.92) 50%, rgba(10, 25, 47, 0.98) 100%);
  padding: 3rem 2.5rem 2rem;
  color: var(--white);
}

.campus-pills-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.campus-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(8px);
  padding: 0.45rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.825rem;
  font-weight: 600;
  color: var(--neutral-100);
}

.campus-pill svg {
  width: 16px;
  height: 16px;
  color: var(--accent-gold-400);
}

/* -----------------------------
   School Cultural Events & Celebrations
   ----------------------------- */
.events-showcase-section {
  background-color: var(--white);
}

.event-feature-card {
  background: var(--neutral-50);
  border: 1px solid var(--neutral-200);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
}

.event-image-side {
  position: relative;
  height: 100%;
  min-height: 440px;
  overflow: hidden;
  background-color: var(--primary-900);
}

.event-image-side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--transition-smooth);
}

.event-image-side:hover img {
  transform: scale(1.02);
}

.event-image-badge {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  background: rgba(10, 25, 47, 0.88);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(229, 152, 25, 0.5);
  color: var(--accent-gold-400);
  padding: 0.45rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.event-content-side {
  padding: 3rem 2.5rem;
}

.event-meta-info {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 1rem;
  font-size: 0.875rem;
  color: var(--neutral-500);
}

.event-meta-info span {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.event-meta-info svg {
  width: 16px;
  height: 16px;
  color: var(--accent-gold-500);
}

.event-content-side h3 {
  font-size: 1.85rem;
  margin-bottom: 1rem;
  color: var(--primary-900);
  line-height: 1.25;
}

.event-content-side p {
  color: var(--neutral-600);
  font-size: 0.95rem;
  line-height: 1.65;
  margin-bottom: 1.5rem;
}

.event-highlights-list {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-bottom: 2rem;
}

.event-highlights-list li {
  font-size: 0.9rem;
  color: var(--neutral-700);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.event-highlights-list svg {
  width: 16px;
  height: 16px;
  color: var(--accent-emerald);
  flex-shrink: 0;
}

/* -----------------------------
   Academic Wings / Programs
   ----------------------------- */
.academics-section {
  background-color: var(--neutral-100);
}

.wings-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 1.75rem;
}

.wing-card {
  background-color: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.25rem 1.75rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--neutral-200);
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.wing-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--accent-gold-500);
  opacity: 0;
  transition: opacity var(--transition-normal);
}

.wing-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(229, 152, 25, 0.4);
}

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

.wing-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}

.wing-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background-color: var(--neutral-100);
  color: var(--primary-700);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-normal);
}

.wing-card:hover .wing-icon {
  background-color: var(--primary-900);
  color: var(--accent-gold-400);
}

.wing-grades {
  font-size: 0.75rem;
  font-weight: 700;
  background-color: var(--accent-gold-100);
  color: var(--accent-gold-600);
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-full);
}

.wing-title {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.wing-desc {
  font-size: 0.9rem;
  color: var(--neutral-600);
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.wing-list {
  margin-bottom: 1.5rem;
}

.wing-list li {
  font-size: 0.85rem;
  color: var(--neutral-700);
  padding: 0.35rem 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.wing-list li svg {
  width: 14px;
  height: 14px;
  color: var(--accent-emerald);
  flex-shrink: 0;
}

.wing-card .btn {
  width: 100%;
}

/* -----------------------------
   Campus Facilities Grid
   ----------------------------- */
.facilities-section {
  background-color: var(--white);
}

.facility-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 2rem;
}

.facility-card {
  background: var(--neutral-50);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--neutral-200);
  transition: all var(--transition-normal);
}

.facility-card:hover {
  background: var(--white);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: var(--accent-gold-400);
}

.facility-top {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 1rem;
}

.facility-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--primary-800), var(--primary-900));
  color: var(--accent-gold-400);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.facility-top h3 {
  font-size: 1.15rem;
}

.facility-card p {
  font-size: 0.9rem;
  color: var(--neutral-600);
  line-height: 1.55;
}

/* -----------------------------
   Interactive Eligibility & Admission Checker
   ----------------------------- */
.admission-calc-section {
  background: linear-gradient(135deg, var(--primary-900), var(--primary-800));
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.calc-box {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
  border-radius: var(--radius-xl);
  padding: 3rem;
  box-shadow: var(--shadow-xl);
}

.calc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.calc-form-group {
  margin-bottom: 1.25rem;
}

.calc-form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--neutral-200);
  margin-bottom: 0.5rem;
}

.calc-form-control {
  width: 100%;
  padding: 0.8rem 1rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.2);
  background-color: rgba(255, 255, 255, 0.08);
  color: var(--white);
  font-size: 0.95rem;
  outline: none;
  transition: all var(--transition-fast);
}

.calc-form-control:focus {
  border-color: var(--accent-gold-400);
  background-color: rgba(255, 255, 255, 0.15);
  box-shadow: 0 0 0 3px rgba(229, 152, 25, 0.25);
}

.calc-form-control option {
  background-color: var(--primary-900);
  color: var(--white);
}

.calc-result-panel {
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px dashed rgba(229, 152, 25, 0.4);
  text-align: center;
}

.calc-result-title {
  font-size: 1.2rem;
  color: var(--accent-gold-400);
  margin-bottom: 0.5rem;
}

.calc-result-detail {
  font-size: 0.95rem;
  color: var(--neutral-200);
  margin-bottom: 1.5rem;
}

/* -----------------------------
   Notices, Events & Announcements
   ----------------------------- */
.notices-section {
  background-color: var(--neutral-50);
}

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

.tab-btn {
  background-color: var(--white);
  border: 1px solid var(--neutral-300);
  color: var(--neutral-700);
  padding: 0.6rem 1.4rem;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.tab-btn:hover, .tab-btn.active {
  background-color: var(--primary-800);
  color: var(--white);
  border-color: var(--primary-800);
}

.notice-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.75rem;
}

.notice-card {
  background-color: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  border: 1px solid var(--neutral-200);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.notice-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.notice-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.notice-tag {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-sm);
  background-color: var(--neutral-100);
  color: var(--neutral-700);
}

.notice-tag.urgent {
  background-color: #fee2e2;
  color: #b91c1c;
}

.notice-tag.event {
  background-color: #e0f2fe;
  color: #0369a1;
}

.notice-date {
  font-size: 0.8rem;
  color: var(--neutral-500);
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.notice-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
  line-height: 1.35;
}

.notice-card p {
  font-size: 0.875rem;
  color: var(--neutral-600);
  margin-bottom: 1.25rem;
  flex-grow: 1;
}

.notice-link {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--primary-700);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.notice-link:hover {
  color: var(--accent-gold-600);
}

/* -----------------------------
   Testimonials & Accreditations
   ----------------------------- */
.testimonials-section {
  background-color: var(--white);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.testimonial-card {
  background-color: var(--neutral-50);
  border: 1px solid var(--neutral-200);
  border-radius: var(--radius-xl);
  padding: 2.25rem 2rem;
  position: relative;
}

.testimonial-stars {
  color: var(--accent-gold-500);
  margin-bottom: 1rem;
  display: flex;
  gap: 0.2rem;
}

.testimonial-text {
  font-size: 0.95rem;
  color: var(--neutral-700);
  font-style: italic;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.testimonial-user {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-700), var(--primary-900));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
}

.testimonial-user-info h4 {
  font-size: 0.95rem;
  margin-bottom: 0.1rem;
}

.testimonial-user-info p {
  font-size: 0.775rem;
  color: var(--neutral-500);
}

/* -----------------------------
   FAQ Accordion Section
   ----------------------------- */
.faq-section {
  background-color: var(--neutral-100);
}

.faq-wrapper {
  max-width: 840px;
  margin: 0 auto;
}

.faq-item {
  background-color: var(--white);
  border-radius: var(--radius-md);
  margin-bottom: 1rem;
  border: 1px solid var(--neutral-200);
  overflow: hidden;
  transition: all var(--transition-fast);
}

.faq-item.active {
  border-color: var(--accent-gold-500);
  box-shadow: var(--shadow-sm);
}

.faq-question {
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary-900);
  user-select: none;
}

.faq-icon {
  width: 20px;
  height: 20px;
  transition: transform var(--transition-normal);
  color: var(--primary-600);
  flex-shrink: 0;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
  color: var(--accent-gold-600);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-normal), padding var(--transition-normal);
  padding: 0 1.5rem;
  color: var(--neutral-600);
  font-size: 0.925rem;
  line-height: 1.6;
}

.faq-item.active .faq-answer {
  max-height: 250px;
  padding: 0 1.5rem 1.25rem;
}

/* -----------------------------
   Contact & Location
   ----------------------------- */
.contact-section {
  background-color: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
}

.contact-info-card {
  background: linear-gradient(135deg, var(--primary-900), var(--primary-800));
  border-radius: var(--radius-xl);
  padding: 2.75rem 2.25rem;
  color: var(--white);
}

.contact-info-card h3 {
  font-size: 1.75rem;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.contact-info-card p {
  color: var(--neutral-300);
  font-size: 0.95rem;
  margin-bottom: 2rem;
}

.contact-details-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.contact-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-detail-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  background-color: rgba(229, 152, 25, 0.15);
  color: var(--accent-gold-400);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-detail-text h4 {
  font-size: 0.95rem;
  color: var(--white);
  margin-bottom: 0.2rem;
}

.contact-detail-text p {
  font-size: 0.875rem;
  color: var(--neutral-300);
  margin-bottom: 0;
}

.contact-form-card {
  background-color: var(--neutral-50);
  border-radius: var(--radius-xl);
  padding: 2.5rem 2rem;
  border: 1px solid var(--neutral-200);
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--neutral-800);
  margin-bottom: 0.4rem;
}

.form-control {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--neutral-300);
  background-color: var(--white);
  color: var(--neutral-800);
  font-size: 0.925rem;
  outline: none;
  transition: all var(--transition-fast);
}

.form-control:focus {
  border-color: var(--primary-600);
  box-shadow: 0 0 0 3px rgba(30, 74, 122, 0.15);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

/* -----------------------------
   Footer
   ----------------------------- */
.site-footer {
  background-color: #071324;
  color: var(--neutral-400);
  font-size: 0.875rem;
  padding-top: 4.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr 1fr;
  gap: 3rem;
  padding-bottom: 3.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand p {
  color: var(--neutral-400);
  font-size: 0.875rem;
  margin-top: 1rem;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.footer-socials {
  display: flex;
  gap: 0.75rem;
}

.social-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.06);
  color: var(--neutral-300);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

.social-icon:hover {
  background-color: var(--accent-gold-500);
  color: var(--white);
  transform: translateY(-2px);
}

.footer-col h4 {
  font-size: 1.05rem;
  color: var(--white);
  margin-bottom: 1.25rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 28px;
  height: 2px;
  background-color: var(--accent-gold-500);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer-links a {
  color: var(--neutral-400);
  transition: color var(--transition-fast);
}

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

.footer-bottom {
  padding: 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.8125rem;
}

/* -----------------------------
   Modal Popup System
   ----------------------------- */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 25, 47, 0.75);
  backdrop-filter: blur(6px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-normal);
}

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

.modal-container {
  background-color: var(--white);
  border-radius: var(--radius-xl);
  max-width: 560px;
  width: 100%;
  box-shadow: var(--shadow-xl);
  overflow: hidden;
  transform: scale(0.95) translateY(10px);
  transition: transform var(--transition-normal);
}

.modal-overlay.active .modal-container {
  transform: scale(1) translateY(0);
}

.modal-header {
  background: linear-gradient(135deg, var(--primary-900), var(--primary-800));
  color: var(--white);
  padding: 1.5rem 1.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.modal-header h3 {
  font-size: 1.25rem;
  color: var(--white);
}

.modal-close {
  background: none;
  border: none;
  color: var(--neutral-400);
  cursor: pointer;
  padding: 0.25rem;
}

.modal-close:hover {
  color: var(--white);
}

.modal-body {
  padding: 1.75rem;
  max-height: 80vh;
  overflow-y: auto;
}

/* Toast Notifications */
.toast-container {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 3000;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.toast {
  background-color: var(--primary-900);
  color: var(--white);
  padding: 1rem 1.5rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xl);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border-left: 4px solid var(--accent-gold-500);
  animation: slideInRight 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.toast.success {
  border-left-color: #22c55e;
}

@keyframes slideInRight {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

/* Back to Top */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--primary-800);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-normal);
  z-index: 999;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background-color: var(--accent-gold-500);
  transform: translateY(-3px);
}

/* -----------------------------
   Responsive Breakpoints
   ----------------------------- */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .hero-visual {
    max-width: 600px;
    margin: 0 auto;
  }

  .about-grid, .calc-grid, .contact-grid, .event-feature-card {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .event-image-side {
    min-height: 320px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

@media (max-width: 860px) {
  .nav-menu {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background-color: var(--white);
    flex-direction: column;
    padding: 2rem 1.5rem;
    box-shadow: var(--shadow-lg);
    display: none;
    border-bottom: 1px solid var(--neutral-200);
  }

  .nav-menu.open {
    display: flex;
  }

  .mobile-toggle {
    display: block;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

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

/* ==========================================================================
   HYDERABADI THEME & MULTI-PAGE DEDICATED STYLES
   ========================================================================== */

/* Page Hero Banner */
.page-hero {
  position: relative;
  background: linear-gradient(135deg, #07152b 0%, #0a192f 50%, #14355a 100%);
  color: var(--white);
  padding: 4.5rem 0 3.5rem;
  overflow: hidden;
  border-bottom: 3px solid var(--accent-gold-500);
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(circle at 80% 20%, rgba(229, 152, 25, 0.15) 0%, transparent 60%),
                    radial-gradient(circle at 10% 80%, rgba(13, 148, 136, 0.12) 0%, transparent 50%);
  pointer-events: none;
}

.page-hero-pattern {
  position: absolute;
  top: 0;
  right: -50px;
  width: 400px;
  height: 100%;
  opacity: 0.05;
  background-repeat: repeat;
  background-size: 40px 40px;
  background-image: radial-gradient(circle, #fff 1.5px, transparent 1.5px);
  pointer-events: none;
}

.page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
}

.breadcrumb-trail {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--accent-gold-400);
  margin-bottom: 1rem;
  padding: 0.3rem 0.9rem;
  background: rgba(255, 255, 255, 0.07);
  border-radius: var(--radius-full);
  border: 1px solid rgba(229, 152, 25, 0.25);
}

.breadcrumb-trail a {
  color: var(--neutral-300);
  transition: color var(--transition-fast);
}

.breadcrumb-trail a:hover {
  color: var(--accent-gold-400);
}

.page-hero-title {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 1rem;
}

.page-hero-title span {
  color: var(--accent-gold-400);
}

.page-hero-desc {
  font-size: 1.15rem;
  color: var(--neutral-300);
  line-height: 1.6;
}

.hyderabad-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 700;
  background: rgba(229, 152, 25, 0.15);
  color: var(--accent-gold-400);
  border: 1px solid rgba(229, 152, 25, 0.4);
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

/* Founder & Patron Showcase Section */
.founder-section {
  background-color: var(--white);
  border-top: 1px solid var(--neutral-200);
  border-bottom: 1px solid var(--neutral-200);
}

.founder-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

.founder-card-box {
  background: linear-gradient(135deg, #07152b 0%, #0a192f 100%);
  border-radius: var(--radius-xl);
  padding: 2.25rem;
  color: var(--white);
  border: 2px solid rgba(229, 152, 25, 0.3);
  box-shadow: var(--shadow-xl);
  position: relative;
  overflow: hidden;
}

.founder-card-box::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 140px;
  height: 140px;
  background: radial-gradient(circle, rgba(229, 152, 25, 0.2) 0%, transparent 70%);
  pointer-events: none;
}

.founder-portrait-row {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 1.75rem;
  align-items: center;
  margin-bottom: 1.5rem;
}

.founder-portrait-frame {
  width: 180px;
  height: 216px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 3px solid var(--accent-gold-500);
  box-shadow: var(--shadow-gold);
  background-color: var(--primary-900);
}

.founder-portrait-frame img, .founder-portrait-frame svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.founder-details h3 {
  color: var(--white);
  font-size: 1.45rem;
  margin-bottom: 0.35rem;
}

.founder-designation {
  color: var(--accent-gold-400);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.founder-bio-snip {
  color: var(--neutral-300);
  font-size: 0.9rem;
  line-height: 1.5;
}

.founder-quote-box {
  background: rgba(255, 255, 255, 0.05);
  border-left: 4px solid var(--accent-gold-500);
  padding: 1.25rem 1.5rem;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  margin-top: 1.25rem;
}

.founder-quote-box p {
  font-style: italic;
  color: var(--neutral-200);
  font-size: 0.95rem;
  margin: 0;
}

/* Sub-patron Netaji Card */
.patron-card-box {
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  gap: 1.5rem;
  align-items: center;
  margin-top: 1.5rem;
}

.patron-portrait-frame {
  width: 110px;
  height: 130px;
  flex-shrink: 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 2px solid var(--accent-saffron);
}

.patron-portrait-frame img, .patron-portrait-frame svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Feature Grid Cards */
.card-grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.card-grid-4 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.75rem;
}

.feature-card-premium {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  border: 1px solid var(--neutral-200);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.feature-card-premium:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent-gold-400);
}

.card-icon-round {
  width: 58px;
  height: 58px;
  border-radius: var(--radius-md);
  background: var(--accent-gold-100);
  color: var(--accent-gold-600);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.card-icon-round.navy {
  background: var(--primary-900);
  color: var(--accent-gold-400);
}

.card-icon-round.emerald {
  background: var(--accent-emerald-light);
  color: var(--accent-emerald);
}

.card-icon-round.saffron {
  background: #fff3e0;
  color: #ea580c;
}

.card-icon-round svg {
  width: 28px;
  height: 28px;
}

/* Table Style */
.table-responsive {
  width: 100%;
  overflow-x: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--neutral-200);
  background: var(--white);
}

.custom-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.custom-table th {
  background: var(--primary-900);
  color: var(--white);
  padding: 1rem 1.25rem;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.custom-table td {
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--neutral-200);
  color: var(--neutral-700);
  font-size: 0.925rem;
}

.custom-table tr:hover td {
  background-color: var(--neutral-50);
}

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

/* Timeline component */
.heritage-timeline {
  position: relative;
  max-width: 860px;
  margin: 0 auto;
  padding-left: 2rem;
}

.heritage-timeline::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 3px;
  background: linear-gradient(to bottom, var(--accent-gold-500), var(--primary-800));
}

.timeline-milestone {
  position: relative;
  margin-bottom: 2.5rem;
  padding-left: 1.5rem;
}

.timeline-milestone::before {
  content: '';
  position: absolute;
  left: -2.45rem;
  top: 0.35rem;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: var(--accent-gold-500);
  border: 3px solid var(--white);
  box-shadow: 0 0 0 3px rgba(229, 152, 25, 0.4);
}

.timeline-year {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--accent-gold-600);
  background: var(--accent-gold-100);
  padding: 0.2rem 0.75rem;
  border-radius: var(--radius-full);
  margin-bottom: 0.5rem;
}

/* Stepper process for Admissions */
.stepper-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  position: relative;
}

.step-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  border: 1px solid var(--neutral-200);
  box-shadow: var(--shadow-sm);
  position: relative;
}

.step-number {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--primary-900);
  color: var(--accent-gold-400);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  border: 2px solid var(--accent-gold-500);
}

/* Uppal Metro & Location Proximity Banner */
.uppal-location-banner {
  background: linear-gradient(135deg, #07152b, #0f2744);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  border: 1px solid rgba(229, 152, 25, 0.3);
  margin-bottom: 2.5rem;
}

.uppal-location-banner h4 {
  color: var(--white);
  font-size: 1.35rem;
  margin-bottom: 0.4rem;
}

.uppal-location-banner p {
  color: var(--neutral-300);
  font-size: 0.95rem;
  margin: 0;
}

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

  .founder-portrait-row {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .founder-portrait-frame {
    margin: 0 auto;
  }

  .page-hero {
    padding: 3.5rem 0 2.5rem;
  }
}

