.hero-section {
  position: relative;
  height: 72vh;
  overflow: hidden;
  touch-action: pan-y;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.05);
  transition: opacity 1s ease-in-out, transform 1s ease-in-out;
}
.hero-slide.active {
  opacity: 1;
  transform: scale(1);
  z-index: 1;
}
.overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(9, 44, 92, 0.6) 0%,
    rgba(9, 44, 92, 0.3) 40%,
    rgba(0, 0, 0, 0.5) 100%
  );
  z-index: 1;
}
.hero-caption {
  position: absolute;
  bottom: 60px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(9, 44, 92, 0.75);
  padding: 18px 28px;
  border-radius: 8px;
  z-index: 2;
  text-align: center;
  animation: fadeUp 1.2s ease forwards;
}
.hero-caption h2 {
  font-size: 2rem;
  color: #ffcc00;
  margin: 0;
  font-weight: 700;
  letter-spacing: 1px;
}
@keyframes fadeUp {
  0% {
    transform: translate(-50%, 20px);
    opacity: 0;
  }
  100% {
    transform: translate(-50%, 0);
    opacity: 1;
  }
}
.dot-indicators {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}
.dot {
  height: 12px;
  width: 12px;
  margin: 0 6px;
  background-color: rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.3s ease;
  cursor: pointer;
}
.dot.active {
  background-color: #ffcc00;
}
.nav-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2.2rem;
  background-color: rgba(9, 44, 92, 0.55);
  color: #fff;
  border: none;
  border-radius: 50%;
  padding: 10px;
  cursor: pointer;
  z-index: 3;
  transition: background-color 0.3s ease, transform 0.3s ease;
}
.nav-arrow:hover {
  background-color: #ffcc00;
  color: #092c5c;
  transform: scale(1.1);
}
.left-arrow {
  left: 20px;
}
.right-arrow {
  right: 20px;
}
/* Responsive */
@media screen and (max-width: 768px) {
  .hero-section {
    height: 50vh;
  }
  .hero-caption {
    bottom: 30px;
    padding: 12px 18px;
  }
  .hero-caption h2 {
    font-size: 1.2rem;
  }
  .nav-arrow {
    font-size: 1.5rem;
    padding: 8px;
  }
}
@media screen and (max-width: 576px) {
  .hero-section {
    height: 35vh;
  }
}
