.fun-heading {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  padding: 8px 16px;
  border-radius: 30px;
  box-shadow: 0 6px 20px rgba(235,21,81,0.2);
  margin-bottom: 18px;
}

.fun-heading img {
  width: 28px;
  height: 28px;
}

.fun-heading span {
  font-size: 15px;
  font-weight: 600;
  color: #EB1551;
}

/* Main Heading Enhancement */
.main-heading {
  position: relative;
  font-size: 38px;
  font-weight: 700;
  color: #EB1551;
  margin-bottom: 22px;
  line-height: 1.2;
}

/* Playful underline */
.main-heading::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 90px;
  height: 6px;
  background: repeating-linear-gradient(
    45deg,
    #EB1551,
    #EB1551 8px,
    #ff9bb8 8px,
    #ff9bb8 16px
  );
  border-radius: 10px;
}


.curriculum-philosophy {
  position: relative;
  padding: 80px 10%;
  background: #fff7fa;
  overflow: hidden;
}

.philosophy-container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  align-items: start;
}

.section-tag {
  display: inline-block;
  background: #EB1551;
  color: #fff;
  padding: 6px 14px;
  border-radius: 30px;
  font-size: 14px;
  margin-bottom: 15px;
}

.philosophy-content h2 {
  color: #EB1551;
  font-size: 36px;
  margin-bottom: 20px;
}

.philosophy-content p {
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 30px;
}

.philosophy-points {
  list-style: none;
  padding: 0;
}

.philosophy-points li {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
  font-weight: 500;
}

.philosophy-points img {
  width: 42px;
  height: 42px;
  background: #fff;
  border-radius: 50%;
  padding: 6px;
  box-shadow: 0 6px 18px rgba(235,21,81,0.25);
}

/* Image collage */
.philosophy-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}


/* Card container controls size */
.image-card {
  position: relative;
  width: 100%;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
  aspect-ratio: 4 / 3; /* DEFAULT */
}
.image-card.large {
  grid-column: span 2;
  aspect-ratio: 16 / 9;
}

.image-card:nth-child(1) {
  grid-column: span 2;
}

.image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* 🔥 KEY FIX */
  display: block;
}

/* Decorative shapes */
.shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.2;
}

.shape-1 {
  width: 180px;
  height: 180px;
}

@media (max-width: 1024px) {

  .curriculum-philosophy {
    padding: 60px 6%;
  }

  .philosophy-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .philosophy-content h2 {
    font-size: 32px;
  }

  .philosophy-content p {
    font-size: 16px;
  }

  /* Images stay side-by-side on tablet */
  .philosophy-images {
    grid-template-columns: 1fr 1fr;
  }

  .image-card.large {
    aspect-ratio: 16 / 9;
  }
}

@media (max-width: 768px) {

  .curriculum-philosophy {
    padding: 50px 5%;
  }

  .philosophy-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .section-tag {
    font-size: 13px;
    padding: 5px 12px;
  }

  .philosophy-content h2 {
    font-size: 26px;
  }

  .philosophy-content p {
    font-size: 15px;
  }

  .philosophy-points li {
    font-size: 14px;
    gap: 12px;
  }

  .philosophy-points img {
    width: 36px;
    height: 36px;
  }

  /* Stack images vertically */
  .philosophy-images {
    grid-template-columns: 1fr;
  }

  .image-card,
  .image-card.large {
    grid-column: span 1;
    aspect-ratio: 4 / 3;
  }
}

@media (max-width: 480px) {

  .curriculum-philosophy {
    padding: 40px 4%;
  }

  .philosophy-content h2 {
    font-size: 22px;
  }

  .philosophy-content p {
    font-size: 14px;
    line-height: 1.6;
  }

  .philosophy-points li {
    font-size: 13px;
  }

  .philosophy-points img {
    width: 32px;
    height: 32px;
  }

  .image-card {
    border-radius: 16px;
  }
}

/* APPROACH */
/* Wrapper */
.curriculum-approach{
  display:none !important;
}
.curriculum-approach .approach-wrapper {
  
  margin: auto;
  text-align: center;
}

/* Heading */
.curriculum-approach .approach-title {
  font-size: 38px;
  color: #EB1551;
  margin-bottom: 20px;
  position: relative;
}

