  .admission-banner {
    background: linear-gradient(90deg, #1a237e, #3949ab);
    color: #fff;
    text-align: center;
    padding: 8px 0;
    font-weight: 600;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
  }

  .admission-banner a {
    color: #ffeb3b;
    text-decoration: none;
    font-weight: 700;
  }

  .admission-banner i {
    color: #ffeb3b;
  }

  /* ===== Header Top Section ===== */
  .header-top {
    background: linear-gradient(90deg, #303f9f, #1a237e);
    color: #fff;
    padding: 10px 0;
  }

  .contact-info li {
    display: inline-block;
    margin-right: 20px;
    font-size: 14px;
  }

  .contact-info i {
    color: #ffeb3b;
    margin-right: 6px;
  }

  .header-btn-wrapper a {
    display: inline-block;
    color: #fff;
    background: #1a237e;
    padding: 6px 15px;
    margin-left: 8px;
    border-radius: 20px;
    text-decoration: none;
    transition: 0.3s;
    font-size: 14px;
  }

  .header-btn-wrapper a:hover {
    background: #ffeb3b;
    color: #1a237e;
  }

  /* ===== Main Navigation ===== */
  .header-nav {
    background: #fffbff;
    color: #fff;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 100;
  }

  .header-nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0px 30px;
  }

  .logo-default {
    width: 208px;
  }

  /* ===== MENU ===== */
  nav ul {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 0px;
  }

  nav ul li {
    position: relative;
  }

  nav ul li a {
    text-decoration: none;
    color: #1A237E;
    font-weight: 500;
    font-size: 14px;
    padding: 10px 14px;
    border-radius: 6px;
    /* transition: 0.3s; */
  display: flex;
    align-items: center;
    gap: 6px;
  text-wrap:nowrap;
  
  }

  nav ul li a:hover {
    background: rgba(255, 255, 255, 0.15);
  }

  /* ===== DROPDOWN ARROW ===== */
  nav ul li.dropdown-parent > a::after {
    content: "\f107"; /* FontAwesome down arrow */
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 12px;
  }

  /* ===== DROPDOWN MENU ===== */
  nav ul li ul.dropdown {
    position: absolute;
    top: 48px;
    left: 0;
    background: #fff;
    color: #1a237e;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
    border-radius: 8px;
    display: none;
    flex-direction: column;
    width: 250px;
    z-index: 999;
    animation: dropdownFade 0.3s ease;
  }

  @keyframes dropdownFade {
    from {
      opacity: 0;
      transform: translateY(-5px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  nav ul li:hover ul.dropdown {
    display: block;
  }

  nav ul li ul.dropdown li {
    padding: 6px 0;
  }

  nav ul li ul.dropdown li a {
    color: #1a237e;
    font-weight: 500;
    padding: 8px 20px;
  }

  nav ul li ul.dropdown li a:hover {
    background: #e8eaf6;
    color: #1a237e;
  }

  /* ===== Mobile Menu ===== */
  .menu-toggle {
    display: none;
    font-size: 26px;
    color: #1A237E;
    cursor: pointer;
  }

  @media (max-width: 992px) {
    nav ul {
      display: none;
      position: absolute;
      top: 70px;
      right: 0;
      background:#fffbff;
      flex-direction: column;
      width: 100%;
      box-shadow: 0 3px 12px rgba(0, 0, 0, 0.1);
      text-align: left;
      padding: 15px 0;
    }

    nav ul.show {
      display: flex;
    }

    nav ul li {
      padding: 10px 20px;
    }

    .menu-toggle {
      display: block;
    }

    .header-btn-wrapper {
      margin-top: 10px;
      text-align: center;
    }

    .contact-info {
      text-align: center;
    }
  }

  .btn-enroll {
    background: linear-gradient(90deg, #1a237e, #3949ab);
    color: #fff;
    text-transform: uppercase;
    font-weight: 700;
    padding: 10px;
    border-radius: 5px;
    text-decoration: none;
    display: inline-block;
    transition: 0.3s;
  }

  .btn-enroll:hover {
    background: #ffeb3b;
    color: #1a237e;
  }
  @media (max-width: 850px) {
  .logo img {
    max-width: 150px;
  }
  .navbar {
    flex-direction: column;
    text-align: center;
  }
}

 .contact-header {
        background: #fff;
        padding: 25px 40px;
        border-bottom: 1px solid #eee;
        font-family: 'Poppins', sans-serif;
      }
      .contact-container {
        display: grid;
        grid-template-columns: 1.1fr 2.5fr 1fr;
        align-items: center;
        max-width: 1300px;
        margin: 0 auto;
        gap: 20px;
      }
      .contact-left {
        display: flex;
        align-items: center;
        gap: 15px;
      }
      .school-logo {
        height: 65px;
        width: auto;
        max-width: 100%;
      }
      .school-name h3 {
        font-size: 18px;
        color: #2b2b6f;
        margin: 0;
      }
      .school-name p {
        font-size: 12px;
        color: #a94442;
        margin: 0;
      }
      .info-item {
        display: flex;
        border-bottom: 1px solid #ececec;
        padding-bottom: 15px;
        margin-bottom: 15px;
        flex-wrap: wrap;
      }
      .info-item i {
        color: var(--theme-color);
        font-size: 30px;
        margin-right: 22px;
        min-width: 32px;
      }
      .info-item .title {
        margin-bottom: 3px;
        font-size: 18px;
      }
      .info-item:last-child {
        padding-bottom: 0;
        margin-bottom: 0;
        border-bottom: none;
      }
      .contact-middle {
        display: flex;
        flex-direction: column;
        gap: 10px;
      }
      .info-item {
        display: flex;
        align-items: flex-start;
        gap: 10px;
        color: #2b2b6f;
      }
      .info-item i {
        font-size: 15px;
        background: #2b2b6f;
        color: #fff;
        border-radius: 50%;
        width: 32px;
        height: 32px;
        display: flex;
        justify-content: center;
        align-items: center;
      }
      .info-item h4 {
        margin: 0;
        font-size: 15px;
        font-weight: 600;
        color: #2b2b6f;
      }
      .info-item p {
        margin: 2px 0 0;
        font-size: 15px;
        color: #333;
      }
      .info-item a {
        color: #333;
        text-decoration: none;
      }
      .info-item a:hover {
        color: #f04e23;
      }
      .contact-right {
        text-align: right;
      }
      .contact-right h4 {
        font-size: 13px;
        color: #2b2b6f;
        font-weight: 600;
        margin-bottom: 8px;
      }
      .social-icons a {
        color: #2b2b6f;
        font-size: 18px;
        margin-left: 10px;
        transition: color 0.3s ease;
      }
      .social-icons a:hover {
        color: #f04e23;
      }

      /* Extra Responsive Enhancements */
      @media (max-width: 992px) {
        .contact-container {
          grid-template-columns: 1fr;
          text-align: center;
          gap: 30px;
        }
        .contact-left {
          justify-content: center;
          margin-bottom: 15px;
        }
        .contact-middle {
          align-items: center;
        }
        .info-item {
          flex-direction: column;
          align-items: center;
          padding-bottom: 10px;
        }
        .info-item i {
          margin-right: 0;
          margin-bottom: 8px;
        }
        .contact-right {
          text-align: center;
          margin-top: 10px;
        }
      }
      @media (max-width: 576px) {
        .contact-header {
          padding: 15px 7px;
        }
        .school-logo {
          height: 48px;
        }
        .info-item h4,
        .info-item p {
          font-size: 13px;
        }
        .info-item {
          padding-bottom: 8px;
          margin-bottom: 8px;
        }
        .social-icons a {
          font-size: 15px;
          margin-left: 8px;
        }
        .contact-container {
          gap: 16px;
        }
      }
     
     .footer {
  background: linear-gradient(180deg, #dde3f9 0%, #bfc8f2 100%);
  color: #222;
  font-family: 'Poppins', sans-serif;
  border-top: 6px solid #1a237e;
  overflow: hidden;
}

.footer-header {
  padding: 30px 8%;
  border-bottom: 1px solid #c5cae9;
}

/* ... your other CSS rules here ... */




/* ✅ GENERAL STYLES */
.footer {
  background: linear-gradient(180deg, #dde3f9 0%, #bfc8f2 100%);
  color: #222;
  font-family: 'Poppins', sans-serif;
  border-top: 6px solid #1a237e;
  overflow: hidden;
}

/* ========== HEADER (TOP SECTION) ========== */
.footer-header {
  padding: 30px 8%;
  border-bottom: 1px solid #c5cae9;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

/* Left */
.footer-logo img {
  width: 220px;
  height: auto;
  transition: transform 0.3s ease;
}

.footer-logo img:hover {
  transform: scale(1.05);
}

.footer-phone {
  font-size: 20px;
  color: #1a237e;
  margin-top: 10px;
}

.footer-phone i {
  color: #3949ab;
  margin-right: 6px;
}

/* Right */
.footer-text {
  font-size: 20px;
  color: #2b2b2b;
  line-height: 1.5;
  margin-bottom: 10px;
}

.contact-row {
  display: flex;
  align-items: center;
  gap: 25px;
  flex-wrap: wrap;
}

/* Email & Icon */
.footer .fa-envelope {
  margin-left: 5px;
  color: #1a237e;
}

.footer a[href^="mailto"] {
  margin-left: 0;
  color: #1a237e;
  text-decoration: none;
  font-weight: 500;
}

.footer a[href^="mailto"]:hover {
  color: #3949ab;
  text-decoration: underline;
}

/* Follow Us */
.footer-social {
  display: flex;
  align-items: justify;
  gap: 10px;
}

.footer-social span {
  font-weight: 600;
  color: #1a237e;
}

.footer-social a {
  background: transparent;
  color: #1a237e;
  border: 2px solid #1a237e;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background: #1a237e;
  color: #fff;
  transform: translateY(-3px);
}

/* ========== MAIN LINKS SECTION ========== */
.footer-main {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 30px;
  padding: 50px 10%;
  background-color: #c5cae9d4;
}

.footer-column h5 {
  font-size: 16px;
  color: #1a237e;
  font-weight: 700;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column a {
  color: #333;
  font-size: 15px;
  text-decoration: none;
  transition: 0.3s;
}

.footer-column a:hover {
  color: #1a237e;
  text-decoration: underline;
}

/* ========== BOTTOM SECTION ========== */
.footer-bottom {
  background: #1a237e;
  color: #fff;
  text-align: center;
  padding: 15px;
  font-size: 14px;
}

/* ========== RESPONSIVE DESIGN ========== */
@media (max-width: 992px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
  }

  .footer-main {
    grid-template-columns: repeat(2, 1fr);
    padding: 40px 8%;
  }
}

/* ✅ MOBILE VIEW (Phones) */
@media (max-width: 600px) {
  .footer-header {
    padding: 20px 5%;
    text-align: center;
  }

  .footer-logo img {
    width: 150px;
    margin-bottom: 10px;
  }

  .footer-phone {
    font-size: 16px;
    margin-bottom: 10px;
  }

  .footer-text {
    font-size: 15px;
    margin-bottom: 15px;
  }

  /* Stack Email & Social Icons */
  .contact-row {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
  }

  .contact-row p {
    margin: 0;
  }

  /* ✅ Keep all icons blue */
  .contact-row i,
  .footer a[href^="mailto"],
  .footer-social a,
  .footer-social span {
    color: #1a237e !important;
    border-color: #1a237e !important;
  }

  .footer-social a {
    background: transparent;
    width: 35px;
    height: 35px;
  }

  .footer-social a:hover {
    background: #1a237e;
    color: #fff !important;
  }

  .footer-main {
    grid-template-columns: 1fr;
    text-align: justify;
    padding: 30px 5%;
  }

  .footer-column h5 {
    font-size: 15px;
    margin-bottom: 8px;
  }

  .footer-column a {
    font-size: 14px;
    display: inline-block;
    padding: 4px 0;
  }

  .footer-bottom {
    font-size: 13px;
    padding: 12px;
  }
}

 .academic-sections {
      padding: 20px 20px;

      font-family: 'Segoe UI', sans-serif;
    }

    .section-header {
      text-align: center;
      margin-bottom: 50px;
    }

    .section-header h2 {
      font-size: 2.2rem;
      font-weight: 700;
      color: #1a237e;
      margin-bottom: 10px;
    }

    .section-header p {
      color: #555;
      font-size: 25px;
    }

    .grid-cards {
      display: grid;
      gap: 30px;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    }


    .card-item {
      background: #fff;
      padding: 30px;
      border-radius: 18px;
      box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
      text-align: center;
      transition: all 0.35s ease;
      position: relative;
      overflow: hidden;
    }

    .card-item::before {
      content: "";
      position: absolute;
      top: -60%;
      left: -60%;
      /*width: 200%;
      height: 200%;*/
      background: radial-gradient(circle at top left, #4d61cf20, transparent 70%);
      transition: 0.5s;
      opacity: 0;
    }

    .card-item:hover::before {
      opacity: 1;
    }

    .card-item:hover {
      transform: translateY(-12px) scale(1.02);
      box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
    }

    .icon-wrapper {
      width: 90px;
      height: 90px;
      margin: 0 auto 20px;
      border-radius: 50%;
      background: linear-gradient(135deg, #4d61cf15, #4d61cf30);
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .icon-wrapper img {
      max-width: 55px;
      height: auto;
    }

    .card-item h4 {
      margin-bottom: 12px;
      font-size: 20px;
    }

    .card-item h4 a {
      color: #1a237e;
      text-decoration: none;
      font-weight: 700;
    }

    .card-item p {
      font-size: 15px;
      color: #444;
      line-height: 1.6;
    }

    .image-container {
      position: relative;
      width: 100%;
      max-width: 400px;
      margin-bottom: 20px;
    }

    .image-container img {
      width: 100%;
      height: auto;
      transition: transform 0.5s;
    }

    .overlay {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: #1a237e;
      color: white;
      display: flex;
      justify-content: center;
      align-items: center;
      opacity: 0;
      transition: opacity 0.5s;
    }

    .image-container:hover img {
      transform: scale(1.1);
    }

    .image-container:hover .overlay {
      opacity: 1;
    }

        .owl-theme .owl-controls {
      margin-top: 10px;
    }

    .owl-theme .owl-controls .owl-page span {
      width: 12px;
      height: 12px;
      background: #2e3a59;
      border-radius: 0;
      margin-right: 10px;
      transform: scale(1.2);
      opacity: 1;
      transition: all 0.3s ease 0s;
    }

    .owl-theme .owl-controls .owl-page.active span {
      outline: 2px solid #2e3a59;
      outline-offset: 3px;
      background: #d7263d;
      transform: scale(0.8);
    }

    .hero {
      position: relative;
      min-height: 650px;
      /* Full height */
      background: url('../images/bg/homebg.jpg') center/cover no-repeat;
      display: flex;
      align-items: center;
      justify-content: flex-start;
      /* Align content to left */
      color: white;
      font-family: sans-serif;
    }

    /* Dark overlay if needed */
    .hero-overlay {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      /*background: rgba(0, 0, 0, 0.3);*/
      /* subtle overlay */
      z-index: 1;
    }

    /* Content */
    .hero-content {
      position: relative;
      z-index: 2;
      max-width: 701px;
      padding: 96px;
      text-align: left;
      margin-left: 5%;
    }

    .hero-content h1 {
      font-size: 3.5rem;
      line-height: 1.2;
      margin-bottom: 15px;
      font-weight: 700;
      color: #fff;
    }

    .hero-content p {
      font-size: 1.2rem;
      margin-bottom: 25px;
      color: #fff;
    }

    /* Button styling */
    .hero-btn {
      display: inline-block;
      padding: 14px 32px;
      background: #ffeb3b;
      color: #5687c8;
      font-size: 1.1rem;
      border-radius: 100px;
      text-decoration: none;
      transition: 0.3s ease;
    }

    .hero-btn:hover {
      background: #ff9f23fc;
      color: #fff;
    }

    /* Tablet adjustments */
    @media (max-width: 992px) {
      .hero-content h1 {
        font-size: 2.5rem;
      }

      .hero-content p {
        font-size: 1rem;
      }
    }

    /* Mobile adjustments */
    @media (max-width: 576px) {
      .hero {
        /* focus on top part */
        background-size: cover;
        /* keep full cover */
        min-height: 50vh;
        justify-content: center;
        /* center text for mobile */
        text-align: center;
      }

      .hero-content {
        margin: 0 auto;
        padding: 20px;
      }

      .hero-content h1 {
        font-size: 1.9rem;
      }

      .hero-content p {
        font-size: 0.95rem;
      }

      .hero-btn {
        padding: 10px 22px;
        font-size: 0.95rem;


      }
    }

    .d-flex {
      display: flex;

    }

    /* Contact icon style */
    .contact-icon {
      width: 50px;
      height: 50px;
      background: #1a237e;
      color: #fff;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 20px;
      flex-shrink: 0;
    }

    /* Text styling */
    .contact-title {
      margin: 0;
      font-weight: bold;
      color: #1a237e;
    }

    .contact-link {
      color: black;
      font-weight: 500;
      text-decoration: none;
    }

    /* Button */
    .contact-btn {
      background: #1a237e;
      color: #fff;
      padding: 10px 25px;
      border-radius: 6px;
      text-decoration: none;
      font-weight: 600;
      display: inline-block;
    }

    .contact-btn:hover {
      background: #3c4a91;
      color: #fff;
    }

    /* Responsive tweak */
    @media (max-width: 768px) {
      .contact-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
      }
    }

     #mask {
      position: fixed;
      left: 0;
      top: 0;
      z-index: 9000;
      background-color: rgba(0, 0, 0, 0.7);
      display: none;
      width: 100%;
      height: 100%;
    }

    #boxes .window {
      position: fixed;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 550px;
      background-color: #ffffff;
      display: none;
      z-index: 9999;
      padding: 10px;
      border-radius: 8px;
      text-align: center;
      box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
      max-width: 90%;
      /* Responsive for mobile */
      max-height: 90%;
      overflow: hidden;
    }

    #boxes #dialog img {
      width: 100%;
      height: auto;
      display: block;
      border-radius: 5px;
    }

     .stats-section {
      background: linear-gradient(135deg, #1a237e, #283593);
      padding: 20px 20px;
      color: #fff;
      font-family: 'Segoe UI', sans-serif;
    }

    .stat-card {
      background: rgba(255, 255, 255, 0.08);
      border-radius: 16px;
      padding: 20px 20px;
      backdrop-filter: blur(8px);
      transition: all 0.3s ease;
    }

    .stat-card:hover {
      transform: translateY(-10px) scale(1.03);
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    }

    .icon-box {
      width: 70px;
      height: 70px;
      margin: 0 auto 20px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 28px;
      color: #fff;
    }

    .bg-blue {
      background: linear-gradient(135deg, #4d61cf, #6a82fb);
    }

    .bg-green {
      background: linear-gradient(135deg, #43a047, #66bb6a);
    }

    .bg-yellow {
      background: linear-gradient(135deg, #fbc02d, #ffeb3b);
      color: #000;
    }

    .bg-pink {
      background: linear-gradient(135deg, #e91e63, #ff4081);
    }

    .counter {
      font-size: 2rem;
      font-weight: 700;
      margin: 10px 0;
    }

    .stat-card p {
      margin: 0;
      font-size: 15px;
      font-weight: 500;
    }

      * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  body {
    font-family: "Poppins", sans-serif;
  }

  /* ===== Admission Banner ===== */
  .admission-banner {
    background: linear-gradient(90deg, #1a237e, #3949ab);
    color: #fff;
    text-align: center;
    padding: 8px 0;
    font-weight: 600;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
  }

  .admission-banner marquee {
    color: #ffeb3b;
    text-decoration: none;
    font-weight: 700;
  }

  .admission-banner i {
    color: #ffeb3b;
  }

  /* ===== Header Top Section ===== */
  .header-top {
    background: linear-gradient(90deg, #303f9f, #1a237e);
    color: #fff;
    padding: 10px 0;
  }

  .contact-info li {
    display: inline-block;
    margin-right: 20px;
    font-size: 14px;
  }

  .contact-info i {
    color: #ffeb3b;
    margin-right: 6px;
  }

  .header-btn-wrapper a {
    display: inline-block;
    color: #ffffff;
    background: #2e3b9b;
    padding: 6px 15px;
    margin-left: 8px;
    border-radius: 20px;
    text-decoration: none;
    transition: 0.3s;
    font-size: 14px;
  }

  .header-btn-wrapper a:hover {
    background: #ffeb3b;
    color: #1a237e;
  }

  /* ===== Main Navigation ===== */
  .header-nav {
    background: #fffbff;
    color: #fff;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 100;
  }

  .header-nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0px 30px;
  }

  .logo-default {
    width: 208px;
  }

  /* ===== MENU ===== */
  nav ul {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 0px;
  }

  nav ul li {
    position: relative;
  }

  nav ul li a {
    text-decoration: none;
    color: #1A237E;
    font-weight: 500;
    font-size: 14px;
    padding: 10px 14px;
    border-radius: 6px;
    /* transition: 0.3s; */
     display: flex;
    align-items: center;
    gap: 6px;
    text-wrap: nowrap;

  }

  nav ul li a:hover {
    background: rgba(255, 255, 255, 0.15);
  }

  /* ===== DROPDOWN ARROW ===== */
  nav ul li.dropdown-parent>a::after {
    content: "\f107";
    /* FontAwesome down arrow */
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 12px;
  }

  /* ===== DROPDOWN MENU ===== */
  nav ul li ul.dropdown {
    position: absolute;
    top: 48px;
    left: 0;
    background: #fff;
    color: #1a237e;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
    border-radius: 8px;
    display: none;
    flex-direction: column;
    width: 250px;
    z-index: 999;
    animation: dropdownFade 0.3s ease;
  }

  @keyframes dropdownFade {
    from {
      opacity: 0;
      transform: translateY(-5px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  nav ul li:hover ul.dropdown {
    display: block;
  }

  nav ul li ul.dropdown li {
    padding: 6px 0;
  }

  nav ul li ul.dropdown li a {
    color: #1a237e;
    font-weight: 500;
    padding: 8px 20px;
  }

  nav ul li ul.dropdown li a:hover {
    background: #e8eaf6;
    color: #1a237e;
  }

  /* ===== Mobile Menu ===== */
  .menu-toggle {
    display: none;
    font-size: 26px;
    color: #1A237E;
    cursor: pointer;
  }

  @media (max-width: 992px) {
    nav ul {
      display: none;
      position: absolute;
      top: 70px;
      right: 0;
      background: #fffbff;
      flex-direction: column;
      width: 100%;
      box-shadow: 0 3px 12px rgba(0, 0, 0, 0.1);
      text-align: left;
      padding: 15px 0;
    }

    nav ul.show {
      display: flex;
    }

    nav ul li {
      padding: 10px 20px;
    }

    .menu-toggle {
      display: block;
    }

    .header-btn-wrapper {
      margin-top: 10px;
      text-align: center;
    }

    .contact-info {
      text-align: center;
    }
  }

  .btn-enroll {
    background: linear-gradient(90deg, #1a237e, #3949ab);
    color: #fff;
    text-transform: uppercase;
    font-weight: 700;
    padding: 10px;
    border-radius: 5px;
    text-decoration: none;
    display: inline-block;
    transition: 0.3s;
  }

  .btn-enroll:hover {
    background: #ffeb3b;
    color: #1a237e;
  }

  @media (max-width: 850px) {
    .logo img {
      max-width: 150px;
    }

    .navbar {
      flex-direction: column;
      text-align: center;
    }
  }

.header-nav .dropdown-parent {
    position: relative;
  }

  .header-nav .dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    /* 👈 aligns dropdown to left of parent */
    margin-top: 0;
    background: #fff;
    border-radius: 6px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    width: 250px;
    text-align: left;
    z-index: 999;
  }

  /* Optional: keep text clean */
  .header-nav .dropdown li a {
    color: #1a237e;
    display: block;
    padding: 10px 15px;
    text-decoration: none;
  }

  .banner {
    position: relative;
    z-index: 1;
    margin-top: 120px;
    /* only if header is fixed */
  }

  .header-nav .dropdown li a:hover {
    background: #e8eaf6;
  }

   .quote-section {
    margin-top: 40px;
    /* Adds gap from hero section */
    margin-bottom: 40px;
    text-align: center;
  }

  .quote-section h1 {
    font-size: 40px;
    font-weight: 500;
    color: #3f51b5 line-height: 1.4;
  }

  /* Optional: Soft fade-in effect */
  .quote-section {
    opacity: 0;
    animation: fadeIn 1.2s ease-in forwards;
  }

  @keyframes fadeIn {
    to {
      opacity: 1;
    }
  }

  .stats-section {
    background: linear-gradient(180deg, #1a237e 0%, #283593 100%);
    padding: 80px 20px;
    font-family: 'Poppins', sans-serif;
  }

  /* === CARD === */
  .stat-card {
    background: rgba(255, 255, 255, 0.06);
    border-radius: 18px;
    padding: 40px 20px;
    transition: all 0.4s ease;
    backdrop-filter: blur(6px);
    height: 100%;
    /* ensures equal height */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .stat-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
  }

  /* === ICON === */
  .icon-box {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #5c6bc0, #3f51b5);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
    color: #fff;
    margin-bottom: 18px;
    transition: transform 0.3s ease;
  }

  .stat-card:hover .icon-box {
    transform: scale(1.1);
  }

  /* === COUNTER === */
  .counter {
    color: #fff;
    font-weight: 700;
    font-size: 40px;
    margin-bottom: 6px;
  }

  .counter span {
    font-size: 26px;
  }

  /* === TEXT === */
  .stat-card p {
    color: #e8eaf6;
    font-size: 15px;
    margin: 0;
  }

  /* === RESPONSIVE === */
  @media (max-width: 992px) {
    .counter {
      font-size: 34px;
    }

    .icon-box {
      width: 70px;
      height: 70px;
      font-size: 28px;
    }
  }

  @media (max-width: 767px) {
    .row.g-4 {
      row-gap: 25px;
    }

    .col-6 {
      flex: 0 0 48%;
      max-width: 48%;
    }

    .icon-box {
      width: 65px;
      height: 65px;
      font-size: 24px;
    }

    .counter {
      font-size: 28px;
    }

    .stat-card p {
      font-size: 13px;
    }

    .stats-section {
      padding: 50px 10px;
    }
  }

  @media (max-width: 480px) {
    .col-6 {
      flex: 0 0 100%;
      max-width: 100%;
    }

    .icon-box {
      width: 60px;
      height: 60px;
      font-size: 22px;
    }

    .counter {
      font-size: 26px;
    }

    .stat-card {
      padding: 30px 15px;
    }
  }

   .admission-form{
      flex:1 1 32%; 
      background:linear-gradient(176deg, #ffffff, #3949ab);
      padding: 30px;
      color:#fff;
      border-radius:15px;
      box-shadow:0 8px 20px rgba(0,0,0,0.15);
      display:flex; flex-direction:column;
      justify-content:center;

  }

  @media (max-width: 992px) {
    .admission-grid {
      flex-direction: column;
      gap: 25px;
    }

    .admission-text,
    .admission-images,
    .admission-form {
      flex: 1 1 100%;
      width: 100%;
    }

    .admission-images {
      flex-direction: row;
      flex-wrap: wrap;
      justify-content: center;
    }

    .admission-images>div {
      flex: 1 1 45%;
      min-width: 250px;
    }
  }

  @media (max-width: 600px) {
    .admission-images {
      flex-direction: column;
    }

    .admission-images>div img {
      height: 200px;
    }

    .admission-form,
    .admission-text {
      padding: 25px;
    }

    .admission-form button {
      font-size: 15px;
    }
  }

  .ecosystem-section {
    background: linear-gradient(135deg, #2e3c9b, #2b2b6f);
    padding: 70px 6%;
    font-family: 'Poppins', sans-serif;
    color: #fff;
  }

  /* Wrapper */
  .ecosystem-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    flex-wrap: wrap;
  }

  /* Left Image */
  .ecosystem-image {
    flex: 1 1 35%;
    text-align: center;
  }

  .ecosystem-image img {
    width: 100%;
    max-width: 420px;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  }

  /* Right Side */
  .ecosystem-text {
    flex: 1 1 60%;
  }

  .ecosystem-text h2 {
    font-size: 2rem;
    color: #fff;
    margin-bottom: 40px;
    font-weight: 700;
    text-align: center;
  }

  /* Grid - 4 per row */
  .ecosystem-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }

  /* Card */
  .ecosystem-item {
    background: #fff;
    border-radius: 15px;
    padding: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    height: 100%;
  }

  .ecosystem-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.2);
  }

  /* Icon Circle */
  .icon-circle {
    background: #3949ab;
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    font-size: 24px;
  }

  .ecosystem-item h3 {
    font-size: 1.1rem;
    color: #1a237e;
    font-weight: 600;
    margin: 0;
  }

  /* Responsive */

  @media (max-width: 1024px) {
    .ecosystem-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  @media (max-width: 768px) {
    .ecosystem-content {
      flex-direction: column;
    }

    .ecosystem-grid {
      grid-template-columns: 1fr;
    }

    .ecosystem-text h2 {
      font-size: 1.6rem;
    }

    .ecosystem-image img {
      max-width: 300px;
    }
  }

  .why-choose-us {
    padding: 60px 8%;
    background: white;
    font-family: 'Poppins', sans-serif;
  }

  .why-choose-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
  }

  .why-choose-text h2 {
    font-size: 2rem;
    color: #1A237E;
    margin-bottom: 25px;
    font-weight: 700;
  }

  .why-choose-text p {
    font-size: 1rem;
    color: #2b2b2b;
    line-height: 1.7;
    margin-bottom: 15px;
  }

  /* Image Styling */
  .why-choose-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    object-fit: cover;
  }

  /* Responsive */
  @media (max-width: 1024px) {
    .why-choose-grid {
      grid-template-columns: 1fr;
      /* stack on smaller screens */
    }

    .why-choose-image {
      margin-top: 30px;
    }
  }

  .academic-sections .card-item {
    flex: 1;
    min-width: 260px;
    max-width: 280px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px 25px;
    backdrop-filter: blur(6px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.4s ease;
    text-align: center;
  }

  .academic-sections .card-item:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
  }

  .academic-sections .icon-circle {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
  }

  .academic-sections .card-item:hover .icon-circle {
    transform: scale(1.05);
  }

  .academic-sections .icon-circle img {
    width: 55px;
    height: 55px;
    object-fit: contain;
    filter: brightness(0) invert(0);
    /* pure black icons */
  }

  .academic-sections h4 a {
    color: #ffffff;
    font-size: 1.3rem;
    text-decoration: none;
    font-weight: 600;
  }

  .academic-sections h4 a:hover {
    color: #ffeb3b;
  }

  .academic-sections p {
    color: #e0e0e0;
    font-size: 0.95rem;
    line-height: 1.6;
  }

  @media (max-width: 992px) {
    .academic-sections {
      padding: 70px 20px;
    }

    .academic-sections .card-item {
      max-width: 100%;
    }
  }

 .cbse-curriculum {
    padding: 60px 8%;
    background: white;
    font-family: 'Poppins', sans-serif;
  }

  .curriculum-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
  }

  .curriculum-text h2 {
    font-size: 2rem;
    color: #1a237e;
    margin-bottom: 25px;
    font-weight: 700;
  }

  .curriculum-text p {
    font-size: 1rem;
    color: #2b2b2b;
    line-height: 1.7;
    margin-bottom: 15px;
  }

  /* Image Styling */
  .curriculum-image img {
    width: 100%;

    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    object-fit: cover;
  }

  /* Responsive */
  @media (max-width: 1024px) {
    .curriculum-grid {
      grid-template-columns: 1fr;
      /* stack vertically */
    }

    .curriculum-image {
      margin-top: 30px;
    }
  }


 .features-enquiry {
    background: linear-gradient(135deg, #1a237e, #3949ab);
    padding: 80px 20px;
    font-family: "Poppins", sans-serif;
    color: #fff;
  }

  /* 🔹 Title & Subtitle */
  .feature-section-title {
    font-size: 2.4rem;
    font-weight: 700;
    color: #fff;
    text-align: center;
    margin-bottom: 10px;
  }

  .feature-subtitle {
    text-align: center;
    color: #e0e0e0;
    font-size: 1rem;
    margin-bottom: 50px;
  }

  /* 🔷 Process Grid */
  .features-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    max-width: 1100px;
    margin: 0 auto;
  }

  /* 🟦 Card Design */
  .feature-item {
    background: #fff;
    color: #222;
    border-radius: 12px;
    padding: 25px 20px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
  }

  .feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
  }

  /* 🟡 Icon Circle */
  .icon-box {
    background: linear-gradient(135deg, #5c6bc0, #7986cb);
    color: #fff;
    font-size: 1.6rem;
    padding: 15px;
    border-radius: 50%;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.3);
  }

  /* 📘 Text */
  .content h3 {
    font-size: 1.1rem;
    color: #1a237e;
    margin: 0 0 6px;
    font-weight: 600;
  }

  .content p {
    font-size: 0.95rem;
    color: #555;
    margin: 0;
    line-height: 1.5;
  }

  /* 📱 Responsive Design */
  @media (max-width: 900px) {
    .features-list {
      grid-template-columns: 1fr;
      gap: 20px;
    }

    .feature-item {
      flex-direction: row;
    }
  }

  @media (max-width: 600px) {
    .feature-section-title {
      font-size: 1.8rem;
    }

    .feature-subtitle {
      font-size: 0.9rem;
    }

    .feature-item {
      padding: 20px;
    }

    .icon-box {
      font-size: 1.4rem;
      padding: 12px;
    }
  }

   .admission-section {
    position: relative;
    background:
      linear-gradient(rgba(10, 20, 60, 0.6), rgba(10, 20, 60, 0.6)),
      url('../images/bg3.jpg') center/cover no-repeat;
    padding: 100px 0;
    font-family: 'Poppins', sans-serif;
    color: #fff;
    overflow: hidden;
  }

  /* 🔹 Overlay */
  .admission-section .overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 40, 0.4);
    z-index: 0;
  }

  /* 🔹 Container */
  .admission-container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 0 20px;
    text-align: center;
  }

  /* 🟡 Side Texts */
  .side-text {
    flex: 1 1 30%;
    font-family: "Poppins", sans-serif;
    color: #fff;
    text-align: center;
    line-height: 1.2;
  }

  .side-text .highlight {
    display: inline-block;
    font-size: 3.8rem;
    /* 🔹 Bigger text */
    font-weight: 800;
    color: #FFB300;
  }

  .side-text .sub {
    display: inline-block;
    font-size: 1.6rem;
    /* 🔸 Smaller text */
    font-weight: 500;
    color: #fff;
  }

  .side-text.top {
    align-self: flex-start;
    margin-top: 30px;
  }

  .side-text.bottom {
    align-self: flex-end;
    margin-bottom: 40px;
  }

  /* 🟦 Form Card */
  .form-card {
    flex: 1 1 35%;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 12px;
    padding: 40px 30px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    min-width: 320px;
  }

  .form-card h3 {
    margin: 0;
    color: #FFD740;
    font-weight: 700;
    font-size: 22px;
  }

  .form-card p {
    font-size: 14px;
    margin-bottom: 20px;
    color: #ddd;
  }

  .form-card form {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .form-card input,
  .form-card select {
    padding: 10px 12px;
    border-radius: 6px;
    border: none;
    outline: none;
  }

  .form-card button {
    background: #C5CAE9;
    border: none;
    color: #000;
    font-weight: 600;
    padding: 10px 0;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.3s;
  }

  .form-card button:hover {
    background: #FFB300;
    color: #000;
  }

  /* 📱 Responsive Fixes */
  @media (max-width: 992px) {
    .admission-container {
      flex-direction: column;
      gap: 30px;
    }

    .side-text {
      flex: 1 1 100%;
      align-self: center !important;
    }

    .side-text .highlight {
      font-size: 2.6rem;
    }

    .side-text .sub {
      font-size: 1.2rem;
    }

    .form-card {
      width: 90%;
      margin: 0 auto;
    }
  }

  @media (max-width: 600px) {
    .side-text .highlight {
      font-size: 2.2rem;
    }

    .side-text .sub {
      font-size: 1rem;
    }

    .form-card {
      padding: 30px 20px;
    }
  }

  .news-media-section {
    background: white;
    padding: 80px 20px;
    font-family: 'Poppins', sans-serif;
  }

  /* ======= Stylish Heading ======= */
  .section-heading {
    position: relative;
    font-size: 2.4rem;
    font-weight: 700;
    color: #1a237e;
    margin-bottom: 60px;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 1px;
  }

  .section-heading::after {
    content: "";
    display: block;
    width: 80px;
    height: 4px;
    background: #f9a825;
    margin: 12px auto 0;
    border-radius: 2px;
  }

  /* ======= Cards ======= */
  .news-media-card {
    background: #fff;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    text-align: center;
  }

  .news-media-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  }

  .news-media-card img {
    width: 100%;
    border-radius: 10px;
    height: auto;
    margin: 15px 0;
  }

  .news-media-card h4 {
    color: #1a237e;
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 1.2rem;
  }

  .news-media-card p {
    color: #333;
    font-size: 1rem;
    line-height: 1.6;
  }

  /* ======= Read More Button ======= */
  .read-more-btn {
    background-color: #3f51b5;
    color: #fff;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
  }

  .read-more-btn:hover {
    background-color: #1A237E;
    color: #fff;
  }

  /* ======= Carousel Controls ======= */
  .carousel-control-prev-icon,
  .carousel-control-next-icon {
    filter: invert(1);
  }

  /* Responsive tweaks */
  @media (max-width: 768px) {
    .section-heading {
      font-size: 2rem;
    }
  }

   .section-title {
    font-size: 2.4rem;
    font-weight: 800;
    color: #1A237E;
  }

  .section-title span {
    color: #3949AB;
        color: #3c4ba1;;
    font-weight: bold;
}
  }

  .section-subtitle {
    font-size: 1.1rem;
    font-weight: 500;
    color: #1A237E;
  }

  /* Tabs */
  .nav .nav-link {
    border: none;
    background: rgba(255, 255, 255, 0.8);
    margin: 6px;
    border-radius: 30px;
    padding: 10px 22px;
    color: #1A237E;
    font-weight: 600;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
  }

  .nav .nav-link i {
    margin-right: 8px;
    color: #3949AB;
  }

  .nav .nav-link.active,
  .nav .nav-link:hover {
    background: linear-gradient(135deg, #1A237E, #3949AB);
    color: #fff !important;
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(26, 35, 126, 0.3);
  }

  /* Image Frame */
  .image-frame {
    width: 100%;
    max-width: 480px;
    height: 320px;
    margin: auto;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
  }

  .image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .image-frame:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 25px rgba(26, 35, 126, 0.3);
  }

  /* Text */
  .activity-title {
    font-size: 1.9rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1A237E;
  }

  .activity-points {
    list-style: none;
    padding: 0;
    margin: 12px 0;
  }

  .activity-points li {
    margin-bottom: 8px;
    font-size: 0.95rem;
    color: #333;
  }

  .activity-points i {
    color: #3949AB;
    margin-right: 8px;
  }

  @media (max-width:768px) {
    .activity-title {
      text-align: center;
    }

    .activity-points {
      text-align: center;
    }

    .image-frame {
      height: 260px;
    }
  }

   .our-clubs-section {
    background: linear-gradient(180deg, #eef0fc 0%, #e8ebfa 100%);
    padding: 80px 0;
  }

  .club-card {
    background: #fff;
    border-radius: 16px;
    padding: 35px 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
  }

  .club-card img {
    margin-bottom: 15px;
    transition: transform 0.4s ease;
  }

  .club-card h4 {
    color: #1a237e;
    font-weight: 700;
    margin-bottom: 10px;
  }

  .club-card p {
    font-size: 15px;
    color: #444;
    line-height: 1.6;
  }

  .club-card:hover {
    background: linear-gradient(135deg, #c5cae9 0%, #9fa8da 100%);
    transform: translateY(-6px);
    box-shadow: 0 10px 25px rgba(26, 35, 126, 0.25);
  }

  .club-card:hover img {
    transform: scale(1.1);
  }

  @media (max-width: 768px) {
    .our-clubs-section {
      padding: 50px 15px;
    }

    .club-card {
      padding: 25px 20px;
    }
  }

   .accordion-button {
      font-size: 18px;
      /* question font bigger */
      line-height: 1.6;
    }

    .accordion-body {
      font-size: 17px;
      /* answer font bigger */
      line-height: 1.8;
      color: #333;
    }

    h2 {
      font-size: 36px !important;
      /* main heading thoda bada */
    }

    p {
     /* font-size: 18px !important;*/
      /* description font bigger */
    }

    .accordion-button:not(.collapsed) {
      background-color: #4d61cf;
      color: #fff;
    }

    .accordion-button:focus {
      box-shadow: none;
      border-color: #4d61cf;
    }

    .accordion-item {
      transition: all 0.3s ease;
    }

    .accordion-item:hover {
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    }

    @media (max-width: 1200px) {
  .future-container {
    padding-left: 8px;
    padding-right: 8px;
  }
}
@media (max-width: 992px) {
  .future-container {
    flex-direction: column !important;
    text-align: center !important;
    gap: 18px !important;
  }
  .future-image img {
    position: relative !important;
    bottom: -60px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    width: 70% !important;
    min-width: 100px !important;
  }
  .future-content h2 {
    font-size: 24px !important;
  }
  .future-content {
    margin: 0 !important;
    padding: 0 8px !important;
  }
}
@media (max-width: 576px) {
  .future-section {
    padding: 20px 6px 60px 6px !important;
  }
  .future-content h2 {
    font-size: 17px !important;
    margin-bottom: 12px !important;
  }
  .btn-appointment {
    display: block !important;
    width: 98% !important;
    margin: 10px auto !important;
    padding: 9px 6px !important;
    font-size: 13px !important;
  }
  .future-image img {
    width: 80% !important;
    min-width: 70px !important;
    bottom: -15px !important;
  }
}
@media (max-width: 400px) {
  .future-section {
    padding: 8px 2px 42px 2px !important;
  }
  .future-content h2 {
    font-size: 13px !important;
  }
  .btn-appointment {
    font-size: 11px !important;
    padding: 7px 3px !important;
  }
}


.future-banner {
      background: linear-gradient(135deg, #0047b3, #0052cc);
      color: #fff;
      font-family: 'Poppins', sans-serif;
      padding: 70px 20px;
    }

    .banner-container {
      max-width: 1200px;
      margin: auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 50px;
    }

    /* ===== Image ===== */
    .banner-image img {
      height: 220px;
      object-fit: contain;
      width: 100%;
      max-width: 320px;
      transition: transform 0.3s ease;
    }

    .banner-image img:hover {
      transform: scale(1.05);
    }

    /* ===== Text Content ===== */
    .banner-content {
      flex: 1;
      min-width: 300px;
    }

    .banner-content h2 {
      font-size: 2.1rem;
      font-weight: 700;
      margin-bottom: 25px;
      line-height: 1.3;
    }

    /* ===== Buttons ===== */
    .banner-buttons {
      display: flex;
      flex-wrap: wrap;
      gap: 15px;
    }

    .btn-primary,
    .btn-outline {
      display: inline-block;
      padding: 12px 28px;
      border-radius: 30px;
      font-size: 1rem;
      font-weight: 500;
      transition: all 0.3s ease;
      text-decoration: none;
      text-align: center;
    }

    .btn-primary {
      background: #fff;
      color: #0052cc;
    }

    .btn-primary:hover {
      background: #003d99;
      color: #fff;
    }

    .btn-outline {
      border: 2px solid #fff;
      color: #fff;
      background: transparent;
    }

    .btn-outline:hover {
      background: #fff;
      color: #0052cc;
    }

    /* ===== Tablet (up to 992px) ===== */
    @media (max-width: 992px) {
      .banner-container {
        flex-direction: column;
        text-align: center;
      }

      .banner-content {
        text-align: center;
      }

      .banner-content h2 {
        font-size: 1.9rem;
      }

      .banner-image img {
        height: 250px;
        max-width: 350px;
      }

      .banner-buttons {
        justify-content: center;
      }
    }

    /* ===== Mobile (up to 576px) ===== */
    @media (max-width: 576px) {
      .future-banner {
        padding: 45px 15px;
      }

      .banner-container {
        gap: 30px;
      }

      .banner-image img {
        height: 200px;
        max-width: 300px;
      }

      .banner-content h2 {
        font-size: 1.4rem;
        line-height: 1.4;
        margin-bottom: 20px;
      }

      .banner-buttons {
        flex-direction: column;
        gap: 10px;
      }

      .btn-primary,
      .btn-outline {
        width: 100%;
        padding: 12px 0;
        font-size: 0.95rem;
      }
    }

    .contact-header {
        background: #fff;
        padding: 25px 40px;
        border-bottom: 1px solid #eee;
        font-family: 'Poppins', sans-serif;
      }
      .contact-container {
        display: grid;
        grid-template-columns: 1.1fr 2.5fr 1fr;
        align-items: center;
        max-width: 1300px;
        margin: 0 auto;
        gap: 20px;
      }
      .contact-left {
        display: flex;
        align-items: center;
        gap: 15px;
      }
      .school-logo {
        height: 65px;
        width: auto;
        max-width: 100%;
      }
      .school-name h3 {
        font-size: 18px;
        color: #2b2b6f;
        margin: 0;
      }
      .school-name p {
        font-size: 12px;
        color: #a94442;
        margin: 0;
      }
      .info-item {
        display: flex;
        border-bottom: 1px solid #ececec;
        padding-bottom: 15px;
        margin-bottom: 15px;
        flex-wrap: wrap;
      }
      .info-item i {
        color: var(--theme-color);
        font-size: 30px;
        margin-right: 22px;
        min-width: 32px;
      }
      .info-item .title {
        margin-bottom: 3px;
        font-size: 18px;
      }
      .info-item:last-child {
        padding-bottom: 0;
        margin-bottom: 0;
        border-bottom: none;
      }
      .contact-middle {
        display: flex;
        flex-direction: column;
        gap: 10px;
      }
      .info-item {
        display: flex;
        align-items: flex-start;
        gap: 10px;
        color: #2b2b6f;
      }
      .info-item i {
        font-size: 15px;
        background: #2b2b6f;
        color: #fff;
        border-radius: 50%;
        /* width: 100%;
        height: 100%; */
        display: flex;
        justify-content: center;
        align-items: center;
      }
      .info-item h4 {
        margin: 0;
        font-size: 15px;
        font-weight: 600;
        color: #2b2b6f;
      }
      .info-item p {
        margin: 2px 0 0;
        font-size: 15px;
        color: #333;
      }
      .info-item a {
        color: #333;
        text-decoration: none;
      }
      .info-item a:hover {
        color: #f04e23;
      }
      .contact-right {
        text-align: right;
      }
      .contact-right h4 {
        font-size: 13px;
        color: #2b2b6f;
        font-weight: 600;
        margin-bottom: 8px;
      }
      .social-icons a {
        color: #2b2b6f;
        font-size: 18px;
        margin-left: 10px;
        transition: color 0.3s ease;
      }
      .social-icons a:hover {
        color: #f04e23;
      }

      /* Extra Responsive Enhancements */
      @media (max-width: 992px) {
        .contact-container {
          grid-template-columns: 1fr;
          text-align: center;
          gap: 30px;
        }
        .contact-left {
          justify-content: center;
          margin-bottom: 15px;
        }
        .contact-middle {
          align-items: center;
        }
        .info-item {
          flex-direction: column;
          align-items: center;
          padding-bottom: 10px;
        }
        .info-item i {
          margin-right: 0;
          margin-bottom: 8px;
        }
        .contact-right {
          text-align: center;
          margin-top: 10px;
        }
      }
      @media (max-width: 576px) {
        .contact-header {
          padding: 15px 7px;
        }
        .school-logo {
          height: 48px;
        }
        .info-item h4,
        .info-item p {
          font-size: 13px;
        }
        .info-item {
          padding-bottom: 8px;
          margin-bottom: 8px;
        }
        .social-icons a {
          font-size: 15px;
          margin-left: 8px;
        }
        .contact-container {
          gap: 16px;
        }
      }
     
       .footer {
      background: linear-gradient(180deg, #dde3f9 0%, #bfc8f2 100%);
      color: #222;
      font-family: 'Poppins', sans-serif;
      border-top: 6px solid #1a237e;
      overflow: hidden;
    }

    .footer-header {
      padding: 30px 8%;
      border-bottom: 1px solid #c5cae9;
    }

    /* ... your other CSS rules here ... */




    /* ✅ GENERAL STYLES */
    .footer {
      background: linear-gradient(180deg, #dde3f9 0%, #bfc8f2 100%);
      color: #222;
      font-family: 'Poppins', sans-serif;
      border-top: 6px solid #1a237e;
      overflow: hidden;
      /* padding: 25px 8%;*/
    }

    .footer-container {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 30px;
      flex-wrap: wrap;
    }

    /* Logo Section */
    .footer-logo {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .footer-logo img {

      height: auto;
      transition: transform 0.3s ease;
    }

    .footer-logo img:hover {
      transform: scale(1.05);
    }

    .school-info h2 {
      color: #1a237e;
      font-size: 18px;
      margin: 0;
    }

    .school-info p {
      color: #c0392b;
      font-size: 12px;
      margin: 0;
    }

    /* Contact Info */
    .footer-contact {
      display: flex;
      gap: 25px;
    }

    .contact-item {
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .contact-item i {
      color: #1a237e;
      font-size: 18px;
    }

    .contact-item strong {
      color: #1a237e;
    }

    .contact-item a {
      color: #1a237e;
      text-decoration: none;
    }

    .contact-item a:hover {
      text-decoration: underline;
    }

    /* Address */
    .footer-address {

      align-items: center;
      gap: 8px;
      color: #2b2b2b;
      /*max-width: 350px;*/
      font-size: 13px;
    }

    .footer-address i {
      color: #1a237e;
    }

    /* Social Section */
    .footer-social {

      align-items: center;
      gap: 10px;
    }

    .footer-social span {
      font-weight: 600;
      color: #1a237e;
    }

    .footer-social a {
      background: transparent;
      color: #1a237e;
      /*border: 2px solid #1a237e;*/
      border-radius: 50%;
      width: 32px;
      height: 32px;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.3s ease;

    }

    .footer-social a:hover {
      background: #1a237e;
      color: #fff;
      transform: translateY(-3px);
    }

    /* Responsive */
    @media (max-width: 900px) {
      .footer-container {
        flex-direction: column;
        align-items: flex-start;
      }

      .footer-social {
        margin-top: 10px;
      }
    }


    /* ========== MAIN LINKS SECTION ========== */
    .footer-main {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
      gap: 30px;
      padding: 50px 10%;
      background-color: #c5cae9d4;
    }

    .footer-column h5 {
      font-size: 16px;
      color: #1a237e;
      font-weight: 700;
      margin-bottom: 15px;
      text-transform: uppercase;
    }

    .footer-column ul {
      list-style: none;
      padding: 0;
    }

    .footer-column a {
      color: #333;
      font-size: 15px;
      text-decoration: none;
      transition: 0.3s;
    }

    .footer-column a:hover {
      color: #1a237e;
      text-decoration: underline;
    }

    /* ========== BOTTOM SECTION ========== */
    .footer-bottom {
      background: #1a237e;
      color: #fff;
      text-align: center;
      padding: 15px;
      font-size: 14px;
    }

    /* ========== RESPONSIVE DESIGN ========== */
    @media (max-width: 992px) {
      .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 20px;
      }

      .footer-main {
        grid-template-columns: repeat(2, 1fr);
        padding: 40px 8%;
      }
    }

    /* ✅ MOBILE VIEW (Phones) */
    @media (max-width: 600px) {
      .footer-header {
        padding: 20px 5%;
        text-align: center;
      }

      .footer-logo img {
        width: 150px;
        margin-bottom: 10px;
      }

      .footer-phone {
        font-size: 16px;
        margin-bottom: 10px;
      }

      .footer-text {
        font-size: 15px;
        margin-bottom: 15px;
      }

      /* Stack Email & Social Icons */
      .contact-row {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 10px;
        margin-top: 10px;
      }

      .contact-row p {
        margin: 0;
      }

      /* ✅ Keep all icons blue */
      .contact-row i,
      .footer a[href^="mailto"],
      .footer-social a,
      .footer-social span {
        color: #1a237e !important;
        border-color: #1a237e !important;
      }

      .footer-social a {
        background: transparent;
        width: 35px;
        height: 35px;
      }

      .footer-social a:hover {
        background: #1a237e;
        color: #fff !important;
      }

      .footer-main {
        grid-template-columns: 1fr;
        text-align: justify;
        padding: 30px 5%;
      }

      .footer-column h5 {
        font-size: 15px;
        margin-bottom: 8px;
      }

      .footer-column a {
        font-size: 14px;
        display: inline-block;
        padding: 4px 0;
      }

      .footer-bottom {
        font-size: 13px;
        padding: 12px;
      }
    }
    /* Popup background */
.popup-bg {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 999;
}

/* Popup box */
.popup-box {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    padding: 30px;
    width: 350px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    z-index: 1000;
}

.popup-box input {
    width: 100%;
    padding: 12px;
    margin-bottom: 12px;
    border-radius: 6px;
    border: 1px solid #ccc;
}

.close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 26px;
    cursor: pointer;
}
.popup-bg {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.5);
  z-index: 999;
}

.popup-box {
  display: none;
  position: fixed;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  padding: 25px;
  width: 350px;
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
  z-index: 1000;
}

.popup-box h2 {
  margin-bottom: 10px;
  font-size: 22px;
  color: #00338D;
  font-weight: 600;
}

.popup-box input {
  width: 100%;
  padding: 10px;
  margin-bottom: 12px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.close-btn {
  position: absolute;
  right: 15px;
  top: 10px;
  font-size: 22px;
  cursor: pointer;
  color: white;
}


  .our-features-section {
    padding: 60px 0;
    background: #f4f6ff;
  }

  .our-features-section .features-heading {
    font-size: 28px;
    font-weight: 700;
    color: #1a237e;
    text-transform: uppercase;
    letter-spacing: 1px;
  }

  .our-features-section .features-subtitle {
    font-size: 14px;
    color: #555;
    margin-top: 8px;
  }

  .feature-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 20px 18px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
    height: 100%;
    text-align: center;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
  }

  .feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.09);
  }

  .feature-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    margin: 0 auto 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #e8eafc;
    color: #1a237e;
    font-size: 24px;
  }

  .feature-card h4 {
    font-size: 16px;
    font-weight: 600;
    color: #1a237e;
    margin-bottom: 8px;
  }

  .feature-card p {
    font-size: 14px;
    color: #555;
    margin: 0;
  }

  /* ✅ Mobile / small screen adjustments */
  @media (max-width: 767.98px) {
    .our-features-section {
      padding: 40px 0;
    }

    .our-features-section .features-heading {
      font-size: 22px;
    }

    .feature-card {
      padding: 18px 15px;
      
	  }

    .feature-card h4 {
      font-size: 15px;
    }

    .feature-card p {
      font-size: 13px;
    }
  }

.spa-section {
  padding: 60px 15px;
  background: #f4f8fc;
}

.spa-title {
  text-align: center;
  font-size: 34px;
  font-weight: 700;
  color: #003366;
  margin-bottom: 30px;
}

/* GRID LAYOUT */
.spa-grid {
  display: grid;
  gap: 25px;
  grid-template-columns: repeat(4, 1fr); /* Desktop: 4 in a row */
}

/* CARD */
.spa-card {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 22px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.spa-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.15);
}

/* IMAGE – RESPONSIVE */
.spa-card img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;     /* Keeps equal height/ratio */
  object-fit: cover;
  display: block;
}

/* TABLET: 2 in a row */
@media (max-width: 992px) {
  .spa-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* MOBILE: 1 in a row */
@media (max-width: 576px) {
  .spa-title {
    font-size: 26px;
  }

  .spa-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .spa-card img {
    aspect-ratio: 16 / 10;
  }
}


/* ADMISSION BANNER */
.admission-banner {
  padding: 4px 0;
}
.admission-banner marquee {
  line-height: 20px;
  font-size: 14px;
  margin: 0;
}

/* HEADER TOP */
.header-top {
  padding: 6px 0;
}
.header-top ul {
  margin: 0;
  padding: 0;
}
.header-top li {
  line-height: 1.4;
}

/* HEADER BUTTONS */
.header-btn-wrapper a {
  padding: 6px 12px;
  font-size: 14px;
  line-height: 1.2;
}

/* LOGO FIX */
/* .logo-default {
  max-height: 60px;
  padding: 6px;
  display: block;
} */

/* ================= HEADER NAV ================= */

/* ===============================
   CONTACT WRAPPER
================================ */
.contact-wrapper {
  max-width: 1200px;
  margin: auto;
  padding: 20px;
}

/* GRID */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-bottom: 30px;
}

/* BOX */
.contact-box {
  display: flex;
  gap: 14px;
  padding: 18px;
  border: 1px solid #e3e3e3;
  border-radius: 14px;
  background: #ffffff;
}

/* ICON */
.contact-icon {
  margin-top: 8px;
  min-width: 42px;
  height: 42px;
  background:#2e3b9b;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

/* TEXT */
.contact-text p {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
}

.contact-text a {
  color: #1c38b5;
  text-decoration: none;
  word-break: break-word;
}

/* ===============================
   TABLET (≤ 991px)
================================ */
@media (max-width: 991px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }

  iframe {
    height: 420px;
  }
}

/* ===============================
   MOBILE (≤ 576px)
================================ */
@media (max-width: 576px) {
  .contact-box {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .contact-icon {
    margin-bottom: 8px;
  }

  .contact-text p {
    font-size: 13.5px;
  }

  iframe {
    height: 320px;
  }
}

/* ===============================
   SMALL PHONES (≤ 360px)
================================ */
@media (max-width: 360px) {
  .contact-text p {
    font-size: 13px;
  }

  iframe {
    height: 260px;
  }
}
/* ===============================
   BRANCHES SECTION
================================ */
.branches {
 
  margin: auto;
  padding: 60px 20px;
  background: #f7f9fc;
}

.branches h2 {
  text-align: center;
  font-size: clamp(26px, 4vw, 36px);
  color: #222e8b;
  margin-bottom: 50px;
  font-weight: 600;
}

/* ===============================
   GRID
================================ */
.branch-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 30px;
  justify-items: center;
}

/* ===============================
   CARD
================================ */
.branch-card {
    width: 775px;
    height: 400px;
  background: #ffffff;
  border-radius: 20px;
  padding: 26px 22px;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease;
}

.branch-card:hover {
  transform: translateY(-6px);
}

.branch-card h3 {
  font-size: 22px;
  color: #1c38b5;
  margin-bottom: 10px;
}

.branch-card p {
  font-size: 14px;
  color: #555;
  margin: 4px 0;
  line-height: 1.6;
}

/* ===============================
   MAP FIX (IMPORTANT)
================================ */
.branch-card iframe {
  width: 100%;
  height: 220px;
  margin-top: 16px;
  border-radius: 14px;
  border: none;
  filter: grayscale(0.15) contrast(1.05);
}

/* Hide Google floating UI overlap */
.branch-card iframe {
  pointer-events: none; /* prevents ugly hover UI */
}

/* ===============================
   TABLET
================================ */
@media (max-width: 768px) {
  .branches {
    padding: 50px 16px;
  }

  .branch-card {
    max-width:360px;
  }
}

/* ===============================
   MOBILE
================================ */
@media (max-width: 576px) {
  .branch-grid {
    gap: 22px;
  }

  .branch-card {
    padding: 22px 18px;
  }

  .branch-card iframe {
    height: 200px;
  }
}

/* ===============================
   SMALL PHONES
================================ */
@media (max-width: 360px) {
  .branch-card iframe {
    height: 180px;
  }
}
/* ===============================
   SIDE BY SIDE LAYOUT
================================ */

.contact-layout {
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 15px;
  display: flex;
  gap: 30px;
  align-items: stretch;
}

/* MAP */
.map-box {
  flex: 1;
  border-radius: 16px;
  overflow: hidden;
  border: 1.5px solid #1c38b5;
}

.map-box iframe {
  width: 100%;
  height: 100%;
  min-height: 650px;
  border: 0;
}

/* FORM */
.form-section {
  flex: 1;
}

/* ===============================
   RESPONSIVE
================================ */

@media (max-width: 992px) {
  .contact-layout {
    flex-direction: column;
  }

  .map-box iframe {
    min-height: 400px;
  }
}
 /* ===== AWARD SECTION ===== */
.award-section {
  padding: 60px 0;
}

.award-title {
  font-weight: 300;
  background: #1A237E;
  color: #fff;
  padding: 8px 14px;
  border-radius: 10px;
  display: inline-block;
}

/* Text */
.award-text {
  font-size: 16px;
  line-height: 1.7;
  text-align: justify;
}

/* ===== SLIDER ===== */
.award-carousel {
  position: relative;
  max-width: 100%;
}

.award-item {
  display: none;
  position: relative;
}

.award-item img {
  width: 100%;
  border-radius: 14px;
}

/* Counter */
.award-count {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(0,0,0,0.6);
  color: #fff;
  font-size: 13px;
  padding: 4px 8px;
  border-radius: 6px;
}

/* Navigation */
.award-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(26,35,126,0.85);
  color: #fff;
  font-size: 22px;
  padding: 12px;
  border-radius: 50%;
  cursor: pointer;
  user-select: none;
}

.award-nav.prev { left: 10px; }
.award-nav.next { right: 10px; }

.award-nav:hover {
  background: #1A237E;
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {
  .award-text {
    font-size: 15px;
  }

  .award-nav {
    font-size: 18px;
    padding: 10px;
  }

  .award-count {
    font-size: 12px;
  }
}


/* SECTION */
.discipline-wrap {
  padding: 40px 0;
}

/* PARAGRAPH */
.discipline-para {
  font-size: 18px;
  text-align: justify;
  line-height: 1.7;
  color: #000;
}

/* IMAGE */
.discipline-image {
  width: 100%;
  max-width: 420px;
  border-radius: 16px;
  box-shadow: 0 10px 22px rgba(0,0,0,0.15);
}

/* CARD COMMON */
.discipline-card {
  height: 100%;
  padding: 28px;
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.1);
  background: #fff;
}

/* HEADINGS */
.discipline-card h4 {
  font-weight: 700;
  margin-bottom: 18px;
}

/* LIST */
.discipline-card ul {
  padding-left: 18px;
}

.discipline-card li {
  font-size: 17px;
  margin-bottom: 12px;
  text-align: justify;
}

/* DO */
.do-box {
  border-left: 6px solid #2e7d32;
  background: linear-gradient(135deg, #e8f5e9, #ffffff);
}

.do-box h4 {
  color: #2e7d32;
}

/* DONT */
.dont-box {
  border-left: 6px solid #c62828;
  background: linear-gradient(135deg, #ffebee, #ffffff);
}

.dont-box h4 {
  color: #c62828;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .discipline-para {
    font-size: 16px;
  }

  .discipline-card {
    padding: 22px;
  }

  .discipline-card li {
    font-size: 16px;
  }
}


/* ======================================
   FORCE MOBILE FOOTER RESET
====================================== */
@media (max-width: 767px) {

  .contact-header {
    padding: 30px 0 !important;
  }

  .contact-container {
    display: block !important;
    text-align: center !important;
  }

  /* LOGO */
  .contact-left {
    margin-bottom: 25px !important;
  }

  .school-logo {
    max-width: 180px !important;
    margin: auto !important;
    display: block !important;
  }

  /* CONTACT SECTION */
  .contact-middle {
    width: 100% !important;
  }

  .info-item {
    display: block !important;
    margin-bottom: 22px !important;
  }

  .info-item i {
    display: flex !important;
    margin: 0 auto 10px !important;
    width: 46px !important;
    height: 46px !important;
    font-size: 18px !important;
    background: #1a237e !important;
    color: #fff !important;
    border-radius: 50% !important;
    align-items: center !important;
    justify-content: center !important;
  }

  .info-item h4 {
    font-size: 15px !important;
    margin-bottom: 6px !important;
    color: #1a237e !important;
  }

  .info-item p {
    font-size: 14px !important;
    line-height: 1.7 !important;
    margin: 0 auto !important;
    max-width: 300px !important;
  }

  /* ADDRESS */
  .info-item.address p {
    max-width: 280px !important;
  }

  /* DIVIDER */
  .info-item::after {
    content: "";
    display: block;
    width: 70px;
    height: 1px;
    background: #ddd;
    margin: 20px auto 0;
  }

  /* SOCIAL */
  .contact-right {
    margin-top: 10px !important;
  }

  .contact-right h4 {
    font-size: 14px !important;
    margin-bottom: 12px !important;
  }

  .social-icons {
    display: flex !important;
    justify-content: center !important;
    gap: 14px !important;
  }

  .social-icons a {
    width: 42px !important;
    height: 42px !important;
    background: #1a237e !important;
    color: #fff !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 16px !important;
  }
}


/* SECTION */
.bg-lighter {
  background: #f9fafc;
}

/* .bg-lighter .container {
  padding-top: 60px;
  padding-bottom: 60px;
  max-width: 1200px;
} */

/* CENTER HEADINGS */
.bg-lighter center {
  font-size: 25px;
  font-weight: 600;
  color: #1a237e;
  text-align: center;
}

/* BLUE BAR TITLES */
.bg-lighter center p {
  background-color: #1a237e;
  color: #ffffff;
  border-radius: 10px;
  padding: 10px;
  margin-bottom: 4px;
}

/* MISCONDUCT LIST */
.bg-lighter .col-md-6 {
  font-size: 16px;
  line-height: 1.7;
  color: #333;
}

.bg-lighter .fa-chevron-circle-right {
  color: #0193de;
  margin-right: 6px;
}

/* ACTION SECTION */
.bg-lighter .row:last-of-type {
  font-size: 18px;
}

.bg-lighter .fa-arrow-right {
  margin-right: 6px;
}

/* IMAGE */
.bg-lighter img {
      width: 350px;
    height: 355px;
  border-radius: 10px;
  max-width: 100%;
  object-fit: cover;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* FINAL NOTICE */
.bg-lighter center:last-of-type {
  font-size: 25px;
  color: #444;
  margin-top: 20px;
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .bg-lighter img {
    display: block;
    margin: 20px auto;
    height: 100%;
    margin: 1px;
  }
}

@media (max-width: 767px) {
  .bg-lighter center {
    font-size: 20px;
  }

  .bg-lighter .col-md-6 {
    font-size: 15px;
  }
/* 
  .bg-lighter .container {
    padding-top: 40px;
    padding-bottom: 40px;
  } */
}
/* ===============================
   BOARD SECTION
================================ */
.board-section {
  background-color: #f5f7fa; /* same light background feel */
  padding: 40px 0;
}

/* ===============================
   CONTAINER
================================ */
.board-container {
  max-width: 1200px;
  margin: auto;
}

/* ===============================
   HEADING AREA
================================ */
.board-section center p:first-child {
  color: #1a237e;
  letter-spacing: 1px;
}

.board-section center p:last-child {
  line-height: 1.6;
}

/* ===============================
   CONTENT TEXT
================================ */
.board-section p {
  color: #222;
  line-height: 1.75;
}

/* ===============================
   STAMP IMAGE
================================ */
.board-section img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: auto;
}

/* ===============================
   RESPONSIVE
================================ */
@media (max-width: 991px) {
  .board-section center {
    padding: 30px !important;
  }

  .board-section p {
    font-size: 1rem !important;
  }
}

@media (max-width: 767px) {
  .board-section {
    padding: 30px 15px;
  }

  .board-section center {
    padding: 20px !important;
    text-align: center;
  }

  .board-section img {
    margin-top: 25px;
  }
}

@media (max-width: 480px) {
  .board-section p {
    font-size: 0.95rem !important;
  }
}
/* ===============================
   EXTRA CURRICULUM SECTION
================================ */
.extra-curriculum-section {
  background-color: #f6f8fc;
}

/* ===============================
   CONTAINER
================================ */
.extra-curriculum-container {
  max-width: 1200px;
  margin: auto;
}

/* ===============================
   TEXT
================================ */
.extra-curriculum-section p {
  color: #222;
  line-height: 1.75;
}

/* ===============================
   IMAGE
================================ */
.extra-curriculum-section img {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

/* ===============================
   RESPONSIVE
================================ */
@media (max-width: 991px) {
  .extra-curriculum-section {
    padding: 35px 20px !important;
  }
}

@media (max-width: 767px) {
  .extra-curriculum-section {
    padding: 25px 15px !important;
  }

  .extra-curriculum-section center {
    font-size: 22px !important;
    padding: 10px;
  }

  .extra-curriculum-section img {
    margin-top: 25px;
  }
}

@media (max-width: 480px) {
  .extra-curriculum-section p {
    font-size: 1rem !important;
  }
}
/* ===============================
   OVERVIEW – MANAGED SECTION
================================ */
.overview-managed-section {
  background-color: #f6f8fc; /* same light bg feel */
}

/* ===============================
   CONTAINER
================================ */
.overview-managed-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* ===============================
   HEADINGS
================================ */
.overview-managed-section h2 {
  text-align: center;
  line-height: 1.3;
}

/* ===============================
   PARAGRAPHS
================================ */
.overview-managed-section p {
  line-height: 1.7;
}

/* ===============================
   IMAGES
================================ */
.overview-managed-section img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ===============================
   READ MORE BUTTON
================================ */
.overview-managed-section .read-more-btn {
  display: inline-block;
}

/* ===============================
   RESPONSIVE FIXES
================================ */
@media (max-width: 991px) {
  .overview-managed-container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .overview-managed-section h2 {
    font-size: 30px !important;
  }
}

@media (max-width: 767px) {
  .overview-managed-section h2 {
    font-size: 26px !important;
  }

  .overview-managed-section p {
    font-size: 16px !important;
  }

  .overview-managed-section img {
    margin-top: 20px;
  }
}

@media (max-width: 480px) {
  .overview-managed-section h2 {
    font-size: 22px !important;
  }

  .overview-managed-section p {
    font-size: 15px !important;
  }
}
/* ===============================
   AWARD SECTION
================================ */
.award-section {
  padding: 60px 0;
  background: #f5f6fa;
}

/* ===============================
   CONTAINER
================================ */
.award-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 15px;
}

/* ===============================
   ROW LAYOUT
================================ */
.award-row {
  display: flex;
  align-items: center;
  gap: 25px;
}

/* ===============================
   IMAGE COLUMNS
================================ */
.award-img-col {
  flex: 0 0 22%;
  text-align: center;
}

.award-img-col img {
  width: 100%;
  max-width: 260px;
  border-radius: 14px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}

/* ===============================
   CONTENT COLUMN
================================ */
.award-content-col {
  flex: 0 0 56%;
  background: #ffffff;
  padding: 25px 30px;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

.award-content-col h3 {
  font-size: 1.35rem;
  margin-bottom: 15px;
}

.award-content-col p {
  font-size: 1rem;
  line-height: 1.7;
  color: #333;
  margin-bottom: 12px;
}

/* ===============================
   TABLET VIEW
================================ */
@media (max-width: 992px) {
  .award-row {
    flex-wrap: wrap;
    justify-content: center;
  }

  .award-img-col {
    flex: 0 0 45%;
  }

  .award-content-col {
    flex: 0 0 100%;
    margin-top: 20px;
  }
}

/* ===============================
   MOBILE VIEW
================================ */
@media (max-width: 576px) {
  .award-row {
    flex-direction: column;
  }

  .award-img-col {
    flex: 100%;
  }

  .award-img-col img {
    max-width: 90%;
  }

  .award-content-col {
    padding: 20px;
  }

  .award-content-col h3 {
    font-size: 1.15rem;
  }

  .award-content-col p {
    font-size: 0.95rem;
    text-align: justify;
  }
}
/* ===============================
   ACADEMY QUOTE SECTION
================================ */



.academy-quote {
  background: linear-gradient(135deg, #f5f7ff, #eef1ff);
  padding: 50px 20px;
  font-family: "Poppins", sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* ===============================
   TITLE
================================ */

.academy-quote-title {
  color: #1a237e;
  font-size: 2.3rem;
  font-weight: 500;
  line-height: 1.45;
  margin: 0;
}

/* ===============================
   SUB TEXT
================================ */

.academy-quote-sub {
  display: block;
  margin-top: 16px;
  font-size: 1.1rem;
  font-weight: 400;
  color: #222;
  letter-spacing: 0.2px;
}

/* ===============================
   RESPONSIVE
================================ */

@media (max-width: 768px) {
  .academy-quote {
    padding: 40px 16px;
  }

  .academy-quote-title {
    font-size: 1.7rem;
  }

  .academy-quote-sub {
    font-size: 0.95rem;
  }
}
.award-bg-light {
  background-color: #f8f9fa; /* same visual effect */
}

/* ===== CODE OF CONDUCT SECTION ===== */
.conduct-section {
  background: linear-gradient(135deg, #f5f7ff, #eef1ff);
  padding: 70px 20px;
  font-family: "Poppins", sans-serif;
}

.conduct-container {
  max-width: 1200px;
  margin: auto;
}

.conduct-wrapper {
  background: #ffffff;
  border-radius: 18px;
  padding: 50px;
  box-shadow: 0 20px 50px rgba(26, 35, 126, 0.12);
}

/* Header */
.conduct-header {
  text-align: center;
  margin-bottom: 30px;
}

.conduct-header h2 {
  color: #1a237e;
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.conduct-subtitle {
  font-size: 1.1rem;
  color: #555;
}

/* Intro */
.conduct-intro {
  text-align: center;
  font-size: 1.1rem;
  margin-bottom: 40px;
  color: #222;
}

/* Lists */
.conduct-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 35px;
  margin-bottom: 40px;
}

.conduct-list p {
  background: #f6f8ff;
  border-left: 5px solid #1a237e;
  padding: 12px 15px;
  border-radius: 8px;
  margin-bottom: 12px;
  font-size: 1rem;
  line-height: 1.6;
}

/* Action Title */
.conduct-action-title {
  text-align: center;
  font-size: 1.15rem;
  margin-bottom: 30px;
  color: #000;
}

/* Action Grid */
.conduct-action-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  align-items: center;
  gap: 40px;
}

/* Action List */
.conduct-actions {
  list-style: none;
  padding: 0;
}

.conduct-actions li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 15px;
  font-size: 1rem;
}

.conduct-actions li::before {
  content: "➤";
  position: absolute;
  left: 0;
  color: #1a237e;
  font-weight: bold;
}

/* Image */
.conduct-image img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

/* Note */
.conduct-note {
  margin-top: 40px;
  padding: 15px;
  background: #fff3cd;
  border-left: 5px solid #ffc107;
  border-radius: 8px;
  text-align: center;
  font-size: 0.95rem;
  color: #444;
}

/* Responsive */
@media (max-width: 768px) {
  .conduct-wrapper {
    padding: 30px 20px;
  }

  .conduct-header h2 {
    font-size: 2rem;
  }
}
/* ===== RIGHT SIDE LIST UPDATE ===== */
.conduct-list-right {
  margin-left: auto;          /* Push to right */
  max-width: 520px;           /* Controlled width */
}

/* Improve spacing inside right list */
.conduct-list-right p {
  background: #eef1ff;
  border-left: 5px solid #3949ab;
  padding: 12px 16px;
  border-radius: 8px;
  margin-bottom: 12px;
  font-size: 1rem;
  line-height: 1.6;
  transition: transform 0.2s ease;
}

/* Subtle hover effect */
.conduct-list-right p:hover {
  transform: translateX(-4px);
}

/* ===== RESPONSIVE FIX ===== */
@media (max-width: 768px) {
  .conduct-list-right {
    margin-left: 0;
    max-width: 100%;
  }
}
/* ===== POLICY SECTION ===== */
.policy-section {
  background: #f4f6ff;
  padding: 70px 0;
  font-family: "Poppins", sans-serif;
}

/* Card */
.policy-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 45px 40px;
  box-shadow: 0 12px 40px rgba(26, 35, 126, 0.08);
}

/* List */
.policy-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* Items */
.policy-item {
  font-size: 19px;
  line-height: 1.75;
  color: #333;
  text-align: justify;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

/* Icon */
.policy-item i {
  color: #1a237e;
  font-size: 18px;
  margin-top: 4px;
}

/* Hover effect */
.policy-item:hover {
  color: #1a237e;
}

/* Responsive */
@media (max-width: 768px) {
  .policy-card {
    padding: 30px 22px;
  }

  .policy-item {
    font-size: 17px;
  }
}
/* ===== CBSE SECTION ===== */
.cbse-section {
  background: linear-gradient(135deg, #f5f7ff, #eef1ff);
  padding: 70px 0;
  font-family: "Poppins", sans-serif;
}

/* Card */
.cbse-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 40px 45px;
  margin-bottom: 35px;
  box-shadow: 0 14px 45px rgba(26, 35, 126, 0.08);
}

/* Points text */
.cbse-points {
  font-size: 18px;
  line-height: 1.8;
  color: #2b2b2b;
  text-align: justify;
}

/* Facility blocks */
.facility-block h2 {
  font-size: 26px;
  color: #1a237e;
  font-weight: 600;
  margin-bottom: 15px;
  border-left: 6px solid #1a237e;
  padding-left: 14px;
}

.facility-block p {
  font-size: 18px;
  line-height: 1.75;
  color: #333;
  text-align: justify;
}

/* Responsive */
@media (max-width: 768px) {
  .cbse-card {
    padding: 28px 22px;
  }

  .facility-block h2 {
    font-size: 22px;
  }

  .cbse-points,
  .facility-block p {
    font-size: 16.5px;
  }
}
.day-preprimary-section {
  background: #e8eaf6;
  padding: 80px 20px;
  font-family: 'Poppins', sans-serif;
  text-align: center;
}

.section-title {
  font-size: 18px;
  font-weight: 700;
  color: #1a237e;
  margin-bottom: 10px;
}

.section-subtitle {
  font-size: 18px;
  font-weight: 600;
  color: #1a237e;
  margin-bottom: 20px;
}

.section-intro {
  max-width: 800px;
  margin: 0 auto 50px;
  font-size: 1rem;
  color: #333;
  line-height: 1.6;
}

.day-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.day-card {
  background: #fff;
  border-radius: 15px;
  padding: 30px 25px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
  flex: 1 1 250px;
  max-width: 300px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.day-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

/* 🌟 Icon Style */
.icon-box {
  background: #1a237e;
  color: #fff;
  font-size: 2rem;
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  transition: background 0.3s;
}

.day-card:hover .icon-box {
  background: #3949ab;
}

.day-card h4 {
  color: #1a237e;
  font-size: 1.2rem;
  margin-bottom: 10px;
  font-weight: 600;
}

.day-card p {
  font-size: 1rem;
  color: #333;
  text-align: justify;
  line-height: 1.6;
}

/* ===========================
   MOBILE OPTIMIZATION
=========================== */
@media (max-width: 768px) {

  .day-preprimary-section {
    padding: 50px 15px;
  }

  .section-title {
    font-size: 16px;
    letter-spacing: 0.5px;
  }

  .section-subtitle {
    font-size: 20px;
    line-height: 1.4;
    margin-bottom: 15px;
  }

  .section-intro {
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 35px;
    padding: 0 5px;
    text-align: center;
  }

  .day-cards {
    flex-direction: column;
    gap: 22px;
  }

  .day-card {
    max-width: 100%;
    padding: 26px 22px;
    border-radius: 14px;
  }

  /* Icon resizing for mobile */
  .icon-box {
    width: 60px;
    height: 60px;
    font-size: 1.6rem;
    margin-bottom: 16px;
  }

  .day-card h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
  }

  .day-card p {
    font-size: 0.95rem;
    line-height: 1.7;
    text-align: left; /* Better readability on mobile */
  }
}

/* ===========================
   EXTRA SMALL DEVICES
=========================== */
@media (max-width: 480px) {

  .section-subtitle {
    font-size: 18px;
  }

  .day-card {
    padding: 22px 18px;
  }

  .icon-box {
    width: 56px;
    height: 56px;
    font-size: 1.5rem;
  }
}
.core-learning-section {
  background: #303f9f;
  padding: 80px 20px;
  font-family: 'Poppins', sans-serif;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  color: #1a237e;
  margin-bottom: 60px;
}

.learning-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.learning-card {
  background: #fff;
  border-radius: 15px;
  padding: 30px 25px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
  flex: 1 1 300px;
  max-width: 350px;
  transition: transform 0.3s, box-shadow 0.3s;
  text-align: center;
}

.learning-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

/* 🌟 Icon Styling */
.icon-box {
  background: #1a237e;
  color: #fff;
  font-size: 2rem;
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.learning-card h3 {
  color: #1a237e;
  font-size: 1.3rem;
  margin-bottom: 15px;
  font-weight: 600;
}

.learning-card p {
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
  text-align: justify;
}

@media (max-width: 768px) {
  .learning-cards {
    flex-direction: column;
    gap: 20px;
  }
}
.learning-approach-section {
  background: #e8eaf6;
  padding: 80px 20px;
  font-family: 'Poppins', sans-serif;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  color: #1a237e;
  margin-bottom: 60px;
  
}

.learning-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.learning-card {
  background: #fff;
  border-radius: 15px;
  padding: 30px 25px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
  flex: 1 1 300px;
  max-width: 350px;
  transition: transform 0.3s, box-shadow 0.3s;
  text-align: center;
}

.learning-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

/* 🌟 Icon Styling */
.icon-box {
  background: #1a237e;
  color: #fff;
  font-size: 2rem;
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.learning-card h3 {
  color: #1a237e;
  font-size: 1.3rem;
  margin-bottom: 15px;
  font-weight: 600;
}

.learning-card p {
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
  text-align: justify;
}

@media (max-width: 768px) {
  .learning-cards {
    flex-direction: column;
    gap: 20px;
  }
}
/* ==============================
   SECTION BASE
============================== */
.ssa-admission-section {
  background: #ffffff;
  padding: 90px 0;
  font-family: "Poppins", sans-serif;
}

.ssa-container {
  max-width: 1300px;
  margin: auto;
  padding: 0 20px;
}

/* ==============================
   TITLE
============================== */
.ssa-title-wrap {
  text-align: center;
  margin-bottom: 50px;
}

.ssa-title-wrap h1 {
  font-size: 32px;
  font-weight: 600;
  color: #1a237e;
  margin-bottom: 6px;
}

.ssa-title-wrap h3 {
  font-size: 18px;
  font-weight: 500;
  color: #3f51b5;
}

/* ==============================
   GRID LAYOUT
============================== */
.ssa-admission-grid {
  display: flex;
  gap: 26px;
  align-items: stretch;
}

/* ==============================
   LEFT TEXT CARD
============================== */
.ssa-admission-text {
  flex: 1 1 34%;
  background: #ffffff;
  border-radius: 14px;
  padding: 35px 32px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  text-align: justify;
  color: #000;
}

.ssa-admission-text p {
  font-size: 14.8px;
  line-height: 1.85;
  margin-bottom: 16px;
}

/* ==============================
   IMAGE COLUMN
============================== */
.ssa-admission-images {
  flex: 1 1 30%;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.ssa-image-card {
  background: #ffffff;
  border-radius: 14px;
  padding: 14px;
  text-align: center;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.ssa-image-card img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  border-radius: 10px;
}

.ssa-image-card h4 {
  margin-top: 10px;
  font-size: 15px;
  font-weight: 600;
  color: #1a237e;
}

/* ==============================
   RIGHT FORM (BLUE GRADIENT)
============================== */
.ssa-admission-form {
  flex: 1 1 30%;
  border-radius: 18px;
  overflow: hidden;
  background: linear-gradient(180deg, #e8eaf6 0%, #9fa8da 45%, #3f51b5 100%);
  box-shadow: 0 15px 35px rgba(26, 35, 126, 0.35);
  padding: 12px;
}

.ssa-admission-form iframe {
  width: 100%;
  height: 880px;
  border: none;
  border-radius: 12px;
  background: transparent;
}

/* ==============================
   MOBILE RESPONSIVE
============================== */
@media (max-width: 991px) {
  .ssa-admission-grid {
    flex-direction: column;
  }

  .ssa-admission-text,
  .ssa-admission-images,
  .ssa-admission-form {
    flex: 1 1 100%;
  }

  .ssa-title-wrap h1 {
    font-size: 26px;
  }

  .ssa-admission-form iframe {
    height: 760px;
  }
}
/* ===============================
   CARD STYLING
================================ */
.testimonials .card {
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.12);
  border: none;
}

.testimonials .card-body {
  padding: 30px;
}

.template-demo p {
  font-size: 16px;
  line-height: 1.7;
  color: #333;
}

.profile-pic {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  object-fit: cover;
}

.cust-name {
  color: #1a237e;
  font-weight: 600;
}

.cust-profession {
  font-size: 14px;
  color: #666;
}

 /* ===============================
    NEW SCIENCE LAB SECTION CSS
================================ */

/* General Container Styling */
.science-lab-section{
    padding: 60px 0; /* Vertical padding */
    background-color: #f0f4f8; /* Light, calming background */
}

.container-fluid {
    width: 90%;
    margin: 0 auto;
    max-width: 1200px;
}

/* Header Content Styling (Title and Quote) */
.header-content {
    text-align: center;
    margin-bottom: 40px;
}

/* Section Title - Modernized Look */
.science-lab-section.section-title {
    font-size: 2.2rem; /* Larger and more prominent */
    color: #1a2a6c; /* Deep blue text */
    background: linear-gradient(90deg, #6a82fb 0%, #fc5c7d 100%); /* Vibrant gradient background */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
    margin-bottom: 0.5rem;
    display: inline-block; /* To contain the gradient effect */
}

/* Quote Styling - Elegant Blockquote */
.section-quote-wrap {
    margin: 20px auto;
    max-width: 700px;
}

.science-quote {
    font-family: 'Georgia', serif;
    font-size: 1.4rem;
    line-height: 1.6;
    color: #4a4a4a;
    border-left: 5px solid #6a82fb; /* Accent border on the left */
    padding: 15px 0 15px 20px;
    margin: 0;
    font-style: italic;
    background-color: #ffffff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05); /* Subtle lift effect */
}

.science-quote footer {
    display: block;
    margin-top: 10px;
    font-size: 1rem;
    color: #888;
    font-style: normal;
}

/* Image Gallery Styling - Modern CSS Grid */
.image-gallery {
    display: grid;
    /* 4 columns on large screens */
    grid-template-columns: repeat(4, 1fr); 
    gap: 15px; /* Spacing between images */
}

.gallery-item img {
    width: 100%;
    height: 200px; /* Fixed height for uniformity */
    object-fit: cover; /* Ensures images cover the area without distortion */
    border-radius: 12px;
    transition: transform 0.3s ease; /* Smooth hover effect */
}

.gallery-item img:hover {
    transform: scale(1.03);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* ===============================
    RESPONSIVENESS (Media Queries)
================================ */

/* Tablet View (max-width: 992px) */
@media (max-width: 992px) {
    .image-gallery {
        /* Change to 3 columns on tablet */
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Small Tablet / Large Mobile (max-width: 768px) */
@media (max-width: 768px) {
    .science-lab-section{
        padding: 40px 0;
    }
    .science-quote {
        font-size: 1.2rem;
    }
    .image-gallery {
        /* Change to 2 columns */
        grid-template-columns: repeat(2, 1fr);
    }
    .gallery-item img {
        height: 150px;
    }
}
/* ===============================
    REVISED MOBILE VIEW (max-width: 576px)
    Focusing on better readability and flow
================================ */
@media (max-width: 576px) {

    /* Section container - Improved padding and background */
    .science-lab-section {
        padding: 30px 20px; /* More vertical padding for breathing room */
        background: #ffffff; /* Use a white background for better contrast */
    }

    /* Title bar – Clearer, more defined look */
    .science-lab-section .section-title {
        font-size: 18px; /* Slightly larger than original mobile size */
        padding: 10px 15px;
        border-radius: 6px;
        margin-bottom: 25px; /* More space after the title */
        background-color: #3f51b5; /* Primary Blue for strong presence */
        color: #fff;
        letter-spacing: 0.8px;
        /* Remove bolding from surrounding tags if possible, relying on CSS font-weight */
        font-weight: 700;
    }

    /* Quote – Excellent contrast and clear separation */
    .science-lab-section .section-quote-wrap {
        margin: 0 0 30px 0; /* Control vertical margin precisely */
    }

    .science-lab-section .section-quote {
        font-size: 16px;
        line-height: 1.5;
        text-align: left; /* Left-align the quote for easier reading on small screens */
        color: #1a1a1a; /* Darker text for better contrast */
        padding: 0 10px; /* Inner padding */
        border-left: 3px solid #ff4081; /* Pink accent line to separate it */
        max-width: 100%;
    }

    /* Quote author */
    .science-lab-section .section-quote strong {
        display: block; /* Ensure the author is on a new line */
        margin-top: 10px;
        font-weight: 500;
        color: #666; /* Subtler color for the author */
    }

    /* Image gallery – Single-column vertical flow is best for mobile */
    .science-lab-section .carousel-container {
        /* Revert to simple block flow for vertical stacking (no grid or flex) */
        display: block;
        padding: 0;
    }

    /* Images */
    .science-lab-section .carousel-slide {
        margin-bottom: 15px; /* Add space between vertically stacked images */
    }
    
    .science-lab-section .carousel-slide:last-child {
        margin-bottom: 0; /* No margin on the last item */
    }

    .science-lab-section .carousel-slide img {
        width: 100%;
        height: 180px; /* Taller image for better view, like in the previous suggestion */
        object-fit: cover;
        border-radius: 8px; /* Slightly smaller radius for a cleaner look */
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
    }
}
/* ===============================
    CAMPUS HIGHLIGHTS SECTION CSS
================================ */

/* --- General Section & Container Styles --- */
.campus-highlights {
    padding-top: 40px;
    padding-bottom: 40px;
    background-color: #f8f9fa; /* Light background for the section */
}

/* --- Row and Content Block Styles --- */
/* Remove default margin/padding from the row container */
.campus-highlights .row {
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 30px; /* Space between highlight blocks */
    align-items: center; /* Vertically center content */
}

/* --- Title Bar Style (Replaces inline <center><p> style) --- */
.highlight-title-wrap {
    margin: 20px 0;
    width: 100%;
    text-align: center;
}

.highlight-title-wrap p {
    font-size: 24px;
    background-color: #4b5eb2; /* Primary Blue */
    color: #ffffff;
    border-radius: 10px;
    margin: 0 auto 20px auto; /* Center the block and add spacing below */
    padding: 10px 15px;
    max-width: 350px; /* Control the max width of the title bar */
    font-weight: 700;
}

/* --- Image and Quote Column Styling --- */
.campus-highlights .col-md-5 {
    /* Use flexbox to manage the alignment and spacing within these columns */
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px; /* Add internal padding */
    margin-top: 0 !important; /* Reset inline margin-top */
}

/* --- Image Styling (Fixed Size & Object-fit for uniformity) --- */
.campus-highlights img {
    /* Enforce same size on all desktop/tablet images (as requested) */
    width: 300px;
    height: 250px;
    object-fit: cover; /* Crop to fit the dimensions */
    border-radius: 15px;
    margin: 0; /* Remove old margin-bottom */
    display: block;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* --- Quote Text Styling (Replaces inline <p> style) --- */
.highlight-quote p {
    font-size: 22px;
    line-height: 1.5;
    color: #333;
    font-weight: 500;
    text-align: center;
}

.highlight-quote strong {
    font-weight: 700;
}

/* --- Hiding the unnecessary col-md-1 spacers --- */
.campus-highlights .col-md-1 {
    display: none;
}


/* ===============================
    RESPONSIVENESS (Media Queries)
================================ */

/* Tablet View (max-width: 992px) */
@media (max-width: 992px) {
    .highlight-title-wrap p {
        font-size: 22px;
        max-width: 300px;
    }
    .highlight-quote p {
        font-size: 20px;
    }
    .campus-highlights img {
        width: 250px;
        height: 200px;
    }
}


/* Mobile View (max-width: 767px) */
@media (max-width: 767px) {
    .campus-highlights {
        padding: 20px 0;
    }
    .campus-highlights .row {
        margin-bottom: 20px;
    }

    /* Force columns to stack vertically (Bootstrap default for <md) */
    .campus-highlights .col-md-5 {
        width: 100%; /* Ensure full width stack */
        padding: 10px 20px;
    }

    /* Title Bar */
    .highlight-title-wrap p {
        font-size: 18px;
        padding: 8px 10px;
        max-width: 90%;
        margin-bottom: 15px;
    }

    /* Image Scaling for Mobile */
    .campus-highlights img {
        width: 100%; /* Image takes full width of its column */
        height: 180px; /* Smaller fixed height for mobile */
        max-width: 350px; /* Optional: cap the max width on very large phones */
    }

    /* Quote Text */
    .highlight-quote p {
        font-size: 16px;
        text-align: center; /* Keep text centered on mobile for better fit */
        margin-top: 10px;
    }
}

/* Main Section Styles (.testimonials) */
.testimonials {
    /* Main Section Style */
    background: #eef2f6;
    /* padding: 80px 10px; Reduced horizontal padding for mobile */
    font-family: 'Arial', sans-serif;
}

/* Section Title H2 (.title) */
.testimonials .title {
    color: #1a237e;
    font-weight: 800;
    margin-bottom: 50px;
    font-size: 2em; /* Slightly reduced font size for mobile */
}

/* Swiper Container (.mySwiperTestimonial) - Note: swiper-container is a custom element */
.mySwiperTestimonial {
    max-width: 1200px;
    margin: 0 auto;
    padding-bottom: 50px;
}

/* Swiper Slide (applied to swiper-slide element) */
swiper-slide {
    padding: 10px;
}

/* Testimonial Card (.card) */
.card {
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    /* REDUCED PADDING for smaller card */
    padding: 20px; 
    /* FURTHER REDUCED MINIMUM HEIGHT for smaller card */
    min-height: 200px; 
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-left: 5px solid #3949ab;
}

/* Quote Icon in Card Title */
.card-body .card-title {
    /* Reduced margin for tighter spacing */
    margin-bottom: 15px; 
}

.card-body .card-title img {
    opacity: 0.7;
}

/* Testimonial Paragraph in template-demo */
.template-demo p {
    /* REDUCED FONT SIZE for smaller card */
    font-size: 1em; 
    line-height: 1.6;
    color: #444;
    /* Reduced margin for tighter spacing */
    margin-bottom: 20px; 
    font-style: italic;
}

/* Separator HR */
.card-body hr {
    border-top: 1px solid #eee;
}

/* Profile Row */
.card-body .row {
    display: flex;
    align-items: center;
    /* Reduced top margin for tighter spacing */
    margin-top: 15px; 
}

/* Profile Image Container (col-sm-2) */
.card-body .row .col-sm-2 {
    flex-shrink: 0;
    width: 60px;
}

/* Profile Image (.profile-pic) */
.card-body .profile-pic {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #3949ab;
}

/* Profile Info Container (col-sm-10) */
.card-body .row .col-sm-10 {
    flex-grow: 1;
    padding-left: 15px;
}

/* Customer Name (.cust-name) */
.profile .cust-name {
    color: #1a237e;
    font-weight: 700;
    margin-bottom: 5px;
}

/* Customer Profession/Designation (.cust-profession) */
.profile .cust-profession {
    color: #666;
    font-size: 0.9em;
}
/* Profile Image (.profile-pic) */
/* If you want a slightly smaller round pic icon */
/* ==============================
   MOBILE VIEW – SMALL ARROWS
============================== */
@media (max-width: 768px) {

  .mySwiperTestimonial::part(button-prev),
  .mySwiperTestimonial::part(button-next) {
    width: 32px;          /* ⬅️ arrow circle size */
    height: 32px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  }

  .mySwiperTestimonial::part(button-prev)::after,
  .mySwiperTestimonial::part(button-next)::after {
    font-size: 14px;      /* ⬅️ arrow icon size */
    font-weight: bold;
  }

  /* optional – arrows a little inside on mobile */
  .mySwiperTestimonial::part(button-prev) {
    left: -8px;
  }

  .mySwiperTestimonial::part(button-next) {
    right: -8px;
  }
}
  /* ===============================
   DISCIPLINE POLICY SECTION
================================ */
.discipline-policy-section {
  background: #f9faff;
  font-family: "Poppins", sans-serif;
}

/* Container spacing */
.discipline-policy-section .container {
  max-width: 1200px;
}

/* Paragraph text */
.discipline-policy-section p {
  font-size: 16px;
  line-height: 1.75;
  color: #333;
  margin-bottom: 14px;
}

/* Image styling */
.discipline-policy-section img {
  width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

/* Quote */
.discipline-policy-section i {
  display: block;
  font-size: 22px;
  color: #1a237e;
  margin: 30px auto 20px;
  max-width: 900px;
  font-style: italic;
}

/* List styling */
.discipline-policy-section li {
  font-size: 18px;
  font-weight: 600;
  color: #1a237e;
  margin-top: 20px;
  list-style: disc;
  margin-left: 20px;
}

/* ===============================
   RESPONSIVE – MOBILE FIX
================================ */
@media (max-width: 768px) {

  /* Stack columns properly */
  .discipline-policy-section .row {
    display: flex;
    flex-direction: column;
  }

  /* Text size adjust */
  .discipline-policy-section p {
    font-size: 14.5px;
    line-height: 1.7;
    text-align: justify;
  }

  /* Image spacing */
  .discipline-policy-section img {
    margin-top: 20px;
  }

  /* Quote mobile */
  .discipline-policy-section i {
    font-size: 18px;
    text-align: center;
    padding: 0 10px;
  }

  /* List mobile */
  .discipline-policy-section li {
    font-size: 16px;
    margin-left: 18px;
  }
}

/* ===============================
   EXTRA SMALL DEVICES
================================ */
@media (max-width: 480px) {

  .discipline-policy-section p {
    font-size: 14px;
  }

  .discipline-policy-section i {
    font-size: 16px;
  }
}
/* ==============================
   AWARD RECOGNITION SECTION
============================== */

.award-recognition-section {
  /* padding: 50px 0; */
  background: #f8f9fc;
}

/* Text */
.award-recognition-section p {
  line-height: 1.8;
  color: #333;
}

/* Image column spacing fix */
.award-recognition-section .col-md-3,
.award-recognition-section .col-md-4 {
  padding: 6px;
}

/* ==============================
   IMAGE UNIFORM SIZE
============================== */
.award-recognition-section img {
  width: 100%;
  height: 400px;              /* ✅ Same height for all */
  object-fit: cover;          /* ✅ No distortion */
  border-radius: 12px;
  display: block;
}

/* ==============================
   TABLET VIEW
============================== */
@media (max-width: 991px) {
  .award-recognition-section img {
    height: 320px;
  }
}

/* ==============================
   MOBILE VIEW
============================== */
@media (max-width: 767px) {
  /* .award-recognition-section {
   padding: 12px 15px;
  } */

  .award-recognition-section p {
    font-size: 1rem;
  }

  .award-recognition-section img {
    height: 260px;     /* Smaller but equal */
    margin-bottom: 15px;
  }

  /* Remove side spacing columns on mobile */
  .award-recognition-section .col-md-1 {
    display: none;
  }
}
