/* ==========================================================================
   Bachpan English School - Main Stylesheet
   Theme: Royal Blue (#0F3460, #1A365D), Vibrant Gold/Yellow (#FFB703, #FB8500), White & Slate
   ========================================================================== */

/* --- Google Fonts & Variables --- */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Poppins:wght@400;500;600;700;800&display=swap');

:root {
  /* Brand Colors */
  --primary-navy: #0F3460;
  --primary-dark: #0A2240;
  --primary-deep: #061527;
  --primary-blue: #1A5298;
  --accent-sky: #219EBC;
  --accent-sky-light: #E0F2FE;
  
  /* School Yellow & Gold */
  --accent-yellow: #FFB703;
  --accent-yellow-hover: #E5A400;
  --accent-gold: #F59E0B;
  --accent-orange: #FB8500;
  --accent-yellow-light: #FEF3C7;
  
  /* Neutrals */
  --white: #FFFFFF;
  --bg-light: #F8FAFC;
  --bg-alt: #F1F5F9;
  --bg-slate: #E2E8F0;
  --text-dark: #0F172A;
  --text-body: #334155;
  --text-muted: #64748B;
  --text-light: #94A3B8;
  --border-color: #E2E8F0;
  --border-light: #F1F5F9;

  /* State Colors */
  --success: #10B981;
  --success-light: #D1FAE5;
  --danger: #EF4444;
  --danger-light: #FEE2E2;
  
  /* Typography */
  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  
  /* Shadows */
  --shadow-sm: 0 2px 4px rgba(15, 52, 96, 0.06);
  --shadow-md: 0 6px 18px rgba(15, 52, 96, 0.08);
  --shadow-lg: 0 12px 28px rgba(15, 52, 96, 0.12);
  --shadow-xl: 0 20px 40px rgba(15, 52, 96, 0.16);
  --shadow-yellow: 0 8px 24px rgba(255, 183, 3, 0.35);
  
  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;
  
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--text-body);
  background-color: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

ul {
  list-style: none;
}

button, input, select, textarea {
  font-family: inherit;
  border: none;
  outline: none;
}

/* --- Container & Layout --- */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

.container-fluid {
  width: 100%;
  padding: 0 24px;
}

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

.section-padding-sm {
  padding: 50px 0;
}

.bg-light {
  background-color: var(--bg-light);
}

.bg-alt {
  background-color: var(--bg-alt);
}

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

.bg-dark-navy {
  background-color: var(--primary-dark);
  color: var(--white);
}

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-dark);
  font-weight: 700;
  line-height: 1.25;
}

.text-navy {
  color: var(--primary-navy) !important;
}

.text-yellow {
  color: var(--accent-yellow) !important;
}

.text-white {
  color: var(--white) !important;
}

.text-muted {
  color: var(--text-muted) !important;
}

.section-title-wrap {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 50px auto;
}

.section-title-wrap.text-left {
  text-align: left;
  margin-left: 0;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: var(--accent-yellow-light);
  color: #B45309;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  margin-bottom: 14px;
}

.section-badge.badge-blue {
  background-color: var(--accent-sky-light);
  color: var(--primary-navy);
}

.section-badge.badge-white {
  background-color: rgba(255, 255, 255, 0.15);
  color: var(--accent-yellow);
  backdrop-filter: blur(4px);
}

.section-title {
  font-size: 2.35rem;
  color: var(--text-dark);
  margin-bottom: 16px;
  position: relative;
}

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

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

.section-subtitle.subtitle-light {
  color: rgba(255, 255, 255, 0.85);
}

