/* ======================
   GLOBAL FIXES
   ====================== */
   .about-img-wrapper { height: 420px; }
   .about-img-wrapper img { object-fit: cover; }
   @media (max-width: 991px) {
     .about-img-wrapper { height: 300px; }
   }
   
   /* ======================
      HERO CAROUSEL ONLY
      ====================== */
   #muCarousel .carousel-item {
     position: relative;
   }
   #muCarousel .carousel-item::before {
     content: "";
     position: absolute;
     inset: 0;
     background: rgba(0,0,0,0.35);
     z-index: 1;
   }
   #muCarousel .carousel-item img {
     position: relative;
     z-index: 0;
   }
   #muCarousel .carousel-caption {
     z-index: 2;
   }
   /* =========================
      Services Slider FIXED
      ========================= */
   
      #services {
     background: transparent;
     overflow: hidden;
   }
   
   /* Force carousel to wrap content only */
   #servicesSlider,
   #servicesSlider .carousel-inner,
   #servicesSlider .carousel-item {
     background: transparent;
     height: auto;
     min-height: auto;
   }
   
   /* Remove any inherited overlay */
   #servicesSlider .carousel-item::before,
   #servicesSlider .carousel-item::after {
     display: none;
     content: none;
   }
   
   /* Ensure row does not stretch */
   #servicesSlider .row {
     margin: 0;
   }
   
   /* Service cards */
   #services .service-box {
     background: rgba(255, 255, 255, 0.08);
     backdrop-filter: blur(6px);
     -webkit-backdrop-filter: blur(6px);
     border-radius: 16px;
     border: 1px solid rgba(255, 255, 255, 0.15);
     transition: transform 0.3s ease, box-shadow 0.3s ease;
   }
   
   #services .service-box:hover {
     transform: translateY(-8px);
     box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
   }
   
   #services .service-box i {
     display: inline-block;
     transition: transform 0.3s ease;
   }
   
   #services .service-box:hover i {
     transform: scale(1.1);
   }
   
   #services .service-box h5 {
     margin-top: 10px;
     font-weight: 600;
   }
   
   #services .service-box p {
     opacity: 0.85;
   }
   
   /* =========================
      Carousel Controls
      ========================= */
   
   #servicesSlider .carousel-control-prev,
   #servicesSlider .carousel-control-next {
     width: 45px;
     top: 50%;
     transform: translateY(-50%);
   }
   
   #servicesSlider .carousel-control-prev-icon,
   #servicesSlider .carousel-control-next-icon {
     background-color: rgba(0, 0, 0, 0.5);
     border-radius: 50%;
     padding: 16px;
   }
   
   /* =========================
      Responsive
      ========================= */
   
   @media (max-width: 991px) {
     #services .service-box {
       padding: 24px 20px;
     }
   }
   
   @media (max-width: 575px) {
     #servicesSlider .carousel-control-prev,
     #servicesSlider .carousel-control-next {
       display: none;
     }
   }

   
.carousel-item {
  position: relative;
  height: 70vh;
  min-height: 400px;
}
 /* Footer icon styles */
 footer .bi {
    color: white;
  }
  footer a:hover .bi {
    opacity: 0.8;
  }
/* Main Header Styles */
.main-header {
  padding: 8px 0;
}
.main-header .bi {
  color: white;
}
.main-header a:hover .bi {
  opacity: 0.8;
}

.carousel-item::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.5));
  z-index: 1;
}

.carousel-item img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.carousel-caption {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  max-width: 800px;
  padding: 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.carousel-caption h2,
.carousel-caption h3 {
  margin-bottom: 15px;
}

.carousel-caption p {
  margin-bottom: 0;
}

.carousel-control-prev,
.carousel-control-next {
  z-index: 3;
  width: 10%;
  opacity: 0.8;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  width: 40px;
  height: 40px;
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  background-size: 50%;
}

@media (max-width: 768px) {
  .carousel-control-prev,
  .carousel-control-next {
    width: 15%;
  }
  
  .carousel-control-prev-icon,
  .carousel-control-next-icon {
    width: 30px;
    height: 30px;
  }
  
  .carousel-caption {
    width: 90%;
    padding: 15px;
  }
  
  .carousel-caption h3 {
    font-size: 1.5rem;
  }
  
  .carousel-caption p {
    font-size: 1rem;
  }
}

.section-title {
  margin-top: 60px;
  margin-bottom: 30px;
  text-align: center;
}

.team-member {
  text-align: center;
  padding: 15px;
}

footer {
  background: #f8f9fa;
  padding: 20px 0;
  text-align: center;
}

.marquee {
  background: #f8f9fa;
  padding: 15px 0;
}

.service-box {
  padding: 20px;
  margin-bottom: 20px;
  border: 1px solid #dee2e6;
  border-radius: 5px;
}

.service-box img {
  max-width: 64px;
  margin-bottom: 15px;
}

.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar-brand img {
  height: 40px;
}

.nav-link i {
  margin-right: 5px;
}

.form-control,
.form-select {
  border: 1px solid #dee2e6;
  border-radius: 5px;
}

.form-control {
  border-color: black;
}

.form-floating > .form-control:focus ~ label,
.form-floating > .form-control:not(:placeholder-shown) ~ label {
  color: #052C65;
}

/* Custom button and icon colors */
.btn-primary {
  background-color: #052C65;
  border-color: #052C65;
  color: white;
}
.btn-primary:hover {
  background-color: #031d47;
  border-color: #031d47;
  color: white;
}
.text-primary {
  color: #052C65 !important;
}
.alert-primary {
  background-color: rgba(5, 44, 101, 0.1);
  border-color: rgba(5, 44, 101, 0.2);
  color: #052C65;
}
.bi {
  color: #052C65;
}
/* White icons in buttons */
.btn .bi {
  color: white;
}
/* White text in badges */
.badge.bg-primary {
  background-color: #052C65 !important;
  color: white;
}
/* White icons in badges */
.badge .bi {
  color: white;
}
