.video-wrapper {
    position: relative;
    width: 100%;
    height: 60vh;
    overflow: hidden;
    border: solid;
    border-color: #FBC105;
}

.video-bg {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 1;
}

.video-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.1); /* Adjust opacity as needed */
  z-index: 2;
}

.content-overlay {
  position: relative;
  z-index: 3;
  color: white;
  padding: 2rem;
}