.home-learning-page .hero-section {
  width: 100%;
  min-height: 80vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;

  background-size: cover;
  background-position: center right;
  color: var(--white);
}
.home-learning-page .hero-content {
  max-width: 600px;
}
.home-learning-page .brand-name {
  font-size: 12px;
  display: block;
  margin-bottom: 1rem;
  background: #fff3e0;
  padding: 5px 20px;
  width: fit-content;
  border-radius: 40px;
  color: var(--warm-orange);
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.home-learning-page .hero-title {
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1.2;
  margin-bottom: 1rem;
  font-weight: 700;
}
.home-learning-page .hero-description {
  font-size: 1.125rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}
.home-learning-page .btn-white {
  display: inline-block;
  background-color: var(--white);
  color: var(--dark);
  padding: 12px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}
.home-learning-page .btn-white:hover {
  background-color: var(--gray);
  transform: translateY(-2px);
}
@media (max-width: 768px) {
  /* ── HERO ── */
  .home-learning-page .hero-section {
    text-align: center;
    padding: 3rem 0 2.5rem;
    min-height: auto;
  }
  .home-learning-page .hero-content {
    margin: 0 auto;
    max-width: 100%;
  }
  .home-learning-page .brand-name {
    margin: 0 auto 0.875rem;
  }
  .home-learning-page .hero-title {
    font-size: clamp(1.5rem, 6vw, 2rem);
    margin-bottom: 0.75rem;
  }
  .home-learning-page .hero-description {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
  }
  .home-learning-page .btn-white {
    display: block;
    width: 100%;
    text-align: center;
    padding: 12px 20px;
  }
}
.home-learning-page .learning-details {
  padding: 100px 0;
  background-color: var(--white);
  color: var(--dark);
}
.home-learning-page .details-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}
.home-learning-page .details-image-wrapper {
  position: relative;
}
.home-learning-page .main-img {
  width: 100%;
  border-radius: 30px;
  display: block;
  height: 550px;
  object-fit: cover;
}
.home-learning-page .expert-badge {
  position: absolute;
  bottom: 20px;
  right: -30px;
  background: var(--white);
  padding: 20px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  max-width: 260px;
}
.home-learning-page .badge-header {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 10px;
}
.home-learning-page .check-icon {
  background: var(--warm-orange);
  color: white;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}