.curriculum-approach .approach-title::after {
  content: "";
  width: 80px;
  height: 4px;
  background: #EB1551;
  display: block;
  margin: 14px auto 0;
  border-radius: 10px;
}

/* Text */
.curriculum-approach .approach-text {
  margin:70px;
}

/* Points */
/* Lists wrapper */
.curriculum-approach .approach-lists {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 900px;
  margin: 0 auto 50px;
}

/* UL style */
.curriculum-approach .approach-points {
  list-style: none;
  padding: 0;
}

/* LI style */
.curriculum-approach .approach-points li {
  font-size: 16px;
  margin-bottom: 14px;
  padding-left: 30px;
  position: relative;
  text-align: left;
  color: #555;
}

/* Cute check icon */
.curriculum-approach .approach-points li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 2px;
  color: #EB1551;
  font-weight: bold;
}

/* Carousel container */
.curriculum-approach .approach-carousel {
  position: relative;
  max-width: 900px;
  margin: auto;
  overflow: hidden;
}

/* Track */
.curriculum-approach .carousel-track {
  display: flex;
  transition: transform 0.6s ease;
}

/* Images */
.curriculum-approach .carousel-track img {
  min-width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: 26px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.18);
}

/* Buttons */
.curriculum-approach .carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: none !important;
  color: #EB1551;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 24px;
  font-weight: bold;
  box-shadow: none !important;
  transition: background 0.3s;
}

.curriculum-approach .carousel-btn.prev { left: 10px; }
.curriculum-approach .carousel-btn.next { right: 10px; }

.curriculum-approach .carousel-btn:hover {
  background: #c91042;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .curriculum-approach .carousel-track img {
    height: 240px;
  }

  .curriculum-approach .carousel-btn {
    width: 38px;
    height: 38px;
    font-size: 18px;
  }

  .curriculum-approach .carousel-btn.prev { left: 5px; }
  .curriculum-approach .carousel-btn.next { right: 5px; }
}
/* Animation */
@keyframes slide {
  0% { transform: translateX(0); }
  33% { transform: translateX(-100%); }
  66% { transform: translateX(-200%); }
  100% { transform: translateX(0); }
}
@media (max-width: 768px) {
  .curriculum-approach .approach-title {
    font-size: 30px;
  }

  .curriculum-approach .carousel-track img {
    height: 240px;
  }

  .curriculum-approach .approach-points li {
    text-align: center;
    padding-left: 0;
  }

  .curriculum-approach .approach-points li::before {
    position: static;
    margin-right: 8px;
  }
  .curriculum-approach .carousel-btn {
    width: 38px;
    height: 38px;
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .curriculum-approach .approach-lists {
    grid-template-columns: 1fr;
    gap: 20px;
    text-align: center;
  }

  .curriculum-approach .approach-points li {
    text-align: center;
    padding-left: 0;
  }

  .curriculum-approach .approach-points li::before {
    position: static;
    margin-right: 8px;
  }
}

/* OUR PROGRAM */
.section.light-bg {
  padding: 80px 20px;
  text-align: center;
  background: #fff0f6; /* soft, playful background */
}

/* Heading */
.section.light-bg h2 {
  margin-bottom: 20px;
  font-size: 2.8rem;
  color: #EB1551; /* primary color */
  font-weight: 700;
  position: relative;
}

.section.light-bg h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background-color: #EB1551;
  margin: 10px auto 0;
  border-radius: 2px;
}

/* Paragraph */
.section.light-bg p {
  max-width: 750px;
  margin: 0 auto 50px;
  line-height: 1.7;
  font-size: 1.2rem;
  color: #333;
}

/* Cards */
.cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
  margin-bottom: 50px;
}

