    :root {
      --navy: #0D1B3E;
      --navy-mid: #162347;
      --navy-light: #1e3163;
      --gold: #ff9339;
      --gold-light: #ff9339;
      --secondry-color:#d03439;
      --gold-pale: #F5E8C7;
      --cream: #FAF6EF;
      --text-dark: #1A1A2E;
      --text-mid: #3D4A6B;
      --text-light: #5A6379;
      --white: #ffffff;
      --border: rgba(201,151,58,0.25);
    }
    * { margin: 0; padding: 0; box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      font-family: 'DM Sans', sans-serif;
      background: var(--cream);
      color: var(--text-dark);
      line-height: 1.7;
    }
    /* ===== NAVBAR ===== */
    nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
      background: rgba(13,27,62,0.97);
     backdrop-filter: blur(12px);
     border-bottom: 1px solid var(--border);
      padding: 0 40px;
      display: flex; align-items: center; justify-content: space-between;
      height: 72px;
      transition: all 0.3s;
    }
    nav.scrolled {
      height: 80px;
     background: rgba(13,27,62,0.99);
    }
    .nav-logo {
      display: flex; align-items: center; gap: 12px; text-decoration: none;
    }
    .nav-logo img {
      height: 60px; width: auto;
      filter: brightness(1.1);
    }
    .nav-logo-text {
      display: flex; flex-direction: column;
    }
    .nav-logo-text span:first-child {
      font-family: 'Playfair Display', serif;
      font-size: 20px; font-weight: 700;
     color: var(--gold-light);
      letter-spacing: 0.5px;
      line-height: 1.2;
    }
    .nav-logo-text span:last-child {
      font-size: 14px; font-weight: 400;
      color: rgba(255,255,255,0.55);
      letter-spacing: 1.5px;
      text-transform: uppercase;
    }
    .nav-links {
      display: flex; align-items: center; gap: 2px; list-style: none;
    }
    .nav-links a {
      color: rgba(255,255,255,0.8);
      text-decoration: none;
      font-size: 16px; font-weight: 500;
      padding: 8px 14px;
      border-radius: 6px;
     transition: all 0.2s;
      letter-spacing: 0.3px;
    }
    .nav-links a:hover {
      color: var(--gold-light);
      background: rgba(201,151,58,0.1);
    }
    .nav-cta {
     background: var(--gold) !important;
      color: var(--navy) !important;
      font-weight: 600 !important;
      padding: 9px 20px !important;
   }
    .nav-cta:hover {
      background: var(--gold-light) !important;
    }
    .hamburger { display: none; cursor: pointer; }
    .hamburger span {
      display: block; width: 24px; height: 2px;
      background: white; margin: 5px 0; transition: 0.3s;
    }
