.testimonial-video-section {
  background: #f9f9f9;
  padding: 60px 0;
}

.video-wrapper {
  max-width: 800px;
  margin: 0 auto;
}

.video-wrapper iframe {
  width: 100%;
  height: 450px;
  border-radius: 8px;
}
/* First attempt */
.modal {
  display: none; /* hidden by default */
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.6);
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.modal-content {
  background: #fff;
  width: 70%;
  max-height: 80%; /* limit height */
  overflow-y: auto; /* scroll bar */
  padding: 20px;
  border-radius: 8px;
  position: relative;
}

#close {
  position: absolute;
  top: 10px; right: 15px;
  font-size: 24px;
  cursor: pointer;
}
