:root{
            --accent:#1e90ff;
            --muted:#6b7280;
            --bg:#7b7f81;
            --card:#ff5404da;
            --radius:12px;
            font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
            color-scheme: light;
}
  .body {
  margin: 0;
  padding: 0;
  color: #222;
  /* Gradient background */
  background: linear-gradient(to bottom right, #f5f5f5, #d3d3d3, #ff8800);
  background-attachment: fixed; /* stays still while scrolling */
  }

/* Reset default margins */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
  width: 100%;
  margin: 0;
  padding: 0;
}


@media (max-width: 768px) {
  /* Body should only account for the single mobile nav (60px) */
  body {
    padding-top: 63px !important; /* match .mobile-nav height */
  }
  /* Ensure desktop navbars are hidden (in case earlier rules didn't apply) */
  .top-nav, .main-nav {
    display: none !important;
  }

  /* Make sure mobile nav is fixed at top and above content */
  .mobile-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 60px;
    z-index: 1300;
    
    /* Try to center text */
    text-align: center;
    justify-content: center;
  }

  /* Remove any extra per-section margin that was pushing content down */
  main, section, .hero {
    margin-top: 0 !important;
    padding-top: 0 !important;
  }
}

    /* ===== TOP NAVBAR (Logo + Name) ===== */
    .top-nav {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 15px;
      background: #000;
      color: orange;
      padding: 10px 20px;
      height: 60px;
      z-index: 1002;
      position: fixed;
      width: 100%;
      top: 0;
    }

    .top-nav img {
      height: 40px;
      width: 40px;
      border-radius: 50%;
      object-fit: cover;
    }

    .top-nav h1 {
      font-size: 20px;
      letter-spacing: 1px;
    }

    /* ===== MAIN NAVBAR (with slideshow background) ===== */
    .main-nav {
      position: fixed;
      top: 60px; /* directly below top nav */
      width: 100%;
      height: 80px; /* reduced height */
      z-index: 1001;
    }


    /* Nav links */
    .nav-links-container {
      position: relative;
      z-index: 1;
      display: flex;
      justify-content: center;
      align-items: center;
      background: rgba(0, 0, 0, 0.7);
      height: 80px;
      backdrop-filter: brightness(70%);
      border-bottom: 2px solid orange; /* line below navbar */
    }

    .nav-links {
      list-style: none;
      display: flex;
      gap: 30px;
    }

    .nav-links a {
      text-decoration: none;
      color: #fff;
      font-weight: 600;
      font-size: 18px;
      transition: color 0.3s;
    }

    .nav-links a:hover {
      color: orange;
    }

    /* ===== MOBILE NAVBAR ===== */
    .mobile-nav {
      display: none;
      background: #000;
      color: orange;
      padding: 10px 20px;
      justify-content: space-between;
      align-items: center;
      z-index: 1003;
      position: fixed;
      width: 100%;
      top: 0;
      height: 60px;
    }

    .mobile-nav img {
      height: 40px;
      width: 40px;
      border-radius: 50%;
      object-fit: cover;
    }

    .mobile-nav h2 {
      font-size: 18px;
      text-align: center;
      flex: 1;
    }

    .menu-toggle {
      background: none;
      border: none;
      font-size: 28px;
      color: white;
      cursor: pointer;
    }

   /* ===== RESPONSIVE ===== */
    @media (max-width: 768px) {
      .top-nav,
      .main-nav {
        display: none;
      }
      .mobile-nav {
        display: flex;
      }
      section {
        margin-top: 80px;
      }
    }

    /* ===== RIGHT-SLIDING MENU ===== */
    .sidebar {
      position: fixed;
      top: 0;
      right: -250px;
      width: 250px;
      height: 100%;
      background: rgba(0, 0, 0, 0.877);
      display: flex;
      flex-direction: column;
      padding: 20px;
      transition: right 0.4s ease;
      z-index: 2000;
    }

    .mobile-sidebar a + a { padding-top: 14px; border-top: 2px solid rgb(255, 136, 0); }

    .sidebar.active {
      right: 0;
    }

    .close-btn {
      align-self: flex-end;
      background: rgb(255, 255, 255);
      border: none;
      color: orange;
      font-size: 28px;
      cursor: pointer;
      margin-bottom: 10px;
    }

    .sidebar a {
      color: white;
      text-decoration: none;
      margin: 15px 0;
      font-size: 18px;
      transition: color 0.3s;
    }

    .sidebar a:hover {
      color: orange;
    }

     /* ---------------- Slideshow (directly under navbars) ---------------- */
    .slideshow-wrap{
      position:relative; /* sits under the navbars because of body padding-top */
      width:100%;
      height:560px;
      overflow:hidden;
      background:#000;
      z-index:1;
      border-bottom:2px solid rgba(255, 91, 91, 0.06);
    }
    .slide{
      position:absolute;
      inset:0;
      opacity:0;
      transition:opacity 1s ease-in-out;
    }
    .slide img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block
    }

    .slide.active{opacity:1}


    /* slideshow overlay text */
    .slideshow-text{
      position:absolute;
      left:50%;
      top:55%;
      transform:translate(-50%,-50%);
      display: inline-block;
       background-color: rgba(0, 0, 0, 0.6);
      z-index:3;
      color:#fff;
      text-align:center;
      padding:20px;
      max-width:900px;
      text-shadow:2px 2px 12px rgb(0, 0, 0)
    }

    .slideshow-text h1{
    font-size:44px;
    color:orange;
    margin-bottom:8px 
    }

    .slideshow-text p{
    font-size:18px;
    max-width:800px;
    margin:0 auto;
    color:#fff}

    /* optional small caption at lower-left */
    .slideshow-caption{
      position:absolute;left:24px;bottom:18px;color:#fff;font-weight:600;text-shadow:1px 1px 6px rgba(0,0,0,.6);
      z-index:3;
    }

    .slideshow .nav-btn.prev{left:14px}
    .slideshow .nav-btn.next{right:14px}

      /* ---------------- Responsiveness ---------------- */
    @media (max-width:900px){
      body{padding-top:140px} 
      .slideshow-wrap{height:48vh}
    }

    @media (max-width:768px){
      .top-nav,.main-nav{display:none}
      .mobile-nav{display:flex}
      body{padding-top:60px}
      .slideshow-wrap{height:44vh}
      .slideshow-text h1{font-size:20px}
      .slideshow-text p{font-size:14px}
    }
    
 .hero{
  background:linear-gradient(180deg, rgba(255, 166, 0, 0.336), rgba(112, 112, 103, 0.144));
  padding:38px;
  border-radius:var(--radius);
  display:flex;
  grid-template-columns:1fr 340px;
  gap:24px;
  align-items:center;
  box-shadow:0 6px 30px rgba(15,23,42,0.06);
  margin-bottom:28px;
}


.hero h1{margin:0;font-size:28px}
.hero h3{margin-bottom:8px;text-align: center;}
.hero p{margin:10px 0;color:var(--muted)}
.features{display:flex;gap:12px;margin-top:12px;flex-wrap:wrap}
.feature{background:rgba(30,144,255,0.06);padding:8px 10px;border-radius:8px;color:var(--accent);font-weight:600}

    .quick-card{
            background:var(--card);padding:16px;border-radius:10px;box-shadow:0 6px 18px rgba(8,16,37,0.04)
        }
    .mini-stats{display:flex;gap:12px;flex-wrap:wrap}
    .stat{flex:1;min-width:96px;background:linear-gradient(180deg,#fff,#fbfdff);padding:12px;border-radius:8px;text-align:center}
    .stat b{display:block;font-size:18px}
    .stat span{color:var(--muted);font-size:13px}
  

    @media (max-width: 768px) {
      
      .hero {
        padding: 20px;
        margin-bottom: 15px;
        gap: 15px;
        grid-template-columns: 1fr;
      }

      main {
        padding-top: 120px;
      }

      --section {
        margin-bottom: 15px;
      }
   

      .quick-card {
        padding: 12px;
      }

      .features {
        gap: 8px;
        margin-top: 8px;
      }
    }

    /* ===== RESPONSIVE ===== */
    @media (max-width: 768px) {
      .top-nav,
      .main-nav {
        display: none;
      }
      .mobile-nav {
        display: flex;
      }
      section {
        margin-top: 80px;
      }
    }

/* ===== DISCOVER TITLE ===== */
.discover-title {
  font-size: 30px;
  font-weight: 700;
  color: orange;
  text-transform: uppercase;
  text-align: center;
   display: block;
  width: 100%;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.discover-title::after {
  content: "";
  position: absolute;
  width: 60%;
  height: 3px;
  background: rgb(0, 0, 0);
  bottom: -8px;
  left: 20%;
}

.feature-highlights .discover-title {
  text-align: center;
  width: 100%;
}

.feature-highlights h2.discover-title {
    margin-bottom: 20px !important;
}

/* Fix spacing for quick links section */
.quick-links h2.discover-title {
    margin-bottom: 20px !important;
}

/* Ensure the paragraphs below have proper spacing */
.feature-highlights p {
    margin-top: 0 !important;
    margin-bottom: 40px !important;
}

.quick-links p {
    margin-top: 0 !important;
    margin-bottom: 30px !important;
    color: #000000 !important;
    max-width: 900px !important;
    line-height: 1.6 !important;
}

.quick-links .discover-title {
  text-align: center;
  width: 100%;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .discover-title {
    font-size: 25px;
    letter-spacing: 3px;
  }

     .feature-highlights h2.discover-title {
        margin-top: 30px !important;
    }
    
    .quick-links h2.discover-title {
        margin-top: 30px !important;
    }
  }


/* ===== QUICK LINKS SECTION ===== */
.quick-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  padding: 20x 10%;
  background: #f9f9f9;
  position: relative;
  overflow: hidden;
  margin-bottom: 20px;
}

 .quick-links .btn{
    display:inline-block;
    padding:10px 18px;
    background: linear-gradient(90deg, rgba(255, 166, 0, 0.89), rgba(255, 251, 0, 0.829));
    color:#fff;
    border-radius:6px;
    text-decoration:none;
    font-weight:700}

.card-row {
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
  width: 100%;
  max-width: 1000px;
}


/* ===== CARD DESIGN ===== */
.card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  transition: transform 0.5s ease, box-shadow 0.5s ease, opacity 0.6s ease;
  cursor: pointer;
  width: 100%;
  max-width: 420px;
  text-align: center;
  opacity: 0;
  transform: translateY(50px);
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.card .text {
  padding: 16px 12px;
  color: #333;
  font-weight: 600;
  font-size: 17px;
}

/* ===== ANIMATION STATES ===== */
.card.show {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .card-row {
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .card-row {
    flex-direction: column;
    align-items: center;
    gap: 25px;
  }

  .quick-links {
    padding: 50px 5%;
  }

  .card img {
    height: 180px;
  }

  .card .text {
    font-size: 15px;
  }
}

.memories {
    padding: 60px 10%;
    text-align: center;
    background-color: #f9f9f9;
}

.memories h2 {
    font-size: 32px;
    color: orange;
    margin-bottom: 20px;
}

.memories p {
    font-size: 18px;
    max-width: 900px;
    margin: 0 auto 40px;
    line-height: 1.6;
    color: #444;
}

.memories-gallery {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.memory-card {
    width: 300px;
    cursor: pointer;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0,0,0,0.12);
    transition: transform 0.25s ease;
}

.memory-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
}

.memory-card .text {
    padding: 10px;
    font-weight: 600;
    background: #fff;
}

.memory-card:hover {
    transform: scale(1.03);
}

.memories.btn {
    display: inline-block;
    padding: 12px 28px;
    background-color: orange;
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    border-radius: 6px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    margin-top: 20px;
}

.btn:hover {
    background-color: #e69500; /* slightly darker orange */
    transform: translateY(-2px);
}



    .about-hero {
      background: url('images/school.jpg') center/cover no-repeat;
      height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      text-align: center;
    }

    .hero-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.6);
      backdrop-filter: blur(10px);
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      color: white;
    }

    .hero-overlay h2 {
      font-size: 2.5rem;
      color: orange;
    }

    .hero-overlay p {
      font-size: 1.2rem;
      color: #ddd;
    }

/* School History / Overview */
.about-history {
  padding: 60px 20px;
  background-color: white;
  text-align: left;
}

.about-history h2 {
  color: orange;
  margin-bottom: 20px;
  font-size: 25px;
  text-align: center;
}

.about-history p {
  color: #000000;
  line-height: 1.7;
  text-align:left;
  font-size: 14;
}

/* Responsive Design */
@media (max-width: 768px) {
 .about-history {
        margin-top: 30px !important;
        padding-top: 30px !important;
    }

  .hero-overlay h2 {
    font-size: 1.8rem;
  }

  .about-hero {
    height: 60vh;
  }
}

.feature-highlights {
  padding: 80px 10%;
  background: linear-gradient(to bottom, #fff8f0, #fff);
}

.feature-highlights .feature-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 28px;
}

.feature-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.feature-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.feature-card h3 {
  font-size: 20px;
  margin: 16px 16px 8px;
  color: #FF8C00;
}

.feature-card p {
  flex-grow: 1;
  margin: 0 16px 16px;
  color: #000000;
  font-size: 14px;
}

.feature-card .card-link {
  margin: 0 16px 16px;
  color: #fff;
  background: linear-gradient(90deg, #ffa600e1, #ffea00d8);
  padding: 8px 12px;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
  box-shadow: #000000;
  text-align: center;
  display: inline-block;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.15);
}

@media (max-width: 768px) {
  .feature-highlights {
    padding: 50px 5%;
  }
  .feature-card img {
    height: 160px;
  }
  .feature-card h3 {
    font-size: 18px;
  }
  .feature-card p {
    font-size: 14px;
  }
}

 /* FACILITIES SECTION */
.facilities {
  padding: 40px 20px;
  background: #f8f8f8;
  text-align: center;
}

.facilities h2 {
  font-size: 2rem;
  color: #ff8c00; /* orange accent */
  margin-bottom: 10px;
}

.section-subtitle {
  color: #000000;
  font-size: 1rem;
  margin-bottom: 40px;
}

.facility-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  justify-content: center;
  align-items: stretch;
}

