  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --orange: #F5A623;
      --dark: #1a1a2e;
      --text: #1C1C1C;
      --gray: #555;
      --white: #fff;
    }

    body {
        z-index: 0;
         position: relative;
      padding-top: 70px;
      font-family: "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;;
      background: #fff;
      overflow-x: hidden;
    }

    /* ── BUBBLE CANVAS ── */
    #bubble-canvas {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.hero, nav, section {
  position: relative;
  z-index: 2;
}

    /* ── NAVBAR ── */
    nav {
  position: fixed;   /* ✅ fixed navbar */
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;

  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 18px 18px;
  background: #fff;
  box-shadow: 0 1px 0 rgba(0,0,0,0.06);
  transition: all 0.3s ease;
}

    .logo-wrap {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .logo-icon {
      width: 46px;
      height: 46px;
      background: var(--orange);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 22px;
      font-weight: 800;
      color: #fff;
    }

    .logo-text h1 {
      font-size: 17px;
      font-weight: 700;
      color: var(--text);
      line-height: 1.1;
    }

    .logo-text p {
      font-size: 11px;
      color: var(--gray);
      font-weight: 400;
    }

    .nav-links {
      display: flex;
      gap: 36px;
      list-style: none;
    }

    .nav-links a {
      font-size: 14px;
      font-weight: 500;
      color: var(--text);
      text-decoration: none;
      transition: color 0.2s;
      position: relative;
    }

    .nav-links a.active {
  color: #F5A623;
  font-weight: 700;
  position: relative;
}

.nav-links a.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  background: #F5A623;
  border-radius: 10px;
}

    .nav-links a:hover { color: var(--orange); }

    .nav-buttons {
      display: flex;
      gap: 12px;
      align-items: center;
    }

    .btn-outline {
      padding: 9px 22px;
      border: 1.5px solid #ccc;
      border-radius: 50px;
      font-size: 13px;
      font-weight: 500;
      font-family: 'Poppins', sans-serif;
      background: transparent;
      color: var(--text);
      cursor: pointer;
      transition: all 0.25s;
    }

    .btn-outline:hover {
      border-color: var(--orange);
      color: var(--orange);
    }

    .btn-solid {
      padding: 10px 24px;
      background: var(--orange);
      border: none;
      border-radius: 50px;
      font-size: 13px;
      font-weight: 600;
      font-family: 'Poppins', sans-serif;
      color: #fff;
      cursor: pointer;
      transition: all 0.25s;
    }

    .btn-solid:hover {
      background: #e09010;
      transform: translateY(-1px);
      box-shadow: 0 4px 16px rgba(245,166,35,0.4);
    }

    /* ── HERO ── */
    .hero {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: calc(100vh - 82px);
  padding: 60px 38px;
  gap: 10px; /* reduced gap */
}

 .hero-left {
  flex: 1;
  max-width: 52%;
}
    /* counter badge */
    .badge {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      border-radius: 50px;
      padding: 6px 16px;
      font-size: 13px;
      font-weight: 500;
      margin-bottom: 28px;
      background:#fff6e5;
      color:#f4a300;
      border:1px solid rgba(244,163,0,0.2);
    }

    .badge-icon { color: var(--orange); font-size: 15px; }

    .badge-count {
      font-weight: 700;
      color: var(--text);
    }

    /* heading */
    .hero-title {
      font-size: clamp(40px, 5.5vw, 64px);
      font-weight: 800;
      color: var(--text);
      line-height: 1.08;
      margin-bottom: 14px;
    }

    .hero-title .orange { color: var(--orange); }

    .hero-sub {
      font-size: 22px;
      font-weight: 400;
      color: var(--gray);
      line-height: 1.6;
      margin-bottom: 38px;
      /* max-width: 440px; */
    }

    /* CTA buttons */
    .cta-row {
      display: flex;
      gap: 16px;
      align-items: center;
      flex-wrap: wrap;
    }

    .cta-primary {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 15px 32px;
      background: var(--orange);
      border: none;
      border-radius: 50px;
      font-size: 15px;
      font-weight: 600;
      font-family: 'Poppins', sans-serif;
      color: #fff;
      cursor: pointer;
      transition: all 0.28s cubic-bezier(.4,0,.2,1);
    }

    .cta-primary:hover {
      background: #e09010;
      transform: translateY(-2px);
      box-shadow: 0 8px 24px rgba(245,166,35,0.45);
    }

    .cta-primary .arrow {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 28px; height: 28px;
      background: rgba(255,255,255,0.25);
      border-radius: 50%;
      font-size: 14px;
      transition: transform 0.25s;
    }

    .cta-primary:hover .arrow { transform: translateX(3px); }

    .cta-secondary {
      padding: 14px 30px;
      border: 1.5px solid #ccc;
      border-radius: 50px;
      background: transparent;
      font-size: 15px;
      font-weight: 500;
      font-family: 'Poppins', sans-serif;
      color: var(--text);
      cursor: pointer;
      transition: all 0.25s;
    }

    .cta-secondary:hover {
      border-color: var(--orange);
      color: var(--orange);
    }

    /* hero image */
   /* hero image */
.hero-right {
  flex: 1;
  max-width: 48%;
  height: 540px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.18);
  position: relative;
}

.hero-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.hero-right:hover img {
  transform: scale(1.03);
}

   
  /* ───────────────── RESPONSIVE DESIGN ───────────────── */

/* Laptop */
@media (max-width: 1200px) {

  nav {
    padding: 18px 30px;
  }

  .nav-links {
    gap: 22px;
  }

  .hero-title {
    font-size: 54px;
  }

  .hero-right {
    height: 500px;
  }
}


/* Tablet */
@media (max-width: 992px) {

  nav {
    padding: 18px 24px;
    flex-wrap: wrap;
    gap: 20px;
  }

  .nav-links {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    gap: 18px;
  }

  .hero {
    flex-direction: column;
    text-align: center;
    padding: 50px 24px;
    gap: 40px;
  }

  .hero-left,
  .hero-right {
    max-width: 100%;
    width: 100%;
  }

  .hero-sub {
    max-width: 100%;
    margin-inline: auto;
  }

  .cta-row {
    justify-content: center;
  }

  .hero-right {
    height: 450px;
  }

  .hero-title {
    font-size: 48px;
  }
}


/* ───── MOBILE MENU ───── */

.menu-toggle {
  display: none;
  font-size: 30px;
  cursor: pointer;
  color: var(--text);
  font-weight: 700;
}


/* Mobile */
@media (max-width: 768px) {

  nav {
    padding: 16px 18px;
    flex-wrap: wrap;
    position: relative;
  }

  /* Hamburger */
  .menu-toggle {
    display: block;
  }

  /* Hide desktop menu */
  .nav-links,
  .nav-buttons {
    display: none;
    width: 100%;
    flex-direction: column;
    background: #fff;
    padding: 20px 0;
    text-align: center;
    gap: 18px;
    animation: fadeDown 0.3s ease;
  }

  /* Show mobile menu */
  .nav-links.active,
  .nav-buttons.active {
    display: flex;
  }

  .nav-links {
    margin-top: 15px;
  }

  .nav-links a {
    font-size: 14px;
  }

  .nav-buttons {
    padding-top: 0;
  }

  .btn-outline,
  .btn-solid {
    width: 220px;
    margin: auto;
    font-size: 13px;
  }

  /* Hero */
  .hero {
    flex-direction: column;
    text-align: center;
    padding: 40px 18px;
    min-height: auto;
    gap: 35px;
  }

  .hero-left,
  .hero-right {
    width: 100%;
    max-width: 100%;
  }

  .hero-title {
    font-size: 38px;
    line-height: 1.15;
  }

  .hero-sub {
    font-size: 14px;
    line-height: 1.7;
    max-width: 100%;
  }

  .cta-row {
    flex-direction: column;
    width: 100%;
    gap: 14px;
  }

  .cta-primary,
  .cta-secondary {
    width: 100%;
    justify-content: center;
  }

  .hero-right {
    height: 360px;
    border-radius: 20px;
  }

  .badge {
    font-size: 12px;
    padding: 6px 14px;
  }

  .logo-icon {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }

  .logo-text h1 {
    font-size: 15px;
  }

  .logo-text p {
    font-size: 10px;
  }

  .whatsapp-fab {
    width: 48px;
    height: 48px;
    right: 18px;
    bottom: 18px;
  }

  .whatsapp-fab svg {
    width: 24px;
    height: 24px;
  }
}


