/* css for Women Leadership Program */
   .overview_section
    {
        background-color: #f5f4f2;
    }
     .overview_section .nav-link {
      color: white !important;
      position: relative;
      transition: all 0.3s ease;
      font-size:18px;
    }

   .overview_section .nav-link:hover {
      color: #fff;
      border:none !important;
    }

    .overview_section .download_link{
      padding:16px;
      font-weight: bold;
    }

    .overview_section .nav-link::after {
      content: '';
      position: absolute;
      width: 0%;
      height: 2px;
      bottom: -4px;
      left: 0;
      background-color: white;
      transition: width 0.3s;
    }

    .overview_section .nav-link:hover::after,
    .overview_section .nav-link.active::after {
      width: 100%;
    }

    .overview_section .btn-apply {
      background-color: #ffffff;
      color: #002c6a;
      border: none;
      border-radius: 0px;
      font-weight: bold;
      padding:16px;
    }

    .overview_section .btn-apply:hover {
      background-color: #f1f1f1;
      color: #002c6a;
    }

    .overview_section .btn-outline-light {
      border: 2px solid white;
      border-radius: 0px;
      font-weight: bold;
      padding:16px;
    }

    .overview_section .btn-outline-light:hover{
        color:#012060;
    }

    .overview_section .vr-headset {
      max-width: 100%;
      height: auto;

    }

    .overview_section .section-title {
      color: #be1e2d;
      font-weight: bold;
      font-size: 14px;
    }

    .overview_section .main-title {
      font-size: 2rem;
      font-weight: 700;
      color: #002c6a;
      font-family: 'Sectra';
      letter-spacing: 2px;
    }

    .overview_section .content-box {
      background: white;
      padding: 30px;
      box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
      position: relative;
      z-index: 2;

    }

    .overview_section .content-overlap {
      margin-top: 30px;
    }

    @media (min-width: 992px) {
      .overview_section .content-overlap {
        margin-top: 50px;
        margin-right: -80px;
      }
    }
    /* Css for Program Commitment */
    .program_commitment .programme-section {
  text-align: center;
  padding: 60px 20px;
}

.program_commitment .programme-title {
  color: #0b2154;
  font-weight: 700;
}

.program_commitment .info-box {
  display: inline-flex;
  align-items: center;
  background: #fff;
  border: 1px solid #ddd;
  /* border-radius: 6px; */
  /* margin: 10px; */
  /* padding: 10px 20px; */
  font-size:20px;
  padding:6px;
  letter-spacing: 2px;
}

.program_commitment .info-box div:last-child {
  font-weight: bold;

}

.program_commitment .info-icon {
  background-color: #009ec1;
  color: white;
  padding: 10px;
  margin-right: 10px;
  /* border-radius: 4px; */
  font-size: 20px;
}

.program_commitment .map-container {
  position: relative;
  margin-top: 40px;
}

.program_commitment .map-img {
  width: 100%;
  max-width: 800px;
}

.program_commitment .pin-label {
  position: absolute;
  top: 10%;
  left: 65%;
  transform: translate(-50%, -50%);
  background: white;
  padding: 10px 20px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 10px;
}

.program_commitment .pin-label img {
  max-height: 40px;
}

.program_commitment .pin {
  position: absolute;
  top: 32%;
  left: 55%;
  transform: translate(-50%, -50%);
  width: 50px;
}

@media (max-width: 768px) {
  .program_commitment .info-box {
    font-size: 16px;
  }

  .program_commitment .pin-label {
    font-size: 14px;
    padding: 8px 12px;
  }

  .program_commitment .pin {
    width: 40px;
  }
}
    /* End for Program Commitment */

    /* Css for Who Should Attend */
.should_attend{
  padding: 3rem 0;
  background-color: #f5f4f2 !important;
}

.should_attend .section-title {
  font-size: 1rem; /* Smaller font size */
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #c70e2d;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.should_attend .subtitle {
  font-size: 1.75rem; /* Larger font size */
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #00215e;
  line-height: 1.3;
}

.should_attend .attend-list {
  list-style-type: none;
  padding-left: 0;
  margin-bottom: 0;
}

.should_attend .attend-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem; /* Reduced spacing */
  font-size: 1rem;
  line-height: 1.4; /* Tighter line spacing */
  color: #333;
}

.should_attend .attend-list li:before {
  content: "o";
  position: absolute;
  left: 0;
  color: #c7102c;
  font-weight: bold;
  top: 0;
}

