/* === RESET === */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.7;
  background: #f0f4f8;
  color: #333;
}

a {
  text-decoration: none;
  color: inherit;
}

/* === HEADER === */
header {
  background: #004080;
  color: #fff;
  padding: 15px 20px;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

header nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

header .logo {
  font-weight: bold;
  font-size: 1.5rem;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 25px;
}

.nav-links li a {
  color: #fff;
  font-weight: 600;
  padding: 8px 10px;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.nav-links li a:hover,
.nav-links li a.active {
  background: #ffb400;
  color: #000;
}

.apply-btn {
  background: #ffb400;
  border: none;
  padding: 8px 18px;
  border-radius: 5px;
  font-weight: bold;
  cursor: pointer;
  color: #000;
  transition: all 0.3s ease;
}

.apply-btn:hover {
  background: #e6a500;
}



/* === HERO SECTION === */
.hero {
  background: linear-gradient(rgba(0,64,128,0.7), rgba(0,64,128,0.7)), url('../images/school-bg.jpg') no-repeat center/cover;
  color: #fff;
  text-align: center;
  padding: 120px 20px;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.3rem;
  margin-bottom: 25px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.btn-primary {
  background: #ffb400;
  padding: 14px 28px;
  border-radius: 5px;
  font-weight: bold;
  color: #000;
  transition: background 0.3s ease;
}

.btn-primary:hover {
  background: #e6a500;
}

/* === SECTIONS === */
section {
  padding: 60px 20px;
  max-width: 1100px;
  margin: auto;
  background: #fff;
  border-radius: 10px;
  margin-bottom: 40px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

section h2 {
  margin-bottom: 25px;
  color: #004080;
  border-left: 5px solid #ffb400;
  padding-left: 12px;
  font-size: 2rem;
}

section h3 {
  margin-top: 20px;
  margin-bottom: 10px;
  color: #004080;
}

section p {
  margin-bottom: 15px;
  font-size: 1.05rem;
  color: #333;
}

section ul {
  list-style-type: disc;
  margin-left: 30px;
  margin-bottom: 15px;
}

.stats li {
  background: #e6f0fa;
  border: 1px solid #cce0ff;
  padding: 18px;
  margin-bottom: 15px;
  border-radius: 8px;
  font-weight: 500;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

/* === EDUCATION HUB === */
.edu-buttons {
  display: flex;
  justify-content: center;
  gap: 25px;
  margin-top: 25px;
  flex-wrap: wrap;
}

.edu-btn {
  background: #004080;
  color: #fff;
  padding: 14px 30px;
  border-radius: 6px;
  font-weight: bold;
  transition: background 0.3s ease;
}

.edu-btn:hover {
  background: #003060;
}

/* === EDUCATION PAGES (Nursery, Primary, Secondary) === */
.edu-page {
  background: #f7faff;
  padding: 25px;
  border-radius: 10px;
  border: 1px solid #d0e2ff;
  margin-bottom: 30px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.edu-page h2 {
  margin-bottom: 15px;
  color: #004080;
}

.edu-page p {
  margin-bottom: 15px;
}

.edu-page ul {
  margin-left: 25px;
}

.edu-page ul li {
  margin-bottom: 10px;
}

.edu-highlight {
  background: #e6f0fa;
  padding: 15px;
  border-left: 5px solid #004080;
  margin: 20px 0;
  border-radius: 6px;
  font-weight: 500;
}

/* === CONTACT FORM === */
form {
  background: #f7faff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  max-width: 650px;
  margin: 20px auto;
}

form label {
  font-weight: bold;
  margin-bottom: 5px;
  display: block;
}

form input, form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 20px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
}

form textarea {
  resize: vertical;
}

form button {
  background: #004080;
  color: #fff;
  padding: 12px 20px;
  border: none;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease;
}

form button:hover {
  background: #003060;
}

/* === CONTACT INFO === */
.contact-info {
  text-align: center;
  margin-top: 40px;
}

.contact-info h3 {
  color: #004080;
  margin-bottom: 15px;
}

.contact-info p {
  margin: 5px 0;
  font-size: 1rem;
}

/* === FOOTER === */
footer {
  background: #004080;
  color: #fff;
  padding: 60px 20px 30px;
  text-align: center;
}

footer nav ul.footer-links {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 25px;
  margin-bottom: 25px;
}

footer nav ul.footer-links li a {
  color: #fff;
  font-weight: 600;
  transition: color 0.3s ease;
}

footer nav ul.footer-links li a:hover {
  color: #ffb400;
}

.footer-contact {
  margin-bottom: 25px;
}

.footer-contact p {
  margin: 5px 0;
}

footer blockquote {
  font-style: italic;
  color: #ccc;
  margin: 20px auto;
  max-width: 700px;
}

/* === BURGER MENU === */
.burger {
  display: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
}

.burger div {
  width: 25px;
  height: 3px;
  background: #fff;
  transition: all 0.3s ease;
}

/* === RESPONSIVE === */
@media(max-width:768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    background: #004080;
    padding: 20px 0;
    text-align: center;
  }

  .nav-links.active {
    display: flex;
  }

  .burger {
    display: flex;
  }

  footer nav ul.footer-links {
    flex-direction: column;
  }

  .edu-buttons {
    flex-direction: column;
  }
}
