body {
  font-family: 'Poppins', sans-serif;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
li,
button {
  font-family: inherit;
}


/* Hero section */
.hero_section {
  background-color: #F1F4FF;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 1000px;
  width: 100%;
  overflow-x: hidden;
  overflow-y: hidden;
}


@keyframes bounceInPlace {
  0% {
    transform: scale(0.95);
    opacity: 0;
  }

  50% {
    transform: scale(1.1);
    opacity: 1;
  }

  70% {
    transform: scale(0.98);
  }

  100% {
    transform: scale(1);
  }
}

.btn-primary {
  animation: bounceInPlace 0.8s ease-out both;
  will-change: transform, opacity;
}

@media (max-width: 575.98px) {
  .banner-profile img {
    height: 50px;
    width: 50p;
  }

}


.banner-heading {
  color: #464AE2;
}

.banner-description {
  color: #434343;
}

.floating-image {
  animation: float 3s ease-in-out infinite;
  position: relative;
}

@keyframes float {
  0% {
    transform: translateX(0px);
  }

  50% {
    transform: translateY(-10px);
  }

  100% {
    transform: translateY(0px);
  }
}



/* nav bar  */
.navbar {
  padding: 0px;
  background-color: #F1F4FF !important;
  background-size: cover;
}

.center-menu {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.navbar-nav {
  gap: 1rem;
}

.btn-custom {
  margin-left: 0.5rem;
}


@media (max-width: 991.98px) {
  .center-menu {
    position: static;
    transform: none;
    margin-top: 1rem;
    text-align: center;
  }

  .navbar-nav.flex-row {
    flex-direction: column !important;
    align-items: center;
  }

  .ms-auto {
    margin-left: 0 !important;
    text-align: center;
    margin-top: 1rem;
  }
}

.navbar-nav li {
  color: #374151;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
}

.nav-link:hover {

  background: linear-gradient(135deg, #6e33b8, #f44336);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;

}

.banner {
  padding: 40px 0;
}


.btn-primary {
  background: linear-gradient(135deg, #6e33b8, #f44336);
  color: #fff;
  padding: 15px 45px;
  border: none;
  border-radius: 10px;
  font-weight: 500;
  font-size: 1rem;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.15);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.btn-primary::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));
  transition: left 0.4s ease-in-out;
  pointer-events: none;
}

.btn-primary:hover::after {
  left: 100%;
}

.btn-primary:hover {
  transform: scale(1.03);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}



/* .btn-primary:hover {
  background-color: #464AE2;
} */

.btn-gradient:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.3);
}

.btn-outline-secondary {
  border: 1px solid #B6B8BA;
  background-color: #ffffff;
  color: #374151;
  font-weight: 600;
  font-size: 16px;
  padding: 14px 30px 14px 30px;
}

.btn-outline-secondary:hover {
  background-color: #26297C;
  color: #ffffff;
}


@media (max-width:768px) {
  .hero_section {
    padding: 0px 10px 40px 10px;
  }

  .container-fluid img {
    height: 50px;
  }

  .banner-heading {
    font-size: 32px;
    line-height: 44px;
  }

  .banner-description {
    font-size: 16px;
  }

  .hero_profile_main_containe {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
  }

}




/* -----intro_section---- */

.intro_section {
  background-color: #ffffff;
  background-size: cover;
  padding: 60px 0px;
}


@media (max-width:768px) {
  .image-container img {
    height: 223px;
    width: 298px;
  }

  .intro_section {
    padding: 30px 0px;
  }
}



/* benefic Section */

.benefic_section {
  background-color: #F1F4FF;
  background-size: cover;
  width: 100%;
  padding: 6% 0px 6% 0px;
}

@media (max-width:768px) {
  .benefic_section {
    padding: 40px 0px 40px 0px;
  }
}


.card-box {
  background: white;
  padding: 30px 20px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  height: 100%;
}

.card-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.card-icon {
  font-size: 2rem;
  margin-bottom: 10px;
}

