/* ===== BANNER SLIDER CONTAINER ===== */
.banner-slider {
  width: 100%;
  height: 50vh;              /* Half of the screen */
  position: relative;
  overflow: hidden;
  background: #000;
}

/* ===== SLIDE TRACK ===== */
.banner-track {
  display: flex;             /* REQUIRED for sliding */
  width: 100%;
  height: 100%;
  transition: transform 0.6s ease-in-out;
}

/* ===== EACH SLIDE ===== */
.banner-slide {
  min-width: 100%;           /* REQUIRED so slides line up horizontally */
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ===== IMAGE FIT ===== */
.banner-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;       /* SHOW FULL IMAGE (no cropping) */
  object-position: center;
}

/* ===== DOT NAVIGATION ===== */
.banner-dots {
  position: absolute;
  bottom: 15px;
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.banner-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  cursor: pointer;
}

.banner-dots span.active {
  background: #fff;
}

/* ===== MOBILE ADJUSTMENT ===== */
@media (max-width: 768px) {
  .banner-slider {
    height: 45vh;
  }
}