.card {
  background: linear-gradient(135deg, #ffe1f0, #fff0f6);
  border-radius: 25px;
  box-shadow: 0 10px 25px rgba(235, 21, 81, 0.2);
  padding: 25px 30px;
  width: 220px;
  font-size: 1.2rem;
  font-weight: 600;
  color: #EB1551;
  cursor: pointer;
  transition: transform 0.4s, box-shadow 0.4s, background 0.4s;
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  width: 200%;
  height: 200%;
  background: rgba(235, 21, 81, 0.05);
  top: -50%;
  left: -50%;
  transform: rotate(45deg);
  transition: all 0.5s;
}

.card:hover::before {
  transform: rotate(0deg);
}

.card:hover, .card.active {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 20px 40px rgba(235, 21, 81, 0.25);
  background: linear-gradient(135deg, #ffb2c1, #ffdee9);
}

/* Program Content */
.program-content .content {
  display: none;
  max-width: 950px;
  margin: 0 auto;
  text-align: center;
  background-color: #ffe9f6;
  padding: 35px 30px;
  border-radius: 25px;
  box-shadow: 0 10px 30px rgba(235, 21, 81, 0.1);
  position: relative;
  animation: fadeIn 0.6s ease-in-out;
}

/* Fade-in animation */
@keyframes fadeIn {
  from {opacity: 0; transform: translateY(20px);}
  to {opacity: 1; transform: translateY(0);}
}

.program-content .content img {
  width: 100%;
  max-height: 450px;
  object-fit: cover;
  border-radius: 20px;
  margin-bottom: 25px;
  transition: transform 0.3s;
}

.program-content .content img:hover {
  transform: scale(1.03);
}

.program-content .content h3 {
  margin-bottom: 20px;
  font-size: 2rem;
  color: #EB1551;
}

.program-content .content p {
  font-size: 1.15rem;
  color: #444;
  line-height: 1.8;
  margin-bottom: 15px;
}

.program-content .content ul {
  text-align: left;
  margin-top: 10px;
  margin-bottom: 20px;
  padding-left: 25px;
}

.program-content .content ul li {
  margin-bottom: 10px;
  font-size: 1rem;
  color: #555;
  position: relative;
}

.program-content .content ul li::before {
  content: '✔';
  color: #EB1551;
  font-weight: bold;
  display: inline-block;
  width: 20px;
}

/* Responsive */
@media (max-width: 992px) {
  .program-content .content {
    padding: 30px 20px;
  }
}

@media (max-width: 768px) {
  .cards {
    flex-direction: column;
    align-items: center;
  }
  .card {
    width: 85%;
  }
  .program-content .content img {
    max-height: 300px;
  }
}

/* =========================
   KEY AREAS OF FOCUS
========================= */

.key-area {
  padding: 80px 20px;
  background: #fff6f9;
  text-align: center;
}

.key-area h2 {
  font-size: 36px;
  color: #EB1551;
  margin-bottom: 50px;
  font-weight: 700;
  position: relative;
}

.key-area h2::after {
  content: "";
  width: 90px;
  height: 4px;
  background: #EB1551;
  display: block;
  margin: 14px auto 0;
  border-radius: 10px;
}

/* Grid */
.focus-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
  max-width: 1200px;
  margin: auto;
}

/* Card */
.focus-item {
  background: #ffffff;
  padding: 35px 25px;
  border-radius: 24px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

/* Decorative circle */
.focus-item::before {
  content: "";
  position: absolute;
  top: -40px;
  right: -40px;
  width: 100px;
  height: 100px;
  background: rgba(235, 21, 81, 0.12);
  border-radius: 50%;
}

/* Hover effect */
.focus-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(235, 21, 81, 0.25);
}

/* Title */
.focus-item h3 {
  font-size: 22px;
  color: #EB1551;
  margin-bottom: 14px;
  font-weight: 600;
}

/* Text */
.focus-item p {
  font-size: 15.5px;
  color: #555;
  line-height: 1.7;
}

/* Mobile adjustments */
@media (max-width: 600px) {
  .key-area h2 {
    font-size: 28px;
  }

  .focus-item {
    padding: 28px 22px;
  }
}

/* Implemented
   Assesment
   Transition */

/* Section wrapper */
.program-sections {
  padding: 80px 20px !important;
  max-width: 1200px !important;
  margin: 0 auto !important;
}

/* Card layout */
.program-card {
  display: flex !important;
  align-items: stretch !important; /* 🔥 IMPORTANT */
  gap: 48px !important;
  margin-bottom: 80px !important;
}

/* Alternate layout */
.program-card.reverse {
  flex-direction: row-reverse !important;
}

/* Image area */
.program-image {
  flex: 1 !important;
  display: flex !important;
}


.program-image img {
  width: 100% !important;
  height: 100% !important;              /* 🔥 key */
  object-fit: cover !important;         /* fills nicely */
  border-radius: 24px !important;
  box-shadow: 0 18px 36px rgba(235, 21, 81, 0.2) !important;
}


.program-card:hover .program-image img {
  transform: scale(1.04) !important;
}

/* Content area */
.program-content {
  flex: 1 !important;
}

.program-content h2 {
  font-size: 2.2rem !important;
  margin-bottom: 16px !important;
  color: #EB1551 !important;
}

.program-content p {
  font-size: 1.05rem !important;
  line-height: 1.75 !important;
  margin-bottom: 20px !important;
  color: #555 !important;
}

/* List styling */
.program-content ul {
  padding-left: 20px !important;
}

.program-content ul li {
  margin-bottom: 10px !important;
  font-size: 1rem !important;
  color: #444 !important;
  line-height: 1.6 !important;
}

/* Responsive */
@media (max-width: 768px) {
  .program-card,
  .program-card.reverse {
    flex-direction: column !important;
    gap: 32px !important;
  }

  .program-content h2 {
    font-size: 1.8rem !important;
    text-align: center !important;
  }

  .program-content p,
  .program-content ul {
    text-align: left !important;
  }
  .program-image img {
    height: auto !important;
  }
}

/* MUSIC AND DEVELOPMENT */
/* Music section (acts like a link) */
.music_dev {
  max-width: 1000px;
  margin: 80px auto;
  padding: 40px;
  border-radius: 24px;
  cursor: pointer;
  background: #fffbe2;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  text-align: center;
}

.music_dev:hover {
  transform: translateY(-6px);
}

.music_dev h2 {
  color: #EB1551;
  margin-bottom: 14px;
  text-align: center;
}

.music_dev p {
  color: #555;
  line-height: 1.7;
}

.image-row {
  display: flex !important;
  justify-content: center !important;   /* horizontal center */
  align-items: center !important;       /* vertical center */
  gap: 20px !important;
  margin: 30px auto 0 auto !important;
}

.image-row img {
  max-width: 420px !important;   /* 🔥 better than % */
  width: 100% !important;
  border-radius: 18px !important;
  object-fit: cover !important;
}

.read-more {
  display: inline-block;
  margin-top: 18px;
  color: #5f001b;
  font-weight: 800;
  text-align: center;
}

/* Modal overlay */
.music-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.65);
  display: none;
  z-index: 9999;
}

