.mySwiper {
  padding: 20px 0;
  max-width: 1000px;
  margin: auto;
}
.swiper-slide .review-box {
  background: #e9E9E9;
  padding: 10px;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  text-align: center;
  height: 100%;
}
.review-box img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}
.review-box .stars {
  color: #C8735A;
  font-size: 20px;
  margin-bottom: 8px;
}
body{
    background-color: #fff;
}
.review-box {
  background: #fff;
  padding: 10px;
  border-radius: 12px;
  box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.15); /* ظل من اليمين والأسفل */
  transition: transform 0.3s ease;
}
.review-box:hover {
  transform: translateY(-4px); /* حركة خفيفة للأعلى عند المرور */
}