:root {
  /* Primary & Secondary */
  --primary-color: #0b1c3c; /* Deep Royal Blue */
  --primary-light: #152b59;
  --secondary-color: #d4af37; /* Elegant Gold */
  --secondary-hover: #b8972e;
  
  /* Supporting Colors */
  --white: #ffffff;
  --bg-light: #f8fbff; /* Very Light Blue */
  --bg-gray: #f4f6f9; /* Soft Gray */
  --text-dark: #121c2d; /* Dark Navy Text */
  --text-body: #4a5568;
  --accent-gold: #fdf5e6; /* Light Gold Accent */
  
  /* Typography */
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;
  --font-btn: 'Poppins', sans-serif;
  
  /* Spacing */
  --section-padding: 100px 0;
  --spacing-sm: 8px;
  --spacing-md: 16px;
  --spacing-lg: 32px;
  --spacing-xl: 64px;
  
  /* Borders & Shadows */
  --border-radius-sm: 4px;
  --border-radius: 12px;
  --border-radius-lg: 24px;
  --shadow-sm: 0 4px 6px rgba(11, 28, 60, 0.05);
  --shadow-md: 0 10px 30px rgba(11, 28, 60, 0.08);
  --shadow-lg: 0 20px 40px rgba(11, 28, 60, 0.12);
  --glass-bg: rgba(255, 255, 255, 0.85);
  
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  --transition-slow: 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

html {
  scroll-behavior: smooth;
}

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

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

h2 { font-size: 2.75rem; margin-bottom: var(--spacing-lg); }
h3 { font-size: 1.75rem; margin-bottom: var(--spacing-md); }
h4 { font-size: 1.25rem; font-family: var(--font-btn); font-weight: 600; margin-bottom: var(--spacing-sm); }
p { margin-bottom: var(--spacing-md); }

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

ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }

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

.section { padding: var(--section-padding); }
.bg-light { background-color: var(--bg-light); }
.bg-gray { background-color: var(--bg-gray); }
.bg-primary { background-color: var(--primary-color); color: var(--white); }
.bg-primary h2, .bg-primary h3, .bg-primary h4, .bg-primary p { color: var(--white); }
.text-center { text-align: center; }
.mt-2 { margin-top: 10px; }
.mt-3 { margin-top: 15px; }
.mt-4 { margin-top: 20px; }
.mt-5 { margin-top: 30px; }
.position-relative { position: relative; }

.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
}
.section-header h2 {
  position: relative;
  display: inline-block;
  padding-bottom: 15px;
}
.section-header h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: var(--secondary-color);
  border-radius: 2px;
}
.section-header p {
  color: var(--text-body);
  font-size: 1.15rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border-radius: var(--border-radius-sm);
  font-family: var(--font-btn);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition-normal);
  gap: 8px;
}
.btn-sm { padding: 10px 24px; font-size: 0.9rem; }

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

.btn-outline-primary {
  background-color: transparent;
  color: var(--primary-color);
  border-color: var(--primary-color);
}
.btn-outline-primary:hover {
  background-color: var(--primary-color);
  color: var(--white);
}

.btn-outline {
  background-color: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-outline:hover {
  background-color: var(--white);
  color: var(--primary-color);
}

.btn-outline-white {
  background-color: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-outline-white:hover {
  background-color: var(--white);
  color: var(--primary-color);
}

/* Animations */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Grid System */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.split-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }

/* Focus States for Accessibility */
:focus-visible { outline: 3px solid var(--secondary-color); outline-offset: 2px; }

/* -------------------------------------
   HEADER & NAVIGATION
-------------------------------------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: all var(--transition-normal);
}
.site-header.scrolled {
  box-shadow: var(--shadow-md);
  background-color: var(--white);
}
.site-header.scrolled .top-bar { display: none; }

.top-bar {
  background-color: var(--primary-color);
  color: var(--white);
  font-size: 0.85rem;
  padding: 8px 0;
  transition: all var(--transition-normal);
}
.top-bar a { color: var(--white); }
.top-bar a:hover { color: var(--secondary-color); }
.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.top-contact { display: flex; gap: 20px; }
.top-contact i { color: var(--secondary-color); margin-right: 5px; }
.top-announcement { font-weight: 500; color: var(--secondary-color); }
.top-social { display: flex; gap: 15px; }

.main-nav {
  background-color: var(--glass-bg);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 15px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  transition: all var(--transition-normal);
}
.nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo a {
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo-mark {
  background-color: var(--primary-color);
  color: var(--secondary-color);
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  border-radius: var(--border-radius-sm);
}
.logo-text h1 {
  font-size: 1.4rem;
  margin: 0;
  line-height: 1;
}
.logo-text span {
  font-size: 0.75rem;
  font-family: var(--font-btn);
  letter-spacing: 1px;
  color: var(--secondary-color);
  text-transform: uppercase;
}

.nav-menu {
  display: flex;
  gap: 30px;
}
.nav-menu > li > a {
  font-family: var(--font-btn);
  font-weight: 500;
  color: var(--text-dark);
  padding: 10px 0;
  position: relative;
  display: flex;
  align-items: center;
  gap: 5px;
}
.nav-menu > li > a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--secondary-color);
  transition: width var(--transition-normal);
}
.nav-menu > li > a:hover::after, .nav-menu > li > a.active::after {
  width: 100%;
}
.nav-menu > li > a:hover { color: var(--primary-color); }

/* Dropdown */
.dropdown { position: relative; }
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  min-width: 220px;
  box-shadow: var(--shadow-md);
  border-radius: var(--border-radius-sm);
  padding: 10px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all var(--transition-normal);
  border-top: 3px solid var(--secondary-color);
}
.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown-menu li a {
  display: block;
  padding: 10px 20px;
  color: var(--text-body);
  font-family: var(--font-btn);
  font-size: 0.95rem;
  border-bottom: 1px solid var(--bg-gray);
}
.dropdown-menu li:last-child a { border-bottom: none; }
.dropdown-menu li a:hover {
  background: var(--bg-light);
  color: var(--primary-color);
  padding-left: 25px;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 15px;
}
.search-btn {
  background: none;
  border: none;
  font-size: 1.2rem;
  color: var(--text-dark);
  cursor: pointer;
  padding: 5px;
}
.search-btn:hover { color: var(--primary-color); }

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}
.mobile-menu-btn .bar {
  display: block;
  width: 25px;
  height: 2px;
  background-color: var(--text-dark);
  margin: 5px 0;
  transition: all var(--transition-fast);
}
.mobile-drawer {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: var(--white);
  z-index: 999;
  padding: 80px 24px 24px;
  transform: translateX(-100%);
  transition: transform var(--transition-normal);
  overflow-y: auto;
}
.mobile-drawer.active { transform: translateX(0); }
.mobile-drawer ul li { margin-bottom: 15px; border-bottom: 1px solid var(--bg-gray); padding-bottom: 15px; }
.mobile-drawer ul li a { font-size: 1.2rem; font-weight: 600; color: var(--primary-color); display: block; }
.mobile-drawer .dropdown-menu { position: static; box-shadow: none; border-top: none; opacity: 1; visibility: visible; transform: none; display: none; padding-left: 15px; }
.mobile-drawer .dropdown.active .dropdown-menu { display: block; }

/* -------------------------------------
   HERO SECTION
-------------------------------------- */
.hero-slider {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  background-color: var(--primary-color);
}
.slider-container { width: 100%; height: 100%; position: relative; }
.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  display: flex;
  align-items: center;
  z-index: 1;
}
.slide.active { opacity: 1; z-index: 2; }
.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(11,28,60,0.85) 0%, rgba(11,28,60,0.4) 100%);
}
.slide-content {
  position: relative;
  z-index: 3;
  max-width: 800px;
  color: var(--white);
}
.slide-title {
  font-size: 4.5rem;
  color: var(--white);
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease 0.3s;
}
.slide-subtitle {
  font-size: 1.4rem;
  margin-bottom: 40px;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease 0.5s;
  max-width: 600px;
}
.slide-actions {
  display: flex;
  gap: 20px;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease 0.7s;
}
.slide.active .slide-title,
.slide.active .slide-subtitle,
.slide.active .slide-actions {
  opacity: 1;
  transform: translateY(0);
}

.slider-control {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--white);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  z-index: 10;
  transition: all var(--transition-normal);
}
.slider-control:hover { background: var(--secondary-color); color: var(--primary-color); }
.slider-control.prev { left: 30px; }
.slider-control.next { right: 30px; }

.slider-dots {
  position: absolute;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 10;
}
.slider-dots .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  border: none;
  cursor: pointer;
  transition: all var(--transition-fast);
}
.slider-dots .dot.active {
  background: var(--secondary-color);
  transform: scale(1.3);
}

.hero-shape {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  z-index: 5;
  line-height: 0;
}
.hero-shape svg { width: 100%; height: auto; }