.should_attend .intro-text {
  font-size: 1rem;
  margin-bottom: 1.25rem;
  color: #333;
}

.should_attend .attend-image {
  max-width: 100%;
  height: auto;
  border-radius: 4px;
}



/* Css for Practce Section */
.practice_section .tab-header {
  display: flex;
  justify-content: center;
  border-bottom: 1px solid #ddd;
  margin-bottom: 2rem;
}

.practice_section .tab-header .tab {
  flex: 1 1 50%;
  padding: 0.75rem 1rem;
  font-size: 1.1rem;
  cursor: pointer;
  text-align: center;
  border-bottom: 3px solid transparent;
  transition: background-color 0.3s, border-bottom-color 0.3s;
  font-weight: normal;
}

.practice_section .tab-header .tab.active,
.practice_section .tab-header .tab:hover {
  color: #D0004D;
  border-bottom-color: #D0004D;
  /* background-color: #f9f9f9; */
}

.practice_section .tab-content-box {
  background-color: #00205B;
  color: white;
  padding: 2rem;
  /* border-radius: 8px; */
  position: relative;
  margin-top: 62px;
  margin-right: -80px; /* Overlaps right-side image */
  z-index: 2;
}

.practice_section .tab-content-box ul {
  list-style: none;
  padding-left: 1.2rem;
}

.practice_section .tab-content-box ul li::before {
  content: "●";
  color: #00BCD4;
  margin-left: -1em;
  margin-right: 0.5em;
}

@media (max-width: 767px) {
  .practice_section .tab-content {
    padding-top: 0;
  }

  .practice_section .tab-content-box {
    margin-right: 0;
  }
}
/* Image gallery style */
    .practice_section .image-gallery {
      display: flex;
      justify-content: center;
      gap: 20px;
      flex-wrap: wrap;
      margin-top: 30px;
    }

    .practice_section .image-gallery img {
      width: 300px;
      height: auto;
      /* border-radius: 8px; */
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    }

    @media (max-width: 768px) {
      .practice_section .image-gallery {
        flex-direction: column;
        align-items: center;
      }


    }
/* End css for Who should attend */

/* Css for team Section */
.team_section{
  background-color: #f5f4f2;
}
.team_section .section-title {
  font-size: 1rem; /* Smaller font size */
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #c70e2d;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.team_section #womenCarousel {
  position: relative;

}

/* Arrows inside the carousel bounds */
.team_section .carousel-control-prev,
.team_section .carousel-control-next {
  width: 50px;
  height: 50px;
  background-color: #002f6c;
  top: 50%;
  transform: translateY(-50%);
  opacity: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  z-index: 10;
  border-radius: 0; /* Square box */
  color: white;
}

/* Keep arrows inside carousel */
.team_section .carousel-control-prev {
  left: 0; /* Inside left edge */
}

.team_section .carousel-control-next {
  right: 0; /* Inside right edge */
}

/* Arrow icons centered */
.team_section .carousel-control-prev-icon,
.team_section .carousel-control-next-icon {
  background-image: none;
  font-size: 24px;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

/* Custom arrow characters */
.team_section .carousel-control-prev-icon::before {
  content: '←';
}

.team_section .carousel-control-next-icon::before {
  content: '→';
}
.team_section .card-title {
    font-weight: bold;
    color:#011e60;
    font-family: 'sectra';
    letter-spacing: 1px;

  }

  .team_section .card-text small {
    color: #c6122f;
  }

 .team_section .carousel-indicators [data-bs-target] {
    background-color: #0b2451;
  }

 .team_section #womenCarousel {
    position: relative;
    padding: 0 50px;
  }

  .team_section .card {
    height: 100%;
    border-radius: 0px;
  }
  .team_section .card-body {
    text-align:left !important;
  }
/* End css for team Section */


