.swiper {
  width: 100%;
  height: 100%;
  padding: 60px 0;
}

.swiper-slide {
  width: 900px;
  height: 500px;
  border-radius: 20px;
  overflow: hidden;
  transition: transform 0.8s ease, opacity 0.8s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.inner-image {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  animation: none;
}

@keyframes zoomIn {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.1);
  }
}

.swiper-button-next,
.swiper-button-prev {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: rgba(0, 0, 0, 0.4);
  width: 60px!important;
  height: 60px!important;
  border-radius: 50%;
  z-index: 10;
}