.hero-slider {
  position: relative;
  overflow: hidden;
}

.hero-slide {
  min-height: 100vh;
  height: 100vh;
  position: relative;
}

.hero-with-text {
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-with-text .hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}



.hero-image-only {
  min-height: 100vh;
  height: 100vh;
  position: relative;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  overflow: hidden;
  display: block;
}

.hero-image-only img {
  min-height: 100vh;
  height: 100vh;
  width: 100vw;
  object-fit: cover;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}

.hero-content {
  color: #ffffff;
  z-index: 2;
  position: relative;
}

.hero-title {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  font-family: 'Onest', sans-serif;
  color: #000000;
}

.hero-description {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  opacity: 0.95;
  font-family: 'Onest', sans-serif;
  font-weight: 400;
  color: #000000;
}

.btn-hero {
  background-color: #f8ac31;
  color: #ffffff;
  padding: 12px 30px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  border: none;
  transition: all 0.3s ease;
  display: inline-block;
  letter-spacing: 0.5px;
  font-family: 'Onest', sans-serif;
}

.btn-hero:hover {
  background-color: #ffa617;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(248, 172, 49, 0.4);
}

.custom-indicators {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 3;
}

.custom-indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid #000000;
  background-color: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
}

.custom-indicator.active {
  background-color: #000000;
}

.custom-indicator:hover {
  transform: scale(1.1);
}

.carousel-control-prev,
.carousel-control-next {
  width: 5%;
  z-index: 3;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  border-radius: 50%;
  width: 40px;
  height: 40px;
}

@media (max-width: 768px) {
  .hero-slider {
    margin-top: -0px !important;
  }
  .hero-title, .hero-description {
    display: none;
  }
  .hero-content {
    text-align: center;
    margin-top: 255px;
}
  
  .hero-slide {
    min-height: 100vh;
    height: 110vh;
  }
  
  .hero-with-text {
    text-align: center;
  }
  
  .hero-image-only {
    min-height: 100vh;
    height: 100vh;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
  }
  
  .hero-image-only img {
    min-height: 100vh;
    height: 100vh;
    width: 100vw;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
  }
}
