.hero {
  position: relative;
  width: 100%;
  height: 100vh; /* Full screen height */
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
}

.background-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* Fills area, crops if needed */
  z-index: -1;
  filter: brightness(0.6); /* Optional: darken video for better text contrast */
}

.hero-content {
  z-index: 1;
  max-width: 800px;
  padding: 20px;
}