#video-testimonials{
    margin-top: 50px;
    margin-bottom: 100px;
}

.testimonial-video {
  width: 100%;
  height: auto;
  aspect-ratio: 9 / 16;
  object-fit: cover; /* Ensures the video fills the frame while maintaining its aspect ratio */
}

/* Optional: Set a max-width to control the size of videos on larger screens */
.video-wrapper {
  max-width: 300px;
  margin: 0 auto;
}

/* Responsive adjustment */
@media (max-width: 768px) {
  .testimonial-video {
    max-width: 100%;
  }
}
