.video-section {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  text-align: center;
}

/* Video should fully cover the section */
.background-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* Maintain aspect ratio */
  z-index: 1;
  pointer-events: none; /* Don't block interactions */
}

/* Tint overlay for better text visibility */
.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.4);
  z-index: 2;
}

/* Centered content */
.video-content {
  position: relative;
  z-index: 3;
  max-width: 800px;
  padding: 0 20px;
}

.video-content .about-head {
  font-size: clamp(1.8rem, 4vw, 3rem);
  margin-bottom: 20px;
  color:#EBCB90;
}

.video-content .about-para {
  font-size: clamp(1rem, 2vw, 1.2rem);
  margin-bottom: 30px;
}

/* Button styling */
.video-content .button {
  display: inline-flex;
  align-items: center;
  padding: 12px 25px;
  background-color: #cfbc98;
  color: #222;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  gap: 10px;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.video-content .button:hover {
  background-color: #EBCB90;
  transform: translateY(-2px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .video-section {
    height: 100vh;
  }

  .video-content {
    padding: 0 15px;
  }

  .video-content .about-head {
    font-size: 2rem;
  }

  .video-content .about-para {
    font-size: 1rem;
  }

  .video-content .button {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
}
