body {
    font-family: 'Poppins';
    margin: 0;
    padding: 0;
   
    background: #fff;
  }
  .header {
    display: flex;
    align-items: center;
    padding: 1rem 2vw 0.5rem 2vw;
    background: #fff;
    box-sizing: border-box;
  }
  .logo {
    width: 100px;
    height: 100px;
    margin-right: 0.5rem;
    object-fit: contain;
  }
  .school-name {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 1.2rem;
    font-weight: 500;
    color: #535353;
    line-height: 1.2;
  }
  .navbar {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
    position: relative;
  }
  .navbar-links {
    display: flex;
    gap: 2.5rem;
    justify-content: center;
    align-items: center;
    flex: 1;
  }
  .navbar-links a {
    position: relative;
    padding: 0.5rem 0.8rem;
    text-decoration: none;
    color: #222;
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.2s;
    text-align: center;
  }
  .navbar-links a::after {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 100%;
    height: 3px;
    background: #000;
    transform: scaleX(0);
    transition: transform 0.3s cubic-bezier(.4,0,.2,1);
    transform-origin: left;
  }
  .navbar-links a:hover::after,
  .navbar-links a:focus::after {
    transform: scaleX(1);
  }
  .hamburger {
    display: none;
    font-size: 2rem;
    cursor: pointer;
    margin-left: auto;
    user-select: none;
    background: none;
    border: none;
    color: #222;
  }
  .mobile-menu {
    display: none;
    flex-direction: column;
    align-items: center;
    background: #fff;
    position: absolute;
    top: 70px;
    left: 0;
    width: 100vw;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  }
  .mobile-menu a {
    padding: 1rem 0;
    width: 100%;
    text-align: center;
    border-bottom: 1px solid #eee;
    color: #222;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
  }
  .mobile-menu a:last-child {
    border-bottom: none;
  }
  .mobile-menu.show {
    display: flex;
  }
  @media (max-width: 900px) {
    .header {
      flex-direction: column;
      align-items: flex-start;
      gap: 0.5rem;
    }
    .navbar {
      width: 100%;
      justify-content: flex-end;
      margin-top: 0.5rem;
    }
  }
  @media (max-width: 768px) {
    .navbar-links {
      display: none;
    }
    .hamburger {
      display: block;
    }
    .header {
      flex-direction: row;
      align-items: center;
      padding: 1rem 1vw 0.5rem 1vw;
    }
  }

  .hero {
    position: relative;
    width: 100vw;
    min-height: 400px;
    height: 400px;
    background: url('../image/aboutpage\ img\ 1.jpg') center center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    background-attachment: scroll;
  }
  .hero-overlay {
    
    background: rgba(0, 0, 0, 0);
    border-radius: 18px;
    padding: 1.5rem 2vw;
    text-align: center;
    color: #fff;
    max-width: 700px;
    width: 90vw;
    margin: 0 auto;
  }

  .hero-overlay h1 {
    font-size: 3.8rem;
    font-weight: 700;
    margin: 0;
    letter-spacing: 2px;
    line-height: 1.1;
  }
  @media (max-width: 600px) {
    .hero-overlay h1 {
      font-size: 3rem;
    }
  
    .hero-overlay {
      padding: 1.2rem 2vw;
    }
    .logo {
      width: 40px;
      height: 40px;
    }
  } 

  .hero-text{

    padding: 20px;
    text-align: center;
    padding: 70px;
  }
  .hero-text h1{
    font-family: Arial, Helvetica, sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    margin: 0;
    letter-spacing: 2px;
    line-height: 1.1;
  }
  .hero-text p{
    font-family: poppins;

color: gray;
  }

