/* Unique Prenatal & Postnatal Section */
.unique-prenatal-postnatal-section {
  
  padding: 40px 20px;
  font-family: 'Nunito', sans-serif;
}

.unique-container {
  max-width: 1200px;
  margin: 0 auto;
}

.unique-section-title {
  font-size: 2rem;
  font-weight: bold;
  color: #B6483D;
  text-align: center;
  margin-bottom: 20px;
}

/* Full Content Section */
.unique-full-content {
  font-size: 1rem;
  color: #333;
  line-height: 1.6;
  margin-bottom: 30px;
}

/* Split Content Section */
.unique-content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
}

.unique-text-content {
  flex: 1;
  font-size: 1rem;
  color: #333;
  line-height: 1.6;
}

.unique-image-content {
  flex: 1;
  text-align: center;
}

.unique-image-content img {
  max-width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Quote Box */
.unique-quote-box {
  /* background-color: #fff7dd; */
  border: 2px solid #B6483D;
  border-radius: 50px;
  padding: 0px 40px;
  margin-top: 30px;
  font-size: 1rem;

  text-align: center;
  font-style: italic;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Responsive Design for Mobile */
@media (max-width: 768px) {
  .unique-content-wrapper {
    flex-direction: column;
  }

  .unique-text-content,
  .unique-image-content {
    flex: unset;
    width: 100%;
  }

  .unique-section-title {
    font-size: 1.5rem;
  }

  .unique-full-content {
    font-size: 0.95rem;
  }

  .unique-quote-box {
    font-size: 0.9rem;
    padding: 15px;
  }
}

@media (max-width: 480px) {
  .unique-section-title {
    font-size: 1.3rem;
  }

  .unique-full-content {
    font-size: 0.9rem;
  }

  .unique-quote-box {
    font-size: 0.85rem;
    padding: 10px;
  }
}

/* Pre-Natal and Post-Natal Yoga Section */
.unique-prenatal-postnatal-info {
  background: #f9f9f9;
  padding: 60px 20px;
}

.unique-prenatal-postnatal-info .unique-container {
  max-width: 1200px;
  margin: 0 auto;
}

.unique-prenatal-postnatal-info .unique-section-title {
  text-align: center;
  font-size: 2.5rem;
  font-family: 'Philosopher', serif;
  color: #333;
  margin-bottom: 40px;
}

.unique-prenatal-postnatal-info .unique-info-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
}

.unique-prenatal-postnatal-info .unique-info-box {
  display: flex;
  flex-direction: row;
  align-items: center;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  max-width: 1000px;
}

.unique-prenatal-postnatal-info .unique-info-box:nth-child(even) {
  flex-direction: row-reverse;
}

.unique-prenatal-postnatal-info .unique-info-image img {
  width: 100%;
  max-width: 400px;
  height: auto;
  object-fit: cover;
}

.unique-prenatal-postnatal-info .unique-info-content {
  padding: 20px;
}

.unique-prenatal-postnatal-info .unique-info-title {
  font-size: 1.8rem;
  font-family: 'Nunito', sans-serif;
  color: #444;
  margin-bottom: 15px;
}

.unique-prenatal-postnatal-info .unique-info-content p {
  font-size: 1rem;
  line-height: 1.6;
  color: #666;
}


/* Prenatal & Postnatal Section */
.prenatal-postnatal-section {
  padding: 20px 20px;
  /* background: linear-gradient(135deg, #fdfcfb, #f3f3f3); */
}

.prenatal-postnatal-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.section-title {
  font-size: 2.8rem;
  font-weight: bold;
  color: #f07272ff;
  margin-bottom: 10px;
}

.section-subtitle {
  font-size: 1.2rem;
  color: #f06b6bff;
  margin-bottom: 50px;
}

.prenatal-postnatal-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
}

.prenatal-section,
.postnatal-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(224, 117, 117, 0.1);
  padding: 20px;
  border: 2px solid #B6483D;
}