/* -------------------------------------
   ADMISSION STRIP
-------------------------------------- */
.admission-strip {
  background-color: var(--secondary-color);
  padding: 30px 0;
  margin-top: -20px;
  position: relative;
  z-index: 10;
  box-shadow: var(--shadow-md);
}
.strip-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}
.strip-text h3 {
  color: var(--primary-color);
  margin-bottom: 5px;
  font-size: 1.8rem;
}
.strip-text p {
  color: var(--primary-color);
  margin: 0;
  font-weight: 500;
  font-size: 1.1rem;
}
.strip-buttons { display: flex; gap: 15px; }
.strip-buttons .btn-primary { background: var(--primary-color); color: var(--white); }
.strip-buttons .btn-primary:hover { background: var(--primary-light); }
.strip-buttons .btn-outline-white { border-color: var(--primary-color); color: var(--primary-color); }
.strip-buttons .btn-outline-white:hover { background: var(--primary-color); color: var(--white); }

/* -------------------------------------
   QUICK LINKS
-------------------------------------- */
.quick-card {
  background: var(--white);
  padding: 30px 20px;
  border-radius: var(--border-radius);
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
  border-bottom: 4px solid transparent;
  display: block;
}
.quick-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-md);
  border-color: var(--secondary-color);
}
.qc-icon {
  width: 60px;
  height: 60px;
  background: var(--bg-light);
  color: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin: 0 auto 20px;
  transition: all var(--transition-normal);
}
.quick-card:hover .qc-icon {
  background: var(--primary-color);
  color: var(--secondary-color);
  transform: rotateY(180deg);
}
.quick-card h4 { color: var(--primary-color); margin-bottom: 8px; }
.quick-card p { color: var(--text-body); font-size: 0.9rem; margin-bottom: 15px; }
.qc-arrow { color: var(--secondary-color); transition: transform var(--transition-fast); }
.quick-card:hover .qc-arrow { transform: translateX(5px); }

/* -------------------------------------
   WELCOME & ABOUT
-------------------------------------- */
.image-collage {
  position: relative;
  height: 500px;
}
.img-main {
  width: 80%;
  height: 80%;
  object-fit: cover;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-lg);
}
.img-sub {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 50%;
  height: 50%;
  object-fit: cover;
  border-radius: var(--border-radius);
  border: 10px solid var(--white);
  box-shadow: var(--shadow-md);
}
.experience-badge {
  position: absolute;
  top: 20px;
  right: 10%;
  background: var(--primary-color);
  color: var(--white);
  width: 120px;
  height: 120px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 5px solid var(--white);
  box-shadow: var(--shadow-sm);
  animation: pulse 3s infinite;
}
.experience-badge .num { font-size: 2rem; font-weight: 700; color: var(--secondary-color); line-height: 1; }
.experience-badge .text { font-size: 0.8rem; text-align: center; line-height: 1.2; margin-top: 5px; }

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

.section-subtitle {
  color: var(--secondary-color);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.9rem;
}
.lead-text {
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--primary-color);
  margin-bottom: 20px;
}
.features-list ul li {
  margin-bottom: 12px;
  font-weight: 500;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  gap: 10px;
}
.features-list ul li i { color: var(--secondary-color); font-size: 1.2rem; }

/* -------------------------------------
   WHY CHOOSE US
-------------------------------------- */
.feature-card {
  background: var(--white);
  padding: 40px 30px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: all var(--transition-normal);
  border: 1px solid rgba(0,0,0,0.02);
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: var(--primary-color);
  transition: height var(--transition-normal);
  z-index: -1;
}
.feature-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-md); }
.feature-card:hover::before { height: 100%; }
.feature-card:hover h3, .feature-card:hover p { color: var(--white); }

.icon-wrapper {
  width: 70px;
  height: 70px;
  background: var(--accent-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--secondary-hover);
  margin: 0 auto 20px;
  transition: all var(--transition-normal);
}
.feature-card:hover .icon-wrapper { background: var(--secondary-color); color: var(--primary-color); transform: scale(1.1); }

/* -------------------------------------
   COUNTERS
-------------------------------------- */
.counter-section {
  background-image: url('https://images.unsplash.com/photo-1523050854058-8df90110c9f1?auto=format&fit=crop&w=1920&q=80');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
  color: var(--white);
}
.counter-overlay {
  position: absolute;
  inset: 0;
  background: rgba(11, 28, 60, 0.9);
}
.counter-box { text-align: center; }
.counter-icon { font-size: 3rem; color: var(--secondary-color); margin-bottom: 15px; }
.counter-num { font-size: 3.5rem; font-family: var(--font-heading); font-weight: 700; line-height: 1; margin-bottom: 10px; }
.counter-num::after { content: '+'; color: var(--secondary-color); }
.counter-label { font-size: 1.1rem; font-weight: 500; text-transform: uppercase; letter-spacing: 1px; color: rgba(255,255,255,0.8); }

/* -------------------------------------
   ACADEMICS
-------------------------------------- */
.academic-card {
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  background: var(--white);
  transition: all var(--transition-normal);
}
.academic-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-md); }
.ac-image { position: relative; height: 250px; overflow: hidden; }
.ac-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.academic-card:hover .ac-image img { transform: scale(1.1); }
.ac-content { padding: 30px; }
.ac-content h3 { color: var(--primary-color); }

/* -------------------------------------
   TOPPERS
-------------------------------------- */
.topper-card {
  background: var(--white);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: all var(--transition-normal);
}
.topper-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-md); }
.topper-img { position: relative; overflow: hidden; height: 320px; }
.topper-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.topper-card:hover .topper-img img { transform: scale(1.05); }
.topper-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--secondary-color);
  color: var(--primary-color);
  font-family: var(--font-btn);
  font-weight: 700;
  font-size: 1.1rem;
  padding: 8px 12px;
  border-radius: var(--border-radius-sm);
  box-shadow: var(--shadow-sm);
}
.topper-info { padding: 25px 20px; border-top: 3px solid var(--secondary-color); }
.topper-info h4 { color: var(--primary-color); margin-bottom: 5px; }
.topper-info span { color: var(--text-body); font-size: 0.95rem; font-weight: 500; }

/* -------------------------------------
   LEADERSHIP MESSAGES
-------------------------------------- */
.message-card {
  display: flex;
  background: var(--white);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.message-card.reverse { flex-direction: row-reverse; }
.msg-image { width: 40%; }
.msg-image img { width: 100%; height: 100%; object-fit: cover; }
.msg-content { width: 60%; padding: 50px; position: relative; }
.quote-icon { position: absolute; top: 40px; right: 50px; font-size: 4rem; color: var(--bg-gray); opacity: 0.5; z-index: 0; }
.msg-text { font-size: 1.15rem; font-style: italic; color: var(--text-dark); position: relative; z-index: 1; margin-bottom: 30px; }
.msg-author h4 { color: var(--primary-color); margin-bottom: 5px; }
.msg-author span { color: var(--secondary-color); font-weight: 500; font-family: var(--font-btn); }
.signature { font-family: 'Playfair Display', serif; font-size: 2rem; color: var(--primary-color); margin-top: 15px; opacity: 0.8; }

/* -------------------------------------
   FACULTY
-------------------------------------- */
.faculty-card {
  background: var(--white);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: all var(--transition-normal);
}
.faculty-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-md); }
.faculty-img { position: relative; overflow: hidden; height: 320px; }
.faculty-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.faculty-card:hover .faculty-img img { transform: scale(1.05); }
.faculty-social {
  position: absolute;
  bottom: -50px;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 10px;
  background: rgba(11,28,60,0.8);
  padding: 15px 0;
  transition: bottom var(--transition-normal);
}
.faculty-card:hover .faculty-social { bottom: 0; }
.faculty-social a {
  width: 35px; height: 35px; background: var(--white); color: var(--primary-color); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; transition: all var(--transition-fast);
}
.faculty-social a:hover { background: var(--secondary-color); color: var(--white); }
.faculty-info { padding: 25px 20px; border-top: 3px solid var(--secondary-color); }
.faculty-info h4 { color: var(--primary-color); margin-bottom: 5px; }
.faculty-info span { color: var(--text-body); font-size: 0.9rem; }

/* -------------------------------------
   INFRASTRUCTURE
-------------------------------------- */
.infra-grid { gap: 20px; }
.infra-card {
  position: relative;
  border-radius: var(--border-radius);
  overflow: hidden;
  height: 300px;
}
.infra-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.infra-card:hover img { transform: scale(1.1); }
.infra-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11,28,60,0.9) 0%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px;
  transition: all var(--transition-normal);
}
.infra-overlay h4 { color: var(--secondary-color); margin-bottom: 5px; transform: translateY(20px); transition: transform var(--transition-normal); }
.infra-overlay p { color: var(--white); opacity: 0; transform: translateY(20px); transition: all var(--transition-normal); margin: 0; }
.infra-card:hover .infra-overlay h4 { transform: translateY(0); }
.infra-card:hover .infra-overlay p { opacity: 1; transform: translateY(0); }

/* -------------------------------------
   ACHIEVEMENTS
-------------------------------------- */
.achievement-card {
  background: var(--white);
  padding: 40px 30px;
  border-radius: var(--border-radius);
  text-align: center;
  box-shadow: var(--shadow-sm);
  border-top: 4px solid var(--secondary-color);
  transition: transform var(--transition-normal);
}
.achievement-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.ach-icon { width: 80px; height: 80px; background: var(--bg-light); color: var(--primary-color); border-radius: 50%; font-size: 2rem; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; }
.achievement-card h4 { color: var(--primary-color); }