.facility-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.facility-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.facility-card h3 {
  color: #000000;
  font-size: 1.25rem;
  margin: 15px 0 5px;
}

.facility-card p {
  color: #000000;
  font-size: 0.95rem;
  padding: 0 15px 20px;
}

.facility-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0,0,0,0.15);
}



/* ===== OUR PHILOSOPHY SECTION ===== */
.philosophy-section {
  background: #f9fafb;
  padding: 80px 0;
  padding-top: 20px;;
  text-align: center;
  width: 100%;
  color: #000000;
  overflow-x: hidden;
}

.philosophy-header h2 {
  color: rgb(0, 0, 0);
  font-size: 2.2rem;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-shadow: white 1px 1px 2px;
}

.philosophy-header p {
  color: #000000;
  max-width: 800px;
  margin: 0 auto 60px;
  font-size: 1.1rem;
  line-height: 1.7;
}

.philosophy-header h2 span {
  display: block;
  font-size: 1.4rem;     
  font-weight: 500;     
  color: #000000;        
  margin-top: 8px;      
}

.philosophy-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 35px;
  justify-content: center;
  align-items: stretch;
}

.philosophy-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  padding: 40px 28px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.philosophy-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}

.philosophy-card .icon {
  font-size: 2.8rem;
  color: orange;
  margin-bottom: 16px;
  animation: bounceIn 1s ease;
}