/* --- Buttons & Pills --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 13px 28px;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all var(--transition-normal);
  text-align: center;
  white-space: nowrap;
}

.btn-yellow {
  background-color: var(--accent-yellow);
  color: var(--primary-dark);
  box-shadow: var(--shadow-yellow);
}

.btn-yellow:hover {
  background-color: var(--accent-yellow-hover);
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(255, 183, 3, 0.45);
  color: var(--primary-deep);
}

.btn-navy {
  background-color: var(--primary-navy);
  color: var(--white);
  box-shadow: 0 6px 20px rgba(15, 52, 96, 0.25);
}

.btn-navy:hover {
  background-color: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(15, 52, 96, 0.35);
  color: var(--white);
}

.btn-white {
  background-color: var(--white);
  color: var(--primary-navy);
  box-shadow: var(--shadow-md);
}

.btn-white:hover {
  background-color: var(--bg-light);
  transform: translateY(-3px);
  color: var(--primary-dark);
  box-shadow: var(--shadow-lg);
}

.btn-outline-white {
  background-color: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.7);
}

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

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

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

.btn-sm {
  padding: 9px 20px;
  font-size: 0.85rem;
}

.btn-lg {
  padding: 16px 36px;
  font-size: 1.05rem;
}

.btn-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

/* ==========================================================================
   Header & Navigation Bar
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: var(--white);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
}

.site-header.scrolled {
  box-shadow: 0 10px 30px rgba(15, 52, 96, 0.12);
  background-color: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
}

/* Top Bar */
.top-bar {
  background-color: var(--primary-dark);
  color: var(--white);
  font-size: 0.85rem;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.top-bar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.top-info-list {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.top-info-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.85);
}

.top-info-item i {
  color: var(--accent-yellow);
}

.top-info-item a:hover {
  color: var(--accent-yellow);
}

.top-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.top-social-links {
  display: flex;
  gap: 10px;
}

.top-social-links a {
  width: 28px;
  height: 28px;
  border-radius: var(--radius-full);
  background-color: rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 0.8rem;
}

.top-social-links a:hover {
  background-color: var(--accent-yellow);
  color: var(--primary-dark);
}

.top-admit-badge {
  background-color: var(--accent-yellow);
  color: var(--primary-dark);
  font-weight: 700;
  font-size: 0.78rem;
  padding: 3px 10px;
  border-radius: var(--radius-full);
  animation: pulse-badge 2s infinite;
}

@keyframes pulse-badge {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

/* Main Navigation */
.navbar-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}

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

.brand-icon-box {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--primary-navy), var(--primary-dark));
  border: 2px solid var(--accent-yellow);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-yellow);
  font-size: 1.6rem;
  box-shadow: 0 4px 12px rgba(15, 52, 96, 0.2);
}

.brand-text-box h2 {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--primary-navy);
  letter-spacing: -0.5px;
  line-height: 1.1;
}

.brand-text-box span {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--accent-orange);
  display: block;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  font-family: var(--font-heading);
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-dark);
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: var(--accent-yellow);
  transition: all var(--transition-fast);
  transform: translateX(-50%);
}

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

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

.nav-link.active {
  color: var(--primary-navy);
  background-color: var(--accent-sky-light);
}

.nav-link.active::after {
  width: 70%;
  background-color: var(--primary-navy);
}

.nav-cta {
  margin-left: 12px;
}

/* Mobile Hamburger Toggle */
.mobile-nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  background: var(--bg-alt);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  cursor: pointer;
  gap: 5px;
  padding: 0;
  transition: var(--transition-normal);
}

.mobile-nav-toggle span {
  display: block;
  width: 22px;
  height: 2.5px;
  background-color: var(--primary-navy);
  border-radius: 4px;
  transition: var(--transition-normal);
}

.mobile-nav-toggle.open span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}

.mobile-nav-toggle.open span:nth-child(2) {
  opacity: 0;
}

.mobile-nav-toggle.open span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

/* Mobile Nav Drawer */
.mobile-nav-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 85%;
  max-width: 380px;
  height: 100vh;
  background-color: var(--white);
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.2);
  z-index: 1050;
  overflow-y: auto;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 30px 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.mobile-nav-drawer.active {
  right: 0;
}

.mobile-nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(15, 52, 96, 0.6);
  backdrop-filter: blur(4px);
  z-index: 1040;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-normal);
}

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

.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-color);
}

.drawer-close-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background-color: var(--bg-alt);
  color: var(--text-dark);
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.mobile-nav-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 30px;
}

.mobile-nav-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  color: var(--text-dark);
  background-color: var(--bg-light);
  transition: var(--transition-fast);
}

