.review-section {
  background: #f0f6ff;
  padding: 40px 0;
  text-align: center;
}

.review-swiper {
  padding: 40px 0;
}

.swiper-slide {
  width: 220px;
  height: 400px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.review-video {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  border-radius: 16px;
  position: relative;
  cursor: pointer;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
    transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease,
    background 0.3s ease;
  z-index: 2;
  opacity: 1;
  visibility: visible;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.play-button i {
  color: #0d6efd;
  font-size: 32px;
  margin-left: 6px;
}

.play-button:hover {
    transform: translate(-50%, -50%) scale(1.1);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.review-video.playing .play-button {
  opacity: 0;
  visibility: hidden;
}

.review-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
}

.custom-player {
  position: relative;
  width: 100%;
  height: 100%;
}

.custom-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
}

.controls {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: rgba(0, 0, 0, 0.5);
  padding: 6px;
  border-radius: 50%;
}

.controls button {
  background: none;
  border: none;
  color: white;
  font-size: 16px;
  cursor: pointer;
}