.philosophy-card h3 {
  color: #000000;
  font-size: 1.4rem;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.philosophy-card p {
  color: #000000;
  font-size: 1rem;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .philosophy-section {
    margin-top: 10px !important;
    padding: 6%;
  }

  .philosophy-header h2 {
    font-size: 1.8rem;
  }

  .philosophy-header p {
    font-size: 1rem;
  }

  .philosophy-card {
    padding: 32px 24px;
  }
}

/* ----- Animations ----- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes bounceIn {
  0% { transform: scale(0.8); opacity: 0; }
  50% { transform: scale(1.05); opacity: 1; }
  100% { transform: scale(1); }
}

.fade-in {
  opacity: 0;
  animation: fadeUp 0.8s ease forwards;
}


 :root {
      --primary-color: #0f766e;
      --secondary-color: #0ea5a3;
      --text-color: #0f172a;
      --muted-text: #6b7280;
      --background-color: #ffffff;
      --radius: 12px;
      --max-width: 1100px;
      font-family: 'Inter', sans-serif;
    }

    .curriculum-wrapper {
      padding: 0;
      display: flex;
      justify-content: center;
      align-items: center;
      flex-direction: column;
      width: 100vw;
      margin-left: calc(50% - 50vw);
    }

    .curriculum-content {
      display: grid;
      grid-template-columns: 1fr;
      gap: 24px;
      max-width: none;
      width: 100%;
      background-color: #f9fafb;
      border-radius: var(--radius);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
      padding: 32px;
    }

    @media (min-width: 920px) {
      .curriculum-content {
        grid-template-columns: 1fr 400px;
        padding: 40px;
      }
    }

    .curriculum-text {
      padding: 10px;
    }

    .curriculum-label {
      display: inline-block;
      background-color: rgba(15, 118, 110, 0.1);
      color: var(--primary-color);
      font-weight: 600;
      font-size: 14px;
      padding: 6px 12px;
      border-radius: 999px;
      margin-bottom: 10px;
    }

    .curriculum-heading {
      font-size: 26px;
      margin-bottom: 12px;
    }

    .curriculum-intro {
      color: var(--muted-text);
      font-size: 15px;
      margin-bottom: 24px;
      line-height: 1.6;
    }

    .curriculum-features {
      display: grid;
      gap: 14px;
    }

    .curriculum-feature-item {
      display: flex;
      gap: 12px;
      align-items: flex-start;
      background-color: #ffffff;
      border-radius: var(--radius);
      padding: 12px;
      border: 1px solid rgba(15, 23, 42, 0.05);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .curriculum-feature-item:hover {
      transform: translateY(-4px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
    }

    .curriculum-icon {
      background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
      color: #fff;
      border-radius: 10px;
      display: grid;
      place-items: center;
      width: 44px;
      height: 44px;
      flex-shrink: 0;
      font-size: 18px;
    }

    .curriculum-feature-title {
      font-size: 16px;
      margin: 0;
    }

    .curriculum-feature-text {
      font-size: 13px;
      color: var(--muted-text);
      margin: 4px 0 0;
      line-height: 1.5;
    }

    .curriculum-info-box {
      background: linear-gradient(180deg, rgba(14, 116, 109, 0.06), rgba(14, 116, 109, 0.03));
      border-radius: var(--radius);
      padding: 20px;
      display: flex;
      flex-direction: column;
      gap: 14px;
    }

    .curriculum-badge {
      background-color: var(--primary-color);
      color: #fff;
      padding: 8px 12px;
      border-radius: 10px;
      font-weight: 700;
      display: inline-block;
      align-self: flex-start;
    }

    .curriculum-subheading {
      font-size: 18px;
      margin: 4px 0;
    }

    .curriculum-subtext {
      color: var(--muted-text);
      font-size: 13px;
      line-height: 1.5;
    }

    .curriculum-spec-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 10px;
    }

    @media (max-width: 600px) {
      .curriculum-heading {
        font-size: 22px;
      }

      .curriculum-intro {
        font-size: 14px;
      }

      .curriculum-feature-item {
        flex-direction: column;
        align-items: flex-start;
      }

      .curriculum-spec-grid {
        grid-template-columns: 1fr;
      }

      .curriculum-buttons {
        flex-direction: column;
      }

      .btn-primary, .btn-outline {
        width: 100%;
        text-align: center;
      }
    }

    .curriculum-spec-item {
      background-color: #ffffff;
      border: 1px solid rgba(15, 23, 42, 0.05);
      padding: 10px;
      border-radius: var(--radius);
    }

    .curriculum-spec-item b {
      display: block;
      font-size: 15px;
    }

    .curriculum-spec-item small {
      color: var(--muted-text);
      font-size: 12px;
    }

    .curriculum-buttons {
      display: flex;
      gap: 10px;
      margin-top: 12px;
    }

    .btn-primary {
      background-color: var(--primary-color);
      color: #fff;
      border: none;
      padding: 10px 16px;
      border-radius: var(--radius);
      cursor: pointer;
      font-weight: 600;
      transition: background-color 0.3s ease;
    }

    .btn-primary:hover {
      background-color: var(--secondary-color);
    }

    .btn-outline {
      background: transparent;
      color: var(--primary-color);
      border: 1px solid rgba(15, 23, 42, 0.1);
      padding: 10px 16px;
      border-radius: var(--radius);
      cursor: pointer;
      font-weight: 600;
    }

    .fade-in {
      opacity: 0;
      transform: translateY(20px);
      transition: all 0.6s ease;
    }

    .fade-in.visible {
      opacity: 1;
      transform: translateY(0);
    }

.unique-section {
  background:rgba(255, 166, 0, 0.089);
  color: #000000;
  padding:20px 0;
  text-align: center;
}

.unique-section h2 {
  font-size: 25px;
  color: rgb(255, 174, 0);
  margin-bottom: 30px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.unique-list {
  list-style: none;
  max-width: 900px;
  margin: 0 auto;
  padding: 0;
}

.unique-item {
  background: rgb(255, 255, 255);
  border-left: 5px solid orange;
  margin: 15px 0;
  padding: 20px;
  border-radius: 10px;
  font-size: 1.05rem;
  text-align: left;
  opacity: 0;                        /* start hidden */
  transform: translateY(30px);
  transition: all 0.8s ease;
}

