*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --navy: #0b1f4f;
  --gold: #f5a623;
  --yellow: #ffd700;
  --red: #e63946;
  --white: #ffffff;
  --light-gray: #f4f6fb;
  --gray: #888;
  --dark: #111;
  --blue-light: #1a3a8a;
}

body {
     font-family: 'Oktah Neue', sans-serif;
  color: var(--dark);
  background: #fff;
  overflow-x: hidden;
}

/* RESET */

 .nav-wrapper {
      padding: 16px 40px;
      background: transparent;
    }

    /* ================= NAV (ORIGINAL) ================= */
    nav {
      max-width: 1400px;
      margin: auto;
      height: 70px;
      background: #0b1f4f;
      border-radius: 8px;
      padding: 0 28px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      position: relative;
    }

    /* LOGO */
    .logo {
      display: flex;
      align-items: center;
      gap: 10px;
      text-decoration: none;
    }

    .logo-box {
      width: 60px;
      height: 60px;
      background: #f5a623;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 800;
      font-size: 18px;
      border-radius: 12px;
      overflow: hidden;
    }

    .logo-box img {
      width: 100%;
      height: 100%;
      object-fit: contain;
      display: block;
    }

    .logo-text {
      color: #fff;
      font-weight: 700;
      font-size: 22px;
    }

    .logo-text span {
      color: #f5a623;
    }

    /* NAV LINKS */
    .nav-links {
      display: flex;
      gap: 28px;
      list-style: none;
    }

    .nav-links a {
      color: #cfd6ea;
      text-decoration: none;
      font-size: 14px;
      font-weight: 500;
      transition: 0.2s;
    }

    .nav-links a:hover {
      color: #fff;
    }

    /* RIGHT SIDE (DESKTOP ONLY - VISIBLE ON LARGE SCREENS) */
    .nav-right {
      display: flex;
      align-items: center;
      gap: 16px;
    }

    .call-btn {
      color: #f5a623;
      text-decoration: none;
      font-weight: 600;
      font-size: 14px;
      transition: 0.2s;
    }

    .call-btn:hover {
      color: #ffc857;
    }

    .login-btn {
      background: #f5a623;
      color: #0b1f4f;
      text-decoration: none;
      padding: 10px 18px;
      font-weight: 700;
      border-radius: 4px;
      transition: 0.2s;
      display: inline-flex;
      align-items: center;
      gap: 8px;
    }

    .login-btn:hover {
      background: #e8961a;
      transform: translateY(-1px);
    }

    /* ================= HAMBURGER (ORIGINAL) ================= */
    .hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      z-index: 1001;
    }

    .hamburger span {
      width: 26px;
      height: 3px;
      background: #fff;
      border-radius: 2px;
      transition: 0.3s;
    }

    .hamburger.active span:nth-child(1) {
      transform: rotate(45deg) translateY(8px);
    }

    .hamburger.active span:nth-child(2) {
      opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
      transform: rotate(-45deg) translateY(-8px);
    }

    /* ================= MOBILE ACTIONS (ONLY VISIBLE ON SMALL DEVICES) ================= */
    .mobile-actions {
      display: none;
      align-items: center;
      gap: 16px;
      z-index: 1001;
    }

    .mobile-login-btn {
      background: #f5a623;
      color: #0b1f4f;
      text-decoration: none;
      padding: 8px 16px;
      font-weight: 700;
      font-size: 13px;
      border-radius: 30px;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      transition: 0.2s;
      white-space: nowrap;
    }

    .mobile-login-btn i {
      font-size: 12px;
    }

    .mobile-login-btn:hover {
      background: #e8961a;
      transform: translateY(-1px);
    }

    /* ================= RESPONSIVE BREAKPOINT ================= */
    @media (max-width: 900px) {
      .nav-wrapper {
        padding: 12px 20px;
      }

      nav {
        padding: 0 20px;
      }

      /* HIDE DESKTOP nav-right COMPLETELY ON MOBILE */
      .nav-right {
        display: none !important;
      }

      /* SHOW MOBILE ACTIONS GROUP (LOGIN BUTTON + HAMBURGER) */
      .mobile-actions {
        display: flex !important;
      }

      .hamburger {
        display: flex !important;
      }

      /* Mobile menu dropdown */
      .nav-links {
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: #0b1f4f;
        flex-direction: column;
        align-items: center;
        gap: 18px;
        padding: 24px 0;
        transform: translateY(-120%);
        opacity: 0;
        pointer-events: none;
        transition: 0.35s ease;
        z-index: 1000;
        border-radius: 0 0 12px 12px;
        box-shadow: 0 20px 30px rgba(0, 0, 0, 0.2);
      }

      .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
      }

      .nav-links li a {
        font-size: 16px;
        padding: 6px 0;
        display: inline-block;
      }
    }

    /* Extra small devices - hide text on mobile login button if needed */
    @media (max-width: 480px) {
      .mobile-login-btn span {
        display: none;
      }
      .mobile-login-btn {
        padding: 8px 12px;
      }
      .mobile-login-btn i {
        margin: 0;
      }
      .logo-box {
        width: 48px;
        height: 48px;
      }
      .logo-text {
        font-size: 18px;
      }
      nav {
        height: 60px;
      }
      .nav-links {
        top: 60px;
      }
    }

    /* Desktop safe zone: ensure no duplicate login shows */
    @media (min-width: 901px) {
      .mobile-actions {
        display: none !important;
      }
      .nav-right {
        display: flex !important;
      }
    }


