@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", "Segoe UI", Arial, sans-serif;
}

html,
body {
  overflow-x: hidden;
  width: 100%;
  scroll-behavior: smooth;
}

/* Keep headings in their original font */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Segoe UI", Arial, sans-serif;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(60px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
}

@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes glow {
  0%,
  100% {
    box-shadow: 0 0 5px rgba(244, 196, 48, 0.3);
  }
  50% {
    box-shadow: 0 0 20px rgba(244, 196, 48, 0.6);
  }
}

@keyframes countUp {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* NAVBAR */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #0b2c5d;
  padding: 20px 35px;
  color: white;
  border-bottom: 5px solid #f4c430;
  position: relative;
  animation: fadeInDown 0.6s ease-out;
}

.logo-area {
  display: flex;
  align-items: center;
  /* position: absolute;
  bottom: 10px; */
  gap: 15px;
}

.logo-area img {
  width: 120px;
  position: absolute;
  height: auto;
  /* bottom: auto; */
  top: 10px;
  left: 12px;
  /* transform: translateY(-50%); */
  z-index: 10;
  transition: transform 0.3s ease;
}

.logo-area h1 {
  font-size: 28px;
  margin-left: 100px;
  font-weight: 700;
  line-height: 1.3;
}

.logo-area p {
  font-size: 13px;
  color: #f4c430;
  display: block;
  margin-left: 100px;
}

#navMenu {
  display: flex;
  gap: 20px;
}
#navMenu a {
  /* margin-right: 20px; */
  white-space: nowrap;
  font-weight: 500;
  letter-spacing: 0.3px;
}

/* SOCIAL MEDIA ICONS */
.social-icons-left {
  display: none;
  gap: 12px;
  align-items: center;
}

.social-icon {
  width: 36px;
  height: 36px;
  background: white;
  border-radius: 50%;
  transition:
    background-color 0.3s ease,
    transform 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.social-icon:hover {
  background: #f4c430;
  transform: scale(1.1);
}

.social-icon svg {
  width: 18px;
  height: 18px;
  color: #0b2c5d;
}

nav a {
  margin-left: 25px;
  color: white;
  text-decoration: none;
  font-weight: 500;
  position: relative;
  display: inline-block;
  transition: color 0.3s ease;
}

nav a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: #f4c430;
  transition: width 0.4s ease;
}

nav a:hover {
  color: #f4c430;
}

nav a:hover::after {
  width: 100%;
}

/* DROPDOWN MENU */
.dropdown {
  position: relative;
  display: inline-block;
  /* margin-left: 25px; */
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #0b2c5d;
  border: 2px solid #f4c430;
  border-radius: 4px;
  min-width: 180px;
  padding: 10px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease,
    transform 0.3s ease;
  z-index: 1000;
  margin-top: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu a {
  display: block;
  padding: 10px 20px;
  color: white;
  text-decoration: none;
  font-size: 14px;
  transition:
    background 0.3s ease,
    color 0.3s ease;
  margin-left: 0;
  position: static;
}

.dropdown-menu a::after {
  display: none;
}

.dropdown-menu a:hover {
  background: #f4c430;
  color: #0b2c5d;
  padding-left: 25px;
}

/* NESTED DROPDOWN */
.dropdown-menu .dropdown {
  position: relative;
  margin-left: 0;
  display: block;
  width: 100%;
}

.dropdown-menu .dropdown a {
  display: block;
  padding: 10px 20px;
  color: white;
  text-decoration: none;
  font-size: 14px;
  transition:
    background 0.3s ease,
    color 0.3s ease;
  margin-left: 0;
  position: relative;
  cursor: pointer;
  width: 100%;
}

.dropdown-menu .dropdown a::after {
  display: inline-block;
  /* content: "▶"; */
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 10px;
  line-height: 1;
}

.dropdown-menu .dropdown > .dropdown-menu {
  position: absolute;
  top: 0;
  left: 100%;
  margin-top: 0;
  margin-left: 5px;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-10px);
  pointer-events: none;
}

.dropdown-menu .dropdown:hover > .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
  pointer-events: auto;
}

.dropdown-menu .dropdown:hover > a {
  background: #f4c430;
  color: #0b2c5d;
  padding-left: 20px;
}

/* HERO SECTION */
.hero {
  height: 90vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #0b2c5d;
}

.hero-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.slider-item {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  animation: slideOutLeft 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
  will-change: transform, opacity, filter;
}

.slider-item.active {
  opacity: 1;
  animation: slideInRight 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

@keyframes slideInRight {
  0% {
    opacity: 0;
    transform: translateX(100%) scale(1.05);
    filter: blur(4px);
  }
  50% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
    transform: translateX(0) scale(1);
    filter: blur(0px);
  }
}

@keyframes slideOutLeft {
  0% {
    opacity: 1;
    transform: translateX(0) scale(1);
    filter: blur(0px);
  }
  100% {
    opacity: 0;
    transform: translateX(-100%) scale(0.95);
    filter: blur(4px);
  }
}

.overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(15, 45, 85, 0.45) 0%,
    rgba(15, 45, 85, 0.25) 100%
  );
  z-index: 1;
  opacity: 1;
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hero-content {
  position: relative;
  text-align: center;
  color: white;
  max-width: 800px;
  padding: 20px;
  z-index: 2;
  animation: slideInUp 1s ease-out;
}

.slider-controls {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 3;
  animation: fadeInUp 1s ease-out 1s both;
}

.slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border: 2px solid rgba(255, 255, 255, 0.6);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.slider-dot:hover {
  background: rgba(255, 255, 255, 0.7);
  border-color: white;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.slider-dot.active {
  background: #f4c430;
  border-color: #f4c430;
  transform: scale(1.3);
  box-shadow: 0 0 16px rgba(244, 196, 48, 0.6);
}

.hero-content h2 {
  font-size: 52px;
  letter-spacing: 2px;
  animation: fadeInDown 1s ease-out 0.2s both;
}

.hero-content h3 {
  font-size: 28px;
  margin: 15px 0;
  animation: fadeInDown 1s ease-out 0.4s both;
  text-shadow:
    0 4px 12px rgba(0, 0, 0, 0.8),
    0 2px 4px rgba(0, 0, 0, 0.5);
  font-weight: 600;
}

.hero-content p {
  font-size: 18px;
  margin-bottom: 30px;
  line-height: 1.6;
  animation: fadeInUp 1s ease-out 0.6s both;
  text-shadow:
    0 3px 10px rgba(0, 0, 0, 0.7),
    0 1px 3px rgba(0, 0, 0, 0.4);
}

/* BUTTONS */
.buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  animation: fadeInUp 1s ease-out 0.8s both;
}

.btn {
  padding: 14px 30px;
  border: none;
  font-size: 16px;
  cursor: pointer;
  border-radius: 6px;
  transition: all 0.3s ease;
  transform: translateY(0);
  text-decoration: none;
  display: inline-block;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.primary {
  background: #c62828;
  color: white;
}

.primary:hover {
  background: #a91f1f;
}

.secondary {
  background: #f4c430;
  color: #0b2c5d;
}

.secondary:hover {
  background: #e0b520;
}

/* Ripple Effect Animation */
.btn {
  position: relative;
  overflow: hidden;
}

.ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.6);
  transform: scale(0);
  animation: rippleEffect 0.6s ease-out;
  pointer-events: none;
}

@keyframes rippleEffect {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

/* CONTAINER */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
}

/* MISSION & VISION SECTION */
.mission-vision {
  background: #f5f5f5;
  padding: 60px 40px;
}

.mv-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
}

.mv-item {
  background: white;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border-left: 4px solid #f4c430;
  animation: fadeInUp 0.8s ease-out both;
}

.mv-item:nth-child(1) {
  animation-delay: 0.2s;
}

.mv-item:nth-child(2) {
  animation-delay: 0.4s;
}

