/* General Styles */
body {
  margin: 0;
  font-family: 'Segoe UI', 'Roboto', Arial, sans-serif;
  background: #f8fafc;
  color: #222;
}
body, html {
  cursor: none !important;
}
#custom-cursor {
  position: fixed;
  left: 0;
  top: 0;
  width: 12px;
  height: 12px;
  background: #ffe066;
  border-radius: 50%;
  pointer-events: none;
  z-index: 10000;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 12px 4px #ffe06699, 0 0 24px 8px #fffbe6;
  transition: background 0.2s, box-shadow 0.2s;
}
#custom-cursor.cursor-hover-link {
  background: #a685e2;
  box-shadow: 0 0 16px 6px #a685e299;
}


.header .container {
  background: rgba(0,0,0,0.4); 
  padding: 20px 0;
}
.logo, .header nav a {
  color: #fff;
}
.container {
  width: 92%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  font-size: 1.7rem;
  font-weight: bold;
  letter-spacing: 1.5px;
  color: #fbc02d;
}
nav {
  display: flex;
  gap: 1.5rem;
}
nav a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
  padding: 0.25rem 0.5rem;
  border-radius: 3px;
}
nav a:hover, nav a.active {
  color: #fbc02d;
  background: rgba(255,255,255,0.08);
}
.hero {
  background: linear-gradient(rgba(26,35,126,0.7),rgba(26,35,126,0.7)), url('../IMAGES/edit-4.jpg') center/cover no-repeat;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.hero-overlay {
  background: rgba(255,255,255,0.92);
  color: #0C1830;
  padding: 2rem 3rem;
  border-radius: 12px;
  text-align: center;
  max-width: 90vw;
  box-shadow: 0 4px 24px rgba(26,35,126,0.08);
}
.hero-overlay h1 {
  font-size: 2.3rem;
  margin-bottom: 1rem;
  font-weight: 700;
}
.hero-overlay p {
  font-size: 1.15rem;
  margin-bottom: 1.5rem;
}
.cta-btn {
  background: #fbc02d;
  color: #0C1830;
  padding: 0.7rem 2rem;
  border: none;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1rem;
  transition: background 0.3s;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(26,35,126,0.08);
}
.cta-btn:hover {
  background: #ffd54f;
}
.section {
  padding: 3rem 0 2rem 0;
  background: #fff;
  margin-bottom: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 2px 12px rgba(26,35,126,0.04);
}
.section-title {
  color: #0C1830;
  font-size: 2rem;
  margin-bottom: 1rem;
  font-weight: 600;
  text-align: center;
}
.section-content {
  max-width: 900px;
  margin: 0 auto;
  font-size: 1.1rem;
  color: #333;
  text-align: center;
}
footer {
  background: #0C1830;
  color: #fff;
  text-align: center;
  padding: 1.2rem 0 0.5rem 0;
  margin-top: 2rem;
}
footer .footer-links {
  margin-bottom: 0.5rem;
}
footer a {
  color: #fbc02d;
  text-decoration: none;
  margin: 0 0.7rem;
  font-weight: 500;
}
footer a:hover {
  text-decoration: underline;
}
/* Fast Facts section */
.fast-facts {
  background: #f7f7f7;
  padding: 30px 0;
}
.fast-facts-list {
  list-style: disc inside;
  margin: 0 0 0 20px;
  color: #333;
}

/* Fast Facts Carousel Styles */
.fast-facts-carousel {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}
.fast-facts-list {
  display: flex;
  flex-direction: row;
  width: 100%;
  overflow: hidden;
  padding: 0;
  margin: 0 10px;
  list-style: none;
  min-height: 60px;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.carousel-item {
  display: none;
  flex: 1 0 100%;
  font-size: 1.1rem;
  color: #333;
  background: #fff;
  border-radius: 8px;
  padding: 18px 24px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.07);
  text-align: center;
  transition: opacity 0.4s;
  justify-content: center;
  align-items: center;
}
.carousel-item.active {
  display: flex;
  justify-content: center;
  align-items: center;
}
.carousel-arrow {
  background: #1a4d7a;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  font-size: 1.5rem;
  cursor: pointer;
  transition: background 0.2s;
  margin: 0 8px;
  outline: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
.carousel-arrow:hover {
  background: #0d2c4a;
}

/* Fast Facts Hover Effect */
.fast-facts-list.hoverable {
  display: block;
  padding: 0;
}
.hover-fact {
  position: relative;
  background: #fff;
  margin: 12px 0;
  padding: 18px 24px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.07);
  font-size: 1.1rem;
  color: #333;
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.2s;
}
.hover-fact:hover {
  background: #e9f5ff;
  box-shadow: 0 4px 16px rgba(26,77,122,0.12);
}
.fact-extra {
  display: none;
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  background: #1a4d7a;
  color: #fff;
  padding: 12px 18px;
  border-radius: 0 0 8px 8px;
  font-size: 1rem;
  z-index: 2;
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
  margin-top: 4px;
  transition: opacity 0.2s;
  opacity: 0;
  pointer-events: none;
}
.hover-fact:hover .fact-extra {
  display: block;
  opacity: 1;
  pointer-events: auto;
}

/* Vision & Mission section */
.vision-mission {
  background: #e9f5ff;
  padding: 30px 0;
}
.vision-mission h3 {
  margin-top: 15px;
  color: #1a4d7a;
}
.vision-mission ul {
  list-style: circle inside;
  margin-left: 20px;
  color: #222;
}
/* Vision & Mission Carousel Styles */
.vision-mission-carousel {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}
.vision-mission-list {
  display: flex;
  flex-direction: row;
  width: 100%;
  overflow: hidden;
  padding: 0;
  margin: 0 10px;
  list-style: none;
  min-height: 80px;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.vm-carousel-item {
  display: none;
  flex: 1 0 100%;
  background: #e9f5ff;
  border-radius: 8px;
  padding: 24px 32px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.07);
  text-align: center;
  transition: opacity 0.4s;
  justify-content: center;
  align-items: center;
}
.vm-carousel-item.active {
  display: flex;
  justify-content: center;
  align-items: center;
}
.vm-carousel-arrow {
  background: #1a4d7a;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  font-size: 1.5rem;
  cursor: pointer;
  transition: background 0.2s;
  margin: 0 8px;
  outline: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
.vm-carousel-arrow:hover {
  background: #0d2c4a;
}
/* Center section titles */
.section-title {
  text-align: center;
}

/* Sticky Navigation Bar */
.header.sticky-nav {
  position: sticky;
  top: 0;
  width: 100%;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.07);
  z-index: 1000;
}
.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 70px;
}
.logo {
  font-size: 1.6rem;
  font-weight: bold;
  color: #1a4d7a;
  letter-spacing: 1px;
  padding: 0 10px;
}
.main-nav {
  position: relative;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  list-style: none;
  margin: 0;
  padding: 0;
  transition: all 0.3s;
}
.nav-links li {
  position: relative;
}
.nav-links a {
  display: block;
  padding: 10px 18px;
  color: #1a4d7a;
  text-decoration: none;
  font-weight: 500;
  border-radius: 4px;
  transition: background 0.2s, color 0.2s;
}
.nav-links a.active,
.nav-links a:hover {
  background: #e9f5ff;
  color: #0d2c4a;
}
/* Dropdowns */
.dropdown .arrow {
  font-size: 0.8em;
  margin-left: 4px;
}
.dropdown-menu {
  display: none;
  position: absolute;
  left: 0;
  top: 100%;
  background: #fff;
  min-width: 180px;
  box-shadow: 0 4px 16px rgba(26,77,122,0.10);
  border-radius: 0 0 8px 8px;
  z-index: 1001;
  padding: 8px 0;
}
.dropdown.open .dropdown-menu,
.dropdown:hover .dropdown-menu {
  display: block;
}
.dropdown-menu li a {
  padding: 10px 20px;
  color: #0C1830;
  border-radius: 0;
  font-weight: 400;
}
.dropdown-menu li a:hover {
  background: #FFD700;
  color: #0d2c4a;
}
/* Hamburger Menu */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  margin-left: 10px;
}
.hamburger {
  width: 28px;
  height: 3px;
  background: #0C1830;
  display: block;
  position: relative;
  border-radius: 2px;
  transition: all 0.3s;
}
.hamburger::before,
.hamburger::after {
  content: '';
  position: absolute;
  left: 0;
  width: 28px;
  height: 3px;
  background: #0C1830;
  border-radius: 2px;
  transition: all 0.3s;
}
.hamburger::before {
  top: -9px;
}
.hamburger::after {
  top: 9px;
}
.nav-toggle.open .hamburger {
  background: transparent;
}
.nav-toggle.open .hamburger::before {
  transform: rotate(45deg) translate(5px, 5px);
}
.nav-toggle.open .hamburger::after {
  transform: rotate(-45deg) translate(5px, -5px);
}
/* Responsive Styles */
@media (max-width: 900px) {
  .nav-links {
    position: absolute;
    top: 70px;
    right: 0;
    background: #fff;
    flex-direction: column;
    width: 220px;
    box-shadow: 0 4px 16px rgba(26,77,122,0.10);
    border-radius: 0 0 8px 8px;
    align-items: flex-start;
    gap: 0;
    padding: 12px 0;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: all 0.3s;
    z-index: 1002;
  }
  .nav-links.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
  .nav-links li {
    width: 100%;
  }
  .nav-links a {
    width: 100%;
    padding: 12px 24px;
  }
  .dropdown-menu {
    position: static;
    min-width: 100%;
    box-shadow: none;
    border-radius: 0;
    padding: 0;
  }
  .dropdown.open .dropdown-menu {
    display: block;
  }
  .nav-toggle {
    display: block;
  }
}

