/* Slider Fix CSS */
.home-slider {
  position: relative;
  width: 100%;
  min-height: 100vh;
}

.home-slider .slider-item {
  position: relative;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.home-slider .overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.5);
  z-index: 1;
}

.home-slider .container {
  position: relative;
  z-index: 2;
}

/* Owl Carousel Navigation */
.owl-nav {
  position: absolute;
  top: 50%;
  width: 100%;
  transform: translateY(-50%);
  z-index: 3;
}

.owl-nav button {
  position: absolute;
  background: rgba(255,255,255,0.2) !important;
  color: white !important;
  border: none !important;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 18px;
  transition: all 0.3s ease;
}

.owl-nav button:hover {
  background: rgba(255,255,255,0.4) !important;
}

.owl-nav .owl-prev {
  left: 20px;
}

.owl-nav .owl-next {
  right: 20px;
}

/* Owl Carousel Dots */
.owl-dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}

.owl-dots .owl-dot {
  display: inline-block;
  margin: 0 5px;
}

.owl-dots .owl-dot span {
  display: block;
  width: 12px;
  height: 12px;
  background: rgba(255,255,255,0.5);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.owl-dots .owl-dot.active span,
.owl-dots .owl-dot:hover span {
  background: white;
}