.mobile-nav-list a:hover,
.mobile-nav-list a.active {
  background-color: var(--primary-navy);
  color: var(--white);
}

.mobile-nav-list a.active i {
  color: var(--accent-yellow);
}

.drawer-footer {
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid var(--border-color);
}

/* ==========================================================================
   Hero Section (Home Page)
   ========================================================================== */
.hero-section {
  position: relative;
  min-height: 640px;
  background: linear-gradient(135deg, rgba(10, 34, 64, 0.92) 0%, rgba(15, 52, 96, 0.85) 100%), 
              url('https://images.unsplash.com/photo-1580582932707-520aed937b7b?auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
  color: var(--white);
  display: flex;
  align-items: center;
  padding: 90px 0;
  overflow: hidden;
}

.hero-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
}

.hero-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.25;
}

.hero-shape-1 {
  width: 450px;
  height: 450px;
  background-color: var(--accent-yellow);
  top: -100px;
  right: -100px;
}

.hero-shape-2 {
  width: 350px;
  height: 350px;
  background-color: var(--accent-sky);
  bottom: -80px;
  left: 10%;
}

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

.hero-content {
  max-width: 620px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: rgba(255, 183, 3, 0.2);
  border: 1px solid rgba(255, 183, 3, 0.4);
  color: var(--accent-yellow);
  font-size: 0.9rem;
  font-weight: 700;
  padding: 8px 18px;
  border-radius: var(--radius-full);
  margin-bottom: 20px;
  backdrop-filter: blur(6px);
}

.hero-badge i {
  color: var(--accent-yellow);
}

.hero-title {
  font-size: 3.4rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 18px;
  letter-spacing: -1px;
}

.hero-title .highlight-yellow {
  color: var(--accent-yellow);
  position: relative;
  display: inline-block;
}

.hero-subtitle {
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--accent-yellow-light);
  margin-bottom: 16px;
}

.hero-description {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.7;
  margin-bottom: 35px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero-trust-indicators {
  display: flex;
  align-items: center;
  gap: 25px;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
}

.trust-item i {
  color: var(--accent-yellow);
  font-size: 1.1rem;
}

.hero-image-wrapper {
  position: relative;
}

.hero-main-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.35);
  border: 4px solid rgba(255, 255, 255, 0.2);
}

.hero-main-card img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.hero-main-card:hover img {
  transform: scale(1.03);
}

.hero-floating-badge {
  position: absolute;
  background-color: var(--white);
  color: var(--text-dark);
  padding: 14px 20px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xl);
  display: flex;
  align-items: center;
  gap: 14px;
  z-index: 3;
  animation: float 4s ease-in-out infinite alternate;
}

.badge-top-left {
  top: -20px;
  left: -25px;
}

.badge-bottom-right {
  bottom: -20px;
  right: -20px;
  animation-delay: 2s;
}

.floating-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

.icon-yellow {
  background-color: var(--accent-yellow-light);
  color: #B45309;
}

.icon-blue {
  background-color: var(--accent-sky-light);
  color: var(--primary-navy);
}

.floating-text h4 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 2px;
}

.floating-text p {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 500;
}

@keyframes float {
  0% { transform: translateY(0); }
  100% { transform: translateY(-12px); }
}

/* ==========================================================================
   Inner Page Header / Banner
   ========================================================================== */
.page-banner {
  position: relative;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-navy) 100%);
  color: var(--white);
  padding: 60px 0;
  overflow: hidden;
  text-align: center;
}

.page-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.04' fill-rule='evenodd'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.6;
}

.page-banner-content {
  position: relative;
  z-index: 2;
}

.page-title {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}

.page-breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(6px);
  padding: 8px 20px;
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
}

.page-breadcrumb a {
  color: var(--accent-yellow);
}

.page-breadcrumb a:hover {
  text-decoration: underline;
}

.page-breadcrumb i {
  font-size: 0.75rem;
  opacity: 0.7;
}

/* ==========================================================================
   Statistics Section
   ========================================================================== */
.stats-section {
  background: linear-gradient(135deg, var(--primary-navy) 0%, var(--primary-dark) 100%);
  color: var(--white);
  padding: 60px 0;
  position: relative;
}

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