.heading-line2 {
    width: 300px;        /* Length of the green line */
    height: 3px;         /* Thickness of the line */
    background-color:#FF8E34;
    margin: 0 auto 10px; /* Center the line and add space below */
  }

  .hero2 {
    position: relative;
    width: 100vw;
    min-height: 100px;
    height: 300px;
    background: url('https://lh3.googleusercontent.com/gps-cs-s/AC9h4nqCXvojs6j5Qfky1BY5BQL-Ch0KZbIz77oDoxXbdJuKA7lMC6iVwMA-IAg6upHVcU08WPaCP1HcBAcEQtMHhoilC4v62KEEftkzc0AhrvsAFlxVBcb3sKM9HeYOGuAa0wh8I2Tu=s680-w680-h510-rw') center center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    background-attachment: fixed;
  }

  /* Vision & Mission Section */
  .vision-mission {
    padding: 80px 0;
    background: #f8f9fa;
  }

  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }

  .vision-card,
  .mission-card {
    display: flex;
    align-items: center;
    margin-bottom: 60px;
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
  }

  .vision-card:hover,
  .mission-card:hover {
    transform: translateY(-5px);
  }

  .vision-image,
  .mission-image {
  

    flex: 1;
    min-height: 300px;
    overflow: hidden;
  }

  .vision-image img,
  .mission-image img {
    width: 50%;
    height: 50%;
    object-fit: cover;
    transition: transform 0.3s ease;
  }

  .vision-card:hover .vision-image img,
  .mission-card:hover .mission-image img {
    transform: scale(1.05);
  }

  .vision-content,
  .mission-content {
    flex: 1;
    padding: 40px;
  }

  .vision-content h2,
  .mission-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0 0 20px 0;
    color: #333;
  }

  .underline {
    width: 80px;
    height: 4px;
    background: #FF8E34;
    margin-bottom: 25px;
    border-radius: 2px;
  }

  .vision-content p,
  .mission-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #666;
    margin: 0;
  }

  /* Mission card reverse layout */
  .mission-card {
    flex-direction: row-reverse;
  }

  /* Responsive Design */
  @media (max-width: 768px) {
    .vision-card,
    .mission-card {
      flex-direction: column;
      margin-bottom: 40px;
    }

    .mission-card {
      flex-direction: column;
    }

    .vision-image,
    .mission-image {
      min-height: 10px;
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .vision-image img,
    .mission-image img {
      width: 100%;
      height: auto;
      max-width: 320px;
      margin: 0 auto 18px auto;
      display: block;
    }

    .vision-content,
    .mission-content {
      padding: 30px 25px;
    }

    .vision-content h2,
    .mission-content h2 {
      font-size: 2rem;
    }

    .vision-content p,
    .mission-content p {
      font-size: 1rem;
    }
  }

  @media (max-width: 480px) {
    .vision-mission {
      padding: 60px 0;
    }

    .container {
      padding: 0 15px;
    }

    .vision-content,
    .mission-content {
      padding: 25px 20px;
    }

    .vision-content h2,
    .mission-content h2 {
      font-size: 1.8rem;
    }
  }

/* Administration Section */
.admin-section {
  margin: 60px 0 0 0;
  padding: 0 0 60px 0;
}
.admin-bg {
  background: linear-gradient(135deg, #b1b1b1 0%, #888 100%);
  border-radius: 0px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  padding: 50px 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.admin-card {
  background: #f7f7f7;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
  display: flex;
  align-items: center;
  max-width: 950px;
  width: 90vw;
  padding: 32px 40px;
  gap: 40px;
}
.admin-img-col {
  flex: 0 0 220px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.admin-img-wrapper {
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 0 0 8px #e0e7ff, 0 0 32px 0 #6c63ff44;
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.admin-img-wrapper img {
  width: 250px;
  height: 250px;
  object-fit: cover;
  border-radius: 50%;
  display: block;
}
.admin-content-col {
  flex: 1 1 0;
  min-width: 0;
  text-align: center;
}
.admin-content-col h2 {
  font-size: 2.2rem;
  font-weight: 600;
  margin: 0 0 18px 0;
  color: #222;
  letter-spacing: 0.5px;
  text-align: center;
}
.admin-lead {
  font-size: 1.08rem;
  color: #666;
  margin-bottom: 18px;
  font-style: italic;
  line-height: 1.6;
  text-align: center;
}
.admin-name {
  font-weight: 700;
  font-style: italic;
  color: #222;
}
.admin-links {
  margin-bottom: 22px;
  text-align: center;
}
.admin-link {
  color: #2563eb;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s;
  display: inline-block;
}
.admin-link:hover {
  color: #1e40af;
  text-decoration: underline;
}
.admin-learn-btn {
  background: linear-gradient(90deg, #2563eb 0%, #4f8cff 100%);
  color: #fff;
  font-weight: 600;
  font-size: 1.08rem;
  border: none;
  border-radius: 10px;
  padding: 12px 32px;
  box-shadow: 0 2px 12px #2563eb33;
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.2s;
  display: inline-block;
  margin: 0 auto;
}
.admin-learn-btn:hover {
  background: linear-gradient(90deg, #1e40af 0%, #2563eb 100%);
  box-shadow: 0 4px 18px #2563eb44;
}

@media (max-width: 900px) {
  .admin-card {
    flex-direction: column;
    align-items: flex-start;
    padding: 28px 16px;
    gap: 24px;
  }
  .admin-img-col {
    justify-content: center;
    align-items: center;
    width: 100%;
    display: flex;
  }
  .admin-img-wrapper {
    margin: 0 auto;
  }
  .admin-img-wrapper img {
    width: 140px;
    height: 140px;
  }
}

@media (max-width: 600px) {
  .admin-bg {
    padding: 18px 0;
  }
  .admin-card {
    padding: 16px 4vw;
    gap: 16px;
  }
  .admin-content-col h2 {
    font-size: 1.3rem;
  }
  .admin-lead {
    font-size: 0.98rem;
  }
  .admin-img-wrapper {
    width: 100vw;
    max-width: 450px;
    margin: 0 auto 18px auto;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .admin-img-wrapper img {
    width: 100%;
    height: auto;
    display: block;
  }
}

/* Dark Footer */
.footer-dark {
  background: #333;
  color: #fff;
  padding: 0 0 0 0;
  margin-top: 0;
  border-radius: 0;
}
.footer-divider-orange {
  height: 3px;
  background: #ff8e34;
  border-radius: 2px 2px 0 0;
  margin-bottom: 0;
}
.footer-content-dark {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px 30px 20px;
  flex-wrap: wrap;
}
.footer-logo-dark {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  min-width: 200px;
}
.footer-logo-dark img {
  width: 70px;
  height: 70px;
  object-fit: contain;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.footer-motto-dark {
  font-size: 1.05rem;
  color: #ff8e34;
  font-style: italic;
  line-height: 1.4;
  text-align: center;
}
.footer-links-dark {
  min-width: 180px;
  text-align: center;
}
.footer-links-title-dark {
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: #ff8e34;
}
.footer-links-dark ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links-dark ul li {
  margin-bottom: 8px;
}
.footer-links-dark ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.2s;
}
.footer-links-dark ul li a:hover {
  color: #ff8e34;
}
.footer-contact-dark {
  min-width: 200px;
  font-size: 1rem;
  line-height: 1.6;
  color: #fff;
  text-align: center;
}
.footer-contact-dark .footer-links-title-dark {
  margin-bottom: 8px;
}
@media (max-width: 900px) {
  .footer-content-dark {
    flex-direction: column;
    align-items: center;
    gap: 24px;
    padding: 30px 10vw 20px 10vw;
  }
  .footer-logo-dark {
    align-items: center;
    text-align: center;
  }
}
@media (max-width: 600px) {
  .footer-content-dark {
    padding: 20px 4vw 14px 4vw;
    gap: 18px;
  }
  .footer-logo-dark img {
    width: 50px;
    height: 50px;
  }
  .footer-motto-dark {
    font-size: 0.95rem;
  }
  .footer-links-title-dark {
    font-size: 1rem;
  }
  .footer-contact-dark {
    font-size: 0.95rem;
  }
}