/* When visible on scroll */
.unique-item.visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- Responsive --- */
@media (max-width: 768px) {
  .unique-section {
    padding:5px 15px;
  }

  .unique-item {
    font-size: 0.95rem;
    padding: 15px;
  }
  .unique-section h2 {
    font-size: 20px;
    margin-top:20px;
  }
}

.gallery-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin: 30px 0;
}

.tab-btn {
  padding: 12px 28px;
  background: black;
  color: orange;
  border: 2px solid orange;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}

.tab-btn:hover {
  background: orange;
  color: white;
  border-color: black;
  border-radius: 2px;
}

/* Modal full screen */
.modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  z-index: 2000;
  overflow-y: auto;
  padding-top: 60px;
}

.modal-content {
  max-width: 1000px;
  margin: auto;
  background: white;
  padding: 30px;
  border-radius: 12px;
}

.close {
  position: absolute;
  top: 20px;
  right: 25px;
  font-size: 45px;
  color: white;
  cursor: pointer;
}

.tab-btn.active {
  background: orange;
  color: #000;
  border-color: #000;
  transform: scale(1.05);
}

/* =============================
   GALLERY GRID
============================= */
.gallery-section {
  display: none;
  animation: fadeIn 0.7s ease-in-out;
}

.gallery-section.active {
  display: grid;
}

