 *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --navy: #1a3a6b;
      --navy-dark: #122a52;
      --navy-light: #2a4f8a;
      --gold: #f5a623;
      --gold-dark: #d4891a;
      --gold-light: #ffc24a;
      --white: #ffffff;
      --off-white: #f8f9fc;
      --text: #2d3748;
      --text-light: #718096;
      --border: #e2e8f0;
      --shadow: 0 4px 24px rgba(26,58,107,0.12);
      --shadow-lg: 0 12px 48px rgba(26,58,107,0.18);
      --radius: 12px;
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'Inter', sans-serif;
      color: var(--text);
      background: var(--white);
      overflow-x: hidden;
    }

    /* ─── NAVBAR ─── */
    nav {
      position: sticky;
      top: 0;
      z-index: 1000;
      background: rgba(232, 233, 236, 0.97);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      border-bottom: 2px solid rgba(245,166,35,0.3);
      padding: 0 5%;
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 120px;
      transition: box-shadow 0.3s;
    }

    nav.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.3); }

    .nav-brand {
      display: flex;
      align-items: center;
      gap: 10px;
      text-decoration: none;
    }

    .nav-logo {
      /* width: 110px; height: 150px; */
      /* background: var(--gold); */
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-size: 22px;
      flex-shrink: 0;
      margin-left: -30px;
    }

    .nav-logo img{
        width: 110px; height: 150px;
    }

    .nav-brand-text { color: var(--navy); font-weight: 900; }
    .nav-brand-text strong { display: block; font-size: 14px; font-weight: 700; letter-spacing: 0.3px; }
    .nav-brand-text  span { display: block; font-size: 0.68rem; color: var(--gold); font-weight: 500; letter-spacing: 0.5px; text-transform: uppercase; }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 6px;
      list-style: none;
    }

    .nav-links a {
      color: rgba(0, 0, 0, 0.85);
      text-decoration: none;
      font-size: 0.875rem;
      font-weight: 800;
      padding: 8px 14px;
      border-radius: 8px;
      transition: all 0.2s;
      white-space: nowrap;
    }

    .nav-links a:hover {
      color: var(--gold);
      background: rgba(245,166,35,0.12);
    }

    .nav-apply {
      background: var(--gold) !important;
      color: var(--navy) !important;
      font-weight: 700 !important;
      padding: 8px 20px !important;
    }

    .nav-apply:hover {
      background: var(--gold-light) !important;
      transform: translateY(-1px);
    }

    .hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      padding: 6px;
      border: none;
      background: none;
    }

    .hamburger span {
      display: block;
      width: 24px; height: 2px;
      background: var(--white);
      border-radius: 2px;
      transition: all 0.3s;
    }

    .hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .hamburger.open span:nth-child(2) { opacity: 0; }
    .hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    .mobile-menu {
      display: none;
      position: fixed;
      top: 70px; left: 0; right: 0;
      background: var(--navy-dark);
      padding: 20px;
      z-index: 999;
      border-bottom: 2px solid var(--gold);
      box-shadow: var(--shadow-lg);
    }

    .mobile-menu.open { display: block; }
    .mobile-menu li { list-style: none; }
    .mobile-menu a {
      display: block;
      color: var(--white);
      text-decoration: none;
      padding: 14px 16px;
      font-weight: 500;
      border-radius: 8px;
      transition: all 0.2s;
    }
    .mobile-menu a:hover { background: rgba(245,166,35,0.15); color: var(--gold); }

    /* ─── HERO ─── */
    #home {
   min-height: 100vh;

background:
    linear-gradient(
        135deg,
        rgba(26,58,107,0.88) 0%,
        rgba(18,42,82,0.82) 50%,
        rgba(26,58,107,0.75) 100%
    ),
    url("../image/image3.png");

background-size: contain;
background-position: center;
background-repeat: no-repeat;