/* -------------------------------------
   SERVICES
-------------------------------------- */
.service-card {
  text-align: center;
  padding: 40px 30px;
  border-radius: var(--border-radius);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
}
.service-card:hover { box-shadow: var(--shadow-md); transform: translateY(-5px); }
.service-icon { font-size: 2.5rem; color: var(--secondary-color); margin-bottom: 20px; }

/* -------------------------------------
   NOTICES & EVENTS
-------------------------------------- */
.updates-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 30px; border-bottom: 2px solid var(--bg-gray); padding-bottom: 15px; }
.updates-header h3 { margin: 0; color: var(--primary-color); }
.updates-header h3 i { color: var(--secondary-color); margin-right: 10px; }
.view-all { font-weight: 600; text-transform: uppercase; font-size: 0.85rem; letter-spacing: 1px; }

.notice-list, .event-list { display: flex; flex-direction: column; gap: 20px; }
.notice-item { display: flex; gap: 20px; background: var(--white); padding: 20px; border-radius: var(--border-radius); box-shadow: var(--shadow-sm); transition: transform var(--transition-fast); }
.notice-item:hover { transform: translateX(5px); border-left: 4px solid var(--secondary-color); }
.notice-date { background: var(--primary-color); color: var(--white); width: 70px; height: 70px; border-radius: var(--border-radius-sm); display: flex; flex-direction: column; align-items: center; justify-content: center; flex-shrink: 0; }
.notice-date .day { font-size: 1.5rem; font-weight: 700; line-height: 1; }
.notice-date .month { font-size: 0.8rem; text-transform: uppercase; font-weight: 500; }
.notice-badge { display: inline-block; padding: 4px 10px; background: var(--bg-light); color: var(--primary-color); font-size: 0.75rem; border-radius: 20px; font-weight: 600; margin-bottom: 10px; }
.notice-badge.bg-gold { background: var(--accent-gold); color: var(--secondary-hover); }
.notice-content h4 { font-size: 1.1rem; margin-bottom: 10px; }
.notice-link { font-size: 0.9rem; font-weight: 600; display: inline-flex; align-items: center; gap: 5px; }

.event-card { display: flex; background: var(--white); border-radius: var(--border-radius); overflow: hidden; box-shadow: var(--shadow-sm); transition: transform var(--transition-fast); }
.event-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.event-img { width: 120px; position: relative; flex-shrink: 0; }
.event-img img { width: 100%; height: 100%; object-fit: cover; }
.event-date-badge { position: absolute; top: 10px; left: 10px; background: var(--secondary-color); color: var(--primary-color); padding: 5px 10px; border-radius: var(--border-radius-sm); font-size: 0.8rem; font-weight: 700; text-align: center; }
.event-details { padding: 20px; }
.event-details h4 { font-size: 1.1rem; margin-bottom: 5px; }
.event-details p { font-size: 0.9rem; margin-bottom: 0; color: var(--text-body); }
.event-details p i { color: var(--secondary-color); margin-right: 5px; }

/* -------------------------------------
   FEES & FINANCIAL
-------------------------------------- */
.finance-card { background: var(--white); padding: 50px 40px; border-radius: var(--border-radius); box-shadow: var(--shadow-md); text-align: center; border-top: 4px solid var(--primary-color); }
.finance-card.highlight { background: var(--primary-light); color: var(--white); border-top-color: var(--secondary-color); }
.finance-card.highlight h3, .finance-card.highlight p { color: var(--white); }
.finance-icon { font-size: 3rem; color: var(--secondary-color); margin-bottom: 20px; }
.finance-list { text-align: left; margin: 20px 0 30px; display: inline-block; }
.finance-list li { margin-bottom: 10px; font-weight: 500; }
.finance-list li i { color: var(--secondary-color); margin-right: 10px; }

/* -------------------------------------
   GALLERY
-------------------------------------- */
.gallery-tabs { display: flex; justify-content: center; gap: 15px; margin-bottom: 40px; flex-wrap: wrap; }
.tab-btn { padding: 8px 24px; background: var(--white); border: 1px solid var(--bg-gray); border-radius: 30px; font-family: var(--font-btn); font-weight: 500; color: var(--text-body); cursor: pointer; transition: all var(--transition-fast); }
.tab-btn.active, .tab-btn:hover { background: var(--primary-color); color: var(--white); border-color: var(--primary-color); }

.photo-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 20px; }
.gallery-item { position: relative; border-radius: var(--border-radius); overflow: hidden; height: 250px; display: block; cursor: pointer; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.gallery-item:hover img { transform: scale(1.1); }
.item-overlay { position: absolute; inset: 0; background: rgba(11,28,60,0.6); display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity var(--transition-normal); }
.item-overlay i { font-size: 3rem; color: var(--white); transform: scale(0.5); transition: transform var(--transition-normal); }
.gallery-item:hover .item-overlay { opacity: 1; }
.gallery-item:hover .item-overlay i { transform: scale(1); }

.video-overlay i { color: var(--secondary-color); }
.video-title { position: absolute; bottom: 0; left: 0; width: 100%; padding: 15px; background: linear-gradient(to top, rgba(0,0,0,0.8), transparent); color: var(--white); font-weight: 600; text-align: center; }

/* Lightbox */
.lightbox-modal { position: fixed; inset: 0; background: rgba(0,0,0,0.9); z-index: 2000; display: flex; align-items: center; justify-content: center; opacity: 0; visibility: hidden; transition: all var(--transition-normal); }
.lightbox-modal.active { opacity: 1; visibility: visible; }
.lightbox-close { position: absolute; top: 30px; right: 40px; background: none; border: none; color: var(--white); font-size: 3rem; cursor: pointer; transition: color var(--transition-fast); }
.lightbox-close:hover { color: var(--secondary-color); }
.lightbox-content { max-width: 90%; max-height: 90vh; }
.lightbox-content img { max-height: 90vh; border-radius: var(--border-radius-sm); }
.video-container { width: 90%; max-width: 1000px; height: 60vh; background: #000; }

/* -------------------------------------
   STUDENT CORNER & TESTIMONIALS
-------------------------------------- */
.sc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 30px; }
.sc-card { background: var(--bg-light); padding: 30px 20px; border-radius: var(--border-radius); text-align: center; border: 1px solid var(--bg-gray); transition: all var(--transition-normal); }
.sc-card i { font-size: 2rem; color: var(--primary-color); margin-bottom: 15px; }
.sc-card span { display: block; font-weight: 600; color: var(--text-dark); }
.sc-card:hover { background: var(--primary-color); border-color: var(--primary-color); transform: translateY(-5px); }
.sc-card:hover i, .sc-card:hover span { color: var(--white); }

.testimonial-slider { background: var(--primary-color); padding: 50px; border-radius: var(--border-radius-lg); color: var(--white); position: relative; margin-top: 30px; box-shadow: var(--shadow-md); }
.rating { color: var(--secondary-color); margin-bottom: 20px; }
.testi-text { font-size: 1.2rem; font-style: italic; line-height: 1.8; margin-bottom: 30px; color: rgba(255,255,255,0.9); }
.testi-author { display: flex; align-items: center; gap: 15px; }
.testi-avatar { font-size: 3rem; color: var(--secondary-color); }
.testi-info h4 { color: var(--white); margin-bottom: 2px; }
.testi-info span { color: rgba(255,255,255,0.7); font-size: 0.9rem; }

/* -------------------------------------
   FAQ ACCORDION
-------------------------------------- */
.faq-accordion { max-width: 800px; margin: 0 auto; }
.faq-item { background: var(--white); border-radius: var(--border-radius); margin-bottom: 15px; box-shadow: var(--shadow-sm); overflow: hidden; }
.faq-question { width: 100%; padding: 25px 30px; display: flex; justify-content: space-between; align-items: center; background: none; border: none; font-family: var(--font-heading); font-size: 1.2rem; font-weight: 600; color: var(--primary-color); cursor: pointer; text-align: left; transition: background var(--transition-fast); }
.faq-question:hover { background: var(--bg-light); }
.faq-question i { color: var(--secondary-color); transition: transform var(--transition-normal); }
.faq-question[aria-expanded="true"] i { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height var(--transition-slow); padding: 0 30px; }
.faq-item.active .faq-answer { max-height: 300px; padding-bottom: 25px; }

/* -------------------------------------
   CONTACT
-------------------------------------- */
.contact-list { margin-top: 30px; }
.contact-list li { display: flex; gap: 20px; margin-bottom: 30px; }
.c-icon { width: 50px; height: 50px; background: var(--bg-light); color: var(--primary-color); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; flex-shrink: 0; }
.c-text h4 { margin-bottom: 5px; }
.c-text p { margin: 0; color: var(--text-body); }
.map-placeholder { position: relative; height: 500px; border-radius: var(--border-radius); overflow: hidden; box-shadow: var(--shadow-sm); }
.map-overlay-btn { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; background: rgba(0,0,0,0.3); opacity: 0; transition: opacity var(--transition-normal); }
.map-placeholder:hover .map-overlay-btn { opacity: 1; }

/* -------------------------------------
   FOOTER
-------------------------------------- */
.site-footer { background-color: var(--primary-color); color: rgba(255,255,255,0.7); font-size: 0.95rem; }
.footer-top { padding: 80px 0 50px; }
.footer-logo { display: flex; align-items: center; gap: 15px; margin-bottom: 20px; }
.footer-logo .logo-mark { background: var(--secondary-color); color: var(--primary-color); }
.footer-logo h2 { color: var(--white); margin: 0; }
.footer-desc { margin-bottom: 25px; }
.footer-social { display: flex; gap: 15px; }
.footer-social a { width: 40px; height: 40px; background: rgba(255,255,255,0.1); color: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: all var(--transition-fast); }
.footer-social a:hover { background: var(--secondary-color); color: var(--primary-color); transform: translateY(-3px); }

.footer-col h3 { color: var(--white); font-size: 1.3rem; margin-bottom: 25px; position: relative; padding-bottom: 10px; }
.footer-col h3::after { content: ''; position: absolute; bottom: 0; left: 0; width: 40px; height: 2px; background: var(--secondary-color); }
.footer-links li { margin-bottom: 15px; }
.footer-links a { color: rgba(255,255,255,0.7); display: flex; align-items: center; gap: 10px; transition: all var(--transition-fast); }
.footer-links a i { font-size: 0.8rem; color: var(--secondary-color); transition: transform var(--transition-fast); }
.footer-links a:hover { color: var(--secondary-color); padding-left: 5px; }
.footer-links a:hover i { transform: translateX(5px); }

.footer-contact li { display: flex; gap: 15px; margin-bottom: 20px; }
.footer-contact i { color: var(--secondary-color); font-size: 1.2rem; margin-top: 3px; }

.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 25px 0; }
.fb-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 20px; }
.fb-links { display: flex; gap: 20px; }
.fb-links a { color: rgba(255,255,255,0.7); font-size: 0.9rem; }
.fb-links a:hover { color: var(--secondary-color); }
.copyright { margin: 0; }

