/* ========================= */
/* FULL WIDTH HERO SLIDER */
/* ========================= */

.hero-slider {
  width: 100%;
  height: auto;              /* zaroori — koi fixed height nahi */
  aspect-ratio: 16 / 6;
  max-height: 600px;
  position: relative;
  overflow: hidden;
}

.hero-track {
  width: 100%;
  height: 100%;
  position: relative;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.6s ease-in-out;
}

.hero-slide.active {
  opacity: 1;
  z-index: 1;
}

.hero-slide img {
  display: block;            /* inline gap hatane ke liye */
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 768px) {
  .hero-slider {
    aspect-ratio: 16 / 9;
    max-height: none;
  }
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.6s ease-in-out;
}

.hero-slide.active {
  opacity: 1;
  z-index: 1;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* IMPORTANT */
}

/* Arrows */
.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,.5);
  border: none;
  color: #fff;
  font-size: 22px;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
}

.hero-arrow.prev {
  left: 20px;
}

.hero-arrow.next {
  right: 20px;
}

/* Dots */
.hero-dots {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}

.hero-dots .dot {
  width: 10px;
  height: 10px;
  background: rgba(255,255,255,.5);
  border-radius: 50%;
  cursor: pointer;
}

.hero-dots .dot.active {
  background: #fff;
}

.hero-slider {
width: 100%;
  aspect-ratio: 16 / 6;
  max-height: 600px;
  position: relative;
  overflow: hidden;
}

@media (max-width: 768px) {
  .hero-slider {
   
    aspect-ratio: 4 / 3;
    max-height: none;
  }
}