/* Modern Slider UI */
.home-slider {
  position: relative;
  width: 100%;
  border-radius: 14px;
  overflow: hidden;
  background: #000;
  margin-bottom: 40px;
}

.home-slider .swiper-slide {
  position: relative;
}

.home-slider img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 14px;
}

/* Overlay */
.home-slider .slide-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 25px;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
  color: #fff;
}

/* Title */
.home-slider h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 5px;
}

/* Navigation */
.swiper-button-next,
.swiper-button-prev {
  color: #fff;
  background: rgba(0,0,0,0.4);
  width: 44px;
  height: 44px;
  border-radius: 50%;
}

/* Pagination dots */
.swiper-pagination-bullet {
  background: #fff;
  opacity: 0.6;
}
.swiper-pagination-bullet-active {
  opacity: 1;
}

/* Mobile */
@media (max-width:768px) {
  .home-slider img {
    height: 240px;
  }
  .home-slider h3 {
    font-size: 20px;
  }
}
