.video-banner-section {
  position: relative;
  width: 100%;
  max-width: 1250px;
  margin: 60px auto;
  height: 500px;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.video-banner-section .video-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-banner-section .video-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  background-color: rgba(0, 0, 0, 0.4);
  padding: 30px 20px;
  border-radius: 10px;
  max-width: 90%;
}

.video-banner-section .video-overlay h1 {
  color: #ffffff; /* ensures the text is white */
  font-size: 2rem;
  margin-bottom: 10px;
}


.video-banner-section .video-overlay p {
  font-size: 1rem;
  margin-bottom: 15px;
}

.theme-btn {
  background-color: #ffa500;
  color: #fff;
  padding: 10px 20px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 25px;
  transition: 0.3s ease;
}

.theme-btn:hover {
  background-color: #e69500;
}

/* ✅ Mobile Responsive Styles */
@media (max-width: 768px) {
  .video-banner-section {
    height: 300px;
    margin: 30px 15px;
  }

  .video-banner-section .video-overlay h1 {
    font-size: 1.5rem;
  }

  .video-banner-section .video-overlay p {
    font-size: 0.95rem;
  }

  .theme-btn {
    padding: 8px 16px;
    font-size: 0.95rem;
  }
}
