   body{
    background-color: rgb(215, 241, 241)!important;
   }
   .navbar-glass {
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
} 
  .navbar-nav .nav-link {
  font-weight: 500;
  margin-left: 15px;
  transition: color 0.3s;
}

.navbar-nav .nav-link:hover {
  color: #c0ecdb;
}


    .carousel-caption {
      background: rgba(0, 0, 0, 0.5);
      padding: 1.5rem;
      border-radius: 8px;
    }
    .icon-box {
      padding: 30px;
      background: #f8f9fa;
      border-radius: 8px;
      transition: 0.3s;
    }
    .icon-box:hover {
      background: #065f49;
      color: #ffffff;
    }
    .icon-box i {
      font-size: 2rem;
      color: #f8f9fa;
      margin-bottom: 15px;
    }
    .cta {
      background: #23524a;
      color: #fff;
      padding: 50px 0;
      text-align: center;
    }
    .cta a {
      color: #fff;
      border: 2px solid #fff;
      padding: 10px 25px;
      text-decoration: none;
      transition: 0.3s;
    }
    .cta a:hover {
      background: #085f25;
      border-color: #078856;
    }
    
  #heroCarousel .carousel-item {
    height: 70vh; /* or fixed height like 700px */
    min-height: 400px;
    position: relative;
    overflow: hidden;
  }

  #heroCarousel .carousel-item img {
    object-fit: cover;
    width: 100%;
    height: 100%;
  }

  .carousel-caption {
    z-index: 2;
  }
  body {
      font-family: 'Poppins', sans-serif;
    }
    .section-padding {
      padding: 60px 0;
    }
    .page-header {
      background: url('assets/img/services-bg.jpg') center/cover no-repeat;
      color: white;
      padding: 100px 0;
      text-align: center;
      text-shadow: 1px 1px 4px rgba(0,0,0,0.6);
    }

    .team-img {
  width: 100%;
  max-width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid #f0f0f0;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  margin: 0 auto;
  display: block;
}
.team-img:hover {
  transform: scale(1.05);
  transition: 0.3s ease;
}
