:root {
  --primary: #054de9;
  --secondary: #F6F7F9;
  --accent: #d6a53b;
  --text-dark: #0F172A;
  --text-muted: #475569;
  
}

* {
 
  font-family: "Montserrat", sans-serif;
  list-style: none;
  text-decoration: none;
  scroll-behavior: smooth;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}


/* SCROLL FADE-IN EFFECT */

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}


body {
 overflow-x: hidden;
  color: var(--text-dark);
  background: #ffffff;
}
.header {
  position: sticky;
  top: 14px;                 /* gap from top */
  z-index: 1000;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 50px;       /* soft rounded corners */
  margin: 10px 10px;            /* gap from left & right */

}

img {
  max-width: 100%;
  height: auto;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

.nav-wrapper {
  max-width: 1200px;
  margin: auto;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
   
}

a,
a:hover,
a:focus,
a:visited {
  text-decoration: none;
}

.nav-links a {
  position: relative;   /* 👈 THIS is mandatory */
text-decoration: none !important;
  border-radius: 8px;
 white-space: nowrap;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
margin-right: 15px;
  transition: all 0.25s ease;
  
}

.nav-links a::after {
  content: '';
  position: absolute;

  left: 50%;
  bottom: -6px;

  width: 0;
  height: 2px;

  background: var(--primary);
  border-radius: 2px;

  transform: translateX(-50%);
  transition: width 0.25s ease;
}

.nav-links a:hover::after {
  width: 18px;
}


.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}


.logo{
  min-width: 40px;
  min-height: 40px;
  max-width: 40px;
  max-height: 40px;
  border-radius: 50%;
  background: var(--primary);
}

.brand-text {
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--primary);
}

.nav-links {
  display: flex;
  gap: 15px;
  margin: 0 20px;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
}

.dashboard-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
 padding: 10px 18px;      /* proper breathing space */
  min-height: 40px;
  border-bottom: #d6a53b solid 3px;
  border-right: #d6a53b solid 3px;
  border-top: solid 1px #d6a53b;
  border-left: solid 1px #d6a53b;
  border-radius: 12px;
  font-weight: 700;
  font-size: 13px;

  color: #1f2937;
  background: linear-gradient(
    120deg,
    var(--accent),
    #ffecb8,
    var(--accent)
  );
  background-size: 200% 200%;
  animation: shine 3s infinite ease-in-out;
}

@keyframes shine {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.menu-btn {
  display: none;
  font-size: 22px;
}

.hero {
  margin-bottom: 120px;
  padding: 10px 20px;
}

.hero-inner {
  max-width: 900px;
  margin: auto;
}

.hero h1 {
  font-size: 42px;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 16px;
}

.hero p {
  max-width: 620px;
  color: var(--text-muted);
  margin-bottom: 28px;
  font-weight: 500;
}
.primarybtn{
 display: inline-block;
   padding: 12px 26px;
  border-radius: 30px;
  font-weight: 600;
  color: #ffffff;
  background: var(--primary);
  border: solid 1px var(--primary);
  margin-top: 10px;
  margin-bottom: 20px;
  margin-right: 20px;
  transition: background 0.3s ease;
}
 .primarybtn:hover{
  background: #013094;

 }

.secondary-btn{
  display: inline-block;
   padding: 12px 26px;
  border-radius: 30px;
  font-weight: 600;
  border: 2px solid #2563eb;
  color: #2563eb;
  transition: background 0.3s ease;
}
.secondary-btn:hover{
  background: #2563eb;
color: #ffffff;
 }
.stats {
  max-width: 1200px;
  margin: 70px auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  text-align: center;
 
}

.stat h3 {
  font-size: 28px;
  color: var(--primary);
}

.stat p {
  font-size: 14px;
  color: var(--text-muted);
}

.content,
.facilities,
.academics-preview,
.dashboard-preview,
.why-choose-us,
.final-cta {
  max-width: 900px;
  margin: auto;
  padding: 70px 20px;
}


.content h2,
.facilities h2,
.academics-preview h2,
.dashboard-preview h2,
.why-choose-us h2,
.final-cta h2 {
  font-size: 28px;
  color: var(--primary);
  margin-bottom: 14px;
}

.content p,
.facilities p,
.academics-preview p,
.dashboard-preview,
.why-choose-us p,
.final-cta p {
  color: var(--text-muted);
  max-width: 700px;
  margin-bottom: 22px;
}

.facilities {
  padding: 100px 20px;
  background: #ffffff;
  text-align: center;
}

.facilities h2 {
  font-size: 34px;
  margin-bottom: 60px;
}

.facilities .container {
  max-width: 1200px;
  margin: auto;
}

.facility-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
}

