/* ===============================
   PAGE
=============================== */

.learn-page {
  padding: 70px 20px;
}

/* ===============================
   HERO (FIXED)
=============================== */

.hero-new {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  margin-bottom: 40px;
}

.hero-left h1 {
  font-size: 2.4rem;
  margin-top: 10px;
}

.hero-right {
  max-width: 420px;
  color: var(--text-secondary);
}

/* MOBILE */
@media (max-width: 768px) {
  .hero-new {
    flex-direction: column;
    text-align: center;
  }

  .hero-right {
    max-width: 100%;
  }
}

/* ===============================
   MAIN CARD (TIGHTER)
=============================== */

.main-card {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 30px;

  background: #fff;
  padding: 30px;
  border-radius: var(--radius-lg);

  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

@media (max-width: 900px) {
  .main-card {
    grid-template-columns: 1fr;
  }
}

/* ===============================
   LEFT CONTENT
=============================== */

.intro {
  font-size: 1.05rem;
  margin-bottom: 15px;
}

/* INFO STRIP (BIG IMPROVEMENT) */
.info-strip {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;

  background: #f4f9f8;
  padding: 12px 18px;
  border-radius: 12px;
  margin-bottom: 20px;
}

/* GRID */
.grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin: 15px 0;
}

@media (max-width: 600px) {
  .grid {
    grid-template-columns: 1fr;
  }
}

.card-mini {
  background: #f8fbfb;
  padding: 12px;
  border-radius: 10px;
  font-size: 0.95rem;
}

/* BOX */
.box {
  background: #f8fbfb;
  padding: 18px;
  border-radius: 12px;
  margin-top: 15px;
}

/* APPLY BOX */
.apply-box {
  background: #eef7f6;
  padding: 18px;
  border-radius: 12px;
  margin-top: 15px;
}

.phone {
  margin-top: 8px;
  font-weight: 600;
}

/* ===============================
   RIGHT SIDE (STICKY 🔥)
=============================== */

.media {
  display: flex;
  flex-direction: column;
  gap: 15px;
  position: sticky;
  top: 90px;
  height: fit-content;
}

.media img {
  width: 100%;
  border-radius: 14px;
}

/* ===============================
   BADGE
=============================== */

.badge-live {
  background: var(--accent);
  color: #fff;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.8rem;
}

/* ===============================
   BUTTONS
=============================== */

.btn-main {
  display: inline-block;
  margin-top: 20px;
  background: var(--primary);
  color: #fff;
  padding: 12px 26px;
  border-radius: 999px;
}

.btn-whatsapp {
  display: inline-block;
  margin-top: 10px;
  background: #25d366;
  color: #fff;
  padding: 10px 20px;
  border-radius: 999px;
}

/* ===============================
   TEXT
=============================== */

.note {
  margin-top: 15px;
}

.footer {
  text-align: center;
  margin-top: 20px;
  font-style: italic;
}

/* ===============================
   BACK
=============================== */

.back {
  margin-top: 20px;
  border: 1px solid var(--text-muted);
  padding: 8px 18px;
  border-radius: 999px;
  background: transparent;
}

/* NEW ADDITIONS */

.fees {
  padding-left: 18px;
}

.enquiry form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.enquiry input,
.enquiry textarea {
  padding: 10px;
  border-radius: 8px;
  border: 1px solid #ccc;
}

.btn-secondary {
  display: inline-block;
  margin-top: 10px;
  background: #444;
  color: #fff;
  padding: 10px;
  border-radius: 999px;
  text-align: center;
}

/* STUDENTS SCROLL */
.students-scroll {
  margin-top: 30px;
  overflow: hidden;
}

.scroll-row {
  display: flex;
  gap: 20px;
  width: max-content;
}

.student-card {
  min-width: 180px;
  background: #f8fbfb;
  padding: 10px;
  border-radius: 12px;
  text-align: center;
}

.student-card img {
  width: 250px;
  height: 200px;
  border-radius: 10px;
  object-fit: contain;
  margin-bottom: 10px;
}

.error {
  color: #ff4d4d;
  font-size: 12px;
  display: block;
  text-align: left;
  margin-bottom: 10px;
}


