

body {
    font-family: 'Heebo', sans-serif;
    background-color: #181D38;
    color: white;
    transition: background-color 0.3s, color 0.3s;
    overflow-x: hidden;
    position: relative;
}
html, body {
    overflow-x: hidden;
  }

h1, h2 {
    color: #00ffea;
}

/* Light/Dark Mode */
.light-mode {
    background-color: #ffffff;
    color: #181D38;
}

.light-mode h1, .light-mode h2 {
    color: #007bff;
}

/* Team Section */
.team-member {
    margin-bottom: 100px;
}

.team-img {
    width: 180px;
    height: 180px;
    object-fit: cover;
    border-radius: 50%;
    border: 5px solid #00ffea;
}

.team-member h4 {
    color: #00ffea;
    margin-top: 10px;
}

.team-member p {
    color: #bbb;
}



.navbar {
    background-color: #181C36;
}

.navbar-brand h2 {
    font-family: 'Orbitron', sans-serif;
}

.navbar-toggler {
    border-color: #00ffea;
}

/* Back to top */
.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #00ffea;
    color: #000;
    border-radius: 50%;
    padding: 10px;
}

/* Section Wrapper */

  
  /* Section Title */
  .section-title {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #00ffff;
    font-weight: 700;
    text-shadow: 1px 1px 5px #000;
  }
  
* {
box-sizing: border-box;
}



.carousel-wrapper {
overflow: hidden;
padding: 40px 0;
}

.carousel {
display: flex;
transition: transform 0.6s ease;
will-change: transform;
}

.service-card {
  /* background: #181C36; */
  /* background: #012B30; */
  background: rgba(255, 255, 255, 0.05);
  padding: 20px;
  border-radius: 12px;
  text-align: center;
  margin: 0 10px;
  color: white;
  flex-shrink: 0;
  transform: scale(0.9);
  transition: transform 0.4s ease;
  min-width: 90%;
  max-width: 90%;
}

.service-card.active {
  transform: scale(1.05);
  border: 2px solid #00ffe1;
}

.service-icon {
  font-size: 2.5rem;
  color: #00ffe1;
  margin-bottom: 10px;
}

.service-card h4 {
  color: #00ffe1;
  font-size: 1.3rem;
  margin-top: 10px;
}

.service-card p {
  color: #fffbfb;
  font-size: 0.95rem;
  margin-top: 10px;
}

@media (min-width: 600px) {
  .service-card {
    min-width: 45%;
    max-width: 45%;
  }
}

@media (min-width: 900px) {
  .service-card {
    min-width: 30%;
    max-width: 30%;
  }
}





.about-container {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.wavy-text {
  font-size: 3rem;
  font-weight: bold;
  color: #ffffff;
  display: inline-block;
  animation: wave 2s infinite;
  text-align: center;
  letter-spacing: 2px;
  text-shadow: 0 0 5px #00f2ff, 0 0 10px #00f2ff;
}

@keyframes wave {
  0%, 100% {
    transform: rotate(-2deg);
  }
  50% {
    transform: rotate(2deg);
  }
}
.glow-hover:hover {
    box-shadow: 0 0 20px #00f2ff, 0 0 40px #00f2ff;
    transition: 0.3s ease-in-out;
}

.hover-bg {
    position: relative;
    z-index: 1;
}

.hover-bg::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(0, 242, 255, 0.1), transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    z-index: -1;
}

.hover-bg:hover::before {
    opacity: 1;
}


/* Container background */
  .mission-vision-section {
    background: linear-gradient(135deg, #141829, #1b1f39);
    padding: 60px 0;
  }

  /* Section title */
  .section-title {
    color: #00c8e0;
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 40px;
  }

  /* Glow effect on images */
  .about-glow-image {
    border-radius: 20px;
    object-fit: cover;
    width: 100%;
    height: 100%;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    box-shadow: 0 0 25px rgba(0, 200, 224, 0.3);
  }
  .about-glow-image:hover {
    transform: scale(1.05);
    box-shadow: 0 0 45px rgba(0, 200, 224, 0.6);
  }

  /* Text box styling */
  .text-box-glow {
    color: #d1eaff;
  }

  .text-box-glow h1 {
    color: #00c8e0;
    font-weight: 700;
    font-size: 2.6rem;
    margin-bottom: 1rem;
  }

  .text-box-glow h4 {
    font-style: italic;
    margin-bottom: 1rem;
  }

  .text-box-glow p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
  }

  /* Align items center for text on desktop */
  .d-flex.align-items-center {
    min-height: 100%;
  }

  

  /* Responsive fixes */
  @media (max-width: 991.98px) {
    .text-box-glow h1 {
      font-size: 2rem;
    }
    .text-box-glow p {
      font-size: 1rem;
    }
  }
  @media (max-width: 575.98px) {
    .section-title {
      font-size: 2rem;
      margin-bottom: 30px;
    }
    .text-box-glow h1 {
      font-size: 1.6rem;
    }
    .text-box-glow p {
      font-size: 0.95rem;
    }
  }