display: flex;
align-items: center;
justify-content: center;
text-align: center;
position: relative;
overflow: hidden;
background-size: 100% 100%;
}

    #home::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse at 50% 50%, rgba(165, 142, 134, 0.05) 0%, transparent 70%);
    }

    .hero-content { position: relative; z-index: 1; max-width: 800px; }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(245,166,35,0.15);
      border: 1px solid rgba(245,166,35,0.4);
      color: var(--gold);
      font-size: 0.8rem;
      font-weight: 600;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      padding: 8px 20px;
      border-radius: 100px;
      margin-bottom: 28px;
      animation: fadeInUp 0.6s ease both;
    }

    .hero-school-name {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2.4rem, 6vw, 4.2rem);
      font-weight: 700;
      color: var(--white);
      line-height: 1.15;
      margin-bottom: 16px;
      animation: fadeInUp 0.7s ease 0.1s both;
    }

    .hero-school-name .highlight { color: #e53935; }

    .hero-tagline {
      font-size: clamp(1rem, 2.5vw, 1.3rem);
      color: rgba(255,255,255,0.75);
      margin-bottom: 12px;
      font-weight: 300;
      letter-spacing: 0.5px;
      animation: fadeInUp 0.7s ease 0.2s both;
    }

    .hero-sub {
      font-size: 0.95rem;
      color: var(--gold);
      font-weight: 500;
      margin-bottom: 44px;
      animation: fadeInUp 0.7s ease 0.3s both;
    }

    .hero-buttons {
      display: flex;
      gap: 16px;
      justify-content: center;
      flex-wrap: wrap;
      animation: fadeInUp 0.7s ease 0.4s both;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 16px 36px;
      border-radius: 100px;
      font-size: 0.95rem;
      font-weight: 600;
      text-decoration: none;
      transition: all 0.25s;
      cursor: pointer;
      border: 2px solid transparent;
      white-space: nowrap;
    }

    .btn-primary {
      background: var(--gold);
      color: var(--navy);
    }
    .btn-primary:hover {
      background: var(--gold-light);
      transform: translateY(-3px);
      box-shadow: 0 8px 28px rgba(245,166,35,0.4);
    }

    .btn-outline {
      background: transparent;
      color: var(--white);
      border-color: rgba(255,255,255,0.5);
    }
    .btn-outline:hover {
      border-color: var(--white);
      background: rgba(255,255,255,0.1);
      transform: translateY(-3px);
    }

    .hero-scroll {
      position: absolute;
      bottom: 36px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 8px;
      color: rgba(255,255,255,0.4);
      font-size: 0.75rem;
      letter-spacing: 1px;
      text-transform: uppercase;
      animation: fadeIn 1s 1s both;
    }

    .scroll-arrow {
      width: 20px; height: 20px;
      border-right: 2px solid rgba(255,255,255,0.4);
      border-bottom: 2px solid rgba(255,255,255,0.4);
      transform: rotate(45deg);
      animation: bounce 1.5s infinite;
    }

    /* ─── STATS BAR ─── */
    
.sectionClass {
  /* padding: 20px 0px 50px 0px;
   */
  position: relative;
  display: block;
  margin-top: -30px;
}

.fullWidth {
  width: 100% !important;
  display: table;
  float: none;
  padding: 0;
  min-height: 1px;
  height: 100%;
  position: relative;
}


.sectiontitle {
  background-position: center;
  margin: 30px 0 0px;
  text-align: center;
  min-height: 20px;
}

.sectiontitle h2 {
  font-size: 30px;
  color: #222;
  margin-bottom: 0px;
  padding-right: 10px;
  padding-left: 10px;
}


.headerLine {
  width: 160px;
  height: 2px;
  display: inline-block;
  background: #101F2E;
}


.projectFactsWrap{
    display: flex;
  margin-top: 30px;
  flex-direction: row;
  flex-wrap: wrap;
}


#projectFacts .fullWidth{
  padding: 0;
}

.projectFactsWrap .item{
  width: 25%;
  height: 100%;
  padding: 50px 0px;
  text-align: center;
}

.projectFactsWrap .item:nth-child(1){
  background: rgb(16, 31, 46);
}

.projectFactsWrap .item:nth-child(2){
  background: rgb(18, 34, 51);
}

.projectFactsWrap .item:nth-child(3){
  background: rgb(21, 38, 56);
}

.projectFactsWrap .item:nth-child(4){
  background: rgb(23, 44, 66);
}

.projectFactsWrap .item p.number{
  font-size: 40px;
  padding: 0;
  font-weight: bold;
}

.projectFactsWrap .item p{
  color: rgba(255, 255, 255, 0.8);
  font-size: 18px;
  margin: 0;
  padding: 10px;
  font-family: 'Open Sans';
}


.projectFactsWrap .item span{
  width: 60px;
  background: rgba(255, 255, 255, 0.8);
  height: 2px;
  display: block;
  margin: 0 auto;
}


.projectFactsWrap .item i{
  vertical-align: middle;
  font-size: 50px;
  color: rgba(255, 255, 255, 0.8);
}


.projectFactsWrap .item:hover i, .projectFactsWrap .item:hover p{
  color: white;
}

.projectFactsWrap .item:hover span{
  background: white;
}

@media (max-width: 786px){
  .projectFactsWrap .item {
     flex: 0 0 50%;
  }
}

/* AUTHOR LINK */


footer{
  z-index: 100;
  padding-top: 50px;
  padding-bottom: 50px;
  width: 100%;
  bottom: 0;
  left: 0;
}

footer p {
color: rgba(255, 255, 255, 0.8);
  font-size: 16px;
  opacity: 0;
  font-family: 'Open Sans';
  width: 100%;
    word-wrap: break-word;
  line-height: 25px;
  -webkit-transform: translateX(-200px);
  transform: translateX(-200px);
  margin: 0;
  -webkit-transition: all 250ms ease;
  -moz-transition: all 250ms ease;
  transition: all 250ms ease;
}

footer .authorWindow a{
  color: white;
  text-decoration: none;
}

footer p strong {
    color: rgba(255, 255, 255, 0.9);
}

.about-me-img {
  width: 120px;
  height: 120px;
  left: 10px;
  /* bottom: 30px; */
  position: relative;
  border-radius: 100px;
}


.about-me-img img {
}