@media (max-width: 700px) {
  .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
  .hero-overlay {
    padding: 1rem;
  }
  .hero-overlay h1 {
    font-size: 1.3rem;
  }
  .section {
    padding: 1.2rem 0.5rem;
  }
  .section-title {
    font-size: 1.2rem;
  }
  .fast-facts-carousel {
    flex-direction: column;
  }
  .fast-facts-list {
    min-height: 80px;
  }
  .carousel-item {
    font-size: 1rem;
    padding: 12px 8px;
  }
  .hover-fact {
    font-size: 1rem;
    padding: 12px 8px;
  }
  .fact-extra {
    font-size: 0.95rem;
    padding: 10px 6px;
  }
  .vision-mission-carousel {
    flex-direction: column;
  }
  .vision-mission-list {
    min-height: 100px;
  }
  .vm-carousel-item {
    font-size: 1rem;
    padding: 16px 8px;
  }
} 

/* Logo image styling */
.school-logo {
  height: 90px;
  width: auto;
  display: block;
  margin: 0 auto;
}

/* Enhanced Dropdown Menu Styles */
.main-nav .dropdown-menu {
  background: #142850; /* Navy blue */
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(20,40,80,0.18);
  padding: 0.5em 0;
  min-width: 180px;
  border: 2px solid #FFD700; /* Gold */
  opacity: 0;
  visibility: hidden;
  position: absolute;
  z-index: 100;
  transition: opacity 0.2s, visibility 0.2s;
}
.main-nav .dropdown.open .dropdown-menu,
.main-nav .dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
}
.main-nav .dropdown-menu li {
  padding: 0.5em 1.2em;
  transition: background 0.2s, color 0.2s;
  background: transparent;
}
.main-nav .dropdown-menu li a {
  color: #FFD700; /* Gold */
  text-decoration: none;
  display: block;
  font-weight: 500;
}
/* Remove any light blue hover effect from dropdowns */
.main-nav .dropdown-menu li:hover {
  background: #FFD700 !important; /* Gold only */
}
.main-nav .dropdown-menu li:hover a {
  color: #254076 !important; /* Lighter navy blue text on gold background */
}
.main-nav .dropdown > a .arrow {
  margin-left: 0.3em;
  font-size: 0.8em;
  color: #FFD700;
} 