.home-learning-page .badge-header small {
  color: #888;
  font-size: 10px;
  display: block;
}
.home-learning-page .pill-label {
  background: #fff3e0;
  color: var(--warm-orange);
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: bold;
  letter-spacing: 0.5px;
}
.home-learning-page .details-content h2 {
  font-size: 42px;
  margin: 10px 0;
  line-height: 1.2;
}
.home-learning-page .text-azure {
  color: var(--azure);
}
.home-learning-page .description {
  color: #444444;
  margin-bottom: 30px;
  line-height: 1.3;
}
.home-learning-page .feature-list {
  background: #f8f9fa;
  padding: 25px;
  border-radius: 25px;
  margin-bottom: 30px;
  border: 1px solid rgba(211, 211, 211, 0.3);
}
.home-learning-page .feature-item {
  display: flex;
  gap: 15px;
  margin-bottom: 25px;
}
.home-learning-page .feature-item:last-child {
  margin-bottom: 0;
}
.home-learning-page .feature-icon {
  background: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  flex-shrink: 0;
  border: 1px solid rgba(211, 211, 211, 0.5);
}
.home-learning-page .feature-text strong {
  display: block;
  font-size: 1.25rem;
}
.home-learning-page .feature-text p {
  font-size: 15px;
  color: #444444;
  margin: 4px 0 0;
  width: 80%;
}
.home-learning-page .btn-group {
  display: flex;
  gap: 15px;
}
.home-learning-page .btn-primary {
  background: linear-gradient(to right, var(--azure), var(--cyan-blue));
  color: white;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
}
.home-learning-page .btn-secondary {
  background: var(--gray);
  color: var(--dark);
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
}
@media (max-width: 992px) {
  .home-learning-page .details-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .home-learning-page .expert-badge {
    position: relative;
    right: 0;
    margin-top: 20px;
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  /* ── LEARNING DETAILS ── */
  .home-learning-page .learning-details {
    padding: 52px 0;
  }
  .home-learning-page .main-img {
    height: 260px;
    border-radius: 20px;
  }
  .home-learning-page .expert-badge {
    padding: 14px 16px;
    border-radius: 14px;
    margin-top: 14px;
  }
  .home-learning-page .details-content h2 {
    font-size: 1.6rem;
    line-height: 1.25;
    margin: 10px 0 12px;
  }
  .home-learning-page .description {
    font-size: 14px;
    margin-bottom: 20px;
  }
  .home-learning-page .feature-list {
    padding: 18px 16px;
    border-radius: 18px;
    margin-bottom: 20px;
  }
  .home-learning-page .feature-item {
    gap: 12px;
    margin-bottom: 18px;
  }
  .home-learning-page .feature-icon {
    width: 42px;
    height: 42px;
    font-size: 18px;
  }
  .home-learning-page .feature-text strong {
    font-size: 1rem;
  }
  .home-learning-page .feature-text p {
    font-size: 13.5px;
    width: 100%;
  }
  .home-learning-page .btn-group {
    flex-direction: column;
    gap: 10px;
  }
  .home-learning-page .btn-primary,
  .home-learning-page .btn-secondary {
    text-align: center;
    padding: 13px 20px;
    font-size: 14px;
    border-radius: 14px;
  }
}
.home-learning-page .foundation-section {
  padding: 80px 0;
  background: rgba(211, 211, 211, 0.3);
  overflow: visible;
}
.home-learning-page .foundation-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: center;
}
.home-learning-page .main-title {
  font-size: 42px;
  font-weight: 800;
  margin: 20px 0;
  line-height: 1.1;
  color: var(--dark);
}
.home-learning-page .sub-text {
  width: 85%;
}
.home-learning-page .text-azure-1 {
  color: var(--cyan-blue);
}
.home-learning-page .stats-container {
  display: flex;
  gap: 30px;
  margin-top: 40px;
  align-items: center;
}
.home-learning-page .stat-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 15px;
  padding: 10px 15px;
  background-color: var(--white);
}
.home-learning-page .icon-circle {
  width: 45px;
  height: 45px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-size: 18px;
}
.home-learning-page .icon-blue {
  background: #e3f2fd;
  color: var(--azure);
}
.home-learning-page .icon-orange {
  background: #fff3e0;
  color: var(--warm-orange);
}
.home-learning-page .foundation-right {
  position: relative;
  height: 500px;
  display: flex;
  align-items: center;
}
.home-learning-page .teal-backdrop {
  background: #0b3d3d;
  width: 100%;
  height: 500px;
  border-radius: 15px;
  position: relative;
}
.home-learning-page .floating-milestone-card {
  position: absolute;
  background: #fff;
  padding: 30px;
  border-radius: 15px;
  width: 380px;
  left: -50px;
  bottom: 0;
  transform: translateY(-15%);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
  z-index: 10;
}
.home-learning-page .card-top {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
  font-size: 14px;
}
.home-learning-page .custom-progress {
  height: 8px;
  background: #eee;
  border-radius: 10px;
  margin-bottom: 15px;
}
.home-learning-page .progress-fill {
  height: 100%;
  background: var(--warm-orange);
  border-radius: 10px;
}
.home-learning-page .impact-section {
  padding: 80px 0;
  background: #f8faff;
}
.home-learning-page .play-partner-bar {
  background-color: #e9eff2;
  border-radius: 15px;
  padding: 45px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}
.home-learning-page .bar-left {
  flex: 1;
}
.home-learning-page .bar-left h3 {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 10px;
}
.home-learning-page .bar-left p {
  font-size: 15px;
  color: #444444;
  line-height: 1.5;
  margin: 0;
}
.home-learning-page .bar-right {
  display: flex;
  gap: 20px;
}
.home-learning-page .feature-button {
  background: #ffffff;
  border-radius: 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px 30px;
  min-width: 180px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}