/* Small Mobile */
@media (max-width: 480px) {
    body{
        padding: 0px;
    }

  .hero-title {
    font-size: 32px;
  }

  .hero-right {
    height: 300px;
  }

  .cta-primary,
  .cta-secondary {
    padding: 13px 20px;
    font-size: 14px;
  }
}


/* Animation */
@keyframes fadeDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* ───────── STATS SECTION (NO IMAGE) ───────── */

.stats-section {
  padding: 40px 38px;
}

.stats-box {
  border: 2px solid #eee;
  border-radius: 30px;
  padding: 40px;
  background: #fff;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.05);
}

/* card */
.stat-card {
  text-align: center;
  padding: 30px 20px;
  border-radius: 20px;
  background: #fafafa;
  transition: 0.3s;
}

.stat-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(245,166,35,0.15);
}

.stat-card h2 {
  font-size: 42px;
  font-weight: 800;
  color: var(--orange);
  margin-bottom: 8px;
}

.stat-card p {
  font-size: 15px;
  color: var(--gray);
}

/* ───── RESPONSIVE ───── */

@media (max-width: 992px) {
  .stats-box {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .stats-section {
    padding: 60px 18px;
  }

  .stats-box {
    grid-template-columns: 1fr;
    padding: 25px;
  }
}
/* ───────── COURSES SECTION ───────── */


.section-title {
  text-align: center;
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 50px;
  color: var(--text);
}

.courses-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

/* card */
.course-card {
  background: #fafafa;
  border: 1px solid #eee;
  border-radius: 25px;
  padding: 25px;
  text-align: center;
  transition: 0.3s;
}

.course-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

/* header */
.course-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid #eee;
}

.course-header h3 {
  font-size: 20px;
  font-weight: 800;
  margin: 0;
  color: var(--text);
}