.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--secondary-color);
  color: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all var(--transition-normal);
  z-index: 1000;
}
.back-to-top.active { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { background: var(--primary-color); color: var(--white); transform: translateY(-5px); }

/* ==========================================================================
   ABOUT US PAGE STYLES
   ========================================================================== */

/* 1. Page Hero */
.page-hero {
  position: relative;
  padding: 180px 0 120px;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: var(--white);
  text-align: center;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(11,28,60,0.9), rgba(11,28,60,0.7));
}
.z-index-1 { z-index: 1; }
.page-title {
  font-size: 3.5rem;
  color: var(--white);
  margin-bottom: 15px;
}
.page-tagline {
  font-size: 1.25rem;
  color: rgba(255,255,255,0.9);
  margin-bottom: 30px;
}
.breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(5px);
  padding: 10px 25px;
  border-radius: 30px;
  font-size: 0.95rem;
  border: 1px solid rgba(255,255,255,0.2);
}
.breadcrumb a { color: var(--secondary-color); font-weight: 500; }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb i { font-size: 0.8rem; opacity: 0.7; }
.breadcrumb span { color: var(--white); }

/* 2. Welcome Intro */
.intro-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-lg);
}

/* 3. Timeline (History) */
.timeline {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}
.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 30px;
  height: 100%;
  width: 2px;
  background: var(--secondary-color);
}
.timeline-item {
  position: relative;
  padding-left: 80px;
  margin-bottom: 40px;
}
.timeline-item:last-child { margin-bottom: 0; }
.timeline-icon {
  position: absolute;
  left: 10px;
  top: 0;
  width: 42px;
  height: 42px;
  background: var(--primary-color);
  color: var(--secondary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: 0 0 0 4px var(--bg-light);
  z-index: 2;
}
.timeline-content {
  background: var(--white);
  padding: 25px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
  position: relative;
  border-left: 4px solid var(--secondary-color);
}
.timeline-content::before {
  content: '';
  position: absolute;
  left: -10px;
  top: 15px;
  border-style: solid;
  border-width: 10px 10px 10px 0;
  border-color: transparent var(--secondary-color) transparent transparent;
}
.timeline-year { color: var(--secondary-color); font-size: 1.5rem; margin-bottom: 5px; }
.timeline-content h5 { color: var(--primary-color); font-size: 1.2rem; margin-bottom: 10px; }
.timeline-content p { margin: 0; font-size: 0.95rem; }

/* 4. Vision & Mission */
.vm-card {
  background: var(--white);
  padding: 50px 40px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: all var(--transition-normal);
  border-bottom: 4px solid var(--secondary-color);
}
.vm-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-md); }
.vm-icon {
  width: 80px;
  height: 80px;
  background: var(--bg-light);
  color: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  margin: 0 auto 25px;
  transition: all var(--transition-normal);
}
.vm-card:hover .vm-icon { background: var(--primary-color); color: var(--secondary-color); }
.vm-card h2 { color: var(--primary-color); margin-bottom: 20px; font-size: 2rem; }
.vm-card p { font-size: 1.1rem; line-height: 1.8; margin: 0; }

/* 5. Core Values */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 30px;
}
.value-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 30px 20px;
  border-radius: var(--border-radius);
  text-align: center;
  transition: all var(--transition-normal);
  backdrop-filter: blur(5px);
}
.value-card:hover { background: rgba(255,255,255,0.1); transform: translateY(-5px); border-color: var(--secondary-color); }
.val-icon {
  width: 60px;
  height: 60px;
  background: rgba(255,255,255,0.1);
  color: var(--secondary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin: 0 auto 20px;
}
.value-card h4 { color: var(--white); margin-bottom: 10px; }
.value-card p { color: rgba(255,255,255,0.7); font-size: 0.9rem; margin: 0; }

/* 6. Philosophy */
.philosophy-grid { gap: 40px; }
.phil-card {
  display: flex;
  gap: 20px;
  background: var(--white);
  padding: 30px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
}
.phil-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-left: 4px solid var(--secondary-color); }
.phil-icon {
  width: 60px;
  height: 60px;
  background: var(--bg-light);
  color: var(--primary-color);
  border-radius: var(--border-radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  flex-shrink: 0;
}
.phil-text h3 { color: var(--primary-color); font-size: 1.3rem; margin-bottom: 10px; }
.phil-text p { margin: 0; font-size: 0.95rem; }

/* 7. Leadership Cards */
.leader-card {
  background: var(--white);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-normal);
}
.leader-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-lg); }
.leader-img { height: 400px; overflow: hidden; }
.leader-img img { width: 100%; height: 100%; object-fit: cover; object-position: top; transition: transform 0.6s ease; }
.leader-card:hover .leader-img img { transform: scale(1.05); }
.leader-info { padding: 40px; text-align: center; }
.leader-info h3 { color: var(--primary-color); margin-bottom: 5px; }
.designation { display: inline-block; color: var(--secondary-color); font-family: var(--font-btn); font-weight: 600; margin-bottom: 15px; font-size: 1.1rem; }
.leader-info p { margin-bottom: 25px; color: var(--text-body); }

/* ==========================================================================
   ACADEMICS PAGE STYLES
   ========================================================================== */

/* Programs */
.programs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}
.program-card {
  background: var(--white);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
  padding: 40px 30px;
  position: relative;
  overflow: hidden;
  transition: all var(--transition-normal);
  border-bottom: 4px solid var(--primary-color);
}
.program-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-md); border-color: var(--secondary-color); }
.prog-icon {
  width: 70px;
  height: 70px;
  background: var(--bg-light);
  color: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin-bottom: 25px;
  transition: all var(--transition-normal);
}
.program-card:hover .prog-icon { background: var(--primary-color); color: var(--secondary-color); }
.prog-content h3 { color: var(--primary-color); font-size: 1.5rem; margin-bottom: 5px; }
.prog-classes { display: inline-block; background: var(--bg-gray); padding: 4px 12px; border-radius: 20px; font-size: 0.85rem; font-weight: 600; color: var(--text-dark); margin-bottom: 15px; }
.prog-desc { font-size: 1rem; color: var(--text-dark); font-weight: 500; margin-bottom: 20px; }
.prog-details { list-style: none; padding: 0; margin: 0; }
.prog-details li { margin-bottom: 12px; font-size: 0.95rem; color: var(--text-body); padding-left: 20px; position: relative; }
.prog-details li::before { content: '\f105'; font-family: 'Font Awesome 6 Free'; font-weight: 900; position: absolute; left: 0; top: 2px; color: var(--secondary-color); }
.prog-details strong { color: var(--primary-color); }

/* Curriculum */
.curriculum-layout { display: flex; flex-direction: column; gap: 40px; }
.curr-overview {
  background: var(--primary-color);
  color: var(--white);
  padding: 50px;
  border-radius: var(--border-radius-lg);
  text-align: center;
  box-shadow: var(--shadow-md);
}
.curr-icon { font-size: 3rem; color: var(--secondary-color); margin-bottom: 20px; }
.curr-overview h3 { color: var(--white); font-size: 2rem; margin-bottom: 20px; }
.curr-overview p { font-size: 1.1rem; line-height: 1.8; margin: 0; opacity: 0.9; }
.curr-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; }
.curr-card {
  background: var(--white);
  padding: 40px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
  border-left: 4px solid var(--secondary-color);
}
.curr-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.curr-card h4 { color: var(--primary-color); font-size: 1.25rem; margin-bottom: 15px; display: flex; align-items: center; gap: 10px; }
.curr-card h4 i { color: var(--secondary-color); }
.curr-card p { margin: 0; color: var(--text-body); }

