* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* Hero Wrapper */
.hero {
  position: relative;
  width: 100%;
  min-height: calc(100vh - 70px);
  /* Full screen height */
  display: flex;
  align-items: center;
  padding: 20px;
  overflow: hidden;
}

/* Background Video Styling */
.video-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Ensures video fills screen without stretching */
  z-index: -2;
}

/* Dark Overlay to make text readable */
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0.2) 100%);
  z-index: -1;
}

/* Hero Content */
.content {
  max-width: 650px;
  color: #111;
  z-index: 1;
}

.content h1 {
  font-size: clamp(3rem, 8vw, 5rem);
  /* Responsive size */
  line-height: 1.1;
  font-weight: 800;
  margin-bottom: 24px;
}

.content p {
  font-size: 1.25rem;
  line-height: 1.6;
  color: #111;
  /* Light gray */
  margin-bottom: 40px;
  max-width: 500px;
}

/* Button Group */
.btn-group {
  display: flex;
  gap: 15px;
}

.btn {
  padding: 16px 32px;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  transition: 0.3s;
}

.btn-orange {
  background-color: #ff5f1f;
  /* Vibrant orange from image */
  color: white;
  border: none;
}

.btn-outline {
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
}

.btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.1);
}

/* Responsive Mobile Adjustments */
@media (max-width: 768px) {
  .hero {
    padding: 20px 5%;
    text-align: center;
    justify-content: center;
  }

  .btn-group {
    flex-direction: column;
  }
}