/* Modal content */
.modal-content {
  background: #fff;
  max-width: 900px;
  height: 90vh;
  margin: 5vh auto;
  padding: 40px;
  border-radius: 26px;
  overflow-y: auto;
  position: relative;
}

.modal-content h2 {
  color: #EB1551;
  margin-bottom: 20px;
}

.modal-content img {
  width: 100%;
  border-radius: 18px;
  margin: 20px 0;
}

.modal-content p {
  line-height: 1.8;
  color: #444;
  margin-bottom: 16px;
}

/* Close button */
.close-modal {
  position: absolute;
  top: 18px;
  right: 22px;
  font-size: 32px;
  cursor: pointer;
  color: #EB1551;
}

/* Responsive */
@media (max-width: 768px) {
  .image-row {
    flex-direction: column;
  }

  .image-row img {
    width: 100%;
  }

  .modal-content {
    width: 90%;
    padding: 25px;
  }
}



.each_lesson {
  padding: 60px 20px;
  text-align: center;
}

.each_lesson h2 {
  position: relative;
  font-size: 38px;
  font-weight: 700;
  color: #EB1551;
  margin-bottom: 22px;
  line-height: 1.2;
  text-transform: uppercase;
}

.points-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px 50px; /* vertical and horizontal spacing */
  max-width: 900px;
  margin: 0 auto;
}

.point {
  font-size: 18px;
  font-weight: 500;
  color: #333333;
  padding: 15px 0;
  border-bottom: 1px dotted #e22765; /* dotted line like in image */
  text-align: left;
}

.point:nth-child(even) {
  padding-left: 20px; /* optional spacing for right column */
}

@media (max-width: 768px) {
  .points-grid {
    grid-template-columns: 1fr; /* single column on mobile */
  }

  .point:nth-child(even) {
    padding-left: 0;
  }
}


/* Nutrition Section */
.nutrition {
  width: 100%;
  padding: 80px 5%;
  margin: auto;
}

.nutrition h2 {
  font-size: 36px;
  margin-bottom: 10px;
}