/* Top Slider */
.top-slider {
  width: 100%;
  position: relative;
  overflow: hidden;
  top: 72px;
}
.slider {
  position: relative;
  max-width: 100%;
  height: 500px;
}
.slides:first-child {
  display: block;
}
.slides {
  display: none;
  width: 100%;
  height: 100%;
}
.slides img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.carousel-item img {
    height: 600px;
    object-fit: cover;
}
@media(max-width:768px){
    .carousel-item img{
        height:250px;
    }
}
/* Fade animation */
.fade {
  animation: fadeEffect 1s ease-in-out;
}
@keyframes fadeEffect {
  from { opacity: 0.4; }
  to { opacity: 1; }
}
/* Buttons */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
  padding: 12px 18px;
  color: white;
  font-size: 24px;
  font-weight: bold;
  border: none;
  background: rgba(0,0,0,0.4);
  border-radius: 50%;
  user-select: none;
}
.prev { left: 20px; }
.next { right: 20px; }
.prev:hover, .next:hover {
  background: rgba(0,0,0,0.7);
}.carousel {
    position: relative;
    top: 70px;
}
/* About Intro Section */
.about-intro-section {
    padding: 80px 0;
    background: #f9f9f9;
}
    /* ===== HERO ===== */

    #hero {
      position: relative; height: 100vh; min-height: 700px;
      display: flex; align-items: center; overflow: hidden;
    }
    .hero-bg {
      position: absolute; inset: 0;
      background: url('assets/2025-07-28.webp') center/cover no-repeat;
      filter: brightness(0.3);
      transform: scale(1.05);
      animation: heroZoom 20s ease-out forwards;
    }
    @keyframes heroZoom {
      from { transform: scale(1.05); }
      to { transform: scale(1.0); }
    }
    .hero-overlay {
      position: absolute; inset: 0;
      background: linear-gradient(135deg, rgba(13,27,62,0.85) 0%, rgba(13,27,62,0.4) 60%, rgba(0,0,0,0.2) 100%);
    }
    .hero-content {
      position: relative; z-index: 2;
      max-width: 1200px; margin: 0 auto; padding: 0 40px;
      padding-top: 72px;
    }
    .hero-badge {
      display: inline-flex; align-items: center; gap: 8px;
      background: rgba(201,151,58,0.15);
      border: 1px solid rgba(201,151,58,0.4);
      color: var(--gold-light);
      font-size: 12px; font-weight: 600;
      letter-spacing: 2px; text-transform: uppercase;
      padding: 7px 16px; border-radius: 20px;
     margin-bottom: 24px;
      animation: fadeInUp 0.8s ease both;
    }
    .hero-badge::before {
      content: ''; width: 6px; height: 6px;
      background: var(--gold-light); border-radius: 50%;
     animation: pulse 2s infinite;
    }
    @keyframes pulse {
      0%, 100% { opacity: 1; transform: scale(1); }
      50% { opacity: 0.5; transform: scale(0.8); }
    }
    h1.hero-title {
      font-family: 'Playfair Display', serif;
      font-size: clamp(40px, 5.5vw, 78px);
      font-weight: 900; line-height: 1.05;
      color: white;
      max-width: 820px;
      animation: fadeInUp 0.8s 0.15s ease both;
    }
    h1.hero-title em {
      color: var(--gold-light);
      font-style: italic;
    }
    .hero-sub {
      font-size: clamp(15px, 1.5vw, 18px);
      color: rgba(255,255,255,0.75);
      max-width: 620px;
      margin: 20px 0 36px;
      font-weight: 300;
     line-height: 1.8;
      animation: fadeInUp 0.8s 0.3s ease both;
    }
    .hero-badges {
      display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 40px;
      animation: fadeInUp 0.8s 0.45s ease both;
    }
    .hero-pill {
      display: flex; align-items: center; gap: 6px;
      background: rgba(255,255,255,0.08);
      border: 1px solid rgba(255,255,255,0.2);
      color: rgba(255,255,255,0.85);
     font-size: 12px; font-weight: 500;
     padding: 6px 14px; border-radius: 20px;
    }
    .hero-pill svg { width: 14px; height: 14px; fill: var(--gold-light); flex-shrink: 0; }
    .hero-actions {
      display: flex; flex-wrap: wrap; gap: 16px;
      animation: fadeInUp 0.8s 0.6s ease both;
    }
    .btn-primary {
     background:#d33538;
      color: #fff;
      font-family: 'DM Sans', sans-serif;
      font-size: 15px; font-weight: 700;
      padding: 16px 36px;
      border-radius: 8px;
      text-decoration: none;
      border: none; cursor: pointer;
      transition: all 0.25s;
      display: inline-flex; align-items: center; gap: 8px;
      letter-spacing: 0.3px;
    }
    .btn-primary:hover {
      background: #d33538;
      transform: translateY(-2px);
   }
    .btn-outline {
      background: transparent;
      color: white;
      font-family: 'DM Sans', sans-serif;
      font-size: 15px; font-weight: 500;
      padding: 15px 32px;
      border-radius: 8px;
      text-decoration: none;
      border: 1.5px solid rgba(255,255,255,0.4);
      cursor: pointer;
      transition: all 0.25s;
      display: inline-flex; align-items: center; gap: 8px;
    }
    .btn-outline:hover {
      border-color: var(--gold-light);
      color: var(--gold-light);
      background: rgba(201,151,58,0.08);
    }
    .hero-stats {
      position: relative; bottom: -60px; left: 0; right: 0;
      background: rgba(13,27,62,0.9);
      backdrop-filter: blur(10px);
      border-top: 1px solid var(--border);
      display: flex; justify-content: center;
      animation: fadeInUp 0.8s 0.8s ease both;
    }
section#about-intro {
    margin-top: 60px;
}
    .hero-stats-inner {
      max-width: 1200px; width: 100%; padding: 24px 40px;
      display: grid; grid-template-columns: repeat(4, 1fr);
      gap: 0;
    }
    .stat-item {
      text-align: center; padding: 8px 20px;
      border-right: 1px solid var(--border);
    }
    .stat-item:last-child { border-right: none; }
    .stat-num {
      font-family: 'Playfair Display', serif;
      font-size: 28px; font-weight: 700;
      color: var(--gold-light);
      display: block; line-height: 1;
    }
    .stat-label {
      font-size: 14px; font-weight: 500;
      color: rgba(255,255,255,0.6);
      letter-spacing: 1px; text-transform: uppercase;
      margin-top: 4px; display: block;
   }
    @keyframes fadeInUp {
    from { opacity: 0; transform: translateY(28px); }
      to { opacity: 1; transform: translateY(0); }
    }
