/* ____________________________________________ start banner __________________________________ */
.banner {
  height: 90vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: url("../img/banner.png");
  background-size: cover;
  background-position: center;
}

.secondBanner {
  height: 90vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: url("../img/bannerDemo.png");
  background-size: cover;
  background-position: center;
}

.banner_content_title {
  color: #fff;

  font-size: 4rem;
  margin-bottom: 1.5rem;
  font-weight: 800;
}

.banner_content_desc {
  color: #fff;
  margin-bottom: 40px;
  font-size: 1rem;
  font-weight: 400;
}

.banner_content_buttons {
  gap: 20px;
  display: flex;
}

.banner_content_buttons_button {
  color: #172462;
  font-size: 1rem;
  font-weight: 500;

  width: 245px;
  height: 48px;
  padding: 11px 50px;

  border-radius: 5px;
  background: #33bead;
}

.banner_content_buttons_button:hover {
  color: #172462;
  text-decoration: none;
}

@media (max-width: 768px) {
  .banner_content_buttons {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}

/* ____________________________________________ end banner __________________________________ */

/* ____________________________________________ start courses __________________________________ */
.courses {
  padding: 24px 0;
  background: linear-gradient(90deg, #168376 0%, #172462 100%);
}

.courses_desc {
  color: #fff;
  font-size: 1.15rem;
  font-weight: 700;
  /* text-transform: capitalize; */
  margin-bottom: 0;
}

/* ____________________________________________ end courses __________________________________ */

/* ____________________________________________ start AI __________________________________ */
.AI {
  padding: 80px 0;
}

.AI_title {
  color: #172462;
  font-size: 2.25rem;
  margin-bottom: 2rem;
  font-weight: 700;
  /* text-transform: capitalize; */
}

.AI_desc {
  color: #212529;

  font-size: 1.1rem;
  font-weight: 400;
  margin-bottom: 1.5rem;
}

/* Breadcrumb Styles */
.program-breadcrumb {
  font-size: 0.9rem;
  margin-bottom: 35px;
  font-family: "Roboto", sans-serif;
  text-align: left;
}

.breadcrumb-parent {
  color: #8c8c8c;
  font-weight: 400;
  transition: color 0.3s ease;
  text-decoration: none;
}

.breadcrumb-parent:hover {
  color: #172462;
  text-decoration: none;
}

.breadcrumb-separator {
  color: #b05c7b;
  margin: 0 8px;
  font-weight: 700;
}

.breadcrumb-child {
  color: #8c8c8c;
  font-weight: 400;
}

/* Location Pill Styles */
.location-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(46, 175, 172, 0.4);
  background-color: rgba(46, 175, 172, 0.02);
  padding: 10px 24px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(46, 175, 172, 0.05);
}

.location-pill:hover {
  background-color: rgba(46, 175, 172, 0.06);
  border-color: rgba(46, 175, 172, 0.7);
  box-shadow: 0 4px 12px rgba(46, 175, 172, 0.12);
  transform: translateY(-1px);
  text-decoration: none;
}

.location-pill svg {
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.location-pill:hover svg {
  transform: scale(1.1);
}

.location-pill span {
  color: #094581;
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
}

/* ____________________________________________ end AI __________________________________ */

/* ____________________________________________ start road __________________________________ */

.road {
  padding: 40px 0 70px;
  background: url("../img/bg.png") lightgray 0px -245.368px / 100% 163.353%
    no-repeat;
}

.road_title {
  color: #172462;

  font-size: 2rem;
  font-weight: 700;
  /* text-transform: capitalize; */
  margin-bottom: 50px;
}

.road_boxes {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.road_boxes_box {
  width: calc(85% / 5);
  flex: 0 0 calc(85% / 5);
  background-color: white;
  padding: 1rem 0.85rem;
  border-radius: 0 0 50px 50px;
  position: relative;
  height: 260px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  filter: drop-shadow(0 6mm 4mm rgb(169, 169, 169));
}

.road_boxes_box:first-of-type {
  height: 300px;
}

.road_boxes_box::before {
  content: "";
  position: absolute;
  top: 15px;
  left: 0;
  background-color: #e4e7e9;
  width: 100%;
  height: 23px;
  z-index: 9;
}

@media (max-width: 1200px) {
  .road_boxes_box::before {
    top: -6px;
    height: 20px;
  }
}

@media (max-width: 991px) {
  .road_boxes_box {
    width: calc(85% / 3);
    flex: 0 0 calc(85% / 3);
    margin-bottom: 3rem;
  }

  .road_boxes_box::before {
    top: -2px;
  }
}

@media (max-width: 768px) {
  .road_boxes {
    justify-content: space-between;
    gap: 0;
  }

  .road_boxes_box {
    width: calc(96% / 2);
    flex: 0 0 calc(96% / 2);
  }

  .road_boxes_box::before {
    top: 4px;
  }
}

@media (max-width: 568px) {
  .road_boxes {
    justify-content: space-between;
    gap: 0;
  }

  .road_boxes_box {
    width: 100%;
    flex: 0 0 100%;
  }

  .road_boxes_box:first-of-type {
    height: 260px;
    display: flex;
  }
}

.road_boxes_box::after {
  content: "";
  position: absolute;
  z-index: -1;

  bottom: -15px;
  left: 15%;
  right: 15%;
  height: 20px;

  background: rgba(0, 0, 0, 0.35);
  border-radius: 50%;
  filter: blur(15px);
  opacity: 0.6;
}

.road_boxes_box .topp {
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  transform: scale(1.15);
}

@media (max-width: 1200px) {
  .road_boxes_box .topp {
    top: -17px;
  }
}

@media (max-width: 768px) {
  .road_boxes_box .topp {
    transform: none;
    height: 42px;
  }
}

.road_boxes_box_number {
  font-weight: bold;
  font-size: 3rem;
}

.road_boxes_box_number.one {
  color: #554bc0;
}

.road_boxes_box_number.two {
  color: #ed4866;
}

.road_boxes_box_number.three {
  color: #ff743f;
}

.road_boxes_box_number.four {
  color: #ed901c;
}

.road_boxes_box_number.five {
  color: #2eafac;
}

.road_boxes_box_title {
  color: #212529;

  font-size: 1rem;
  font-weight: 400;
}

.road_boxes_box_desc {
  color: #737272;
  margin-bottom: 10px;
  font-size: 1rem;
  font-weight: 400;
}

.location {
  border-top: 1px solid #d3d3d3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 12px 0 0 0;
  align-items: center;
}

.location a {
  color: #094581;
  font-size: 0.9rem;
  font-weight: 400;
  text-decoration: none;
  margin: 10px 0 0 0;
}

.location a:hover {
  color: #094581;

  text-decoration: none;
}

/* ____________________________________________ end road __________________________________ */
/* ____________________________________________ start spotlight __________________________________ */

.spotlight {
  padding: 40px;
  background:
    linear-gradient(
      0deg,
      rgba(233, 244, 255, 0.8) 0%,
      rgba(233, 244, 255, 0.8) 100%
    ),
    url("../img/bg2.jpg") lightgray 50% / cover no-repeat;
}

.spotlight_content1 {
  margin-bottom: 40px;
}

.spotlight_content1_title {
  color: #172462;
  margin-bottom: 2rem;
  font-size: 2rem;
  font-weight: 700;
}

.spotlight_content1_desc {
  color: #212529;

  font-size: 1.1rem;
  font-weight: 400;
}

.spotlight_content2 {
  margin-bottom: 40px;
}

.spotlight_content2_title,
.spotlight_content3_title {
  color: #172462;
  font-size: 1.5rem;
  font-weight: 700;
  text-transform: capitalize;
  margin-bottom: 1rem;
}

.spotlight_content2_boxes {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.spotlight_content2_boxes_box {
  padding: 23px 23px 0 23px;
  width: calc(100% / 5);
  flex: 0 0 calc(100% / 5);
}

@media (max-width: 1200px) {
  .spotlight_content2_boxes {
    justify-content: start;
    flex-wrap: wrap;
    gap: 2%;
  }

  .spotlight_content2_boxes_box {
    width: calc(96% / 3);
    flex: 0 0 calc(96% / 3);
  }
}

@media (max-width: 768px) {
  .spotlight_content2_boxes {
    justify-content: space-between;
    gap: 0;
  }

  .spotlight_content2_boxes_box {
    width: calc(96% / 2);
    flex: 0 0 calc(96% / 2);
  }
}

@media (max-width: 568px) {
  .spotlight_content2_boxes {
    justify-content: space-between;
    gap: 0;
  }

  .spotlight_content2_boxes_box {
    width: 100%;
    flex: 0 0 100%;
    padding: 1rem;
  }
}

.spotlight_content2_boxes_box_img {
  width: 100px;
  height: 100px;
  margin-bottom: 1rem;
}

.spotlight_content2_boxes_box_title {
  color: #172462;
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: capitalize;
  min-height: 45px;
}

.spotlight_content2_boxes_box_desc {
  color: #737272;
  font-size: 1rem;
  font-weight: 400;
  /* text-transform: capitalize; */
  margin-bottom: 0;
  min-height: 96px;
}

@media (max-width: 1200px) {
  .spotlight_content2_boxes_box_desc {
    min-height: 72px;
  }
}

@media (max-width: 991px) {
  .spotlight_content2_boxes_box_desc {
    min-height: 96px;
  }
}

@media (max-width: 568px) {
  .spotlight_content2_boxes_box_desc {
    min-height: auto;
  }
}

/* @media (max-width: 768px) {
  .spotlight_content2_boxes_box_desc {
    min-height: 72px;
  } 
} */

.spotlight_content3_box {
  border-radius: 8px;
  background-color: white;
  padding: 50px 1.5rem;
  position: relative;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.spotlight_content3_box_img {
  position: absolute;
  left: 0;
  bottom: 0;
  opacity: 30%;
  width: 30%;
}

.spotlight_content3_box_desc {
  color: #172462;
  margin-bottom: 0;
  font-size: 1.1rem;
  font-weight: 400;
  /* text-transform: capitalize; */
}

/* ____________________________________________ end spotlight __________________________________ */
/* ____________________________________________ start instructor __________________________________ */

.instructor {
  padding: 40px 0;
  background-image: url("../img/bg.jpg");
  background-size: cover;
}

@media (max-width: 768px) {
  .instructor {
    background-size: contain;
  }
}

.instructor_img {
  width: 138px;
  height: 138px;
  margin-bottom: 2rem;
}

.instructor_title {
  color: #000;
  margin-bottom: 1rem;
  font-size: 1.1rem;
  font-weight: 700;
  /* text-transform: capitalize; */
}

.instructor_desc {
  color: #737272;
  font-size: 1rem;
  font-weight: 400;
  /* text-transform: capitalize; */
  margin-bottom: 2rem;
}

/* ____________________________________________ end instructor __________________________________ */
/* ____________________________________________ start impact __________________________________ */

.impact {
  padding: 80px 0;
}

.impact_title {
  color: #172462;
  font-size: 2rem;
  font-weight: 700;
  text-transform: capitalize;
  margin-bottom: 3rem;
}

.impact_boxes {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.impact_boxes_box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 3.584px 28.956px 5.375px rgba(102, 102, 102, 0.12);
  padding: 15px;
  width: 200px;
  height: 205px;
}

@media (max-width: 1200px) {
  .impact_boxes {
    justify-content: start;
    flex-wrap: wrap;
    gap: 2%;
  }

  .impact_boxes_box {
    width: calc(96% / 3);
    flex: 0 0 calc(96% / 3);
    margin-bottom: 1rem;
  }
}

@media (max-width: 768px) {
  .impact_boxes {
    justify-content: space-between;
    gap: 0;
  }

  .impact_boxes_box {
    width: calc(96% / 2);
    flex: 0 0 calc(96% / 2);
  }
}

@media (max-width: 568px) {
  .impact_boxes {
    justify-content: space-between;
    gap: 0;
  }

  .impact_boxes_box {
    width: 100%;
    flex: 0 0 100%;
  }
}

.impact_boxes_box_title {
  color: #1b1464;

  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 0;
}

.impact_boxes_box_desc {
  color: #737272;
  margin-bottom: 0;

  font-size: 1rem;
  font-weight: 400;
}

/* ____________________________________________ end impact __________________________________ */

/* ____________________________________________ start applyNow __________________________________ */

.applyNow {
  background-image: url("../img/applyBg.png");
  background-size: cover;
  padding: 70px 0;
  background-position: bottom;
}

@media (max-width: 768px) {
  .applyNow {
    background-position: top;
  }
}

.applyNow_title {
  color: #172462;
  font-size: 2rem;
  font-weight: 700;
  text-transform: capitalize;
  margin-bottom: 2rem;
}

.applyNow_list_item {
  color: #172462;
  font-size: 1.25rem;
  font-weight: 400;
  /* text-transform: capitalize; */
  margin-bottom: 1.5rem;
  position: relative;
  padding-inline-start: 3rem;
}

.applyNow_list_item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background-image: url("../img/right.svg");
  width: 32px;
  height: 32px;
}

/* ____________________________________________ end applyNow __________________________________ */
/* ____________________________________________ start beReady __________________________________ */

.beReady {
  padding: 80px 0;
}

.beReady_content_title {
  color: #172462;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 2rem;
}

.beReady_content_links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 80px;
}

.beReady_content_links_link {
  display: flex;
  width: 225px;
  height: 48px;
  padding: 11px 30px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 5px;
  background: #172462;
  color: white;
  text-decoration: none;
  font-size: 1rem;
}

.beReady_content_links_link:hover {
  text-decoration: none;
  color: white;
}

.note {
  margin-bottom: 1rem;
  color: #172462;
  font-size: 1.5rem;
  font-weight: 700;
  text-transform: capitalize;
}

.sendTo {
  color: #000;
  font-size: 1.1rem;
  font-weight: 300;
  text-decoration: underline;
}

.sendTo:hover {
  color: black;
}

/* ____________________________________________ end beReady __________________________________ */

/* ____________________________________________ start modules __________________________________ */
.modules {
  padding: 80px 0;
  background-color: #ffffff; /* Exact white background from the image */
}

.modules-title {
  color: #172462;
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 50px;
  text-align: center;
}

.modules-timeline {
  position: relative;
  margin: 0 auto;
  padding-left: 80px; /* Space for the timeline line */
}

.module-item {
  position: relative;
  margin-bottom: 20px; /* Spacing between cards */
}

.module-item:last-child {
  margin-bottom: 0;
}

.module-marker {
  position: absolute;
  left: -80px;
  top: 0;
  bottom: 0;
  width: 80px;
  display: flex;
  align-items: center;
}

.marker-big {
  width: 14px;
  height: 14px;
  background-color: #cbd5e1;
  border-radius: 50%;
  position: absolute;
  left: 30px; /* Centered on the dotted line at 30px */
  top: 50%;
  transform: translate(-50%, -50%);
  /* border: 3px solid #ffffff; Masks the line underneath */
  box-shadow: 0 0 0 1px #cbd5e1;
  transition: all 0.3s ease;
  z-index: 3;
}

.marker-small {
  width: 7px;
  height: 7px;
  background-color: #cbd5e1;
  border-radius: 50%;
  position: absolute;
  left: 55px; /* Offset to the right of the dotted line */
  top: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.3s ease;
  z-index: 3;
}

/* Timeline 5-Dot Connectors styling */
.marker-connectors {
  position: absolute;
  left: 30px; /* Centered exactly on the timeline vertical line */
  top: calc(50% + 24px); /* Starts below the big marker circle */
  height: calc(100% - 4px); /* Fills the vertical gap to the next item */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  width: 2px;
  transform: translateX(-50%);
  z-index: 1;
}

.marker-connectors span {
  width: 7px;
  height: 7px;
  background-color: #cbd5e1;
  border-radius: 50%;
  transition: all 0.3s ease;
}

/* Hide connectors for the last module item */
.module-item:last-child .marker-connectors {
  display: none;
}

.module-card {
  display: flex;
  align-items: center;
  background-color: #ffffff;
  border: 1px solid #e5e7eb; /* Light border */
  border-radius: 12px;
  padding: 24px 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.015);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

/* .module-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(23, 36, 98, 0.05);
  border-color: rgba(26, 179, 176, 0.3);
}

.module-item:hover .marker-big {
  background-color: #1ab3b0;
  box-shadow:
    0 0 0 1px #1ab3b0,
    0 0 12px rgba(26, 179, 176, 0.3);
}

.module-item:hover .marker-small {
  background-color: #1ab3b0;
  box-shadow: 0 0 8px rgba(26, 179, 176, 0.3);
}

.module-item:hover .marker-connectors span {
  background-color: #1ab3b0;
  box-shadow: 0 0 6px rgba(26, 179, 176, 0.4);
} */

.module-letter {
  font-size: 2.5rem; /* Larger letter */
  font-weight: 700;
  color: #1ab3b0; /* Exact vibrant teal/turquoise */
  width: 60px;
  text-align: center;
  flex-shrink: 0;
}

.module-divider {
  width: 1px;
  height: 50px; /* Shorter vertical divider centered in the card */
  background-color: #e5e7eb;
  margin: 0 25px;
  flex-shrink: 0;
}

.module-body {
  flex-grow: 1;
}

.module-card-title {
  color: #172462;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.module-card-desc {
  color: #374151; /* Dark gray for maximum readability */
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 0;
  font-weight: 400;
}

@media (max-width: 768px) {
  .modules-timeline {
    padding-left: 0;
  }

  .module-marker {
    display: none;
  }

  .module-card {
    padding: 20px;
    flex-direction: column;
    align-items: flex-start;
  }

  .module-divider {
    width: 100%;
    height: 1px;
    margin: 15px 0;
    align-self: auto;
  }

  .module-letter {
    font-size: 2rem;
    width: auto;
    text-align: left;
  }
}
/* ____________________________________________ end modules __________________________________ */