.gallery-grid {
  display: grid;
  gap: 15px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.gallery-grid img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  border-radius: 12px;
  cursor: pointer;
  transition: transform 0.3s;
}

.gallery-grid video {
  width: 100%;
  height: 550px;
  object-fit: cover;
  border-radius: 12px;
  cursor: pointer;
  transition: transform 0.3s;
}

body.lightbox-open .gallery-grid video {
  pointer-events: none !important;
}


.gallery-grid img:hover {
  transform: scale(1.05);
}

/* Tablet view - reduce gap */
@media (max-width: 1024px) and (min-width: 768px) {
  .gallery-grid {
    gap: 8px; /* Reduced from 15px to 8px */
  }
}

/* =============================
   LIGHTBOX
============================= */
.lightbox {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.85);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 2000;
}

.lightbox.active { display: flex; }

.lightbox img, .lightbox video {
  max-width: 85%;
  max-height: 75%;
  border-radius: 10px;
}

.lightbox .close-btn {
  position: absolute;
  top: 30px;
  right: 40px;
  font-size: 40px;
  color: white;
  cursor: pointer;
}

@keyframes fadeIn {
  from {opacity: 0; transform: translateY(20px);}
  to {opacity: 1; transform: translateY(0);}
}

/* ---------------- ROOT + RESET ---------------- */
:root{
  --accent:#ff7a00;
  --black:#000;
  --muted:#6b7280;
  --radius:14px;
  --max-width:1100px;
  --card:#fff;
}

