/* ================================================================
   custom.css — Base Styles (no media queries)
   All responsive/media-query rules are in responsive.css
   ================================================================ */

/* ── RESET & BASE ── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --blue:        #1a5fd4;
  --blue-dark:   #1450b8;
  --blue-light:  #e8f0fc;
  --text-dark:   #0d1b2e;
  --text-body:   #4a5568;
  --yellow:      #f5c518;
  --yellow-dark: #e0b200;
  --bg:          #ffffff;
  --icon-muted:  #c8d8f0;
  --radius-img:  22px;
  --font:        'Poppins', sans-serif;
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text-dark);
  -webkit-font-smoothing: antialiased;
}

/* ── HERO SECTION ── */
.hero {
  display: flex;
  align-items: center;
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
}

/* ── CONTAINER ── */
.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 64px;
  width: 100%;
}

/* ── LEFT CONTENT ── */
.hero-content {
  display: flex;
  flex-direction: column;
  gap: 28px;
  position: relative;
  z-index: 2;
}

/* Fade-slide-up entrance */
.hero-content > * {
  opacity: 0;
  transform: translateY(24px);
  animation: fadeUp 0.65s ease forwards;
}

.hero-content > *:nth-child(1) { animation-delay: 0.1s; }
.hero-content > *:nth-child(2) { animation-delay: 0.25s; }
.hero-content > *:nth-child(3) { animation-delay: 0.4s; }

@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

/* ── HEADLINE ── */
.hero-title {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.5px;
  color: var(--text-dark);
}

.hero-title .highlight {
  color: var(--blue);
}

/* ── BODY TEXT ── */
.hero-desc {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.75;
  color: var(--text-body);
  max-width: 480px;
}

/* ── BUTTONS ── */
.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 30px;
  font-family: var(--font);
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  letter-spacing: 0.2px;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s, color 0.2s;
  white-space: nowrap;
}

.btn-primary {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 4px 14px rgba(26, 95, 212, 0.38);
}

.btn-primary:hover {
  background: var(--blue-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(26, 95, 212, 0.48);
}

.btn-primary:active { transform: translateY(0); }

.btn-outline {
  background: transparent;
  color: var(--text-dark);
  border: 2px solid #d0dae8;
}

.btn-outline:hover {
  border-color: var(--blue);
  color: var(--blue);
  transform: translateY(-2px);
}

.btn-outline:active { transform: translateY(0); }

/* ── DECORATIVE ICON – bottom-left ── */
.deco-book {
  position: absolute;
  bottom: 48px;
  left: 48px;
  opacity: 0;
  animation: fadeUp 0.65s ease 0.55s forwards;
}

.deco-book svg {
  width: 56px;
  height: 56px;
  color: var(--icon-muted);
}

/* ── RIGHT: IMAGE COLUMN ── */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  animation: fadeIn 0.8s ease 0.2s forwards;
}

@keyframes fadeIn {
  to { opacity: 1; }
}

/* Decorative cap icon – top right */
.deco-cap {
  position: absolute;
  top: -16px;
  right: -16px;
  z-index: 3;
}

.deco-cap svg {
  width: 72px;
  height: 72px;
  color: var(--icon-muted);
  filter: drop-shadow(0 2px 6px rgba(26,95,212,0.12));
}

/* Main image wrapper */
.img-wrapper {
  position: relative;
  width: 100%;
  max-width: 580px;
  border-radius: var(--radius-img);
  overflow: hidden;
 
}

.img-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-img);
  object-fit: cover;
}

/* Image placeholder (shown when no real image) */
.img-placeholder {
  width: 100%;
  aspect-ratio: 4 / 3;
  background: linear-gradient(145deg, #fdf6e3 0%, #f5c518 80%);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-img);
}

.img-placeholder svg {
  width: 120px;
  height: 120px;
  opacity: 0.3;
}

/* ── STATS BADGE ── */
.badge-students {
  position: absolute;
  bottom: -10px;
  left: -10px;
  background: var(--yellow);
  border-radius: 16px;
  padding: 18px 24px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.14);
  z-index: 4;
  animation: badgePop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) 0.7s both;
}