/* ================= HERO ================= */
.hero {
      max-width: 1400px;
      margin: auto;
      padding: 40px 20px 60px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 40px;
      flex-wrap: wrap;
    }

    /* LEFT */
    .hero-left {
      max-width: 520px;
      flex: 1;
    }

    .badge {
      background: #ffd700;
      padding: 6px 14px;
      font-size: 12px;
      font-weight: 600;
      display: inline-block;
      margin-bottom: 16px;
      border-radius: 4px;
    }

    .hero h1 {
      font-size: 48px;
      font-weight: 800;
      color: #0b1f4f;
      line-height: 1.2;
    }

    .hero p {
      margin: 14px 0 24px;
      color: #666;
      font-size: 16px;
    }

    /* BUTTONS */
    .btns {
      display: flex;
      gap: 14px;
      flex-wrap: wrap;
    }

    .primary {
      background: #f5a623;
      padding: 14px 26px;
      font-weight: 700;
      box-shadow: 5px 5px 0 #0b1f4f;
      border: none;
      cursor: pointer;
      transition: 0.2s;
      border-radius: 4px;
    }

    .primary:hover {
      transform: translate(-2px, -2px);
      box-shadow: 7px 7px 0 #0b1f4f;
    }

    .secondary {
      border: 2px solid #0b1f4f;
      padding: 12px 22px;
      background: transparent;
      font-weight: 600;
      cursor: pointer;
      transition: 0.2s;
      border-radius: 4px;
    }

    .secondary:hover {
      background: #0b1f4f;
      color: white;
    }

    /* STATS */
    .stats {
      margin-top: 22px;
      display: flex;
      gap: 26px;
      font-size: 14px;
      font-weight: 500;
      color: #0b1f4f;
    }

    /* ===== RIGHT CARD - FIXED: BIGGER CONTAINER, IMAGE NEVER CROPPED ===== */
    .hero-right {
      width: 520px;
      height: 360px;
      position: relative;
      overflow: hidden;
      border-radius: 20px;
      background: #eef2ff;
      flex-shrink: 0;
      box-shadow: 0 20px 35px rgba(0, 0, 0, 0.12);
    }

    /* ANGLED CUT SHAPE - PRESERVED ORIGINAL PATTERN */
    .hero-right::before {
      content: "";
      position: absolute;
      left: -70px;
      top: 0;
      width: 180px;
      height: 100%;
      background: #f4f6fb;
      transform: skewX(-25deg);
      z-index: 2;
      pointer-events: none;
    }

    /* MAIN BANNER IMAGE - COMPLETELY FIXED: NO CROPPING, FULL VISIBLE */
    .hero-right .main-banner-img {
      width: 100%;
      height: 100%;
      object-fit: contain;
      object-position: center;
      display: block;
      position: relative;
      z-index: 1;
      background: #f0f2f8;
    }

    /* BIHAR LOGO - POSITIONED LEFT (NOT CENTER) */
    .board-logo {
      position: absolute;
      top: 16px;
      left: 20px;
      transform: none;
      width: 80px;
      height: 80px;
      border-radius: 50%;
      background: white;
      padding: 5px;
      object-fit: contain;
      z-index: 12;
      box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
      border: 2px solid #ffd700;
    }

    /* TAG STICKER - PRESERVED */
    .tags {
      position: absolute;
      bottom: 16px;
      right: 16px;
      background: #0b1f4f;
      color: #fff;
      padding: 6px 14px;
      font-weight: 700;
      border-left: 4px solid #f5a623;
      z-index: 12;
      font-size: 13px;
      border-radius: 4px;
      letter-spacing: 0.5px;
    }

    /* Responsive adjustments */
    @media (max-width: 1050px) {
      .hero {
        flex-direction: column;
        text-align: center;
      }
      .hero-left {
        max-width: 100%;
        text-align: center;
      }
      .btns {
        justify-content: center;
      }
      .stats {
        justify-content: center;
      }
      .hero-right {
        width: 90%;
        max-width: 520px;
        height: auto;
        aspect-ratio: 520 / 360;
      }
    }

    @media (max-width: 550px) {
      .hero h1 {
        font-size: 36px;
      }
      .hero-right {
        width: 100%;
        aspect-ratio: 4 / 3;
      }
      .board-logo {
        width: 60px;
        height: 60px;
        top: 10px;
        left: 12px;
      }
      .tags {
        bottom: 10px;
        right: 10px;
        font-size: 11px;
        padding: 4px 10px;
      }
    }

/* ================= MOBILE ================= */
/* FIX HAMBURGER VISIBILITY */


