/* ================================
   RESET & BASE STYLES
================================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  line-height: 1.6;
  background: #f9f9f9;
  color: #333;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

h2 {
  text-align: center;
  font-size: 2rem;
  color: #004080;
  margin-bottom: 20px;
}

p {
  color: #333;
}

/* ================================
   HEADER & NAVIGATION
================================ */
header {
  background: #004080;
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}

.logo {
  font-size: 1.5rem;
  font-weight: bold;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
}

nav ul li a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

nav ul li a:hover,
nav ul li a.active {
  color: #ff9900;
}

/* Enrol Button */
nav ul li a.btn {
  background: #ff9900;
  padding: 8px 15px;
  border-radius: 5px;
  color: #fff;
  transition: background 0.3s ease;
}

nav ul li a.btn:hover {
  background: #e68900;
}

/* Hamburger Menu */
.hamburger {
  display: none;
  font-size: 1.8rem;
  cursor: pointer;
}

/* ================================
   HERO SECTION
================================ */
.hero {
  background: url('images/school.jpg') no-repeat center center/cover;
  color: #fff;
  text-align: center;
  padding: 100px 20px;
}

.hero h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

.countdown {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 30px;
  font-size: 1.1rem;
}

.countdown div {
  background: rgba(0, 0, 0, 0.5);
  padding: 10px 15px;
  border-radius: 8px;
  min-width: 80px;
}

.countdown span {
  display: block;
  font-size: 1.4rem;
  color: #ff9900;
  font-weight: bold;
}

.hero .contact {
  margin-top: 20px;
  font-weight: bold;
}

/* ================================
   SECTION STYLES
================================ */
section {
  padding: 60px 20px;
  text-align: center;
}

/* About Preview */
.about-preview {
  background: #f4f4f4;
}

.about-preview p {
  max-width: 700px;
  margin: 10px auto 20px;
}

/* Services Preview */
.services-preview {
  background: #fff;
}

.services-cards {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 25px;
}

.card {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  width: 260px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
}

.card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 10px;
}

.card h3 {
  color: #004080;
  margin: 10px 0;
}

.card p {
  font-size: 0.95rem;
}

/* Gallery Preview */
.gallery-preview {
  background: #f4f4f4;
}

.gallery-images {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 20px;
}

.gallery-images img {
  width: 200px;
  height: 150px;
  object-fit: cover;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.gallery-images img:hover {
  transform: scale(1.05);
}

/* ================================
   BUTTON STYLES
================================ */
.btn {
  display: inline-block;
  background: #ff9900;
  color: #fff;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 500;
  margin-top: 15px;
  transition: background 0.3s ease;
}

.btn:hover {
  background: #e68900;
}

/* ================================
   FOOTER
================================ */
footer {
  background: #222;
  color: #fff;
  text-align: center;
  padding: 25px 10px;
  margin-top: 40px;
}

footer p {
  font-size: 0.9rem;
}

/* ================================
   RESPONSIVE DESIGN
================================ */
@media (max-width: 768px) {
  nav ul {
    display: none;
    flex-direction: column;
    background: #004080;
    position: absolute;
    top: 60px;
    right: 0;
    width: 200px;
    padding: 10px;
    border-radius: 5px;
    z-index: 1000;
  }

  nav ul.active {
    display: flex;
  }

  nav ul li {
    margin: 10px 0;
  }

  .hamburger {
    display: block;
    color: white;
    font-size: 1.8rem;
    cursor: pointer;
  }
}

/* ================================
   GALLERY PAGE
================================ */
.gallery-section {
  background: #fff;
}

.gallery-section p {
  max-width: 700px;
  margin: 10px auto 40px;
  font-size: 1rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
}

.gallery-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: transform 0.3s ease;
}

.gallery-img:hover {
  transform: scale(1.05);
}

/* Lightbox */
.lightbox {
  display: none;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  z-index: 2000;
}

.lightbox-img {
  max-width: 90%;
  max-height: 80%;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}

.lightbox .close {
  position: absolute;
  top: 30px;
  right: 40px;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  font-weight: bold;
  transition: color 0.3s ease;
}

.lightbox .close:hover {
  color: #ffcc00;
}


/* ================================
   ABOUT PAGE
================================ */
.about-section {
  background: #fff;
  padding: 60px 20px;
  text-align: center;
}

.about-section .intro-text {
  max-width: 800px;
  margin: 0 auto 40px;
  font-size: 1rem;
  color: #333;
  line-height: 1.6;
}

.mission-vision {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
}

