.review-section {
  max-width: 300px; 
  margin: auto;
  text-align: center;
  position: relative;
}

.swiper {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  overflow:visible;
}

.swiper-wrapper {
  align-items: center;
}

.swiper-slide {
  background: #fff;
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  text-align: center;
  width: 300px;
  opacity: 0;
  filter: blur(6px);
  transform: scale(0.9);
  transition: all 0.4s ease;
}

.swiper-slide-active {
  opacity: 1 !important;
  filter: none !important;
  transform: scale(1.05);
  z-index: 2;
}

.swiper-slide img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 20px;
}

.swiper-slide h3 {
  font-size: 20px;
  color: #146734;
  margin: 10px 0;
}

.swiper-slide p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 15px;
}

.star i {
  color: #f39c12;
  margin: 0 2px;
}

.swiper-button-next,
.swiper-button-prev {
  color: #146734;
  top: 40%;
}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 24px;
}

#newReview, #moveToTime{
  background-color: #146734;
  color: white;
  border: none;
  padding: 12px;
  font-size: 15px;
  margin-top: 30px;
  border-radius: 8px;
  border: 1px solid #146734;
  cursor: pointer;
  transition: background 0.3s;
}
#newReview:hover {
  background-color: white;
  color: #146734;
  border: 1px solid #146734;
}
@media (max-width: 768px) {
  .swiper-button-prev,
  .swiper-button-next {
    display: none !important;
  }
  .review-section{
    width: 100%;
    height: auto;
  }
  .swiper-slide {
    width: 90% !important;
    padding: 20px;
  }
}
.star i.empty{
  color: gray;
}
.swiper-button-next, .swiper-button-prev {
  margin-top: 0;
}
.swiper-pagination {
  position: unset;
}