.facility-card {
  background: #ffffff;
  padding: 3px 30px;
  border-radius: 18px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.11);
  transition: all 0.35s ease;
  text-align: left;
  position: relative;
  overflow: hidden;
}

/* Subtle top accent line */
.facility-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: rgb(255, 81, 1);
  
}

.facility-card h3 {
  margin-top: 13px;
  margin-bottom: 12px;
  font-size: 20px;
}

.facility-card p {
  font-size: 15px;
  line-height: 1.6;
  color: #555;
}

.academic-container-home{
  margin-bottom: 20px;
}
/* Hover effect */
.facility-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

/* Tablet */
@media (max-width: 992px) {
  .facility-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */
@media (max-width: 600px) {
  .facility-grid {
    grid-template-columns: 1fr;
  }

  .facility-card {
    text-align: center;
  }
}

/* Mobile sidebar menu */
@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 3vh;
    right: -300px;           /* hide offscreen initially */
    height: 70vh;
    width: 260px;
    background: #fff;
    box-shadow: -3px 0 12px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    padding: 60px 20px 20px;
    transition: right 0.3s ease;
    border: solid 1px #e5e7eb;
    border-radius: 30px;
    z-index: 10000;
     overflow-y: auto; /* Allows scrolling if content exceeds height */
  -webkit-overflow-scrolling: touch; /* Smooth scrolling on iOS */
  }
  .nav-links.active {
    right: 0;              /* slide in */
  }

  .nav-links a {
    margin: 18px 0;
    font-size: 16px;
    color: var(--text-dark);
  }

  .menu-btn {
    cursor: pointer;
    z-index: 11000;
  }
}

@media (max-width: 768px) {
  
  .menu-btn { display: block; }
  .brand-text { display: none; }
  .hero h1 { font-size: 32px; }
}



.school-footer {
    margin: 80px 14px 20px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    font-family: 'Inter', sans-serif;
  }

  .footer-inner {
    max-width: 1200px;
    margin: auto;
    padding: 40px 24px 20px;
  }

  .footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 40px;
  }

  .footer-col h4 {
    font-size: 14px;
    font-weight: 600;
    color: #0B2C4D;
    margin-bottom: 12px;
  }

  .footer-col p {
    font-size: 13px;
    line-height: 1.6;
    color: #475569;
  }

  .footer-col ul {
    list-style: none;
    padding: 0;
  }

  .footer-col ul li {
    margin-bottom: 8px;
  }

  .footer-col ul li a {
    font-size: 13px;
    color: #475569;
    text-decoration: none;
    transition: color 0.3s ease;
    white-space: nowrap;
  }

  .footer-col ul li a:hover {
    color: #0B2C4D;
    font-weight: 500;
  }
.footer-col p a {
  color: #475569;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-col p a:hover {
  color: #0B2C4D;
  font-weight: 500;
}

  .social-icons {
  display: flex;
  gap: 18px;
  margin-top: 10px;
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0);
  color: var(--primary);
  font-size: 18px;
  transition: 0.3s ease;
}

.social-icons a:hover {
  background: #4da6ff;
  transform: translateY(-4px);
}

  .footer-bottom {
    margin-top: 30px;
    padding-top: 16px;
    border-top: 1px solid #e5e7eb;
    text-align: center;
  }

  .footer-bottom p {
    font-size: 12.5px;
    color: #64748b;
  }

  /* Responsive */
  @media (max-width: 768px) {
    .footer-grid {
      grid-template-columns: 1fr;
      gap: 28px;
    }
  }




  
  /* ABOUT STYLES */
