.features,
.breakdown,
.assessment,
.achievement {
  background-color: #f9f9f9;
  padding: 15px;
  margin: 20px 0;
  border-radius: 8px;
  border-left: 3px solid #f4c2c2;
  border-top: 3px solid #f4c2c2;
  /* box-shadow: 5px 10px 20px rgb(228, 180, 186) inset; */
  /* box-shadow: 10px 10px 5px lightblue; */

  transition: transform 0.3s, box-shadow 0.3s;
}

.features:hover,
.breakdown:hover,
.assessment:hover,
.achievement:hover {
  transform: scale(1.02);
  box-shadow: 0 6px 15px rgba(177, 44, 97, 0.3);
}

.features h3,
.breakdown h3,
.assessment h3,
.achievement h3 {
  color: #244568;
  text-align: left;
  margin-bottom: 25px; /* Updated to mb-25 equivalent */
  border-bottom: 3px solid #244568; /* Added bottom-line equivalent */
}

ul {
  list-style-type: disc;
  padding-left: 20px;
}

ul li {
  margin: 5px 0;
  color: #555;
}

ul p {
  margin: 0;
  color: #333;
}
/* Banner Styling */
.banner {
  position: relative;
  width: 100%;
  max-height: 800px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
}

.banner img {
  width: 100%;
  height: auto;
  object-fit: cover;
  filter: brightness(100%);
}

.banner-content {
  position: absolute;
  left: 65%;
  transform: translateX(-50%);
  max-width: 50%;
  text-align: center;
  padding: 20px;
}
.small-heading {
  font-size: 20px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
  color: #244568;
}

.main-heading {
  font-size: 40px;
  font-weight: bold;
  margin-bottom: 10px;
}

.learn-title {
  font-size: 24px;
  font-weight: normal;
  margin-bottom: 20px;
}

.section p {
  font-size: 16px;
  line-height: 1.6;
  font-weight: 400;

  padding: 15px;
  border-radius: 8px;
  display: inline-block;
}
@media screen and (max-width: 1024px) {
  .banner-content {
    left: 55%;
    max-width: 60%;
  }

  .main-heading {
    font-size: 36px;
  }

  .learn-title {
    font-size: 22px;
  }

  .section p {
    font-size: 15px;
  }
}

/* Responsive adjustments for mobile devices (600px and below) */
@media screen and (max-width: 768px) {
  .banner {
    max-height: 600px;
  }

  .banner-content {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    max-width: 80%;
    text-align: center;
    padding: 10px;
  }

  .small-heading {
    font-size: 18px;
  }

  .main-heading {
    font-size: 30px;
  }

  .learn-title {
    font-size: 20px;
  }

  .section p {
    font-size: 14px;
    padding: 10px;
  }
}
@media screen and (max-width: 926px) {
  .banner {
    max-height: 650px;
  }

  .banner-content {
    position: absolute;
    left: 70%;
    transform: translateX(-50%);
    max-width: 50%;
    text-align: center;
    padding: 10px;
    height: auto;
  }

  .small-heading {
    font-size: 18px;
  }

  .main-heading {
    font-size: 30px;
  }

  .learn-title {
    font-size: 20px;
    margin: 2px !important;
  }

  .section p {
    font-size: 3px;
    padding: 0;
  }
}

/* Further adjustments for very small screens (400px and below) */
@media screen and (max-width: 480px) {
  .banner {
    max-height: 500px;
  }
  .banner-content {
    position: absolute;
    left: 58%;
    max-width: 100%;
    text-align: center;
    height: -30px;
    justify-content: center;
  }
  .main-heading {
    font-size: 10px;
  }
  .small-heading {
    font-size: 8px;
  }

  .learn-title {
    font-size: 8px;
    margin: 2px !important;
  }

  .section p {
    font-size: 6px;
  }
}

.heading- {
  font-size: 14px;
  font-weight: bold;
  color: #ecacac;
  display: inline-block;
  margin-right: 8px;
  vertical-align: middle;
}

.heading-assessment {
  color: #244568;
  text-align: center;
}

.cards-container {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: 20px;
}

.assessment,
.achievement {
  flex: 1;
  max-width: 33%;
  background-color: #f9f9f9;
  padding: 20px;
  border-radius: 8px;

  text-align: left;
  transition: transform 0.3s, box-shadow 0.3s;
}

.assessment:hover,
.achievement:hover {
  transform: scale(1.02);
  box-shadow: 0 6px 15px rgba(177, 44, 97, 0.3);
}

.assessment h3,
.achievement h3 {
  color: #244568;
  text-align: center;
  margin-bottom: 15px;
  border-bottom: 3px solid #244568;
  padding-bottom: 5px;
}