/* ── SCHOLARSHIP BANNER ── */
.scholarship-banner {
  background: linear-gradient(90deg, #1a3a8a 0%, #0b1f4f 60%, #1a3a8a 100%);
  padding: 18px 48px;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
}

.scholarship-banner::after {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 200px;
  background: linear-gradient(90deg, transparent, rgba(245, 166, 35, 0.08));
}

.sc-logo {
  background: var(--gold);
  color: var(--navy);
  font-weight: 800;
  font-size: 13px;
  padding: 6px 14px;
  border-radius: 6px;
  white-space: nowrap;
}

.sc-logo span {
  font-size: 10px;
  font-weight: 500;
  display: block;
}

.sc-text {
  flex: 1;
}

.sc-text h3 {
  color: #fff;
  font-size: 17px;
  font-weight: 700;
}

.sc-text p {
  color: var(--gold);
  font-size: 12px;
  font-weight: 500;
}

.sc-right {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.sc-register {
  background: var(--gold);
  color: var(--navy);
  font-weight: 700;
  font-size: 12px;
  border: none;
  border-radius: 5px;
  padding: 7px 16px;
  cursor: pointer;
  transition: background .2s;
  white-space: nowrap;
}

.sc-register:hover {
  background: #e09a1e;
}

.sc-prizes {
  display: flex;
  gap: 8px;
}

.sc-prize {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.sc-contact {
  color: #a0b4d6;
  font-size: 11.5px;
  display: flex;
  gap: 16px;
}

.sc-contact span {
  display: flex;
  align-items: center;
  gap: 5px;
}

.sc-student-img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--gold);
}

.sc-dots {
  display: flex;
  gap: 5px;
  justify-content: center;
  padding: 10px 0 4px;
  background: var(--navy);
}

.sc-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: background .2s;
}

.sc-dot.active {
  background: var(--gold);
}


/* AUTO SLIDER */
/* FIX CROPPING + TOP SPACE */

/* FIX DOTS + BORDER RADIUS + SHADOW */

.slider-container {
  width: 100%;
  max-width: 1200px;
  margin: 20px auto 0;
  background: #fff;
  border-radius: 16px;
  /* more curved */
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  /* outer shadow */
}

.slider-track {
  position: relative;
  width: 100%;
  height: 320px;
  background: #fff;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center top;
  padding-top: 10px;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.slide.active {
  opacity: 1;
}

/* DOTS FIX */
.slider-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 14px 0;
  background: #fff;
}

.dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #d0d0d0;
  border: 1px solid #bcbcbc;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.12);
  cursor: pointer;
  transition: 0.3s ease;
}

.dot.active {
  width: 24px;
  border-radius: 20px;
  background: #1a3a8a;
  border-color: #1a3a8a;
  box-shadow: 0 3px 8px rgba(26, 58, 138, 0.35);
}

@media(max-width:768px) {
  .slider-track {
    height: 220px;
  }
}


/* ── SECTION COMMON ── */
section {
  padding: 56px 48px;
}

.section-title {
  font-size: 26px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  gap: 0;
}

.section-title::after {
  content: '';
  flex: 1;
  height: 2px;
  background: #e8edf5;
  margin-left: 16px;
}

/* ── CHOOSE CLASS ── */
/* ===== SAME UI DESIGN AS SCREENSHOT ===== */

.choose-class {
  background: #0b1f4f;
  padding: 55px 42px;
  position: relative;
  overflow: hidden;
}

/* MOBILE FIX → MAKE CLASS CARDS HORIZONTAL SLIDER */

/* subtle pattern bg */
.choose-class::before {
  content: "π   +   x²   H₂O   ∑   √   DNA   =";
  position: absolute;
  inset: 0;
  font-size: 70px;
  font-weight: 800;
  color: rgba(255, 255, 255, .025);
  letter-spacing: 55px;
  line-height: 2.2;
  pointer-events: none;
}

/* TITLE */
.choose-class .section-title {
  color: #fff;
  font-size: 46px;
  font-weight: 800;
  margin-bottom: 34px;
  display: flex;
  align-items: center;
  gap: 22px;
  position: relative;
  z-index: 2;
}

.choose-class .section-title::after {
  content: "";
  flex: 1;
  height: 3px;
  border-radius: 30px;
  background: rgba(255, 255, 255, .35);
}

/* GRID */
.class-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-bottom: 42px;
  position: relative;
  z-index: 2;
}

/* CARD */
.class-card {
  background: #f7f7f7;
  border-right: 6px solid #f6b400;
  border-bottom: 6px solid #f6b400;
  padding: 18px;
  box-shadow: 0 14px 28px rgba(0, 0, 0, .16);
  transition: .25s ease;
}

.class-card:hover {
  transform: translateY(-6px);
}

.class-card .img-placeholder {
  width: 100%;
  /* height:175px; */
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #fff;
  border-radius: 6px;
  margin-bottom: 14px;
}

.class-card .img-placeholder img {

  width: 100%;
  height: auto;
  object-fit: contain;
  /* FULL image visible */
  display: block;
}



/* TAGS */
.class-tags {
  display: flex;
  gap: 8px;
  margin-bottom: 10px;
}