.stat-card {
  text-align: center;
  padding: 24px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(8px);
  transition: transform var(--transition-normal);
}

.stat-card:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--accent-yellow);
}

.stat-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(255, 183, 3, 0.15);
  color: var(--accent-yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto 16px auto;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-number .counter-plus {
  color: var(--accent-yellow);
}

.stat-label {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 600;
  letter-spacing: 0.3px;
}

/* ==========================================================================
   Feature & Service Cards (Why Choose Us, Academics, etc.)
   ========================================================================== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

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

.feature-card {
  background-color: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-navy), var(--accent-yellow));
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: transparent;
}

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

.feature-icon-box {
  width: 70px;
  height: 70px;
  border-radius: var(--radius-md);
  background: var(--accent-sky-light);
  color: var(--primary-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.9rem;
  margin-bottom: 22px;
  transition: all var(--transition-normal);
}

.feature-card:hover .feature-icon-box {
  background: var(--accent-yellow);
  color: var(--primary-dark);
  transform: scale(1.1) rotate(5deg);
}

.feature-title {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-dark);
}

.feature-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.feature-link {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--primary-navy);
}

.feature-link i {
  transition: transform var(--transition-fast);
}

.feature-link:hover i {
  transform: translateX(4px);
}

/* ==========================================================================
   Image & Content Showcase Grids
   ========================================================================== */
.two-col-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.two-col-grid.reverse {
  direction: rtl;
}

.two-col-grid.reverse > * {
  direction: ltr;
}

.showcase-image-wrap {
  position: relative;
}

.showcase-main-img {
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.showcase-badge-card {
  position: absolute;
  bottom: -25px;
  right: -20px;
  background: var(--white);
  padding: 20px 24px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  display: flex;
  align-items: center;
  gap: 16px;
  max-width: 280px;
}

.showcase-badge-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--accent-yellow-light);
  color: #B45309;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.showcase-badge-text h4 {
  font-size: 1rem;
  font-weight: 700;
}

.showcase-badge-text p {
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* List with checkmarks */
.custom-check-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 24px 0 32px 0;
}

.check-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.check-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: var(--success-light);
  color: var(--success);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  flex-shrink: 0;
  margin-top: 3px;
}

.check-text h5 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 2px;
}

.check-text p {
  font-size: 0.92rem;
  color: var(--text-muted);
}

/* ==========================================================================
   Faculty Cards
   ========================================================================== */
.faculty-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.faculty-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.faculty-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.faculty-img-box {
  position: relative;
  height: 280px;
  overflow: hidden;
  background-color: var(--bg-alt);
}

.faculty-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.faculty-card:hover .faculty-img-box img {
  transform: scale(1.06);
}

.faculty-subject-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(15, 52, 96, 0.85);
  backdrop-filter: blur(4px);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: var(--radius-full);
  letter-spacing: 0.5px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.faculty-info {
  padding: 24px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.faculty-name {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--primary-navy);
}

.faculty-designation {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--accent-orange);
  margin-bottom: 12px;
}

.faculty-qualification {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  color: var(--text-muted);
  background: var(--bg-light);
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  margin-bottom: 14px;
  width: fit-content;
}

.faculty-bio {
  font-size: 0.92rem;
  color: var(--text-body);
  line-height: 1.55;
  margin-bottom: 18px;
}

.faculty-footer {
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.faculty-exp {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
}

.faculty-exp i {
  color: var(--accent-yellow);
  margin-right: 4px;
}

/* Principal Profile Featured Box */
.principal-feature-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border-color);
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  margin-bottom: 60px;
}

.principal-img-box {
  height: 100%;
  min-height: 420px;
}

.principal-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.principal-content {
  padding: 45px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.principal-quote {
  font-size: 1.08rem;
  font-style: italic;
  color: var(--text-body);
  line-height: 1.7;
  position: relative;
  padding-left: 28px;
  margin: 20px 0 25px 0;
  border-left: 4px solid var(--accent-yellow);
}

/* ==========================================================================
   Activities & Event Cards
   ========================================================================== */
.activities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.activity-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
  transition: all var(--transition-normal);
}