.prenatal-section .prenatal-image,
.postnatal-section .postnatal-image {
  flex: 1;
  max-width: 45%;
}

.prenatal-section .prenatal-content,
.postnatal-section .postnatal-content {
  flex: 1;
  max-width: 55%;
  text-align: left;
}

.prenatal-image img,
.postnatal-image img {
  width: 100%;
  border-radius: 10px;
  /* box-shadow: 0 4px 10px rgba(235, 118, 118, 0.1); */
  transition: transform 0.3s ease;
}

.prenatal-image img:hover,
.postnatal-image img:hover {
  transform: scale(1.05);
}

.prenatal-content h3,
.postnatal-content h3 {
  font-size: 2rem;
  /* color: #e76464ff; */
  margin-bottom: 15px;
}



@media (max-width: 768px) {

  .prenatal-section,
  .postnatal-section {
    flex-direction: column;
    text-align: center;
  }

  .prenatal-section .prenatal-image,
  .postnatal-section .postnatal-image,
  .prenatal-section .prenatal-content,
  .postnatal-section .postnatal-content {
    max-width: 100%;
  }
}


/* YACEP Certification Section */
.yacep-certification-section {
  padding: 20px 20px;
  /* background: linear-gradient(135deg, #fff, #f9f9f9); */
}

.yacep-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.yacep-title {
  font-size: 20px;
  font-weight: bold;
  /* color: #e76464ff; */
  margin-bottom: 15px;
}

.yacep-subtitle {
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 50px;
  line-height: 1.6;
}

