.banner {
  position: relative;
  height: 60vh;
  width: 100%;
  display: flex;
  align-items: center;
  padding: 0 5%;
  color: white;
  overflow: hidden;
}

/* Background image inside HTML */
.banner-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

/* Overlay */
.banner-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: -1;
}

/* Content */
.banner-content {
  position: relative;
  max-width: 650px;
  animation: fadeIn 1.2s ease-out forwards;
  opacity: 0;
}

.banner-content h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
  color: white;
}

.banner-content p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  line-height: 1.6;
}

/* Button */
.banner-btn {
  padding: 15px 30px;
  background: #fbbf24;
  color: white;
  font-size: 1.1rem;
  border-radius: 6px;
  text-decoration: none;
  transition: 0.3s;
}

.banner-btn:hover {
  background: #0054a8;
  color: white;
}

/* Fade-in animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Mobile */
@media (max-width: 768px) {
  .banner-content h1 {
    font-size: 2.3rem;
  }

  .banner-content p {
    font-size: 1rem;
  }
}