.about-hero {
      background: var(--secondary);
      padding: 70px 20px;
      border-radius: 30px;
    }

    .about-hero-inner {
      max-width: 900px;
      margin: auto;
    }

    .about-hero h1 {
      font-size: 42px;
      font-weight: 800;
      color: var(--primary);
      margin-bottom: 16px;
    }

    .about-hero p {
      max-width: 640px;
      font-size: 15px;
      color: var(--text-muted);
    }

    .about-section {
      max-width: 900px;
      margin: 80px auto;
      padding: 0 20px;
    }

    .about-section h2 {
      font-size: 26px;
      color: var(--primary);
      margin-bottom: 14px;
    }

    .about-section p {
      font-size: 15px;
      line-height: 1.7;
      color: var(--text-muted);
      margin-bottom: 14px;
    }

    /* Vision / Mission */
    .vision-mission {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 40px;
    }

    .vision-mission div {
      background: #ffffff;
      border: 1px solid #e5e7eb;
      border-radius: 16px;
      padding: 32px;
    }

    .founder-section {
  padding: 80px 0;
  text-align: center;
}

.founder-simple img {
  width: 220px;
  height: 220px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.founder-simple h2 {
  margin-bottom: 5px;
}

.founder-simple h3 {
  font-weight: 600;
  margin-bottom: 5px;
}

.founder-simple p {
  color: #666;
  font-size: 15px;
}

/* Subtle hover effect */
.founder-simple img:hover {
  transform: scale(1.03);
  transition: 0.4s ease;
}


.recognition-marquee-section {
  padding: 80px 0;
  text-align: center;
  background: #ffffff;
}

.marquee-wrapper {
  overflow: hidden;
  position: relative;
  margin-top: 40px;
}

.marquee-track {
  display: flex;
  gap: 80px;
  width: max-content;
  animation: marquee 25s linear infinite;
}

.marquee-track img {
  height: 70px;
  width: auto;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: 0.3s ease;
}

.marquee-track img:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.05);
}

/* Infinite Animation */
@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .marquee-track {
    gap: 50px;
  }

  .marquee-track img {
    height: 50px;
  }
}


    /* Principal Message */
    .principal-wrap {
      position: relative;
      background: #ffffff;
      border: 1px solid #e5e7eb;
      border-radius: 18px;
      padding: 70px 40px 40px;
      text-align: center;
      margin-top: 120px;
    }

    .principal-photo {
      position: absolute;
      top: -60px;
      left: 50%;
      transform: translateX(-50%);
      width: 120px;
      height: 120px;
      border-radius: 50%;
      overflow: hidden;
      border: 4px solid #ffffff;
      background: #e5e7eb;
    }

    .principal-photo img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .principal-wrap h2 {
      margin-top: 20px;
      font-size: 24px;
      color: var(--primary);
    }

    .principal-wrap p {
      max-width: 700px;
      margin: 14px auto;
      font-size: 15px;
      color: var(--text-muted);
    }

    .principal-sign {
      margin-top: 18px;
      font-weight: 600;
      color: var(--text-dark);
    }

    /* Why Us */
    .why-list {
      list-style: none;
      padding: 0;
    }

    .why-list li {
      font-size: 15px;
      color: var(--text-muted);
      margin-bottom: 10px;
      padding-left: 18px;
      position: relative;
    }

    .why-list li::before {
      content: "•";
      position: absolute;
      left: 0;
      color: var(--primary);
    }

    /* Responsive */
    @media (max-width: 768px) {
      .about-hero h1 {
        font-size: 32px;
      }

      .vision-mission {
        grid-template-columns: 1fr;
      }

      .principal-wrap {
        padding: 70px 20px 30px;
      }
    }


    /* Teacher Carousel Section */
.teacher-carousel-section {
  position: relative;
  padding: 80px 0;
  text-align: center;
}

.section-title {
  margin-bottom: 50px;
}

.carousel-container {
  position: relative;
  max-width: 1100px;
  margin: auto;
  overflow: hidden;
}

.carousel-track-container {
  overflow: hidden;
}

.carousel-track {
  display: flex;
  transition: transform 0.6s ease-in-out;
}

.carousel-card {
  min-width: 300px;
  margin: 0 20px;
  transition: transform 0.4s ease, opacity 0.4s ease;
  opacity: 0.6;
}

.carousel-card.active {
  transform: scale(1.05);
  opacity: 1;
}

.teacher-card-inner {
  background: #ffffff;
  padding: 30px;
  border-radius: 18px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

.teacher-card-inner img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 20px;
  border: 4px solid #f0f2ff;
}

.teacher-card-inner h3 {
  margin-bottom: 5px;
}

.subject {
  font-weight: 600;
  color: #555;
}

.experience {
  font-size: 14px;
  color: #888;
  margin-top: 5px;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #111;
  color: #fff;
  border: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 10px;
  z-index: 10;
  transition: 0.3s ease;
}

