.testimonial-container {
  width: 784px;
  height: 385px;
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.testimonial-item {
  position: relative;
  cursor: pointer;
  width: 350px; /* Adjust as needed */
  height: 300px; /* Adjust as needed */
}

.testimonial-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.customer-speak {
  font-family: sans-serif; /* Or another suitable font */
  font-size: 0.8em; /* Small font size (adjust as needed) */
  font-style: italic; /* Optional: adds emphasis */
  color: #555; /* Optional: a softer text color */
  line-height: 1.6; /* Optional: improves readability */
  margin-bottom: 1em; /* Optional: adds spacing below */
  display: block; /* Ensures it's a block-level element */
  padding: 10px; /* Optional: adds padding to the text block */
  background-color: #f9f9f9; /* Optional: a light background color */
  border-left: 3px solid #ccc; /* Optional: a subtle left border */
}

.play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50px; /* Adjust as needed */
  height: 50px; /* Adjust as needed */
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  font-size: 24px;
  opacity: 0.8;
}

.video-popup {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: white;
  padding: 20px;
  display: none;
  z-index: 1000;
  max-width: 80%; /* Adjust as needed */
  max-height: 80%; /* Adjust as needed */
  overflow: auto;
}

.video-popup iframe {
  width: 100%;
  height: 400px; /* Adjust as needed */
}
.close-button{
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
}