*{margin:0;padding:0;box-sizing:border-box}
body{
  font-family:"Poppins", Arial, sans-serif;
  background:#f5f5f5;
  color:#111;
  padding:20px;
}

.container{
  max-width:var(--max-width);
  margin:0 auto;
}

/* ---------------- SECTION ---------------- */
.section{
  background:#fff;
  border-radius:var(--radius);
  padding:25px;
  margin-bottom:25px;
  box-shadow:0 4px 15px rgba(0,0,0,0.05);
}

.section-title{
  font-size:26px;
  color:var(--accent);
  margin-bottom:15px;
  font-weight:700;
}

/* ---------------- LEVEL CARDS ---------------- */
.level-card{
  background:#fff;
  padding:20px;
  border-radius:var(--radius);
  border:1px solid #eee;
  box-shadow:0 4px 12px rgba(0,0,0,0.06);
  margin-bottom:18px;
  opacity:0;
  transform:translateY(20px);
  transition:.45s;
}

.level-card.visible{
  opacity:1;
  transform:translateY(0);
}

.level-title{
  font-size:20px;
  font-weight:700;
  color:var(--accent);
  margin-bottom:10px;
}

.level-desc{
  font-size:15px;
  color:var(--black);
  line-height:1.6;
}

/* ---------------- LIST MARKERS ---------------- */
.level-card ul{
  padding-left:18px;
  margin-top:10px;
}

