    h1,
    .h1,
    h2,
    .h2,
    h3,
    .h3,
    h4,
    .h4 {
        color: #ffffff;
    }

    :root {
        --primary: #0a2540;
        /* Deep Navy Blue */
        --accent: #136ad5;
        /* Vibrant Blue */
        --light: #f8fafc;
        --text: #1e2937;
        --gray: #64748b;
    }

    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    body {
        background: #ffffff;
        color: var(--text);
        line-height: 1.75;
    }

    /* Hero */
    .hero {
        position: relative;
        overflow: hidden;
        text-align: center;
        height: 78vh;

        video {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: -2;
        }

        &::before {
            content: "";
            position: absolute;
            inset: 0;
            background:
                linear-gradient(90deg,
                    rgba(0, 0, 0, 0.55) 0%,
                    rgba(0, 0, 0, 0.30) 50%,
                    rgba(0, 0, 0, 0.45) 100%);
            z-index: -1;
        }
    }

    .hero-content {
        max-width: 1340px;
        margin: 0 auto;
        /* padding: 0 5%; */
    }

    .hero-badge {
        background: rgba(0, 180, 216, 0.25);
        color: white;
        padding: 12px 32px;
        border-radius: 50px;
        display: inline-flex;
        align-items: center;
        gap: 12px;
        margin-bottom: 1.5rem;
        border: 1px solid rgba(255, 255, 255, 0.5);
    }

    .hero h1 {
        font-size: clamp(3.5rem, 8vw, 6.2rem);
        line-height: 1.05;
        margin-bottom: 1.2rem;
    }

    .hero p {
        font-size: 1.4rem;
        max-width: 700px;
        margin: 0 auto 2.5rem;
    }

    .btn {
        padding: 18px 48px;
        border-radius: 50px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 1.5px;
        text-decoration: none;
        display: inline-block;
        transition: all 0.4s;
        font-size: 1.1rem;
    }

    .btn-primary {
        background: var(--accent);
        color: white;
    }

    .btn-primary:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 40px rgba(0, 180, 216, 0.4);
    }

    /* Stats */
    .stats {
        max-width: 1300px;
        margin: -40px auto 0;
        padding: 0 5%;
        z-index: 10;
        position: relative;
    }

    .stats-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
        gap: 30px;
    }

    .stat-card {
        background: white;
        padding: 42px 30px;
        border-radius: 24px;
        text-align: center;
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
        p{
            margin: 0;
        }
    }

    .stat-card h2 {
        font-size: 3.4rem;
        color: var(--accent);
        margin-bottom: 8px;
    }

    /* Sections */
    section {
        padding: 130px 5%;
    }

    .section-header {
        text-align: center;
        margin-bottom: 90px;
    }

    .section-header h2 {
        font-size: 3.4rem;
        color: var(--primary);
        margin-bottom: 20px;
    }

    .section-header p {
        color: var(--gray);
        font-size: 1.25rem;
        max-width: 700px;
        margin: 0 auto;
    }

    .content-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 20px;
        align-items: center;
    }

    .card {
        background: white;
        border-radius: 28px;
        padding: 48px 40px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
        transition: 0.4s;

        h3 {
            color: #0a2540;
        }
    }

    .card:hover {
        transform: translateY(-15px);
        box-shadow: 0 25px 50px rgba(0, 180, 216, 0.15);
    }

    .feature-list {
        list-style: none;
    }

    .feature-list li {
        padding: 14px 0;
        border-bottom: 1px solid #f1f5f9;
        font-size: 1.15rem;
    }

    .feature-list li:last-child {
        border-bottom: none;
    }

    /* Responsive */
    @media (max-width: 992px) {
        section {
            padding: 100px 5%;
        }

        .content-grid {
            grid-template-columns: 1fr;
        }
    }



    /* About Section -- Start */


    /* ========== ABOUT SECTION ========== */
    .about-section {
        padding: 80px 20px;
        background: linear-gradient(135deg, #f8fafc 0%, #eef2ff 100%);
        position: relative;
        overflow: hidden;
    }

    .about-section::before {
        content: '';
        position: absolute;
        top: -100px;
        right: -100px;
        width: 300px;
        height: 300px;
        background: radial-gradient(circle, rgba(99, 102, 241, 0.08) 0%, transparent 70%);
        border-radius: 50%;
    }

    /* Header */
    .section-header {
        text-align: center;
        margin-bottom: 60px;
    }

    .section-badge {
        display: inline-block;
        background: #6366f1;
        color: white;
        font-size: 0.85rem;
        font-weight: 600;
        padding: 6px 16px;
        border-radius: 50px;
        letter-spacing: 0.5px;
        margin-bottom: 16px;
    }

    .section-header h2 {
        font-size: 2.6rem;
        font-weight: 800;
        color: #1e293b;
        margin: 0 0 12px 0;
        line-height: 1.2;
    }

    .section-subtitle {
        font-size: 1.15rem;
        color: #64748b;
        max-width: 600px;
        margin: 0 auto;
    }

    /* Content Layout */
    .about-content {
        display: grid;
        grid-template-columns: 1fr 1.2fr;
        gap: 60px;
        align-items: center;
    }

    .about-text .lead-text {
        font-size: 1.25rem;
        color: #334155;
        line-height: 1.7;
        margin-bottom: 20px;
    }

    .about-text .desc-text {
        font-size: 1.1rem;
        color: #475569;
        line-height: 1.7;
        margin-bottom: 30px;
    }

    .btn-primary {
        display: inline-block;
        color: white;
        padding: 14px 28px;
        border-radius: 10px;
        text-decoration: none;
        font-weight: 600;
        font-size: 1rem;
        transition: all 0.3s ease;
        box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
    }

    .btn-primary:hover {
        transform: translateY(-3px);
        color: #fff;
    }

    /* Feature Cards */
    .features-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .feature-card {
        background: white;
        padding: 24px 20px;
        border-radius: 16px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
        transition: all 0.3s ease;
        border: 1px solid #f1f5f9;
        display: flex;
        align-items: flex-start;
        gap: 14px;
    }

    .feature-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 12px 30px rgba(99, 102, 241, 0.15);
        border-color: #c7d2fe;
    }

    .feature-icon {
        font-size: 1.8rem;
        background: #eef2ff;
        width: 48px;
        height: 48px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 12px;
        flex-shrink: 0;
    }

    .feature-card h4 {
        font-size: 1rem;
        font-weight: 600;
        color: #1e293b;
        margin: 0;
        line-height: 1.4;
    }

    /* ========== RESPONSIVE ========== */
    @media (max-width: 992px) {
        .about-content {
            grid-template-columns: 1fr;
            gap: 40px;
        }

        .section-header h2 {
            font-size: 2.2rem;
        }
    }

    @media (max-width: 576px) {
        .about-section {
            padding: 60px 16px;
        }

        .section-header h2 {
            font-size: 1.9rem;
        }

        .features-grid {
            grid-template-columns: 1fr;
        }

        .feature-card {
            padding: 18px 16px;
        }
    }

    /* About Section -- End */


    /* ========== FACILITIES SECTION ========== */
    .facilities-section {
        padding: 90px 20px;
        background: linear-gradient(180deg, #ffffff 0%, #f1f5f9 100%);
        position: relative;
        overflow: hidden;
    }

    /* Soft decorative circles */
    .facilities-section::before {
        content: '';
        position: absolute;
        bottom: -120px;
        left: -80px;
        width: 350px;
        height: 350px;
        background: radial-gradient(circle, rgba(99, 102, 241, 0.07) 0%, transparent 70%);
        border-radius: 50%;
    }

    .facilities-section::after {
        content: '';
        position: absolute;
        top: 40px;
        right: -60px;
        width: 220px;
        height: 220px;
        background: radial-gradient(circle, rgba(16, 185, 129, 0.06) 0%, transparent 70%);
        border-radius: 50%;
    }

    /* Header */
    .section-header {
        text-align: center;
        margin-bottom: 60px;
    }

    .section-badge {
        display: inline-block;
        background: linear-gradient(135deg, #6366f1, #4f46e5);
        color: white;
        font-size: 0.85rem;
        font-weight: 600;
        padding: 6px 18px;
        border-radius: 50px;
        letter-spacing: 0.5px;
        margin-bottom: 16px;
    }

    .section-header h2 {
        font-size: 2.6rem;
        font-weight: 800;
        color: #1e293b;
        margin: 0 0 14px 0;
        line-height: 1.2;
    }

    .section-subtitle {
        font-size: 1.15rem;
        color: #64748b;
        max-width: 520px;
        margin: 0 auto;
    }

    /* Grid */
    .facilities-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
        gap: 28px;
    }

    /* Individual Card */
    .facility-card {
        background: white;
        border-radius: 20px;
        padding: 36px 28px;
        text-align: center;
        position: relative;
        overflow: hidden;
        border: 1px solid #e2e8f0;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
        transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .facility-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(99, 102, 241, 0.15);
        border-color: #c7d2fe;
    }

    .facility-icon {
        width: 72px;
        height: 72px;
        margin: 0 auto 22px;
        background: linear-gradient(135deg, #eef2ff, #e0e7ff);
        border-radius: 18px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 2rem;
        transition: all 0.3s ease;
    }

    /* .facility-card:hover .facility-icon {
        background: linear-gradient(135deg, #6366f1, #4f46e5);
        transform: scale(1.08);
    }

    .facility-card:hover .facility-icon span {
        filter: brightness(0) invert(1);
    } */

    .facility-card h3 {
        font-size: 1.3rem;
        font-weight: 700;
        color: #1e293b;
        margin: 0 0 12px 0;
    }

    .facility-card p {
        font-size: 0.98rem;
        color: #64748b;
        line-height: 1.65;
        margin: 0;
    }

    /* Soft glow on hover */
    .card-glow {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 4px;
        background: linear-gradient(90deg, #6366f1, #10b981);
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 0.35s ease;
    }

    .facility-card:hover .card-glow {
        transform: scaleX(1);
    }

    /* ========== RESPONSIVE ========== */
    @media (max-width: 768px) {
        .facilities-section {
            padding: 70px 16px;
        }

        .section-header h2 {
            font-size: 2.1rem;
        }

        .facilities-grid {
            gap: 20px;
        }

        .facility-card {
            padding: 28px 22px;
        }
    }

    @media (max-width: 480px) {
        .section-header h2 {
            font-size: 1.85rem;
        }
    }


    .curriculum-section {
  position: relative;
  min-height: 850px;
  padding: 120px 6%;
  overflow: hidden;
  background: #061a2f;
  color: #fff;
}

.curriculum-bg {
  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      90deg,
      rgba(3, 18, 35, 0.98) 0%,
      rgba(3, 18, 35, 0.88) 35%,
      rgba(3, 18, 35, 0.62) 70%,
      rgba(3, 18, 35, 0.82) 100%
    ),
    url("../images/curriculum-bg.jpg") center / cover no-repeat;

  transform: scale(1.02);
}

/* Orange glow */
.curriculum-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

.glow-one {
  width: 350px;
  height: 350px;
  top: -120px;
  right: -80px;
  background: rgba(255, 87, 34, 0.22);
}

.glow-two {
  width: 300px;
  height: 300px;
  bottom: -150px;
  left: -100px;
  background: rgba(0, 115, 255, 0.18);
}

.curriculum-container {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: auto;
}


/* =========================
   HEADING
========================= */

.curriculum-heading {
  max-width: 800px;
  margin-bottom: 65px;
}

.curriculum-heading > span {
  display: inline-flex;
  align-items: center;
  gap: 8px;

  padding: 9px 17px;

  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 100px;

  background: rgba(255, 255, 255, 0.06);

  color: #ff7a18;

  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 2px;
}

.curriculum-heading h2 {
  margin: 22px 0 18px;

  font-size: clamp(2.5rem, 5vw, 5rem);
  line-height: 1.05;
  letter-spacing: -2px;
  font-weight: 800;
}

.curriculum-heading h2 strong {
  color: #ff7a18;
}

.curriculum-heading p {
  max-width: 650px;

  margin: 0;

  color: rgba(255, 255, 255, 0.68);

  font-size: 1.08rem;
  line-height: 1.8;
}


/* =========================
   CARDS
========================= */

.curriculum-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.curriculum-card {
  position: relative;

  min-height: 390px;

  padding: 35px;

  overflow: hidden;

  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 28px;

  background: rgba(255, 255, 255, 0.075);

  backdrop-filter: blur(14px);

  transition:
    transform 0.45s ease,
    border-color 0.45s ease,
    background 0.45s ease;
}

.curriculum-card:hover {
  transform: translateY(-14px);

  border-color: rgba(255, 122, 24, 0.6);

  background: rgba(255, 255, 255, 0.11);
}


/* Big background number */

.card-number {
  position: absolute;

  top: -25px;
  right: 15px;

  font-size: 8rem;
  line-height: 1;

  font-weight: 900;

  color: rgba(255, 255, 255, 0.035);

  pointer-events: none;
}


/* Icon */

.curriculum-icon {
  width: 70px;
  height: 70px;

  display: flex;
  align-items: center;
  justify-content: center;

  margin-bottom: 40px;

  border-radius: 20px;

  background: rgba(255, 122, 24, 0.14);

  border: 1px solid rgba(255, 122, 24, 0.25);

  font-size: 2rem;

  transition: 0.4s ease;
}

.curriculum-card:hover .curriculum-icon {
  transform: rotate(-6deg) scale(1.08);
}


/* Content */

.card-content {
  position: relative;
  z-index: 2;
}

.card-label {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 1.8px;

  color: #ff7a18;
}

.card-content h3 {
  margin: 10px 0 15px;

  font-size: 1.8rem;
  font-weight: 750;
}

.card-content p {
  margin: 0;

  color: rgba(255, 255, 255, 0.67);

  font-size: 0.98rem;
  line-height: 1.75;
}


/* Bottom */

.card-bottom {
  position: absolute;

  left: 35px;
  right: 35px;
  bottom: 30px;

  display: flex;
  justify-content: space-between;
  align-items: center;

  padding-top: 18px;

  border-top: 1px solid rgba(255, 255, 255, 0.1);

  color: rgba(255, 255, 255, 0.55);

  font-size: 0.8rem;
  font-weight: 600;
}

.card-bottom span:last-child {
  color: #ff7a18;
  font-size: 1.4rem;

  transition: 0.3s ease;
}

.curriculum-card:hover .card-bottom span:last-child {
  transform: translateX(7px);
}


/* =========================
   FOOTER STRIP
========================= */

.curriculum-footer {
  display: flex;
  align-items: center;
  gap: 60px;

  margin-top: 55px;
  padding-top: 25px;

  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.curriculum-footer div {
  display: flex;
  align-items: center;
  gap: 12px;
}

.curriculum-footer strong {
  color: #ff7a18;
  font-size: 1.1rem;
}

.curriculum-footer span {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.85rem;
}


/* =========================
   TABLET
========================= */

@media (max-width: 1000px) {

  .curriculum-section {
    padding: 90px 5%;
  }

  .curriculum-cards {
    grid-template-columns: 1fr;
  }

  .curriculum-card {
    min-height: 330px;
  }

  .curriculum-footer {
    gap: 30px;
    flex-wrap: wrap;
  }
}


/* =========================
   MOBILE
========================= */

@media (max-width: 600px) {

  .curriculum-section {
    padding: 75px 20px;
  }

  .curriculum-heading {
    margin-bottom: 45px;
  }

  .curriculum-heading h2 {
    font-size: 2.5rem;
    letter-spacing: -1px;
  }

  .curriculum-heading p {
    font-size: 0.95rem;
  }

  .curriculum-card {
    min-height: 350px;
    padding: 28px;
    border-radius: 22px;
  }

  .curriculum-icon {
    margin-bottom: 30px;
  }

  .card-bottom {
    left: 28px;
    right: 28px;
  }

  .curriculum-footer {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
  }
}




  .curriculum-section {
  position: relative;
  padding: 110px 7%;
  background:
  radial-gradient(circle at 10% 20%, rgba(255, 122, 24, 0.07), transparent 30%),
  radial-gradient(circle at 90% 80%, rgba(10, 37, 64, 0.06), transparent 30%),
  #ffffff;
  overflow: hidden;
  }

  /* subtle background pattern */

  .curriculum-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(#d9dee5 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: 0.25;
  pointer-events: none;
  }


  /* =========================================
  HEADER
  ========================================= */

  .curriculum-header {
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin: 0 auto 65px;
  text-align: center;
  }

  .section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 50px;
  background: rgba(255, 87, 34, 0.08);
  color: #f4510b;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 2px;
  margin-bottom: 18px;
  }

  .curriculum-header h2 {
  margin: 0;
  color: #0a2540;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 1;
  font-weight: 800;
  letter-spacing: -2px;
  }

  .curriculum-header h2 span {
  color: #f4510b;
  }

  .curriculum-header p {
  max-width: 650px;
  margin: 22px auto 0;
  color: #64748b;
  font-size: 1.08rem;
  line-height: 1.8;
  }


  /* =========================================
  GRID
  ========================================= */

  .curriculum-wrapper {
  position: relative;
  z-index: 2;

  max-width: 1250px;
  margin: auto;

  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  }


  /* =========================================
  CARD
  ========================================= */

  .curriculum-card {
  position: relative;
  min-height: 430px;
  padding: 34px;
  border-radius: 28px;

  display: flex;
  flex-direction: column;

  overflow: hidden;

  border: 1px solid rgba(15, 23, 42, 0.08);

  background: rgba(255, 255, 255, 0.88);

  box-shadow:
  0 20px 60px rgba(15, 23, 42, 0.07);

  transition:
  transform 0.45s ease,
  box-shadow 0.45s ease;
  }


  /* giant number */

  .card-number {
  position: absolute;
  right: 25px;
  top: 10px;

  font-size: 6rem;
  line-height: 1;

  font-weight: 900;

  color: rgba(10, 37, 64, 0.045);

  transition: 0.4s ease;
  }


  /* hover */

  .curriculum-card:hover {
  transform: translateY(-12px);

  box-shadow:
  0 35px 80px rgba(15, 23, 42, 0.14);
  }

  .curriculum-card:hover .card-number {
  color: rgba(244, 81, 11, 0.08);
  transform: scale(1.08);
  }


  /* =========================================
  ICON
  ========================================= */

  .card-icon {
  width: 68px;
  height: 68px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 20px;

  background: #fff1e9;
  color: #f4510b;

  font-size: 1.5rem;

  margin-bottom: 38px;

  box-shadow:
  0 12px 30px rgba(244, 81, 11, 0.12);

  transition: 0.4s ease;
  }

  .curriculum-card:hover .card-icon {
  transform: rotate(-5deg) scale(1.08);
  }


  /* =========================================
  CONTENT
  ========================================= */

  .card-content {
  position: relative;
  z-index: 2;
  }

  .card-level {
  display: block;

  color: #94a3b8;

  font-size: 0.72rem;
  font-weight: 800;

  letter-spacing: 1.8px;

  margin-bottom: 10px;
  }

  .card-content h3 {
  margin: 0 0 18px;

  color: #0a2540;

  font-size: 1.8rem;
  font-weight: 800;

  letter-spacing: -0.5px;
  }

  .card-content p {
  margin: 0;

  color: #64748b;

  font-size: 1rem;
  line-height: 1.8;
  }


  /* =========================================
  FOOTER TAGS
  ========================================= */

  .card-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;

  margin-top: auto;
  padding-top: 30px;
  }

  .card-footer span {
  padding: 8px 12px;

  border-radius: 50px;

  background: #f8fafc;

  color: #475569;

  font-size: 0.72rem;
  font-weight: 700;

  border: 1px solid #e2e8f0;
  }


  /* =========================================
  ARROW
  ========================================= */

  .card-arrow {
  position: absolute;

  right: 28px;
  bottom: 28px;

  width: 42px;
  height: 42px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background: #0a2540;
  color: #ffffff;

  font-size: 0.8rem;

  opacity: 0;
  transform: translateY(10px);

  transition: 0.4s ease;
  }

  .curriculum-card:hover .card-arrow {
  opacity: 1;
  transform: translateY(0);
  }


  /* =========================================
  SPECIAL CARD ACCENTS
  ========================================= */

  .curriculum-primary {
  border-top: 4px solid #f4510b;
  }

  .curriculum-secondary {
  border-top: 4px solid #0a2540;
  }

  .curriculum-secondary .card-icon {
  background: #eaf2f8;
  color: #0a2540;
  }

  .curriculum-skills {
  border-top: 4px solid #ff9f1c;
  }

  .curriculum-skills .card-icon {
  background: #fff7df;
  color: #d97706;
  }


  /* =========================================
  RESPONSIVE
  ========================================= */

  @media (max-width: 1000px) {
  .curriculum-wrapper {
  grid-template-columns: 1fr;
  max-width: 700px;
  }

  .curriculum-card {
  min-height: 350px;
  }
  }

  @media (max-width: 600px) {

  .curriculum-section {
  padding: 75px 20px;
  }

  .curriculum-header {
  margin-bottom: 40px;
  }

  .curriculum-header h2 {
  font-size: 2.7rem;
  }

  .curriculum-header p {
  font-size: 0.95rem;
  }

  .curriculum-card {
  min-height: 390px;
  padding: 28px;
  border-radius: 24px;
  }

  .card-content h3 {
  font-size: 1.55rem;
  }

  .card-number {
  font-size: 5rem;
  }
  }