@keyframes badgePop {
  from { opacity: 0; transform: scale(0.7) translateY(12px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}

.badge-students .stat-number {
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1;
  letter-spacing: -0.5px;
}

.badge-students .stat-label {
  font-size: 0.65rem;
  font-weight: 600;
  color: #5a4800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-top: 4px;
}

/* ── COUNTER ANIMATION ── */
.counter { display: inline-block; }

/* ── RESPONSIVE ── */

/* Tablet */


/* Mobile */


/* ============================================================
   CONTAINER
   ============================================================ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}
 
/* ============================================================
   SHARED – BADGE
   ============================================================ */
.badge-wrap {
  text-align: center;
  margin-bottom: 16px;
}
 
.badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.4px;
  color: #4a5e80;
  background-color: #EFF4FF;
  border-radius: 50px;
  padding: 6px 18px;
  text-transform: uppercase;
}
 
/* ============================================================
   SHARED – SECTION TITLES
   ============================================================ */
.section-title {
  font-size: clamp(24px, 3.5vw, 38px);
  font-weight: 700;
  color: #0f1f3d;
  text-align: center;
  line-height: 1.2;
  letter-spacing: -0.3px;
  margin-bottom: 12px;
}
 
.section-sub {
  font-size: 15px;
  color: #4a5e80;
  line-height: 1.75;
  text-align: center;
  max-width: 600px;
  margin: 0 auto 52px;
}
 
/* ============================================================
   SECTION 1 – WHY US
   ============================================================ */
.why-section {
  background-color: #ffffff;
  padding: 80px 0 80px;
}
 
/* 4-column features grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}
 
/* Feature Card */
.feature-card {
  background: #ffffff;
  border: 1.5px solid #e4eaf5;
  border-radius: 20px;
  padding: 36px 24px 32px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.5s ease, transform 0.4s ease, box-shadow 0.3s ease;
}
 
.feature-card.visible {
  opacity: 1;
  transform: translateY(0);
}
 
.feature-card:hover {
  box-shadow: 0 12px 40px rgba(37, 99, 235, 0.10);
  transform: translateY(-5px);
}
 
/* Icon circle */
.icon-wrap {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
 
.icon-wrap svg {
  width: 28px;
  height: 28px;
}
 
.icon-blue     { background: #dce8ff; color: #2563eb; }
.icon-green    { background: #d1fae5; color: #059669; }
.icon-yellow   { background: #fef3c7; color: #d97706; }
.icon-lavender { background: #ede9fe; color: #7c3aed; }
 
/* Feature text */
.feature-title {
  font-size: 17px;
  font-weight: 600;
  color: #0f1f3d;
  line-height: 1.3;
}
 
.feature-desc {
  font-size: 13.5px;
  color: #4a5e80;
  line-height: 1.7;
}
 
/* ============================================================
   SECTION 2 – CURRICULUM BOARDS
   ============================================================ */
.classes-section {
  background-color: #F8F9FF;
  padding: 80px 0 80px;
}
 
/* 3-column cards grid */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: start;
}
 
/* Card */
.card {
  background: #EFF4FF;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.5s ease, transform 0.4s ease, box-shadow 0.35s ease;
}
 
.card.visible {
  opacity: 1;
  transform: translateY(0);
}
 
.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(37, 99, 235, 0.14);
}
 
.card--center {
  box-shadow: 0 8px 32px rgba(37, 99, 235, 0.10);
}
 
/* Card image area */
.card-image-wrap {
  background: #f0f5ff;
  border-radius: 16px;

  overflow: hidden;
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
}
 
.card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
 
.card:hover .card-img {
  transform: scale(1.04);
}
 
/* Card body */
.card-body {
  padding: 28px 0 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
}
 
.card-title {
  font-size: 20px;
  font-weight: 700;
  color: #0f1f3d;
  text-align: center;
}
 
.card-desc {
  font-size: 14px;
  color: #4a5e80;
  line-height: 1.75;
  text-align: center;
  flex: 1;
}
 
/* Know More button */
.know-more-btn {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #ffffff;
  background: #2563eb;
  border: none;
  border-radius: 50px;
  padding: 14px 20px;
  width: 100%;
  cursor: pointer;
  margin-top: 8px;
  position: relative;
  overflow: hidden;
  transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
}
 
.know-more-btn:hover {
  background: #1d4ed8;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.35);
}
 
.know-more-btn:active {
  transform: translateY(0);
  box-shadow: none;
}
 
/* Ripple */
.ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: scale(0);
  animation: ripple-anim 0.55s linear;
  pointer-events: none;
}
 
@keyframes ripple-anim {
  to { transform: scale(4); opacity: 0; }
}
 
/* ============================================================
   RESPONSIVE
   ============================================================ */

 

 

 

 


/* ===== CTA Section ===== */
.cta-section {
  width: 100%;
      max-width: 1200px;
    margin: 0 auto;
    padding: 80px 40px;
}
 
/* ===== CTA Banner Card ===== */
.cta-banner {
  background: #2563eb;
  border-radius: 20px;
  padding: 64px 48px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
 
  /* subtle inner glow to match reference */
  box-shadow: 0 8px 40px rgba(37, 99, 235, 0.35);
}
 
/* ===== Title ===== */
.cta-title {
  font-size: clamp(28px, 5vw, 42px);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.25;
  letter-spacing: -0.3px;
}
 
/* ===== Subtitle ===== */
.cta-subtitle {
  font-size: clamp(13px, 2vw, 15px);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  max-width: 600px;
}
 
/* ===== Enroll Button ===== */
.cta-btn {
  margin-top: 8px;
  background: #f5c518;
  color: #1a1a1a;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 600;
  border: none;
  border-radius: 50px;
  padding: 16px 52px;
  cursor: pointer;
  letter-spacing: 0.2px;
  transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
  box-shadow: 0 4px 16px rgba(245, 197, 24, 0.4);
}
 
.cta-btn:hover {
  background: #e6b800;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(245, 197, 24, 0.5);
}
 
.cta-btn:active {
  transform: translateY(0);
  box-shadow: 0 4px 12px rgba(245, 197, 24, 0.35);
}
 
/* ===== Ripple Effect ===== */
.cta-btn {
  position: relative;
  overflow: hidden;
}
 
.ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  transform: scale(0);
  animation: ripple-anim 0.55s linear;
  pointer-events: none;
}
 
@keyframes ripple-anim {
  to {
    transform: scale(4);
    opacity: 0;
  }
}
 
/* ===== Mobile Responsive ===== */


.testimonials-section{
      padding: 80px 0 80px;
      background: #F8F9FF;
    }

/* ===== Container ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}
 
/* ===== Section Title ===== */
.section-title {
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 700;
  color: #0f1f3d;
  margin-bottom: 48px;
  letter-spacing: -0.3px;
}
 
/* ===== Cards Grid ===== */
.cards-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: center;
}
 
/* ===== Card ===== */
.card {
  background: #ffffff;
  border: 1.5px solid #e2e8f0;
  border-radius: 20px;
  padding: 20px;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 5px;
  opacity: 0;
  transform: translateY(30px);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
 
/* Centre card slightly larger / elevated */
.card--center {
  padding: 20px;
  box-shadow: 0 8px 32px rgba(37, 99, 235, 0.10);
}
 
.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(37, 99, 235, 0.13);
}
 
.card--center:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(37, 99, 235, 0.18);
}
 
/* ===== Stars ===== */
.stars {
  font-size: 24px;
  color: #f5c518;
  letter-spacing: 2px;
  line-height: 1;
}
 
/* ===== Review Text ===== */
.review {
  font-size: 14px;
  font-weight: 400;
  color: #334155;
  line-height: 1.75;
  flex: 1;
}
 
/* ===== Reviewer Row ===== */
.reviewer {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 4px;
}
 
.avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid #e2e8f0;
}
 
.reviewer-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
 
.reviewer-name {
  font-size: 14px;
  font-weight: 600;
  color: #0f1f3d;
}
 
.reviewer-role {
  font-size: 12px;
  font-weight: 400;
  color: #64748b;
}
 
/* ===== Entrance Animation ===== */
.card.visible {
  opacity: 1;
  transform: translateY(0);
}
 
/* ===== Mobile Responsive ===== */


 


/*--  About Page -- */

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero-inner {
  background:
    linear-gradient(135deg,
      #c8f0e8 0%,
      #dce8ff 40%,
      #e8eeff 65%,
      #f5ede0 100%
    );
  padding: 56px 0 64px;
  min-height: 280px;
  overflow: hidden;
}
 
/* ============================================================
   INNER ROW – two-column flex
   ============================================================ */
.hero-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
 
/* ============================================================
   LEFT – TEXT CONTENT
   ============================================================ */
.hero-content {
  flex: 1;
  max-width: 580px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
 
/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}
 
.crumb {
  font-size: 13px;
  font-weight: 400;
  color: #4a5e80;
  text-decoration: none;
  transition: color 0.2s ease;
}
 
.crumb:hover {
  color: #2563eb;
}
 
.crumb--active {
  font-weight: 500;
  color: #2563eb;
  pointer-events: none;
}
 
.sep {
  font-size: 13px;
  color: #7a90b8;
  line-height: 1;
}
 
/* Heading */
.hero-title {
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 800;
  color: #0f1f3d;
  line-height: 1.15;
  letter-spacing: -0.5px;
}
 
.highlight {
  color: #2563eb;
}
 