/* Digital Learning */
.digital-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 25px; }
.digi-card {
  background: var(--white);
  padding: 30px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: all var(--transition-normal);
}
.digi-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-md); }
.digi-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  background: var(--bg-light);
  color: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  transition: all var(--transition-normal);
}
.digi-card:hover .digi-icon { background: var(--secondary-color); color: var(--white); }
.digi-card h4 { color: var(--primary-color); margin-bottom: 15px; }
.digi-card p { margin: 0; font-size: 0.9rem; color: var(--text-body); }

/* ==========================================================================
   FACULTY PAGE STYLES
   ========================================================================== */

/* Faculty Showcase Card */
.faculty-showcase-card {
  background: var(--white);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
  border: 1px solid var(--bg-gray);
}
.faculty-showcase-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-color: var(--secondary-color);
}
.fac-img { height: 280px; overflow: hidden; position: relative; }
.fac-img img { width: 100%; height: 100%; object-fit: cover; object-position: top; transition: transform 0.6s ease; }
.faculty-showcase-card:hover .fac-img img { transform: scale(1.08); }
.fac-info { padding: 25px 20px; border-top: 3px solid var(--secondary-color); }
.fac-info h4 { color: var(--primary-color); font-size: 1.25rem; margin-bottom: 5px; }
.fac-desig { display: block; color: var(--secondary-color); font-family: var(--font-btn); font-weight: 600; font-size: 0.95rem; margin-bottom: 15px; }
.fac-details p { font-size: 0.9rem; color: var(--text-body); margin-bottom: 8px; display: flex; align-items: flex-start; gap: 8px; }
.fac-details p:last-child { margin-bottom: 0; }
.fac-details i { color: var(--primary-color); font-size: 0.9rem; margin-top: 3px; }
.fac-details strong { color: var(--text-dark); min-width: 65px; }

/* ==========================================================================
   ACHIEVEMENTS PAGE STYLES
   ========================================================================== */

/* Achievement Statistics */
.achievement-stat-box {
  background: var(--white);
  padding: 40px 20px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
  border-bottom: 4px solid var(--secondary-color);
}
.achievement-stat-box:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-color);
}
.achieve-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  background: var(--bg-light);
  color: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  transition: all var(--transition-normal);
}
.achievement-stat-box:hover .achieve-icon {
  background: var(--primary-color);
  color: var(--secondary-color);
  transform: rotateY(180deg);
}
.achieve-num {
  font-size: 3.5rem;
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 10px;
}
.achieve-num::after {
  content: '+';
  color: var(--secondary-color);
}
.achieve-label {
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-dark);
}

/* CTA Grid */
.cta-buttons-grid {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}
.cta-btn {
  padding: 16px 30px;
  font-size: 1.1rem;
  min-width: 200px;
}

/* ==========================================================================
   INFRASTRUCTURE PAGE STYLES
   ========================================================================== */

/* Campus Showcase */
.campus-showcase { margin-top: 20px; }
.campus-main-img { width: 100%; height: 500px; object-fit: cover; border-radius: var(--border-radius-lg); margin-bottom: 30px; box-shadow: var(--shadow-md); }
.campus-features { gap: 30px; }
.c-feature { background: var(--white); padding: 30px; border-radius: var(--border-radius); box-shadow: var(--shadow-sm); text-align: center; transition: all var(--transition-normal); border-top: 4px solid var(--secondary-color); }
.c-feature:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.c-feature i { font-size: 2.5rem; color: var(--primary-color); margin-bottom: 20px; }
.c-feature h4 { color: var(--primary-color); margin-bottom: 15px; }
.c-feature p { margin: 0; }

/* Feature List & Tags */
.feature-list { list-style: none; padding: 0; }
.feature-list li { margin-bottom: 12px; font-size: 1.05rem; display: flex; align-items: center; gap: 12px; color: var(--text-dark); }
.feature-list li i { color: var(--secondary-color); font-size: 1.2rem; }
.feature-tags { display: flex; flex-wrap: wrap; gap: 15px; }
.feature-tags .tag { background: var(--bg-light); color: var(--primary-color); padding: 8px 16px; border-radius: 30px; font-size: 0.95rem; font-weight: 500; display: flex; align-items: center; gap: 8px; border: 1px solid var(--bg-gray); }

/* Lab Cards */
.lab-card { background: var(--white); border-radius: var(--border-radius); overflow: hidden; box-shadow: var(--shadow-sm); transition: all var(--transition-normal); }
.lab-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-md); }
.lab-card img { width: 100%; height: 250px; object-fit: cover; }
.lab-info { padding: 25px; text-align: center; border-top: 3px solid var(--secondary-color); }
.lab-info h4 { color: var(--primary-color); margin-bottom: 10px; }
.lab-info p { margin: 0; font-size: 0.95rem; }

/* Sports Cards */
.sports-card { position: relative; border-radius: var(--border-radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); transition: all var(--transition-normal); height: 400px; }
.sports-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.sports-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.sports-card:hover img { transform: scale(1.05); }
.sports-overlay { position: absolute; bottom: 0; left: 0; width: 100%; background: linear-gradient(to top, rgba(0,0,0,0.9), transparent); padding: 40px 30px 30px; color: var(--white); }
.sports-overlay h4 { color: var(--secondary-color); font-size: 1.5rem; margin-bottom: 10px; }
.sports-overlay p { margin: 0; font-size: 1.05rem; opacity: 0.9; }

/* Activity Box */
.activity-box { background: var(--white); padding: 40px; border-radius: var(--border-radius); box-shadow: var(--shadow-sm); text-align: center; transition: all var(--transition-normal); }
.activity-box:hover { background: var(--primary-color); color: var(--white); transform: translateY(-5px); }
.activity-box i { font-size: 3rem; color: var(--secondary-color); margin-bottom: 20px; transition: all var(--transition-normal); }
.activity-box:hover h4 { color: var(--secondary-color); }
.activity-box:hover p { color: var(--white); opacity: 0.9; }
.activity-box h4 { margin-bottom: 15px; color: var(--primary-color); transition: all var(--transition-normal); }
.activity-box p { margin: 0; color: var(--text-body); transition: all var(--transition-normal); }

/* Safety Card */
.safety-card { background: var(--bg-light); padding: 35px 20px; border-radius: var(--border-radius); transition: all var(--transition-normal); border: 1px solid var(--bg-gray); }
.safety-card:hover { background: var(--white); box-shadow: var(--shadow-md); transform: translateY(-5px); border-color: var(--secondary-color); }
.safety-icon { width: 70px; height: 70px; margin: 0 auto 20px; background: var(--white); color: var(--primary-color); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 2rem; box-shadow: var(--shadow-sm); transition: all var(--transition-normal); }
.safety-card:hover .safety-icon { background: var(--primary-color); color: var(--white); }
.safety-card h4 { color: var(--primary-color); margin-bottom: 15px; }
.safety-card p { margin: 0; font-size: 0.95rem; }

/* ==========================================================================
   SERVICES PAGE STYLES
   ========================================================================== */

.service-card {
  background: var(--white);
  padding: 35px 25px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
  border-bottom: 3px solid transparent;
  height: 100%;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-color: var(--secondary-color);
}
.svc-icon {
  width: 60px;
  height: 60px;
  background: var(--bg-light);
  color: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin-bottom: 20px;
  transition: all var(--transition-normal);
}
.service-card:hover .svc-icon {
  background: var(--primary-color);
  color: var(--secondary-color);
}
.service-card h4 {
  color: var(--primary-color);
  margin-bottom: 12px;
}
.service-card p {
  margin: 0;
  color: var(--text-body);
  font-size: 0.95rem;
}

/* Flex Row Service Card */
.service-card.flex-row {
  display: flex;
  align-items: flex-start;
  gap: 25px;
  text-align: left;
}
.service-card.flex-row .svc-icon {
  margin-bottom: 0;
  flex-shrink: 0;
}
.service-card.flex-row .svc-icon.large {
  width: 80px;
  height: 80px;
  font-size: 2.2rem;
}

/* ==========================================================================
   FEE STRUCTURE PAGE STYLES
   ========================================================================== */