.fix-footer {
    position: fixed;
    bottom: 20px;
    right: 0;
    z-index: 9999;
}
.fix-footer a {
   display: flex;
   align-items: center;
   gap: 8px;
   background: #f10207;
   color: #fff;
   padding: 12px 18px;
   border-radius: 50px 0 0 50px;
  text-decoration: none;
   font-size: 16px;
   font-weight: 600;
   box-shadow: 0 4px 10px rgba(0,0,0,0.2);
   transition: 0.3s ease;
}
.fix-footer a:hover {
    background: #f10207;
    transform: translateY(-2px);
}
.fix-footer i {
    font-size: 18px;
}
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 9999;
}
.whatsapp-float a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: white;
    font-size: 32px;
    border-radius: 50%;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    transition: 0.3s ease;
}
.whatsapp-float a:hover {
    transform: scale(1.1);
    background: #20ba5a;
}
.academics-section {
    padding: 80px 10%;
    background: #ffffff;
}
.academics-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    flex-wrap: wrap;
}
.academics-image {
    flex: 1;
    min-width: 300px;
}
.academics-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}
.academics-content {
    flex: 1;
    min-width: 300px;
}
.academics-content p {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
}
.course-features {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
}
.course-features li {
    font-size: 16px;
    margin-bottom: 10px;
    color: #333;
}
.course-features li i {
    color: #d83538;
    margin-right: 8px;
    font-size: 16px;
}
.apply-btn {
    display: inline-block;
    background: #d83538;
    color: #fff;
    padding: 12px 28px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}
.apply-btn:hover {
    background: #ba0d10;
}
    /* ===== SECTIONS ===== */

    section { scroll-margin-top: 72px; }
    .section-header {
      text-align: center; margin-bottom: 15px;
    }
    .section-tag {
      display: inline-block;
      font-size: 11px; font-weight: 600;
      letter-spacing: 3px; text-transform: uppercase;
      color: var(--gold);
      border-bottom: 2px solid var(--gold);
      padding-bottom: 4px;
     margin-bottom: 16px;
    }
    .section-title {
      font-family: 'Playfair Display', serif;
      font-size: clamp(28px, 3.5vw, 46px);
      font-weight: 700;
      color: var(--navy);
      line-height: 1.2;
    }
    .section-desc {
      font-size: 17px; color: var(--text-light);
      max-width: 600px; margin: 16px auto 0;
      font-weight: 300;
    }
    .section-divider {
      width: 60px; height: 3px;
      background: linear-gradient(90deg, var(--gold), var(--gold-light));
      margin: 20px auto 0;
      border-radius: 2px;
    }
    /* ===== ABOUT ===== */
    #about {
      padding: 100px 40px;
      background: white;
    }
   .about-inner {
      max-width: 1200px; 
      margin: 0 auto;
      display: grid;
       grid-template-columns: 1fr 1fr;
        gap: 80px;
         align-items: center;
    }
    .about-img-wrap {
      position: relative;
    }
    .about-img-wrap img {
      width: 100%; border-radius: 12px;
      object-fit: cover; height: 480px;
      box-shadow: 0 20px 60px rgba(13,27,62,0.15);
    }
    .about-accreditation {
      position: absolute; bottom: -24px; left: -24px;
      background: var(--navy);
      padding: 20px 24px; border-radius: 10px;
      box-shadow: 0 12px 32px rgba(13,27,62,0.3);
    }
    .about-accreditation p {
      font-size: 11px; font-weight: 600;
      letter-spacing: 1.5px; text-transform: uppercase;
      color: var(--gold-light); margin-bottom: 4px;
    }
    .about-accreditation strong {
      display: block; color: white; font-size: 13px; font-weight: 600;
    }
    .about-text { padding-bottom: 40px; }
    .about-text h2 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(26px, 2.5vw, 38px);
      font-weight: 700; color: var(--navy);
      line-height: 1.2; margin-bottom: 20px;
    }
    .about-text p {
      color: var(--text-mid); font-size: 16px;
      line-height: 1.85; margin-bottom: 18px;
    }
    .about-features {
      display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 32px;
    }
    .feature-card {
      background: var(--cream);
      padding: 18px 20px; border-radius: 8px;
      border-left: 3px solid var(--gold);
    }
    .feature-card h3 {
      font-size: 14px; font-weight: 600; color: var(--navy); margin-bottom: 4px;
    }
    .feature-card p { font-size: 13px; color: var(--text-light); line-height: 1.5; margin: 0; }

    /* ===== LLB PROGRAM ===== */
    #llb {
      padding: 100px 40px;
      /* background: var(--navy); */
    }