.tag {
  border: 1px solid #c6ccd8;
  background: #fff;
  color: #444;
  font-size: 11px;
  padding: 5px 10px;
  font-weight: 600;
}

.tag-blue,
.tag-orange {
  color: #555;
  border-color: #c8ced9;
  background: #f8f8f8;
}

/* TEXT */
.class-name {
  font-size: 34px;
  font-weight: 800;
  color: #222;
  margin-bottom: 10px;
  line-height: 1.1;
}

.class-price {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.price-old {
  font-size: 15px;
  color: #6e7a95;
  font-weight: 700;
  text-decoration: line-through;
}

.price-new {
  font-size: 30px;
  color: #f6b400;
  font-weight: 900;
}

.price-off {
  background: #f2eedf;
  color: #122267;
  padding: 5px 9px;
  font-size: 14px;
  font-weight: 800;
}

/* BUTTONS */
.class-btns {
  display: flex;
  gap: 12px;
}

.btn-join,
.btn-know {
  flex: 1;
  padding: 13px 12px;
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
}

.btn-join {
  background: #f6c233;
  color: #111f62;
  border: none;
}

.btn-know {
  background: transparent;
  border: 2px solid #20348d;
  color: #20348d;
}

/* ===== COMING SOON ===== */
.coming-soon-card {
  background: #071a8d;
  border: 1px solid rgba(255, 255, 255, .35);
  border-radius: 20px;
  padding: 34px 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  position: relative;
  z-index: 2;
}

/* left hanging text style */
.cs-left {
  min-width: 340px;
  position: relative;
}

.cs-left::before {
  content: "| | | | |";
  position: absolute;
  top: -26px;
  left: 75px;
  color: #fff;
  font-size: 42px;
  letter-spacing: 22px;
}

.cs-coming {
  font-size: 74px;
  font-weight: 900;
  color: #f6a800;
  line-height: .85;
  transform: rotate(-4deg);
}

.cs-stay {
  display: inline-block;
  background: #fff;
  color: #111;
  padding: 3px 8px;
  font-size: 14px;
  font-weight: 900;
  transform: rotate(-6deg);
  margin-left: 88px;
}

.cs-soon {
  font-size: 84px;
  font-weight: 900;
  color: #fff;
  line-height: .82;
  transform: rotate(-4deg);
}

/* right */
.cs-right {
  flex: 1;
  text-align: left;
}

.cs-right h3 {
  color: #fff;
  font-size: 54px;
  font-weight: 800;
  margin-bottom: 12px;
}

.cs-right p {
  color: #fff;
  opacity: .92;
  font-size: 24px;
  margin-bottom: 26px;
  font-weight: 600;
}

.btn-contact {
  background: #f6c233;
  color: #071a8d;
  border: none;
  border-radius: 0;
  padding: 16px 28px;
  font-size: 24px;
  font-weight: 800;
  cursor: pointer;
}

/* FINAL MOBILE CSS */
@media (max-width:768px) {

  /* cards slider */
  .class-cards {
    display: flex !important;
    grid-template-columns: none !important;
    flex-wrap: nowrap !important;
    overflow-x: auto;
    overflow-y: hidden;
    gap: 14px;
    padding: 6px 0 14px;
    margin-bottom: 24px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .class-cards::-webkit-scrollbar {
    display: none;
  }

  .class-card {
    flex: 0 0 285px !important;
    width: 285px !important;
    min-width: 285px !important;
    max-width: 285px !important;
    scroll-snap-align: start;
  }

  /* title */
  .choose-class {
    padding: 28px 16px;
  }

  .choose-class .section-title {
    font-size: 26px;
    margin-bottom: 18px;
    gap: 12px;
  }

  /* card sizes */
  .class-card .img-placeholder,
  .class-card img {
    height: 150px;
  }

  .class-name {
    font-size: 22px;
  }

  .price-new {
    font-size: 24px;
  }

  .btn-join,
  .btn-know {
    font-size: 12px;
    padding: 10px 8px;
  }

  /* coming soon */
  .coming-soon-card {
    flex-direction: column;
    padding: 22px 16px;
    text-align: center;
  }

  .cs-left {
    min-width: auto;
    transform: scale(.72);
    margin: -15px 0;
  }

  .cs-right {
    text-align: center;
  }

  .cs-right h3 {
    font-size: 28px;
  }

  .cs-right p {
    font-size: 15px;
  }

  .btn-contact {
    font-size: 16px;
    padding: 12px 18px;
  }
}

/* PREMIUM UI */
.success-section {
  background: #f8f9fc;
  padding: 50px 20px;
}

.success-slider {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  padding: 10px 6px 20px;
  scrollbar-width: none;
}

.success-slider::-webkit-scrollbar {
  display: none;
}

.success-card {
  min-width: 220px;
  flex: 0 0 auto;
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  scroll-snap-align: start;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
  transition: 0.3s ease;
}

/* PREMIUM BLUE LINE BORDER */
.success-card::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(to bottom, #1a3a8a, #2f66ff);
}

.success-card::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(to right, #1a3a8a, #2f66ff);
}

.success-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 32px rgba(0, 0, 0, 0.14);
}

.img-success {
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #eef3ff, #dbe7ff);
  font-size: 50px;
  color: #1a3a8a;
}

.success-card-body {
  padding: 14px;
}

.sc-name {
  font-size: 15px;
  font-weight: 700;
  color: #0b1f4f;
  margin-bottom: 5px;
}

.sc-score {
  font-size: 13px;
  color: #666;
}

.sc-score strong {
  color: #1a3a8a;
}

@media(max-width:768px) {
  .success-card {
    min-width: 180px;
  }

  .img-success {
    height: 130px;
    font-size: 42px;
  }
}

/* ── SUCCESS STORIES ── */

.success-section {
  background: var(--light-gray);
  padding: 50px 0;
  overflow: hidden;
  position: relative;
}

/* ===== SLIDER ===== */

.success-slider {
  display: flex;
  gap: 24px;
  overflow-x: auto; /* ENABLE MANUAL SCROLL */
  scroll-behavior: smooth;
  padding: 20px 12px;
  scrollbar-width: none;

  /* IMPORTANT FIXES */
  animation: none; /* REMOVE AUTO MOVING */
  cursor: grab;
  -webkit-overflow-scrolling: touch;
}

.success-slider:active {
  cursor: grabbing;
}

.success-slider::-webkit-scrollbar {
  display: none;
}

/* ===== CARD ===== */

.success-card {
  flex: 0 0 auto;
  width: 420px;
  border-radius: 24px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 10px 35px rgba(0,0,0,0.08);
  transition: transform .25s ease;
}

.success-card:hover {
  transform: translateY(-6px);
}

/* ===== IMAGE ===== */

.success-card img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;

  /* IMPORTANT */
  pointer-events: none; /* FIX IMAGE DRAG/ZOOM ISSUE */
  user-select: none;
  -webkit-user-drag: none;
}

