/* body {
        font-family: "Poppins", sans-serif;
      }

      .floating-icon {
        animation: float 6s ease-in-out infinite;
      }

      .floating-icon:nth-child(1) {
        animation-delay: 0s;
      }
      .floating-icon:nth-child(2) {
        animation-delay: 1s;
      }
      .floating-icon:nth-child(3) {
        animation-delay: 2s;
      }
      .floating-icon:nth-child(4) {
        animation-delay: 3s;
      }
      .floating-icon:nth-child(5) {
        animation-delay: 4s;
      }

      @keyframes float {
        0%,
        100% {
          transform: translateY(0px);
        }
        50% {
          transform: translateY(-20px);
        }
      }

      @keyframes spin {
        0% {
          transform: rotate(0deg);
        }
        100% {
          transform: rotate(360deg);
        }
      }

      .loading-spinner {
        animation: spin 1s linear infinite;
      }

      .gradient-primary {
        background: linear-gradient(
          135deg,
          #1e3a8a 0%,
          #3b82f6 50%,
          #06b6d4 100%
        );
      }

      .gradient-text {
        background: linear-gradient(45deg, #06b6d4, #67e8f9);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
      }

      .glass-effect {
        backdrop-filter: blur(20px);
        background: rgba(255, 255, 255, 0.1);
      }

      .hover-lift {
        transition: all 0.3s ease;
      }

      .hover-lift:hover {
        transform: translateY(-5px);
      }

      .card-hover {
        transition: all 0.4s ease;
      }

      .card-hover:hover {
        transform: translateY(-15px);
      }

      .slide-active {
        display: block !important;
      }

      .slide-hidden {
        display: none !important;
      }

      .leadership-card {
        transition: all 0.4s ease;
        background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
      }

      .leadership-card:hover {
        transform: translateY(-10px) scale(1.02);
        box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
      }

      .contact-form {
        background: linear-gradient(
          135deg,
          rgba(255, 255, 255, 0.1) 0%,
          rgba(255, 255, 255, 0.05) 100%
        );
        backdrop-filter: blur(20px);
        border: 1px solid rgba(255, 255, 255, 0.2);
      }

      .contact-form input,
      .contact-form textarea {
        background: rgba(255, 255, 255, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.2);
        color: white;
      }

      .contact-form input::placeholder,
      .contact-form textarea::placeholder {
        color: rgba(255, 255, 255, 0.7);
      }

      .contact-form input:focus,
      .contact-form textarea:focus {
        background: rgba(255, 255, 255, 0.15);
        border-color: #67e8f9;
        box-shadow: 0 0 0 3px rgba(103, 232, 249, 0.1);
      } */


    body {
      font-family: "Poppins", sans-serif;
      margin: 0;
      padding: 0;
      background: #0f172a;
    }

    /* Floating Icons Animation */
    .floating-icon {
      animation: float 6s ease-in-out infinite;
    }

    .floating-icon:nth-child(1) { animation-delay: 0s; }
    .floating-icon:nth-child(2) { animation-delay: 1s; }
    .floating-icon:nth-child(3) { animation-delay: 2s; }
    .floating-icon:nth-child(4) { animation-delay: 3s; }
    .floating-icon:nth-child(5) { animation-delay: 4s; }

    @keyframes float {
      0%, 100% { transform: translateY(0px); }
      50% { transform: translateY(-20px); }
    }

    @keyframes spin {
      0% { transform: rotate(0deg); }
      100% { transform: rotate(360deg); }
    }

    .loading-spinner {
      animation: spin 1s linear infinite;
    }

    /* Gradient Styles */
    .gradient-primary {
      background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 50%, #06b6d4 100%);
    }

    .gradient-text {
      background: linear-gradient(45deg, #06b6d4, #67e8f9);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    /* Glass Effect */
    .glass-effect {
      backdrop-filter: blur(20px);
      background: rgba(255, 255, 255, 0.15);
      border: 1px solid rgba(255, 255, 255, 0.3);
    }

    .hover-lift {
      transition: all 0.3s ease;
    }

    .hover-lift:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    }

    .card-hover {
      transition: all 0.4s ease;
    }

    .card-hover:hover {
      transform: translateY(-15px);
    }

    .slide-active { display: block !important; }
    .slide-hidden { display: none !important; }

    .leadership-card {
      transition: all 0.4s ease;
      background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    }

    .leadership-card:hover {
      transform: translateY(-10px) scale(1.02);
      box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    }

    .contact-form {
      background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
      backdrop-filter: blur(20px);
      border: 1px solid rgba(255, 255, 255, 0.2);
    }

    .contact-form input,
    .contact-form textarea {
      background: rgba(255, 255, 255, 0.1);
      border: 1px solid rgba(255, 255, 255, 0.2);
      color: white;
    }

    .contact-form input::placeholder,
    .contact-form textarea::placeholder {
      color: rgba(255, 255, 255, 0.7);
    }

    .contact-form input:focus,
    .contact-form textarea:focus {
      background: rgba(255, 255, 255, 0.15);
      border-color: #67e8f9;
      box-shadow: 0 0 0 3px rgba(103, 232, 249, 0.1);
    }

    /* Enhanced Navbar Styles */
    .navbar {
      transition: all 0.3s ease;
      border-radius: 16px;
      margin: 0 5%;
      width: 90%;
      /* background: linear-gradient(135deg, #2d5aa0, rgba(6, 182, 212, 0.9)); */
      backdrop-filter: blur(20px);
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
      /* border: 1px solid rgba(255, 255, 255, 0.3); */
    }

    .navbar.scrolled {
      border-radius: 0;
      margin: 0 0;
      width: 100%;
      border-left: none;
      border-right: none;
      background: linear-gradient(135deg, #2d5aa0, rgba(6, 182, 212, 1));
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    }


    .nav-link {
      position: relative;
      padding-bottom: 4px;
      font-weight: 500;
    }

    .nav-link::after {
      content: '';
      position: absolute;
      width: 0;
      height: 2px;
      bottom: 0;
      left: 0;
      background: #67e8f9;
      transition: width 0.3s ease;
    }

    .nav-link:hover::after {
      width: 100%;
    }

    .nav-link.active {
      color: #67e8f9;
    }

    .nav-link.active::after {
      width: 100%;
    }

    /* Get in Touch Button */
    .get-in-touch-btn {
      background: linear-gradient(45deg, #06b6d4, #67e8f9);
      color: #1e3a8a;
      padding: 10px 20px;
      border-radius: 9999px;
      font-weight: 600;
      transition: all 0.3s ease;
      width: 16%;
      text-align: center;
    }

    .get-in-touch-btn:hover {
      transform: translateY(-3px);
      box-shadow: 0 8px 15px rgba(6, 182, 212, 0.4);
      background: linear-gradient(45deg, #67e8f9, #06b6d4);
    }

    /* Navbar Layout */
    .desktop-menu {
      position: relative;
      width: 100%;
    }

    .nav-items {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 2.5rem;
    }
    .navItem{
        align-content: center;
    }

    /* .get-in-touch-btn {
      position: absolute;
    } */

    /* Carousel Styles */

    .sliderCSS{
        margin-top: -8%;
    }
    .hero-slide {
      opacity: 0;
      transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
      transform: translateX(100%);
    }

    .hero-slide.slide-active {
      opacity: 1;
      transform: translateX(0);
    }

    .hero-slide.slide-hidden {
      opacity: 0;
      transform: translateX(-100%);
    }

    .indicator {
      transition: all 0.3s ease;
      width: 12px;
      height: 12px;
      border: 2px solid #ffffff;
      border-radius: 100%;
      background: rgba(255, 255, 255, 0.3);
    }

    .indicator.active {
      background: #67e8f9;
      transform: scale(1.2);
    }

    .carousel-btn {
      transition: all 0.3s ease;
      /* background: rgba(255, 255, 255, 0.2);
      border-radius: 50%; */
      padding: 12px;
    }

    .carousel-btn:hover {
      background: #67e8f9;
      transform: scale(1.1);
    }

    .aboutUsTitle{
        margin-top: -7%;
        z-index: 1;
    }

    /* .card {
      background: white;
      border-radius: 1.5rem;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
      padding: 2rem;
      position: relative;
      overflow: hidden;
    } */

    .aboutvisonafterbefore h2::after{
        content: " ";
        position: absolute;
        /* left: 0;
        top: 50%; */
        background-color: #3a50a3;
        transform: translate(10px, 20px);
        width: 2rem;
        height: 3px;
    }

    .aboutvisonafterbefore h2::before{
        content: " ";
        position: absolute;
        /* right: -1.5rem; */
        /* top: 50%; */
        background-color: #3a50a3;
        transform: translate(-40px, 20px);
        width: 2rem;
        height: 3px;
    }

    .aboutuscard{
        margin-top: -12%;
        z-index: 1;
        height: 500px;
    }

    .visoncard{
        margin-top: 6%;
        height: 500px;
    }

.ContainerWidth{
  width: 90%;
  margin-left: 5%;
}

#typed-text::after {
    content: "|";
    animation: blink 1s infinite;
  }

  @keyframes blink {
    0%, 100% {
      opacity: 1;
    }
    50% {
      opacity: 0;
    }
  }

/* .container {
  overflow: visible !important;
} */

.carousel-container {
  position: relative;
  overflow-x: hidden;
  overflow-y: visible;
  padding-top: 10rem; 
}

.carousel {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.carousel-item {
  min-width: 33.33%;
  /* min-height: 300px; */
  opacity: 0.6;
  transform: scale(0.85);
  transition: opacity 0.5s, transform 0.5s, box-shadow 0.5s;
}

.carousel-item.active {
  opacity: 1;
  transform: scale(1.15) translateY(-40px);
  /* box-shadow: 0 30px 60px rgba(0, 255, 255, 0.4); */
  z-index: 10;
}

.leadership-card {
  position: relative;
  padding-top: 100px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.leadership-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.profile-image {
  position: absolute;
  top: -64px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  width: 128px;
  height: 128px;
}

.nav-button:hover {
  background-color: #0891b2;
}

@media (max-width: 768px) {
  .carousel-item {
    min-width: 100%;
  }

  .carousel-item.active {
    transform: scale(1) translateY(0);
  }
}


@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fadeInUp {
  animation: fadeInUp 0.9s ease-out both;
}

.delay-200 {
  animation-delay: 0.2s;
}

.delay-300 {
  animation-delay: 0.3s;
}


/* @keyframes fadeInUp { from {opacity:0; transform: translateY(30px);} to {opacity:1; transform: translateY(0);} }
.animate-fadeInUp { animation: fadeInUp 0.9s ease-out both; }
.delay-200 { animation-delay: 0.2s; }
.delay-300 { animation-delay: 0.3s; }
.delay-400 { animation-delay: 0.4s; }
.delay-500 { animation-delay: 0.5s; }
.delay-600 { animation-delay: 0.6s; } */

@keyframes fadeInUp { 0% { opacity: 0; transform: translateY(30px);} 100% {opacity:1; transform: translateY(0);} }
.animate-fadeInUp { animation: fadeInUp 0.9s ease-out both; }
.delay-200 { animation-delay: 0.2s; }
.delay-400 { animation-delay: 0.4s; }



.swiper {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  display: flex !important;
  justify-content: center;
  align-items: center;
  align-self: center;
  margin-top: 2%;
  margin-bottom: 2%;
  
}

.swiper-slide img {
  display: block;
  width: 60%;
  height: 60%;
  object-fit: cover;

}