.mv-card {
  background: #f4f4f4;
  border-radius: 10px;
  padding: 25px;
  width: 320px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.mv-card h3 {
  color: #004080;
  margin-bottom: 10px;
}

/* Leadership Section */
.staff-section {
  background: #f9f9f9;
  padding: 60px 20px;
  text-align: center;
}

.staff-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-top: 30px;
}

.staff-section .card {
  background: #fff;
  width: 260px;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.staff-section .card:hover {
  transform: translateY(-5px);
}

.staff-section .card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 15px;
}

.staff-section .card h3 {
  color: #004080;
  margin-bottom: 10px;
}

.staff-section .card p {
  font-size: 0.95rem;
  color: #333;
}

@media (max-width: 768px) {
  .mission-vision {
    flex-direction: column;
    align-items: center;
  }
}


/* ================================
   CONTACT PAGE
================================ */
.contact-section {
  background: #fff;
  padding: 60px 20px;
  text-align: center;
}

.contact-section h2 {
  color: #004080;
  margin-bottom: 10px;
}

.contact-section .intro-text {
  max-width: 800px;
  margin: 0 auto 50px;
  color: #333;
  line-height: 1.6;
}

.contact-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
  align-items: flex-start;
}

/* Contact Info Box */
.contact-info {
  flex: 1 1 300px;
  text-align: left;
  background: #f4f4f4;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.contact-info h3 {
  color: #004080;
  margin-bottom: 15px;
}

.contact-info p {
  margin-bottom: 10px;
  font-size: 0.95rem;
  color: #333;
}

.contact-info a {
  color: #004080;
  text-decoration: none;
}

.contact-info a:hover {
  text-decoration: underline;
}

/* Google Map */
.map-container {
  margin-top: 20px;
  border-radius: 8px;
  overflow: hidden;
}

/* Contact Form */
.contact-form {
  flex: 1 1 350px;
  background: #f9f9f9;
  padding: 25px;
  border-radius: 10px;
  text-align: left;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.contact-form h3 {
  color: #004080;
  margin-bottom: 15px;
}

.contact-form label {
  display: block;
  margin-bottom: 5px;
  color: #333;
  font-weight: 600;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border-radius: 5px;
  border: 1px solid #ccc;
  font-size: 0.95rem;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #004080;
  outline: none;
}

.contact-form .btn {
  display: inline-block;
  background: #004080;
  color: #fff;
  padding: 10px 20px;
  border-radius: 5px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  transition: background 0.3s;
}

.contact-form .btn:hover {
  background: #ff9900;
}

/* Responsive */
@media (max-width: 768px) {
  .contact-content {
    flex-direction: column;
  }
}


/* ================================
   ENROL PAGE
================================ */
.enrol-section {
  background: #f9f9f9;
  padding: 60px 20px;
  text-align: center;
}

.enrol-section h2 {
  color: #004080;
  margin-bottom: 10px;
}

.enrol-section p {
  max-width: 800px;
  margin: 0 auto 40px;
  color: #333;
  line-height: 1.6;
}

.enrol-form {
  background: #fff;
  max-width: 600px;
  margin: 0 auto;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  text-align: left;
}

.enrol-form label {
  display: block;
  margin-bottom: 5px;
  font-weight: 600;
  color: #333;
}

.enrol-form input,
.enrol-form select,
.enrol-form textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 20px;
  border-radius: 5px;
  border: 1px solid #ccc;
  font-size: 0.95rem;
}

.enrol-form input:focus,
.enrol-form select:focus,
.enrol-form textarea:focus {
  border-color: #004080;
  outline: none;
}

.enrol-form .btn {
  display: block;
  width: 100%;
  background: #004080;
  color: #fff;
  padding: 12px;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.enrol-form .btn:hover {
  background: #ffcc00;
  color: #004080;
}

/* Responsive */
@media (max-width: 768px) {
  .enrol-form {
    padding: 20px;
  }
}


/* =========================
   WHATSAPP FLOATING BUTTON
========================= */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25D366;
  color: #fff;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  text-align: center;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-float img {
  width: 35px;
  height: 35px;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
}


/* Floating Action Buttons */
.whatsapp-float,
.call-float {
  position: fixed;
  bottom: 20px;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
  z-index: 999;
  transition: transform 0.2s ease-in-out;
}

.whatsapp-float img,
.call-float img {
  width: 35px;
  height: 35px;
}

/* WhatsApp on Right */
.whatsapp-float {
  right: 20px;
  background-color: #25D366;
}

/* Call on Left */
.call-float {
  left: 20px;
  background-color: #007BFF;
}

.whatsapp-float:hover,
.call-float:hover {
  transform: scale(1.08);
}