.level-card ul li{
  margin-bottom:6px;
}

/* ---------------- RESPONSIVE ---------------- */
@media(max-width:700px){
  .section{
    padding:18px;
    padding-top: 20px;
    margin-top: 20px;
  }
}


        /* Header */
        .admission-header {
            background: linear-gradient(135deg, #000000 0%, #333333 100%);
            color: white;
            text-align: center;
            padding: 60px 20px;
            border-bottom: 5px solid #ff7a00; /* Orange accent */
        }

        .admission-header h1 {
            font-size: 2.8rem;
            margin-bottom: 15px;
            color: #ff7a00;
        }

        .admission-header p {
            font-size: 1.2rem;
            max-width: 600px;
            margin: 0 auto;
            color: #ffffff;
        }

        /* Main Content */
        .admission-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 40px 20px;
        }

        /* Requirements Section */
        .requirements-section {
            background: white;
            border-radius: 12px;
            padding: 40px;
            margin-bottom: 30px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
            border-left: 4px solid #ff7a00;
        }

        .section-title {
            color: #000000;
            font-size: 2rem;
            margin-bottom: 25px;
            text-align: center;
            border-bottom: 2px solid #ff7a00;
            padding-bottom: 10px;
        }

        .requirement-item {
            background: #f8f9fa;
            border-radius: 8px;
            padding: 25px;
            margin-bottom: 20px;
            border: 1px solid #e9ecef;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .requirement-item:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(255, 122, 0, 0.15);
        }

        .requirement-item h3 {
            color: #ff7a00;
            font-size: 1.4rem;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
        }

        .requirement-item h3::before {
            content: "•";
            color: #ff7a00;
            font-size: 2rem;
            margin-right: 10px;
        }

        .requirement-item ul {
            list-style: none;
            padding-left: 0;
        }

        .requirement-item li {
            padding: 8px 0;
            border-bottom: 1px solid #e9ecef;
            display: flex;
            align-items: center;
        }

        .requirement-item li:last-child {
            border-bottom: none;
        }

        .requirement-item li::before {
            content: "✓";
            color: #ff7a00;
            font-weight: bold;
            margin-right: 10px;
        }

        /* Age Groups Section */
        .age-groups {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 20px;
            margin-top: 30px;
        }

        .age-group {
            background: white;
            border-radius: 10px;
            padding: 25px;
            text-align: center;
            border: 2px solid #ff7a00;
            transition: all 0.3s ease;
        }

        .age-group:hover {
            background: #fff8f0;
            transform: scale(1.03);
        }

        .age-group h4 {
            color: #000000;
            font-size: 1.3rem;
            margin-bottom: 10px;
        }

        .age-group .age-range {
            color: #ff7a00;
            font-size: 1.1rem;
            font-weight: bold;
            margin-bottom: 15px;
        }

        /* Process Timeline */
        .process-timeline {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin: 40px 0;
            position: relative;
        }

        .process-timeline::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 0;
            right: 0;
            height: 3px;
            background: #ff7a00;
            z-index: 1;
        }

        .process-step {
            background: white;
            border: 3px solid #ff7a00;
            border-radius: 50%;
            width: 80px;
            height: 80px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            color: #000000;
            position: relative;
            z-index: 2;
            transition: all 0.3s ease;
        }

        .process-step:hover {
            background: #ff7a00;
            color: white;
            transform: scale(1.1);
        }

        /* Documents Section */
        .documents-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 20px;
            margin-top: 30px;
        }

        .document-card {
            background: white;
            border-radius: 10px;
            padding: 25px;
            border-left: 4px solid #000000;
            transition: all 0.3s ease;
        }

        .document-card:hover {
            border-left-color: #ff7a00;
            transform: translateX(5px);
        }

        .document-card h4 {
            color: #000000;
            margin-bottom: 15px;
            font-size: 1.2rem;
        }

        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, #000000 0%, #333333 100%);
            color: white;
            text-align: center;
            padding: 60px 20px;
            border-radius: 12px;
            margin-top: 40px;
        }

        .cta-section h2 {
            color: #ff7a00;
            font-size: 2.2rem;
            margin-bottom: 20px;
        }

        .cta-buttons {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-top: 30px;
            flex-wrap: wrap;
        }

        .btn {
            padding: 15px 30px;
            border: none;
            border-radius: 8px;
            font-size: 1.1rem;
            font-weight: bold;
            cursor: pointer;
            text-decoration: none;
            transition: all 0.3s ease;
            display: inline-block;
        }

        .btn-primary {
            background: #ff7a00;
            color: white;
        }

        .btn-primary:hover {
            background: #e56a00;
            transform: translateY(-2px);
        }

        .btn-secondary {
            background: transparent;
            color: white;
            border: 2px solid #ff7a00;
        }

        .btn-secondary:hover {
            background: #ff7a00;
            transform: translateY(-2px);
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .admission-header h1 {
                font-size: 2.2rem;
            }

            .admission-header p {
                font-size: 1rem;
            }

            .requirements-section {
                padding: 25px;
            }

            .section-title {
                font-size: 1.6rem;
            }

            .process-timeline {
                flex-direction: column;
                gap: 30px;
            }

            .process-timeline::before {
                display: none;
            }

            .cta-buttons {
                flex-direction: column;
                align-items: center;
            }

            .btn {
                width: 100%;
                max-width: 300px;
            }
        }