/* 
    #llb .section-title { color: white; }
    #llb .section-desc { color: rgba(255,255,255,0.6); } */
    .llb-inner {
      max-width: 1200px; margin: 0 auto;
    }
    .program-overview {
      display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-bottom: 60px;
    }
    .prog-card {
      background: rgb(201,151,58,0.08);
      border: 1px solid var(--gold);
      padding: 32px 28px; border-radius: 12px;
      text-align: center;
      transition: all 0.3s;
    }
    .prog-card:hover {
      background: rgba(201,151,58,0.08);
      border-color: var(--gold);
      transform: translateY(-4px);
    }
    .prog-icon {
      width: 56px; height: 56px;
      background: rgb(16 30 64);
      border-radius: 50%; display: flex; align-items: center; justify-content: center;
      margin: 0 auto 18px;
      font-size: 26px;
    }
    .prog-card h3 {
      font-family: 'Playfair Display', serif;
      font-size: 22px; font-weight: 600; color: var(--gold-light);
      margin-bottom: 10px;
    }
   .prog-card p {
      font-size: 16px; color: rgb(5, 5, 5); line-height: 1.7;
    }
    /* Syllabus table */
    .syllabus-wrap {
      background: rgba(255,255,255,0.04);
     border: 1px solid rgba(201,151,58,0.15);
      border-radius: 12px; overflow: hidden;
    }
   .syllabus-tabs {
      display: flex; overflow-x: auto;
justify-content: space-between;
      border-bottom: 1px solid rgba(201,151,58,0.15);
        overflow: hidden;
    margin: 0 auto;
    padding: 0 10px
    }
    .tab-btn {
      padding: 14px 20px; background: transparent;
      border: none; cursor: pointer;
      font-family: 'DM Sans', sans-serif;
      font-size: 20px; font-weight: 500;
      color: rgba(4, 4, 4, 0.92);
      white-space: nowrap;
      border-bottom: 2px solid transparent;
      margin-bottom: 0px;
      transition: all 0.2s;
    }
    .tab-btn.active {
      color:#d03438;
        border-bottom: 5px solid;
    }
    .tab-btn:hover { color: #d03438; }
    .tab-content { display: none; padding: 0px; }
    .tab-content.active { display: block; }
    .syllabus-table {
      width: 100%; border-collapse: collapse; font-size: 13px;
    }
    .syllabus-table th {
      background: rgb(16 30 64 / 14%);
      color: #d03438;
      font-weight: 600; letter-spacing: 0.5px;
      padding: 12px 16px; text-align: left;
      font-size: 18px; text-transform: uppercase;
    }
    .syllabus-table td {
      padding: 11px 16px; color: rgb(0, 0, 0);
font-size: 16px;
      border-bottom: 1px solid rgba(0, 0, 0, 0.226);
    }
    .syllabus-table tr:hover td { background: rgba(255,255,255,0.03); }
   /* ===== PAge Header ===== */
.page-header {
   background: url(assets/slider/slider-img01.jpg) no-repeat top center / cover;
    height: 250px;
    position: relative;
    top: 28px;
}
.page-header .overlay {
    background: rgba(0, 0, 0, 0.55);
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
}
.page-header .content {
   margin: 0 auto;
}
.page-header h2 {
    font-size: 46px;
    font-weight: 700;
    margin: 0 0 15px;
	color:#fff;
}
.feature-card h3 i {
    color: #c9973a;
    margin-right: 8px;
    font-size: 20px;
}
.facility-icon-wrap i {
    font-size: 28px;
    color: #ffffff;
}
.contact-detail-icon i{
    font-size:22px;
    color: #ffffff;
}
    /* ===== WHY CHOOSE ===== */
    #why {
      padding: 100px 40px;
      background: var(--cream);
    }
    .why-inner { max-width: 1200px; margin: 0 auto; }
    .why-grid {
      display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
    }
    .why-card {
      background: white;
      border-radius: 12px;
      padding: 36px 28px;
      box-shadow: 0 2px 20px rgba(13,27,62,0.06);
      border-bottom: 3px solid transparent;
      transition: all 0.3s;
      position: relative; overflow: hidden;
     text-align: center;
    }
    .why-card::before {
      content: '';
      position: absolute; top: 0; left: 0; right: 0;
      height: 3px;
      background: linear-gradient(90deg, var(--gold), var(--gold-light));
      transform: scaleX(0); transform-origin: left;
      transition: transform 0.3s;
    }
    .why-card:hover::before { transform: scaleX(1); }
    .why-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 16px 48px rgba(13,27,62,0.12);
    }
    .why-icon {
      font-size: 36px; margin-bottom: 18px; display: block;
    }