/* Header and Navigation Enhancements */
.header.sticky-nav {
  background: #142850; /* Navy blue */
  box-shadow: 0 2px 12px rgba(20,40,80,0.10);
  padding: 0;
}
.container.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0 32px;
  min-height: 90px;
}
.logo {
  display: flex;
  align-items: center;
  padding: 8px 24px 8px 0;
}
.school-logo {
  height: 90px;
  width: auto;
  display: block;
}
.main-nav {
  flex: 1;
  display: flex;
  align-items: center;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  margin-left: 32px;
}
.nav-links li {
  list-style: none;
}
.nav-links a {
  color: #fff;
  font-weight: 600;
  font-size: 1.1em;
  text-decoration: none;
  padding: 8px 18px;
  border-radius: 6px;
  transition: background 0.2s, color 0.2s;
  position: relative;
}
.nav-links a.active, .nav-links a:hover {
  background: #FFD700;
  color: #142850;
}
.nav-links .dropdown > a {
  display: flex;
  align-items: center;
}
.nav-links .arrow {
  color: #FFD700;
  margin-left: 0.3em;
  font-size: 0.8em;
}
@media (max-width: 900px) {
  .container.nav-container {
    flex-direction: column;
    align-items: flex-start;
    padding: 0 12px;
    min-height: unset;
  }
  .logo {
    padding: 8px 0 8px 0;
  }
  .nav-links {
    flex-direction: column;
    gap: 0;
    margin-left: 0;
    width: 100%;
  }
  .nav-links li {
    width: 100%;
  }
  .nav-links a {
    width: 100%;
    text-align: left;
    padding: 12px 18px;
  }
} 