.blue-gradient {
  background: linear-gradient(to bottom, #464AE2, #26297C);
  color: white;
}

.light-blue {
  background-color: #e9f2ff;
}

.light-purple {
  background-color: #f5f0ff;
}

.btn-style {
  background-color: #3c54da;
  color: white;
  border-radius: 20px;
  padding: 8px 24px;
  margin-top: 20px;
}

.mt-section {
  margin-top: 80px;
}


/* Features section */

.fea_card {
  box-shadow: 0px 4.23px 4.23px 0px #00000040;
  padding: 32px;
  transition:
    background 0.4s ease-in-out,
    color 0.4s ease-in-out,
    border 0.4s ease-in-out,
    transform 0.4s ease-in-out;
}

.fea_card:hover {
  background: linear-gradient(135deg, #502379, #ff3c41);
  color: #fff;
  border-color: transparent;
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.fea_card:hover h3 {
  color: #ffffff;
}

.fea_card:hover p {
  color: #ffffff;
}


.features_card_heading {
  color: #000000;
}

.card_text {
  color: #4B5563;

}



/* Adaptable section */
.Adaptable_section_main_container {
  padding-top: 6%;
  padding-bottom: 6%;

}

.Adaptable_section {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  color: white;
  height: 580px;
}


.Adaptable_section_main_card {
  margin-top: -280px;
  box-shadow: 4px 4px 4px 0px #00000040;
  background-color: transparent;
  z-index: 2;
  position: relative;
  transition: all 0.4s ease;
  /* smooth animation */
}

.Adaptable_section_main_card:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
  /* darker glow */
  background-color: rgba(0, 0, 0, 0.1);
  /* slight transparent dark background */
}



.slide_in_right {
  opacity: 0;
  transform: translateX(100%);
  will-change: transform, opacity;
}

.slide_in_right.visible {
  animation: slideInRight 1s ease-out both;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .Adaptable_section {
    height: auto;
    /* padding: 60px 20px 100px; */
    text-align: center;
  }

  .Adaptable_section h2 {
    font-size: 28px;
    line-height: 1.4;
    text-align: center;
  }

  .Adaptable_section_para {
    font-size: 15px;
    margin-top: 20px;
    text-align: justify;
    padding: 0 10px;
  }

  .Adaptable_section_main_card {
    margin: 0 auto;
    width: 95%;
    box-shadow: none;
    background-color: white;
    padding: 0px;
  }

  .Adaptable_section_main_card .row>div {
    padding: 10px 5px;
  }

  .Adaptable_section_main_card h3 {
    font-size: 16px;
  }

  .Adaptable_section_main_card p {
    font-size: 14px;
  }

}




/* Journey section */
.journey_main_container {
  background-color: #F1F4FF;
  background-size: cover;
  padding: 30px 0px 30px 0px;
}


.mentorship_section {
  background-color: #e9f2ff;
  background-size: cover;
}

.btn-outline-primary {
  border: 1px solid #1D4ED8;
  font-size: 16px;
  font-weight: 500;
  color: #1D4ED8;
  padding: 10px 25px 10px 25px;
}

.btn-outline-primary:hover {
  background-color: #1D4ED8;

}

@keyframes revealImage {
  from {
    clip-path: inset(0 100% 0 0);
    opacity: 0;
  }

  to {
    clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}

.journey_image {
  animation: revealImage 1s ease-out both;
  animation-timeline: view();
  animation-range: entry 0% cover 40%;
  will-change: clip-path, opacity;
  overflow: hidden;
}




/* organizations_section  */
.organizations_section {
  padding: 80px 0px;
}

.card-custom {
  border: 1px solid #ecf1ff;
  padding: 24px;
  text-align: left;
  background-color: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-custom:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

@media (max-width:768px) {
  .organizations_section {
    padding: 30px 0px;
  }
}





/* .testimonials_section {
  background-color: #FBFBFB;
  background-size: cover;
  padding: 40px 0px 40px 0px;
}


.testimonial-item {
  max-width: 700px;
  margin: auto;
  text-align: left;
}

.testimonial-img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 50%;
}

.testimonial-name {
  font-weight: 400;
  color: #464AE2;
  margin: 0;
  font-size: 20px;
}


.testimonial-text {
  font-size: 16px;
  line-height: 1.6;
  color: #333;
}

.testimonial-company {
  font-weight: 400;
  color: #464AE2;
  font-size: 16px;
}

.carousel-control-custom {
  background-color: #464AE2;
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: background-color 0.3s ease;
}

.carousel-control-custom:hover {
  background-color: #2d33a5;
}

.carousel-controls {
  justify-content: center;
}

.right_testimonail_name {
  font-size: 14px;
  font-weight: 500;
  color: #464AE2;
}

.right_testimonail {
  font-size: 14px;
  font-weight: 400;
  line-height: 26px;
}

.controls_container {
  margin-left: 80px;
}

@media (max-width:768px) {
  .controls_container {
    margin-left: 0px;
  }
} */



/* mentorship_section */

.mentorship_section {
  padding: 80px 0px 80px 0px;
  border-bottom: solid 1px #cececf;
}

@media (max-width:768px) {
  .mentorship_section {
    padding: 30px 0px 40px 0px;
  }

  .mentorship_card {
    padding: 24px !important;
  }
}

.learn_more:hover a {
  color: #ffffff;
}


/* cta-container section*/
.cta_container {
  background: linear-gradient(#AB3C4C, #6a345d);
  background-size: cover;
  padding: 80px 0px 80px 0px;
}


@media (max-width:768px) {
  .cta_container {
    padding: 40px 10px 40px 10px;
  }
}

.join_the_platform {
  background-color: #464AE2;
}


.footer_container {
  background-color: #111827;
  background-size: cover;
}

.footer_list {
  color: #c2c2c2 !important;
}


.Subscribe_form {
  background-color: #1F2937;
  border: none;
  color: #ADAEBC !important;
  border-top-right-radius: 0px;
  border-bottom-right-radius: 0px;
}

.form-control:focus {
  box-shadow: none;
  border: none;
  background-color: #1F2937;
  color: #ADAEBC;
}

.form-control::placeholder {
  color: #ADAEBC;
}


.line {
  color: #686869;
}

.bi:hover {
  color: #464AE2;
}

.input-card {
  background: rgba(255, 255, 255, 0.928);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: rgb(37, 37, 37);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.input-card input.form-control {
  background: rgba(255, 255, 255, 0.866);
  border: 1px solid rgb(223, 223, 223);
  border-radius: 8px;
  color: #4d4d4d;
  padding: 10px;
}

.input-card input.form-control::placeholder {
  color: rgba(211, 211, 211, 0.884);
}

.input-card input.form-control:focus {
  outline: none;
  border-color: #bdbdbd;
  box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.3);
  background: rgb(252, 252, 252);
}

/* textarea */
.input-card textarea.form-control {
  background: rgba(255, 255, 255, 0.866);
  border: 1px solid rgb(223, 223, 223);
  border-radius: 8px;
  color: #4d4d4d;
  padding: 10px;
}

.input-card textarea.form-control::placeholder {
  color: rgba(145, 145, 145, 0.7);
}

.input-card textarea.form-control:focus {
  outline: none;
  border-color: #bdbdbd;
  box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.3);
  background: rgb(252, 252, 252);
}



.intershippage_container {
  background-size: cover;
  background-position: center;
}

.intershippage_container h1 {
  font-size: 56px !important;
}

.intershippage_container p {
  font-size: 18px !important;
  font-weight: 400 !important;
}

@media (max-width: 768px) {

  /* mobiles */
  .intershippage_container {
    height: 80vh;
    padding: 120px 0 !important;
  }

  .intershippage_container h1 {
    font-size: 32px !important;

  }

  .intershippage_container p {
    font-size: 16px !important;

  }
}


.btn-join {
  border: 1px solid #ffffff82;
  background-color: #ffffff37;
  color: #374151;
  font-weight: 600;
  font-size: 16px;
  padding: 14px 30px 14px 30px;
}

.btn-join:hover {
  background-color: #ffffff6b;
  color: #ffffff;
  border: 1px solid #d4d4d45b;
}

@media (max-width:768px) {
  .banner-heading {
    font-size: 30px;
    line-height: 44px;
  }

  .banner-description {
    font-size: 16px !important;
    line-height: 28px;
  }

  .intro_para {
    text-align: justify;
  }

  .Adaptable_section_para {
    text-align: justify;
  }

  .journey_para {
    text-align: justify !important;
  }

  .mentor_para {
    text-align: justify !important;
  }

  .organizations_para {
    text-align: justify !important;
  }

  .fw-bold {
    line-height: 34px;
  }

  .check {
    height: 20px;
    width: 20px;
  }

  .reveal_effect {
    padding: 20px 25px 20px 25px !important;
  }

  html,
  body {
    overflow-x: hidden;
    /* prevents horizontal scrolling */
  }
}


.video-box {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0,0,0,0.2);
  line-height: 0; 
}

.video-box video {
  width: 100%;
  height: auto;
  display: block;
}


.play-button {
  position: absolute;
  inset: 0; 
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  cursor: pointer;
  pointer-events: auto;
  background: transparent;
  color:#f5f5ff;
  background-color: #000000;
  font-size: 50px;
}


.play-button .circle {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: rgba(255,255,255,0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(0,0,0,0.18);
}


.play-button .circle::before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-left: 26px solid #ff6600;
  border-top: 16px solid transparent;
  border-bottom: 16px solid transparent;
  margin-left: 4px; 


}