.authorWindow{
  width: 600px;
  background: #75439a;
  padding: 22px 20px 22px 20px;
  border-radius: 5px;
  overflow: hidden;
}

.authorWindowWrapper{
  display: none;
  left: 110px;
  top: 0;
  padding-left: 25px;
  position: absolute;
}





.trans{
  opacity: 1;
  -webkit-transform: translateX(0px);
  transform: translateX(0px);
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  transition: all 500ms ease;
}

@media screen and (max-width: 768px) {
    .authorWindow{
         width: 210px;
    }

    .authorWindowWrapper{
             bottom: -170px;
  margin-bottom: 20px;
    }

    footer p{
          font-size: 14px;
    }
}



    /* .stats-bar {
      background: var(--navy);
      padding: 40px 5%;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 0;
    }

    .stat-item {
      text-align: center;
      padding: 20px;
      border-right: 1px solid rgba(255,255,255,0.1);
      position: relative;
    }

    .stat-item:last-child { border-right: none; }

    .stat-number {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2rem, 4vw, 2.8rem);
      font-weight: 700;
      color: var(--gold);
      display: block;
      line-height: 1;
      margin-bottom: 8px;
    }

    .stat-label {
      color: rgba(255,255,255,0.7);
      font-size: 0.85rem;
      font-weight: 500;
      letter-spacing: 0.5px;
    } */

    /* ─── SECTIONS ─── */
    section { padding: 90px 5%; }
    .section-alt { background: var(--off-white); }

    .section-header {
      text-align: center;
      margin-bottom: 60px;
    }

    .section-tag {
      display: inline-block;
      background: rgba(26,58,107,0.08);
      color: var(--navy);
      font-size: 1rem;
      font-weight: 700;
      letter-spacing: 2px;
      text-transform: uppercase;
      padding: 6px 16px;
      border-radius: 100px;
      margin-bottom: 16px;
    }
 
    .section-title {
      font-family: 'Playfair Display', serif;
      font-size: clamp(1.8rem, 3.5vw, 2.6rem);
      color: var(--navy);
      font-weight: 700;
      line-height: 1.3;
      margin-bottom: 16px;
    }

    .section-title .accent { color: var(--gold-dark); }

    .section-desc {
      color: var(--text-light);
      font-size: 1.05rem;
      line-height: 1.7;
      max-width: 600px;
      margin: 0 auto;
    }

    .divider {
      width: 60px; height: 4px;
      background: linear-gradient(90deg, var(--gold), var(--gold-light));
      border-radius: 4px;
      margin: 20px auto 0;
    }

    /* ─── ABOUT ─── */
    .about-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 64px;
      align-items: center;
      max-width: 1100px;
      margin: 0 auto;
    }

    .about-visual {
      position: relative;
    }

    .about-img-box {
      border-radius: 20px;
      overflow: hidden;
      box-shadow: var(--shadow-lg);
      position: relative;
      
    }

    .about-img-box img {
       width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
    /* background: #fff; */
    }


    /* Mobile View */