.carousel-btn:hover {
  background: #333;
}

.prev-btn {
  left: 0;
}

.next-btn {
  right: 0;
}

@media (max-width: 768px) {
  .carousel-card {
    min-width: 260px;
    margin: 0 10px;
  }
}

/* Responsive */
@media (max-width: 768px) {
  .carousel-card {
    flex: 0 0 220px;
    margin-right: 16px;
  }

  .carousel-btn {
    font-size: 10px;
    padding: 6px 10px;
  }
}

@media (max-width: 480px) {
  .carousel-card {
    flex: 0 0 180px;
    margin-right: 12px;
  }

  .carousel-btn {
    font-size: 10px;
    padding: 5px 8px;
  }
}


/*ACADEMICS STYLES*/
main section{
  padding: 70px 20px;
}
main {
      max-width: 900px;
      margin: 80px auto;
      padding: 0 20px;
      font-family: 'Montserrat', sans-serif;
    }

    h1, h2 {
      color: var(--primary);
      font-weight: 800;
      margin-bottom: 24px;
    }

    h1 {
      font-size: 38px;
      margin-top: 0;
      
    }

    h2 {
      font-size: 26px;
      margin-top: 48px;
    }

    .section-text {
      color: var(--text-muted);
      font-size: 15px;
      line-height: 1.7;
      margin-bottom: 30px;
      max-width: 700px;
    }

    .academics-hero {
  padding: 80px 20px;
  background: #ffffff;
  text-align: center;
}

.academics-hero-inner {
  max-width: 800px;
  margin: auto;
}

.academics-hero h1 {
  font-size: 45px;
  margin-bottom: 25px;
}

.academics-hero p {
  font-size: 18px;
  color: #555;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .academics-hero h1 {
    font-size: 30px;
  }

  .academics-hero p {
    font-size: 16px;
  }
}

/* ============================
   ACADEMIC STRUCTURE MERGED
============================ */

.academic-card {
  background: #ffffff;
  padding: 35px 28px;
  margin-top: 13px;
  border-radius: 18px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.103);
  transition: all 0.35s ease;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.curriculum-btn{
  display: inline-block;
  padding: 12px 26px;
  border-radius: 30px;
  font-weight: 600;
  max-width: 300px;
  text-align: center;
  color: #ffffff;
  background: var(--primary);
  border: 1px solid var(--primary);
  margin-top: 18px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.curriculum-btn:hover {
  background: #013094;
  transform: translateY(-2px);
}
  
    /* ============================
   TEACHING METHODOLOGY
============================ */

.methodology-section {
  background: #4da6ff2d;
  border-radius: 30px;
}

.method-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.method-card {
  background: #ffffff;
  padding: 30px 25px;
  border-radius: 16px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.05);
  transition: 0.35s ease;
  text-align: center;
}

.method-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

.method-card h3 {
  margin-bottom: 12px;
  font-size: 18px;
}

.method-card p {
  font-size: 15px;
  line-height: 1.6;
  color: #555;
}
@media (max-width: 992px) {
  .method-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .method-grid {
    grid-template-columns: 1fr;
  }
}

    /* Responsive adjustments */
    @media (max-width: 768px) {
      h1 {
        font-size: 30px;
      }

      h2 {
        font-size: 22px;
      }

      .curriculum-list {
        grid-template-columns: 1fr;
      }
    }


/* ============================
   CO-CURRICULAR SECTION
============================ */

.cocurricular-section {
  background: #ffffff;
}

.section-intro {
  max-width: 750px;
  margin: 0 auto 50px auto;
  font-size: 16px;
  color: #555;
  line-height: 1.7;
}

.cocurricular-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.cocurricular-card {
  background: #f8f9fc;
  padding: 30px 25px;
  border-radius: 16px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.11);
  transition: 0.35s ease;
  text-align: left;
}

.cocurricular-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

.cocurricular-card h3 {
  margin-bottom: 12px;
  font-size: 18px;
}

.cocurricular-card p {
  font-size: 15px;
  line-height: 1.6;
  color: #555;
}
 @media (max-width: 992px) {
  .cocurricular-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .cocurricular-grid {
    grid-template-columns: 1fr;
  }

  .cocurricular-card {
    text-align: center;
  }
}

/* ============================
   EXAMINATION SECTION
============================ */