.home-learning-page .feature-button i {
  font-size: 26px;
  color: var(--warm-orange);
  margin-bottom: 12px;
}
.home-learning-page .feature-button span {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.8px;
  color: #555;
  white-space: nowrap;
}
.home-learning-page .white-pill {
  background: #fff;
  padding: 15px 25px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
}
.home-learning-page .centered-head {
  text-align: center;
  margin-bottom: 40px;
  padding-top: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.home-learning-page .centered-head h2 {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 10px;
}
.home-learning-page .centered-head p {
  width: 60%;
}
.home-learning-page .ripple-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.home-learning-page .ripple-card {
  background: #fff;
  padding: 40px 30px;
  border-radius: 30px;
  text-align: center;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(211, 211, 211, 0.5);
}
.home-learning-page .card-icon {
  font-size: 30px;
  margin-bottom: 20px;
}
.home-learning-page .ripple-card h4 {
  font-size: 20px;
  margin-bottom: 10px;
  font-weight: 800;
}
.home-learning-page .ripple-card p {
  font-size: 15px;
  color: #444444;
  line-height: 1.3;
}
.home-learning-page .icon-azure {
  color: var(--azure);
}
.home-learning-page .icon-orange {
  color: var(--warm-orange);
}
.home-learning-page .icon-gold {
  color: #fcc419;
}
@media (max-width: 1100px) {
  .home-learning-page .foundation-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .home-learning-page .floating-milestone-card {
    position: relative;
    left: 0;
    transform: none;
    width: 100%;
    margin-top: 20px;
  }
  .home-learning-page .stats-container {
    justify-content: center;
  }
  .home-learning-page .play-partner-bar {
    flex-direction: column;
    text-align: center;
    padding: 40px 20px;
  }
  .home-learning-page .bar-right {
    flex-wrap: wrap;
    justify-content: center;
  }
  .home-learning-page .ripple-grid {
    grid-template-columns: 1fr;
  }
  .home-learning-page .feature-button {
    width: 100%;
    min-width: 150px;
  }
}

@media (max-width: 768px) {
  /* ── FOUNDATION SECTION ── */
  .home-learning-page .foundation-section {
    padding: 52px 0;
  }
  .home-learning-page .foundation-grid {
    gap: 28px;
    text-align: center;
  }
  .home-learning-page .main-title {
    font-size: 1.75rem;
    line-height: 1.2;
    margin: 14px 0 12px;
  }
  .home-learning-page .sub-text {
    width: 100%;
    font-size: 14px;
    line-height: 1.65;
  }
  .home-learning-page .stats-container {
    flex-direction: column;
    gap: 12px;
    margin-top: 24px;
    align-items: stretch;
  }
  .home-learning-page .stat-item {
    padding: 12px 16px;
    border-radius: 12px;
    justify-content: flex-start;
  }
  .home-learning-page .foundation-right {
    height: auto;
  }
  .home-learning-page .teal-backdrop {
    height: 180px;
    border-radius: 12px;
  }
  .home-learning-page .floating-milestone-card {
    padding: 18px 20px;
    border-radius: 12px;
    margin-top: 14px;
    width: 100%;
  }

  /* ── IMPACT SECTION ── */
  .home-learning-page .impact-section {
    padding: 48px 0;
  }
  .home-learning-page .play-partner-bar {
    padding: 28px 20px;
    gap: 24px;
    border-radius: 14px;
  }
  .home-learning-page .bar-left h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
  }
  .home-learning-page .bar-left p {
    font-size: 14px;
  }
  .home-learning-page .bar-right {
    gap: 12px;
    width: 100%;
  }
  .home-learning-page .feature-button {
    flex: 1;
    min-width: 90px;
    padding: 14px 10px;
    border-radius: 12px;
  }
  .home-learning-page .feature-button i {
    font-size: 20px;
    margin-bottom: 8px;
  }
  .home-learning-page .feature-button span {
    font-size: 10px;
  }
  .home-learning-page .centered-head {
    padding-top: 48px;
    margin-bottom: 28px;
  }
  .home-learning-page .centered-head h2 {
    font-size: 1.6rem;
    margin-bottom: 8px;
  }
  .home-learning-page .centered-head p {
    width: 100%;
    font-size: 14px;
  }
  .home-learning-page .ripple-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .home-learning-page .ripple-card {
    padding: 28px 22px;
    border-radius: 20px;
  }
  .home-learning-page .ripple-card h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
  }
  .home-learning-page .ripple-card p {
    font-size: 14px;
  }
}
.home-learning-page .journey-section {
  padding: 0px 0 40px 0;
  background-color: #ffffff;
}
.home-learning-page .measuring-impact {
  padding: 100px 0;
  background-color: #f4f1ea;
}
.home-learning-page .timeline-container {
  position: relative;
  max-width: 1280px;
  margin: 60px auto 0;
}
.home-learning-page .timeline-line {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  border-left: 2px dashed #d1d1d1;
  transform: translateX(-50%);
}
.home-learning-page .step-row {
  display: flex;
  align-items: center;
  gap: 80px;
  margin-bottom: 80px;
  position: relative;
}
.home-learning-page .step-row.reverse {
  flex-direction: row-reverse;
}
.home-learning-page .step-content {
  flex: 1;
  position: relative;
}
.home-learning-page .step-visual {
  flex: 1;
}
.home-learning-page .step-visual img {
  width: 100%;
  border-radius: 25px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  height: 300px;
  object-fit: cover;
}
.home-learning-page .text-right {
  text-align: right;
}
.home-learning-page .step-num {
  position: absolute;
  top: 0px;
  background: var(--warm-orange);
  color: #fff;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 14px;
  font-weight: bold;
}
.home-learning-page .step-row:not(.reverse) .step-num {
  right: -56px;
}
.home-learning-page .step-row.reverse .step-num {
  left: -56px;
}
.home-learning-page .step-content h3 {
  font-size: 24px;
  margin-bottom: 10px;
  color: var(--cyan-blue);
}
.home-learning-page .step-content p {
  color: #444444;
  line-height: 1.3;
  font-size: 15px;
  margin-bottom: 10px;
}
.home-learning-page .kit-item {
  background: #fff;
  padding: 12px 5px;
  border-radius: 12px;
  margin-bottom: 10px;
  font-size: 15px;
  font-weight: 600;
  display: flex;
  gap: 12px;
  align-items: center;
  color: #444444;
}
.home-learning-page .kit-item i {
  color: var(--warm-orange);
  font-size: 18px;
  margin-right: 5px;
}
.home-learning-page .impact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.home-learning-page .nurturing-title {
  font-size: 42px;
  line-height: 1.1;
  margin-bottom: 40px;
}
.home-learning-page .nurturing-title span {
  color: var(--cyan-blue);
}
.home-learning-page .impact-feature {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}
.home-learning-page .impact-icon {
  width: 45px;
  height: 45px;
  background: #e9e5dc;
  border-radius: 10px;
  display: grid;
  place-items: center;
  color: var(--warm-orange);
  flex-shrink: 0;
  border: 1px solid rgba(211, 211, 211, 0.3);
}
.home-learning-page .impact-icon {
  font-size: 24px;
}
.home-learning-page .impact-text strong {
  display: block;
  margin-bottom: 5px;
  font-size: 1.25rem;
}
.home-learning-page .impact-text p {
  font-size: 15px;
  color: #444;
  line-height: 1.3;
  width: 75%;
}
.home-learning-page .chart-card {
  background: #fff;
  padding: 30px;
  border-radius: 20px;
  margin-bottom: 20px;
}
.home-learning-page .chart-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 30px;
  font-weight: bold;
  font-size: 14px;
}
.home-learning-page .text-gold {
  color: #84754e;
}
.home-learning-page .chart-bars {
  display: flex;
  height: 120px;
  align-items: flex-end;
  justify-content: space-between;
  gap: 10px;
}
.home-learning-page .bar {
  background: #e9e5dc;
  border-radius: 5px;
  width: 100%;
  transition: height 0.5s ease;
}
.home-learning-page .stat-boxes {
  display: flex;
  gap: 20px;
}
.home-learning-page .stat-box {
  flex: 1;
  padding: 30px;
  border-radius: 20px;
  color: #fff;
}
.home-learning-page .box-olive {
  background: var(--azure);
}
.home-learning-page .box-lime {
  background: var(--warm-orange);
}
.home-learning-page .stat-box strong {
  display: block;
  font-size: 28px;
  margin-bottom: 5px;
}
.home-learning-page .stat-box span {
  font-size: 12px;
  font-weight: bold;
  line-height: 1.3;
  display: block;
}
@media (max-width: 992px) {
  .home-learning-page .step-row,
  .home-learning-page .step-row.reverse {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }
  .home-learning-page .timeline-line,
  .home-learning-page .step-num {
    display: none;
  }
  .home-learning-page .impact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  /* ── JOURNEY SECTION ── */
  .home-learning-page .journey-section {
    padding: 0 0 36px;
  }
  .home-learning-page .step-row {
    gap: 18px;
    margin-bottom: 48px;
  }
  .home-learning-page .step-visual img {
    height: 200px;
    border-radius: 16px;
  }
  .home-learning-page .step-content h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
  }
  .home-learning-page .step-content p {
    font-size: 14px;
    line-height: 1.6;
  }
  .home-learning-page .kit-item {
    font-size: 14px;
    padding: 10px 8px;
    border-radius: 10px;
    gap: 10px;
    text-align: left;
  }

  /* ── MEASURING IMPACT ── */
  .home-learning-page .measuring-impact {
    padding: 52px 0;
  }
  .home-learning-page .nurturing-title {
    font-size: 1.6rem;
    margin-bottom: 28px;
    line-height: 1.2;
  }
  .home-learning-page .impact-feature {
    gap: 14px;
    margin-bottom: 22px;
  }
  .home-learning-page .impact-icon {
    width: 38px;
    height: 38px;
    border-radius: 8px;
    font-size: 16px;
  }
  .home-learning-page .impact-text strong {
    font-size: 1rem;
    margin-bottom: 4px;
  }
  .home-learning-page .impact-text p {
    font-size: 13.5px;
    width: 100%;
  }
  .home-learning-page .chart-card {
    padding: 20px 18px;
    border-radius: 14px;
    margin-bottom: 14px;
  }
  .home-learning-page .chart-header {
    flex-direction: column;
    gap: 4px;
    margin-bottom: 20px;
  }
  .home-learning-page .chart-bars {
    height: 90px;
    gap: 7px;
  }
  .home-learning-page .stat-boxes {
    gap: 12px;
  }
  .home-learning-page .stat-box {
    padding: 20px 16px;
    border-radius: 14px;
  }
  .home-learning-page .stat-box strong {
    font-size: 22px;
  }
  .home-learning-page .stat-box span {
    font-size: 11px;
  }
}
.home-learning-page .horizon-section {
  padding: 100px 0 100px 0;
  background-color: #fdfaf5;
}
.home-learning-page .horizon-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 50px;
}
.home-learning-page .header-left {
  max-width: 600px;
}
.home-learning-page .header-left h2 {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 15px;
  color: var(--dark);
}
.home-learning-page .header-left p {
  color: #666;
  line-height: 1.5;
  font-size: 15px;
}
.home-learning-page .pill-outline {
  border: 1px solid #e0d9cc;
  padding: 12px 25px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  color: #84754e;
  white-space: nowrap;
}
.home-learning-page .horizon-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}
.home-learning-page .horizon-card {
  height: 330px;
  border-radius: 15px;
  position: relative;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 40px;
  color: var(--white);
}
.home-learning-page .card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.8) 0%,
    rgba(0, 0, 0, 0.4) 30%,
    transparent 100%
  );
  z-index: 1;
}
.home-learning-page .card-top-tag {
  position: absolute;
  top: 30px;
  left: 30px;
  padding: 6px 14px;
  border-radius: 8px;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.5px;
  z-index: 2;
}
.home-learning-page .tag-yellow {
  background-color: var(--warm-orange);
  color: var(--white);
}
.home-learning-page .tag-blue {
  background-color: var(--azure);
  color: var(--white);
}
.home-learning-page .card-info {
  position: relative;
  z-index: 2;
}
.home-learning-page .card-info h3 {
  color: var(--white);
  font-size: 26px;
  margin-bottom: 10px;
  font-weight: 800;
}
.home-learning-page .card-info p {
  font-size: 14px;
  opacity: 0.9;
  line-height: 1.4;
  max-width: 90%;
  color: var(--white);
}
@media (max-width: 992px) {
  .home-learning-page .horizon-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
  }
  .home-learning-page .horizon-grid {
    grid-template-columns: 1fr;
  }
  .home-learning-page .horizon-card {
    height: 350px;
  }
}