@media (max-width: 767px) {
    .about-img-box img {
        height: 250px;
        object-fit: cover;
        object-position: center;
    }
}
    .about-img-caption {
      background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
      padding: 20px 24px;
      color: var(--white);
    }

    .about-img-caption h3 {
      font-family: 'Playfair Display', serif;
      font-size: 1.2rem;
      color: var(--gold);
      margin-bottom: 6px;
    }
    .about-img-caption p { color: rgba(255,255,255,0.8); font-size: 0.88rem; line-height: 1.5; }

    .about-badge {
      position: absolute;
      bottom: -20px; right: 24px;
      background: var(--gold);
      color: var(--navy);
      font-weight: 700;
      font-size: 0.8rem;
      padding: 10px 20px;
      border-radius: 100px;
      box-shadow: var(--shadow);
    }

    .about-content h2 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(1.6rem, 3vw, 2.2rem);
      color: var(--navy);
      font-weight: 700;
      margin-bottom: 20px;
      line-height: 1.3;
    }

    .about-content p {
      color: var(--text-light);
      line-height: 1.8;
      margin-bottom: 20px;
      font-size: 0.97rem;
    }

    .about-points {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px;
      margin-top: 28px;
    }

    .about-point {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 0.88rem;
      font-weight: 600;
      color: var(--navy);
    }

    .about-point span {
      width: 28px; height: 28px;
      background: rgba(245,166,35,0.15);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-size: 0.85rem;
      flex-shrink: 0;
    }

    /* ─── WHY CHOOSE US CARDS ─── */
    .cards-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 28px;
      max-width: 1100px;
      margin: 0 auto;
    }

    .card {
      background: var(--white);
      border-radius: var(--radius);
      padding: 36px 28px;
      border: 1px solid var(--border);
      transition: all 0.3s;
      position: relative;
      overflow: hidden;
    }

    .card::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 3px;
      background: linear-gradient(90deg, var(--navy), var(--gold));
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.35s;
    }

    .card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: transparent; }
    .card:hover::before { transform: scaleX(1); }

    .card-icon {
      width: 60px; height: 60px;
      background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
      border-radius: 14px;
      display: flex; align-items: center; justify-content: center;
      font-size: 1.6rem;
      margin-bottom: 20px;
      transition: transform 0.3s;
    }

    .card:hover .card-icon { transform: scale(1.1) rotate(-3deg); }

    .card h3 {
      font-size: 1.05rem;
      font-weight: 700;
      color: var(--navy);
      margin-bottom: 10px;
    }

    .card p { color: var(--text-light); font-size: 0.9rem; line-height: 1.65; }

    /* ─── ACTIVITIES ─── */
    .activities-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      max-width: 1100px;
      margin: 0 auto;
    }

    .activity-card {
      border-radius: var(--radius);
      overflow: hidden;
      position: relative;
      cursor: pointer;
      transition: transform 0.3s;
    }

    .activity-card:hover { transform: translateY(-6px); }

    .activity-bg {
      height: 220px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 4rem;
      position: relative;
    }

    .activity-card:nth-child(1) .activity-bg { background: linear-gradient(135deg, #1a3a6b, #2a4f8a); }
    .activity-card:nth-child(2) .activity-bg { background: linear-gradient(135deg, #2a4f8a, #3b6fa8); }
    .activity-card:nth-child(3) .activity-bg { background: linear-gradient(135deg, #1a3a6b, #0d2240); }
    .activity-card:nth-child(4) .activity-bg { background: linear-gradient(135deg, #f5a623, #d4891a); }
    .activity-card:nth-child(5) .activity-bg { background: linear-gradient(135deg, #d4891a, #b87015); }
    .activity-card:nth-child(6) .activity-bg { background: linear-gradient(135deg, #1a3a6b, #f5a623); }

    .activity-content {
      background: var(--white);
      padding: 20px;
      border: 1px solid var(--border);
      border-top: none;
      border-radius: 0 0 var(--radius) var(--radius);
    }

    .activity-content h3 { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
    .activity-content p { font-size: 0.85rem; color: var(--text-light); line-height: 1.55; }

    /* ─── ADMISSIONS ─── */
    .admissions-grid {
      display: grid;
      grid-template-columns: 1.3fr 1fr;
      gap: 60px;
      align-items: start;
      max-width: 1100px;
      margin: 0 auto;
    }

    .steps { display: flex; flex-direction: column; gap: 24px; }

    .step {
      display: flex;
      gap: 20px;
      align-items: flex-start;
      background: var(--white);
      padding: 24px;
      border-radius: var(--radius);
      border: 1px solid var(--border);
      transition: all 0.3s;
    }

    .step:hover { border-color: var(--gold); box-shadow: var(--shadow); }

    .step-num {
      width: 48px; height: 48px;
      background: linear-gradient(135deg, var(--navy), var(--navy-light));
      color: var(--gold);
      border-radius: 12px;
      display: flex; align-items: center; justify-content: center;
      font-weight: 700;
      font-size: 1.1rem;
      flex-shrink: 0;
    }

    .step-text h4 { font-weight: 700; color: var(--navy); margin-bottom: 6px; font-size: 0.97rem; }
    .step-text p { color: var(--text-light); font-size: 0.88rem; line-height: 1.55; }

    .classes-panel {
      background: var(--navy);
      border-radius: 16px;
      padding: 32px;
      position: sticky;
      top: 90px;
    }

    .classes-panel h3 {
      font-family: 'Playfair Display', serif;
      color: var(--gold);
      font-size: 1.3rem;
      margin-bottom: 20px;
      padding-bottom: 16px;
      border-bottom: 1px solid rgba(255,255,255,0.1);
    }

    .class-list { display: flex; flex-direction: column; gap: 8px; }

    .class-item {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 10px 14px;
      background: rgba(255,255,255,0.06);
      border-radius: 8px;
      transition: all 0.2s;
    }

    .class-item:hover { background: rgba(245,166,35,0.12); }
    .class-item span { color: rgba(255,255,255,0.85); font-size: 0.88rem; font-weight: 500; }
    .class-item .class-badge {
      background: rgba(245,166,35,0.2);
      color: var(--gold);
      font-size: 0.72rem;
      font-weight: 600;
      padding: 3px 10px;
      border-radius: 100px;
    }

    /* ─── GALLERY ─── */
    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
      max-width: 1100px;
      margin: 0 auto;
    }

    .gallery-tile {
      border-radius: var(--radius);
      overflow: hidden;
      position: relative;
      cursor: pointer;
      aspect-ratio: 4/3;
    }

    .gallery-bg {
      width: 100%;
      height: 100%;
      transition: transform 0.4s;
      background: #122a52;
    }

    .gallery-bg img {
      width: 100%;
         height: 100%;
    object-fit:fill;
    display: block;
    transition: transform 0.4s;
    }

    .gallery-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(26,58,107,0.92) 0%, transparent 50%);
      opacity: 0;
      transition: opacity 0.3s;
      display: flex;
      align-items: flex-end;
      padding: 20px;
    }

    .gallery-tile:hover .gallery-overlay { opacity: 1; }
    .gallery-tile:hover .gallery-bg img { transform: scale(1.07); }

    .gallery-label {
      color: var(--white);
      font-weight: 700;
      font-size: 0.95rem;
    }

    /* ─── CONTACT ─── */
    .contact-grid {
      display: grid;
      grid-template-columns: 1fr 1.2fr;
      gap: 60px;
      max-width: 1100px;
      margin: 0 auto;
    }

    .contact-info h3 {
      font-family: 'Playfair Display', serif;
      font-size: 1.6rem;
      color: var(--navy);
      margin-bottom: 28px;
    }

    .info-items { display: flex; flex-direction: column; gap: 20px; margin-bottom: 36px; }

    .info-item {
      display: flex;
      gap: 16px;
      align-items: flex-start;
    }

    .info-icon {
      width: 44px; height: 44px;
      background: linear-gradient(135deg, var(--navy), var(--navy-light));
      border-radius: 10px;
      display: flex; align-items: center; justify-content: center;
      font-size: 1.1rem;
      flex-shrink: 0;
    }

    .info-text strong {
      display: block;
      font-size: 0.8rem;
      font-weight: 700;
      color: var(--text-light);
      text-transform: uppercase;
      letter-spacing: 1px;
      margin-bottom: 4px;
    }

    .info-text p { color: var(--text); font-size: 0.93rem; line-height: 1.55; }

    .hours-card {
      background: var(--navy);
      border-radius: 14px;
      padding: 24px;
    }

    .hours-card h4 {
      color: var(--gold);
      font-size: 0.95rem;
      font-weight: 700;
      margin-bottom: 14px;
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .hours-row {
      display: flex;
      justify-content: space-between;
      padding: 8px 0;
      border-bottom: 1px solid rgba(255,255,255,0.08);
      font-size: 0.87rem;
    }

    .hours-row:last-child { border-bottom: none; }
    .hours-row .day { color: rgba(255,255,255,0.7); }
    .hours-row .time { color: var(--white); font-weight: 600; }

    .contact-form {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 20px;
      padding: 40px;
      box-shadow: var(--shadow);
    }

    .contact-form h3 {
      font-family: 'Playfair Display', serif;
      font-size: 1.4rem;
      color: var(--navy);
      margin-bottom: 28px;
    }

    .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
    }

    .form-group { margin-bottom: 20px; }

    .form-group label {
      display: block;
      font-size: 0.82rem;
      font-weight: 600;
      color: var(--text);
      margin-bottom: 6px;
      letter-spacing: 0.3px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
      width: 100%;
      padding: 12px 16px;
      border: 1.5px solid var(--border);
      border-radius: 10px;
      font-size: 0.92rem;
      font-family: 'Inter', sans-serif;
      color: var(--text);
      background: var(--off-white);
      transition: all 0.2s;
      outline: none;
    }

    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
      border-color: var(--navy);
      background: var(--white);
      box-shadow: 0 0 0 3px rgba(26,58,107,0.1);
    }

    .form-group textarea { resize: vertical; min-height: 110px; }

    .form-submit {
      background: linear-gradient(135deg, var(--navy), var(--navy-light));
      color: var(--white);
      border: none;
      padding: 15px 36px;
      border-radius: 100px;
      font-size: 0.95rem;
      font-weight: 600;
      font-family: 'Inter', sans-serif;
      cursor: pointer;
      width: 100%;
      transition: all 0.25s;
      letter-spacing: 0.3px;
    }

    .form-submit:hover {
      background: linear-gradient(135deg, var(--navy-dark), var(--navy));
      transform: translateY(-2px);
      box-shadow: 0 8px 24px rgba(26,58,107,0.3);
    }

    .form-success {
      display: none;
      text-align: center;
      padding: 20px;
      background: rgba(26,58,107,0.05);
      border: 1px solid rgba(26,58,107,0.2);
      border-radius: 12px;
      color: var(--navy);
      font-weight: 600;
      margin-top: 16px;
    }

    .form-success.show { display: block; }

    /* ─── FOOTER ─── */
    footer {
      background: var(--navy-dark);
      padding: 40px 5%;
      text-align: center;
      border-top: 3px solid var(--gold);
    }

    .footer-logo {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      text-decoration: none;
      margin-bottom: 16px;
    }

    .footer-logo-icon {
      width: 40px; height: 40px;
      background: var(--gold);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-size: 20px;
    }

    .footer-name {
      font-family: 'Playfair Display', serif;
      font-size: 1.15rem;
      font-weight: 700;
      color: var(--white);
    }

    .footer-motto {
      color: rgba(255,255,255,0.5);
      font-size: 0.82rem;
      margin-bottom: 20px;
    }

    .footer-links {
      display: flex;
      justify-content: center;
      gap: 24px;
      list-style: none;
      margin-bottom: 24px;
      flex-wrap: wrap;
    }

    .footer-links a {
      color: rgba(255,255,255,0.5);
      text-decoration: none;
      font-size: 0.84rem;
      transition: color 0.2s;
    }

    .footer-links a:hover { color: var(--gold); }

    .footer-copy {
      color: rgba(255,255,255,0.3);
      font-size: 0.8rem;
      border-top: 1px solid rgba(255,255,255,0.07);
      padding-top: 20px;
    }

    /* ─── ANIMATIONS ─── */
    @keyframes fadeInUp {
      from { opacity: 0; transform: translateY(30px); }
      to   { opacity: 1; transform: translateY(0); }
    }

    @keyframes fadeIn {
      from { opacity: 0; }
      to   { opacity: 1; }
    }

    @keyframes bounce {
      0%, 100% { transform: rotate(45deg) translateY(0); }
      50%       { transform: rotate(45deg) translateY(6px); }
    }

    .reveal {
      opacity: 0;
      transform: translateY(32px);
      transition: opacity 0.65s ease, transform 0.65s ease;
    }

    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }

    /* ─── RESPONSIVE ─── */
    @media (max-width: 1024px) {
      .cards-grid, .activities-grid { grid-template-columns: repeat(2, 1fr); }
      .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    }

    @media (max-width: 768px) {
      .nav-links { display: none; }
      .hamburger { display: flex; }

      .stats-bar { grid-template-columns: repeat(2, 1fr); }
      .stat-item:nth-child(2) { border-right: none; }
      .stat-item:nth-child(3) { border-top: 1px solid rgba(255,255,255,0.1); }

      .about-grid { grid-template-columns: 1fr; gap: 36px; }
      .cards-grid { grid-template-columns: 1fr; }
      .activities-grid { grid-template-columns: 1fr; }
      .admissions-grid { grid-template-columns: 1fr; }
      .gallery-grid { grid-template-columns: 1fr; }
      .contact-grid { grid-template-columns: 1fr; }
      .form-row { grid-template-columns: 1fr; }
      .about-points { grid-template-columns: 1fr; }

      .classes-panel { position: static; }
      .contact-form { padding: 28px 20px; }

      section { padding: 60px 5%; }
    }

    @media (max-width: 480px) {
      .stats-bar { grid-template-columns: 1fr 1fr; }
      .hero-buttons { flex-direction: column; align-items: center; }
      .btn { width: 100%; max-width: 300px; justify-content: center; }
    }

    /* ════════════════════════════════════════════════════
       CBSE CLUSTER 2026 — TEMPORARY SECTION
       To remove: delete this CSS block + matching HTML + JS
    ════════════════════════════════════════════════════ */
    .nav-cbse-link {
      background: linear-gradient(135deg, var(--gold), var(--gold-dark)) !important;
      color: var(--navy) !important;
      font-weight: 700 !important;
      border-radius: 100px !important;
      padding: 7px 15px !important;
      font-size: 0.78rem !important;
      letter-spacing: 0.3px;
      transition: all 0.2s !important;
      cursor: pointer;
      border: none;
      font-family: 'Inter', sans-serif;
    }
    .nav-cbse-link:hover {
      background: linear-gradient(135deg, var(--gold-light), var(--gold)) !important;
      transform: translateY(-1px) !important;
      box-shadow: 0 4px 12px rgba(245,166,35,0.4) !important;
    }
    #cbse-cluster-page, #cbse-event-detail { display: none; }
    #cbse-cluster-page.cbse-visible, #cbse-event-detail.cbse-visible { display: block; }
    .cbse-breadcrumbs {
      background: var(--navy);
      padding: 13px 5%;
      font-size: 0.82rem;
      color: rgba(255,255,255,0.6);
      display: flex;
      align-items: center;
      gap: 8px;
      flex-wrap: wrap;
    }
    .cbse-breadcrumbs a { color: var(--gold); text-decoration: none; font-weight: 500; cursor: pointer; }
    .cbse-breadcrumbs a:hover { text-decoration: underline; }
    .cbse-breadcrumbs .sep { color: rgba(255,255,255,0.3); }
    .cbse-breadcrumbs .current { color: rgba(255,255,255,0.9); font-weight: 500; }
    .cbse-hero {
      background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 55%, var(--navy-light) 100%);
      padding: 72px 5% 62px;
      text-align: center;
      position: relative;
      overflow: hidden;
    }
    .cbse-hero::before { content:''; position:absolute; top:-60px; right:-60px; width:300px; height:300px; background:rgba(245,166,35,0.07); border-radius:50%; }
    .cbse-hero::after  { content:''; position:absolute; bottom:-80px; left:-60px; width:250px; height:250px; background:rgba(245,166,35,0.05); border-radius:50%; }
    .cbse-hero-badge {
      display: inline-block;
      background: rgba(245,166,35,0.14);
      border: 1px solid rgba(245,166,35,0.35);
      color: var(--gold);
      font-size: 0.74rem;
      font-weight: 700;
      letter-spacing: 2px;
      text-transform: uppercase;
      padding: 7px 20px;
      border-radius: 100px;
      margin-bottom: 22px;
    }
    .cbse-hero h1 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(1.9rem, 4vw, 2.9rem);
      color: var(--white);
      font-weight: 700;
      line-height: 1.25;
      margin-bottom: 14px;
    }
    .cbse-hero h1 span { color: var(--gold); }
    .cbse-hero p { color: rgba(255,255,255,0.7); font-size: 1.05rem; max-width: 560px; margin: 0 auto; line-height: 1.7; }
    .cbse-events-section { padding: 70px 5%; background: var(--off-white); }
    .cbse-events-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 36px;
      max-width: 900px;
      margin: 0 auto;
    }
    @media (max-width: 680px) { .cbse-events-grid { grid-template-columns: 1fr; } }
    .cbse-event-card {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 20px;
      padding: 36px 30px;
      text-align: center;
      box-shadow: var(--shadow);
      transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
      position: relative;
      overflow: hidden;
      cursor: pointer;
    }
    .cbse-event-card::before { content:''; position:absolute; top:0; left:0; right:0; height:4px; background:linear-gradient(90deg,var(--gold),var(--gold-light)); transform:scaleX(0); transform-origin:left; transition:transform 0.35s; }
    .cbse-event-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: var(--gold); }
    .cbse-event-card:hover::before { transform: scaleX(1); }
    .cbse-event-icon { font-size: 3.2rem; margin-bottom: 18px; display: block; transition: transform 0.3s; }
    .cbse-event-card:hover .cbse-event-icon { transform: scale(1.12) rotate(-3deg); }
    .cbse-event-card h3 { font-family:'Playfair Display',serif; font-size:1.3rem; color:var(--navy); font-weight:700; margin-bottom:14px; line-height:1.35; }
    .cbse-event-card p { color:var(--text-light); font-size:0.9rem; line-height:1.65; margin-bottom:26px; }
    .cbse-open-btn {
      display: inline-flex; align-items: center; gap: 8px;
      background: linear-gradient(135deg, var(--navy), var(--navy-light));
      color: var(--white); border: none; padding: 13px 28px; border-radius: 100px;
      font-size: 0.9rem; font-weight: 600; font-family: 'Inter', sans-serif;
      cursor: pointer; transition: all 0.2s;
    }
    .cbse-open-btn:hover { background: linear-gradient(135deg, var(--navy-dark), var(--navy)); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(26,58,107,0.3); }
    .cbse-open-btn svg { width: 16px; height: 16px; }
    .cbse-detail-hero { background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%); padding: 60px 5% 52px; text-align: center; }
    .cbse-detail-hero h1 { font-family:'Playfair Display',serif; font-size:clamp(1.7rem,3.5vw,2.5rem); color:var(--white); font-weight:700; margin-bottom:10px; line-height:1.3; }
    .cbse-detail-icon { font-size: 3.5rem; display: block; margin-bottom: 18px; }
    .cbse-detail-hero p { color:rgba(255,255,255,0.7); font-size:0.97rem; max-width:500px; margin:0 auto; line-height:1.7; }
    .cbse-detail-body { padding: 70px 5%; background: var(--off-white); min-height: 50vh; }
    .cbse-action-cards { display:grid; grid-template-columns:1fr 1fr; gap:28px; max-width:780px; margin:0 auto 52px; }
    @media (max-width: 600px) { .cbse-action-cards { grid-template-columns: 1fr; } }
    .cbse-action-card { background:var(--white); border:1px solid var(--border); border-radius:18px; padding:36px 28px; text-align:center; box-shadow:var(--shadow); transition:transform 0.25s, box-shadow 0.25s; }
    .cbse-action-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
    .cbse-action-card-icon { width:60px; height:60px; border-radius:14px; display:flex; align-items:center; justify-content:center; margin:0 auto 18px; font-size:1.7rem; }
    .cbse-action-card-icon.pdf  { background: linear-gradient(135deg,#c62828,#e53935); }
    .cbse-action-card-icon.form { background: linear-gradient(135deg,#1565c0,#1976d2); }
    .cbse-action-card h4 { font-family:'Playfair Display',serif; font-size:1.1rem; color:var(--navy); font-weight:700; margin-bottom:10px; }
    .cbse-action-card p { color:var(--text-light); font-size:0.85rem; line-height:1.6; margin-bottom:22px; }
    .cbse-action-btn { display:inline-flex; align-items:center; justify-content:center; gap:8px; padding:12px 24px; border-radius:100px; font-size:0.88rem; font-weight:600; font-family:'Inter',sans-serif; text-decoration:none; transition:all 0.2s; width:100%; }
    .cbse-action-btn.pdf  { background:linear-gradient(135deg,#c62828,#e53935); color:var(--white); }
    .cbse-action-btn.pdf:hover  { background:linear-gradient(135deg,#b71c1c,#c62828); transform:translateY(-2px); box-shadow:0 6px 18px rgba(198,40,40,0.3); }
    .cbse-action-btn.form { background:linear-gradient(135deg,#1565c0,#1976d2); color:var(--white); }
    .cbse-action-btn.form:hover { background:linear-gradient(135deg,#0d47a1,#1565c0); transform:translateY(-2px); box-shadow:0 6px 18px rgba(21,101,192,0.3); }
    .cbse-action-btn svg { width:16px; height:16px; flex-shrink:0; }
    .cbse-back-row { display:flex; gap:14px; justify-content:center; flex-wrap:wrap; max-width:780px; margin:0 auto; }
    .cbse-back-btn { display:inline-flex; align-items:center; gap:8px; padding:12px 24px; border-radius:100px; font-size:0.88rem; font-weight:600; font-family:'Inter',sans-serif; cursor:pointer; transition:all 0.2s; background:transparent; }
    .cbse-back-btn.secondary { border:1.5px solid var(--navy); color:var(--navy); }
    .cbse-back-btn.secondary:hover { background:var(--navy); color:var(--white); transform:translateY(-2px); }
    .cbse-back-btn.ghost { border:1.5px solid var(--border); color:var(--text-light); }
    .cbse-back-btn.ghost:hover { border-color:var(--navy); color:var(--navy); transform:translateY(-2px); }

    /* ── CBSE Cluster Homepage Banner ── */
    .cbse-announce-banner {
      display: flex;
      align-items: flex-start;
      gap: 14px;
      background: linear-gradient(135deg, rgba(245,166,35,0.14) 0%, rgba(245,166,35,0.06) 100%);
      border: 1.5px solid rgba(245,166,35,0.55);
      border-radius: 16px;
      padding: 16px 20px;
      margin: 22px auto 28px;
      max-width: 680px;
      cursor: pointer;
      transition: all 0.25s;
      position: relative;
      overflow: hidden;
      text-align: left;
    }
    .cbse-announce-banner::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(245,166,35,0.10), transparent);
      opacity: 0;
      transition: opacity 0.25s;
    }
    .cbse-announce-banner:hover { border-color: var(--gold); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(245,166,35,0.25); }
    .cbse-announce-banner:hover::before { opacity: 1; }
    @keyframes cbse-pulse {
      0%, 100% { box-shadow: 0 0 0 0 rgba(245,166,35,0.55); }
      50%       { box-shadow: 0 0 0 8px rgba(245,166,35,0); }
    }
    .cbse-announce-banner { animation: cbse-pulse 2.6s ease-in-out infinite; }
    .cbse-announce-banner:hover { animation: none; }
    .cbse-announce-icon { font-size: 1.9rem; flex-shrink: 0; line-height: 1; margin-top: 2px; }
    .cbse-announce-body { flex: 1; }
    .cbse-announce-header { display: flex; align-items: center; gap: 10px; margin-bottom: 6px; flex-wrap: wrap; }
    .cbse-live-badge {
      background: #e53935;
      color: #fff;
      font-size: 0.65rem;
      font-weight: 800;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      padding: 3px 9px;
      border-radius: 100px;
      animation: cbse-blink 1.4s ease-in-out infinite;
    }
    @keyframes cbse-blink { 0%, 100% { opacity: 1; } 50% { opacity: 0.55; } }
    .cbse-announce-title {
      font-family: 'Playfair Display', serif;
      font-size: 1rem;
      font-weight: 700;
      color: var(--gold);
      line-height: 1.3;
    }
    .cbse-announce-list {
      list-style: none;
      margin: 0 0 8px;
      padding: 0;
    }
    .cbse-announce-list li {
      color: rgba(255,255,255,0.82);
      font-size: 0.84rem;
      padding: 2px 0;
      display: flex;
      align-items: center;
      gap: 7px;
    }
    .cbse-announce-list li::before { content: '•'; color: var(--gold); font-size: 1rem; }
    .cbse-announce-cta {
      color: var(--gold);
      font-size: 0.82rem;
      font-weight: 600;
      display: flex;
      align-items: center;
      gap: 5px;
    }
    .cbse-announce-cta svg { width: 14px; height: 14px; transition: transform 0.2s; }
    .cbse-announce-banner:hover .cbse-announce-cta svg { transform: translateX(4px); }

    /* ── CBSE Cluster Poster Section ── */
    .cbse-poster-section {
      padding: 48px 5% 0;
      background: var(--navy-dark);
      text-align: center;
    }
    .cbse-poster-wrap {
      max-width: 780px;
      margin: 0 auto;
      border-radius: 18px;
      overflow: hidden;
      box-shadow: 0 16px 48px rgba(0,0,0,0.45);
      border: 2px solid rgba(245,166,35,0.3);
    }
    .cbse-poster-wrap img {
      width: 100%;
      height: auto;
      display: block;
    }
    .cbse-poster-placeholder {
      background: linear-gradient(135deg, rgba(245,166,35,0.08), rgba(26,58,107,0.6));
      border: 2px dashed rgba(245,166,35,0.4);
      border-radius: 18px;
      padding: 60px 32px;
      max-width: 780px;
      margin: 0 auto;
      text-align: center;
    }
    .cbse-poster-placeholder p {
      color: rgba(255,255,255,0.5);
      font-size: 0.88rem;
      margin-top: 10px;
    }
    .cbse-poster-placeholder .ph-icon { font-size: 3rem; display: block; margin-bottom: 14px; opacity: 0.5; }
    .cbse-poster-placeholder .ph-label { color: rgba(245,166,35,0.7); font-weight: 600; font-size: 0.95rem; }

    /* ══ END CBSE CLUSTER STYLES ══ */