.examination-section {
  background: #f8f9fc;
}

.exam-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.exam-card {
  background: #ffffff;
  padding: 30px 25px;
  border-radius: 16px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.05);
  transition: 0.35s ease;
  text-align: center;
}

.exam-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

.exam-card h3 {
  margin-bottom: 12px;
  font-size: 18px;
}

.exam-card p {
  font-size: 15px;
  line-height: 1.6;
  color: #555;
}
@media (max-width: 992px) {
  .exam-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .exam-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================
   FINAL CTA
============================ */

.academics-cta {
  background: #4da6ff5e;
  padding: 70px 20px;
  text-align: center;
  border-radius: 30px;
}

.cta-content h2 {
  font-size: 28px;
  margin-bottom: 15px;
}

.cta-content p {
  max-width: 600px;
  margin: 0 auto 25px auto;
  font-size: 16px;
  line-height: 1.6;
  opacity: 0.95;
}



.academics-cta .primarybtn:hover {
  background: #f2f2f2;
  color: var(--primary);
}






    /*CAMPUS STYLES*/

    :root {
  --primary: #054de9;
  --text-dark: #0F172A;
  --text-muted: #475569;
  --background: #fff;
  --border-color: #e5e7eb;
}

.campus-container {
  max-width: 1100px;
  margin: 60px auto 100px;
  padding: 0 20px;
  font-family: 'Montserrat', sans-serif;
  color: var(--text-dark);
}
/* ============================
   CAMPUS HERO
============================ */

.campus-hero {
  background: url('assets/herohome.webp') center/cover no-repeat;
  padding: 140px 20px;
  text-align: center;
  height: 70vh;
  border-radius: 30px;
}

.campus-hero h1 {
  font-size: 42px;
  margin-bottom: 15px;

}

.campus-hero p {
  max-width: 600px;
  margin: 0 auto;
  font-size: 18px;
  line-height: 1.6;
  opacity: 0.95;
}
/* ============================
   CAMPUS SECTION BASE
============================ */

.campus-section {
  padding: 90px 20px;
  background: #ffffff;
}

.campus-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.campus-text h2 {
  font-size: 30px;
  margin-bottom: 20px;
}

.campus-text p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 15px;
  color: #555;
}

.campus-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}
@media (max-width: 992px) {
  .campus-grid {
    grid-template-columns: 1fr;
  }

  .campus-image {
    order: -1;
  }

  .campus-text {
    text-align: center;
  }
}


/* 2️⃣ Campus Environment & Safety */

.campus-section h2 {
  font-size: 28px;
  color: var(--primary);
  margin-bottom: 30px;
  font-weight: 700;
  border-bottom: 3px solid var(--primary);
  padding-bottom: 8px;
  max-width: max-content;
}

.icon-cards {
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
  justify-content: center;
}

.icon-card {
  flex: 1 1 220px;
  background: var(--background);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 30px 20px;
  box-shadow: 0 4px 10px rgba(5, 77, 233, 0.1);
  text-align: center;
  transition: box-shadow 0.3s ease;
}

.icon-card:hover {
  box-shadow: 0 8px 20px rgba(5, 77, 233, 0.25);
}

.icon {
  font-size: 40px;
  margin-bottom: 18px;
  color: var(--primary);
}

.icon-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
  font-weight: 600;
  color: var(--text-dark);
}

.icon-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.5;
}


/* Responsive */
@media (max-width: 768px) {
  .page-intro h1 {
    font-size: 28px;
  }

  .campus-section h2 {
    font-size: 24px;
    margin-bottom: 20px;
  }

  .icon-cards {
    flex-direction: column;
    gap: 20px;
  }

  .icon-card {
    flex: 1 1 100%;
    padding: 25px 15px;
  }
}

/* ============================
   CAMPUS LIFE GLOBAL STYLES
============================ */

.campus-section {
  padding: 100px 20px;
  background: #ffffff;
}


.section-title {
  text-align: center;
  font-size: 32px;
  margin-bottom: 20px;
  font-weight: 600;
}

.section-intro {
  max-width: 750px;
  margin: 0 auto 60px auto;
  text-align: center;
  font-size: 16px;
  line-height: 1.7;
  color: #555;
}

/* ============================
   GRID SYSTEM
============================ */

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* ============================
   CAMPUS CARDS
============================ */

