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('https://z-p3-scontent.fcmb7-1.fna.fbcdn.net/v/t39.30808-6/474521392_1015659147266836_1616811076044285458_n.jpg?_nc_cat=101&ccb=1-7&_nc_sid=cc71e4&_nc_eui2=AeHv214JASSnht7BLzCwKWB-aTlBJHyTE2FpOUEkfJMTYRCilAhcPtD5TdYkF9G-Yua8cl5rF8s3i-WXfyayIst_&_nc_ohc=IluVF9918YYQ7kNvwHs7XZ3&_nc_oc=Adn55hHSTDgHBPG0m7mbYocDNCuqhMBBI_5HV2z0_XiPskbM8p_R5-1uoDzLW-1OCD0&_nc_zt=23&_nc_ht=z-p3-scontent.fcmb7-1.fna&_nc_gid=q7VDJG_L9CQnjCQ1X2HBYQ&oh=00_AfPRCQOGaHlsBcvZeyemrFiUUdCep3HQHPZXwJnuL-liEA&oe=685D7059') center center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    background-attachment: scroll;
  }
  .hero-overlay {
    
    background: rgba(0, 0, 0, 0.393);
    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;
    }
  }
  .map-section {
    max-width: 700px;
    margin: 40px auto 0 auto;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
    padding: 2rem;
    font-family: 'Poppins', sans-serif;
    text-align: center;
  }
  .map-section h2 {
    color: #1b336f;
    margin-bottom: 1.5rem;
  }
  .map-container {
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
  }
  
  .map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
  }
   h2{
      text-align: center;
      font-family: poppins;
      font-weight: 100;
   }
   p{
      font-style: italic;
      color: gray;
      font-family: poppins;
      padding-top: 20px;
      text-align: center;
   }
  
  
  
   .meet h2{
      padding-top: 30px;
      text-align: center;
      font-family: poppins;
      font-weight: 100;
      padding-bottom: 30px;
  
   }
  
   .contact-container {
    max-width: 500px;
    margin: 40px auto;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
    padding: 2rem;
    font-family: 'Poppins', sans-serif;
  }
  .contact-container h1 {
    text-align: center;
    margin-bottom: 1.5rem;
    color: #1b336f;
  }
  .contact-container label {
    display: block;
    margin-top: 1rem;
    margin-bottom: 0.3rem;
    color: #333;
    font-weight: 500;
  }
  .contact-container input,
  .contact-container textarea {
    width: 100%;
    padding: 0.7rem;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 1rem;
    margin-bottom: 0.5rem;
    font-family: inherit;
  }
  .contact-container button {
    width: 100%;
    padding: 0.9rem;
    background: #1b336f;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: bold;
    margin-top: 1rem;
    cursor: pointer;
    transition: background 0.2s;
  }
  .contact-container button:hover {
    background: #223e7b;
  }
  
  @media (max-width: 600px) {
    .contact-container {
      padding: 1rem;
      margin: 20px 5px;
    }
    .contact-container h1 {
      font-size: 1.3rem;
    }
    .contact-container input,
    .contact-container textarea {
      font-size: 0.95rem;
      padding: 0.5rem;
    }
    .contact-container button {
      font-size: 1rem;
      padding: 0.7rem;
    }
  }
  
  .location-info {
    margin-top: 1.5rem;
    color: #333;
    font-size: 1.08rem;
    background: #f7f7fa;
    border-radius: 10px;
    padding: 1.1rem 1.2rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    text-align: center;
    font-family: 'Poppins', sans-serif;
  }
  
  
  .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;
    }
  }