.yacep-content-wrapper {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.yacep-text-content {
  flex: 1;
  max-width: 55%;
  text-align: left;
}


.yacep-text-content ul {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
}

.yacep-text-content ul li {
  font-size: 13px;
  color: #444;
  margin-bottom: 15px;
  position: relative;
  padding-left: 30px;
}

.yacep-text-content ul li::before {
  content: "\f058";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: #e76464ff;
  position: absolute;
  left: 0;
  top: 0;
}

.yacep-image-content {
  flex: 1;
  max-width: 45%;
}

.yacep-image-content img {
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.yacep-image-content img:hover {
  transform: scale(1.05);
}

/* SVG Border Styling */
.yacep-svg-border {
  position: relative;
  margin-top: -95px;
  /* Adjust overlap */
}

.yacep-svg-border svg {
  display: block;
  width: 100%;
  height: auto;
}

@media (max-width: 768px) {
  .yacep-content-wrapper {
    flex-direction: column;
    text-align: center;
  }

  .yacep-text-content,
  .yacep-image-content {
    max-width: 100%;
  }
}

/* Underline Below Title */
.yacep-title-underline {
  width: 80px;
  height: 4px;
  background: #e76464;
  margin: 10px auto 30px;
  border-radius: 2px;
}


/*   */

.gt-prenatal-section {
  padding: 60px 0;
  font-family: 'Poppins', sans-serif;
}

.gt-container {
  width: 85%;
  margin: auto;
  max-width: 1200px;
}

.gt-title {
  font-size: 32px;
  font-weight: 600;
  color: #B6483D;
}

.gt-curriculum-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
}

/* Accordion Item */
.gt-acc-item {
  border: 1px solid #b6483d;
  border-radius: 6px;
  margin-bottom: 12px;
  overflow: hidden;
  background: #fff;
  transition: 0.3s ease;
}

/* Button */
.gt-acc-header {
  width: 100%;
  background: #fff;
  border: none;
  padding: 15px 18px;
  cursor: pointer;
  font-weight: 500;
  font-size: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.gt-icon {
  font-size: 20px;
  color: #d9534f;
  transition: 0.3s;
  font-weight: bold;
}

/* Hidden content */
.gt-acc-content {
  max-height: 0;
  overflow: hidden;
  background: #fafafa;
  padding: 0 18px;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

/* Active dropdown */
.gt-acc-item.active .gt-acc-content {
  padding: 15px 18px;
  max-height: 500px;
}

.gt-acc-item.active .gt-icon {
  transform: rotate(45deg);
}

.gt-curriculum-title {
  font-size: 20px;
  font-weight: 600;
  color: #B6483D;
  margin-bottom: 20px;
}

.display-flex {
  display: flex;
  gap: 20px;
}

@media(max-width: 768px) {
  .gt-curriculum-grid {
    grid-template-columns: 1fr;
  }
}

/* Who Should Not Attend Section */
.who-should-not-attend-section {
  padding: 60px 20px;
  /* background: #f9f9f9; */
}

.who-should-not-attend-container {
  max-width: 1200px;
  margin: 0 auto;
}

.who-should-not-attend-wrapper {
  display: flex;
  gap: 40px;
  align-items: center;
  flex-wrap: wrap;
}

.who-should-not-attend-image {
  flex: 1;
  max-width: 50%;
}

.who-should-not-attend-image img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.who-should-not-attend-content {
  flex: 1;
  max-width: 50%;
}

.who-should-not-attend-content h3 {
  /* color: #eb7171; */
  margin-bottom: 10px;
}

.content-divider {
  border: 0;
  border-top: 2px solid #dc5d5d;
  margin: 20px 0;
}

.who-should-not-attend-content ul {
  list-style: none;
  padding: 0;
  text-align: justify;
}

.who-should-not-attend-content ul li {
  font-size: 15px;
  /* color: #787272; */
  line-height: 1.8;
}

.who-should-not-attend-content ul li::before {
  content: "✔";
  color: #e86c43;
  margin-right: 10px;
}

/* Responsive Design for Mobile */
@media (max-width: 768px) {
  .who-should-not-attend-wrapper {
    flex-direction: column;
    text-align: center;
  }

  .who-should-not-attend-image,
  .who-should-not-attend-content {
    max-width: 100%;
  }

  .who-should-not-attend-image img {
    max-width: 100%;
    height: auto;
  }

  .who-should-not-attend-content h3 {
    font-size: 1.5rem;
  }

  .who-should-not-attend-content ul li {
    font-size: 14px;
  }
}


/*  */

.pregnancy-section {
  max-width: 1100px;
  margin: 40px auto 0 auto;
  padding: 0 16px 40px 16px;
  /* background: linear-gradient(90deg, #fff 60%, #f8f6f3 100%); */
  border-radius: 18px;
  box-shadow: 0 6px 32px rgba(0, 0, 0, 0.07);
}

.pregnancy-title {
  font-family: 'Philosopher', serif;
  font-size: 2.3rem;
  color: #444;
  font-weight: 700;
  text-align: center;
  letter-spacing: 1px;
  margin-top: 24px;
}

.pregnancy-subtitle {
  text-align: center;
  font-size: 1.1rem;
  color: #444;
  font-weight: 600;
  margin-top: 10px;
  letter-spacing: 0.5px;
}

.pregnancy-divider {
  text-align: center;
  margin: 12px 0 32px 0;
}

.pregnancy-divider i {
  color: #e9675f;
  font-size: 1.1rem;
  margin: 0 2px;
}

.pregnancy-row {
  display: flex;
  gap: 36px;
  align-items: stretch;
  justify-content: center;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.pregnancy-row-content {
  flex: 1 1 380px;
  min-width: 320px;
  max-width: 600px;
  display: flex;
  align-items: center;
}




.pregnancy-content-full {
  width: 100%;
  display: flex;
  justify-content: center;
}

.pregnancy-content-inner {
  width: 100%;
  max-width: 900px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 18px rgba(255, 107, 74, 0.06);
  padding: 32px 32px 24px 32px;
  margin-top: 0;
}

.pregnancy-learn-box,
.pregnancy-who-box {
  background: #f8f6f3;
  border-left: 4px solid #e9675f;
  border-radius: 8px;
  padding: 16px 18px 12px 18px;
  margin-bottom: 18px;
  box-shadow: 0 1px 8px rgba(255, 107, 74, 0.04);
}

.learn-title,
.who-title {
  font-weight: 700;
  color: #B6483D;
  margin-bottom: 8px;
  font-size: 30px;
  letter-spacing: 0.5px;
}

.pregnancy-learn-box ul {
  margin: 0 0 0 0;
  padding-left: 18px;
}

.pregnancy-learn-box li {
  font-size: 14px;
  color: #333;
  margin-bottom: 7px;
  list-style: none;
}

.pregnancy-learn-box li i {
  color: #B6483D;
  margin-right: 7px;
}

.pregnancy-who-box p {
  margin: 0;
  font-size: 13px;
  color: #333;
}

@media (max-width: 900px) {
  .pregnancy-row {
    flex-direction: column;
    gap: 24px;
  }



  .pregnancy-content-inner {
    padding: 18px 6vw 12px 6vw;
  }
}

@media (max-width: 600px) {
  .pregnancy-section {
    padding: 0 2vw 24px 2vw;
  }

  .pregnancy-title {
    font-size: 1.5rem;
  }

  .pregnancy-row-content p,
  .pregnancy-content-inner {
    padding: 12px 4vw 10px 4vw;
  }

}



.prenatal-safety-section {
  width: 90vw;
  max-width: 100vw;
  margin: 40px 0 0 0;
  padding: 0 60px;
  background: transparent;
  box-sizing: border-box;
}

.prenatal-safety-flex {
  display: flex;
  width: 100%;
  gap: 20px;
  align-items: stretch;
  justify-content: stretch;
}

.prenatal-safety-img {
  flex: 0 0 20%;
  width: 20%;
  max-width: 20%;
  min-width: 0;
  /* background: #fff; */
  border-radius: 18px 0 0 18px;
  /* box-shadow: 0 2px 18px rgba(0,0,0,0.10); */
  overflow: hidden;
  display: flex;
  align-items: stretch;
  padding: 32px 0 32px 0;
}

.prenatal-safety-img img {
  width: 100%;
  height: 100%;
  min-height: 350px;
  object-fit: cover;
  display: block;
  border-radius: 12px;
}

.prenatal-safety-content {
  flex: 1 1 80%;
  width: 80%;
  max-width: 80%;
  min-width: 0;
  /* background: #fff; */
  border-radius: 0 18px 18px 0;
  /* box-shadow: 0 2px 18px rgba(0,0,0,0.10); */
  padding: 32px 0 32px 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
  justify-content: center;
}

.prenatal-safety-heading {
  background: #8b7747;
  color: #fff;
  font-size: 1.2rem;
  font-family: 'Quicksand', 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  border-radius: 8px;
  padding: 12px 18px;
  margin-bottom: 10px;
  box-shadow: 0 4px 12px rgba(139, 119, 71, 0.13);
  letter-spacing: 0.5px;
}

.prenatal-safety-answer {
  font-size: 1rem;
  color: #6a5a2b;
  font-family: 'Quicksand', Arial, sans-serif;
  font-weight: 500;
  margin-bottom: 8px;
  line-height: 1.7;
}

.yes-highlight {
  color: #8b7747;
  font-size: 1.1rem;
  font-weight: 700;
  font-family: 'Philosopher', serif;
  margin-right: 6px;
}

.prenatal-safety-para {
  font-size: 0.98rem;
  color: #6a5a2b;
  font-family: 'Quicksand', Arial, sans-serif;
  line-height: 1.7;
  margin-top: 8px;
}

@media (max-width: 1100px) {
  .prenatal-safety-section {
    padding: 0 10px;
  }

  .prenatal-safety-flex {
    flex-direction: column;
    gap: 20px;
  }

  .prenatal-safety-img,
  .prenatal-safety-content {
    width: 100%;
    max-width: 100%;
    border-radius: 0;
    padding: 18px 0 10px 0;
  }

  .prenatal-safety-img img {
    border-radius: 12px;
    min-height: 180px;
  }
}

@media (max-width: 700px) {
  .prenatal-safety-section {
    padding: 0 2vw;
  }

  .prenatal-safety-heading {
    font-size: 1rem;
    padding: 8px 6px;
  }

  .prenatal-safety-content {
    padding: 8px 0 8px 0;
  }
}



/*  */

/* Learn Section */
.learn-section {
  padding: 60px 20px;

  background: linear-gradient(rgb(96 76 76), rgb(0 0 0 / 74%)), url(../image/backimg.avif) no-repeat center center / cover;
  /* Lighten the background with a semi-transparent white overlay */
  background-attachment: fixed;
  /* Makes the background image fixed */
  text-align: center;
}

.learn-container {
  max-width: 1200px;
  margin: 0 auto;
}

.learn-titles {
  font-size: 2.5rem;
  font-weight: bold;
  color: white;
  /* Changed to darker color for better contrast */
  margin-bottom: 40px;
  position: relative;
}

/*.learn-title::after {*/
/*  content: "";*/
/*  display: block;*/
/*  width: 80px;*/
/*  height: 4px;*/
/*  background: #f77474ff;*/
/*  border-radius: 2px;*/
/*}*/

.learn-titles::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background: #e2aaaaff;
  /* Changed to darker color for better contrast */
  border-radius: 2px;
  margin: 10px auto 0;
}

.learn-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  /* 5 items per row */
  gap: 20px;
  /* Added spacing between items */
}

.learn-item {
  padding: 0px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.learn-item:hover {
  transform: translateY(-10px);
  /* Lift effect on hover */
}

.learn-item img {
  width: 60%;
  height: 120px;
  /* Fixed height for uniformity */
  border-radius: 40px;
  margin-bottom: 0px;
  border: 2px solid white;
}

.learn-item p {
  font-size: 1rem;
  font-weight: bold;
  color: white !important;
  /* Changed to darker color for better readability */
  margin-top: 10px;
  text-align: center !important;
}

/* Responsive Design */
@media (max-width: 768px) {
  .learn-grid {
    grid-template-columns: repeat(2, 1fr);
    /* 2 items per row on smaller screens */
    gap: 10px;
  }
}

@media (max-width: 480px) {
  .learn-grid {
    grid-template-columns: 1fr;
    /* 1 item per row on very small screens */
    gap: 15px;
  }
}

.syal {
  margin: 10px 0;
}



    /* Daily Schedule Section */
    .daily-schedule-unique-section {
      padding: 40px 20px;
      /* background-color: #f9f9f9; */
      text-align: center;
    }

    .daily-schedule-unique-title {
      font-family: 'Montserrat', sans-serif;
      font-size: 28px;
      font-weight: bold;
      color: #B6483D;
      text-transform: uppercase;
      margin-bottom: 10px;
    }

    .daily-schedule-unique-subtitle {
      font-size: 18px;
      /* color: #34495e; */
      margin-bottom: 30px;
    }

    .schedule-unique-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 20px;
      padding: 0 100px 0 100px;
    }

    .schedule-unique-item {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      border-radius: 8px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
      background: #fff;
      border: 1px solid #B6483D;
    }

    .schedule-unique-time {
      font-family: 'Montserrat', sans-serif;
      font-size: 16px;
      font-weight: bold;
      color: #f44336ba;
    }

    .schedule-unique-task {
      font-weight: 700;
      font-size: 16px;
      color: #f44336ba;
    }

    /* Responsive Design */
    @media (max-width: 768px) {
      .schedule-unique-grid {
        grid-template-columns: 1fr;
        padding: 0;
      }
    }
 