.campus-card {
  background: #ffffff;
  padding: 35px 25px;
  border-radius: 18px;
  box-shadow: 0 15px 45px rgba(0,0,0,0.05);
  transition: all 0.35s ease;
  text-align: center;
}

.campus-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 60px rgba(0,0,0,0.08);
}

.campus-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.campus-card p {
  font-size: 15px;
  line-height: 1.6;
  color: #555;
}

/* ============================
   CAMPUS GRID (IMAGE + TEXT)
============================ */

.campus-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.campus-text h2 {
  font-size: 30px;
  margin-bottom: 20px;
}

.campus-text p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 15px;
  color: #555;
}

.campus-image img {
  width: 100%;
  border-radius: 22px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.1);
  transition: 0.4s ease;
}

.campus-image img:hover {
  transform: scale(1.03);
}

/* ============================
   RESPONSIBILITY LIST
============================ */

.responsibility-list {
  max-width: 700px;
  margin: 40px auto 0 auto;
  list-style: none;
  padding: 0;
}

.responsibility-list li {
  padding: 15px 20px;
  margin-bottom: 15px;
  background: #f8f9fc;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.04);
  font-size: 15px;
  line-height: 1.6;
  transition: 0.3s ease;
}

.responsibility-list li:hover {
  transform: translateX(6px);
}

/* ============================
   GALLERY
============================ */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.gallery-grid img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 18px;
  transition: 0.4s ease;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.gallery-grid img:hover {
  transform: scale(1.05);
}

/* ============================
   RESPONSIVE
============================ */

@media (max-width: 992px) {
  .card-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .campus-grid {
    grid-template-columns: 1fr;
  }

  .campus-text {
    text-align: center;
  }
}

@media (max-width: 600px) {
  .card-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .section-title {
    font-size: 26px;
  }

  .campus-section {
    padding: 70px 20px;
  }
}

/* 8️⃣ CTA */
.campus-cta {
  text-align: center;
  margin: 40px 0 60px;
}

.campus-cta p {
  font-size: 18px;
  color: var(--text-dark);
  margin-bottom: 18px;
  font-weight: 600;
}

.primary-btn{
  background: var(--primary);
  color: #fff;
  padding: 14px 34px;
  font-weight: 700;
  font-size: 15px;
  border-radius: 8px;
  text-decoration: none;
  display: inline-block;
  transition: background 0.3s ease;
}

.primary-btn:hover {
  background: #013094;
}

/* Responsive */
@media (max-width: 768px) {
  .sports-content {
    flex-direction: column;
  }

  .sports-images {
    grid-template-columns: 1fr 1fr;
  }

  .activity-cards {
    flex-direction: column;
  }

  .activity-card {
    flex: 1 1 100%;
  }

  .events-track img {
    min-width: 100%;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }
}


/*ADMISSIONS STYLES*/
.admissions-page {
  font-family: 'Inter', sans-serif;
  color: #1f2937;
}

/* HERO */
.admissions-hero {
  padding: 100px 20px;
  text-align: center;
  background: #f9fafb;
}

.admissions-hero h1 {
  font-size: 42px;
  margin-bottom: 12px;
}

.admissions-hero p {
  font-size: 18px;
  margin-bottom: 30px;
  color: #4b5563;
}

.hero-cta {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* BUTTONS */
.btn {
  padding: 12px 26px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
}

.btn.primary {
  background: #2563eb;
  color: #fff;
}

.btn.secondary {
  border: 2px solid #2563eb;
  color: #2563eb;
}

/* SECTIONS */
.admissions-section {
  padding: 70px 20px;
  max-width: 1100px;
  margin: auto;
}


.admissions-section h2 {
  text-align: center;
  margin-bottom: 40px;
  font-size: 28px;
}

/* ===================================
   FEE STRUCTURE – ISOLATED STYLING
=================================== */

.fee-structure-section {
  padding: 110px 20px;
  background: #f5f7fb;
  text-align: center;
}

.fee-structure-section .fee-container {
  max-width: 1100px;
  margin: auto;
}

.fee-structure-section .fee-title {
  font-size: 34px;
  font-weight: 600;
  margin-bottom: 60px;
}

.fee-structure-section .fee-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
}

.fee-structure-section .fee-card {
  background: #ffffff;
  padding: 45px 30px;
  border-radius: 20px;
  box-shadow: 0 18px 50px rgba(0,0,0,0.05);
  transition: all 0.35s ease;
}

