.hero-wrapper {
  /* background-image: url("/Media/Arab_Woman_Working.jpg"); */

  background-size: cover;
  background-position: center;
  background-attachment: fixed; /* ✅ PARALLAX */
  height: 110vh;
  transform-origin: center center;
  will-change: transform;
  transition: transform 0.1s ease-out;
  position: relative;
  z-index: 0;
  border-bottom-left-radius: 40px;
  border-bottom-right-radius: 40px;
}

.hero-wrapper::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  border-bottom-left-radius: 45px;
  border-bottom-right-radius: 45px;
}


.video-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  z-index: -1;
  pointer-events: none;
}

.video-container video {
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  transform: translateZ(0); 
}