.activity-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.activity-img-wrap {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.activity-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

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

.activity-badge {
  position: absolute;
  bottom: 14px;
  left: 14px;
  background: var(--accent-yellow);
  color: var(--primary-dark);
  font-weight: 700;
  font-size: 0.78rem;
  padding: 4px 12px;
  border-radius: var(--radius-full);
}

.activity-body {
  padding: 24px;
}

.activity-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--primary-navy);
}

.activity-desc {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 16px;
}

.activity-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.highlight-pill {
  font-size: 0.78rem;
  background: var(--bg-alt);
  color: var(--text-dark);
  padding: 3px 10px;
  border-radius: var(--radius-full);
  font-weight: 600;
}

/* ==========================================================================
   Achievements & Awards
   ========================================================================== */
.achievements-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.achievement-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 26px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
  position: relative;
  overflow: hidden;
  transition: all var(--transition-normal);
}

.achievement-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.trophy-badge {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-yellow), var(--accent-orange));
  color: var(--primary-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 20px;
  box-shadow: 0 6px 18px rgba(255, 183, 3, 0.4);
}

.achievement-year {
  display: inline-block;
  background: var(--accent-sky-light);
  color: var(--primary-navy);
  font-weight: 700;
  font-size: 0.8rem;
  padding: 3px 10px;
  border-radius: var(--radius-sm);
  margin-bottom: 10px;
}

.achievement-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-dark);
}

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

/* ==========================================================================
   Gallery Section & Lightbox
   ========================================================================== */
.gallery-filter-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 40px;
}

.gallery-filter-btn {
  padding: 10px 22px;
  border-radius: var(--radius-full);
  background: var(--bg-alt);
  color: var(--text-dark);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.gallery-filter-btn:hover {
  background: var(--border-color);
}

.gallery-filter-btn.active {
  background: var(--primary-navy);
  color: var(--white);
  box-shadow: var(--shadow-sm);
}

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

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  height: 280px;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(10, 34, 64, 0.92) 0%, rgba(15, 52, 96, 0.2) 70%);
  opacity: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  color: var(--white);
  transition: all var(--transition-normal);
}

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

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

.gallery-overlay-badge {
  background: var(--accent-yellow);
  color: var(--primary-dark);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: var(--radius-full);
  display: inline-block;
  width: fit-content;
  margin-bottom: 6px;
}

.gallery-overlay-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.gallery-overlay-zoom {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1rem;
}

/* Lightbox Modal */
.lightbox-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(6, 21, 39, 0.95);
  backdrop-filter: blur(10px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-normal);
  padding: 24px;
}

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

.lightbox-content {
  max-width: 900px;
  width: 100%;
  position: relative;
  text-align: center;
}

.lightbox-img {
  max-height: 75vh;
  max-width: 100%;
  border-radius: var(--radius-md);
  margin: 0 auto;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  border: 2px solid rgba(255, 255, 255, 0.15);
}

.lightbox-caption {
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 600;
  margin-top: 16px;
}

.lightbox-close {
  position: absolute;
  top: -50px;
  right: 0;
  color: var(--white);
  font-size: 2rem;
  cursor: pointer;
  background: none;
}

.lightbox-prev, .lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-fast);
}

.lightbox-prev:hover, .lightbox-next:hover {
  background: var(--accent-yellow);
  color: var(--primary-dark);
}

.lightbox-prev {
  left: -70px;
}

.lightbox-next {
  right: -70px;
}

/* ==========================================================================
   Admissions Process & Form
   ========================================================================== */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 50px;
}

.step-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
  position: relative;
  text-align: center;
  transition: all var(--transition-normal);
}

.step-card:hover {
  transform: translateY(-6px);
  border-color: var(--accent-yellow);
  box-shadow: var(--shadow-lg);
}

.step-number {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--primary-navy);
  color: var(--accent-yellow);
  font-size: 1.2rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px auto;
  border: 3px solid var(--accent-yellow-light);
}

.step-title {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 10px;
}

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

/* Form Styles */
.form-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 45px;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border-color);
}

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

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