.mv-item:hover {
  box-shadow: 0 8px 20px rgba(244, 196, 48, 0.2);
  transform: translateY(-5px);
  transition: all 0.3s ease;
}

.mv-item h3 {
  color: #0b2c5d;
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.mv-item p {
  color: #666;
  line-height: 1.8;
}

/* HIGHLIGHTS SECTION */
.highlights {
  padding: 80px 40px;
  background: white;
}

.highlights h2 {
  text-align: center;
  font-size: 2.5rem;
  color: #0b2c5d;
  margin-bottom: 50px;
  font-weight: 700;
  animation: fadeInDown 0.8s ease-out;
}

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}

.highlight-card {
  background: #f9f9f9;
  padding: 35px 25px;
  border-radius: 8px;
  text-align: center;
  transition: all 0.3s ease;
  border-top: 3px solid #f4c430;
  animation: fadeInUp 0.8s ease-out both;
  opacity: 0;
}

.highlight-card:nth-child(1) {
  animation-delay: 0.1s;
}

.highlight-card:nth-child(2) {
  animation-delay: 0.2s;
}

.highlight-card:nth-child(3) {
  animation-delay: 0.3s;
}

.highlight-card:nth-child(4) {
  animation-delay: 0.4s;
}

.highlight-card:nth-child(5) {
  animation-delay: 0.5s;
}

.highlight-card:nth-child(6) {
  animation-delay: 0.6s;
}

.highlight-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(244, 196, 48, 0.2);
}

.highlight-icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
  display: block;
  animation:
    scaleIn 0.8s ease-out 0.3s both,
    bounce 2s ease-in-out 1s infinite;
}

.highlight-card h4 {
  color: #0b2c5d;
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.highlight-card p {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* STATISTICS SECTION */
.statistics {
  background: linear-gradient(135deg, #0b2c5d 0%, #1a4d8f 100%);
  padding: 80px 40px;
  color: white;
}

.statistics h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 50px;
  font-weight: 700;
  animation: fadeInDown 0.8s ease-out;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}

.stat-box {
  background: rgba(255, 255, 255, 0.1);
  padding: 40px 30px;
  border-radius: 8px;
  text-align: center;
  border: 2px solid #f4c430;
  transition: all 0.4s ease;
  animation: scaleIn 0.8s ease-out both;
  opacity: 0;
}

.stat-box:nth-child(1) {
  animation-delay: 0.2s;
}

.stat-box:nth-child(2) {
  animation-delay: 0.3s;
}

.stat-box:nth-child(3) {
  animation-delay: 0.4s;
}

.stat-box:nth-child(4) {
  animation-delay: 0.5s;
}

.stat-box:hover {
  background: rgba(244, 196, 48, 0.2);
  transform: scale(1.08);
  box-shadow: 0 10px 30px rgba(244, 196, 48, 0.3);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: #f4c430;
  margin-bottom: 10px;
}

.stat-label {
  font-size: 1.1rem;
  color: white;
}

/* PROGRAMS SECTION */
.programs {
  padding: 80px 40px;
  background: #f9f9f9;
}

.programs h2 {
  text-align: center;
  font-size: 2.5rem;
  color: #0b2c5d;
  margin-bottom: 50px;
  font-weight: 700;
  animation: fadeInDown 0.8s ease-out;
}

.programs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}

.program-card {
  background: white;
  padding: 35px 25px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border: 2px solid #f4c430;
  transition: all 0.4s ease;
  animation: fadeInLeft 0.8s ease-out both;
  opacity: 0;
}

.program-card:nth-child(1) {
  animation: fadeInLeft 0.8s ease-out 0.2s both;
}

.program-card:nth-child(2) {
  animation: fadeInUp 0.8s ease-out 0.3s both;
}

.program-card:nth-child(3) {
  animation: fadeInRight 0.8s ease-out 0.4s both;
}

.program-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(11, 44, 93, 0.2);
}

.program-card h4 {
  color: #0b2c5d;
  font-size: 1.3rem;
  margin-bottom: 15px;
}

.program-card p {
  color: #666;
  margin-bottom: 20px;
  line-height: 1.6;
}

.program-card ul {
  list-style: none;
  padding: 0;
}

.program-card li {
  color: #0b2c5d;
  padding: 8px 0;
  font-size: 0.95rem;
}

/* ACHIEVEMENTS SECTION */
.achievements {
  padding: 80px 40px;
  background: white;
}

.achievements h2 {
  text-align: center;
  font-size: 2.5rem;
  color: #0b2c5d;
  margin-bottom: 50px;
  font-weight: 700;
  animation: fadeInDown 0.8s ease-out;
}

.achievements-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}

.achievement-item {
  text-align: center;
  padding: 30px 20px;
  background: #f5f5f5;
  border-radius: 8px;
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  animation: fadeInUp 0.8s ease-out both;
  opacity: 0;
}

.achievement-item:nth-child(1) {
  animation-delay: 0.1s;
}

.achievement-item:nth-child(2) {
  animation-delay: 0.2s;
}

.achievement-item:nth-child(3) {
  animation-delay: 0.3s;
}

.achievement-item:nth-child(4) {
  animation-delay: 0.4s;
}

.achievement-item:hover {
  background: #f4c430;
  color: #0b2c5d;
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(244, 196, 48, 0.3);
}

.achievement-icon {
  font-size: 3rem;
  display: block;
  margin-bottom: 20px;
  line-height: 1;
  height: 60px;
  width: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: scaleIn 0.8s ease-out 0.2s both;
}