/* Sub text */
.hero-sub {
  font-size: 15px;
  color: #4a5e80;
  line-height: 1.75;
  max-width: 480px;
}
 
/* ============================================================
   RIGHT – IMAGE
   ============================================================ */
.hero-image-wrap {
  position: relative;
  flex-shrink: 0;
  width: 300px;
  height: 300px;
}
 
.yellow-blob {
  position: absolute;
  width: 260px;
  height: 260px;
  background: #f5c518;
  border-radius: 40% 60% 55% 45% / 45% 50% 60% 55%;
  top: 20px;
  right: -10px;
  z-index: 0;
}
 
.image-card {
  position: absolute;
  top: 0;
  left: 0;
  width: 280px;
  height: 280px;
  border-radius: 24px;
  overflow: hidden;
  z-index: 1;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}
 
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
 
/* ============================================================
   RESPONSIVE
   ============================================================ */

 


/* ============================================================
   SHARED – ICON CIRCLES
   ============================================================ */
.icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-bottom: 4px;
}
.icon-wrap svg { width: 26px; height: 26px; }
 
.icon-blue     { background: #dce8ff; color: #2563eb; }
.icon-yellow   { background: #fef3c7; color: #d97706; }
.icon-green    { background: #d1fae5; color: #059669; }
.icon-lavender { background: #ede9fe; color: #7c3aed; }
.icon-sky      { background: #e0f2fe; color: #0284c7; }
 
/* ============================================================
   SECTION 1 – MISSION / VISION / VALUES
   ============================================================ */
.mission-section {
  background: #ffffff;
  padding: 80px 0 80px;
}
 
/* ── Top row ── */
.mission-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-bottom: 28px;
  align-items: stretch;
}
 
/* Mission card */
.mission-card {
  background: #ffffff;
  border: 1.5px solid #e4eaf5;
  border-radius: 20px;
  padding: 36px 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: box-shadow 0.3s ease;
}
 
.mission-title {
  font-size: 26px;
  font-weight: 700;
  color: #2563eb;
  line-height: 1.2;
}
 
.mission-desc {
  font-size: 14.5px;
  color: #4a5e80;
  line-height: 1.8;
}
 
.mission-tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 4px;
}
 
.tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  color: #2563eb;
  background: #EFF4FF;
  border-radius: 50px;
  padding: 5px 16px;
}
 
/* Vision card */
.vision-card {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  min-height: 320px;
  transition: none;
}
 
.vision-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.vision-card:hover .vision-img { transform: scale(1.04); }
 
.vision-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(10,25,70,0.88) 0%, rgba(10,25,70,0.1) 100%);
  padding: 28px 28px 28px;
}
 
.vision-label {
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 6px;
}
 
.vision-text {
  font-size: 13.5px;
  color: rgba(255,255,255,0.85);
  line-height: 1.6;
  max-width: 320px;
}
 
/* ── Values grid ── */
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
 
.value-card {
  background: #ffffff;
  border: 1.5px solid #e4eaf5;
  border-radius: 18px;
  padding: 30px 22px 28px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.value-card:hover {
  box-shadow: 0 10px 36px rgba(37,99,235,0.10);
  transform: translateY(-4px);
}
 
.value-title {
  font-size: 16px;
  font-weight: 600;
  color: #0f1f3d;
}
 
.value-desc {
  font-size: 13px;
  color: #4a5e80;
  line-height: 1.7;
}
 
/* ============================================================
   SECTION 2 – WHY CHOOSE LUMINOUS
   ============================================================ */
.why-section {
  background: #EFF4FF;
  padding: 88px 0 96px;
}
 
.why-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
 
/* ── Collage ── */
.collage {
  position: relative;
  height: 520px;
  transition: none;
}
 
/* Big image – bottom-right */
.collage-main {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 68%;
  height: 75%;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0,0,0,0.14);
}
.collage-img-main {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.collage-main:hover .collage-img-main { transform: scale(1.05); }
 
/* Small image – top-left */
.collage-small {
  position: absolute;
  left: 0;
  top: 0;
  width: 58%;
  height: 56%;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
}
.collage-img-small {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.collage-small:hover .collage-img-small { transform: scale(1.05); }
 
/* Floating cards */
.float-card {
  position: absolute;
  background: #ffffff;
  border-radius: 14px;
  padding: 14px 18px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  box-shadow: 0 6px 28px rgba(0,0,0,0.12);
  z-index: 10;
  max-width: 220px;
  animation: floatBob 3.5s ease-in-out infinite;
}
 
.float-top    { top: 36%; right: -12px; animation-delay: 0s; }
.float-bottom { bottom: 12%; left: -10px; animation-delay: 1.2s; }
 
@keyframes floatBob {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-7px); }
}
 