@media (max-width: 768px) {
  /* ── HORIZON SECTION ── */
  .home-learning-page .horizon-section {
    padding: 52px 0;
  }
  .home-learning-page .horizon-header {
    gap: 16px;
    margin-bottom: 28px;
  }
  .home-learning-page .header-left h2 {
    font-size: 1.5rem;
    margin-bottom: 10px;
  }
  .home-learning-page .header-left p {
    font-size: 14px;
  }
  .home-learning-page .horizon-grid {
    gap: 16px;
  }
  .home-learning-page .horizon-card {
    height: 240px;
    padding: 24px 20px;
    border-radius: 12px;
  }
  .home-learning-page .card-top-tag {
    top: 16px;
    left: 16px;
    font-size: 9px;
    padding: 5px 10px;
  }
  .home-learning-page .card-info h3 {
    font-size: 1.2rem;
    margin-bottom: 6px;
  }
  .home-learning-page .card-info p {
    font-size: 13px;
  }
}

/* ── Small mobile (≤480px) ── */
@media (max-width: 480px) {
  .home-learning-page .hero-title {
    font-size: 1.35rem;
  }
  .home-learning-page .main-img {
    height: 210px;
  }
  .home-learning-page .details-content h2 {
    font-size: 1.4rem;
  }
  .home-learning-page .main-title {
    font-size: 1.5rem;
  }
  .home-learning-page .stats-container {
    flex-direction: column;
  }
  .home-learning-page .bar-right {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .home-learning-page .feature-button {
    flex: 1 1 calc(50% - 6px);
  }
  .home-learning-page .nurturing-title {
    font-size: 1.4rem;
  }
  .home-learning-page .stat-boxes {
    flex-direction: column;
  }
}

/* ── Per-page hero background images ── */
.home-learning-page.page-home-learning .hero-section {
  background:
    linear-gradient(
      to right,
      var(--cyan-blue) 0%,
      var(--cyan-blue) 20%,
      transparent 60%
    ),
    url("../assets/Home-Learning-Banner-1.webp");
  background-size: cover;
  background-position: center right;
}

.home-learning-page.page-jr-kg .hero-section {
  background:
    linear-gradient(
      to right,
      var(--cyan-blue) 0%,
      var(--cyan-blue) 20%,
      transparent 60%
    ),
    url("../assets/Jr-KG-Banner.jpg");
  background-size: cover;
  background-position: center right;
}

.home-learning-page.page-sr-kg .hero-section {
  background:
    linear-gradient(
      to right,
      var(--cyan-blue) 0%,
      var(--cyan-blue) 20%,
      transparent 60%
    ),
    url("../assets/Sr-KG-Banner.jpg");
  background-size: cover;
  background-position: center right;
}

.home-learning-page.page-primary-school .hero-section {
  background:
    linear-gradient(
      to right,
      var(--cyan-blue) 0%,
      var(--cyan-blue) 20%,
      transparent 60%
    ),
    url("../assets/Primary-School-Banner.jpg");
  background-size: cover;
  background-position: center right;
}