ul {
  list-style-type: disc;
  padding-left: 20px;
}

ul li {
  margin: 5px 0;
  color: #555;
}

p {
  margin: 10px 0;
  color: #333;
}

.requirements {
  margin-top: 20px;
  text-align: left;

  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  gap: 50px;
}

.requirements-content {
  flex: 1;
  max-width: 70%;
  margin-top: 40px;
}

.requirements img {
  max-width: 50%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  align-self: flex-start;
}

/* Responsive adjustments */
@media screen and (max-width: 900px) {
  .requirements {
    max-width: 90%;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
  }

  .requirements h3 {
    font-size: 22px;
  }

  .requirements h6 {
    font-size: 16px;
  }

  .requirements li {
    font-size: 14px;
    text-align: left;
  }

  .requirements img {
    max-width: 100%;
    height: auto;
  }
}

@media screen and (max-width: 768px) {
  .requirements {
    max-width: 95%;
    padding: 15px;
  }

  .requirements h3 {
    font-size: 20px;
  }

  .requirements h6 {
    font-size: 15px;
  }

  .requirements li {
    font-size: 13px;
  }

  .requirements img {
    width: 100%;
    height: auto;
  }
}

.card-container {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: stretch;
  width: 90%;
  max-width: 1200px;
  border-radius: 10px;
  margin-left: auto;
  margin-right: auto;
  padding: 30px;
  gap: 30px;
}

.cards {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  background-color: #f9f9f9;
  align-items: center;
  padding: 30px;
  min-height: 200px;
  border-radius: 10px;
  border-left: 3px solid #f4c2c2;
  border-top: 3px solid #f4c2c2;
  border-right: 3px solid #f4c2c2;
  border-bottom: 3px solid #f4c2c2;
}
.cards:hover {
  transform: scale(1.02);
  box-shadow: 0 6px 15px lightgray;
}
.cards h3 {
  color: balck;
  text-align: left;
  margin-bottom: 25px;
  border-bottom: 3px solid #244568;
}

@media screen and (max-width: 992px) {
  .card-container {
    flex-direction: column;
    align-items: center;
  }

  .cards {
    width: 100%;
  }
}

.cards-container_1 {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  margin: 0 auto;
  padding: 0 50px;
  gap: 20px;
  flex-wrap: wrap;
}
.cards_1:hover {
  transform: scale(1.02);
  box-shadow: 0 6px 15px lightgray;
}

.cards_1 {
  flex: 1;
  display: flex;
  flex-direction: column;
  background-color: #f9f9f9;
  padding: 30px;
  min-height: 250px;
  border-left: 3px solid #f4c2c2;
  border-top: 3px solid #f4c2c2;
  border-right: 3px solid #f4c2c2;
  border-bottom: 3px solid #f4c2c2;
  border-radius: 10px;

  text-align: left;
}

.cards_1 h3 {
  color: balck;
  text-align: center;
  margin-bottom: 25px;
  border-bottom: 3px solid #244568;
}

@media (max-width: 992px) {
  .cards-container_1 {
    flex-direction: column;
    align-items: center;
  }

  .cards_1 {
    width: 100%;
  }
}
.adult-card {
  flex-direction: column;
  background-color: #f9f9f9;
  align-items: center;
  padding: 30px;
  min-height: 320px;

  border-radius: 10px;
  border-left: 3px solid #f4c2c2;
  border-top: 3px solid #f4c2c2;
  border-right: 3px solid #f4c2c2;
  border-bottom: 3px solid #f4c2c2;
}
.adult-container {
  justify-content: space-between;
  align-items: stretch;
  width: 90%;
  max-width: 1000px;
  border-radius: 10px;
  margin-left: auto;
  margin-right: auto;
  padding: 30px;
  gap: 30px;
}
.adult-card:hover {
  transform: scale(1.02);
  box-shadow: 0 6px 15px lightgray;
}
.adult-card h3 {
  padding: 5px;
  color: balck;
  text-align: center;
  margin-bottom: 25px;
  border-bottom: 3px solid #244568;
}
@media (max-width: 992px) {
  .adult-container {
    flex-direction: column;
    align-items: center;
  }

  .adult-card {
    width: 100%;
  }
}
.animate-img {
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.animate-img.in {
  opacity: 1;
  transform: scale(1);
}

.animate-img.out {
  opacity: 0;
  transform: scale(0.95);
}
.approach-image:hover {
  transform: scale(1.05) rotateZ(1deg);
  transition: transform 0.4s ease-in-out;
}
.fade-slide {
  opacity: 0;
  transform: translateX(-20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.fade-slide.in {
  opacity: 1;
  transform: translateX(0);
}