/* ===== REMOVE CROPPING ===== */

.img-placeholder,
.img-success,
.person-placeholder {
  height: auto !important;
  overflow: visible;
  background: transparent;
}

/* ===== MOBILE ===== */

@media (max-width:768px) {

  .success-card {
    width: 300px;
  }

}
/* ── PDF RESOURCES ── */
.pdf-section {
  background: #fff;
}

.pdf-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}

.pdf-card {
  border: 1.5px solid #e8edf5;
  border-radius: 10px;
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: border-color .2s, box-shadow .2s;
  cursor: pointer;
}

.pdf-card:hover {
  border-color: #e63946;
  box-shadow: 0 4px 14px rgba(230, 57, 70, 0.12);
}

.pdf-icon {
  color: #e63946;
  font-size: 28px;
  flex-shrink: 0;
}

.pdf-info {
  flex: 1;
  min-width: 0;
}

.pdf-title {
  font-size: 12px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 4px;
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.pdf-sub {
  font-size: 10.5px;
  color: var(--gray);
}

.pdf-dl {
  font-size: 11px;
  font-weight: 600;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: 4px;
}

.pdf-dl i {
  font-size: 10px;
}

.view-all-wrap {
  text-align: center;
  margin-top: 8px;
}

.btn-view-all {
  background: var(--navy);
  color: #fff;
  font-weight: 600;
  font-size: 13px;
  border: none;
  border-radius: 6px;
  padding: 10px 28px;
  cursor: pointer;
  transition: background .2s, transform .15s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-view-all:hover {
  background: var(--blue-light);
  transform: translateY(-1px);
}

/* ── LIVE VIDEO ── */
/* ===== CLEAN EXACT STYLE MATCH ===== */
/* ===============================
   SAME AS UPLOADED IMAGE UI
   LIVE SECTION + WHY SECTION
================================= */

/* PAGE BG */
.live-section,
.why-section {
  background: #efefef;
  padding: 34px 32px;
}

/* MAIN BLUE FRAME */
.live-section {
  border: 4px solid #1e90ff;
  position: relative;
  margin-bottom: 28px;
}

/* inner dotted box */
.live-grid {
  border: 2px dotted #38a2ff;
  padding: 18px;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 28px;
  position: relative;
}

/* title */
.live-section .section-title {
  font-size: 26px;
  font-weight: 800;
  color: #20348d;
  margin-bottom: 18px;
}

/* subtitle */
.live-section .section-title::after {
  content: "Bilkul offline jaisa maza, online class mein.";
  display: block;
  font-size: 11px;
  color: #f6b400;
  font-weight: 700;
  margin-top: 3px;
}

/* enroll tag */
.live-grid::after {
  content: "ENROLL\A NOW";
  white-space: pre;
  position: absolute;
  top: -8px;
  right: 10px;
  width: 58px;
  height: 58px;
  background: #f6b400;
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  transform: rotate(-12deg);
  box-shadow: 4px 4px 0 #1b2e7d;
}

/* LEFT VIDEO */
.live-thumb {
  position: relative;
  border-radius: 0;
  overflow: hidden;
  box-shadow: none;
}

.live-thumb .img-live {
  height: 240px !important;
  background: linear-gradient(135deg, #f27d00, #ffb000);
  border: 3px solid #1d2f86;
  position: relative;
}

/* demo text */
.live-thumb .img-live::before {
  content: "CO-ORDINATE\A GEOMETRY";
  white-space: pre;
  position: absolute;
  left: 14px;
  top: 70px;
  color: #1d2f86;
  font-size: 44px;
  font-weight: 900;
  line-height: .9;
}

/* live badge */
.live-subject {
  top: 8px;
  left: 10px;
  background: #e62929;
  color: #fff;
  border-radius: 0;
  font-size: 11px;
  padding: 5px 12px;
}

/* play */
.live-thumb-overlay {
  background: none;
}

.play-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #fff;
  box-shadow: none;
}

.play-btn i {
  color: #1d2f86;
}

/* RIGHT LIST */
.live-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  justify-content: center;
}

.live-item {
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  padding: 0;
  gap: 12px;
}

.live-item:hover {
  transform: none;
  box-shadow: none;
}

.live-item-img,
.img-live-item {
  width: 28px;
  height: 28px;
  background: #f2c34b;
  border: 2px solid #2a2a2a;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.live-item:nth-child(2) .img-live-item {
  background: #7c8dff;
}

.live-item:nth-child(3) .img-live-item {
  background: #d7d7d7;
}

.live-item-title {
  font-size: 16px;
  font-weight: 800;
  color: #222;
}

.live-item-sub {
  font-size: 11px;
  color: #666;
}

.live-item-arrow {
  display: none;
}

/* ================= WHY SECTION ================= */

.why-section .section-title {
  font-size: 26px;
  color: #20348d;
  font-weight: 800;
  margin-bottom: 16px;
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 42px;
  align-items: center;
}

.why-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.why-feature {
  background: #f7ecd5;
  border-radius: 0;
  padding: 14px 14px;
  box-shadow: 0 3px 8px rgba(0, 0, 0, .06);
}

.why-icon {
  width: 22px;
  height: 22px;
  background: none;
  border-radius: 0;
}

.why-icon i {
  color: #f6b400;
  font-size: 18px;
}

.why-feature-text h4 {
  font-size: 15px;
  color: #20348d;
  font-weight: 800;
  margin-bottom: 4px;
}

.why-feature-text p {
  font-size: 11px;
  color: #666;
  line-height: 1.5;
}

/* right image */
.img-why {
  height: 290px;
  border-radius: 14px;
  background: #061e8d;
  position: relative;
  overflow: hidden;
}

/* science bg */
.img-why::before {
  content: "π  +  DNA  H₂O  x²  √  PE";
  position: absolute;
  inset: 0;
  color: rgba(255, 255, 255, .06);
  font-size: 44px;
  font-weight: 800;
  line-height: 2;
  letter-spacing: 20px;
}

/* student */
.img-why::after {
  content: "📱";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-size: 120px;
}

/* MOBILE */
@media(max-width:768px) {

  .live-grid,
  .why-grid {
    grid-template-columns: 1fr;
  }

  .live-section,
  .why-section {
    padding: 18px 14px;
  }

  .live-thumb .img-live {
    height: 200px !important;
  }

  .live-thumb .img-live::before {
    font-size: 30px;
    top: 82px;
  }

  .img-why {
    height: 220px;
  }
}

/* ENHANCED YOUTUBE VIDEO UI */

.live-thumb {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 10px 24px rgba(0, 0, 0, .08);
}

/* iframe wrapper */
.yt-video-wrap {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  background: #000;
}

.yt-video-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* premium top badge */
.live-subject {
  position: absolute;
  top: 12px;
  left: 12px;
  background: linear-gradient(90deg, #e62929, #ff4b4b);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  padding: 7px 12px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  gap: 7px;
  box-shadow: 0 6px 14px rgba(230, 41, 41, .25);
  letter-spacing: .4px;
}

.live-subject i {
  color: #fff8b0;
  font-size: 12px;
}

/* RIGHT SIDE ICONS ENHANCE */
.img-live-item {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  border: none;
  box-shadow: 0 6px 14px rgba(0, 0, 0, .08);
}

.live-item:nth-child(1) .img-live-item {
  background: linear-gradient(135deg, #ffd96a, #f4b400);
}

.live-item:nth-child(2) .img-live-item {
  background: linear-gradient(135deg, #8da2ff, #5f78ff);
}

.live-item:nth-child(3) .img-live-item {
  background: linear-gradient(135deg, #ededed, #cfcfcf);
}

.live-item i {
  color: #1b2e7d !important;
  font-size: 14px;
}

/* text better */
.live-item-title {
  font-size: 15px;
  font-weight: 800;
  color: #1b2e7d;
}

.live-item-sub {
  font-size: 11px;
  color: #777;
  line-height: 1.4;
}

/* mobile */
@media(max-width:768px) {

  .live-subject {
    font-size: 10px;
    padding: 6px 10px;
  }

  .img-live-item {
    width: 30px;
    height: 30px;
  }

  .live-item-title {
    font-size: 14px;
  }
}

/* ── TESTIMONIALS ── */

/* ===== TESTIMONIALS → REELS STYLE ===== */


/* section */
.testimonials-section {
  background: #f5f7fb;
  padding: 50px 0;
  overflow: hidden;
}

/* WRAPPER */
.reels-slider {
  display: flex;
  gap: 18px;
  padding: 0 20px;

  overflow-x: auto;
  overflow-y: hidden;

  white-space: nowrap;

  /* hide bars */
  scrollbar-width: none;
  -ms-overflow-style: none;
}

/* chrome safari */
.reels-slider::-webkit-scrollbar {
  display: none;
}

/* CARD */
.reel-card {
  flex: none;
  width: 280px;
  height: 520px;
  min-width: 280px;

  border-radius: 22px;
  overflow: hidden;
  background: #fff;

  box-shadow: 0 10px 28px rgba(0, 0, 0, .08);
}

/* iframe */
.reel-card iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* IMPORTANT: Instagram iframe creates own grey bar sometimes */
.reel-card iframe html,
.reel-card iframe body {
  overflow: hidden !important;
}

/* MOBILE */
@media(max-width:768px) {

  .reels-slider {
    gap: 14px;
    padding: 0 14px;
  }

  .reel-card {
    width: 220px;
    min-width: 220px;
    height: 430px;
    border-radius: 18px;
  }

}

/* mobile */


/* ── CTA BANNER ── */
.cta-banner {
  background: linear-gradient(100deg, #0b1f4f 0%, #1a3a8a 100%);
  padding: 40px 48px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.cta-text {
  flex: 1;
}

.cta-text h2 {
  color: #fff;
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 8px;
}

.cta-text p {
  color: #a0b4d6;
  font-size: 14px;
}

.cta-form {
  display: flex;
  gap: 8px;
  align-items: center;
}

.cta-input {
  padding: 11px 18px;
  border: none;
  border-radius: 6px;
  font-size: 13px;
  font-family: 'Poppins', sans-serif;
  width: 260px;
  outline: none;
}

.cta-submit {
  background: var(--gold);
  color: var(--navy);
  font-weight: 700;
  font-size: 13px;
  border: none;
  border-radius: 6px;
  padding: 11px 22px;
  cursor: pointer;
  transition: background .2s, transform .15s;
  white-space: nowrap;
}

.cta-submit:hover {
  background: #e09a1e;
  transform: translateY(-1px);
}

/* ── EASY STEPS ── */


.steps-section {
  background: #fff;
  padding: 56px 48px;
}

.steps-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.steps-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.step-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.step-num {
  width: 36px;
  height: 36px;
  background: var(--navy);
  color: #fff;
  font-weight: 800;
  font-size: 15px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.step-content h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}

.step-content p {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.5;
}

.app-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #000;
  color: #fff;
  border-radius: 8px;
  padding: 8px 16px;
  margin-top: 16px;
  text-decoration: none;
  transition: background .2s;
}

.app-badge:hover {
  background: #1a1a1a;
}

.app-badge i {
  font-size: 22px;
}

.app-badge-text {
  line-height: 1.2;
}

.app-badge-text small {
  font-size: 10px;
  opacity: .7;
  display: block;
}

.app-badge-text span {
  font-size: 14px;
  font-weight: 700;
}

.phone-mockup {
  display: flex;
  justify-content: center;
  align-items: center;
}

.phone-wrap {
  background: var(--navy);
  border-radius: 28px;
  padding: 12px;
  box-shadow: 0 20px 60px rgba(11, 31, 79, 0.3);
  width: 180px;
}

.phone-screen {
  background: var(--light-gray);
  border-radius: 18px;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.phone-screen-inner {
  text-align: center;
  padding: 20px;
}

.phone-logo {
  background: var(--gold);
  color: var(--navy);
  font-weight: 900;
  font-size: 28px;
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  margin: 0 auto 12px;
}

.phone-screen-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
}

.phone-screen-sub {
  font-size: 10px;
  color: var(--gray);
  margin-top: 4px;
}

/* ── FOOTER ── */

/* FOOTER */
.site-footer{
  background:#02146C;
  color:#fff;
  padding:55px 70px 35px;
  font-family: 'Poppins', sans-serif;
}

.footer-container{
  max-width:1400px;
  margin:auto;
  display:flex;
  justify-content:space-between;
  gap:80px;
  flex-wrap:wrap;
}

/* LEFT */
.footer-brand{
  flex:1;
  min-width:320px;
}

.footer-logo img{
  width:200px;
  margin-bottom:16px;
}

.footer-tagline{
  font-size:14px;
  color:#e7e7e7;
  line-height:1.6;
  margin-bottom:22px;
  max-width:320px;
}

.footer-brand h4{
  color:#F9B100;
  font-size:18px;
  margin-bottom:18px;
}

.footer-contact{
  list-style:none;
  padding:0;
  margin:0;
}

.footer-contact li{
  display:flex;
  gap:10px;
  font-size:15px;
  line-height:1.8;
  color:#fff;
  margin-bottom:10px;
}

.footer-contact i{
  color:#F9B100;
  margin-top:6px;
  width:18px;
}

/* SOCIAL */
.footer-social{
  display:flex;
  gap:16px;
  margin:24px 0;
}

.footer-social a{
  color:#F9B100;
  font-size:19px;
  transition:.3s;
}

.footer-social a:hover{
  transform:translateY(-3px);
  color:#fff;
}

.copyright{
  font-size:14px;
  color:#ddd;
}

.copyright span{
  color:#F9B100;
}

/* RIGHT */
.footer-links{
  flex:1.2;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:70px;
  min-width:500px;
}

.footer-column h4{
  color:#F9B100;
  font-size:18px;
  margin-bottom:20px;
}

.footer-column a{
  display:block;
  color:#fff;
  text-decoration:none;
  font-size:15px;
  margin-bottom:18px;
  transition:.3s;
}

.footer-column a:hover{
  color:#F9B100;
  padding-left:4px;
}

/* MOBILE */
@media(max-width:992px){
  .footer-container{
    flex-direction:column;
    gap:50px;
  }

  .footer-links{
    grid-template-columns:repeat(2,1fr);
    min-width:100%;
  }
}

@media(max-width:600px){
  .site-footer{
    padding:45px 25px;
  }

  .footer-links{
    grid-template-columns:1fr;
    gap:35px;
  }

  .footer-logo img{
    width:180px;
  }
}
/* ***********************ABOUT WE ARE SUPPORTED ********************************* */

/* ********************************** END************************************ */

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .pdf-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .class-cards {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {

  .hero {
    padding: 28px 20px;
    flex-direction: column;
  }

  .hero h1 {
    font-size: 26px;
  }

  .hero-img {
    flex: none;
    max-width: 100%;
  }

  section {
    padding: 36px 20px;
  }

  .class-cards {
    grid-template-columns: 1fr;
  }

  .coming-soon-card {
    flex-direction: column;
    text-align: center;
    padding: 24px 20px;
  }

  .pdf-grid {
    grid-template-columns: 1fr 1fr;
  }

  .live-grid {
    grid-template-columns: 1fr;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  /* .testimonial-cards { grid-template-columns: 1fr 1fr; } */
  .testimonial-card {
    min-width: 200px;
    width: 110px;
    height: 225px;
  }

  .cta-banner {
    flex-direction: column;
    padding: 28px 20px;
  }

  .cta-form {
    flex-direction: column;
    width: 100%;
  }

  .cta-input {
    width: 100%;
  }

  .steps-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .scholarship-banner {
    padding: 16px 20px;
    flex-direction: column;
  }

  .hero-stats {
    flex-direction: column;
    gap: 10px;
  }

  .steps-section {
    padding: 36px 20px;
  }
}

@media (max-width: 480px) {
  .pdf-grid {
    grid-template-columns: 1fr;
  }

  .testimonial-cards {
    grid-template-columns: 1fr;
  }

  .hero-btns {
    flex-direction: column;
  }
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-up {
  opacity: 0;
  animation: fadeUp .6s ease forwards;
}

.fade-up-delay-1 {
  animation-delay: .1s;
}

.fade-up-delay-2 {
  animation-delay: .2s;
}

.fade-up-delay-3 {
  animation-delay: .3s;
}

/* Scroll animations via IntersectionObserver */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Placeholder images - colored blocks for demo */
.img-placeholder {
  background: linear-gradient(135deg, #1a3a8a 0%, #0b1f4f 100%);
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.3);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.img-class {
  height: 130px;
}

.img-hero {
  height: 200px;
  background: linear-gradient(135deg, #1a3a8a 0%, #2a5298 100%);
}

.img-success {
  height: 130px;
  background: linear-gradient(135deg, #2a5298 0%, #1a3a8a 100%);
}

.img-live {
  height: 200px;
  background: linear-gradient(135deg, #1a3a8a 0%, #0b1f4f 100%);
}

.img-live-item {
  width: 60px;
  height: 50px;
  border-radius: 7px;
  background: linear-gradient(135deg, #2a5298 0%, #1a3a8a 100%);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.4);
  font-size: 9px;
}

/* WHY-US CARD */
.img-why{
  position:relative;
  width:100%;
  height:280px;
  border-radius:18px;
  overflow:visible;   /* allow top overflow only visually */
  background:linear-gradient(135deg,#0b1f4f 0%,#1a3a8a 60%,#2a5298 100%);
  box-shadow:0 18px 40px rgba(11,31,79,.22);
}

/* background image */
.img-why .banner-img{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  border-radius:18px;
  opacity:.14;
}

/* BOY IMAGE */
/* bottom stays inside, top comes out */
.img-why .person-img{
  position:absolute;
  bottom:0;              /* keep feet inside card */
  right:12px;
  height:115%;
  width:auto;
  object-fit:contain;
  z-index:5;
  filter:drop-shadow(0 18px 22px rgba(0,0,0,.28));
  transition:.35s ease;
}

/* hover */
.img-why:hover .person-img{
  transform:translateY(-6px);
}

/* mobile */
@media(max-width:768px){
  .img-why{
    height:240px;
  }

  .img-why .person-img{
    height:108%;
    right:4px;
  }
}