.swiper {
  width: 95%;
  max-width: 700px;
  overflow: visible;
  border-radius: 15px;
  background: transparent;
  position: relative;
}
@media (min-width: 768px) {
  .swiper {
    width: 65%;
  }
}

.swiper-wrapper {
  overflow: visible !important; 
}

.swiper-slide {
  justify-content: center; 
  margin-top: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper-slide img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
  user-select: none;
  pointer-events: none;
  will-change: transform;
}

.swiper-slide-active img {
  transform: scale(1.05);
  box-shadow: 0 8px 30px rgba(0,0,0,0.3);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

