/* SLIDER WRAPPER */
.slider-wrapper{
  position:relative;
  width:100%;
  max-width:2606px;
  aspect-ratio:2606/965;
  overflow:hidden;
  margin:auto;
}

/* SLIDER TRACK */
.slider{
  display:flex;
  height:100%;
  transition:transform 0.6s ease-in-out;
}

/* SLIDE */
.slide{
  min-width:100%;
  height:100%;
}

/* IMAGE */
.slide img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:transform 0.6s ease;
}

/* LIGHT ZOOM EFFECT */
.slide.active img{
  transform:scale(1.05);
}

/* ARROWS */
.arrow{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  width:45px;
  height:45px;
  border-radius:50%;
  backdrop-filter: blur(8px);
  background: rgba(255,255,255,0.1);
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:24px;
  cursor:pointer;
  z-index:10;
  transition:0.3s;
}

.arrow:hover{
  background: rgba(255,255,255,0.25);
}

.arrow.left{ left:15px; }
.arrow.right{ right:15px; }

/* DOTS */
.dots{
  position:absolute;
  bottom:15px;
  left:50%;
  transform:translateX(-50%);
  display:flex;
  gap:8px;
}

.dot{
  width:10px;
  height:10px;
  border-radius:50%;
  background:rgba(255,255,255,0.5);
  cursor:pointer;
}

.dot.active{
  background:#fff;
}

/* MOBILE TWEAK */
@media(max-width:768px){
  .arrow{
    width:35px;
    height:35px;
    font-size:18px;
  }
}

 .slider {
    margin-top: 250px; /* desktop */
  }

  @media (max-width: 768px) {
    .slider {
      margin-top: 100px; /* mobile */
    }
  }