.float-icon {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: #EFF4FF;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.float-icon svg { width: 18px; height: 18px; }
 
.float-icon-star { background: #fef3c7; }
 
.float-title {
  font-size: 13px;
  font-weight: 600;
  color: #0f1f3d;
  line-height: 1.3;
}
.float-big { font-size: 15px; }
.float-sub {
  font-size: 11.5px;
  color: #4a5e80;
  margin-top: 2px;
  line-height: 1.4;
}
 
/* ── Why content ── */
.why-content {
  transition: none;
}
 
.why-title {
  font-size: clamp(26px, 3.2vw, 38px);
  font-weight: 700;
  color: #0f1f3d;
  line-height: 1.2;
  margin-bottom: 18px;
}
 
.why-intro {
  font-size: 15px;
  color: #4a5e80;
  line-height: 1.75;
  margin-bottom: 36px;
}
 
/* Numbered list */
.why-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
 
.why-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}
 
.step-badge {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 15px;
  font-weight: 700;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.step-blue   { background: #2563eb; }
.step-yellow { background: #d97706; }
.step-green  { background: #059669; }
 
.why-item-title {
  font-size: 17px;
  font-weight: 600;
  color: #0f1f3d;
  margin-bottom: 6px;
}
 
.why-item-desc {
  font-size: 14px;
  color: #4a5e80;
  line-height: 1.7;
}
 
/* ============================================================
   RESPONSIVE
   ============================================================ */

 

 

 


/*-- log in page --*/

/* ============================================================
   BACKGROUND DECORATIVE ICONS
   ============================================================ */
.bg-icon {
  position: fixed;
  opacity: 0.55;
  pointer-events: none;
  z-index: 0;
}
 
.bg-icon svg {
  display: block;
}
 
.bg-icon--book {
  top: 32px;
  left: 32px;
  width: 72px;
}
 
.bg-icon--flask {
  bottom: 80px;
  left: 20px;
  width: 48px;
}
 
.bg-icon--cap {
  bottom: 40px;
  right: 32px;
  width: 90px;
}
 
/* ============================================================
   PAGE WRAP
   ============================================================ */
.page-wrap {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
 
/* ============================================================
   LOGIN CARD
   ============================================================ */
.login-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(37, 99, 235, 0.18);
  min-height: 620px;
}
 
/* ============================================================
   LEFT PANEL
   ============================================================ */
.left-panel {
  background: #2563eb;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 40px 36px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
 
/* Subtle radial glow in left panel */
.left-panel::before {
  content: '';
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%);
  pointer-events: none;
}
 
.left-image-wrap {
  width: 100%;
  max-width: 300px;
  aspect-ratio: 1;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 28px;
  background: #7db8f7;
  flex-shrink: 0;
}
 
.left-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
 
.left-title {
  font-size: 24px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 12px;
  line-height: 1.2;
}
 
.left-sub {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  max-width: 280px;
}
 
/* ============================================================
   RIGHT PANEL
   ============================================================ */
.right-panel {
  background: #ffffff;
  padding: 48px 48px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0;
}
 
.form-title {
  font-size: 26px;
  font-weight: 700;
  color: #2563eb;
  margin-bottom: 6px;
}
 
.form-sub {
  font-size: 14px;
  color: #4a5e80;
  margin-bottom: 24px;
}
 
/* ============================================================
   TAB GROUP
   ============================================================ */
.tab-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #EFF4FF;
  border-radius: 50px;
  padding: 4px;
  margin-bottom: 28px;
}
 
.tab-btn {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #4a5e80;
  background: transparent;
  border: none;
  border-radius: 50px;
  padding: 10px 12px;
  cursor: pointer;
  transition: background 0.22s ease, color 0.22s ease, box-shadow 0.22s ease;
}
 
.tab-btn--active {
  background: #1a42c0;
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.28);
}
 
/* ============================================================
   FORM FIELDS
   ============================================================ */
.form-wrap {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
 
.field-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
 
.field-label {
  font-size: 13px;
  font-weight: 600;
  color: #0f1f3d;
}
 
.input-wrap {
  display: flex;
  align-items: center;
  background: #f5f7ff;
  border: 1.5px solid #dce4f5;
  border-radius: 50px;
  padding: 0 16px;
  gap: 10px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
 
.input-wrap:focus-within {
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
  background: #ffffff;
}
 
.input-icon {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  color: #7a90b8;
}
 
.input-icon svg {
  width: 18px;
  height: 18px;
}
 
.form-input {
  flex: 1;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  color: #0f1f3d;
  background: transparent;
  border: none;
  outline: none;
  padding: 13px 0;
}
 
.form-input::placeholder {
  color: #a0aec0;
}
 
/* Eye toggle */
.eye-btn {
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  color: #7a90b8;
  padding: 0;
  flex-shrink: 0;
  transition: color 0.2s ease;
}
 
.eye-btn:hover {
  color: #2563eb;
}
 
.eye-btn svg {
  width: 18px;
  height: 18px;
}
 
/* ============================================================
   REMEMBER ME + FORGOT
   ============================================================ */
.form-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
 
/* Custom checkbox */
.checkbox-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #4a5e80;
  cursor: pointer;
  user-select: none;
}
 
.checkbox-input {
  display: none;
}
 
.checkbox-box {
  width: 18px;
  height: 18px;
  border: 2px solid #c5d0e8;
  border-radius: 4px;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s, border-color 0.2s;
}
 
.checkbox-input:checked + .checkbox-box {
  background: #2563eb;
  border-color: #2563eb;
}
 
.checkbox-input:checked + .checkbox-box::after {
  content: '';
  width: 5px;
  height: 9px;
  border: 2px solid #fff;
  border-top: none;
  border-left: none;
  transform: rotate(45deg) translateY(-1px);
  display: block;
}
 
.forgot-link {
  font-size: 13px;
  font-weight: 500;
  color: #2563eb;
  text-decoration: none;
  transition: opacity 0.2s;
}
 
.forgot-link:hover {
  opacity: 0.75;
}
 
/* ============================================================
   LOGIN BUTTON
   ============================================================ */
.login-btn {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  background: #1a42c0;
  border: none;
  border-radius: 50px;
  padding: 15px 24px;
  width: 100%;
  cursor: pointer;
  transition: background 0.22s ease, transform 0.15s ease, box-shadow 0.22s ease;
  box-shadow: 0 6px 24px rgba(37, 99, 235, 0.32);
}
 
.login-btn:hover {
  background: #1535a8;
  transform: translateY(-1px);
  box-shadow: 0 10px 28px rgba(37, 99, 235, 0.38);
}
 
.login-btn:active {
  transform: translateY(0);
}
 
/* ============================================================
   SIGN UP TEXT
   ============================================================ */
.signup-text {
  font-size: 13px;
  color: #4a5e80;
  text-align: center;
}
 
.signup-link {
  color: #2563eb;
  font-weight: 500;
  text-decoration: none;
}
 
.signup-link:hover {
  text-decoration: underline;
}
 
/* ============================================================
   DIVIDER
   ============================================================ */
.divider {
  display: flex;
  align-items: center;
  gap: 12px;
}
 
.divider-line {
  flex: 1;
  height: 1px;
  background: #e2e8f0;
}
 
.divider-text {
  font-size: 11px;
  font-weight: 500;
  color: #a0aec0;
  letter-spacing: 0.8px;
  white-space: nowrap;
}
 
/* ============================================================
   SOCIAL BUTTONS
   ============================================================ */
.social-row {
  display: flex;
  justify-content: center;
  gap: 16px;
}
 
.social-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1.5px solid #dce4f5;
  background: #ffffff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.15s ease;
}
 
.social-btn:hover {
  border-color: #2563eb;
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.15);
  transform: translateY(-2px);
}
.page-wrap-login{
  padding: 80px 0;
}




 
/* ============================================================
  Class Page
   ============================================================ */


   /* ============================================================
   SECTION
   ============================================================ */
.classes-section {
  padding: 64px 0 80px;
  background: #F8F9FF;
}
 
/* ============================================================
   GRID – 4 columns, auto rows
   ============================================================ */
.classes-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
 
/* First row: 3 wide cards spanning different column widths */
/* Card 1 = col 1-2 (wide), card 2 = col 3 (narrow), card 3 = col 4 */
.classes-grid .class-card:nth-child(1) { grid-column: span 2; }
.classes-grid .class-card:nth-child(2) { grid-column: span 1; }
.classes-grid .class-card:nth-child(3) { grid-column: span 1; }
 
/* Second row: 4 equal cards */
.classes-grid .class-card:nth-child(4) { grid-column: span 1; }
.classes-grid .class-card:nth-child(5) { grid-column: span 1; }
.classes-grid .class-card:nth-child(6) { grid-column: span 1; }
.classes-grid .class-card:nth-child(7) { grid-column: span 1; }
 
/* ============================================================
   CLASS CARD – BASE
   ============================================================ */
.class-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 24px 24px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  overflow: hidden;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
  border: 1.5px solid #e8eef8;
}
 
.class-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 48px rgba(37, 99, 235, 0.12);
}
 