.nutrition p {
  max-width: 700px;
  margin-bottom: 40px;
  line-height: 1.7;
}

/* Two-column layout */
.nutrition-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

/* Meal list */
.points {
  list-style: none;
  padding: 0;
  margin: 0;
  background: #fff8f8;
  border-radius: 14px;
  padding: 20px;
}

.points li {
  padding: 14px 18px;
  margin-bottom: 8px;
  cursor: pointer;
  border-radius: 10px;
  font-weight: 500;
  transition: all 0.3s ease;
}
.points li {
  padding: 14px 40px 14px 18px; /* space for arrow */
  margin-bottom: 8px;
  cursor: pointer;
  border-radius: 10px;
  font-weight: 500;
  position: relative;
  transition: all 0.3s ease;
}

/* Arrow */
.points li::after {
  content: "➜";
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 16px;
  color: #ff217e;
  opacity: 0.6;
  transition: all 0.3s ease;
}

/* Hover effect */
.points li:hover::after {
  opacity: 1;
  transform: translate(4px, -50%);
}

/* Active state */
.points li.active::after {
  opacity: 1;
  font-weight: bold;
}

.points li:hover {
  background: #e0e0e0;
}

.points li.active {
  background: #ffffff;
  color: #ff0062cc;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

/* Image area */
.meal-images {
  position: relative;
}

.meal-images img {
  width: 100% !important;
  height: 380px !important;
  object-fit: cover !important;
  border-radius: 24px !important;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15) !important;
}

/* Responsive */
@media (max-width: 900px) {
  .nutrition-content {
    grid-template-columns: 1fr;
  }

  .meal-images img {
    height: 300px;
  }
}

.nutrition {
  width: 100%;
  padding: 60px 20px;
  background: #fffaf6; /* soft cream background */
 
}

.nutrition h2 {
  text-align: center;
  letter-spacing: 0.6px;
  line-height: 1.25;
  font-weight: 800;
  background: linear-gradient(90deg, #EB1551, #ffd64f);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 20px;
}

.nutrition h2::after {
  content: "";
  display: block;
  width: 90px;               /* wider */
  height: 5px;               /* thicker */
  background: linear-gradient(90deg, #EB1551, #ff4f7a);
  margin: 12px auto 0;
  border-radius: 6px;
}


.nutrition h3 {
  
  text-align: center;
}

.nutrition p {
  color: #000;
  margin: 0 auto;
  text-align: center;
}

.nutrition .highlight {
  text-align: left !important;
  font-weight: 700;
  font-family: "Poppins", "Nunito", sans-serif;
  color: #EB1551;
  margin: 30px 0 20px;
  
  border-radius: 8px;
}

/* Nutrition Details Section */
.nutrition-details {
  width: 100%;
  padding: 40px 5% 60px;
  background: #fffaf6;
}
.nutrition-details-content {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
  align-items: center;
  margin-top: 30px;
}
.nutrition-image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.nutrition-details h3 {
  text-align: center;
  font-size: 26px;
  font-weight: 700;
  color: #EB1551;
  margin-bottom: 20px;
}

.nutrition-details p {
  max-width: 900px;
  margin: 0 auto 25px;
  line-height: 1.7;
  color: #000;
  text-align: center;
}
/* Text alignment */
.nutrition-text p {
  text-align: center;
}
/* Nutrition Skills List */
.nutrition-skills {
  margin: 20px 0 25px;
}

.nutrition-skills li {
  /* background: #ffffff; */
  /* margin-bottom: 12px;
  padding: 14px 18px; */
  border-radius: 12px;
  font-weight: 500;
  /* box-shadow: 0 4px 14px rgba(0,0,0,0.06); */
  position: relative;
  padding-left: 40px;
}

/* Check icon */
.nutrition-skills li::before {
  content: "✔";
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: #EB1551;
  font-size: 14px;
  font-weight: bold;
}

/* Responsive */
@media (max-width: 768px) {
  .nutrition-details h3 {
    font-size: 22px;
  }

  .nutrition-intro p,
  .nutrition-details p {
    font-size: 15px;
  }
}
@media (max-width: 900px) {
  .nutrition-details-content {
    grid-template-columns: 1fr;
  }

  .nutrition-image img {
    height: 300px;
  }

  .nutrition-text p {
    text-align: center;
  }
}



