.video-testimonial-heading {
  color: #fff;
  font-weight: bold;
}

.video-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 15px; /* Rounded corners */
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2); /* Attractive shadow */
  transition: transform 0.3s ease, box-shadow 0.3s ease; /* Smooth hover effect */
  height: 300px; /* Set height for video */
}

.video-wrapper:hover {
  transform: translateY(-5px) scale(1.05); /* Slight hover effect */
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3); /* Deeper shadow on hover */
}

.video-item {
  width: 100%;
  height: 100%;
  /* object-fit: cover;  */
  /* Ensure video fits within the set height */
  border-radius: 15px; /* Same rounded corners for video */
}

.video-title {
  text-align: center;
  margin-top: 10px;
  font-size: 1.1rem;
  color: #fff;
  font-weight: bold;
  text-transform: uppercase;
}

.video-testimonials {
  background: linear-gradient(
    90deg,
    rgba(240, 92, 43, 1) 0%,
    rgba(249, 162, 38, 1) 38%
  );

  padding: 60px 20px;
}

@media (max-width: 768px) {
  .video-wrapper {
    height: 200px; /* Adjust height for smaller screens */
  }
}
