.modal-vid {
  display: none; /* Hidden by default */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  justify-content: center;
  align-items: center;
  opacity: 0; /* Invisible */
  transition: opacity 0.4s ease; /* Smooth fade-in/out */
  z-index: 1000;
}
.modal-vid.show {
  display: flex; /* Display when active */
  opacity: 1; /* Fully visible */
}

.vid {
  cursor: pointer;
}

.v-modal-content {
  position: relative;
  width: 90%;
  max-width: 900px;
}

.close-vid {
  position: absolute;
  top: -25px;
  right: -17px;
  font-size: 30px;
  font-weight: 400;
  cursor: pointer;
  border-radius: 10px;
  color: #fff;
  z-index: 1000;
}

.video-container {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 aspect ratio */
  border-radius: 10px;
  overflow: hidden;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}