/* ================= HERO ================= */
.parents-hero {
  min-height: 55vh; /* reduced height */
  display: flex;
  align-items: center;
  background: url("../images/banner/parents.jpg")
    no-repeat right center / cover;
}

.hero-inner {
  max-width: 560px;
  margin-left: 80px;
}

.hero-pill {
  background: #fff;
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 0.8rem;
  display: inline-block;
  margin-bottom: 14px;
}

.hero-title {
  font-size: 2.6rem;
  font-weight: 800;
  line-height: 1.2;
}

.hero-title span {
  background: linear-gradient(90deg,#ff4fae,#ffb000,#4fd2ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-text {
  margin-top: 14px;
  color: #555;
  max-width: 460px;
}

/* ================= PARENTS ================= */


.parents-premium {
  position: relative;
  padding: 4.5rem 1.5rem;
  background: #fffaf7;
  overflow: hidden;
}

/* Background glow */
.parents-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 15%, #ffe4ec 0%, transparent 45%),
    radial-gradient(circle at 80% 25%, #e8f6ff 0%, transparent 45%),
    radial-gradient(circle at 50% 90%, #fff1c9 0%, transparent 50%);
  opacity: 0.6;
  z-index: 0;
}

.parents-inner {
  position: relative;
  z-index: 2;
}

/* ================= HEADER ================= */

.parents-header {
  max-width: 780px;
  margin: 0 auto 3rem;
}

.parents-intro {
  font-size: 1rem;
  color: #555;
  margin-top: 1rem;
  line-height: 1.6;
}

/* ================= GRID ================= */

.parents-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.8rem;
}

/* ================= CARDS ================= */

.parents-card {
position: relative;
  background:
    url("../../assets/images/section4/Our featured content_bg.png") no-repeat;
  background-size: cover;

  padding: 36px 34px;
  border-radius: 28px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

/* Card hover */
.parents-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.12);
}

/* Titles */
.parents-card h3 {
  font-size: 1.25rem;
  margin-bottom: 1.2rem;
  font-weight: 700;
}

/* ================= LIST ================= */

.parents-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.parents-list li {
  font-size: 0.95rem;
  color: #444;
  margin-bottom: 0.75rem;
  line-height: 1.5;
}

/* Tips spacing */
.tips-list li {
  margin-bottom: 0.9rem;
}

/* ================= BUTTON ================= */

.btn-secondary {
  display: inline-block;
  margin-top: 1.5rem;
  padding: 12px 28px;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  color: #ff4fae;
  background: #fff;
  border: 2px solid #ff4fae;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background: linear-gradient(90deg, #ff4fae, #ffb000);
  color: #fff;
  border-color: transparent;
}

/* ================= TABLET ================= */

@media (min-width: 768px) {
  .parents-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .parents-premium {
    padding: 5.5rem 2rem;
  }
}

/* ================= DESKTOP ================= */

@media (min-width: 1024px) {
  .parents-card {
    padding: 2.4rem 2.2rem;
  }
}
/* ================= ABOUT CLOSING ================= */

.about-closing {
  position: relative;
  padding: 4.5rem 1.5rem;
  text-align: center;
  overflow: hidden;
  background: #fffaf7;
}

/* Soft gradient glow */
.about-closing::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 20%, #ffe4ec 0%, transparent 45%),
    radial-gradient(circle at 85% 30%, #e8f6ff 0%, transparent 45%),
    radial-gradient(circle at 50% 90%, #fff1c9 0%, transparent 50%);
  opacity: 0.65;
  z-index: 0;
}

.about-closing .wrapper {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

/* Title */
.about-closing .about-title {
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 1rem;
}

/* Gradient emphasis */
.about-closing .about-title span {
  background: linear-gradient(90deg, #ff4fae, #ffb000, #4fd2ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Sub text */
.closing-text {
  font-size: 1.05rem;
  color: #555;
  margin-bottom: 2rem;
}






/* ================= MOBILE ================= */

@media (max-width: 768px) {
  .about-closing {
    padding: 3.5rem 1.25rem;
  }

  .about-closing .about-title {
    font-size: 1.8rem;
  }

  .closing-text {
    font-size: 0.95rem;
  }


}
/* ================= MOBILE ================= */
@media (max-width: 768px) {
  .hero-inner {
    margin: 0 24px;
  }

  .hero-title {
    font-size: 2.1rem;
  }

  .parents-hero {
    min-height: 48vh;
  }
}