.achievement-item h5 {
  color: #0b2c5d;
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.achievement-item p {
  color: #666;
  font-size: 0.9rem;
}

.achievement-item:hover p {
  color: #0b2c5d;
}

/* ADMISSIONS CTA SECTION */
.admissions-cta {
  background: linear-gradient(135deg, #f4c430 0%, #e0b520 100%);
  padding: 80px 40px;
  text-align: center;
  color: #0b2c5d;
}

.admissions-cta h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.admissions-cta p {
  font-size: 1.2rem;
  margin-bottom: 40px;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.primary-large,
.secondary-large {
  padding: 15px 40px;
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.primary-large {
  background: #0b2c5d;
  color: #f4c430;
}

.primary-large:hover {
  background: white;
  color: #0b2c5d;
  transform: translateY(-2px);
}

.secondary-large {
  background: white;
  color: #0b2c5d;
  border: 2px solid #0b2c5d;
}

.secondary-large:hover {
  background: #0b2c5d;
  color: white;
  transform: translateY(-2px);
}

/* CONTACT SECTION */
.contact-section {
  padding: 80px 40px;
  background: #f9f9f9;
}

.contact-section h2 {
  text-align: center;
  font-size: 2.5rem;
  color: #0b2c5d;
  margin-bottom: 50px;
  font-weight: 700;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}

.contact-item {
  background: white;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  text-align: center;
  border-left: 4px solid #f4c430;
  transition: transform 0.3s ease;
  margin-bottom: 20px;
}

.contact-item:hover {
  transform: translateY(-5px);
}

.contact-item h4 {
  color: #0b2c5d;
  font-size: 1.1rem;
  margin-bottom: 15px;
}

.contact-item p {
  color: #666;
  line-height: 1.8;
  font-size: 0.95rem;
}

.contact-cta {
  text-align: center;
  margin-top: 50px;
}

.contact-cta .btn {
  display: inline-block;
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

/* FOOTER */
.footer {
  background: linear-gradient(135deg, #0b2c5d 0%, #1a4d8f 100%);
  color: white;
  font-family: "Poppins", sans-serif;
}

.footer-wrapper {
  max-width: 1400px;
  margin: 0 auto;
  padding: 10px 10px 0;
}

.footer-content {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 0.9fr 1fr;
  gap: 50px;
  align-items: flex-start;
}

.footer-section {
  display: flex;
  flex-direction: column;
}

.footer-section h5 {
  color: #f4c430;
  font-size: 1.1rem;
  margin: 0 0 20px 0;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 12px;
}

.footer-section h5::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: #f4c430;
  border-radius: 2px;
}

.footer-section p {
  color: rgba(255, 255, 255, 0.85);
  margin: 0 0 10px 0;
  line-height: 1.6;
  font-size: 0.95rem;
}

.footer-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-section ul li {
  margin-bottom: 12px;
  font-size: 0.95rem;
  transition: transform 0.2s ease;
}

.footer-section ul li:hover {
  transform: translateX(4px);
}

.footer-section a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
}

.footer-section a:hover {
  color: #f4c430;
  padding-left: 8px;
}

/* Logo + About Section */
.footer-about {
  display: flex;
  flex-direction: row;
  gap: 16px;
  align-items: flex-start;
}

.footer-logo-wrapper {
  flex-shrink: 0;
}

.footer-logo {
  width: 75px;
  height: 75px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 8px;
  transition: all 0.3s ease;
  border: 2px solid rgba(244, 196, 48, 0.2);
}

.footer-logo:hover {
  background: rgba(244, 196, 48, 0.15);
  border-color: #f4c430;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(244, 196, 48, 0.2);
}

.footer-logo img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.about-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-text h5 {
  font-size: 1rem;
  letter-spacing: 0.3px;
  margin-bottom: 6px;
}

.about-text h5::after {
  display: none;
}

.about-text .school-description {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  line-height: 1.5;
  margin: 0 !important;
}

/* Contact Info */
.contact-info {
  padding: 0 !important;
  margin: 0 !important;
}

.contact-info p {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px !important;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
}

.contact-info .icon {
  font-size: 1.2rem;
  color: #f4c430;
  min-width: 20px;
}

/* Divider */
.footer-divider {
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(244, 196, 48, 0.3),
    transparent
  );
  max-width: 1300px;
  margin: 0 auto;
}

/* Social Icons Section */
.footer-social-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  padding: 35px 40px;
  max-width: 1400px;
  margin: 0 auto;
}

.footer-social-section h6 {
  color: #f4c430;
  font-size: 0.95rem;
  margin: 0;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.social-links {
  display: flex;
  gap: 16px;
  justify-content: center;
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: rgba(244, 196, 48, 0.15);
  border: 2px solid rgba(244, 196, 48, 0.4);
  border-radius: 50%;
  color: #f4c430;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-icon:hover {
  background: #f4c430;
  color: #0b2c5d;
  transform: translateY(-8px) scale(1.1);
  box-shadow: 0 12px 25px rgba(244, 196, 48, 0.35);
  border-color: #f4c430;
}

.social-icon svg {
  width: 22px;
  height: 22px;
}

/* Newsletter Section */
.newsletter-section {
  background: linear-gradient(135deg, #c62828 0%, #a91f1f 100%);
  padding: 50px 40px;
  color: white;
}

.newsletter-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}

.newsletter-content h3 {
  font-size: 28px;
  margin: 0 0 10px 0;
  font-weight: 700;
  color: white;
}

.newsletter-content p {
  margin: 0;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
  max-width: 400px;
}

.newsletter-form {
  display: flex;
  gap: 10px;
  min-width: 350px;
}

.newsletter-form input {
  flex: 1;
  padding: 12px 16px;
  border: none;
  border-radius: 4px;
  font-size: 14px;
  font-family: inherit;
  outline: none;
}

.newsletter-form input::placeholder {
  color: #999;
}

.newsletter-btn {
  padding: 12px 24px;
  background: #f4c430;
  color: #0b2c5d;
  border: none;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.newsletter-btn:hover {
  background: #e0b520;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Footer Bottom */
.footer-bottom {
  background: rgba(0, 0, 0, 0.2);
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.9rem;
  letter-spacing: 0.3px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .mv-content,
  .highlights-grid,
  .stats-grid,
  .programs-grid,
  .achievements-grid,
  .contact-grid,
  .footer-content {
    grid-template-columns: 1fr;
  }

  .mission-vision,
  .highlights,
  .statistics,
  .programs,
  .achievements,
  .admissions-cta,
  .contact-section,
  .footer {
    padding: 50px 20px;
  }

  .container {
    padding: 0 20px;
  }

  .statistics h2,
  .programs h2,
  .achievements h2,
  .contact-section h2,
  .highlights h2,
  .admissions-cta h2 {
    font-size: 1.8rem;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .primary-large,
  .secondary-large {
    width: 100%;
    max-width: 300px;
  }

  /* Footer Mobile Responsive */
  .footer-wrapper {
    padding: 45px 20px;
  }

  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .footer-about {
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
    gap: 12px;
  }

  .footer-logo-wrapper {
    flex-shrink: 0;
  }

  .footer-logo {
    width: 65px;
    height: 65px;
  }

  .about-text {
    align-items: flex-start;
  }

  .about-text .school-description {
    text-align: left;
  }

  .footer-section h5 {
    text-align: left;
  }

  .footer-social-section {
    padding: 30px 20px;
    gap: 16px;
  }

  .newsletter-container {
    flex-direction: column;
    gap: 20px;
  }

  .newsletter-form {
    min-width: auto;
    width: 100%;
  }

  .newsletter-content {
    text-align: center;
  }

  .newsletter-content p {
    max-width: 100%;
  }

  .footer-bottom {
    padding: 20px;
  }
}

/* Mobile Extra Small (480px and below) */
@media (max-width: 480px) {
  .footer-wrapper {
    padding: 35px 15px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-about {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-logo-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 8px;
  }

  .footer-section h5 {
    font-size: 1rem;
    text-align: center;
  }

  .footer-section h5::after {
    width: 25px;
    left: 50%;
    transform: translateX(-50%);
  }

  .footer-section ul li {
    font-size: 0.9rem;
    margin-bottom: 10px;
    text-align: center;
  }

  .footer-section p {
    font-size: 0.9rem;
    text-align: center;
  }

  .footer-logo {
    width: 60px;
    height: 60px;
  }

  .about-text {
    align-items: center;
  }

  .about-text h5 {
    font-size: 0.95rem;
    text-align: center;
  }

  .about-text .school-description {
    font-size: 0.85rem;
    text-align: center;
  }

  .contact-info {
    text-align: center;
  }

  .contact-info p {
    font-size: 0.9rem;
    margin-bottom: 10px !important;
    justify-content: center;
  }

  .footer-social-section {
    padding: 22px 15px;
    gap: 14px;
  }

  .footer-social-section h6 {
    font-size: 0.85rem;
  }

  .social-links {
    gap: 12px;
  }

  .social-icon {
    width: 42px;
    height: 42px;
  }

  .social-icon svg {
    width: 20px;
    height: 20px;
  }

  .newsletter-section {
    padding: 30px 15px;
  }

  .newsletter-container {
    flex-direction: column;
    gap: 15px;
  }

  .newsletter-content h3 {
    font-size: 20px;
  }

  .newsletter-content p {
    font-size: 12px;
  }

  .newsletter-form {
    flex-direction: column;
    min-width: auto;
    width: 100%;
  }

  .newsletter-form input,
  .newsletter-btn {
    width: 100%;
  }

  .footer-divider {
    max-width: 95%;
    margin: 0 auto;
  }

  .footer-bottom {
    padding: 18px 15px;
  }

  .footer-bottom p {
    font-size: 0.85rem;
  }
}

/* PAGE TITLE SECTION */
.page-title {
  background: url("/images/sky.jpg") no-repeat center/cover;
  height: 60vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0;
}

.page-title .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(11, 44, 93, 0.85),
    rgba(26, 77, 143, 0.85)
  );
  z-index: 1;
}

.title-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
}

.title-content h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.title-content p {
  font-size: 1.3rem;
  color: #f4c430;
}

/* CURRICULUM OVERVIEW */
.curriculum-overview {
  padding: 80px 40px;
  background: white;
  text-align: center;
}

.curriculum-overview h2 {
  font-size: 2.5rem;
  color: #0b2c5d;
  margin-bottom: 30px;
  font-weight: 700;
}

.intro-text {
  font-size: 1.1rem;
  color: #666;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.8;
}

/* CURRICULUM SECTION */
.curriculum-section {
  padding: 80px 40px;
  background: white;
}

.curriculum-section:nth-child(even) {
  background: #f9f9f9;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header h2 {
  font-size: 2.2rem;
  color: #0b2c5d;
  font-weight: 700;
}

.curriculum-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}

.curriculum-card {
  background: white;
  padding: 35px 25px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border-top: 4px solid #f4c430;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.curriculum-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.curriculum-card h3 {
  color: #0b2c5d;
  font-size: 1.3rem;
  margin-bottom: 20px;
  font-weight: 700;
}

.curriculum-card ul {
  list-style: none;
  padding: 0;
}

.curriculum-card li {
  color: #666;
  padding: 8px 0;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* STREAMS CONTAINER */
.streams-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}

.stream-box {
  background: linear-gradient(135deg, #0b2c5d 0%, #1a4d8f 100%);
  padding: 35px 25px;
  border-radius: 8px;
  color: white;
  border: 2px solid #f4c430;
  transition: transform 0.3s ease;
}

.stream-box:hover {
  transform: translateY(-5px);
}

.stream-box h3 {
  color: #f4c430;
  font-size: 1.3rem;
  margin-bottom: 20px;
  font-weight: 700;
}

.subjects-list p {
  color: white;
  font-weight: 700;
  margin-top: 15px;
  margin-bottom: 10px;
  font-size: 0.95rem;
}

.subjects-list p:first-child {
  margin-top: 0;
}

.stream-box ul {
  list-style: none;
  padding: 0;
}

.stream-box li {
  color: rgba(255, 255, 255, 0.9);
  padding: 6px 0;
  font-size: 0.9rem;
  margin-left: 0;
}

/* CURRICULUM FEATURES */
.curriculum-features {
  padding: 80px 40px;
  background: #f9f9f9;
}

.curriculum-features h2 {
  text-align: center;
  font-size: 2.5rem;
  color: #0b2c5d;
  margin-bottom: 50px;
  font-weight: 700;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}

.feature-item {
  background: white;
  padding: 35px 25px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  border: 2px solid #f4c430;
}

.feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.feature-icon {
  font-size: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  height: 60px;
  width: 60px;
  line-height: 1;
}

.feature-item h4 {
  color: #0b2c5d;
  font-size: 1.2rem;
  margin-bottom: 15px;
  font-weight: 700;
}

.feature-item p {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ASSESSMENT SECTION */
.assessment-section {
  padding: 80px 40px;
  background: white;
}

.assessment-section h2 {
  text-align: center;
  font-size: 2.5rem;
  color: #0b2c5d;
  margin-bottom: 50px;
  font-weight: 700;
}

.assessment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}

.assessment-card {
  background: linear-gradient(135deg, #f4c430 0%, #e0b520 100%);
  padding: 35px 25px;
  border-radius: 8px;
  color: #0b2c5d;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.assessment-card:hover {
  transform: translateY(-5px);
}

.assessment-card h3 {
  font-size: 1.2rem;
  margin-bottom: 15px;
  font-weight: 700;
}

.assessment-card p {
  font-size: 0.95rem;
  line-height: 1.6;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .page-title {
    height: 30vh;
    margin-top: 70px;
  }

  .title-content h1 {
    font-size: 2rem;
  }

  .title-content p {
    font-size: 1rem;
  }

  .curriculum-section,
  .curriculum-overview,
  .curriculum-features,
  .assessment-section {
    padding: 50px 20px;
  }

  .curriculum-grid,
  .streams-container,
  .features-grid,
  .assessment-grid {
    grid-template-columns: 1fr;
  }

  .section-header h2,
  .curriculum-overview h2,
  .curriculum-features h2,
  .assessment-section h2 {
    font-size: 1.8rem;
  }
}
/* ACADEMIC CALENDAR STYLES */
.calendar-overview {
  padding: 80px 40px;
  background: white;
  text-align: center;
}

.calendar-overview h2 {
  font-size: 2.5rem;
  color: #0b2c5d;
  margin-bottom: 30px;
  font-weight: 700;
}

.calendar-overview .container {
  max-width: 900px;
}

.calendar-overview .intro-text {
  font-size: 1rem;
  color: #666;
  margin: 0 auto;
  line-height: 1.8;
}

/* CALENDAR SECTION */
.calendar-section {
  padding: 80px 40px;
  background: white;
}

.calendar-section:nth-child(even) {
  background: #f9f9f9;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header h2 {
  font-size: 2.2rem;
  color: #0b2c5d;
  font-weight: 700;
  margin: 0;
}

.terms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  max-width: 1100px;
  margin: 0 auto;
}

.term-card {
  background: linear-gradient(135deg, #0b2c5d 0%, #1a4d8f 100%);
  padding: 35px 25px;
  border-radius: 8px;
  color: white;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
  border: 2px solid #f4c430;
}

.term-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.term-card h3 {
  color: #f4c430;
  font-size: 1.3rem;
  margin-bottom: 20px;
  font-weight: 700;
}

.term-details p {
  color: white;
  margin: 8px 0;
  line-height: 1.6;
  font-size: 0.95rem;
}

.term-details p:nth-child(odd) {
  color: #f4c430;
  font-weight: 700;
}

/* IMPORTANT DATES */
.important-dates {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.date-item {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 25px;
  align-items: center;
  background: white;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  border-left: 4px solid #f4c430;
  transition: all 0.3s ease;
}

.date-item:hover {
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  transform: translateX(5px);
}

.date-badge {
  background: linear-gradient(135deg, #f4c430 0%, #e0b520 100%);
  color: #0b2c5d;
  font-weight: 700;
  padding: 15px;
  border-radius: 8px;
  text-align: center;
  font-size: 1.1rem;
  width: 100px;
}

.date-content h4 {
  color: #0b2c5d;
  font-size: 1.1rem;
  margin: 0 0 8px 0;
  font-weight: 700;
}

.date-content p {
  color: #666;
  margin: 0;
  font-size: 0.9rem;
}

/* HOLIDAYS GRID */
.holidays-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 25px;
  max-width: 1100px;
  margin: 0 auto;
}

.holiday-card {
  background: white;
  padding: 30px 20px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border-top: 4px solid #f4c430;
  transition: all 0.3s ease;
}

.holiday-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.holiday-card h4 {
  color: #0b2c5d;
  font-size: 1.1rem;
  margin-bottom: 10px;
  font-weight: 700;
}

.holiday-card p {
  color: #666;
  font-size: 0.9rem;
  margin: 5px 0;
}

.holiday-card .duration {
  color: #f4c430;
  font-weight: 700;
  margin-top: 10px;
}

/* EXAM SCHEDULE */
.exam-table-wrapper {
  max-width: 1100px;
  margin: 0 auto;
  overflow-x: auto;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
}

.exam-table {
  width: 100%;
  border-collapse: collapse;
  background: white;
}

.exam-table thead {
  background: linear-gradient(135deg, #0b2c5d 0%, #1a4d8f 100%);
  color: white;
}

.exam-table th {
  padding: 20px;
  text-align: left;
  font-weight: 700;
  font-size: 1rem;
  border-bottom: 2px solid #f4c430;
}

.exam-table td {
  padding: 18px 20px;
  border-bottom: 1px solid #e0e0e0;
  color: #666;
  font-size: 0.95rem;
}

.exam-table tbody tr {
  transition: background-color 0.3s ease;
}

.exam-table tbody tr:hover {
  background-color: #f5f5f5;
}

.exam-table tbody tr:nth-child(even) {
  background-color: #fafafa;
}

.exam-table td:first-child {
  color: #0b2c5d;
  font-weight: 700;
}

.exam-table td:nth-child(2) {
  color: #f4c430;
  font-weight: 700;
}

/* PTM SCHEDULE */
.ptm-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}

.ptm-card {
  background: linear-gradient(135deg, #f4c430 0%, #e0b520 100%);
  padding: 30px 25px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  border: 2px solid #0b2c5d;
}

.ptm-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.ptm-card h4 {
  color: #0b2c5d;
  font-size: 1.3rem;
  margin: 0 0 15px 0;
  font-weight: 700;
}

.ptm-card p {
  color: #0b2c5d;
  margin: 8px 0;
  font-size: 0.95rem;
}

.ptm-card p strong {
  display: block;
  font-weight: 700;
}

.ptm-card em {
  color: #0b2c5d;
  font-style: italic;
  font-size: 0.85rem;
  opacity: 0.8;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .date-item {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .date-badge {
    width: 100%;
  }

  .calendar-overview,
  .calendar-section {
    padding: 50px 20px;
  }

  .terms-grid,
  .holidays-grid,
  .exam-info,
  .ptm-grid {
    grid-template-columns: 1fr;
  }

  .important-dates {
    grid-template-columns: 1fr;
  }

  .exam-table {
    font-size: 0.85rem;
  }

  .exam-table th,
  .exam-table td {
    padding: 12px 10px;
  }
}

/* SOCIAL MEDIA LINKS */
.social-links {
  display: flex;
  gap: 15px;
  margin-top: 15px;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(244, 196, 48, 0.2);
  border: 2px solid #f4c430;
  border-radius: 50%;
  color: #f4c430;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: #f4c430;
  color: #0b2c5d;
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(244, 196, 48, 0.3);
}

.social-links a svg {
  width: 20px;
  height: 20px;
}
/* RULES & REGULATIONS PAGE STYLING */

.rules-overview {
  background: linear-gradient(
    135deg,
    rgba(11, 44, 93, 0.08) 0%,
    rgba(244, 196, 48, 0.05) 100%
  );
  padding: 50px 0;
  text-align: center;
  border-bottom: 2px solid #f4c430;
}

.rules-overview h2 {
  color: #0b2c5d;
  font-size: 32px;
  margin-bottom: 20px;
  font-weight: 600;
}

.rules-overview .intro-text {
  color: #555;
  font-size: 16px;
  line-height: 1.8;
  max-width: 800px;
  margin: 0 auto;
  font-weight: 300;
}

.rules-section {
  padding: 60px 0;
  background: white;
}

.section-header {
  margin-bottom: 40px;
  text-align: center;
  border-bottom: 3px solid #f4c430;
  padding-bottom: 20px;
}

.section-header h2 {
  color: #0b2c5d;
  font-size: 28px;
  margin: 0;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

/* RULES GRID - 3 COLUMN LAYOUT */
.rules-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 25px;
  margin-top: 30px;
}

.rule-card {
  background: white;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 2px 8px rgba(11, 44, 93, 0.1);
  transition: all 0.3s ease;
}

.rule-card:hover {
  box-shadow: 0 8px 20px rgba(11, 44, 93, 0.15);
  transform: translateY(-5px);
  border-color: #f4c430;
}

.rule-card h3 {
  color: #0b2c5d;
  font-size: 18px;
  margin-top: 0;
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 2px solid #f4c430;
  font-weight: 600;
}

.rule-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.rule-card li {
  color: #333;
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 10px;
  padding-left: 0;
  font-weight: 400;
}

.rule-card li:last-child {
  margin-bottom: 0;
}

/* CONDUCT ITEMS - 3 COLUMN */
.conduct-items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  margin-top: 30px;
}

.conduct-card {
  background: white;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 2px 8px rgba(11, 44, 93, 0.1);
  transition: all 0.3s ease;
}

.conduct-card:hover {
  box-shadow: 0 8px 20px rgba(11, 44, 93, 0.15);
  transform: translateY(-5px);
}

.conduct-card h3 {
  color: #0b2c5d;
  font-size: 18px;
  margin-top: 0;
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 2px solid #f4c430;
  font-weight: 600;
}

.conduct-card:nth-child(2) h3 {
  border-bottom: 2px solid #d32f2f;
}

.conduct-card:nth-child(3) h3 {
  border-bottom: 2px solid #1976d2;
}

.conduct-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.conduct-card li {
  color: #333;
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 10px;
  padding-left: 0;
  font-weight: 400;
}

.conduct-card li:last-child {
  margin-bottom: 0;
}

/* TECHNOLOGY GRID - 3 COLUMN */
.tech-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  margin-top: 30px;
}

.tech-card {
  background: linear-gradient(135deg, #f5f5f5 0%, #ffffff 100%);
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 2px 8px rgba(11, 44, 93, 0.1);
  transition: all 0.3s ease;
}

.tech-card:hover {
  box-shadow: 0 8px 20px rgba(11, 44, 93, 0.15);
  transform: translateY(-5px);
  background: linear-gradient(135deg, #ffffff 0%, #f5f5f5 100%);
}

.tech-card h3 {
  color: #0b2c5d;
  font-size: 18px;
  margin-top: 0;
  margin-bottom: 12px;
  font-weight: 600;
}

.tech-card p {
  color: #555;
  font-size: 14px;
  line-height: 1.8;
  margin: 0;
}

/* SAFETY LIST */
.safety-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 25px;
  margin-top: 30px;
}

.safety-item {
  background: white;
  border-left: 4px solid #f4c430;
  border-radius: 8px;
  padding: 25px;
  box-shadow: 0 2px 8px rgba(11, 44, 93, 0.1);
  transition: all 0.3s ease;
}

.safety-item:hover {
  box-shadow: 0 8px 20px rgba(11, 44, 93, 0.15);
  transform: translateX(5px);
}

.safety-item h4 {
  color: #0b2c5d;
  font-size: 17px;
  margin-top: 0;
  margin-bottom: 12px;
  font-weight: 600;
}

.safety-item p {
  color: #555;
  font-size: 14px;
  line-height: 1.8;
  margin: 0;
}

/* EXAM RULES - 3 COLUMN */
.exam-rules {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  margin-top: 30px;
}

.exam-rule-card {
  background: white;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 2px 8px rgba(11, 44, 93, 0.1);
  transition: all 0.3s ease;
}

.exam-rule-card:hover {
  box-shadow: 0 8px 20px rgba(11, 44, 93, 0.15);
  transform: translateY(-5px);
  border-color: #f4c430;
}

.exam-rule-card h3 {
  color: #0b2c5d;
  font-size: 18px;
  margin-top: 0;
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 2px solid #f4c430;
  font-weight: 600;
}

.exam-rule-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.exam-rule-card li {
  color: #333;
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 10px;
  padding-left: 0;
  font-weight: 400;
}

.exam-rule-card li:last-child {
  margin-bottom: 0;
}

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
  .rules-grid,
  .conduct-items,
  .tech-grid,
  .exam-rules {
    grid-template-columns: 1fr;
  }

  .section-header h2 {
    font-size: 22px;
  }

  .rules-overview h2 {
    font-size: 24px;
  }

  .rules-section {
    padding: 40px 0;
  }

  .safety-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .section-header h2 {
    font-size: 18px;
    gap: 8px;
  }

  .rules-overview h2 {
    font-size: 20px;
  }

  .rule-card h3,
  .conduct-card h3,
  .tech-card h3,
  .exam-rule-card h3 {
    font-size: 16px;
  }

  .rule-card,
  .conduct-card,
  .tech-card,
  .exam-rule-card,
  .safety-item {
    padding: 18px;
  }
}

/* BOARD ACHIEVEMENTS PAGE STYLING */

.board-overview {
  background: linear-gradient(
    135deg,
    rgba(11, 44, 93, 0.08) 0%,
    rgba(244, 196, 48, 0.05) 100%
  );
  padding: 50px 0;
  text-align: center;
  border-bottom: 2px solid #f4c430;
}

.board-overview h2 {
  color: #0b2c5d;
  font-size: 32px;
  margin-bottom: 20px;
  font-weight: 600;
}

.board-overview .intro-text {
  color: #555;
  font-size: 16px;
  line-height: 1.8;
  max-width: 800px;
  margin: 0 auto;
  font-weight: 300;
}

.board-section {
  padding: 60px 0;
  background: white;
}

/* RESULTS GRID */
.results-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  margin-top: 30px;
}

.result-card {
  background: white;
  border: 2px solid #f4c430;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 12px rgba(11, 44, 93, 0.12);
  transition: all 0.3s ease;
  text-align: center;
}

.result-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(11, 44, 93, 0.2);
  border-color: #0b2c5d;
}

.result-card h3 {
  color: #0b2c5d;
  font-size: 20px;
  margin-top: 0;
  margin-bottom: 20px;
  font-weight: 600;
}

.achievement-stat {
  background: linear-gradient(135deg, #f4c430 0%, #f9a825 100%);
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 20px;
  color: white;
}

.stat-label {
  font-size: 12px;
  margin-bottom: 8px;
  opacity: 0.9;
  font-weight: 500;
}

.stat-value {
  font-size: 32px;
  font-weight: 700;
  margin: 0;
}

.achievement-list {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

.achievement-list li {
  color: #333;
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 8px;
  padding-left: 0;
}

/* STREAM GRID */
.stream-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin-top: 30px;
}

.stream-card {
  background: white;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 2px 8px rgba(11, 44, 93, 0.1);
  transition: all 0.3s ease;
}

.stream-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(11, 44, 93, 0.15);
  border-color: #f4c430;
}

.stream-card h3 {
  color: #0b2c5d;
  font-size: 20px;
  margin-top: 0;
  margin-bottom: 8px;
  font-weight: 600;
}

.stream-desc {
  color: #888;
  font-size: 12px;
  margin-bottom: 20px;
  font-style: italic;
}

.stream-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  text-align: center;
}

.stat-item {
  padding: 15px;
  background: #f9f9f9;
  border-radius: 8px;
}

.stat-num {
  font-size: 24px;
  font-weight: 700;
  color: #f4c430;
  margin: 0;
}

.stat-name {
  font-size: 12px;
  color: #666;
  margin: 5px 0 0 0;
  font-weight: 500;
}

/* ACHIEVERS GRID */
.achievers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.achiever-card {
  background: linear-gradient(135deg, #ffffff 0%, #f9f9f9 100%);
  border: 2px solid #e0e0e0;
  border-radius: 12px;
  padding: 25px;
  position: relative;
  box-shadow: 0 2px 8px rgba(11, 44, 93, 0.1);
  transition: all 0.3s ease;
  text-align: center;
}

.achiever-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(11, 44, 93, 0.15);
  border-color: #f4c430;
}

.rank-badge {
  position: absolute;
  top: -12px;
  right: 20px;
  background: linear-gradient(135deg, #f4c430 0%, #f9a825 100%);
  color: white;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}

.achiever-card h3 {
  color: #0b2c5d;
  font-size: 18px;
  margin: 15px 0 5px 0;
  font-weight: 600;
}

.achiever-card .subject {
  color: #666;
  font-size: 13px;
  margin-bottom: 10px;
  font-style: italic;
}

.achiever-card .score {
  font-size: 24px;
  font-weight: 700;
  color: #f4c430;
  margin: 10px 0;
}

.achiever-card .highlight {
  color: #0b2c5d;
  font-size: 12px;
  margin: 10px 0 0 0;
  font-weight: 500;
}

/* SUBJECT PERFORMANCE */
.subject-performance {
  margin-top: 30px;
}

.performance-row {
  display: grid;
  grid-template-columns: 150px 1fr 60px;
  gap: 20px;
  align-items: center;
  margin-bottom: 25px;
}

.subject-name {
  color: #0b2c5d;
  font-weight: 600;
  font-size: 14px;
}

.performance-bar {
  background: #f0f0f0;
  border-radius: 10px;
  height: 30px;
  overflow: hidden;
  border: 1px solid #e0e0e0;
}

.bar-fill {
  background: linear-gradient(90deg, #f4c430 0%, #f9a825 100%);
  height: 100%;
  border-radius: 10px;
  transition: width 0.3s ease;
}

.performance-bar:hover .bar-fill {
  background: linear-gradient(90deg, #0b2c5d 0%, #1a4a8a 100%);
}

.performance-percent {
  color: #0b2c5d;
  font-weight: 700;
  font-size: 16px;
  text-align: right;
}

/* MILESTONE GRID */
.milestone-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin-top: 30px;
}

.milestone-card {
  background: white;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(11, 44, 93, 0.1);
  transition: all 0.3s ease;
}

.milestone-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(11, 44, 93, 0.15);
  border-color: #f4c430;
}

.milestone-icon {
  font-size: 48px;
  margin-bottom: 15px;
}

.milestone-card h3 {
  color: #0b2c5d;
  font-size: 18px;
  margin: 0 0 15px 0;
  font-weight: 600;
}

.milestone-card p {
  color: #555;
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}

/* TESTIMONIALS GRID */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  margin-top: 30px;
}

.testimonial-card {
  background: white;
  border-left: 4px solid #f4c430;
  border-radius: 8px;
  padding: 25px;
  box-shadow: 0 2px 8px rgba(11, 44, 93, 0.1);
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  box-shadow: 0 8px 20px rgba(11, 44, 93, 0.15);
  transform: translateY(-3px);
}

.testimonial-header {
  border-bottom: 1px solid #f0f0f0;
  padding-bottom: 15px;
  margin-bottom: 15px;
}

.testimonial-header h4 {
  color: #0b2c5d;
  font-size: 16px;
  margin: 0;
  font-weight: 600;
}

.testimonial-score {
  color: #f4c430;
  font-size: 12px;
  margin: 8px 0 0 0;
  font-weight: 500;
}

.testimonial-text {
  color: #555;
  font-size: 14px;
  line-height: 1.8;
  margin: 0;
  font-style: italic;
}

/* RESPONSIVE DESIGN FOR BOARD PAGE */
@media (max-width: 768px) {
  .results-grid,
  .stream-grid,
  .achievers-grid,
  .milestone-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .stream-stats {
    grid-template-columns: 1fr;
  }

  .performance-row {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .board-section {
    padding: 40px 0;
  }

  .board-overview h2 {
    font-size: 24px;
  }
}

@media (max-width: 480px) {
  .result-card h3,
  .stream-card h3,
  .achiever-card h3,
  .milestone-card h3 {
    font-size: 16px;
  }

  .stat-value {
    font-size: 24px;
  }

  .rank-badge {
    font-size: 10px;
    padding: 4px 10px;
  }

  .achiever-card .score {
    font-size: 20px;
  }

  .milestone-icon {
    font-size: 40px;
  }
}
/* SUBJECT TOPPERS STYLING */

.subject-toppers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 25px;
  margin-top: 30px;
}

.subject-topper-card {
  background: white;
  border: 2px solid #f4c430;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 2px 10px rgba(11, 44, 93, 0.12);
  transition: all 0.3s ease;
}

.subject-topper-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(11, 44, 93, 0.2);
  border-color: #0b2c5d;
}

.subject-topper-card h3 {
  color: #0b2c5d;
  font-size: 20px;
  margin-top: 0;
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 2px solid #f4c430;
  font-weight: 600;
}

.topper-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.topper-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  background: #f9f9f9;
  border-radius: 8px;
  transition: all 0.2s ease;
}

.topper-item:hover {
  background: #f0f0f0;
  transform: translateX(5px);
}

.subject-badge {
  display: inline-block;
  background: linear-gradient(135deg, #f4c430 0%, #f9a825 100%);
  color: white;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  min-width: 100px;
  text-align: center;
}

.topper-item p {
  margin: 0;
  color: #333;
  font-size: 14px;
  flex: 1;
}

.topper-item p strong {
  color: #0b2c5d;
  font-weight: 600;
}

/* RESPONSIVE SUBJECT TOPPERS */
@media (max-width: 768px) {
  .subject-toppers-grid {
    grid-template-columns: 1fr;
  }

  .subject-topper-card {
    padding: 20px;
  }

  .subject-badge {
    font-size: 11px;
    min-width: 80px;
  }
}
/* ===== HAMBURGER MENU STYLES ===== */
.menu-toggle {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  gap: 6px;
  z-index: 1001;
}

.menu-toggle span {
  width: 25px;
  height: 3px;
  background: white;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* ===== RESPONSIVE NAVBAR ===== */
@media screen and (max-width: 768px) {
  .navbar {
    flex-wrap: wrap;
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 999;
    flex-direction: column;
  }

  .logo-area {
    order: 1;
    width: 100%;
    gap: 10px;
    display: flex;
    align-items: center;
    padding: 15px 20px;
    background: #0b2c5d;
  }

  .logo-area img {
    width: 70px;
    position: relative;
    left: auto;
    top: auto;
  }

  .logo-area > div {
    display: flex;
    flex-direction: column;
  }

  .logo-area h1 {
    font-size: 28px;
    margin-left: 10px;
    font-weight: 700;
  }

  .logo-area p {
    font-size: 13px;
    margin-left: 10px;
  }

  .social-icons-left {
    order: 2;
    display: flex;
    gap: 10px;
    align-items: center;
    padding: 12px 20px;
    background: #0b2c5d;
    width: 100%;
    justify-content: flex-start;
    border-top: 3px solid #f4c430;
    border-bottom: 1px solid rgba(244, 196, 48, 0.2);
  }

  .social-icon {
    width: 32px;
    height: 32px;
  }

  .social-icon svg {
    width: 16px;
    height: 16px;
  }

  .menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    order: 2;
    position: absolute;
    right: 20px;
    top: 154px;
    transform: translateY(-50%);
    background: none;
    padding: 0;
  }

  nav {
    width: 100%;
    order: 3;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    z-index: 100;
    background: #0b2c5d;
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  nav.active {
    max-height: 1200px;
  }

  nav a {
    display: block;
    margin-left: 0;
    padding: 14px 20px;
    border-bottom: 1px solid rgba(244, 196, 48, 0.15);
    font-weight: 500;
    font-size: 15px;
    transition: all 0.25s ease;
    color: white;
  }

  nav a::after {
    display: none;
  }

  nav a:hover {
    color: #f4c430;
    background: linear-gradient(
      90deg,
      rgba(244, 196, 48, 0.15) 0%,
      transparent 100%
    );
    padding-left: 25px;
  }

  .dropdown {
    position: relative;
    display: block;
    margin-left: 0;
    width: 100%;
  }

  .dropdown > a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
    width: 100%;
    text-align: left;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.25s ease;
  }

  .dropdown > a::before {
    content: "▼";
    display: inline-block;
    font-size: 11px;
    transition: transform 0.3s ease;
    margin-left: 0;
    padding-left: 15px;
    flex-shrink: 0;
    color: #f4c430;
    order: 2;
  }

  .dropdown.active > a {
    background: rgba(244, 196, 48, 0.1);
    color: #f4c430;
  }

  .dropdown.active > a::before {
    transform: rotate(180deg);
  }

  .dropdown-menu {
    position: static;
    opacity: 0;
    max-height: 0;
    visibility: hidden;
    transform: none;
    border: none;
    background: rgba(11, 44, 93, 0.95);
    margin-top: 0;
    padding: 0;
    overflow: hidden;
    transition: all 0.3s ease;
  }

  .dropdown.active .dropdown-menu {
    opacity: 1;
    max-height: 1000px;
    visibility: visible;
    padding: 8px 0;
  }

  .dropdown-menu a {
    padding: 12px 20px 12px 45px;
    font-size: 14px;
    border-bottom: 1px solid rgba(244, 196, 48, 0.08);
    display: block;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
  }

  .dropdown-menu a:hover {
    background: linear-gradient(
      90deg,
      rgba(244, 196, 48, 0.2) 0%,
      transparent 100%
    );
    color: #f4c430;
    padding-left: 55px;
  }

  /* Nested dropdown for mobile */
  .dropdown-menu .dropdown {
    width: 100%;
  }

  .dropdown-menu .dropdown a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px 12px 45px;
    width: 100%;
    font-weight: 500;
    border-bottom: none;
  }

  .dropdown-menu .dropdown a::before {
    /* content: "▶"; */
    display: inline-block;
    font-size: 9px;
    margin-left: auto;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    color: rgba(244, 196, 48, 0.8);
    padding-left: 15px;
  }

  .dropdown-menu .dropdown.active a {
    background: rgba(244, 196, 48, 0.12);
    color: #f4c430;
  }

  .dropdown-menu .dropdown.active a::before {
    transform: rotate(90deg);
  }

  .dropdown-menu .dropdown > .dropdown-menu {
    position: static;
    left: auto;
    margin-left: 0;
    margin-top: 0;
    margin-bottom: 0;
    transform: none;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    visibility: hidden;
    padding: 0;
    background: rgba(11, 44, 93, 0.85);
    transition: all 0.3s ease;
    display: none;
  }

  .dropdown-menu .dropdown.active > .dropdown-menu {
    opacity: 1;
    max-height: 500px;
    visibility: visible;
    overflow: visible;
    margin-top: 0;
    padding: 0;
    display: block;
  }

  .dropdown-menu .dropdown > .dropdown-menu a {
    padding: 12px 20px 12px 60px !important;
    font-size: 14px;
    border-bottom: 1px solid rgba(244, 196, 48, 0.08);
    display: block;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
  }

  .dropdown-menu .dropdown.active > a::before {
    transform: rotate(90deg);
  }
}

@media screen and (max-width: 480px) {
  .logo-area {
    padding: 12px 15px;
  }

  .logo-area img {
    width: 60px;
  }

  .logo-area h1 {
    font-size: 13px;
    margin-left: 0 !important;
  }

  .logo-area p {
    font-size: 9px;
    margin-left: 0 !important;
  }

  .social-icons-left {
    gap: 8px;
    padding: 10px 15px;
  }

  .social-icon {
    width: 30px;
    height: 30px;
  }

  .social-icon svg {
    width: 14px;
    height: 14px;
  }

  .menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 110px;
    transform: translateY(-50%);
    right: 15px;
    order: auto;
  }

  #navMenu {
    gap: 0;
  }

  nav.active {
    max-height: 1200px;
  }

  .dropdown-menu .dropdown > .dropdown-menu {
    max-height: 800px;
  }
}