.why-icon i {
    font-size: 40px;
    color: var(--secondry-color);
    margin-bottom: 15px;
}
   .why-card h3 {
      font-family: 'Playfair Display', serif;
      font-size: 20px; font-weight: 600;
      color: var(--navy); margin-bottom: 12px;
    }
    .why-card p {
      font-size: 14px; color: var(--text-light); line-height: 1.75;
    }
    /* ===== FACILITIES ===== */
    #facilities {
      padding: 100px 40px;
      background: white;
    }
    .facilities-inner { max-width: 1200px; margin: 0 auto; }
    .facilities-grid {
      display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px;
    }
    .facility-item {
      display: flex; gap: 20px; align-items: flex-start;
      padding: 28px;
      background: var(--cream);
      border-radius: 10px;
      border: 1px solid rgba(201,151,58,0.15);
      transition: all 0.25s;
    }
    .facility-item:hover {
      background: white;
      box-shadow: 0 8px 32px rgba(13,27,62,0.08);
      border-color: var(--gold);
    }
    .facility-icon-wrap {
      width: 52px; height: 52px; flex-shrink: 0;
      background: var(--navy);
      border-radius: 10px; display: flex; align-items: center; justify-content: center;
      font-size: 24px;
    }
    .facility-item h3 {
      font-family: 'Playfair Display', serif;
      font-size: 18px; font-weight: 600; color: var(--navy);
      margin-bottom: 8px;
    }
    .facility-item p {
      font-size: 14px; color: var(--text-light); line-height: 1.7; margin: 0;
    }
    /* ===== GALLERY ===== */
    #gallery {
     padding: 100px 40px;
      background: var(--navy);
    }
    #gallery .section-title { color: white; }
    .gallery-grid {
      max-width: 1200px; margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      grid-template-rows: auto;
      gap: 12px;
    }
    .gallery-item {
      overflow: hidden; border-radius: 8px;
      position: relative; cursor: pointer;
    }
    .gallery-item.featured {
      grid-column: span 2; grid-row: span 2;
    }
    .gallery-item img {
      width: 100%; height: 100%; min-height: 180px;
      object-fit: cover;
      transition: transform 0.5s;
      display: block;
    }
    .gallery-item.featured img { min-height: 380px; }
    .gallery-item:hover img { transform: scale(1.06); }
    .gallery-overlay {
     position: absolute; inset: 0;
      background: linear-gradient(to top, rgba(13,27,62,0.7) 0%, transparent 50%);
      opacity: 0; transition: opacity 0.3s;
    }
    .gallery-item:hover .gallery-overlay { opacity: 1; }
    /* ===== FEES ===== */
    #fees {
      padding: 100px 40px;
      background: var(--cream);
    }
    .fees-inner { max-width: 1000px; margin: 0 auto; }
    .fee-hero {
      background: var(--navy);
      border-radius: 16px; padding: 48px;
      margin-bottom: 40px;
      display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 32px;
      text-align: center;
    }
   .fee-highlight {
      padding: 20px;
      border-right: 1px solid rgba(201,151,58,0.2);
    }
    .fee-highlight:last-child { border-right: none; }
    .fee-amount {
     font-family: 'Playfair Display', serif;
      font-size: 42px; font-weight: 700;
      color: var(--gold-light);
      line-height: 1;
    }
    .fee-label {
      font-size: 12px; font-weight: 500;
      color: rgb(255, 255, 255);
      letter-spacing: 1px; text-transform: uppercase;
      margin-top: 8px;
    }
    .fee-table-wrap {
      background: white;
      border-radius: 12px; overflow: hidden;
      box-shadow: 0 4px 24px rgba(13,27,62,0.06);
    }
    .fee-table {
      width: 100%; border-collapse: collapse;
   }
    .fee-table thead th {
    background: var(--navy);
    color: var(--gold-light);
    font-size: 18px;
    font-weight: 600;
    /* letter-spacing: 1px; */
    /* text-transform: uppercase; */
    padding: 16px 20px;
    text-align: left;
    }
    .fee-table tbody td {
      padding: 14px 20px;
      border-bottom: 1px solid rgba(13,27,62,0.06);
      font-size: 16px; color: var(--text-mid);
    }
    .fee-table tbody tr:last-child td { border-bottom: none; }
   .fee-table tbody tr:hover td {
      background: var(--cream);
    }
   .fee-table .total-row td {
      font-weight: 700; color: var(--navy);
      background: var(--gold-pale);
      font-size: 15px;
    }
    .fee-note {
      background: rgba(201,151,58,0.1);
      border-left: 4px solid var(--gold);
      padding: 16px 20px; border-radius: 0 8px 8px 0;
      margin-top: 20px; font-size: 16px; color: var(--text-mid);
      line-height: 1.7;
    }
    /* ===== RULES ===== */
    #rules {
      padding: 100px 40px;
      background: white;
    }
    .rules-inner { max-width: 1000px; margin: 0 auto; }
    .rules-grid {
      display: grid; grid-template-columns: 1fr 1fr; gap: 40px;
    }
    .rules-section h3 {
      font-family: 'Playfair Display', serif;
      font-size: 24px; font-weight: 600;
      color: var(--navy); margin-bottom: 20px;
      padding-bottom: 12px;
      border-bottom: 2px solid var(--gold);
    }
    .rules-list {
      list-style: none; padding: 0;
    }
    .rules-list li {
      padding: 10px 0 10px 24px;
      font-size: 16px; color: var(--text-mid);
      line-height: 1.65;
      border-bottom: 1px solid rgba(13,27,62,0.06);
      position: relative;
    }
