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/academic\ img.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 */
  }

/* 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;
  }
}

/* Curriculum Section */
.curriculum-section {
  background: #232323;
  padding: 60px 0 60px 0;
  color: #fff;
}
.curriculum-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  max-width: 1100px;
  margin: 0 auto;
  flex-wrap: wrap;
}
.curriculum-image {
  flex: 0 0 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.curriculum-image img {
  width: 320px;
  height: 420px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.18);
  background: #fff;
}
.curriculum-content {
  flex: 1 1 0;
  min-width: 260px;
  max-width: 540px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
.curriculum-underline {
  width: 180px;
  height: 4px;
  background: #ff8e34;
  border-radius: 2px;
  margin-bottom: 18px;
}
.curriculum-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin: 0 0 18px 0;
  color: #fff;
}
.curriculum-desc {
  font-size: 1.1rem;
  color: #e0e0e0;
  margin-bottom: 32px;
  line-height: 1.7;
}
.curriculum-btn {
  display: inline-block;
  background: #fff;
  color: #232323;
  font-weight: 600;
  font-size: 1.08rem;
  border: none;
  border-radius: 32px;
  padding: 0.8rem 2.2rem;
  box-shadow: 0 2px 8px rgba(255,179,0,0.10);
  text-decoration: none;
  transition: background 0.2s, color 0.2s, transform 0.2s;
  cursor: pointer;
}
.curriculum-btn:hover, .curriculum-btn:focus {
  background: #ff8e34;
  color: #fff;
  transform: translateY(-2px) scale(1.04);
}
@media (max-width: 900px) {
  .curriculum-container {
    flex-direction: column;
    gap: 32px;
    padding: 0 2vw;
  }
  .curriculum-image img {
    width: 90vw;
    max-width: 340px;
    height: 300px;
  }
  .curriculum-content {
    align-items: center;
    text-align: center;
    max-width: 95vw;
  }
  .curriculum-title {
    font-size: 1.5rem;
  }
  .curriculum-underline {
    width: 90px;
    margin-bottom: 12px;
  }
}

.lms-section {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 32px 0 32px 0;
}
.lms-button {
  display: inline-block;
  background: #232323;
  color: #fff;
  font-weight: 600;
  font-size: 1.1rem;
  border: none;
  border-radius: 32px;
  padding: 0.9rem 2.5rem;
  box-shadow: 0 2px 8px rgba(20, 35, 97, 0.10);
  text-decoration: none;
  transition: background 0.2s, color 0.2s, transform 0.2s;
  cursor: pointer;
  margin: 0 auto;
}
.lms-button:hover, .lms-button:focus {
  background: #ff8e34;
  color: #fff;
  transform: translateY(-2px) scale(1.04);
}