/* Fee Table */
.table-responsive { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.fee-table { width: 100%; min-width: 700px; border-collapse: collapse; margin: 0 auto; background: var(--white); box-shadow: var(--shadow-sm); border-radius: var(--border-radius); overflow: hidden; }
.fee-table thead { background: var(--primary-color); color: var(--white); }
.fee-table th, .fee-table td { padding: 18px 20px; text-align: left; border-bottom: 1px solid var(--bg-gray); }
.fee-table th { font-weight: 600; font-size: 1.05rem; letter-spacing: 0.5px; }
.fee-table tbody tr { transition: all var(--transition-normal); }
.fee-table tbody tr:hover { background-color: var(--bg-light); }
.fee-table tbody tr:last-child td { border-bottom: none; }
.fee-table td strong { color: var(--primary-color); }

/* Fee Components */
.component-card { background: var(--white); padding: 30px; border-radius: var(--border-radius); box-shadow: var(--shadow-sm); text-align: center; transition: all var(--transition-normal); border-top: 4px solid var(--secondary-color); height: 100%; }
.component-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: var(--primary-color); }
.comp-icon { font-size: 2.5rem; color: var(--primary-color); margin-bottom: 20px; transition: all var(--transition-normal); }
.component-card:hover .comp-icon { color: var(--secondary-color); }
.component-card h4 { color: var(--primary-color); margin-bottom: 15px; }
.component-card p { margin: 0; color: var(--text-body); font-size: 0.95rem; }

/* Transport Fee */
.transport-fee-box { background: var(--white); padding: 30px; border-radius: var(--border-radius); border-left: 4px solid var(--secondary-color); box-shadow: var(--shadow-sm); }
.transport-fee-box .feature-list li { margin-bottom: 15px; }
.transport-fee-box .feature-list li:last-child { margin-bottom: 0; }

/* Download Box */
.download-box { background: var(--white); padding: 50px; border-radius: var(--border-radius-lg); max-width: 800px; margin: 0 auto; border: 1px solid var(--bg-gray); }
.download-details { font-size: 1.1rem; }
.download-details p { margin-bottom: 10px; color: var(--text-dark); }
.download-details strong { color: var(--primary-color); min-width: 160px; display: inline-block; }

/* ==========================================================================
   FEE PAYMENT PAGE STYLES
   ========================================================================== */

.payment-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; max-width: 1000px; margin: 0 auto; }
.payment-card { background: var(--white); border-radius: var(--border-radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--bg-gray); transition: all var(--transition-normal); display: flex; flex-direction: column; }
.payment-card:hover { box-shadow: var(--shadow-md); transform: translateY(-5px); border-color: var(--secondary-color); }
.payment-card-header { background: var(--primary-color); color: var(--white); padding: 25px; text-align: center; }
.payment-card-header .payment-icon { font-size: 2.5rem; color: var(--secondary-color); margin-bottom: 15px; }
.payment-card-header h3 { color: var(--white); margin: 0; font-size: 1.5rem; letter-spacing: 0.5px; }
.payment-card-body { padding: 40px 30px; flex-grow: 1; display: flex; flex-direction: column; }

/* QR Code Placeholder */
.qr-placeholder { background: var(--bg-light); border: 2px dashed var(--bg-gray); padding: 30px; border-radius: var(--border-radius); display: inline-block; margin-bottom: 15px; width: 220px; height: 220px; display: flex; align-items: center; justify-content: center; margin: 0 auto 15px; }
.qr-box { color: var(--text-muted); display: flex; flex-direction: column; align-items: center; gap: 10px; }
.qr-box i { font-size: 3rem; opacity: 0.5; }
.qr-instruction { font-size: 0.95rem; color: var(--text-body); }

/* Copy Fields */
.copy-field { margin-bottom: 25px; text-align: left; }
.copy-field:last-child { margin-bottom: 0; }
.field-label { font-size: 0.9rem; color: var(--text-body); margin-bottom: 8px; font-weight: 500; text-transform: uppercase; letter-spacing: 0.5px; }
.field-value-group { display: flex; align-items: center; background: var(--bg-light); border: 1px solid var(--bg-gray); border-radius: var(--border-radius); padding: 12px 15px; }
.field-value { flex-grow: 1; font-family: 'Inter', monospace; font-size: 1.05rem; font-weight: 600; color: var(--text-dark); word-break: break-all; }
.copy-btn { background: transparent; border: none; color: var(--primary-color); font-size: 1.2rem; cursor: pointer; padding: 5px; transition: all var(--transition-normal); flex-shrink: 0; margin-left: 10px; opacity: 0.7; }
.copy-btn:hover { color: var(--primary-color); transform: scale(1.1); opacity: 1; }
.copy-btn:focus { outline: none; }

