:root {
  --primary-dark: #0b2b5c;
  --primary-accent: #1e5bbf;
  --gray-light: #f8f9fc;
}

/* ===== CAROUSEL SECTION ===== */
.carousel-section {
  padding-top: 0px;
  margin-bottom: 0rem;
}

.carousel-image {
  height: 95vh;
  min-height: 600px;
  max-height: 700px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
}

.carousel-content {
  padding: 40px 0;
}

/* Slide Badge */
.slide-badge {
  display: inline-flex;
  align-items: center;
  padding: 10px 24px;
  border-radius: 50px;
  color: #fff;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Custom Carousel Controls */
.carousel-control-prev,
.carousel-control-next {
  width: 50px;
  height: 50px;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.01);
  backdrop-filter: blur(10px);
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  opacity: 0;
  transition: all 0.3s ease;
}

.carousel-section:hover .carousel-control-prev,
.carousel-section:hover .carousel-control-next {
  opacity: 1;
}

.carousel-control-prev {
  left: 30px;
}

.carousel-control-next {
  right: 30px;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-50%) scale(1.1);
}

/* Carousel Indicators */
.carousel-indicators {
  bottom: 40px;
}

.carousel-indicators button {
  width: 12px !important;
  height: 12px !important;
  border-radius: 50% !important;
  border: none !important;
  margin: 0 6px !important;
  background: rgba(255, 255, 255, 0.4) !important;
  transition: all 0.3s ease !important;
}

.carousel-indicators button.active {
  background: #fff !important;
  transform: scale(1.2);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.4);
}

/* Slide Counter */
.slide-counter {
  position: absolute;
  bottom: 40px;
  right: 40px;
  z-index: 10;
  color: #fff;
  font-weight: 300;
  font-size: 1.2rem;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
  padding: 8px 16px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.slide-counter .current {
  font-weight: 700;
  font-size: 1.4rem;
}

.slide-counter .separator {
  margin: 0 8px;
  opacity: 0.5;
}

.slide-counter .total {
  opacity: 0.6;
}

/* Carousel Fade Animation */
.carousel-fade .carousel-item {
  opacity: 0;
  transition-duration: 0.8s;
  transition-property: opacity;
}

.carousel-fade .carousel-item.active,
.carousel-fade .carousel-item-next.carousel-item-left,
.carousel-fade .carousel-item-prev.carousel-item-right {
  opacity: 1;
}

.carousel-fade .active.carousel-item-left,
.carousel-fade .active.carousel-item-right {
  opacity: 0;
}

.carousel-fade .carousel-item-next,
.carousel-fade .carousel-item-prev,
.carousel-fade .carousel-item.active,
.carousel-fade .active.carousel-item-left,
.carousel-fade .active.carousel-item-prev {
  transform: translateX(0);
  transform: translate3d(0, 0, 0);
}

/* Responsive */
@media (max-width: 992px) {
  .carousel-image {
    height: 70vh;
    min-height: 400px;
  }
  
  .carousel-control-prev,
  .carousel-control-next {
    width: 40px;
    height: 40px;
    opacity: 0.7;
  }
  
  .carousel-control-prev {
    left: 15px;
  }
  
  .carousel-control-next {
    right: 15px;
  }
  
  .carousel-content h1 {
    font-size: 2.5rem !important;
  }
}

@media (max-width: 768px) {
  .carousel-image {
    height: 60vh;
    min-height: 350px;
  }
  
  .slide-badge {
    font-size: 0.75rem;
    padding: 6px 14px;
  }
  
  .carousel-content h1 {
    font-size: 2rem !important;
  }
  
  .carousel-indicators {
    bottom: 20px;
  }
  
  .carousel-indicators button {
    width: 8px !important;
    height: 8px !important;
  }
  
  .slide-counter {
    display: none;
  }
}

@media (max-width: 576px) {
  .carousel-image {
    height: 50vh;
    min-height: 300px;
  }
  
  .carousel-content h1 {
    font-size: 1.5rem !important;
  }
  
  .carousel-content h4 {
    font-size: 1rem !important;
  }
  
  .carousel-content p {
    font-size: 0.9rem !important;
  }
}

body {
  font-family: 'Inter', sans-serif;
  background-color: #fafcff;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
.main-content {
  flex: 1;
}
.bg-primary {
  background-color: var(--primary-dark) !important;
}
.navbar .nav-link {
  color: rgba(255,255,255,0.85) !important;
  font-weight: 500;
  padding: 1.5rem 2rem;
  transition: 0.2s;
}
.navbar .nav-link:hover {
  color: #fff !important;
  background-color: rgba(255,255,255,0.08);
  border-radius: 6px;
}
.navbar-brand {
  font-size: 1.6rem;
  letter-spacing: -0.5px;
}
.footer-wrapper {
  background: #0a1a2e !important;
  border-top: 2px solid #1e5bbf;
}
.footer-wrapper a {
  transition: 0.2s;
}
.footer-wrapper a:hover {
  color: #9bbaff !important;
}
.card {
  border: none;
  box-shadow: 0 8px 24px rgba(0,20,50,0.05);
  transition: 0.25s ease;
}
.card:hover {
  box-shadow: 0 12px 32px rgba(0,20,50,0.10);
}
.section-title {
  position: relative;
  padding-bottom: 0.75rem;
}
.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 4px;
  background: var(--primary-accent);
  border-radius: 4px;
}
.team-img-placeholder {
  background: #e9edf4;
  height: 140px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: #2c4b7a;
  width: 140px;
  margin: 0 auto 1rem;
}
.contact-icon {
  font-size: 2rem;
  color: var(--primary-accent);
}
.text-secondary {
  color: #b0c6e0 !important;
}
.btn-outline-primary {
  border-color: var(--primary-accent);
  color: var(--primary-accent);
}
.btn-outline-primary:hover {
  background: var(--primary-accent);
  border-color: var(--primary-accent);
  color: #fff;
}