#cursor-follower {
  position: fixed;
  left: 0;
  top: 0;
  width: 14px;
  height: 14px;
  background: #fffbe6;
  border: 2px solid #5f72bd;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 8px 2px #5f72bd44;
  transition: background 0.2s, border 0.2s, width 0.2s, height 0.2s, box-shadow 0.2s;
}
#cursor-follower.follower-click {
  width: 28px;
  height: 28px;
  background: #ffe066;
  border-color: #a685e2;
  box-shadow: 0 0 16px 4px #ffe06699;
}
#cursor-follower.follower-hover-link {
  background: #a685e2;
  border-color: #ffe066;
  box-shadow: 0 0 16px 4px #a685e299;
} 

@media (max-width: 1200px) {
  .container, .container.nav-container {
    max-width: 98vw;
    width: 98vw;
    padding: 0 10px;
  }
  .about-images-history {
    gap: 2vw;
  }
}
@media (max-width: 900px) {
  .container, .container.nav-container {
    flex-direction: column;
    align-items: flex-start;
    padding: 0 6px;
    min-height: unset;
    width: 100vw;
    max-width: 100vw;
  }
  .logo {
    padding: 8px 0 8px 0;
    text-align: center;
    width: 100%;
  }
  .main-nav {
    width: 100%;
  }
  .nav-links {
    flex-direction: column;
    gap: 0;
    margin-left: 0;
    width: 100%;
  }
  .nav-links li {
    width: 100%;
  }
  .nav-links a {
    width: 100%;
    text-align: left;
    padding: 14px 18px;
    font-size: 1.1em;
  }
  .about-images-history {
    flex-direction: column;
    align-items: center;
    gap: 2vw;
  }
  .history-image-container {
    width: 95vw;
    max-width: 98vw;
    height: 38vh;
    min-height: 160px;
    border-radius: 16px;
  }
  .about-history-img, .history-overlay {
    border-radius: 16px;
  }
}
@media (max-width: 700px) {
  .container, .container.nav-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
    padding: 0 2vw;
    width: 100vw;
    max-width: 100vw;
  }
  .hero-overlay {
    padding: 1rem;
    max-width: 98vw;
  }
  .hero-overlay h1 {
    font-size: 1.3rem;
  }
  .section {
    padding: 1.2rem 0.5rem;
  }
  .section-title {
    font-size: 1.2rem;
  }
  .fast-facts-carousel, .vision-mission-carousel {
    flex-direction: column;
  }
  .fast-facts-list, .vision-mission-list {
    min-height: 80px;
  }
  .carousel-item, .vm-carousel-item {
    font-size: 1rem;
    padding: 12px 8px;
  }
  .about-images-history {
    flex-direction: column;
    align-items: center;
    gap: 1.2vw;
  }
  .history-image-container {
    width: 98vw;
    max-width: 98vw;
    height: 180px;
    min-height: 120px;
    border-radius: 12px;
  }
  .about-history-img, .history-overlay {
    border-radius: 12px;
  }
  .cta-btn {
    width: 100%;
    font-size: 1rem;
    padding: 0.7rem 0;
  }
}
@media (max-width: 480px) {
  .container, .container.nav-container {
    padding: 0 2vw;
  }
  .hero-overlay {
    padding: 0.5rem;
    font-size: 0.95rem;
  }
  .section {
    padding: 0.7rem 0.2rem;
  }
  .section-title {
    font-size: 1rem;
  }
  .about-images-history {
    gap: 0.5vw;
  }
  .history-image-container {
    height: 120px;
    min-height: 80px;
  }
  .about-history-img, .history-overlay {
    border-radius: 8px;
  }
} 