/* Css for testimonial section */
.testimonial_section{
    padding: 50px 0px 50px 0px;
  }
 .testimonial_section .carousel-container {
      position: relative;
      width: 100%;
    }

    .testimonial_section .carousel-item-content {
      display: flex;
      justify-content: center;
      gap: 2rem;
      position: relative;
      width: 100%;
      margin: 0;
    }

    .testimonial_section .left-box {
      background-color: #334d80;
      color: #fff;
      padding: 2rem;
      z-index: 2;
      margin-right: -150px;
      /* border-radius: 0.5rem; */
      box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
      max-width: 50%;
      position: relative;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      margin-top: 50px;
    }

    .testimonial_section .left-box blockquote {
      font-size: 1.5rem;
      /* font-style: italic; */
      margin: 0;
      padding: 1rem 3rem;
      font-family: 'sectra';
    }

    .testimonial_section .right-box img {
      max-width: 500px;
      height: auto;
      /* border-radius: 0.5rem; */
      box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    }

    .testimonial_section .author-box {
      position: absolute;
      bottom: 20px;
      left: 53%;
      transform: translateX(-50%);
      background-color: #0099c3;
      color: #fff;
      padding: 1rem 2rem;
      /* border-radius: 0.5rem; */
      width: 100%;
      max-width: 100%;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      text-align: left;
      z-index: 2;
      width: 72%;
    }

    .testimonial_section .author-box .text-muted {
      color: #e0e0e0 !important;
    }

    .testimonial_section .arrow-left,
    .testimonial_section .arrow-right {
      position: absolute;
      top: 50%;
      font-size: 2rem;
      color: white;
      z-index: 3;
      padding: 10px 15px;
      border-radius: 50%;
      cursor: pointer;
    }

    .testimonial_section .arrow-left {
      left: 10%;
      transform: translateX(-50%);
    }

    .testimonial_section .arrow-right {
      right: 10%;
      transform: translateX(50%);
    }

    .testimonial_section .arrow-left:hover,
    .testimonial_section .arrow-right:hover {
      background-color: rgba(0, 0, 0, 0.4);
    }

    @media (max-width: 768px) {
      .testimonial_section .carousel-item-content {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
      }

      .testimonial_section .left-box {
        margin-right: 0;
        max-width: 100%;
      }

      .testimonial_section .author-box {
        position: static;
        transform: none;
        margin-top: 1rem;
      }

      .testimonial_section .arrow-left,
      .testimonial_section .arrow-right {
        top: -20px;
        transform: none;
        left: 0 !important;
        right: 0 !important;
      }
    }
/*  Css end for testimonial Section */

/* Css for Certificate Section */
 .certificate_section {
      background-color: #f5f5f5;
      padding: 60px 20px;
    }

    .certificate_section .certificate-text h6 {
      color: #cc0000;
      font-weight: bold;
      text-transform: uppercase;
      letter-spacing: 1px;

    }

    .certificate_section .certificate-text h2 {
      font-size: 38px;

      color: #002f6c;
      margin-bottom: 15px;
      font-family: 'sectra';
    }

    .certificate_section .certificate-text p {
      font-size: 1rem;
      color: #333;
    }

    .certificate_section .certificate_section .certificate-image {
      max-width: 100%;
      border: 8px solid #111;
      border-radius: 4px;
      box-shadow: 0 8px 16px rgba(0,0,0,0.2);
    }

    @media (max-width: 768px) {
      .certificate_section .certificate-text {
        text-align: center;
        margin-bottom: 30px;
      }
    }

/* Css end for Certificate Section  */
 .fees_section {
      background-color: #c8102e; /* Red background */
      color: white;
      padding: 20px 20px;
    }

    .fees_section h6 {
      text-transform: uppercase;
      font-weight: bold;
      font-size: 0.9rem;
      margin-bottom: 10px;
    }

    .fees_section h2 {
      font-size: 2.5rem;
      /* font-weight: bold; */
      margin-bottom: 20px;
    }

    .fees_section p {
      font-size: 1.3rem;
      font-weight: 500;
      margin: 0;
    }

    .fees_section p span {
      font-weight: normal;
      font-size: 1rem;
    }
/* Css for Fees Section  */

/*  Css end for Fees Section  */
.popup_heading{
  font-weight: bold;
    color: #011e60;
    font-family: 'sectra';
    letter-spacing: 1px;
    font-size: 20px;
}
  .linkedin-circle {
      width: 28px;
      height: 28px;
      background-color: #0a66c2;
      color: #fff;
      border-radius: 50%;
      display: inline-flex;
      align-items: center;
      justify-content: center;
    }
    #contactModal .modal-header {
      border: none;
      padding-bottom: 0;
    }
    #contactModal .modal-body {
      padding-top: 0.5rem;
    }
    #contactModal .leftheading
    {
      font-family: 'sectra';
      font-size: 46px;
      letter-spacing: 0.5px;
      color: #001e62;
    }



    .navbar-nav li+li{
        padding:0px !important;
    }
/* End css for program */