body {
  font-family: "Poppins", sans-serif;
}

/* Navbar CSS */
.nav-bg {
  background-color: #F1F4FF;
}

.nav-link {
  color: #000;
  /* default text color */
  text-decoration: none;
  transition: all 0.3s ease;
}

.nav-link:hover {
  /* background: linear-gradient(135deg, #6e33b8, #f44336);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
    text-decoration: underline !important; */
  background: linear-gradient(135deg, #6e33b8, #f44336);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  /*   
  text-decoration: underline;
  text-decoration-color:#6e33b8  */

}

.nav-button {
  width: 100px;
  height: 50px;
}

.login-btn {
  width: 100px;
  height: 50px;
  color: #374151;
  padding: 10px 16px;
  /* Ensure touch area is large enough */
  min-width: 48px;
  min-height: 48px;
  margin: 0 12px;
}

.login-btn:hover {
  background: linear-gradient(135deg, #6e33b8, #f44336);
}


/* Hero Section CSS */
.main-heading {
  font-size: 48px;
}

.hero-desc {
  font-size: 16px;

  font-family: "Poppins", sans-serif;
}

.hero-image {
  height: 400px;
  width: 100%;
}

@media (max-width: 768px) {
  .text-container {
    width: 100%;
    height: 100%;
    padding: 20px;
  }

  .main-heading {
    font-size: 30px;
  }

  .hero-desc {
    line-height: 20px;
    font-family: "Poppins", sans-serif;
  }

}
.hero-image {
  height: 100vh;        /* full screen height */
  object-fit: cover;    /* crop instead of distort */
}

/* Text container adjustments */
.text-container {
  max-width: 900px;     /* keeps text block readable */
}

/* Heading + paragraph responsive sizes */
.main-heading {
  font-size: 2.5rem;    /* default for desktops */
}

.hero-desc {
  font-size: 1.125rem;  /* ~18px for readability */
}

/* Tablets */
@media (max-width: 992px) {
  .main-heading {
    font-size: 2rem;
  }
  .hero-desc {
    font-size: 1rem;
  }
}

/* Mobiles */
@media (max-width: 576px) {
  .hero-image {
    height: 70vh; /* smaller hero on mobile */
  }
  .main-heading {
    font-size: 1.5rem;
  }
  .hero-desc {
    font-size: 0.95rem;
    line-height: 1.5;
  }
}


.register-btn {
  background-color: white;
  border: 0px;
  color: #464AE2;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.register-btn:hover {
  background-color: white !important;
  color: #464AE2;
}

.grow-hover {
  transition: transform 0.3s ease-in-out;
}

.grow-hover:hover {
  transform: scale(1.05);
  box-shadow: 0px 6px 20px rgba(0, 0, 0, 0.2);

}

@keyframes fadeSlideUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-animate {
  opacity: 0;
  animation: fadeSlideUp 0.8s forwards;
}

.hero-animate.delay-1 {
  animation-delay: 0.3s;
}

.hero-animate.delay-2 {
  animation-delay: 0.6s;
}

.hero-animate.delay-3 {
  animation-delay: 0.9s;
}


/* Our Internsip Program CSS */
.internship-program-heading {
  font-size: 40px;
}

.internship-program-text {
  font-family: Poppins;
  font-weight: 400;
  font-size: 16px;
  line-height: 30px;
  letter-spacing: 0%;
  text-align: justify;
}

@media (max-width:768px) {
  .internship-program-text {
    line-height: 24px;
  }

  .internship-program-heading {
    font-size: 30px;
  }
}

.Ip-register-btn {
  background: linear-gradient(93.38deg, #464AE2 0.72%, #26297C 99.28%);
  color: #FFFFFF;
  width: 166px;
  height: 54px;
  opacity: 1;
  border-radius: 8px;
  border: none;
}

.out-IP-img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  background-size: cover;
}

/* Benefits Section CSS */
.benefits-section {
  background-color: #F1F4FF;
}

.card {
  border-radius: 10px;
  border: none;
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);

}

.card-bg {
  background-image: linear-gradient(90.82deg, #464AE2 0.15%, #26297C 99.85%);
  color: #FFFFFF;
}

/* Application Process css */
.app-process-img {
  height: 500px;


}

@media (max-width: 768px) {
  .app-process-img {
    height: 300px;
    max-width: 100%;

  }
}

/* Student Exposure CSS */
.student-expo-container {
  background-color: #F1F4FF;
}

.exposure-icon-bg {
  background-color: #9CA3AF;
  width: 50px;
  height: 50px;
  opacity: 1;
  border-radius: 8px;
  border: 1px solid #9CA3AF;
}

.icons-bg {
  background-color: #E5E7EB;
  width: 50px;
  height: 50px;
  opacity: 1;
  border-radius: 8px;
  border: 1px solid #E5E7EB;
}

.exposure-card-bg {
  color: #FFFFFF;
  background: linear-gradient(117.02deg, #464AE2 0.91%, #26297C 99.09%);
  border: 1.07px solid #F3F4F6;
  border-radius: 8px;
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);
}

.exposure-card {
  min-height: 220px;
  /* uniform height */
  transition: transform 0.3s ease;
}

/* .exposure-card:hover {
  transform: translateY(-20px);
} */

@media (min-width: 992px) {
  .row .col-lg-3:nth-child(even) {
    margin-top: 40px;
  }
}

/* Onboard Interns Experience */
.onboard-reg-btn {
  background: linear-gradient(93.38deg, #464AE2 0.72%, #26297C 99.28%);
  color: #FFFFFF;
  width: 166px;
  height: 54px;
  opacity: 1;
  border-radius: 8px;
  border: none;
}

.onboard-reg-btn:hover {
  color: #FFFFFF;
}

.internship-experience-img {
  height: 600px;
  width: 100%;
  object-fit: cover;

}

@media (max-width:768px) {
  .internship-experience-img {
    height: 300px;
    max-width: 100%;
  }
}

/* Message From CEO */
.message-ceo-container {
  background-color: #F1F4FF;
}

.ceo-img {
  height: 400px;
  width: 100%;
  object-fit: cover;
  background-size: cover;
}

.ceo-msg {
  color: #4F4F4F;
  font-size: 16px;
  font-family: Poppins;
  font-weight: 500;
  font-style: Italic;
  line-height: 198%;
  letter-spacing: 0%;
  text-transform: capitalize;
  position: relative;

}

.ceo-msg::before {
  content: "“";
  font-size: 100px;
  color: #464AE2;
  position: absolute;
  top: -20px;
  left: -50px;
  font-family: Georgia, "Times New Roman", serif;
}

.ceo-msg::after {
  content: "”";
  font-size: 100px;
  color: #464AE2;
  position: absolute;
  bottom: -30px;
  right: 30px;
  font-family: Georgia, "Times New Roman", serif;
}



@media (max-width: 768px) {
  .ceo-msg {
    font-size: 14px;
  }

  .ceo-msg::before {
    font-size: 80px;
    top: -10px;
    left: -20px;
  }

  .ceo-msg::after {
    font-size: 80px;
    bottom: -10px;
    right: 10px;
  }
}

.cursor {
  display: inline-block;
  width: 3px;
  background: #6e33b8;
  margin-left: 2px;
  animation: blink 0.7s step-end infinite;
}

@keyframes blink {
  50% {
    background: transparent;
  }
}


/* Success Story CSS */
.success-story-container {
  background-color: #F1F4FF;
}

.success-card {
  background: linear-gradient(133.94deg, #464AE2 1.05%, #26297C 98.95%);
  color: #FFFFFF;
  border-radius: 25px;
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);
  position: relative;
}

.success-text {
  position: relative;
  font-size: 14px;
  line-height: 1.6;
}

.custom-success-width {

  width: 80%;
  /* Set width to 50% */
  margin: 0 auto;
  /* Center it horizontally */

}

@media (max-width: 768px) {
  .custom-success-width {
    width: 100%;
    /* Set width to 100% on smaller screens */
  }
}

/* Opening quote */
.success-text::before {
  content: "“";
  font-size: 48px;
  color: white;
  position: absolute;
  top: -20px;
  left: -30px;
  font-family: Georgia, "Times New Roman", serif;
}

/* Closing quote */
.success-text::after {
  content: "”";
  font-size: 48px;
  color: white;
  position: absolute;
  bottom: -50px;
  right: -10px;
  font-family: Georgia, "Times New Roman", serif;
}

.intern-image {
  height: 100px;
  width: 100px;
  /* object-fit: cover; */
  display: block;
}

.intern-image-bg {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 5px solid #FFFFFF;
  overflow: hidden;
  margin-right: 20px;
}

/* Ready to modernize css */
.join-platform-btn {
  background-color: #464AE2;
  border: 1px solid #E5E7EB;
  color: #FFFFFF;
  width: 300px;
  height: 60px;
  opacity: 1;
  border-radius: 10px;
  border: none;
  margin-top: 20px;
  box-shadow: 0px 10px 15px 0px #0000001A;
}

.join-platform-btn:hover {
  background-color: #464AE2;
  color: #FFFFFF;
}

.member-login-btn {
  color: #464AE2;
  text-decoration: underline;
}

/* Footer CSS */
.footer {
  background-color: #111827;
  width: 100%;
}

.footer-text {
  color: #9CA3AF;
}

.footer a {
  color: #9CA3AF;
  text-decoration: none;
}

.footer a:hover {
  color: #464AE2;
}

.footer .social-icons i {
  font-size: 25px;
  margin-right: 15px;
  color: white;

}

.footer .social-icons i:hover {
  color: #464AE2;
}

.footer hr {
  border-color: #2c2f3f;
  border-width: 2px;
}

.footer .copyright {
  color: #6B7280;
  font-size: 14px;
}

.custom-width {
  width: 50%;
  /* Set width to 50% */
  margin: 0 auto;
  /* Center it horizontally */
}

@media (max-width: 768px) {
  .custom-width {
    width: 100%;
    /* Set width to 100% on smaller screens */
  }
}

.testimonial-card {
      background: #f8f9fa;
      border-radius: 15px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.1);
      overflow: hidden;
      display: flex;
      flex-direction: column;
      height: 100%; /* equal height */
      position: relative;
    }

    .testimonial-header {
      background: #3b4cca;
      color: #fff;
      padding: 1rem;
      border-top-left-radius: 15px;
      border-top-right-radius: 15px;
      display: flex;
      flex-direction: column;
    }

    .testimonial-header h5 {
      margin: 0;
      font-weight: 700;
    }

    .testimonial-header small {
      opacity: 0.9;
    }

    .stars {
      color: #ffc107;
      margin-top: 0.5rem;
    }

    .testimonial-body {
      flex: 1;
      padding: 1.5rem;
      font-size: 0.9rem;
      font-style: italic;
      color: #444;
    }

    .testimonial-img {
      position: absolute;
      top: 60px;
      right: 20px;
      border-radius: 50%;
      border: 5px solid #fff;
      width: 150px;
      height: 150px;
      object-fit: cover;
      background: #ffc107;
    }
     .testimonial-img-new {
      top: 60px;
      right: 20px;
      border-radius: 50%;
      border: 5px solid #fff;
      object-fit: cover;
      background: #ffc107;
    }


@media (max-width:768px) {
.testimonial-img {
  height: 70px;
  width: 70px;
}
}

.testimonail_card {
  background-color: #F4F5FF;
  padding: 24px;
  border-radius: 16px;
  border: 1px solid #D5DFFF;
  height: 100%; /* Equal height */
}

.desgination {
  color: #889CC8;
  font-size: 14px;
}

.testimonail_card p {
  font-size: 15px;
  line-height: 24px;
}

.bi-star-fill {
  color:#00B090;
}