.fee-structure-section .fee-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 70px rgba(0,0,0,0.08);
}

.fee-structure-section .fee-card h3 {
  font-size: 20px;
  margin-bottom: 15px;
}
.fee-structure-section .fee-card h4 {

  margin-bottom: 20px;
}
.fee-structure-section .fee-card a {
  display: inline-block;
  padding: 12px 22px;
  font-size: 14px;
  text-decoration: none;
  border-radius: 30px;
  background: var(--primary);
  color: #ffffff;
  transition: 0.3s ease;
}

.fee-structure-section .fee-card a:hover {
  background: #013094;
}

/* ===== RESPONSIVE ===== */

@media (max-width: 992px) {
  .fee-structure-section .fee-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .fee-structure-section {
    padding: 80px 20px;
  }

  .fee-structure-section .fee-title {
    font-size: 26px;
  }

  .fee-structure-section .fee-grid {
    grid-template-columns: 1fr;
  }

  .fee-structure-section .fee-card {
    padding: 35px 22px;
  }
}

/* LISTS */
.eligibility-list,
.documents-list {
  max-width: 600px;
  margin: auto;
  list-style: none;
  padding: 0;
}

.eligibility-list li,
.documents-list li {
  padding: 10px 0;
  border-bottom: 1px solid #e5e7eb;
}

/* PROCESS */
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.step {
  background: #fff;
  padding: 25px;
  border-radius: 16px;
  text-align: center;
  border: 1px solid #e5e7eb;
}

.step span {
  display: inline-block;
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #2563eb;
}

/* WHY US */
.why-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.why-card {
  background: #fff;
  padding: 25px;
  border-radius: 16px;
  border: 1px solid #e5e7eb;
  text-align: center;
}

/* FAQ */
.faq {
  max-width: 800px;
  margin: auto;
}

.faq-item {
  border-bottom: 1px solid #e5e7eb;
}

.faq-question {
  width: 100%;
  padding: 16px;
  background: none;
  border: none;
  text-align: left;
  font-weight: 600;
  cursor: pointer;
}

.faq-answer {
  display: none;
  padding: 0 16px 16px;
  color: #4b5563;
}

/* FINAL CTA */
.admissions-cta {
  padding: 90px 20px;
  text-align: center;
  background: #ffee00;
  color: #fff;
  border-radius: 30px;
}

.admissions-cta h2 {
  margin-bottom: 30px;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}




/*CONTACT STYLES*/
.contact-page {
  max-width: 1100px;
  margin: auto;
  padding: 80px 20px;
}

/* Intro */
.contact-intro {
  text-align: center;
  margin-bottom: 60px;
}

.contact-intro h1 {
  font-size: 36px;
  color: var(--primary);
  margin-bottom: 12px;
}

.contact-intro p {
  max-width: 600px;
  margin: auto;
  color: var(--text-muted);
}

/* Contact Info Cards */
.contact-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 24px;
  margin-bottom: 70px;
}

.info-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 22px;
}

.info-card h3 {
  font-size: 15px;
  color: var(--primary);
  margin-bottom: 8px;
}

.info-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

.info-card a {
  color: var(--text-dark);
}

.muted {
  font-size: 12px;
  color: #64748b;
}

/* Map */
.map-section {
  margin-bottom: 80px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #e5e7eb;
}

.map-section iframe {
  width: 100%;
  height: 340px;
  border: none;
}

/* Contact Form */
.contact-form-section {
  max-width: 620px;
  margin: auto;
}

.contact-form-section h2 {
  font-size: 26px;
  color: var(--primary);
  margin-bottom: 8px;
}

.form-note {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 26px;
}

.contact-form {
  display: grid;
  gap: 18px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-size: 13px;
  margin-bottom: 6px;
  color: var(--text-dark);
}

.form-group input,
.form-group textarea {
  padding: 12px 14px;
  border-radius: 8px;
  border: 1px solid #e5e7eb;
  font-size: 14px;
  font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
}

.primary-btn {
  margin-top: 10px;
  padding: 14px;
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
}

/* Final Note */
.contact-note {
  margin-top: 80px;
  text-align: center;
}

.contact-note p {
  font-size: 14px;
  color: var(--text-muted);
}

/* Mobile */
@media (max-width: 768px) {
  .contact-page {
    padding: 60px 16px;
  }

  .contact-intro h1 {
    font-size: 30px;
  }
}



