.programs-section {
  position: relative;
  background: linear-gradient(180deg, #fffaf5, #ffffff);
  padding: 100px 0;
  overflow: hidden;
}

.programs-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  gap: 60px;
  position: relative;
  z-index: 2;
  padding: 0 24px;
}

/* DECOR */
.cloud {
  position: absolute;
  z-index: 1;
  opacity: 0.9;
}

.cloud-left {
  top: 30px;
  left: -40px;
  width: 260px;
}

.cloud-right {
  top: 120px;
  right: -40px;
  width: 240px;
}

.birds {
  position: absolute;
  top: 40px;
  right: 45%;
  width: 120px;
}

/* LEFT */
.programs-left {
  flex: 1.1;
}

.programs-left h2 {
  font-size: 42px;
  font-weight: 700;
  color: #063a4a;
  line-height: 1.2;
}

.title-bud {
  width: 42px;
  margin-left: 8px;
  vertical-align: middle;
}

.subtitle {
  margin-top: 16px;
  max-width: 440px;
  color: #4f6d75;
  font-size: 15px;
}

.program-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  margin-top: 36px;
}

/* PROGRAM CARD */
.program-card {
  border-radius: 20px;
  padding: 26px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease;
}

.program-card:hover {
  transform: translateY(-6px);
}

.program-card .icon {
  font-size: 30px;
  margin-bottom: 10px;
}

.program-card h3 {
  font-size: 20px;
  margin: 0;
  color: #063a4a;
}

.program-card .age {
  font-size: 13px;
  color: #6b8b94;
}

.program-card ul {
  list-style: none;
  padding: 0;
  margin-top: 14px;
}

.program-card li {
  font-size: 13px;
  color: #355b66;
  margin-bottom: 6px;
}

/* CARD COLORS */
.nursery { background: #fff4dc; }
.lkg { background: #fff0c7; }
.ukg { background: #e9f7ec; }
.sr-buds { background: #eef3ff; }

/* RIGHT */
.programs-right {
  flex: 0.9;
  position: relative;
}

.student-card {
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.student-card img {
  width: 100%;
  display: block;
}

.floating-profiles {
  position: absolute;
  bottom: 16px;
  left: 16px;
  display: flex;
  gap: 8px;
}

.floating-profiles img {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 2px solid #fff;
}

/* DAY CARD */
.day-card {
  background: #fff;
  border-radius: 22px;
  padding: 24px;
  box-shadow: 0 16px 36px rgba(0,0,0,0.12);
  position: absolute;
  right: 0;
  bottom: 20px;
  width: 470px;
}

.day-card h4 {
  font-size: 20px;
  margin: 0;
  color: #063a4a;
}

.day-card p {
  font-size: 13px;
  margin: 10px 0;
  color: #4f6d75;
}

.day-card ul {
  list-style: none;
  padding: 0;
}

.day-card li {
  font-size: 13px;
  margin-bottom: 6px;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 992px) {
  .programs-container {
    flex-direction: column;
    align-items: center;
  }

  .programs-left h2,
  .subtitle {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  .program-cards {
    grid-template-columns: repeat(2, 1fr);
    justify-content: center;
  }

  .programs-right {
    margin-top: 60px;
  }

  .day-card {
    position: static;
    margin: 24px auto 0;
  }

  .cloud,
  .birds {
    display: none;
  }
}

@media (max-width: 768px) {
  .program-cards {
    grid-template-columns: 1fr;
  }

  .programs-left h2 {
    font-size: 34px;
  }
}

@media (max-width: 480px) {
  .programs-section {
    padding: 70px 0;
  }

  .programs-left h2 {
    font-size: 28px;
  }

  .subtitle {
    font-size: 14px;
  }

  .program-card {
    padding: 22px;
  }

  .day-card {
    width: 100%;
  }
}
