/* ============================================================
   UNIVERSAL MIGRATION — IELTS COACHING PAGE
   Extends assets/css/style.css (same design tokens/fonts).
   Only page-specific additions live here.
   ============================================================ */

/* ---------- Page Banner (base + IELTS variant) ---------- */
.page-banner {
  position: relative;
  padding: 150px 0 60px;
  background: linear-gradient(
    135deg,
    rgba(0, 82, 163, 0.93) 0%,
    rgba(18, 166, 166, 0.88) 100%
  );
  color: #fff;
  overflow: hidden;
}

.page-banner::before,
.page-banner::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.45;
  pointer-events: none;
}

.page-banner::before {
  width: 320px;
  height: 320px;
  background: rgba(255, 255, 255, 0.25);
  top: -120px;
  left: -80px;
}

.page-banner::after {
  width: 260px;
  height: 260px;
  background: rgba(18, 166, 166, 0.55);
  bottom: -100px;
  right: -60px;
}

.page-banner .container {
  position: relative;
  z-index: 2;
}

.page-banner .kicker {
  display: inline-block;
  padding: 8px 20px;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.25);
  font-weight: 600;
  margin-bottom: 18px;
  font-size: 14px;
  letter-spacing: 0.5px;
}

.page-banner h1 {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 800;
  margin-bottom: 16px;
  line-height: 1.15;
}

.page-banner p {
  font-size: 1.05rem;
  max-width: 720px;
  opacity: 0.95;
  margin-bottom: 0;
}

.page-banner .breadcrumb-bar {
  margin-top: 22px;
  font-size: 14px;
  opacity: 0.9;
}

.page-banner .breadcrumb-bar a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
}

.page-banner .breadcrumb-bar a:hover {
  text-decoration: underline;
}

.page-banner .breadcrumb-bar i {
  margin: 0 10px;
  font-size: 11px;
}

@media (max-width: 768px) {
  .page-banner {
    padding: 130px 0 50px;
  }
}

/* ---------- Track cards (Academic / General Training) ---------- */
.track-card {
  background: #fff;
  border-radius: 24px;
  padding: 40px 34px;
  height: 100%;
  border: 1px solid rgba(0, 102, 214, 0.08);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
  transition: 0.4s ease;
}

.track-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 48px rgba(0, 90, 169, 0.15);
}

.track-card .process-icon {
  background: var(--soft-blue);
}

.track-card h4 {
  font-weight: 800;
  margin-bottom: 14px;
  color: var(--dark);
}

.track-card p {
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 0;
}

.track-card .track-tag {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 50px;
  background: var(--warm);
  color: #b9660a;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.4px;
  margin-bottom: 18px;
}

/* ---------- Exam format tabs ---------- */
.exam-tabs-section {
  text-align: center;
}

/* ---------- Skill Assessment Cards (Speaking / Listening / Reading / Writing) ---------- */
.skill-cards-row {
  margin-top: 6px;
}

.skill-card {
  position: relative;
  background: #fff;
  border-radius: 22px;
  padding: 36px 26px;
  height: 100%;
  border: 1px solid rgba(0, 102, 214, 0.08);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  animation: skillFadeUp 0.6s ease both;
}

.skill-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 48px rgba(0, 90, 169, 0.15);
}

/* light sweep across the card on hover */
.skill-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -60%;
  width: 45%;
  height: 100%;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.65) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: skewX(-20deg);
  transition: left 0.85s ease;
  pointer-events: none;
}

.skill-card:hover::before {
  left: 130%;
}

.skill-card .process-icon {
  background: var(--soft-blue);
  position: relative;
  z-index: 1;
}

.skill-card h4 {
  font-weight: 800;
  margin: 4px 0 12px;
  color: var(--dark);
  position: relative;
  z-index: 1;
}

.skill-card .skill-meta {
  display: inline-block;
  background: var(--soft-blue);
  color: var(--primary-dark);
  font-weight: 700;
  font-size: 12.5px;
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
}

.skill-card p {
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 0;
  font-size: 0.95rem;
  position: relative;
  z-index: 1;
}

@keyframes skillFadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .skill-card {
    padding: 28px 22px;
  }
}

/* ---------- About / Intro (image + copy) ---------- */
.ielts-about .ielts-about-img {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 30px 60px -25px rgba(0, 102, 214, 0.45);
}

.ielts-about .ielts-about-img::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 28px;
  background: linear-gradient(180deg, transparent 60%, rgba(0, 102, 214, 0.18));
  pointer-events: none;
}

.ielts-about .ielts-about-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
  aspect-ratio: 4 / 5;
}

.ielts-about .ielts-about-img:hover img {
  transform: scale(1.04);
}

.ielts-about .ielts-stat {
  position: absolute;
  left: 24px;
  bottom: 24px;
  z-index: 2;
  background: #fff;
  border-radius: 18px;
  padding: 16px 22px;
  box-shadow: 0 18px 36px -18px rgba(0, 33, 105, 0.35);
  display: flex;
  align-items: center;
  gap: 14px;
}

.ielts-about .ielts-stat .num {
  font-family: "Plus Jakarta Sans", "Manrope", "Segoe UI", Arial, sans-serif;
  font-weight: 800;
  font-size: 1.8rem;
  color: var(--primary);
  line-height: 1;
}

.ielts-about .ielts-stat .label {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.3;
  max-width: 110px;
}

.ielts-about p {
  color: var(--text);
  font-size: 1.02rem;
  line-height: 1.8;
  margin-bottom: 18px;
}

.ielts-about p:last-of-type {
  margin-bottom: 0;
}

.ielts-about a {
  color: var(--primary);
  font-weight: 700;
  text-decoration: none;
}

.ielts-about a:hover {
  text-decoration: underline;
}

@media (max-width: 991px) {
  .ielts-about .ielts-stat {
    left: 16px;
    bottom: 16px;
    padding: 12px 16px;
  }
}
