/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  line-height: 1.6;
  background: #f8f9fa;
  color: #333;
}

/* Navbar */
.navbar {
  background-color: #002366;
  color: white;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  position: sticky;
  top: 0;
  z-index: 999;
}

/* === HORIZONTAL LOGO BANNER === */
.logo-banner.horizontal-logo {
  background: #fff;
  padding: 2rem 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo-wrap {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.logo-png {
  width: 80px;
  height: 80px;
}

.school-name .line1 { font-size: 1.4rem; font-weight: bold; }
.school-name .line2 { font-size: 1.2rem; }
.school-name .line3 { font-size: 0.9rem; font-weight: 300; color: #ccc; }

.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  align-items: center;
  flex-wrap: wrap;
}

/* Nav Links */
.nav-links {
  display: flex;
  gap: 1.5rem;
  list-style: none;
  transition: max-height 0.3s ease;
}

.nav-links a {
  color: white;
  text-decoration: none;
}

/* DROPDOWN MENU */
.dropdown {
  position: relative;
}
.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  border-radius: 4px;
  min-width: 260px;
  padding: 0.5rem 0;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
  z-index: 1000;
}
.dropdown-menu li a {
  display: block;
  padding: 0.75rem 1.25rem;
  color: #002366;
  transition: background 0.2s ease;
}
.dropdown-menu li a::before {
  content: '➤';
  color: #ffcc00;
  margin-right: 0.6rem;
}
.dropdown-menu li a:hover {
  background-color: #f0f4f8;
}
.dropdown:hover .dropdown-menu {
  display: block;
}

/* MOBILE NAV */
@media (max-width: 768px) {
  .nav-links {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    display: none;
    background-color: #002366;
  }
  .nav-links.active {
    display: flex;
  }
  .dropdown-menu {
    position: static;
    background: #002366;
    box-shadow: none;
  }
  .dropdown-menu a {
    color: white;
    padding-left: 2rem;
  }
  .dropdown-menu a:hover {
    background-color: #003399;
  }
  .hamburger {
    background: none;
    border: none;
    color: white;
    font-size: 1.8rem;
    cursor: pointer;
    display: block;
  }
}


/* Mobile Hamburger Menu */
.hamburger {
  display: none;
  font-size: 2rem;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
}

.circle-icon {
  display: inline-block;
  background-color: #FFD700;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  text-align: center;
  line-height: 36px;
  color: #001489;
  font-weight: bold;
}

/* Responsive Navbar */
@media (max-width: 768px) {
  .hamburger {
    display: block;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    background-color: #002366;
    padding: 1rem 0;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links li {
    text-align: center;
    padding: 0.5rem 0;
  }

  .dropdown-menu {
    position: static;
    background: #003366;
    padding: 0;
  }

  .dropdown-menu li {
    padding: 0.5rem 1rem;
  }

  .dropdown:hover .dropdown-menu {
    display: none;
  }
}

/* Sticky Shrink */
.navbar.scrolled {
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

/* Hero Grid */
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  padding: 2rem;
}

.card {
  color: white;
  padding: 2rem;
  height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s ease;
}


.contact-container {
  display: flex;
  justify-content: space-between;
  padding: 40px;
  gap: 40px;
}

.contact-left {
  flex: 1;
  max-width: 400px;
}

.contact-left p {
  margin: 10px 0;
  font-size: 16px;
}

.contact-left .map iframe {
  width: 100%;
  border: 0;
  border-radius: 8px;
}

.contact-right {
  flex: 1;
}

form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

form label {
  font-size: 14px;
  font-weight: 500;
}

form input,
form textarea {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 14px;
}

form textarea {
  resize: vertical;
  min-height: 120px;
}

button[type="submit"] {
  background-color: #001489;
  color: #fff;
  border: none;
  padding: 12px;
  font-size: 16px;
  border-radius: 4px;
  cursor: pointer;
}

button[type="submit"]:hover {
  background-color: #0033a0;
}

/* Floating Banner */
.floating-banner {
  position: fixed;
  top: 50%;
  right: 0;
  background: #ffcc00;
  color: #002366;
  padding: 1rem;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-weight: bold;
  z-index: 100;
}
.floating-banner a {
  color: inherit;
  text-decoration: none;
}

/* Footer */
.site-footer {
  background-color: #fff;
  padding: 4rem 2rem 2rem;
  border-top: 1px solid #ddd;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-column h4 {
  font-size: 1rem;
  font-weight: bold;
  margin-bottom: 1rem;
  color: #444;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column ul li {
  margin-bottom: 0.5rem;
}

.footer-column ul li a {
  color: #333;
  text-decoration: none;
  font-size: 0.95rem;
}

.footer-column ul li a:hover {
  text-decoration: underline;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  font-size: 0.9rem;
  color: #666;
  border-top: 1px solid #ccc;
  padding-top: 1rem;
}

.footer-socials a {
  margin-left: 1rem;
  color: #000;
  font-weight: bold;
  font-size: 1rem;
  text-decoration: none;
}
/* Discover More Section */
.discover-more {
  background: #fdd835;
  background-image: url('../assets/watermark.jpg'); /* Replace with your faint logo PNG */
  background-repeat: no-repeat;
  background-position: center;
  background-size: 70%;
  text-align: center;
  padding: 3rem 1rem;
}
.discover-more h2 {
  font-size: 2rem;
  color: #002366;
  margin-bottom: 2rem;
}
.discover-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}
.discover-card {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  text-align: center;
  text-decoration: none;
  color: #002366;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
  width: 250px;
}
.discover-card:hover {
  transform: translateY(-5px);
}
.discover-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}
.discover-card p {
  font-weight: bold;
  font-size: 1rem;
  padding: 1rem 0;
}
.about-section {
  background: #eaeaf5;
  padding: 4rem 2rem;
}
.about-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
  flex-wrap: wrap;
  gap: 2rem;
}
.about-text {
  flex: 1 1 55%;
}
.about-text h1 {
  font-size: 2.5rem;
  color: #002366;
  margin-bottom: 0.5rem;
}
.about-text h2 {
  font-size: 1.5rem;
  color: #002366;
  margin-bottom: 1rem;
}
.about-text p {
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 1.2rem;
}
.about-text .highlight {
  color: #002366;
  font-weight: bold;
}
.about-image {
  flex: 1 1 40%;
}
.about-image img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

@media (max-width: 768px) {
  .about-content {
    flex-direction: column;
  }
  .about-text, .about-image {
    flex: 1 1 100%;
  }
  .about-text h1 {
    font-size: 2rem;
  }
}
.about-section2 {
  background-color: #ffffff;
  padding: 4rem 1.5rem;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.about-section2 .ethos1 {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

@media (min-width: 1024px) {
  .about-section2 .ethos1 {
    flex-direction: row;
    align-items: center;
  }
}

.ethos1 img {
  width: 100%;
  height: auto;
  border-radius: 0;
  box-shadow: none;
  object-fit: cover;
}

.ethos1 .text-content {
  flex: 1;
  text-align: left;
}

.ethos1 .text-content h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .ethos1 .text-content h2 {
    font-size: 2.5rem;
  }
}

/* Sticky Shrink */
.navbar.scrolled {
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}