.rules-list li::before {
 content: "\f105";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    color: #d83538;
    font-size: 14px;
    top: 11px;
}
.contact-form-wrap {
  max-width: 900px;
    margin: auto;
}
.registration-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.form-row {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}
.form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
}
.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid #ccc;
    border-radius: 8px;
    outline: none;
}
.form-group input[type="file"] {
    border-style: dashed;
    cursor: pointer;
}
.submit-btn {
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    background: #c9973a;
    color: white;
    font-size: 16px;
}
#content {
  padding: 60px 20px;
  background: var(--cream);
}
.content-box {
  max-width: 800px;
  margin: 0 auto;
  background: white;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.05);
}
.content-box p {
  margin-bottom: 15px;
  line-height: 1.6;
}
.content-box h3 {
  color: var(--navy);
  margin-top: 30px;
  margin-bottom: 15px;
}
    /* ===== FAQ ===== */
    #faq {
      padding: 100px 40px;
      background: var(--cream);
    }
    .faq-inner { max-width: 800px; margin: 0 auto; }
    .faq-item {
      background: white;
      border-radius: 10px; margin-bottom: 12px;
      border: 1px solid rgba(13,27,62,0.08);
      overflow: hidden;
    }
    .faq-q {
      padding: 20px 24px;
      cursor: pointer;
      display: flex; justify-content: space-between; align-items: center;
      font-size: 15px; font-weight: 600; color: var(--navy);
    }
    .faq-q:hover { background: var(--cream); }
    .faq-arrow {
      width: 28px; height: 28px; flex-shrink: 0;
      background: var(--navy);
      border-radius: 50%; display: flex; align-items: center; justify-content: center;
      color: var(--gold-light); font-size: 14px;
      transition: transform 0.3s;
    }
    .faq-item.open .faq-arrow { transform: rotate(180deg); }
    .faq-a {
     max-height: 0; overflow: hidden;
      transition: max-height 0.4s ease;
      font-size: 14px; color: var(--text-mid); line-height: 1.75;
    }
    .faq-item.open .faq-a { max-height: 200px; }
    .faq-a-inner { padding: 0 24px 20px; }
    /* ===== CONTACT ===== */
    #contact {
      padding: 50px 40px;
    }
    .contact-inner {
      max-width: 1200px; margin: 0 auto;
      display: grid; grid-template-columns: 1fr 1.4fr; gap: 60px;
    }
    .contact-info h3 {
      font-family: 'Playfair Display', serif;
      font-size: 28px; font-weight: 600; color: rgb(28, 16, 87);
      margin-bottom: 30px;
  }
 .form-label {
    color: #fff;
}
   .contact-detail {
      display: flex; gap: 16px; align-items: flex-start;
      margin-bottom: 24px;
    }
    .contact-detail-icon {
      width: 44px; height: 44px; flex-shrink: 0;
      background:rgb(213 52 56);
      border: 1px solid rgba(201,151,58,0.3);
      border-radius: 8px; display: flex; align-items: center; justify-content: center;
      font-size: 18px;
    }
    .prog-icon i{
   font-size: 32px;
    color: #ffffff;
    }
    .contact-detail-text p:first-child {
      font-size: 11px; font-weight: 600;
      letter-spacing: 1.5px; text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 2px;
    }
   .contact-detail-text p:last-child {
font-size: 15px;
      /*  color: rgba(255,255,255,0.85); */
      font-weight: 400;
    }
.contact-info {
    background: #fff;
    padding: 46px;
    border-radius: 20px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    margin-top: 30px;
}
   .contact-detail-text a {
     /* color: rgba(255,255,255,0.85);  */
     text-decoration: none;
    }
    .contact-detail-text a:hover { color: var(--gold-light); }
    /* Contact form */
    .contact-form-wrap {
      background: rgb(16 30 64);
      border: 1px solid rgba(201,151,58,0.2);
      border-radius: 16px; padding: 40px;
    }
    .contact-form-wrap h3 {
      font-family: 'Playfair Display', serif;
      font-size: 24px; font-weight: 600; color: white;
     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: 12px; font-weight: 600;
color: #fff;
      letter-spacing: 1px; text-transform: uppercase;
 margin-bottom: 8px;
   }
    .form-group input,
    .form-group select,
    .form-group textarea {
      width: 100%;
      background: rgba(255,255,255,0.07);
      border: 1px solid rgba(255,255,255,0.15);
      border-radius: 8px; padding: 13px 16px;
      color: white; font-size: 14px;
      font-family: 'DM Sans', sans-serif;
      transition: border-color 0.2s;
      outline: none;
    }
    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
      border-color: var(--gold);
      background: rgba(255,255,255,0.09);
    }
    .form-group select option { background: var(--navy-mid); color: white; }
    .form-group textarea { resize: vertical; min-height: 100px; }
    .form-group input::placeholder,
    .form-group textarea::placeholder { color: rgba(255,255,255,0.35); }
    .map-wrap iframe {
      width: 100%; height: 400px; border: none; display: block;
      filter: grayscale(50%);
    }
    /* ===== FOOTER ===== */
    footer {
      background: #080F1F;
      padding: 60px 40px 28px;
    }
    .footer-inner {
      max-width: 1200px; margin: 0 auto;
    }
    .footer-top {
      display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px;
      padding-bottom: 48px;
      border-bottom: 1px solid rgba(201,151,58,0.15);
      margin-bottom: 32px;
    }
    .footer-brand img { height: 48px; width: auto; margin-bottom: 16px; }
    .footer-brand p {
      font-size: 16px; color: rgb(255, 255, 255); line-height: 1.8; margin-bottom: 20px;
    }
    .footer-col h3 {
         font-size: 18px;
    font-weight: 600;
    letter-spacing: 0px;
    /* text-transform: uppercase; */
    color: #ffffff;
    margin-bottom: 16px;
    }
    .footer-col ul {list-style: none;
   padding-left: 10px;}
    .footer-col ul li { margin-bottom: 10px; }
    .footer-col ul li a {
      font-size: 15px; color: rgb(255, 255, 255);
      text-decoration: none; transition: color 0.2s;
    }
    .footer-col ul li a:hover { color: var(--gold-light); }
    .footer-bottom {
      display: flex; 
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
       gap: 16px;
    }
    .footer-bottom p {
      font-size: 13px; color: rgb(255, 255, 255);
    }
