    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Poppins', sans-serif;
      line-height: 1.6;
      color: #333;
    }

    /* Header Styling */
    .header {
      background: linear-gradient(to right, #1e3c72, #2a5298);
      color: white;
      padding: 30px 20px;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
      position: relative;
    }

    .header-container {
      max-width: 1200px;
      margin: auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 20px;
    }

    .logo {
      flex: 1;
      min-width: 100px;
      text-align: left;
    }

    .logo img {
      height: 80px;
      max-width: 100%;
      object-fit: contain;
    }

    .school-name {
      flex: 3;
      text-align: right;
      min-width: 200px;
    }

    .school-name h1 {
      font-size: 32px;
      margin-bottom: 5px;
      font-weight: bold;
      letter-spacing: 1px;
      word-break: break-word;
    }

    .school-name p {
      font-size: 16px;
      font-style: italic;
    }

    .bottom-border {
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 5px;
      background: linear-gradient(to right, #ffd700, #ff6f61);
    }

    /* Navbar Styling */
    .navbar {
      background: #ffffff;
      padding: 10px 0;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
      position: sticky;
      top: 0;
      z-index: 1000;
    }

    .navbar-container {
      max-width: 1200px;
      margin: auto;
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 20px;
      padding: 0 15px;
    }

    .nav-link {
      color: #2a5298;
      font-weight: 600;
      font-size: 16px;
      text-decoration: none;
      position: relative;
      padding: 8px 12px;
      transition: color 0.3s;
      display: inline-block;
      text-align: center;
    }

    .nav-link::after {
      content: '';
      position: absolute;
      width: 0%;
      height: 2px;
      left: 0;
      bottom: 0;
      background-color: #ff6f61;
      transition: width 0.3s ease-in-out;
    }

    .nav-link:hover {
      color: #ff6f61;
    }

    .nav-link:hover::after {
      width: 100%;
    }

    /* User Buttons (Optional icons or social links) */
    .user-buttons {
      display: flex;
      gap: 10px;
      align-items: center;
      justify-content: center;
      margin-top: 10px;
    }

    .user-buttons a.btn {
      font-size: 14px;
      padding: 6px 10px;
      border: 1px solid #2a5298;
      border-radius: 5px;
      color: #2a5298;
      text-decoration: none;
    }

    .user-buttons a.btn:hover {
      background: #2a5298;
      color: white;
    }

    /* Responsive Design */
    @media (max-width: 768px) {
      .header-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
      }

      .school-name {
        text-align: center;
      }

      .school-name h1 {
        font-size: 24px;
      }

      .school-name p {
        font-size: 14px;
      }

      .navbar-container {
        flex-direction: column;
        align-items: center;
        gap: 10px;
      }

      .nav-link {
        font-size: 15px;
        padding: 6px 10px;
      }

      .user-buttons {
        flex-direction: row;
        margin-top: 10px;
      }
    }
    
    .navbar-container .nav-links {
  display: none;
  flex-direction: column;
  background: #fff; /* Or any background to match navbar */
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

/* Show nav-links (menu open) */
.navbar-container .nav-links.open {
  display: flex;
}

/* Style the toggle button */
.menu-toggle {
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  display: block;
}

/* Large screens: always show links and hide toggle */
@media (min-width: 768px) {
  .menu-toggle {
    display: none;
  }
  .navbar-container .nav-links {
    display: flex !important;
    position: static;
    flex-direction: row;
    background: transparent;
    box-shadow: none;
    width: auto;
  }
}

    /* Hero Banner Styling */
    .hero {
      height: 400px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-size: 36px;
      text-shadow: 1px 1px 8px rgba(0, 0, 0, 0.6);
    }
 
    /* General Section Styling */
    section {
      font-family: 'Poppins', sans-serif;
    }

    /* Latest Notices Section */
    .notice-section {
      padding: 40px 20px;
      background-color: #cbe4f8;
    }

    .notice-container {
      max-width: 1000px;
      margin: auto;
    }

    .notice-title {
      text-align: center;
      font-size: 28px;
      color: #023e8a;
      margin-bottom: 20px;
    }


    .notice-box {
      background: #ffffff;
      border-radius: 10px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
      overflow-x: auto;
      overflow-y: hidden;
      white-space: nowrap;
      padding: 15px 0;
    }


    #noticeList {
      display: flex;
      gap: 20px;
      padding: 0 20px;
      margin: 0;
      list-style: none;
    }


    #noticeList li {
      display: inline-block;
      white-space: nowrap;
      background: #f0f8ff;
      padding: 10px 20px;
      border-radius: 25px;
      border: 1px solid #ddd;
      font-size: 16px;
      flex-shrink: 0;
    }


    #noticeList li:last-child {
      border-bottom: none;
    }

    #noticeList i {
      margin-right: 8px;
    }

    /* About Section */
    .about-section {
      padding: 100px 20px;
      background: #fffdf5;
    }

    .about-container {
      max-width: 1200px;
      margin: auto;
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 50px;
    }

    .about-image {
      flex: 1;
      min-width: 300px;
    }

    .about-image img {
      width: 100%;
      border-radius: 20px;
      box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
    }

    .about-content {
      flex: 1;
      min-width: 300px;
    }

    .about-subtitle {
      color: #0077b6;
      font-size: 18px;
      font-weight: 600;
      text-transform: uppercase;
      margin-bottom: 10px;
    }

    .about-heading {
      font-size: 38px;
      color: #03045e;
      font-weight: 700;
      margin-bottom: 20px;
    }

    .about-text {
      font-size: 18px;
      color: #333;
      line-height: 1.8;
      margin-bottom: 15px;
    }

    .about-btn {
      display: inline-block;
      margin-top: 25px;
      padding: 12px 25px;
      background: #0077b6;
      color: white;
      font-weight: 600;
      border-radius: 30px;
      text-decoration: none;
      transition: 0.3s;
    }

    .about-btn:hover {
      background: #023e8a;
    }

    .offerings-section {
      padding: 60px 20px;
      background: #f9f9f9;
      font-family: 'Poppins', sans-serif;
    }

    .offerings-container {
      max-width: 1100px;
      margin: auto;
    }

    .section-heading {
      text-align: center;
      font-size: 36px;
      margin-bottom: 40px;
      color: #333;
    }

    .tab-buttons {
      text-align: center;
      margin-bottom: 30px;
    }

    .tab-buttons button {
      padding: 12px 25px;
      margin: 0 5px;
      background: #ddd;
      color: #000;
      border: none;
      border-radius: 6px;
      cursor: pointer;
      transition: 0.3s ease;
    }

    .tab-buttons button:hover {
      background: #ccc;
    }

    .tab-buttons .active-tab {
      background: #ff6f00;
      color: white;
    }

    .card-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 30px;
    }

    .card {
      background: #fff;
      padding: 30px;
      border-radius: 15px;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
      text-align: center;
      transition: transform 0.3s ease;
    }

    .card:hover {
      transform: translateY(-8px);
    }

    .card-title {
      margin-bottom: 10px;
      font-size: 20px;
      color: #333;
    }

    .card-title.orange {
      color: #f57c00;
    }

    .card-title.blue {
      color: #0288d1;
    }

    .card-title.purple {
      color: #7b1fa2;
    }

    .card-title.green {
      color: #2e7d32;
    }

    .icon {
      font-size: 30px;
      margin-bottom: 10px;
    }

    .teachers-section {
      padding: 60px 20px;
      background-color: #f9f9ff;
      font-family: 'Poppins', sans-serif;
    }

    .teacher-container {
      max-width: 1200px;
      margin: auto;
    }

    .teacher-heading {
      font-size: 28px;
      font-weight: bold;
      color: #333;
      margin-bottom: 30px;
      text-align: center;
    }

    .teacher-card {
      background: #fff;
      border-radius: 12px;
      box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
      padding: 20px;
      text-align: center;
    }

    .teacher-card img {
      width: 100px;
      height: 100px;
      border-radius: 50%;
      object-fit: cover;
      margin-bottom: 10px;
    }

    .teacher-card h4 {
      margin: 10px 0 5px;
      color: #222;
    }

    .teacher-card p {
      color: #666;
    }

    /* === Gallery Section === */
    #gallery {
      padding: 100px 20px;
      background: radial-gradient(circle at center, #2d2f92, #1b1b3a);
      font-family: 'Poppins', sans-serif;
    }

    #gallery h2 {
      font-size: 36px;
      margin-bottom: 50px;
      color: #ffffff;
      text-align: center;
    }

    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 25px;
      max-width: 1200px;
      margin: auto;
    }

    .gallery-item {
      background: rgba(255, 255, 255, 0.05);
      backdrop-filter: blur(10px);
      border-radius: 15px;
      overflow: hidden;
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
      transition: transform 0.3s;
      color: white;
    }

    .gallery-item img {
      width: 100%;
      height: 200px;
      object-fit: cover;
      transition: transform 0.5s;
    }

    .gallery-item img:hover {
      transform: scale(1.08);
    }

    .gallery-item div {
      padding: 15px;
      text-align: center;
      font-weight: 500;
    }

    .view-more-btn {
      display: inline-block;
      margin: 50px auto 0;
      padding: 12px 30px;
      background-color: #ffffff;
      color: #2d2f92;
      font-weight: 600;
      border: none;
      border-radius: 30px;
      text-decoration: none;
      transition: all 0.3s ease;
    }

    .view-more-btn:hover {
      background-color: #00b4d8;
      color: white;
    }

    /* === Testimonials === */
    #testimonial {
      max-width: 1200px;
      margin: 50px auto;
      font-family: 'Poppins', sans-serif;
    }

    #testimonial h2 {
      text-align: center;
      font-size: 32px;
      color: #333;
      margin-bottom: 30px;
    }

    .testimonial-card {
      background: #f1f1f1;
      padding: 30px;
      border-radius: 10px;
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
      text-align: center;
      transition: 0.3s;
    }

    .testimonial-card p {
      font-size: 18px;
      font-style: italic;
      color: #444;
    }

    .testimonial-card h5 {
      margin-top: 15px;
      font-weight: 600;
      color: #0077b6;
    }

    .swiper-button-next,
    .swiper-button-prev {
      color: #0077b6;
    }

    .swiper-pagination-bullet-active {
      background-color: #0077b6;
    }

    /* === Contact Section === */
    #contact {
      padding: 100px 20px;
      background: linear-gradient(to right, #4e54c8, #8f94fb);
      font-family: 'Poppins', sans-serif;
    }

    #contact .contact-box {
      max-width: 1200px;
      margin: auto;
      display: flex;
      flex-wrap: wrap;
      gap: 40px;
      align-items: center;
      justify-content: center;
    }

    .contact-info,
    .contact-form {
      background: rgba(255, 255, 255, 0.15);
      backdrop-filter: blur(12px);
      border-radius: 15px;
      padding: 40px;
      box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
      color: #fff;
      min-width: 280px;
    }

    .contact-info h2 {
      font-size: 32px;
      margin-bottom: 25px;
    }

    .contact-info p {
      margin-bottom: 20px;
      font-size: 18px;
    }

    .contact-info a {
      color: #fff;
      text-decoration: underline;
    }

    .contact-form form {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
    }

    .contact-form input,
    .contact-form textarea {
      padding: 14px;
      border-radius: 8px;
      border: none;
      font-size: 16px;
      width: 100%;
    }

    .contact-form textarea {
      grid-column: span 2;
    }

    .contact-form button {
      grid-column: span 2;
      padding: 14px;
      background: #ffd700;
      color: #333;
      font-weight: bold;
      border: none;
      border-radius: 8px;
      font-size: 18px;
      cursor: pointer;
      transition: background 0.3s;
    }

    .contact-form button:hover {
      background: #ffcc00;
    }

    footer {
      background-color: #023e8a;
      color: white;
      text-align: center;
      padding: 20px;
      margin-top: 50px;
    }