/* Security Note */
.payment-security-note { margin-top: auto; padding-top: 30px; text-align: center; color: var(--text-muted); font-size: 0.9rem; border-top: 1px dashed var(--bg-gray); }
.payment-security-note i { color: #28a745; margin-right: 5px; }

/* Copy Toast */
.copy-toast { visibility: hidden; min-width: 250px; background-color: var(--primary-color); color: var(--white); text-align: center; border-radius: var(--border-radius); padding: 16px; position: fixed; z-index: 9999; left: 50%; bottom: 30px; font-size: 1rem; transform: translateX(-50%); box-shadow: var(--shadow-lg); font-weight: 500; }
.copy-toast.show { visibility: visible; -webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s; animation: fadein 0.5s, fadeout 0.5s 2.5s; }

@-webkit-keyframes fadein { from {bottom: 0; opacity: 0;} to {bottom: 30px; opacity: 1;} }
@keyframes fadein { from {bottom: 0; opacity: 0;} to {bottom: 30px; opacity: 1;} }
@-webkit-keyframes fadeout { from {bottom: 30px; opacity: 1;} to {bottom: 0; opacity: 0;} }
@keyframes fadeout { from {bottom: 30px; opacity: 1;} to {bottom: 0; opacity: 0;} }

/* ==========================================================================
   NOTICE & CIRCULAR PAGE STYLES
   ========================================================================== */

.notice-list-container { display: flex; flex-direction: column; gap: 20px; max-width: 900px; margin: 0 auto; }
.notice-card { background: var(--white); border-radius: var(--border-radius); box-shadow: var(--shadow-sm); transition: all var(--transition-normal); border-left: 5px solid var(--primary-color); }
.notice-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.notice-card.important-notice { border-left-color: #d9534f; }
.notice-card-inner { padding: 30px; }

.notice-meta { display: flex; flex-wrap: wrap; align-items: center; gap: 15px; margin-bottom: 15px; font-size: 0.9rem; }
.notice-date { color: var(--text-muted); font-weight: 500; }
.notice-date i { margin-right: 5px; }

/* Badges */
.notice-meta span[class^="badge-"] { padding: 4px 12px; border-radius: 20px; font-weight: 600; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.5px; }
.badge-academic { background: #e3f2fd; color: #1976d2; }
.badge-event { background: #f3e5f5; color: #7b1fa2; }
.badge-holiday { background: #e8f5e9; color: #388e3c; }
.badge-admission { background: #fff3e0; color: #f57c00; }

.badge-important { background: #ffebee; color: #d9534f; display: flex; align-items: center; gap: 5px; }
.badge-normal { background: var(--bg-gray); color: var(--text-dark); display: flex; align-items: center; gap: 5px; }

.notice-title { font-size: 1.4rem; color: var(--primary-color); margin-bottom: 10px; line-height: 1.3; }
.notice-desc { color: var(--text-body); margin-bottom: 20px; font-size: 1rem; }

.notice-actions { display: flex; gap: 15px; flex-wrap: wrap; }

/* ==========================================================================
   NEWS & EVENTS PAGE STYLES
   ========================================================================== */

/* News Card */
.news-card { background: var(--white); border-radius: var(--border-radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); transition: all var(--transition-normal); height: 100%; display: flex; flex-direction: column; }
.news-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.news-img-wrapper { position: relative; overflow: hidden; height: 220px; }
.news-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.news-card:hover .news-img { transform: scale(1.05); }
.news-category { position: absolute; top: 15px; right: 15px; padding: 5px 15px; border-radius: 20px; font-weight: 600; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.5px; z-index: 2; box-shadow: 0 2px 5px rgba(0,0,0,0.2); }
.news-card-body { padding: 30px; flex-grow: 1; display: flex; flex-direction: column; }
.news-date { color: var(--secondary-color); font-size: 0.9rem; font-weight: 500; margin-bottom: 10px; }
.news-title { font-size: 1.25rem; color: var(--primary-color); margin-bottom: 15px; line-height: 1.4; }
.news-desc { color: var(--text-body); margin-bottom: 20px; flex-grow: 1; }

/* Event Card */
.event-card { background: var(--white); border-radius: var(--border-radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); transition: all var(--transition-normal); border: 1px solid var(--bg-gray); display: flex; flex-direction: column; height: 100%; }
.event-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: var(--secondary-color); }
.event-img-wrapper { position: relative; height: 250px; overflow: hidden; }
.event-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.event-card:hover .event-img { transform: scale(1.05); }
.event-date-badge { position: absolute; bottom: -20px; right: 30px; background: var(--primary-color); color: var(--white); width: 70px; height: 80px; border-radius: var(--border-radius); text-align: center; display: flex; flex-direction: column; justify-content: center; box-shadow: var(--shadow-md); z-index: 2; border: 2px solid var(--white); }
.e-month { font-size: 0.85rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; color: var(--secondary-color); }
.e-day { font-size: 1.8rem; font-weight: 700; line-height: 1; }
.event-card-body { padding: 40px 30px 30px; flex-grow: 1; display: flex; flex-direction: column; }
.event-title { font-size: 1.4rem; color: var(--primary-color); margin-bottom: 15px; padding-right: 20px; }
.event-meta { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; color: var(--text-muted); font-size: 0.95rem; }
.event-meta span i { color: var(--secondary-color); width: 20px; text-align: center; margin-right: 5px; }
.event-desc { color: var(--text-body); margin-bottom: 25px; flex-grow: 1; }

/* ==========================================================================
   SCHOOL CALENDAR PAGE STYLES
   ========================================================================== */

/* Academic Year */
.section-academic-year { padding-top: 60px; padding-bottom: 60px; }
.academic-year-card { background: var(--white); border-radius: var(--border-radius-lg); padding: 40px; max-width: 800px; margin: 0 auto; border-top: 5px solid var(--primary-color); }
.ay-session { font-size: 1.5rem; color: var(--primary-color); margin-bottom: 25px; }
.ay-session strong { color: var(--secondary-color); }
.ay-dates { display: flex; justify-content: center; gap: 40px; margin-bottom: 25px; }
.ay-date-box { background: var(--bg-light); padding: 15px 25px; border-radius: var(--border-radius); border: 1px solid var(--bg-gray); flex: 1; max-width: 250px; }
.ay-date-box span { display: block; font-size: 0.9rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 5px; }
.ay-date-box strong { display: block; font-size: 1.2rem; color: var(--text-dark); }
.ay-desc { color: var(--text-body); margin: 0; }

/* Interactive Calendar */
.interactive-calendar-wrapper { max-width: 900px; margin: 0 auto; background: var(--white); border-radius: var(--border-radius-lg); box-shadow: var(--shadow-md); overflow: hidden; }
.calendar-header { display: flex; justify-content: space-between; align-items: center; background: var(--primary-color); color: var(--white); padding: 20px 30px; }
.calendar-header h3 { margin: 0; font-size: 1.5rem; color: var(--white); }
.cal-nav-btn { background: transparent; border: none; color: var(--white); font-size: 1.2rem; cursor: pointer; padding: 5px 10px; transition: color var(--transition-fast); }
.cal-nav-btn:hover { color: var(--secondary-color); }
.calendar-legend { padding: 15px 30px; background: var(--bg-light); display: flex; flex-wrap: wrap; justify-content: center; gap: 20px; border-bottom: 1px solid var(--bg-gray); }
.legend-item { display: flex; align-items: center; gap: 8px; font-size: 0.9rem; color: var(--text-dark); font-weight: 500; }
.legend-dot, .ind-dot { display: inline-block; width: 10px; height: 10px; border-radius: 50%; }
.color-event { background-color: #1976d2; }
.color-holiday { background-color: #d9534f; }
.color-exam { background-color: #f57c00; }
.color-activity { background-color: #388e3c; }

.calendar-grid { padding: 20px; }
.cal-days-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 5px; }
.cal-day-header { text-align: center; font-weight: 600; padding: 10px 0; color: var(--text-muted); }
.cal-day { aspect-ratio: 1; border-radius: var(--border-radius); border: 1px solid var(--bg-light); display: flex; flex-direction: column; align-items: center; justify-content: center; position: relative; transition: all var(--transition-fast); font-weight: 500; color: var(--text-dark); }
.cal-day.empty { border: none; }
.cal-day:not(.empty):hover { background-color: var(--bg-light); cursor: pointer; }
.cal-day.has-event { border-color: #e3f2fd; background-color: #f8fbff; }
.cal-day .date { margin-bottom: 8px; }
.cal-indicators { display: flex; gap: 3px; position: absolute; bottom: 8px; }
.cal-indicators .ind-dot { width: 6px; height: 6px; }

/* Timeline List */
.timeline-list { max-width: 800px; margin: 0 auto; position: relative; }
.timeline-item { display: flex; gap: 30px; margin-bottom: 30px; background: var(--white); border-radius: var(--border-radius); padding: 25px; box-shadow: var(--shadow-sm); border-left: 4px solid var(--secondary-color); }
.timeline-date-box { background: var(--primary-color); color: var(--white); padding: 15px; border-radius: var(--border-radius); min-width: 80px; text-align: center; display: flex; flex-direction: column; justify-content: center; align-items: center; }
.t-day { font-size: 2rem; font-weight: 700; line-height: 1; margin-bottom: 5px; }
.t-month { font-size: 0.9rem; font-weight: 600; letter-spacing: 1px; }
.timeline-content { flex-grow: 1; }
.timeline-category { display: inline-block; padding: 4px 12px; border-radius: 20px; font-weight: 600; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 10px; }
.timeline-content h4 { color: var(--primary-color); margin-bottom: 10px; font-size: 1.3rem; }
.timeline-meta { display: flex; flex-wrap: wrap; gap: 15px; margin-bottom: 10px; font-size: 0.9rem; color: var(--text-muted); }
.timeline-meta span i { margin-right: 5px; color: var(--secondary-color); }
.timeline-content p { margin: 0; color: var(--text-body); }

/* Holiday Card */
.holiday-card { display: flex; align-items: center; gap: 20px; background: var(--white); padding: 25px; border-radius: var(--border-radius); box-shadow: var(--shadow-sm); transition: transform var(--transition-normal); border: 1px solid var(--bg-gray); }
.holiday-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.holiday-icon { font-size: 2rem; color: var(--secondary-color); width: 50px; text-align: center; flex-shrink: 0; }
.holiday-info h4 { margin: 5px 0; color: var(--primary-color); }
.holiday-type { font-size: 0.8rem; text-transform: uppercase; font-weight: 600; color: var(--text-muted); letter-spacing: 0.5px; }
.holiday-date { font-size: 0.9rem; color: var(--text-body); }
.holiday-date i { margin-right: 5px; }

/* Schedule Table */
.schedule-table { width: 100%; border-collapse: collapse; background: var(--white); border-radius: var(--border-radius); overflow: hidden; box-shadow: var(--shadow-sm); min-width: 800px; }
.schedule-table th, .schedule-table td { padding: 18px 20px; text-align: left; border-bottom: 1px solid var(--bg-gray); }
.schedule-table th { background: var(--primary-color); color: var(--white); font-weight: 600; text-transform: uppercase; font-size: 0.9rem; letter-spacing: 0.5px; }
.schedule-table tbody tr:last-child td { border-bottom: none; }
.schedule-table tbody tr:hover { background-color: var(--bg-light); }
.schedule-table td strong { color: var(--primary-color); }

/* Activity Card */
.activity-card { background: var(--white); padding: 30px; border-radius: var(--border-radius); box-shadow: var(--shadow-sm); text-align: center; transition: all var(--transition-normal); border-top: 3px solid transparent; }
.activity-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: var(--secondary-color); }
.activity-icon { font-size: 2.5rem; color: var(--primary-color); margin-bottom: 20px; }
.activity-card h4 { color: var(--primary-color); margin-bottom: 10px; }
.activity-meta { font-size: 0.9rem; color: var(--secondary-color); font-weight: 500; margin-bottom: 15px; }
.activity-card p { color: var(--text-body); margin: 0; font-size: 0.95rem; }

/* ==========================================================================
   GALLERY PAGE STYLES
   ========================================================================== */

/* Filters */
.gallery-filters { margin-bottom: 40px; display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; }
.filter-btn { background: var(--bg-gray); border: none; padding: 8px 20px; border-radius: 30px; font-size: 0.9rem; font-weight: 500; color: var(--text-dark); cursor: pointer; transition: all var(--transition-fast); text-transform: uppercase; letter-spacing: 0.5px; }
.filter-btn:hover, .filter-btn.active { background: var(--primary-color); color: var(--white); box-shadow: var(--shadow-sm); }

/* Photo Grid */
.photo-gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 25px; }
.gallery-item-card { border-radius: var(--border-radius); overflow: hidden; box-shadow: var(--shadow-sm); position: relative; transition: all 0.3s ease; }
.gallery-page-trigger { display: block; position: relative; overflow: hidden; height: 280px; }
.gallery-page-trigger .gallery-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.gallery-page-trigger:hover .gallery-img { transform: scale(1.08); }
.gallery-img-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(11, 28, 60, 0.6); display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity 0.3s ease; }
.gallery-page-trigger:hover .gallery-img-overlay { opacity: 1; }
.gallery-img-overlay i { color: var(--white); font-size: 2rem; transform: translateY(20px); transition: transform 0.3s ease; }
.gallery-page-trigger:hover .gallery-img-overlay i { transform: translateY(0); }
.hidden-meta { display: none; } /* Used only by JS for lightbox */

/* Advanced Gallery Lightbox */
.gallery-lightbox { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.9); z-index: 9999; display: flex; flex-direction: column; align-items: center; justify-content: center; opacity: 0; visibility: hidden; transition: all 0.3s ease; backdrop-filter: blur(5px); }
.gallery-lightbox.active { opacity: 1; visibility: visible; }
.adv-lightbox-close { position: absolute; top: 20px; right: 30px; font-size: 2.5rem; color: #fff; background: none; border: none; cursor: pointer; z-index: 10000; transition: transform 0.3s; }
.adv-lightbox-close:hover { transform: scale(1.1); color: var(--secondary-color); }
.adv-lightbox-prev, .adv-lightbox-next { position: absolute; top: 50%; transform: translateY(-50%); font-size: 3rem; color: #fff; background: none; border: none; cursor: pointer; z-index: 10000; padding: 20px; transition: transform 0.3s; }
.adv-lightbox-prev { left: 20px; }
.adv-lightbox-next { right: 20px; }
.adv-lightbox-prev:hover, .adv-lightbox-next:hover { transform: translateY(-50%) scale(1.1); color: var(--secondary-color); }
.adv-lightbox-content { max-width: 90%; max-height: 85vh; position: relative; display: flex; flex-direction: column; align-items: center; justify-content: center; transform: scale(0.95); transition: transform 0.3s ease; }
.gallery-lightbox.active .adv-lightbox-content { transform: scale(1); }
.adv-lightbox-content img { max-width: 100%; max-height: 70vh; border-radius: var(--border-radius); box-shadow: 0 10px 30px rgba(0,0,0,0.5); object-fit: contain; }
.adv-lightbox-caption { text-align: center; color: #fff; margin-top: 20px; max-width: 700px; }
.adv-lightbox-caption h3 { color: var(--secondary-color); margin: 0 0 5px 0; font-size: 1.5rem; }
.adv-lightbox-caption #lb-date { font-size: 0.9rem; color: #bbb; margin-bottom: 10px; }
.adv-lightbox-caption p { margin: 0; font-size: 1rem; line-height: 1.4; color: #eee; }

/* Video Gallery Cards */
.video-gallery-card { background: var(--white); border-radius: var(--border-radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; transition: transform 0.3s ease; }
.video-gallery-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.v-thumbnail { position: relative; height: 280px; overflow: hidden; }
.v-thumbnail img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.video-gallery-card:hover .v-thumbnail img { transform: scale(1.05); }
.v-play-btn { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 70px; height: 70px; background: rgba(212, 175, 55, 0.9); color: var(--primary-color); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.8rem; cursor: pointer; transition: all 0.3s ease; box-shadow: 0 5px 15px rgba(0,0,0,0.3); z-index: 2; padding-left: 5px; }
.v-play-btn:hover { background: var(--white); transform: translate(-50%, -50%) scale(1.1); }
.v-card-body { padding: 30px; text-align: center; }
.v-card-body h4 { color: var(--primary-color); margin-bottom: 15px; font-size: 1.3rem; }
.v-card-body p { margin: 0; color: var(--text-body); }

/* ==========================================================================
   STUDENT CORNER PAGE STYLES
   ========================================================================== */

/* Quick Links Grid */
.student-links-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 25px; max-width: 1200px; margin: 0 auto; }
.student-link-card { display: flex; align-items: center; background: var(--white); border-radius: var(--border-radius); padding: 25px; box-shadow: var(--shadow-sm); transition: all 0.3s ease; text-decoration: none; border: 1px solid var(--bg-gray); width: calc(25% - 18.75px); min-width: 250px; }
.student-link-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: var(--secondary-color); }
.sc-icon { font-size: 2.2rem; color: var(--secondary-color); width: 60px; height: 60px; display: flex; align-items: center; justify-content: center; background: var(--bg-light); border-radius: 50%; margin-right: 15px; flex-shrink: 0; transition: all 0.3s ease; }
.student-link-card:hover .sc-icon { background: var(--primary-color); color: var(--white); transform: scale(1.05); }
.sc-content { flex-grow: 1; padding-right: 10px; }
.sc-content h3 { color: var(--primary-color); font-size: 1.15rem; margin-bottom: 5px; transition: color 0.3s ease; }
.sc-content p { color: var(--text-muted); font-size: 0.85rem; margin: 0; line-height: 1.3; }
.student-link-card:hover .sc-content h3 { color: var(--secondary-color); }
.sc-arrow { color: var(--text-muted); font-size: 1.2rem; transition: all 0.3s ease; opacity: 0.5; transform: translateX(-5px); }
.student-link-card:hover .sc-arrow { color: var(--primary-color); opacity: 1; transform: translateX(0); }

/* ==========================================================================
   CONTACT US PAGE STYLES
   ========================================================================== */

/* Contact Information Cards */
.contact-info-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.contact-info-card { background: var(--white); border-radius: var(--border-radius); padding: 30px 20px; box-shadow: var(--shadow-sm); text-align: center; transition: transform 0.3s ease; border-bottom: 3px solid transparent; }
.contact-info-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: var(--secondary-color); }
.ci-icon { font-size: 2.5rem; color: var(--primary-color); margin-bottom: 20px; }
.ci-content h4 { color: var(--primary-color); margin-bottom: 15px; font-size: 1.2rem; }
.ci-content p { color: var(--text-body); margin: 0 0 5px 0; font-size: 0.95rem; }
.ci-content strong { color: var(--text-dark); display: block; margin-bottom: 5px; font-size: 1.05rem; }
.ci-content a { color: var(--text-body); transition: color 0.3s ease; }
.ci-content a:hover { color: var(--secondary-color); text-decoration: underline; }

/* Contact Form */
.contact-form-wrapper { display: flex; background: var(--white); border-radius: var(--border-radius-lg); overflow: hidden; margin: 0 auto; max-width: 1100px; }
.cf-left { background: var(--primary-color); color: var(--white); padding: 50px; width: 40%; display: flex; flex-direction: column; justify-content: center; position: relative; }
.cf-left h2 { color: var(--white); margin-bottom: 20px; }
.cf-left p { opacity: 0.9; margin-bottom: 40px; font-size: 1.05rem; }
.cf-img-box { flex-grow: 1; border-radius: var(--border-radius); overflow: hidden; max-height: 250px; }
.cf-img-box img { width: 100%; height: 100%; object-fit: cover; }
.cf-right { padding: 50px; width: 60%; background: var(--white); }

/* Form Elements (if not global) */
.form-group { margin-bottom: 20px; text-align: left; }
.form-group label { display: block; margin-bottom: 8px; font-weight: 500; color: var(--text-dark); font-size: 0.95rem; }
.form-control { width: 100%; padding: 12px 15px; border: 1px solid var(--bg-gray); border-radius: var(--border-radius); font-size: 1rem; font-family: inherit; transition: all 0.3s ease; background: var(--bg-light); color: var(--text-dark); }
.form-control:focus { outline: none; border-color: var(--secondary-color); box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2); background: var(--white); }
textarea.form-control { resize: vertical; min-height: 120px; }
.text-danger { color: #dc3545; }
.error-msg { display: none; color: #dc3545; font-size: 0.85rem; margin-top: 5px; font-weight: 500; }
.form-control.is-invalid { border-color: #dc3545; background-color: #fff8f8; }

.alert-success { background-color: #d4edda; color: #155724; padding: 15px 20px; border-radius: var(--border-radius); border: 1px solid #c3e6cb; margin-bottom: 25px; display: flex; align-items: center; gap: 15px; font-weight: 500; }
.alert-success i { font-size: 1.5rem; color: #28a745; }

/* Map Section */
.map-container { border-radius: var(--border-radius-lg); overflow: hidden; max-width: 1100px; margin: 0 auto; background: var(--white); padding: 10px; }
.map-container iframe { border-radius: var(--border-radius); }
.location-details { font-size: 1.1rem; color: var(--text-dark); }

/* ==========================================================================
   HTML SITEMAP PAGE STYLES
   ========================================================================== */

/* Sitemap Grid for Main Pages */
.sitemap-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; max-width: 1200px; margin: 0 auto; }
.sitemap-card { display: flex; align-items: flex-start; background: var(--white); border-radius: var(--border-radius); padding: 20px; box-shadow: var(--shadow-sm); text-decoration: none; border: 1px solid var(--bg-gray); transition: all 0.3s ease; }
.sitemap-card:hover, .sitemap-card.active { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--secondary-color); }
.sitemap-card.active { border-color: var(--primary-color); background-color: var(--bg-light); }
.sm-icon { font-size: 1.5rem; color: var(--secondary-color); margin-right: 15px; margin-top: 3px; transition: color 0.3s ease; width: 30px; text-align: center; flex-shrink: 0; }
.sitemap-card:hover .sm-icon { color: var(--primary-color); }
.sm-content h3 { color: var(--primary-color); font-size: 1.1rem; margin-bottom: 5px; transition: color 0.3s ease; }
.sitemap-card:hover .sm-content h3 { color: var(--secondary-color); }
.sm-content p { color: var(--text-body); font-size: 0.85rem; margin: 0; line-height: 1.4; }

/* Sitemap List Styles */
.styled-link-list { list-style: none; padding: 0; margin: 0 auto; max-width: 1000px; }
.styled-link-list li { margin-bottom: 15px; }
.styled-link-list a { display: inline-flex; align-items: center; font-size: 1.1rem; color: var(--primary-color); font-weight: 500; transition: color 0.3s ease; text-decoration: none; padding: 5px 0; }
.styled-link-list a i { color: var(--secondary-color); margin-right: 10px; font-size: 0.9rem; transition: transform 0.3s ease; }
.styled-link-list a:hover { color: var(--secondary-color); }
.styled-link-list a:hover i { transform: translateX(5px); }