.small {
    font-size: 13px;
}
.footer-col .contact-list, .footer-col .contact-list li{
  padding: 0;}
    .footer-bottom a { color: var(--gold); text-decoration: none; }
    .footer-links {
      display: flex; gap: 20px;
    }
    .footer-links a {
      font-size: 13px; color: rgb(255, 255, 255); text-decoration: none;
    }
    .footer-links a:hover { color: var(--gold-light); }
.social-links {
    margin-top: 20px;
    display: flex;
    gap: 15px;
}
.social-links a {
    color: var(--gold-light);
    transition: 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    text-decoration: none;
}
.social-links a:hover {
    opacity: 0.8;
    transform: translateY(-3px);
}
.social-links i {
    font-size: 16px;
}
.footer-col ul li {
    list-style: none;
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
}
.footer-col ul li::before {
    content: "\f105"; /* right arrow */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 5px;
    color: var(--gold-light);
     font-size: 12px;
}
.contact-list li::before {
    content: none !important;
}
.contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.contact-list li {
    margin-bottom: 18px;
}
.contact-list a {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    transition: 0.3s ease;
}
.contact-list a:hover {
    color: #d4af37;
    transform: translateX(5px);
}
.icon-box {
    width: 42px;
    height: 42px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-light);
    font-size: 18px;
    transition: 0.3s ease;
}
.contact-list a:hover .icon-box {
    background: var(--gold-light);
    color: #001233;
}
.icon-box .fa-phone-alt {
    transform: rotate(90deg);
}
    /* ===== SCROLL ANIMATIONS ===== */
    .reveal {
      opacity: 0; transform: translateY(30px);
      transition: opacity 0.7s ease, transform 0.7s ease;
    }
    .reveal.visible {
      opacity: 1; transform: translateY(0);
    }
    /* ===== MOBILE NAV ===== */
    @media (max-width: 900px) {
      nav { padding: 0 20px; }
      .nav-links { display: none; flex-direction: column; position: absolute; top: 72px; left: 0; right: 0; background: rgba(13,27,62,0.99); padding: 20px; }
      .nav-links.open { display: flex; }
      .hamburger { display: block; }
      .hero-content { padding: 0 20px; padding-top: 72px; }
      .hero-stats-inner { grid-template-columns: repeat(2,1fr); padding: 16px 20px; }
      .stat-item:nth-child(2) { border-right: none; }
      .about-inner { grid-template-columns: 1fr; gap: 40px; }
      .about-img-wrap { display: none; }
      .program-overview { grid-template-columns: 1fr; }
      .why-grid { grid-template-columns: 1fr 1fr; }
      .gallery-grid { grid-template-columns: 1fr 1fr; }
      .gallery-item.featured { grid-column: span 2; }
      .facilities-grid { grid-template-columns: 1fr; }
      .fee-hero { grid-template-columns: 1fr; gap: 0; }
      .fee-highlight { border-right: none; border-bottom: 1px solid rgba(201,151,58,0.2); }
      .rules-grid { grid-template-columns: 1fr; }
      .contact-inner { grid-template-columns: 1fr; }
      .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
      .footer-brand { grid-column: span 2; }
      section { padding: 60px 20px }
      #fees { padding: 60px 20px; }
    }
    @media (max-width: 600px) {
      .why-grid { grid-template-columns: 1fr; }
      .gallery-grid { grid-template-columns: 1fr 1fr; }
      .form-row { grid-template-columns: 1fr; }
      .footer-top { grid-template-columns: 1fr; }
      .footer-brand { grid-column: span 1; }
    }
    /* ===== ANNOUNCEMENT BANNER ===== */
    .announcement {
      background: var(--gold);
      position: relative;
      overflow: hidden;
      padding: 10px 20px;
      text-align: center;
      font-size: 13px; font-weight: 600;
      color: var(--navy);
      letter-spacing: 0.3px;
      z-index: 1;
    }
    .announcement::after {
      content: '';
      position: absolute;
      top: 0; left: -100%;
      width: 100%; height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
      animation: shimmer 3s infinite;
      z-index: -1;
    }
    @keyframes shimmer {
      0% { transform: translateX(0); }
      100% { transform: translateX(200%); }
    }