.form-group.full-width {
  grid-column: span 2;
}

.form-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  gap: 6px;
}

.form-label .required {
  color: var(--danger);
}

.form-control {
  width: 100%;
  padding: 13px 18px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--border-color);
  background-color: var(--bg-light);
  color: var(--text-dark);
  font-size: 0.95rem;
  transition: all var(--transition-fast);
}

.form-control:focus {
  border-color: var(--primary-navy);
  background-color: var(--white);
  box-shadow: 0 0 0 4px var(--accent-sky-light);
}

.form-control.error {
  border-color: var(--danger);
  background-color: var(--danger-light);
}

.error-hint {
  font-size: 0.8rem;
  color: var(--danger);
  display: none;
}

.error-hint.show {
  display: block;
}

textarea.form-control {
  resize: vertical;
  min-height: 110px;
}

/* Accordion FAQs */
.accordion {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.accordion-item {
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.accordion-header {
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  background: var(--white);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--text-dark);
  transition: background-color var(--transition-fast);
}

.accordion-header:hover {
  background-color: var(--bg-light);
}

.accordion-header i {
  transition: transform var(--transition-fast);
  color: var(--primary-navy);
}

.accordion-item.active .accordion-header {
  background-color: var(--accent-sky-light);
  color: var(--primary-navy);
}

.accordion-item.active .accordion-header i {
  transform: rotate(180deg);
}

.accordion-body {
  padding: 0 24px;
  max-height: 0;
  overflow: hidden;
  transition: all var(--transition-normal);
  background: var(--white);
}

.accordion-item.active .accordion-body {
  padding: 16px 24px 24px 24px;
  max-height: 300px;
}

.accordion-body p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ==========================================================================
   Contact Section & Map
   ========================================================================== */
.contact-info-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: flex-start;
  gap: 20px;
  transition: transform var(--transition-normal);
}

.contact-info-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.contact-icon-box {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: var(--accent-sky-light);
  color: var(--primary-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.contact-details h4 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.contact-details p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.map-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  height: 380px;
  border: 1px solid var(--border-color);
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ==========================================================================
   Testimonials
   ========================================================================== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
  position: relative;
}

.testimonial-card::before {
  content: '“';
  position: absolute;
  top: 15px;
  right: 25px;
  font-size: 5rem;
  color: var(--accent-yellow-light);
  font-family: Georgia, serif;
  line-height: 1;
  pointer-events: none;
}

.stars {
  display: flex;
  gap: 4px;
  color: var(--accent-yellow);
  font-size: 0.95rem;
  margin-bottom: 16px;
}

.testimonial-quote {
  font-size: 0.95rem;
  color: var(--text-body);
  line-height: 1.65;
  margin-bottom: 24px;
  position: relative;
  z-index: 2;
}

.testimonial-author {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 14px;
}

.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.author-info h5 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 2px;
}

.author-info span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ==========================================================================
   Call To Action (CTA) Banner
   ========================================================================== */
.cta-banner {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-navy) 100%);
  color: var(--white);
  border-radius: var(--radius-xl);
  padding: 60px 50px;
  box-shadow: var(--shadow-xl);
  position: relative;
  overflow: hidden;
}

.cta-banner::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(255, 183, 3, 0.15);
  filter: blur(60px);
}

.cta-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  align-items: center;
  gap: 40px;
  position: relative;
  z-index: 2;
}

.cta-title {
  font-size: 2.3rem;
  color: var(--white);
  margin-bottom: 12px;
}

.cta-desc {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.85);
}

.cta-buttons {
  display: flex;
  justify-content: flex-end;
  gap: 16px;
  flex-wrap: wrap;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  background-color: var(--primary-deep);
  color: rgba(255, 255, 255, 0.8);
  padding-top: 80px;
  font-size: 0.92rem;
  border-top: 4px solid var(--accent-yellow);
}

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

.footer-brand h3 {
  color: var(--white);
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 16px;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.65;
  margin-bottom: 24px;
}

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

.footer-social-links a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

.footer-social-links a:hover {
  background: var(--accent-yellow);
  color: var(--primary-dark);
  transform: translateY(-3px);
}