/* ============================================================
   CARD TOP ROW – icon + bg icon
   ============================================================ */
.card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 6px;
}
 
/* Small coloured icon box */
.card-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
 
.card-icon-wrap svg {
  width: 26px;
  height: 26px;
}
 
.card-icon-wrap--blue   { background: #dce8ff; }
.card-icon-wrap--green  { background: #d1fae5; }
.card-icon-wrap--olive  { background: #fef9c3; }
 
/* Large faded background illustration */
.card-bg-icon {
  width: 80px;
  height: 80px;
  flex-shrink: 0;
  opacity: 0.55;
}
 
.card-bg-icon svg {
  width: 100%;
  height: 100%;
}
 
/* ============================================================
   CARD LABELS & TEXT
   ============================================================ */
.card-label {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}
 
.card-label--blue  { color: #2563eb; }
.card-label--green { color: #059669; }
.card-label--olive { color: #854d0e; }
 
.card-title {
  font-size: 20px;
  font-weight: 700;
  color: #0f1f3d;
  line-height: 1.25;
}
 
.card-subjects {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  color: #64748b;
  margin-bottom: 4px;
}
 
.subject-icon {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  color: #94a3b8;
}
 
/* ============================================================
   CARD BUTTON
   ============================================================ */
.card-btn {
  display: block;
  text-align: center;
  text-decoration: none;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
  border-radius: 50px;
  padding: 13px 20px;
  margin-top: 4px;
  transition: opacity 0.2s ease, transform 0.15s ease;
}
 
.card-btn:hover {
  opacity: 0.88;
  transform: translateY(-1px);
}
 
.card-btn--blue  { background: #2563eb; }
.card-btn--green { background: #059669; }
.card-btn--olive { background: #854d0e; }
 
/* ============================================================
   BOTTOM ACCENT BAR
   ============================================================ */
.card-footer-bar {
  height: 5px;
  border-radius: 0 0 18px 18px;
  margin: 10px -24px 0;
}
 
.card-footer-bar--blue  { background: #2563eb; }
.card-footer-bar--green { background: #059669; }
.card-footer-bar--olive { background: #854d0e; }



/* ============================================================
   Subject
   ============================================================ */

   /* ============================================================
   SECTION
   ============================================================ */
.subjects-section {
  background: #ffffff;
  padding: 64px 0 80px;
}
 
/* ============================================================
   4-COLUMN GRID
   ============================================================ */
.subjects-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  align-items: stretch;
}
 
/* ============================================================
   SUBJECT CARD
   ============================================================ */
.subject-card {
  background: #ffffff;
  border: 1.5px solid #e8eef8;
  border-radius: 20px;
  padding: 28px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}
 
.subject-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 48px rgba(37, 99, 235, 0.10);
}
 
/* ============================================================
   ICON CIRCLE
   ============================================================ */
.card-icon-wrap {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
 
.card-icon-wrap svg {
  width: 28px;
  height: 28px;
}
 
.card-icon--blue   { background: #dce8ff; }
.card-icon--green  { background: #d1fae5; }
.card-icon--yellow { background: #fef9c3; }
.card-icon--red    { background: #ffe4e6; }
 
/* ============================================================
   BADGE
   ============================================================ */
.card-badge {
  display: inline-block;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  border-radius: 50px;
  padding: 4px 12px;
  width: fit-content;
}
 
.card-badge--blue   { background: #dce8ff; color: #2563eb; }
.card-badge--green  { background: #d1fae5; color: #059669; }
.card-badge--yellow { background: #fef9c3; color: #b45309; }
.card-badge--red    { background: #ffe4e6; color: #be123c; }
 
/* ============================================================
   TITLE & DESCRIPTION
   ============================================================ */
.card-title {
  font-size: 22px;
  font-weight: 700;
  color: #0f1f3d;
  line-height: 1.2;
  margin-top: -4px;
  text-align: left;
}
 
.card-desc {
  font-size: 14px;
  color: #4a5e80;
  line-height: 1.75;
  flex: 1;
  text-align: left;
}
 
/* ============================================================
   CARD FOOTER – button or tag row
   ============================================================ */
.card-footer {
  margin-top: 6px;
}
 
/* ── Buttons ── */
.card-btn {
  display: inline-block;
  text-decoration: none;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 500;
  border-radius: 50px;
  padding: 11px 22px;
  border: 1.5px solid;
  background: transparent;
  transition: background 0.22s ease, color 0.22s ease, transform 0.15s ease;
  cursor: pointer;
  white-space: nowrap;
  width: 100%;
}
 
.card-btn:hover {
  transform: translateY(-1px);
}
 
.card-btn--blue {
  color: #2563eb;
  border-color: #b8d0f8;
  background: #f0f5ff;
}
.card-btn--blue:hover {
  background: #2563eb;
  color: #ffffff;
  border-color: #2563eb;
}
 
.card-btn--green {
  color: #059669;
  border-color: #a7f3d0;
  background: #f0fdf8;
}
.card-btn--green:hover {
  background: #059669;
  color: #ffffff;
  border-color: #059669;
}
 
.card-btn--red {
  color: #be123c;
  border-color: #fecdd3;
  background: #fff5f7;
}
.card-btn--red:hover {
  background: #be123c;
  color: #ffffff;
  border-color: #be123c;
}
 
/* ── Tags (English card) ── */
.card-footer--tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
 
.card-tag {
  font-size: 13px;
  font-weight: 500;
  color: #4a5e80;
  border: 1.5px solid #d1d9ee;
  border-radius: 50px;
  padding: 9px 18px;
  background: #f8f9ff;
  transition: border-color 0.2s ease, color 0.2s ease;
  cursor: pointer;
  text-align: center;
  width: 100%;
}
 
.card-tag:hover {
  border-color: #2563eb;
  color: #2563eb;
}
 
.card-tag--olive {
  color: #059669 !important;
    border-color: #d1fae5 !important;
    background: #d1fae5 !important;
}
 
.card-tag--olive:hover {
  border-color: #854d0e;
      box-shadow: 0 6px 20px rgba(26, 86, 219, 0.38);
    transform: translateY(-1px);
}






#chapter{
  padding: 80px 0 0;
}


/* ---------- Grid ---------- */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
 
/* ---------- Card ---------- */
.card {
  background: #ffffff;
  border-radius: 20px;
  
  display: flex;
  flex-direction: column;
  gap: 0;
  box-shadow: 0 2px 16px rgba(100, 120, 200, 0.08);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
 
.card:hover {
  box-shadow: 0 8px 32px rgba(100, 120, 200, 0.16);
  transform: translateY(-3px);
}
 
/* ---------- Icon / Image area ---------- */
.card-icon {
  position: relative;
  width: 72px;
  height: 72px;
  margin-bottom: 24px;
}
 
#chapter .card-img {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  opacity: 0;         /* hide the real img; show badge only */
  position: absolute;
  top: 0; left: 0;
}
 
.icon-badge {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #dde6f8;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #1a56db;
  position: relative;
  z-index: 1;
}
 
/* ---------- Card Text ---------- */
.card-title {
  font-size: 18px;
  font-weight: 600;
  color: #111827;
  margin-bottom: 12px;
  line-height: 1.3;
}
 
.card-desc {
  font-size: 13.5px;
  font-weight: 400;
  color: #6b7280;
  line-height: 1.7;
  flex: 1;
  margin-bottom: 28px;
}
 
/* ---------- Button ---------- */
.card-btn {
  display: block;
  width: 100%;
  padding: 15px 20px;
  background: #1a56db;
  color: #ffffff;
  border: none;
  border-radius: 50px;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  text-align: center;
  transition: background 0.2s ease, box-shadow 0.2s ease, transform 0.15s ease;
  box-shadow: 0 4px 14px rgba(26, 86, 219, 0.28);
  margin-top: auto;
}
 
.card-btn:hover {
  background: #1648c2;
  box-shadow: 0 6px 20px rgba(26, 86, 219, 0.38);
  transform: translateY(-1px);
}
 
.card-btn:active {
  transform: translateY(0);
}

.card-btn--green{
    color: #059669 !important;
    border-color: #d1fae5 !important;
    background: #d1fae5 !important;
}



/* ── Page & Container ── */
.lp-page {
  width: 100%;
}
 
.lp-wrap {
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 40px;
}
 
/* ================================================================
   BREADCRUMB
   ================================================================ */
.lp-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: #6b7280;
  margin-bottom: 14px;
}
 
.lp-bc-item {
  display: flex;
  align-items: center;
  gap: 5px;
  color: #6b7280;
}
 
.lp-bc-item svg {
  color: #6b7280;
  flex-shrink: 0;
}
 
.lp-bc-sep {
  color: #9ca3af;
  font-size: 15px;
}
 
.lp-bc-active {
  color: #1a5fd4;
  font-weight: 600;
}
 
/* ================================================================
   PAGE TITLE
   ================================================================ */
.lp-page-title {
  font-size: 30px;
  font-weight: 800;
  color: #0d1b2e;
  line-height: 1.2;
  margin-bottom: 28px;
  letter-spacing: -0.3px;
}
 
/* ================================================================
   TABS
   ================================================================ */
.lp-tabs {
  display: flex;
  align-items: flex-end;
  gap: 0;
  margin-bottom: 0;
}
 
.lp-tab {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #6b7280;
  background: none;
  border: none;
  padding: 12px 20px 14px;
  cursor: pointer;
  position: relative;
  border-bottom: 2.5px solid transparent;
  transition: color 0.2s ease;
  white-space: nowrap;
}
 
.lp-tab:hover {
  color: #1a5fd4;
}
 
.lp-tab--active {
  color: #1a5fd4;
  font-weight: 600;
  border-bottom-color: #1a5fd4;
}
 
.lp-tab-divider {
  width: 100%;
  height: 1.5px;
  background: #e5e7eb;
  margin-bottom: 28px;
}
 
/* ================================================================
   VIDEO PLAYER
   ================================================================ */
.lp-video-wrap {
  position: relative;
  width: 100%;
  border-radius: 18px;
  overflow: hidden;
  margin-bottom: 24px;
  background: #111;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.14);
}
 
.lp-video-thumb {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
  filter: brightness(0.82);
}
 
.lp-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #1a5fd4;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 6px 24px rgba(26, 95, 212, 0.45);
  transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
  padding-left: 4px; /* optical center for play triangle */
}
 
.lp-play-btn:hover {
  background: #1450b8;
  transform: translate(-50%, -50%) scale(1.07);
  box-shadow: 0 8px 32px rgba(26, 95, 212, 0.55);
}
 
.lp-play-btn svg {
  flex-shrink: 0;
}
 
/* ================================================================
   ABOUT THIS LESSON BOX
   ================================================================ */
.lp-about-box {
  background: #ffffff;
  border: 1.5px solid #e8edf7;
  border-radius: 20px;
  padding: 32px 36px 28px;
  margin-bottom: 40px;
  box-shadow: 0 2px 12px rgba(100, 120, 200, 0.06);
}
 
/* MODULE 1 tag */
.lp-module-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #16a34a;
  background: #dcfce7;
  border-radius: 50px;
  padding: 5px 14px;
  margin-bottom: 14px;
}
 
.lp-about-title {
  font-size: 22px;
  font-weight: 700;
  color: #0d1b2e;
  margin-bottom: 14px;
  line-height: 1.25;
}
 
.lp-about-text {
  font-size: 14.5px;
  line-height: 1.8;
  color: #4a5568;
  font-weight: 400;
  margin-bottom: 28px;
}
 
/* ── Meta Row ── */
.lp-meta-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  background: #f8faff;
  border: 1.5px solid #e8edf7;
  border-radius: 14px;
  padding: 18px 24px;
  gap: 0;
}
 
.lp-meta-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 16px;
}
 
.lp-meta-item:first-child {
  padding-left: 0;
}
 
.lp-meta-item:last-child {
  padding-right: 0;
}
 
.lp-meta-icon {
  flex-shrink: 0;
  color: #1a5fd4;
}
 
.lp-meta-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
 
.lp-meta-label {
  font-size: 11px;
  font-weight: 600;
  color: #9ca3af;
  text-transform: uppercase;
  letter-spacing: 0.6px;
}
 
.lp-meta-value {
  font-size: 15px;
  font-weight: 700;
  color: #0d1b2e;
}
 
.lp-meta-divider {
  width: 1.5px;
  height: 40px;
  background: #e2e8f5;
  flex-shrink: 0;
}
 
/* ================================================================
   LEARNING RESOURCES
   ================================================================ */
.lp-resources-title {
  font-size: 22px;
  font-weight: 700;
  color: #0d1b2e;
  margin-bottom: 18px;
}
 
.lp-resources-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
 
/* Resource Card */
.lp-resource-card {
  background: #ffffff;
  border: 1.5px solid #e8edf7;
  border-radius: 16px;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
  box-shadow: 0 2px 10px rgba(100, 120, 200, 0.06);
}
 
.lp-resource-card:hover {
  box-shadow: 0 6px 24px rgba(100, 120, 200, 0.12);
  transform: translateY(-2px);
}
 
/* Icon circle */
.lp-resource-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
 
.lp-resource-icon--red  { background: #fff1f2; }
.lp-resource-icon--blue { background: #eff6ff; }
 
.lp-resource-info {
  display: flex;
  flex-direction: column;
  gap: 3px;
  flex: 1;
  min-width: 0;
}
 
.lp-resource-name {
  font-size: 14px;
  font-weight: 600;
  color: #0d1b2e;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
 
.lp-resource-meta {
  font-size: 12.5px;
  color: #9ca3af;
  font-weight: 400;
}
 
.lp-resource-action {
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #64748b;
  transition: background 0.2s ease, color 0.2s ease;
}
 
.lp-resource-action:hover {
  background: #f1f5f9;
  color: #1a5fd4;
}







*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --primary: #420C51;
  --primary-mid: #420C51;
  --accent: #E8063C;
  --bg: #f1f5f9;
  --card-bg: #ffffff;
  --border: #e2e8f0;
  --text: #1e293b;
  --muted: #404040;
  /*--active-card: linear-gradient(135deg, #3b0764 0%, #7c3aed 100%);*/
  --active-card: #420C51;
  --option-border: #420C51;
  --shadow: 0 4px 24px rgba(109, 40, 217, 0.10);
  --green: #0E7700;
  --green-light: #dcfce7;
}

body {
  font-family: 'Poppins', sans-serif;
  background: var(--bg);
  color: var(--text);
}

section.chapter-form-section {
  font-family: Jost, sans-serif;
  background: #fff;
  padding-top: var(--section-space);
}

.chapter-header {
  background: #F0F6FA;
  border-radius: 16px;
  padding: 28px 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.chapter-header__info h1 {
  font-size: clamp(24px, 3vw, 30px);
  font-weight: 900;
  color: var(--text);
  margin-bottom: 8px;
}

.chapter-header__info p {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.6;
  max-width: 540px;
  font-weight: 400;
}

.chapter-price {
  text-align: right;
  flex-shrink: 0;
  gap: 10px;
}

.chapter-price .amount {
  font-family: var(--title-font);
  font-size: clamp(28px, 5vw, 40px);
  font-weight: 600;
  color: var(--accent);
  line-height: 1;
}

.chapter-price .label {
  font-size: 16px;
  color: var(--muted);
}

.main-layout {
  
  grid-template-columns: 320px 1fr;
  gap: 50px;
  align-items: start;
}

.sidebar {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.module-card {
  background: var(--card-bg);
  border-radius: 50px;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1.5px solid var(--border);
  transition: all 0.22s ease;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  color: var(--text);

}

.module-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--primary-mid));
  border-radius: 0 0 14px 14px;
}

.module-card:hover {
  border-color: var(--primary-mid);
  box-shadow: var(--shadow);
  transform: translateY(-1px);
  box-shadow: 0px 0px 10px 0px #420C5187;
}

.module-card.active {
  background: var(--active-card);
  border-color: transparent;
  color: #fff;
  box-shadow: 0px 0px 10px 0px #420C5187;
}

.module-card.active::after {
  background: var(--accent);
}

.module-card__text .title {
  font-family: var(--title-font);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.375;
}

.module-card__text .sub {
  font-size: 14px;
  font-weight: 400;
  margin-top: 2px;
  line-height: 1.375;
}

.module-card.active .module-card__text .title {
  color: #fff;
}

.module-card.active .module-card__text .sub {
  color: rgba(255, 255, 255, 1);
}

.module-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  flex-shrink: 0;
}

.module-icon svg {
  width: 18px;
  height: 18px;
}

.check-icon {
  display: none;
}

.lock-icon {
  display: flex;
}

.module-card.active .check-icon {
  display: flex;
}

.module-card.active .lock-icon {
  display: none;
}

/* Quiz Panel */
.quiz-panel {
  background: var(--card-bg);
  border-radius: 15px;
      box-shadow: 0px 4px 4px 0px #cee0ff;
  border: 1px solid #00000040;
  padding: clamp(24px, 4vw, 40px);
  display: flex;
  flex-direction: column;
  gap: 28px;
  position: relative;
}

.question-block {
  display: none;
  flex-direction: column;
  gap: 20px;
}

.question-block.active {
  display: flex;
}

.quiz-question {
 font-size: 23px;
    font-weight: 600;
    color: #0d1b2e;
    line-height: 1.5;
}

.answer-label {
  font-family: var(--title-font);
  font-size: 20px;
  font-weight: 500;
  color: var(--primary-mid);
}

.options-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.option-label input[type="radio"] {
  display: none;
}

.option-label {
  cursor: pointer;
  display: block;
  position: relative;
}

.option-box {
  display: block;
  background: #fff;
  border: 1px solid #C2C6D6;
  border-radius: 50px;
  padding: 16px 24px;
  font-family: var(--title-font);
  font-size: 18px;
  font-weight: 500;
  color: var(--text);
  transition: all 0.2s ease;
}

.option-label:hover .option-box {
     border-color: #1a5fd4;
    box-shadow: 0 2px 12px rgba(109, 40, 217, 0.15);
    background: #f1f6ff;
}



.option-label input[type="radio"]:checked+.option-box {
 border-color: #1a5fd4;
    background: #c7dcff;
    color: #01296c;
}

/* Validation error */
.validation-msg {
  display: none;
  align-items: center;
  gap: 8px;
  background: #fff1f2;
  border: 1.5px solid #fecdd3;
  border-radius: 10px;
  padding: 10px 16px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent);
  animation: slideIn 0.25s ease;
}

.validation-msg.show {
  display: flex;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes shake {

  0%,
  100% {
    transform: translateX(0);
  }

  20% {
    transform: translateX(-6px);
  }

  40% {
    transform: translateX(6px);
  }

  60% {
    transform: translateX(-4px);
  }

  80% {
    transform: translateX(4px);
  }
}

.shake {
  animation: shake 0.4s ease;
}

/* Footer */
.quiz-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.progress-counter {
  font-family: Jost, sans-serif;
  font-size: 30px;
  font-weight: 900;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 4px;
}

.progress-counter .current {
  font-size: 30px;
  color: #1a5fd4;
}

.nav-btn {
  background: none;
  border: none;
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  padding: 8px 4px;
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--primary);
  transition: color 0.2s, gap 0.2s;
}

.nav-btn:hover {
  color: #1a5fd4;
  gap: 10px;
}

.nav-btn:disabled {
  color: var(--muted);
  cursor: not-allowed;
  gap: 6px;
}

.submit-btn {
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 50px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  padding: 10px 28px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: background 0.2s, transform 0.15s;
}

.submit-btn:hover {
  background: #be123c;
  transform: scale(1.03);
}

/* ─── Inline Result Screen ─── */
.result-screen {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px 0 8px;
  gap: 20px;
  animation: fadeUp 0.4s ease both;
}

.result-screen.show {
  display: flex;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.congrats-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--green-light);
  animation: iconPop 0.5s 0.15s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

@keyframes iconPop {
  from {
    transform: scale(0);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

.congrats-icon svg {
  width: 36px;
  height: 36px;
}

.congrats-title {
  font-family: var(--title-font);
  font-size: 30px;
  font-weight: 600;
  color: var(--green);
}

.congrats-desc {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.7;
  max-width: 420px;
}

.congrats-score {
  font-family: Jost, sans-serif;
  font-size: 2.6rem;
  font-weight: 900;
  color: var(--text);
}

.congrats-score .score-val {
  color: var(--accent);
}









/* ── Review Panel ── */
.review-panel {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* Each question card — same shadow/border as .quiz-panel */
.review-card {
  background: var(--card-bg);
  border-radius: 15px;
  box-shadow: 0px 4px 4px 0px #00000040;
  border: 1px solid #00000040;
  padding: clamp(24px, 4vw, 40px);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Question text — exact .quiz-question style */
.review-question {
  font-size: clamp(24px, 2.5vw, 30px);
  font-weight: 600;
  color: var(--primary);
  line-height: 1.5;
}

/* "Answer :" label — exact .answer-label style */
.review-answer-label {
  font-size: 20px;
  font-weight: 500;
  color: var(--primary-mid);
}

/* Options grid — exact .options-grid */
.review-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

/* Base option pill — exact .option-box style */
.rev-option {
  display: block;
  background: #fff;
  border: 1px solid var(--option-border);
  border-radius: 50px;
  padding: 16px 24px;
  font-size: 18px;
  font-weight: 500;
  color: var(--text);
  position: relative;
}

/* Pink underline — exact .option-label::after */
.rev-option::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 87%;
  height: 2px;
  background: #FF94AE;
  border-radius: 112px;
  z-index: 1;
  top: 100%;
}

/* ✅ Correct answer — solid green filled */
.rev-option.correct {
  background: #3DC20A;
  border-color: #3DC20A;
  border-width: 2px;
  color: #ffffff;
}

.rev-option.correct::after {
  display: none;
}

/* ❌ User's wrong selection — solid red/pink filled */
.rev-option.wrong {
  background: #FF5B6E;
  border-color: #FF5B6E;
  border-width: 2px;
  color: #ffffff;
}

.rev-option.wrong::after {
  display: none;
}




.buy-panel {
            background: var(--card-bg);
            border-radius: 16px;
            border: 1.5px dashed #c4b5fd;
            padding: 52px 48px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            gap: 28px;
        }

        .buy-desc {
            font-size: clamp(17px, 2vw, 21px);
            font-weight: 700;
            color: var(--primary);
            line-height: 1.6;
        }

        /* Price row: 50rs / All Modules — all on one line */
        .buy-price-row {
            display: flex;
            align-items: baseline;
            gap: 8px;
            justify-content: center;
        }
        .buy-price-amount {
            font-size: clamp(34px, 4vw, 46px);
            font-weight: 900;
            color: var(--accent);
            line-height: 1;
            
            letter-spacing: -1px;
        }
        .buy-price-unit {
            font-size: clamp(20px, 2.5vw, 28px);
            font-weight: 700;
            color: var(--accent);
        }
        .buy-price-label {
            font-size: 14px;
            color: var(--muted);
            font-weight: 400;
            letter-spacing: 0;
        }

        #chapter-details{
          padding: 80px 0;
        }




.hide-quiz{
  display: none;
}

.quiz-card{
    background:#EFF4FF;
    border:1px solid #d7dce6;
    border-radius:30px;
    padding:70px 30px;
    text-align:center;
}

.icon-box{
    margin-bottom:25px;
}

.icon-box img{
    width:60px;
    height:60px;
    object-fit:cover;
    border-radius:12px;
}

.quiz-card h2{
    font-size:30px;
    font-weight:600;
    color:#1b2333;
    margin-bottom:18px;
}

.quiz-card p{
    max-width:620px;
    margin:0 auto 35px;
    font-size:16px;
    line-height:1.8;
    color:#6b7280;
}

.quiz-card button{
    background:#0d5bc8;
    color:#fff;
    border:none;
    border-radius:50px;
    padding:18px 48px;
    font-size:18px;
    font-weight:500;
    cursor:pointer;
    transition:0.3s ease;
    box-shadow:0 6px 12px rgba(13,91,200,.25);
}

.quiz-card button:hover{
    transform:translateY(-2px);
    background:#084bab;
}



.premium-wrapper{
    background:#edf0f7;
    border:1px solid #d9deea;
    border-radius:40px;
    padding:30px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:80px;
}

/* LEFT CARD */

.course-card{
    width:380px;
    background:#fff;
    border-radius:30px;
    overflow:hidden;
    box-shadow:0 8px 25px rgba(0,0,0,0.05);
}

.course-image{
    position:relative;
    height:250px;
}

.course-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

.premium-badge{
    position:absolute;
    top:18px;
    left:18px;
    background:#ffc928;
    color:#333;
    padding:6px 14px;
    border-radius:30px;
    font-size:13px;
    font-weight:500;
    z-index:2;
}

.course-content{
    padding:25px;
}

.course-content h3{
    font-size:22px;
    line-height:1.4;
    font-weight:600;
    color:#15233b;
    margin-bottom:20px;
}

.course-content ul{
    list-style:none;
}

.course-content li{
    margin-bottom:12px;
    font-size:16px;
    color:#4b5563;
}

/* RIGHT */

.premium-content{
    flex:1;
}

.premium-content h2{
    font-size:32px;
    line-height:1.3;
    font-weight:700;
    color:#15233b;
    margin-bottom:20px;
}

.premium-content p{
    max-width:650px;
    font-size:16px;
    line-height:1.8;
    color:#616b7c;
    margin-bottom:30px;
}

.pricing-box{
    display:inline-block;
    background:#ffffff;
    padding:25px;
    border-radius:25px;
    margin-bottom:30px;
}

.plan-title{
    display:block;
    font-size:14px;
    letter-spacing:1px;
    color:#444;
    margin-bottom:0px;
}

.price-row{
    display:flex;
    align-items:flex-end;
    gap:5px;
}

.price{
    font-size:40px;
    font-weight:700;
    color:#0d5bc8;
}

.year{
    font-size:18px;
    color:#555;
    margin-bottom:10px;
}

.monthly-price{
    margin-top:10px;
    color:#7a7a7a;
    font-size:15px;
}


.cta-btn:hover{
    transform:translateY(-2px);
}

.plan-link{
    display:block;
    margin-top:20px;
    color:#0d5bc8;
    text-decoration:none;
    font-size:17px;
}
.premium-btn{
  margin-top: 25px;
}








 
