.testimonial-card {
  background: linear-gradient(136deg, #989898, #ffffff);
  border-radius: 15px;
  padding: 25px;
  max-width: 450px;
}

.testimonial-card:hover {
  background: linear-gradient(600deg, #ffbdae, #919191);
  color: #ffffff;
}

.testimonial-card:hover .testimonial-text,
.testimonial-card:hover .user-info strong,
.testimonial-card:hover .user-info small {
  color: #ffffff;
}

.testimonial-text {
  font-size: 14px;
  color: #333;
  margin-bottom: 20px;
}

.testimonial-user {
  display: flex;
  align-items: center;
}

.testimonial-user .img-testimonial {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 15px;
}

.user-info {
  line-height: 1.2;
}

.user-info strong {
  font-size: 13px;
  color: #222;
}

.user-info small {
  display: block;
  color: #555;
  font-size: 11px;
  margin-top: 3px;
}

.star-rating {
  margin-top: 5px;
}

.star-rating img {
  height: 15px;
  width: 15px;
}

/* Swiper nav buttons */
.swiper-button-next,
.swiper-button-prev {
  color: #fff;
  background-color: rgba(0, 0, 0, 0.507);
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 16px;
}

/* testimonial-carousel-new */

.testimonial-vid {
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  /* padding: 10px; */
}

.testimonial-vid iframe {
  width: 100%;
  min-height: 400px;
  border-radius: 8px;
}

@media (max-width: 480px) {
  .testimonial-vid iframe {
    width: 100%;
    min-height: 380px;
  }
}

/* new-testing  */
.youtube-thumb {
  width: 100%;
  cursor: pointer;
  border-radius: 10px;
}

.video-modal {
  display: none;
  position: fixed;
  z-index: 999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  justify-content: center;
  align-items: center;
}

.modal-content {
  position: relative;
  max-width: 800px;
  width: 90%;
  margin: auto;
  background: #000;
  padding: 0;
  border-radius: 8px;
}

.video-modal iframe {
  width: 100%;
  height: 450px;
}

.close {
  position: absolute;
  top: 10px;
  right: 20px;
  color: white;
  font-size: 30px;
  cursor: pointer;
}

/* testimonial-carousel-new */

@media (max-width: 576px) {
  .image-pair {
    flex-direction: column;
    gap: 20px;
  }
}

/* adding playbutton  */
.video-thumb-wrapper {
  position: relative;
  cursor: pointer;
}

.video-thumb-wrapper img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 4px;
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 60px;
  height: 60px;
  margin: -30px 0 0 -30px;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 50%;
  transition: background 0.3s ease;
}
.play-button::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -12px 0 0 -6px;
  border-style: solid;
  border-width: 12px 0 12px 20px;
  border-color: transparent transparent transparent white;
}
.play-button:hover {
  background: rgba(0, 0, 0, 0.8);
}

/* adding playbutton  */