.fee-table-wrap {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.fee-table {
    width: 100%;
    min-width: 700px; /* prevents squishing */
    border-collapse: collapse;
}

.fee-table th,
.fee-table td {
    padding: 12px;
    text-align: center;
    white-space: nowrap;
}
.contact-detail-text a {
    color: #000;
    font-weight: 600;
}


   /* ===============================Responsive ===========================================*/
@media (max-width: 768px) {
  .slider {
    height: 250px;
  }
.top-slider {
    width: 100%;
    position: relative;
    overflow: hidden;
    top: 70px;
    PADDING: 0;
    padding: 0 !important;
}
.hero-stats {
    position: relative;
    bottom: -70px !important;
  }
  section#about-intro {
    margin: 0;
}
.about-intro-section {
    padding: 80px 0 30px ;
  }

  #gallery, #faq, #about, #facilities, #llb, #rules, #contact {
    padding: 50px 10px;
}
  #why {
    padding: 60px 10px;
    background: var(--cream);
}
.contact-form-wrap {
    padding: 40px 10px;
}

.contact-info {
    background: #fff;
    padding: 30px 10px;
    border-radius: 20px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    margin-top: 30px;
}
.about-features {
    display: grid;
    grid-template-columns: none;
    gap: 16px;
    margin-top: 32px;
}
nav.scrolled {
    height: 100px;
    background: rgba(13, 27, 62, 0.99);
}
  nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(13, 27, 62, 0.97);
    backdrop-filter: blur(12px);
    padding: 10px !important;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100px;
}
.nav-logo .nav-logo-text span:first-child {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
}
.nav-logo .nav-logo-text span:last-child {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.55);
    text-transform: uppercase;
}
.hero-stats .hero-stats-inner {
        grid-template-columns: repeat(4, 1fr);
        padding: 16px 0px;
}
.hero-stats-inner .stat-item {
    text-align: center;
    padding: 8px 1px;
    border-right: 1px solid var(--border);
}
.stat-item .stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--gold-light);
    display: block;
    line-height: 1;
}
.stat-item .stat-label {
    font-size: 12px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 0px;
    text-transform: capitalize;
    margin-top: 4px;
    display: block;
}
.slider .prev, .slider .next {
    cursor: pointer;
    position: absolute;
    top: 60%;
    transform: translateY(-50%);
    padding: 12px 18px;
    color: white;
    font-size: 14px;
    font-weight: bold;
    border: none;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 50%;
    user-select: none;
}
.academics-section {
    padding: 40px 4% !important;
    background: #ffffff;
}
    .academics-container {
        flex-direction: column;
        gap: 20px;
    }
    .academics-content h2 {
        font-size: 28px;
    }

.section-title {
    font-size: clamp(24px, 3.5vw, 46px);
}
.intro-text p{
  margin: 0;
}
.page-header {
    height: 180px;
    position: relative;
    top: 12px;
    padding: 0;
}

.page-header h2 {
    font-size: 36px;
    font-weight: 700;
    margin: 0;
    color: #fff;
}
.facility-item {
        flex-direction: column;
        align-items: center;   
        text-align: center;   
    }

.about-text p{
  text-align: justify;
}

     .syllabus-wrap {
        padding: 10px;
    }

    .syllabus-tabs {
        overflow-x: auto;
        flex-wrap: nowrap;
        white-space: nowrap;
        scrollbar-width: none;
        padding: 0;
    }

    .syllabus-tabs::-webkit-scrollbar {
        display: none;
    }

    .tab-btn {
        flex: 0 0 auto;
        /* min-width: 120px; */
        font-size: 14px;
        padding: 8px 12px;
    }

    /* Table responsive */
    .syllabus-table {
        width: 100%;
        min-width: 600px;
        border-collapse: collapse;
    }

    .tab-content {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .syllabus-table th,
    .syllabus-table td {
        padding: 10px;
        font-size: 13px;
        white-space: nowrap;
    }

.fee-table-wrap {
        border-radius: 8px;
    }

    .fee-table {
        min-width: 600px;
    }

    .fee-table th,
    .fee-table td {
        font-size: 13px;
        padding: 8px;
    }

    .total-row td {
        font-size: 13px;
    }
footer {
    background: #080F1F;
    padding: 59px 20px 28px;
}

}
