/* ==============================
   HERO SLIDER
================================ */

.hero-slider {
  position: relative;
  width: 100%;
  height: 650px;
  overflow: hidden;
  background: #071a35;
}

/* Slide */

.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.7s ease;
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
}

/* Background Image */

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Overlay */

.hero-overlay {
  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      90deg,
      rgba(3, 20, 48, 0.90) 0%,
      rgba(3, 20, 48, 0.65) 38%,
      rgba(3, 20, 48, 0.15) 75%,
      rgba(3, 20, 48, 0.05) 100%
    );
}

/* Content */

.hero-content {
  position: absolute;
  top: 50%;
  left: 18%;

  transform: translateY(-50%);

  max-width: 650px;
  color: #ffffff;

  z-index: 5;
}

.hero-subtitle {
  display: inline-block;

  font-size: 15px;
  font-weight: 700;
  letter-spacing: 2px;

  margin-bottom: 18px;

  color: #f58220;
}

/* Heading */

.hero-content h1 {
  margin: 0 0 20px;

  font-size: clamp(42px, 5vw, 72px);
  line-height: 1.08;

  font-weight: 800;
}

.hero-content h1 strong {
  font-weight: 900;
  color: #f2811c;
}

/* Description */

.hero-content p {
  max-width: 550px;

  margin: 0 0 30px;

  font-size: 27px;
  line-height: 1.5;

  color: rgba(255,255,255,0.92);
}

/* Buttons */

.hero-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;

}

.hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-width: 165px;
  padding: 14px 26px;

  border-radius: 4px;

  font-size: 15px;
  font-weight: 700;

  text-decoration: none;

  transition: all 0.3s ease;
}

.primary-btn {
  background: #f2811c;
  color: #ffffff;
  border-radius: 20px;
}

.primary-btn:hover {
  background: #ffffff;
  color: #071a35;
}

.secondary-btn {
  border: 1px solid #ffffff;
  color: #ffffff;
  background: transparent;
  border-radius: 20px;
}

.secondary-btn:hover {
  background: #ffffff;
  color: #071a35;
}


/* ==============================
   ARROWS
================================ */

.hero-arrow {
  position: absolute;

  top: 50%;
  transform: translateY(-50%);

  width: 48px;
  height: 48px;

  border: 1px solid rgba(255,255,255,0.5);
  border-radius: 50%;

  background: rgba(0,0,0,0.20);

  color: #ffffff;

  font-size: 22px;

  cursor: pointer;

  z-index: 10;

  transition: all 0.3s ease;
}

.hero-arrow:hover {
  background: #f58220;
  border-color: #f58220;
}

.hero-prev {
  left: 25px;
}

.hero-next {
  right: 25px;
}


/* ==============================
   DOTS
================================ */

.hero-dots {
  position: absolute;

  left: 50%;
  bottom: 28px;

  transform: translateX(-50%);

  display: flex;
  gap: 8px;

  z-index: 10;
}

.hero-dot {
  width: 10px;
  height: 10px;

  border-radius: 50%;

  background: rgba(255,255,255,0.5);

  cursor: pointer;

  transition: all 0.3s ease;
}

.hero-dot.active {
  width: 28px;
  border-radius: 10px;
  background: #f58220;
}


/* ==============================
   MOBILE
================================ */

@media (max-width: 767px) {

  .hero-slider {
    height: 580px;
  }

  .hero-content {
    left: 25px;
    right: 25px;
    max-width: none;
  }

  .hero-content h1 {
    font-size: 42px;
  }

  .hero-content p {
    font-size: 16px;
  }

  .hero-arrow {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }

  .hero-prev {
    left: 12px;
  }

  .hero-next {
    right: 12px;
  }

}