/* FOOTER STYLING */
.footer {
  background-color: #000; /* black background */
  color: white;
  padding: 40px 20px;
  border-top: 5px solid orange; /* orange border at the top */
  margin: 0;
  left: 0;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

.footer-section {
  flex: 1 1 250px;
}

.footer-section h3 {
  color: orange;
  margin-bottom: 15px;
  font-weight: 700;
}

.footer-section p,
.footer-section a {
  font-size: 15px;
  line-height: 1.6;
  color: #ccc;
}

.footer-section a {
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: orange;
}

.social-icons a {
  color: orange;
  text-decoration: none;
  font-weight: bold;
}

/* Social icons in footer */
.footer .social-icons {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  padding: 0;
  margin: 10px 0 0;
}

.footer .social-icons li {
  margin: 0;
  padding: 0;
}

.footer .social-icons a {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid orange;       /* GDS accent */
  text-decoration: none;
  color: #ffffff;                  /* icon colour */
  transition: all 0.2s ease-in-out;
  background: transparent;
}

.footer .social-icons a:hover {
  background: orange;
  color: #000;                     /* icon colour on hover */
  transform: translateY(-2px);
}

.footer .social-icons svg {
  width: 18px;
  height: 18px;
  display: block;
}


.footer-bottom {
  text-align: center;
  margin-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 15px;
  font-size: 14px;
  color: #aaa;
}

.footer {
  margin: 0 !important;
  padding: 40px 0 !important;
  width: 100vw !important;
  position: relative !important;
  left: 50% !important;
  right: 50% !important;
  margin-left: -50vw !important;
  margin-right: -50vw !important;
  max-width: none !important;
  box-sizing: border-box !important;
}

/* 📱 Responsive Design for Mobile */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap:0px;
  }

  .footer-section {
    width: 100%;
  }

  .footer-bottom {
    gap:0px;
    margin-top:5px;
    padding: top 8px;
  }

  /* Center social icons in mobile view */
  .footer .social-icons {
    justify-content: center;
  }
}