/* icon */
.course-icon {
  font-size: 26px;
  width: 45px;
  height: 45px;
  background: rgba(245,166,35,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
}

/* text */
.course-sub {
  color: var(--orange);
  font-weight: 600;
  margin-bottom: 10px;
}

.course-card p {
  font-size: 14px;
  color: var(--gray);
  margin: 4px 0;
}

/* price */
.price {
  font-size: 20px;
  font-weight: 800;
  color: var(--orange);
  margin: 12px 0;
}

/* button */
.course-card button {
  padding: 10px 20px;
  border: none;
  border-radius: 30px;
  background: var(--orange);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.course-card button:hover {
  background: #e09010;
}



.courses-section {
      position:relative; z-index:1;
     padding: 80px 38px;
      background:#fff;
    }

    .section-header {
      text-align:center;
      margin-bottom:52px;
    }
    .section-label {
      display:inline-block;
      font-size:13px; font-weight:600; color:#F5A623;
      text-transform:uppercase; letter-spacing:1.5px;
      margin-bottom:12px;
    }
    .section-title {
      font-size:36px; font-weight:800; color:#111;
      letter-spacing:-0.5px; margin-bottom:14px;
    }
    .section-sub {
      font-size:15px; font-weight:400; color:#666;
      max-width:560px; margin:0 auto; line-height:1.6;
    }

    /* Grid */
    .courses-grid {
      display:grid;
      grid-template-columns:repeat(3, 1fr);
      gap:24px;
    }

    /* Card */
    .course-card {
      border:1.5px solid #e8e8e8;
      border-radius:16px;
      padding:28px 28px 26px;
      background:#fff;
      transition:all .28s cubic-bezier(.4,0,.2,1);
      cursor:pointer;
      position:relative;
      overflow:hidden;
    }
    .course-card::before {
      content:'';
      position:absolute;
      inset:0;
      background:linear-gradient(135deg,rgba(245,166,35,.04) 0%,transparent 60%);
      opacity:0;
      transition:opacity .28s;
    }
    .course-card:hover {
      border-color:#F5A623;
      box-shadow:0 12px 40px rgba(245,166,35,.15);
      transform:translateY(-4px);
    }
    .course-card:hover::before { opacity:1; }

    /* Card top row */
    .card-top {
      display:flex;
      align-items:flex-start;
      justify-content:space-between;
      margin-bottom:22px;
    }

    .card-icon-wrap {
      width:52px; height:52px;
      background:#f5f5f8;
      border-radius:12px;
      display:flex; align-items:center; justify-content:center;
      font-size:22px;
      flex-shrink:0;
    }

    .card-tag {
      font-size:12px; font-weight:500; color:#444;
      border:1.5px solid #e0e0e0; border-radius:50px;
      padding:4px 14px;
      white-space:nowrap;
      background:#fff;
      transition:all .22s;
    }
    .course-card:hover .card-tag { border-color:#F5A623; color:#F5A623; }

    /* Card body */
    .card-title {
      font-size:22px; font-weight:700; color:#111;
      margin-bottom:6px; letter-spacing:-0.3px;
    }
    .card-duration {
      font-size:13px; font-weight:400; color:#888;
      margin-bottom:22px;
    }

    /* Features */
    .card-features { list-style:none; margin-bottom:26px; display:flex; flex-direction:column; gap:9px; }
    .card-features li {
      display:flex; align-items:center; gap:9px;
      font-size:13.5px; font-weight:400; color:#444;
    }
    .feat-icon {
      width:20px; height:20px;
      color:#F5A623;
      flex-shrink:0;
    }

    /* Card bottom */
    .card-bottom {
      display:flex;
      align-items:center;
      justify-content:space-between;
      margin-top:auto;
    }
    .card-price {
      font-size:26px; font-weight:800; color:#F5A623;
      letter-spacing:-0.5px;
    }
    .card-price .rupee { font-size:22px; }

    .btn-enroll-card {
      padding:10px 22px;
      background:#F5A623; border:none; border-radius:50px;
      font-family:'Poppins',sans-serif;
      font-size:13.5px; font-weight:600; color:#fff;
      cursor:pointer; transition:all .22s; white-space:nowrap;
    }
    .btn-enroll-card:hover { background:#e09010; box-shadow:0 6px 18px rgba(245,166,35,.4); transform:translateY(-1px); }

/* =========================
   TABLET (<= 992px)
========================= */
@media (max-width: 992px) {

  .courses-section {
    padding: 70px 28px;
  }

  .section-title {
    font-size: 30px;
  }

  .section-sub {
    font-size: 14px;
    max-width: 90%;
  }

  .courses-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }

  .course-card {
    padding: 22px;
  }

  .card-title {
    font-size: 20px;
  }

  .card-price {
    font-size: 24px;
  }
}


/* =========================
   MOBILE (<= 600px)
========================= */
@media (max-width: 600px) {

  .courses-section {
    padding: 55px 16px;
  }

  .section-header {
    margin-bottom: 35px;
  }

  .section-title {
    font-size: 24px;
    line-height: 1.3;
  }

  .section-sub {
    font-size: 13px;
    line-height: 1.5;
  }

  .courses-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .course-card {
    padding: 18px;
  }

  .card-top {
    margin-bottom: 16px;
  }

  .card-icon-wrap {
    width: 44px;
    height: 44px;
    font-size: 18px;
  }

  .card-title {
    font-size: 18px;
  }

  .card-duration {
    font-size: 12px;
    margin-bottom: 16px;
  }

  .card-features li {
    font-size: 12.5px;
  }

  .card-price {
    font-size: 20px;
  }

  .btn-enroll-card {
    padding: 9px 16px;
    font-size: 12.5px;
  }

  .card-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .btn-enroll-card {
    width: 100%;
    text-align: center;
  }
}


/* =========================
   SMALL MOBILE (<= 400px)
========================= */
@media (max-width: 400px) {

  .section-title {
    font-size: 20px;
  }

  .card-title {
    font-size: 16px;
  }

  .card-price {
    font-size: 18px;
  }

  .courses-section {
    padding: 45px 12px;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background: white;
  }

  .nav-links.active {
    display: flex;
  }
}

/* ───────── WHY SECTION ───────── */

.why-section {
  padding: 80px 48px;
  background: #f0f5fa;
}

.why-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

/* LEFT */
.why-left {
  flex: 1;
}

.section-title {
  font-size: 36px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 10px;
}

.section-sub {
  font-size: 15px;
  color: var(--gray);
  margin-bottom: 30px;
  line-height: 1.6;
}

/* GRID */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.why-item {
  display: flex;
  gap: 12px;
  padding: 14px;
  border-radius: 16px;
  background: #fafafa;
  transition: 0.3s;
}

.why-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.why-icon {
  font-size: 22px;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(245,166,35,0.15);
  border-radius: 12px;
}

.why-item h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
}

.why-item p {
  font-size: 13px;
  color: var(--gray);
}

.exam-badge{
  display:inline-block;
  padding:8px 16px;
  border-radius:999px;
  border:1px solid #f4a300;
  background:#fff8eb;
  color:#f4a300;
  font-size:14px;
  font-weight:600;
  margin-top:10px;
}

.year{
  display:block;
  margin-top:12px;
  color:#666;
  font-size:14px;
}

/* RIGHT IMAGE */
.why-right {
  flex: 1;
}

.why-right img {
  width: 100%;
  border-radius: 24px;
  object-fit: cover;
  height: 520px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

/* ───────── RESPONSIVE ───────── */

@media (max-width: 992px) {
  .why-container {
    flex-direction: column;
  }

  .why-right img {
    height: 400px;
  }
}

@media (max-width: 576px) {
  .why-grid {
    grid-template-columns: 1fr;
  }

  .why-section {
    padding: 60px 18px;
  }

  .section-title {
    font-size: 28px;
    text-align: center;
  }

  .section-sub {
    text-align: center;
  }
}

/* ───────── SELECTIONS SECTION ───────── */

.selections-section {
  padding: 40px 38px;
  text-align: center;
  background: #fff;
}

.selection-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 40px;
}

/* CARD */
.selection-card {
  background: #fafafa;
  border-radius: 20px;
  padding: 25px;
  transition: 0.3s;
  border: 1px solid #eee;
}

.selection-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

/* ICON */
.user-icon {
  width: 55px;
  height: 55px;
  margin: 0 auto 15px;
  background: rgba(245,166,35,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}

/* TEXT */
.selection-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 6px;
}

.selection-card p {
  font-size: 14px;
  color: var(--gray);
  margin: 4px 0;
}

.rank {
  font-weight: 700;
  color: var(--orange);
}



/* BUTTON */
.view-all {
  margin-top: 40px;
}

.view-all button {
  padding: 12px 28px;
  border: none;
  border-radius: 50px;
  background: var(--orange);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.view-all button:hover {
  background: #e09010;
  transform: translateY(-2px);
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .selection-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .selection-grid {
    grid-template-columns: 1fr;
  }

  .selections-section {
    padding: 60px 18px;
  }
}
/* ───────── TESTIMONIAL SECTION ───────── */

.testimonial-section {
  padding: 80px 48px;
  text-align: center;
  background:#f0f5fa;
}

.section-title {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 10px;
}

.section-sub {
  font-size: 15px;
  color: #555;
  margin-bottom: 40px;
}

/* SWIPER */
.mySwiper {
  max-width: 700px;
  margin: auto;
}

/* SLIDE */
.swiper-slide {
  display: flex;
  justify-content: center;
}

/* CARD */
.testimonial-card {
  width: 100%;
  background: #fafafa;
  border-radius: 22px;
  padding: 35px;
  border: 1px solid #eee;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

/* ICON */
.icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 10px;
  background: rgba(245,166,35,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}

/* STARS */
.stars {
  color: #f5a623;
  font-size: 16px;
  margin-bottom: 18px;
}

/* QUOTE */
.quote {
  font-size: 15px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 20px;
}

/* NAME */
.testimonial-card h3 {
  font-size: 18px;
  font-weight: 700;
}

.testimonial-card span {
  font-size: 13px;
  color: #777;
}

/* DOTS */
.swiper-pagination-bullet {
  background: #f5a623 !important;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .testimonial-card {
    min-width: 300px;
  }
}

@media (max-width: 480px) {
  .testimonial-card {
    min-width: 260px;
  }
}
.resources-section{
  padding: 40px 38px;
  text-align: center;
  background: #fff;
}

.section-title{
  font-size: 36px;
  font-weight: 800;
  color: var(--text);
}

.section-subtitle{
  font-size: 15px;
  color: var(--gray);
  margin-top: 10px;
  margin-bottom: 50px;
}

/* GRID */
.resources-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

/* CARD */
.resource-card{
  background: #fafafa;
  border: 1px solid #eee;
  border-radius: 25px;
  padding: 35px 25px;
  transition: 0.3s;
}

.resource-card:hover{
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

/* ICON (TOP FIRST) */
.resource-card .icon{
  font-size: 40px;
  margin-bottom: 15px;
}

/* TEXT */
.resource-card h3{
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 8px;
}

.resource-card p{
  font-size: 14px;
  color: var(--gray);
  margin-bottom: 18px;
}

/* BUTTON */
.resource-card button{
  padding: 10px 18px;
  border: none;
  border-radius: 30px;
  background: var(--orange);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.resource-card button:hover{
  background: #e09010;
}

/* RESPONSIVE */
@media (max-width: 992px){
  .resources-grid{
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px){
  .resources-grid{
    grid-template-columns: 1fr;
  }

  .resources-section{
    padding: 60px 18px;
  }
}
.news-section{
  padding: 80px 38px;
  background: #fff;
  text-align: center;
}

.news-section .section-title{
  font-size: 36px;
  font-weight: 800;
  color: var(--text);
}

.news-section .section-subtitle{
  font-size: 15px;
  color: var(--gray);
  margin-top: 10px;
  margin-bottom: 50px;
}

/* GRID */
.news-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

/* CARD */
.news-card{
  background: #fafafa;
  border: 1px solid #eee;
  border-radius: 25px;
  padding: 25px;
  text-align: left;
  transition: 0.3s;
}

.news-card:hover{
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

/* TOP */
.news-top{
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-bottom:15px;
}

.tag{
  font-size: 12px;
  background: rgba(245,166,35,0.15);
  color: var(--orange);
  padding: 5px 10px;
  border-radius: 20px;
  font-weight: 600;
}

.date{
  display:flex;
  align-items:center;
  gap:8px;
  font-size:14px;
  color: var(--gray);
}

/* TEXT */
.news-card h3{
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 10px;
  color: var(--text);
}

.news-card p{
  font-size: 14px;
  color: var(--gray);
  margin-bottom: 15px;
  line-height: 1.6;
}

.news-card a{
  font-size: 14px;
  font-weight: 600;
  color: var(--orange);
  text-decoration: none;
}

/* BUTTON */
.news-btn-wrap{
  margin-top: 40px;
}

.read-more{
  display:inline-flex;
  align-items:center;
  gap:8px;
  margin-top:14px;
  color:#f4a300;
  font-weight:600;
  transition:0.3s;
}

.read-more:hover{
  gap:12px;
}

/* RESPONSIVE */
@media (max-width: 992px){
  .news-grid{
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px){
  .news-grid{
    grid-template-columns: 1fr;
  }

  .news-section{
    padding: 60px 18px;
  }
}

.cta-section{
  padding:40px 20px;
  background:#f8f8f8;
}

.cta-container{
  max-width:1200px;
  margin:auto;
}

.cta-content{
  position:relative;
  overflow:hidden;
  background:linear-gradient(135deg,#111827,#1f2937);
  border-radius:32px;
  padding:70px 50px;
  text-align:center;
  color:#fff;
  box-shadow:0 25px 60px rgba(0,0,0,0.12);
}

/* Glow Effect */

.cta-content::before{
  content:'';
  position:absolute;
  width:350px;
  height:350px;
  background:rgba(244,163,0,0.18);
  border-radius:50%;
  top:-120px;
  right:-100px;
  filter:blur(20px);
}

.cta-badge{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:10px 18px;
  border-radius:999px;
  background:rgba(255,255,255,0.08);
  border:1px solid rgba(255,255,255,0.1);
  font-size:15px;
  font-weight:600;
  margin-bottom:24px;
}

.cta-content h2{
  font-size:54px;
  line-height:1.2;
  font-weight:800;
  max-width:900px;
  margin:auto;
  margin-bottom:24px;
}

.cta-content h2 span{
  color:#f4a300;
}

.cta-content p{
  max-width:760px;
  margin:auto;
  font-size:21px;
  line-height:1.7;
  color:#d1d5db;
  margin-bottom:40px;
}

.cta-buttons{
  display:flex;
  justify-content:center;
  gap:20px;
  flex-wrap:wrap;
}

.cta-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:12px;
  padding:18px 34px;
  border-radius:18px;
  font-size:17px;
  font-weight:600;
  transition:0.3s;
}

.whatsapp-btn{
    text-decoration: none;
  background:#25D366;
  color:#fff;
  box-shadow:0 15px 35px rgba(37,211,102,0.22);
}

.call-btn{
 text-decoration: none;
  background:#f4a300;
  color:#fff;
  box-shadow:0 15px 35px rgba(244,163,0,0.22);
}

.cta-btn:hover{
  transform:translateY(-4px);
}

/* Responsive */

@media(max-width:768px){

  .cta-content{
    padding:50px 24px;
  }

  .cta-content h2{
    font-size:34px;
  }

  .cta-content p{
    font-size:17px;
  }

  .cta-btn{
    width:100%;
  }

}
.tc-footer {
      background: #ffffff;
      padding: 50px 20px 30px;
      position: relative;
      overflow: hidden;
       border-top: 1px solid #e5e5e5;
    }
    .tc-footer-container {
      max-width: 1310px;
      margin: auto;
      display: grid;
      grid-template-columns: 1.2fr 1fr 1fr 1.2fr;
      gap: 60px;
      padding-bottom: 50px;
      border-bottom: 1px solid #d9dee7;
    }

    /* LOGO */
    .tc-footer-logo {
      display: flex;
      align-items: center;
      gap: 14px;
      margin-bottom: 24px;
    }

    .tc-footer-logo-icon {
      width: 44px;
      height: 44px;
      border-radius: 50%;
      background: #f4a300;
      color: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 28px;
      font-weight: 700;
      flex-shrink: 0;
    }

    .tc-footer-logo-text h2 {
      font-size: 17px;
      color: #142033;
      font-weight: 700;
      line-height: 1.2;
    }

    .tc-footer-logo-text p {
      color: #6b7280;
      font-size: 13px;
      margin-top: 2px;
    }

    .tc-footer-desc {
      color: #64748b;
      line-height: 1.9;
      font-size: 15px;
      margin-bottom: 28px;
      max-width: 300px;
      margin-left: 10px;
    }

    /* SOCIAL */
    .tc-footer-social {
      display: flex;
      gap: 12px;
    }

    .tc-footer-social a {
      width: 44px;
      height: 44px;
      border-radius: 12px;
      border: 1px solid #d9dee7;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #111827;
      background: #fff;
      font-size: 16px;
      transition: all 0.3s;
      text-decoration: none;
    }

    .tc-footer-social a:hover {
      background: #f4a300;
      color: #fff;
      border-color: #f4a300;
      transform: translateY(-4px);
    }

    /* LINKS */
    .tc-footer-links h3,
    .tc-footer-contact h3 {
      font-size: 20px;
      margin-bottom: 24px;
      color: #111827;
      font-weight: 700;
    }

    .tc-footer-links ul {
      list-style: none;
    }

    .tc-footer-links ul li {
      margin-bottom: 14px;
    }

    .tc-footer-links ul li a {
      color: #64748b;
      transition: all 0.3s;
      font-size: 15px;
      text-decoration: none;
    }

    .tc-footer-links ul li a:hover {
      color: #f4a300;
      padding-left: 4px;
    }

    /* CONTACT */
    .tc-contact-item {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      margin-bottom: 18px;
    }

    .tc-contact-item i {
      color: #f4a300;
      margin-top: 3px;
      font-size: 15px;
      flex-shrink: 0;
    }

    .tc-contact-item span {
      color: #64748b;
      line-height: 1.8;
      font-size: 15px;
    }

    /* SUBSCRIBE */
    .tc-subscribe {
      margin-top: 24px;
    }

    .tc-subscribe h4 {
      font-size: 17px;
      margin-bottom: 14px;
      color: #111827;
      font-weight: 600;
    }

    .tc-subscribe-form {
      display: flex;
      gap: 10px;
    }

    .tc-subscribe-form input {
      flex: 1;
      height: 50px;
      border-radius: 14px;
      border: 1px solid #d9dee7;
      padding: 0 16px;
      outline: none;
      font-size: 14px;
      background: #fff;
      font-family: "DM Sans", sans-serif;
      transition: border-color 0.25s;
    }

    .tc-subscribe-form input:focus {
      border-color: #f4a300;
    }

    .tc-subscribe-form button {
      border: none;
      padding: 0 22px;
      border-radius: 14px;
      background: #f4a300;
      color: #fff;
      font-weight: 600;
      font-family: "Poppins", sans-serif;
      font-size: 14px;
      cursor: pointer;
      transition: all 0.3s;
      white-space: nowrap;
    }

    .tc-subscribe-form button:hover {
      background: #e09010;
      transform: translateY(-2px);
      box-shadow: 0 6px 16px rgba(244,163,0,0.35);
    }

    /* BOTTOM */
    .tc-footer-bottom {
      max-width: 1320px;
      margin: auto;
      padding-top: 28px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 20px;
      flex-wrap: wrap;
    }

    .tc-footer-bottom p {
      color: #64748b;
      font-size: 15px;
    }

    .tc-footer-policy {
      display: flex;
      gap: 28px;
      flex-wrap: wrap;
    }

    .tc-footer-policy a {
      color: #64748b;
      transition: 0.3s;
      font-size: 14px;
      text-decoration: none;
    }

    .tc-footer-policy a:hover {
      color: #f4a300;
    }

    /* SCROLL TOP */

    /* ─── RESPONSIVE ─── */
    @media (max-width: 1100px) {
      .tc-footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
      }
    }

    @media (max-width: 768px) {
      .tc-footer {
        padding-top: 70px;
      }

      .tc-footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
      }

      .tc-footer-links h3,
      .tc-footer-contact h3 {
        font-size: 18px;
      }

      .tc-subscribe-form {
        flex-direction: column;
      }

      .tc-subscribe-form button {
        height: 50px;
      }

      .tc-footer-bottom {
        flex-direction: column;
        align-items: flex-start;
      }

      .tc-scroll-top {
        left: auto;
        right: 20px;
        bottom: 20px;
      }
    }
    
    /* =========================
   SCROLL PROGRESS BAR
========================= */

.scroll-progress{
  position:fixed;
  top:0;
  left:0;
  width:0%;
  height:5px;
  background:linear-gradient(90deg,#f4a300,#ffbf47);
  z-index:99999;
  transition:width 0.1s linear;
  box-shadow:0 2px 12px rgba(244,163,0,0.45);
}

/* =========================
   WHATSAPP FIXED ICON
========================= */

.whatsapp-fixed{
  position:fixed;
  right:20px;
  bottom:20px;
  width:50px;
  height:50px;
  text-decoration: none;
  border-radius:50%;
  background:#25D366;
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:28px;
  z-index:9999;
  box-shadow:0 10px 25px rgba(37,211,102,0.3);
  transition:0.3s;
}

.whatsapp-fixed:hover{
  transform:translateY(-5px) scale(1.05);
}

/* =========================
   SCROLL TOP BUTTON
========================= */

.scroll-top-btn{
  position:fixed;
  left:20px;
  bottom:20px;
  width:48px;
  height:48px;
  border:none;
  border-radius:50%;
  background:#f4a300;
  color:#fff;
  font-size:20px;
  cursor:pointer;
  z-index:9999;
  box-shadow:0 10px 25px rgba(244,163,0,0.3);
  transition:0.3s;
}

.scroll-top-btn:hover{
  transform:translateY(-5px);
}

/* Mobile */

@media(max-width:768px){
    
    body{
        padding: 0px;
    }

  .whatsapp-fixed,
  .scroll-top-btn{
    width:54px;
    height:54px;
    font-size:24px;
    bottom:16px;
  }

  .whatsapp-fixed{
    right:16px;
  }

  .scroll-top-btn{
    left:16px;
  }

}

  .tc-courses-page {
    padding: 70px 48px 80px;
    background: #fff;
  }

  /* Section Header */
  .tc-courses-header {
    text-align: center;
    margin-bottom: 40px;
  }

  .tc-courses-header h1 {
    font-family: "DM Sans", sans-serif;
    font-size: 42px;
    font-weight: 800;
    color: #1C1C1C;
    margin-bottom: 12px;
  }

  .tc-courses-header p {
    font-family: "DM Sans", sans-serif;
    font-size: 16px;
    color: #666;
    max-width: 460px;
    margin: 0 auto;
    line-height: 1.6;
  }

  /* Filter Tabs */
  .tc-filter-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 40px;
  }

  .tc-filter-btn {
    padding: 9px 22px;
    border-radius: 50px;
    border: 1.5px solid #ddd;
    background: #fff;
    font-family: "DM Sans", sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #444;
    cursor: pointer;
    transition: all 0.25s;
  }

  .tc-filter-btn:hover {
    border-color: #F5A623;
    color: #F5A623;
  }

  .tc-filter-btn.tc-active {
    background: #F5A623;
    border-color: #F5A623;
    color: #fff;
    font-weight: 600;
  }

  /* Cards Grid */
  .tc-courses-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 70px;
  }

  /* Course Card */
  .tc-course-card {
    border: 1.5px solid #e8e8e8;
    border-radius: 18px;
    overflow: hidden;
    background: #fff;
    transition: all 0.28s cubic-bezier(.4,0,.2,1);
    display: flex;
    flex-direction: column;
  }

  .tc-course-card:hover {
    border-color: #F5A623;
    box-shadow: 0 12px 40px rgba(245,166,35,.15);
    transform: translateY(-4px);
  }

  /* Card Image Area */
  .tc-card-img {
    background: #f0f4f8;
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .tc-card-img i {
    font-size: 56px;
    color: #F5A623;
  }

  /* Card Body */
  .tc-card-body {
    padding: 20px 22px 22px;
    display: flex;
    flex-direction: column;
    flex: 1;
  }

  /* Tags Row */
  .tc-card-tags {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
  }

  .tc-cat-tag {
    font-family: "DM Sans", sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: #555;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  .tc-mode-tag {
    font-family: "DM Sans", sans-serif;
    font-size: 12px;
    font-weight: 500;
    color: #444;
    border: 1.5px solid #ddd;
    border-radius: 50px;
    padding: 3px 12px;
    background: #fff;
  }

  /* Title */
  .tc-card-title {
    font-family: "DM Sans", sans-serif;
    font-size: 18px;
    font-weight: 800;
    color: #1C1C1C;
    margin-bottom: 4px;
  }

  .tc-card-duration {
    font-family: "DM Sans", sans-serif;
    font-size: 13px;
    color: #888;
    margin-bottom: 14px;
  }

  /* Batch */
  .tc-card-batch {
    display: flex;
    align-items: center;
    gap: 7px;
    font-family: "DM Sans", sans-serif;
    font-size: 13px;
    color: #F5A623;
    font-weight: 500;
    margin-bottom: 14px;
  }

  /* Features */
  .tc-card-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
    flex: 1;
  }

  .tc-card-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: "DM Sans", sans-serif;
    font-size: 13.5px;
    color: #444;
  }

  .tc-card-features li i {
    color: #F5A623;
    font-size: 14px;
    flex-shrink: 0;
  }

  /* Card Bottom */
  .tc-card-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid #f0f0f0;
  }

  .tc-card-price {
    font-family: "DM Sans", sans-serif;
    font-size: 24px;
    font-weight: 800;
    color: #F5A623;
  }

  .tc-enroll-btn {
    padding: 10px 24px;
    background: #F5A623;
    border: none;
    border-radius: 50px;
    font-family: "Poppins", sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    cursor: pointer;
    transition: all 0.22s;
  }

  .tc-enroll-btn:hover {
    background: #e09010;
    box-shadow: 0 6px 18px rgba(245,166,35,.4);
    transform: translateY(-1px);
  }

  /* Hidden state */
  .tc-course-card.tc-hidden {
    display: none;
  }

  /* ───────── COMPARISON TABLE ───────── */
  .tc-comparison-section {
    padding: 0 0 30px;
  }

  .tc-comparison-section h2 {
    font-family: "DM Sans", sans-serif;
    font-size: 34px;
    font-weight: 800;
    color: #1C1C1C;
    text-align: center;
    margin-bottom: 32px;
  }

  .tc-comparison-wrap {
    overflow-x: auto;
    border-radius: 16px;
    border: 1.5px solid #e8e8e8;
  }

  .tc-comparison-table {
    width: 100%;
    border-collapse: collapse;
    font-family: "DM Sans", sans-serif;
  }

  .tc-comparison-table thead tr {
    background: #fafafa;
    border-bottom: 1.5px solid #e8e8e8;
  }

  .tc-comparison-table thead th {
    padding: 16px 24px;
    text-align: left;
    font-size: 13px;
    font-weight: 600;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
  }

  .tc-comparison-table tbody tr {
    border-bottom: 1px solid #f0f0f0;
    transition: background 0.2s;
  }

  .tc-comparison-table tbody tr:last-child {
    border-bottom: none;
  }

  .tc-comparison-table tbody tr:hover {
    background: #fffaf2;
  }

  .tc-comparison-table tbody td {
    padding: 16px 24px;
    font-size: 14.5px;
    color: #444;
    white-space: nowrap;
  }

  .tc-comparison-table tbody td:first-child {
    font-weight: 700;
    color: #1C1C1C;
  }

  .tc-mode-pill {
    display: inline-block;
    padding: 4px 14px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
  }

  .tc-mode-pill.hybrid  { background: rgba(245,166,35,0.12); color: #d68e00; }
  .tc-mode-pill.online  { background: rgba(34,197,94,0.12);  color: #16a34a; }
  .tc-mode-pill.offline { background: rgba(99,102,241,0.12); color: #4f46e5; }

  .tc-fee-col {
    font-weight: 700;
    color: #F5A623;
    font-size: 15px;
  }

  /* ───────── RESPONSIVE ───────── */
  @media (max-width: 992px) {
    .tc-courses-page { padding: 60px 24px 70px; }
    .tc-courses-grid { grid-template-columns: repeat(2, 1fr); }
  }

  @media (max-width: 640px) {
    .tc-courses-page { padding: 50px 16px 60px; }
    .tc-courses-grid { grid-template-columns: 1fr; }
    .tc-courses-header h1 { font-size: 32px; }
  }
  
   .ts-section {
    padding: 70px 48px 80px;
    background: #fff;
    font-family: "DM Sans", sans-serif;
  }

  /* Header */
  .ts-header {
    text-align: center;
    margin-bottom: 36px;
  }

  .ts-header h1 {
    font-size: 42px;
    font-weight: 800;
    color: #1C1C1C;
    margin-bottom: 12px;
  }

  .ts-header p {
    font-size: 15px;
    color: #666;
    max-width: 460px;
    margin: 0 auto;
    line-height: 1.6;
  }

  /* Category Filter */
  .ts-cat-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 20px;
  }

  .ts-cat-btn {
    padding: 8px 22px;
    border-radius: 50px;
    border: 1.5px solid #ddd;
    background: #fff;
    font-family: "DM Sans", sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #444;
    cursor: pointer;
    transition: all 0.22s;
  }

  .ts-cat-btn:hover { border-color: #F5A623; color: #F5A623; }
  .ts-cat-btn.ts-cat-active {
    background: #F5A623;
    border-color: #F5A623;
    color: #fff;
    font-weight: 600;
  }

  /* Free / Paid Toggle */
  .ts-toggle-wrap {
    display: flex;
    justify-content: center;
    margin-bottom: 36px;
  }

  .ts-toggle {
    display: flex;
    background: #f4f4f4;
    border-radius: 50px;
    padding: 5px;
    gap: 4px;
  }

  .ts-toggle-btn {
    padding: 9px 38px;
    border-radius: 50px;
    border: none;
    font-family: "DM Sans", sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #666;
    background: transparent;
    cursor: pointer;
    transition: all 0.22s;
  }

  .ts-toggle-btn.ts-toggle-active {
    background: #fff;
    color: #1C1C1C;
    font-weight: 700;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
  }

  /* Cards Grid */
  .ts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-bottom: 80px;
  }

  /* Card */
  .ts-card {
    border: 1.5px solid #e8e8e8;
    border-radius: 16px;
    padding: 20px 20px 18px;
    background: #fff;
    transition: all 0.25s cubic-bezier(.4,0,.2,1);
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .ts-card:hover {
    border-color: #F5A623;
    box-shadow: 0 10px 34px rgba(245,166,35,0.13);
    transform: translateY(-3px);
  }

  /* Card Top Row */
  .ts-card-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
  }

  .ts-subject-tag {
    font-size: 12px;
    font-weight: 600;
    color: #555;
    text-transform: uppercase;
    letter-spacing: 0.4px;
  }

  .ts-diff-badge {
    font-size: 11.5px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 50px;
  }

  .ts-diff-badge.easy   { background: rgba(34,197,94,0.12);  color: #16a34a; }
  .ts-diff-badge.medium { background: rgba(245,166,35,0.15); color: #d68e00; }
  .ts-diff-badge.hard   { background: rgba(239,68,68,0.12);  color: #dc2626; }

  /* Card Title */
  .ts-card-title {
    font-size: 18px;
    font-weight: 800;
    color: #1C1C1C;
    margin-bottom: 14px;
  }

  /* Meta Info */
  .ts-card-meta {
    display: flex;
    flex-direction: column;
    gap: 7px;
    margin-bottom: 16px;
  }

  .ts-meta-row {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13.5px;
    color: #555;
  }

  .ts-meta-row i {
    color: #F5A623;
    font-size: 14px;
    width: 16px;
    text-align: center;
    flex-shrink: 0;
  }

  /* Price (paid only) */
  .ts-card-price {
    display: none;
    align-items: center;
    gap: 8px;
    font-size: 20px;
    font-weight: 800;
    color: #F5A623;
    margin-bottom: 14px;
  }

  .ts-card-price.ts-show { display: flex; }

  .ts-price-original {
    font-size: 14px;
    color: #aaa;
    text-decoration: line-through;
    font-weight: 400;
  }

  /* Start Button */
  .ts-start-btn {
    width: 100%;
    padding: 12px 0;
    border: none;
    border-radius: 50px;
    background: #F5A623;
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    cursor: pointer;
    transition: all 0.22s;
    margin-top: auto;
  }

  .ts-start-btn:hover {
    background: #e09010;
    box-shadow: 0 6px 18px rgba(245,166,35,.38);
    transform: translateY(-1px);
  }

  /* Hidden */
  .ts-card.ts-hidden { display: none; }

  /* ───────── LEADERBOARD ───────── */
  .ts-leaderboard {
    text-align: center;
    padding-top: 20px;
  }

  .ts-lb-icon {
    font-size: 42px;
    color: #F5A623;
    margin-bottom: 10px;
  }

  .ts-leaderboard h2 {
    font-size: 34px;
    font-weight: 800;
    color: #1C1C1C;
    margin-bottom: 8px;
  }

  .ts-leaderboard > p {
    font-size: 15px;
    color: #666;
    margin-bottom: 32px;
  }

  /* Table Wrap */
  .ts-lb-wrap {
    border: 1.5px solid #e8e8e8;
    border-radius: 16px;
    overflow: hidden;
    max-width: 780px;
    margin: 0 auto;
  }

  .ts-lb-table {
    width: 100%;
    border-collapse: collapse;
  }

  .ts-lb-table thead tr {
    background: #fafafa;
    border-bottom: 1.5px solid #e8e8e8;
  }

  .ts-lb-table thead th {
    padding: 14px 24px;
    text-align: left;
    font-size: 12.5px;
    font-weight: 600;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  .ts-lb-table tbody tr {
    border-bottom: 1px solid #f0f0f0;
    transition: background 0.18s;
  }

  .ts-lb-table tbody tr:last-child { border-bottom: none; }

  .ts-lb-table tbody tr:hover { background: #fffaf2; }

  .ts-lb-table tbody td {
    padding: 14px 24px;
    font-size: 14.5px;
    color: #444;
  }

  .ts-lb-table tbody td:first-child {
    font-weight: 700;
    color: #1C1C1C;
  }

  /* Rank medals */
  .ts-rank-cell {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    color: #1C1C1C;
    font-size: 14.5px;
  }

  .ts-rank-cell .ts-medal {
    font-size: 17px;
  }

  .ts-score-col {
    font-weight: 700;
    color: #1C1C1C;
  }

  /* ───────── RESPONSIVE ───────── */
  @media (max-width: 992px) {
    .ts-section { padding: 60px 24px 70px; }
    .ts-grid { grid-template-columns: repeat(2, 1fr); }
  }

  @media (max-width: 640px) {
    .ts-section { padding: 50px 16px 60px; }
    .ts-grid { grid-template-columns: 1fr; }
    .ts-header h1 { font-size: 32px; }
    .ts-leaderboard h2 { font-size: 26px; }
    .ts-lb-table thead th,
    .ts-lb-table tbody td { padding: 12px 14px; font-size: 13px; }
  }
  
  .sl-section {
    padding: 70px 48px 80px;
    background: #fff;
    font-family: "DM Sans", sans-serif;
  }

  /* ── Header ── */
  .sl-header {
    text-align: center;
    margin-bottom: 50px;
  }

  .sl-header-icon {
    font-size: 52px;
    color: #F5A623;
    margin-bottom: 14px;
  }

  .sl-header h1 {
    font-size: 44px;
    font-weight: 800;
    color: #1C1C1C;
    margin-bottom: 12px;
  }

  .sl-header p {
    font-size: 16px;
    color: #666;
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.6;
  }

  /* ── Stats Row ── */
  .sl-stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 52px;
  }

  .sl-stat-card {
    background: #fff8ee;
    border-radius: 20px;
    padding: 38px 24px;
    text-align: center;
    transition: transform 0.25s, box-shadow 0.25s;
  }

  .sl-stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 32px rgba(245,166,35,0.15);
  }

  .sl-stat-num {
    font-size: 52px;
    font-weight: 800;
    color: #F5A623;
    line-height: 1;
    margin-bottom: 10px;
    display: block;
  }

  .sl-stat-label {
    font-size: 15px;
    color: #555;
    font-weight: 500;
  }

  /* ── Filters ── */
  .sl-filters {
    display: flex;
    align-items: center;
    gap: 28px;
    flex-wrap: wrap;
    margin-bottom: 36px;
  }

  .sl-filter-group {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
  }

  .sl-filter-label {
    font-size: 14px;
    font-weight: 600;
    color: #555;
    white-space: nowrap;
  }

  .sl-filter-btn {
    padding: 7px 18px;
    border-radius: 50px;
    border: 1.5px solid #ddd;
    background: #fff;
    font-family: "DM Sans", sans-serif;
    font-size: 13.5px;
    font-weight: 500;
    color: #444;
    cursor: pointer;
    transition: all 0.22s;
  }

  .sl-filter-btn:hover {
    border-color: #F5A623;
    color: #F5A623;
  }

  .sl-filter-btn.sl-active {
    background: #F5A623;
    border-color: #F5A623;
    color: #fff;
    font-weight: 600;
  }

  /* ── Cards Grid ── */
  .sl-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
  }

  /* ── Student Card ── */
  .sl-card {
    border: 1.5px solid #e8e8e8;
    border-radius: 18px;
    padding: 28px 20px 24px;
    background: #fff;
    text-align: center;
    transition: all 0.26s cubic-bezier(.4,0,.2,1);
  }

  .sl-card:hover {
    border-color: #F5A623;
    box-shadow: 0 10px 34px rgba(245,166,35,0.13);
    transform: translateY(-4px);
  }

  .sl-card.sl-hidden { display: none; }

  /* Avatar */
  .sl-avatar {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: #eef2f7;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    font-size: 36px;
    color: #F5A623;
  }

  /* Name */
  .sl-card-name {
    font-size: 17px;
    font-weight: 800;
    color: #1C1C1C;
    margin-bottom: 8px;
  }

  /* Stars */
  .sl-stars {
    color: #F5A623;
    font-size: 14px;
    margin-bottom: 14px;
    letter-spacing: 2px;
  }

  /* Rank badge */
  .sl-rank-badge {
    display: inline-block;
    padding: 5px 16px;
    border-radius: 50px;
    border: 1.5px solid #F5A623;
    color: #c87e00;
    font-size: 12.5px;
    font-weight: 700;
    margin-bottom: 6px;
  }

  /* Roll */
  .sl-roll {
    font-size: 13px;
    color: #888;
    margin-bottom: 12px;
  }

  /* Exam pill */
  .sl-exam-pill {
    display: inline-block;
    padding: 6px 18px;
    border-radius: 50px;
    background: #F5A623;
    color: #fff;
    font-size: 12.5px;
    font-weight: 700;
    margin-bottom: 16px;
  }

  /* Quote */
  .sl-quote {
    font-size: 13px;
    color: #666;
    line-height: 1.6;
    font-style: italic;
  }

  /* ── Responsive ── */
  @media (max-width: 1100px) {
    .sl-grid { grid-template-columns: repeat(3, 1fr); }
  }

  @media (max-width: 992px) {
    .sl-section { padding: 60px 24px 70px; }
    .sl-stats-row { grid-template-columns: repeat(3, 1fr); }
    .sl-grid { grid-template-columns: repeat(2, 1fr); }
  }

  @media (max-width: 640px) {
    .sl-section { padding: 50px 16px 60px; }
    .sl-header h1 { font-size: 32px; }
    .sl-stats-row { grid-template-columns: 1fr; }
    .sl-grid { grid-template-columns: repeat(2, 1fr); }
    .sl-stat-num { font-size: 40px; }
  }

  @media (max-width: 420px) {
    .sl-grid { grid-template-columns: 1fr; }
  }
  
   .op-section {
    padding: 70px 48px 80px;
    background: #fff;
    font-family: "DM Sans", sans-serif;
  }

  /* Header */
  .op-header {
    text-align: center;
    margin-bottom: 52px;
  }

  .op-header h1 {
    font-size: 44px;
    font-weight: 800;
    color: #1C1C1C;
    margin-bottom: 14px;
    letter-spacing: -0.5px;
  }

  .op-header p {
    font-size: 16px;
    color: #666;
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.65;
  }

  /* Grid */
  .op-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
  }

  /* Card */
  .op-card {
    border: 1.5px solid #e8e8e8;
    border-radius: 20px;
    overflow: hidden;
    background: #fff;
    transition: all 0.28s cubic-bezier(.4,0,.2,1);
    display: flex;
    flex-direction: column;
  }

  .op-card:hover {
    border-color: #F5A623;
    box-shadow: 0 14px 42px rgba(245,166,35,0.14);
    transform: translateY(-5px);
  }

  /* Card Image / Icon Area */
  .op-card-thumb {
    background: #eef2f7;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.28s;
  }

  .op-card:hover .op-card-thumb {
    background: #e4ecf5;
  }

  .op-card-thumb i {
    font-size: 58px;
    color: #F5A623;
  }

  /* Card Body */
  .op-card-body {
    padding: 22px 24px 26px;
    display: flex;
    flex-direction: column;
    flex: 1;
  }

  /* Category tag */
  .op-cat-tag {
    display: inline-block;
    padding: 5px 14px;
    border-radius: 50px;
    border: 1.5px solid #ddd;
    font-size: 12px;
    font-weight: 600;
    color: #444;
    background: #fff;
    margin-bottom: 14px;
    width: fit-content;
  }

  /* Title */
  .op-card-title {
    font-size: 20px;
    font-weight: 800;
    color: #1C1C1C;
    margin-bottom: 8px;
    line-height: 1.3;
  }

  /* Description */
  .op-card-desc {
    font-size: 14px;
    color: #666;
    line-height: 1.65;
    margin-bottom: 20px;
    flex: 1;
  }

  /* Price */
  .op-card-price {
    font-size: 28px;
    font-weight: 800;
    color: #F5A623;
    margin-bottom: 18px;
    letter-spacing: -0.5px;
  }

  /* Buy Now Button */
  .op-buy-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 14px 0;
    border: none;
    border-radius: 50px;
    background: #F5A623;
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    cursor: pointer;
    transition: all 0.22s;
  }

  .op-buy-btn:hover {
    background: #e09010;
    box-shadow: 0 8px 22px rgba(245,166,35,0.38);
    transform: translateY(-1px);
  }

  .op-buy-btn i {
    font-size: 15px;
  }

  /* ── Responsive ── */
  @media (max-width: 992px) {
    .op-section { padding: 60px 24px 70px; }
    .op-grid { grid-template-columns: repeat(2, 1fr); }
  }

  @media (max-width: 600px) {
    .op-section { padding: 50px 16px 60px; }
    .op-header h1 { font-size: 32px; }
    .op-grid { grid-template-columns: 1fr; }
    .op-card-thumb { height: 170px; }
  }
  
   .ab-section {
    font-family: "DM Sans", sans-serif;
    background: #fff;
    color: #1C1C1C;
  }

  /* ── Page Header ── */
  .ab-page-header {
    text-align: center;
    padding: 64px 48px 48px;
  }

  .ab-page-header h1 {
    font-size: 46px;
    font-weight: 800;
    color: #1C1C1C;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
  }

  .ab-page-header p {
    font-size: 16px;
    color: #777;
  }

  /* ── Our Story ── */
  .ab-story {
    display: flex;
    align-items: center;
    gap: 60px;
    padding: 0 48px 72px;
  }

  .ab-story-left {
    flex: 1.1;
  }

  .ab-story-left h2 {
    font-size: 30px;
    font-weight: 800;
    margin-bottom: 20px;
    color: #1C1C1C;
  }

  .ab-story-left p {
    font-size: 15px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 16px;
  }

  .ab-story-left p:last-child { margin-bottom: 0; }

  .ab-story-right {
    flex: 0.9;
    background: #eef2f7;
    border-radius: 22px;
    min-height: 360px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .ab-story-right i {
    font-size: 90px;
    color: #F5A623;
  }

  /* ── Mission / Vision / Values / Approach ── */
  .ab-pillars {
    padding: 0 48px 72px;
  }

  .ab-pillars-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
  }

  .ab-pillar-card {
    border: 1.5px solid #e8e8e8;
    border-radius: 18px;
    padding: 36px 24px 32px;
    text-align: center;
    background: #fff;
    transition: all 0.26s cubic-bezier(.4,0,.2,1);
  }

  .ab-pillar-card:hover {
    border-color: #F5A623;
    box-shadow: 0 10px 32px rgba(245,166,35,0.13);
    transform: translateY(-4px);
  }

  .ab-pillar-icon-wrap {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: #fff8ee;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 30px;
    color: #F5A623;
  }

  .ab-pillar-card h3 {
    font-size: 17px;
    font-weight: 800;
    color: #1C1C1C;
    margin-bottom: 14px;
  }

  .ab-pillar-card p {
    font-size: 13.5px;
    color: #666;
    line-height: 1.65;
  }

  /* ── Our Expert Faculty ── */
  .ab-faculty {
    padding: 0 48px 80px;
  }

  .ab-faculty-title {
    font-size: 34px;
    font-weight: 800;
    color: #1C1C1C;
    text-align: center;
    margin-bottom: 40px;
    letter-spacing: -0.3px;
  }

  .ab-faculty-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
  }

  /* Faculty Card */
  .ab-faculty-card {
    border: 1.5px solid #e8e8e8;
    border-radius: 18px;
    padding: 32px 24px 28px;
    background: #fff;
    text-align: center;
    transition: all 0.26s cubic-bezier(.4,0,.2,1);
  }

  .ab-faculty-card:hover {
    border-color: #F5A623;
    box-shadow: 0 10px 32px rgba(245,166,35,0.12);
    transform: translateY(-4px);
  }

  .ab-faculty-avatar {
    width: 86px;
    height: 86px;
    border-radius: 50%;
    background: #eef2f7;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    font-size: 34px;
    color: #F5A623;
  }

  .ab-faculty-name {
    font-size: 18px;
    font-weight: 800;
    color: #1C1C1C;
    margin-bottom: 8px;
  }

  .ab-faculty-qual {
    font-size: 13.5px;
    font-weight: 600;
    color: #F5A623;
    margin-bottom: 6px;
  }

  .ab-faculty-subject {
    font-size: 13.5px;
    color: #444;
    margin-bottom: 6px;
  }

  .ab-faculty-exp {
    font-size: 13px;
    color: #888;
  }

  /* ── Responsive ── */
  @media (max-width: 1100px) {
    .ab-pillars-grid { grid-template-columns: repeat(2, 1fr); }
  }

  @media (max-width: 992px) {
    .ab-page-header { padding: 50px 24px 36px; }
    .ab-story { flex-direction: column; gap: 36px; padding: 0 24px 56px; }
    .ab-story-right { width: 100%; min-height: 260px; }
    .ab-pillars { padding: 0 24px 56px; }
    .ab-faculty { padding: 0 24px 70px; }
    .ab-faculty-grid { grid-template-columns: repeat(2, 1fr); }
  }

  @media (max-width: 640px) {
    .ab-page-header { padding: 40px 16px 28px; }
    .ab-page-header h1 { font-size: 32px; }
    .ab-story { padding: 0 16px 48px; }
    .ab-pillars { padding: 0 16px 48px; }
    .ab-pillars-grid { grid-template-columns: 1fr; }
    .ab-faculty { padding: 0 16px 60px; }
    .ab-faculty-grid { grid-template-columns: 1fr; }
    .ab-faculty-title { font-size: 26px; }
  }
  
  .tc-contact-modern{
  padding: 60px 20px;
  background: #fff;
  font-family: Arial, sans-serif;
}

.tc-contact-container{
  display: flex;
  gap: 25px;
  max-width: 1200px;
  margin: auto;
}

/* LEFT SIDE */
.tc-contact-info{
  flex: 1;
  background: #fff7f0;
  padding: 25px;
  border-radius: 15px;
  border: 1px solid #ffd3b3;
}

.tc-contact-info h2{
  color: #ff6a00;
  margin-bottom: 5px;
}

.tc-subtext{
  color: #555;
  margin-bottom: 15px;
}

.tc-card{
  display: flex;
  gap: 12px;
  background: #fff;
  padding: 12px;
  border-radius: 10px;
  border-left: 4px solid #ff6a00;
  margin-bottom: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.tc-card span{
  font-size: 20px;
}

/* MAP */
.tc-map{
  margin-top: 15px;
  border-radius: 12px;
  overflow: hidden;
  border: 2px solid #ff6a00;
}

.tc-map iframe{
  width: 100%;
  height: 220px;
  border: 0;
}

/* RIGHT SIDE */
.tc-contact-form-box{
  flex: 1;
  background: #ffffff;
  padding: 25px;
  border-radius: 15px;
  border: 1px solid #ffd3b3;
}

.tc-contact-form-box h2{
  color: #ff6a00;
  margin-bottom: 15px;
}

.tc-contact-form-box form{
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.tc-contact-form-box input,
.tc-contact-form-box select,
.tc-contact-form-box textarea{
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 8px;
  outline: none;
}

.tc-contact-form-box input:focus,
.tc-contact-form-box select:focus,
.tc-contact-form-box textarea:focus{
  border-color: #ff6a00;
}

.tc-contact-form-box button{
  background: #ff6a00;
  color: white;
  padding: 12px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 16px;
  transition: 0.3s;
}

.tc-contact-form-box button:hover{
  background: #e85f00;
}

/* RESPONSIVE */
@media (max-width: 768px){
  .tc-contact-container{
    flex-direction: column;
  }
}
  