/* FEE STRUCTURE PAGE STYLES */

/* Page Header */
.page-header {
  background: linear-gradient(135deg, #0b2c5d 0%, #1a4d8f 100%);
  color: white;
  padding: 80px 40px;
  text-align: center;
  margin-top: 0;
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-header h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  font-weight: 700;
}

.page-header p {
  font-size: 1.1rem;
  opacity: 0.9;
}

/* Fee Structure Section */
.fee-structure-section {
  padding: 60px 40px;
  background: #f9f9f9;
}

.container {
  max-width: 1000px;
  margin: 0 auto;
}

.fee-intro {
  text-align: center;
  margin-bottom: 50px;
}

.fee-intro h2 {
  font-size: 2rem;
  color: #0b2c5d;
  margin-bottom: 15px;
  font-weight: 700;
}

.fee-intro p {
  font-size: 1rem;
  color: #666;
  line-height: 1.6;
}

/* Fee Tables */
.fee-table-wrapper {
  background: white;
  padding: 30px;
  margin-bottom: 40px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.fee-table-wrapper h3 {
  color: #0b2c5d;
  font-size: 1.5rem;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 3px solid #f4c430;
}

.fee-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}

.fee-table thead {
  background: #0b2c5d;
  color: white;
}

.fee-table th,
.fee-table td {
  padding: 15px;
  text-align: left;
  border-bottom: 1px solid #e0e0e0;
}

.fee-table th {
  font-weight: 600;
  text-align: center;
  padding: 12px 15px;
}

.fee-table tbody tr:hover {
  background: #f5f5f5;
}

.fee-table tbody tr:nth-child(even) {
  background: #f9f9f9;
}

.fee-table td {
  color: #333;
}

.fee-table td:not(:first-child) {
  text-align: center;
  font-weight: 500;
  color: #0b2c5d;
}

.total-row {
  background: #e8f0ff;
  font-weight: 600;
  border-top: 2px solid #f4c430;
}

.total-row td {
  color: #0b2c5d;
  font-size: 1rem;
}

/* Important Info Section */
.fee-info {
  background: white;
  padding: 30px;
  border-radius: 8px;
  margin-bottom: 40px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.fee-info h3 {
  color: #0b2c5d;
  font-size: 1.5rem;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 3px solid #f4c430;
}

.info-list {
  list-style: none;
  padding: 0;
}

.info-list li {
  padding: 12px 0;
  color: #333;
  border-bottom: 1px solid #e0e0e0;
  line-height: 1.6;
}

.info-list li:last-child {
  border-bottom: none;
}

/* Payment Section */
.payment-section {
  background: white;
  padding: 30px;
  border-radius: 8px;
  margin-bottom: 40px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.payment-section h3 {
  color: #0b2c5d;
  font-size: 1.5rem;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 3px solid #f4c430;
}

.payment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 25px;
}

.payment-card {
  background: linear-gradient(135deg, #f0f7ff 0%, #e8f0ff 100%);
  padding: 25px;
  border-radius: 8px;
  border-left: 4px solid #f4c430;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.payment-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(11, 44, 93, 0.15);
}

.payment-card h4 {
  color: #0b2c5d;
  font-size: 1.1rem;
  margin-bottom: 10px;
  font-weight: 600;
}

.payment-card p {
  color: #666;
  font-size: 0.9rem;
  line-height: 1.5;
}

/* CTA Section */
.fee-cta {
  background: linear-gradient(135deg, #0b2c5d 0%, #1a4d8f 100%);
  color: white;
  padding: 40px;
  border-radius: 8px;
  text-align: center;
  margin-bottom: 0;
}

.fee-cta h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  border: none;
  color: white;
}

.fee-cta p {
  font-size: 1rem;
  margin-bottom: 20px;
  opacity: 0.95;
}

.btn {
  padding: 12px 30px;
  font-size: 1rem;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 600;
}

.btn.primary {
  background: #f4c430;
  color: #0b2c5d;
}

.btn.primary:hover {
  background: #e6b300;
  transform: scale(1.05);
}

/* Footer */
.footer {
  background: #0b2c5d;
  color: white;
  padding: 20px 20px 0;
  text-align: center;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 10000px;
  margin: 0 auto 30px;
  text-align: left;
}

.footer-section h5 {
  color: #f4c430;
  font-size: 1.1rem;
  margin-bottom: 15px;
  font-weight: 600;
}

.footer-section p,
.footer-section a {
  color: #ccc;
  font-size: 0.9rem;
  line-height: 1.8;
  text-decoration: none;
}

.footer-section a:hover {
  color: #f4c430;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li {
  margin-bottom: 10px;
}

.footer-bottom {
  border-top: 1px solid #1a4d8f;
  padding-top: 20px;
  color: #aaa;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .page-header {
    padding: 40px 20px;
    min-height: auto;
  }

  .page-header h1 {
    font-size: 1.8rem;
  }

  .page-header p {
    font-size: 0.95rem;
  }

  .fee-structure-section {
    padding: 40px 20px;
  }

  .container {
    padding: 0;
  }

  .fee-table-wrapper {
    padding: 20px;
    margin-bottom: 30px;
  }

  .fee-table-wrapper h3 {
    font-size: 1.2rem;
  }

  .fee-table th,
  .fee-table td {
    padding: 10px 8px;
    font-size: 0.85rem;
  }

  .payment-grid {
    grid-template-columns: 1fr;
  }

  .fee-cta {
    padding: 30px 20px;
  }

  .fee-cta h3 {
    font-size: 1.2rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

@media (max-width: 480px) {
  .page-header {
    padding: 30px 15px;
  }

  .page-header h1 {
    font-size: 1.5rem;
  }

  .fee-structure-section {
    padding: 25px 15px;
  }

  .fee-intro h2 {
    font-size: 1.5rem;
  }

  .fee-table {
    font-size: 0.8rem;
  }

  .fee-table th,
  .fee-table td {
    padding: 8px 5px;
  }

  .btn {
    padding: 10px 20px;
    font-size: 0.9rem;
  }

  .fee-info h3,
  .payment-section h3 {
    font-size: 1.2rem;
  }

  .info-list li {
    padding: 10px 0;
  }
}

/* ===== CAMPUS GALLERY MODAL ===== */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  animation: fadeInUp 0.4s ease-out;
}

.modal.active {
  display: flex;
  justify-content: center;
  align-items: center;
}

.modal-content {
  position: relative;
  width: 90%;
  max-width: 900px;
  height: auto;
  max-height: 85vh;
  background-color: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  animation: scaleIn 0.4s ease-out;
}

.modal-close {
  position: absolute;
  top: 15px;
  right: 20px;
  z-index: 10;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  border: none;
  font-size: 32px;
  padding: 5px 12px;
  cursor: pointer;
  border-radius: 50%;
  transition: all 0.3s ease;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-close:hover {
  background: rgba(0, 0, 0, 0.9);
  transform: scale(1.1);
}

.campus-slider-container {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.campus-slides {
  position: relative;
  width: 100%;
  flex: 1;
  overflow: hidden;
  min-height: 400px;
}

.campus-slide {
  display: none;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.campus-slide.active {
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeInUp 0.5s ease-out;
}

.campus-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.campus-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.6);
  color: white;
  border: none;
  font-size: 24px;
  padding: 12px 16px;
  cursor: pointer;
  border-radius: 4px;
  z-index: 5;
  transition: all 0.3s ease;
}

.campus-nav:hover {
  background: rgba(0, 0, 0, 0.9);
  transform: translateY(-50%) scale(1.1);
}

.campus-nav.prev {
  left: 15px;
}

.campus-nav.next {
  right: 15px;
}

.campus-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 15px;
  gap: 10px;
  background: rgba(0, 0, 0, 0.3);
}

.campus-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
}

.campus-dot.active {
  background: white;
  transform: scale(1.3);
}

.campus-dot:hover {
  background: rgba(255, 255, 255, 0.8);
}

/* ===== RESPONSIVE CAMPUS GALLERY ===== */
@media (max-width: 768px) {
  .modal-content {
    width: 95%;
    max-height: 80vh;
  }

  .campus-slides {
    min-height: 300px;
  }

  .campus-nav {
    font-size: 20px;
    padding: 10px 14px;
  }

  .modal-close {
    font-size: 28px;
    width: 40px;
    height: 40px;
  }
}

@media (max-width: 480px) {
  .campus-slides {
    min-height: 250px;
  }

  .campus-nav {
    font-size: 18px;
    padding: 8px 12px;
  }

  .campus-dots {
    padding: 10px;
    gap: 8px;
  }

  .campus-dot {
    width: 10px;
    height: 10px;
  }

  .modal-close {
    font-size: 24px;
    width: 36px;
    height: 36px;
    top: 10px;
    right: 10px;
  }
}