.footer-col h4 {
  color: var(--white);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 22px;
  position: relative;
  padding-bottom: 10px;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 35px;
  height: 3px;
  background-color: var(--accent-yellow);
  border-radius: 2px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.75);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all var(--transition-fast);
}

.footer-links a:hover {
  color: var(--accent-yellow);
  transform: translateX(5px);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 16px;
  color: rgba(255, 255, 255, 0.75);
}

.footer-contact-item i {
  color: var(--accent-yellow);
  font-size: 1.1rem;
  margin-top: 4px;
}

.footer-newsletter p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 16px;
}

.newsletter-form {
  display: flex;
  gap: 8px;
}

.newsletter-input {
  flex-grow: 1;
  padding: 12px 16px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
  font-size: 0.9rem;
}

.newsletter-input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.newsletter-input:focus {
  border-color: var(--accent-yellow);
}

.footer-bottom {
  background-color: #030a13;
  padding: 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.85rem;
}

.footer-bottom-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  color: rgba(255, 255, 255, 0.6);
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-links a:hover {
  color: var(--accent-yellow);
}

/* Floating Utilities */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--primary-navy);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  box-shadow: var(--shadow-lg);
  border: 2px solid var(--accent-yellow);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-normal);
  z-index: 990;
}

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

.back-to-top:hover {
  background: var(--accent-yellow);
  color: var(--primary-dark);
  transform: translateY(-4px);
}

/* Success Toast Modal */
.toast-modal {
  position: fixed;
  top: 30px;
  right: 30px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  border-left: 5px solid var(--success);
  display: flex;
  align-items: center;
  gap: 16px;
  z-index: 2500;
  transform: translateX(120%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  max-width: 400px;
}

.toast-modal.show {
  transform: translateX(0);
}

.toast-icon {
  font-size: 1.8rem;
  color: var(--success);
}

.toast-message h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 2px;
}

.toast-message p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ==========================================================================
   Responsive Media Queries
   ========================================================================== */
@media (max-width: 1100px) {
  .hero-title {
    font-size: 2.8rem;
  }
  
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 992px) {
  .nav-menu, .nav-cta {
    display: none;
  }
  
  .mobile-nav-toggle {
    display: flex;
  }
  
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }
  
  .hero-content {
    max-width: 100%;
    margin: 0 auto;
  }
  
  .hero-actions {
    justify-content: center;
  }
  
  .hero-trust-indicators {
    justify-content: center;
  }
  
  .hero-image-wrapper {
    max-width: 520px;
    margin: 0 auto;
  }
  
  .two-col-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .principal-feature-card {
    grid-template-columns: 1fr;
  }
  
  .principal-img-box {
    min-height: 320px;
    max-height: 380px;
  }
  
  .faculty-grid, .activities-grid, .achievements-grid, .testimonials-grid, .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .cta-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .cta-buttons {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .section-padding {
    padding: 60px 0;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .hero-title {
    font-size: 2.3rem;
  }
  
  .hero-subtitle {
    font-size: 1.15rem;
  }
  
  .features-grid, .features-grid-3 {
    grid-template-columns: 1fr;
  }
  
  .faculty-grid, .activities-grid, .achievements-grid, .testimonials-grid, .gallery-grid {
    grid-template-columns: 1fr;
  }
  
  .steps-grid {
    grid-template-columns: 1fr;
  }
  
  .form-grid {
    grid-template-columns: 1fr;
  }
  
  .form-group.full-width {
    grid-column: span 1;
  }
  
  .form-card {
    padding: 30px 20px;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
  }
  
  .badge-top-left, .badge-bottom-right {
    position: static;
    margin: 10px 0;
  }
  
  .lightbox-prev {
    left: 10px;
  }
  
  .lightbox-next {
    right: 10px;
  }
}

@media (max-width: 480px) {
  .top-bar-content {
    justify-content: center;
    text-align: center;
  }
  
  .top-info-list {
    justify-content: center;
    gap: 10px;
  }
  
  .hero-title {
    font-size: 1.95rem;
  }
  
  .btn-lg {
    padding: 13px 26px;
    font-size: 0.95rem;
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
  }
}
