.video-hero {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  color: #fff;
}

/* Video */
.video-hero video {
  position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
}

/* Overlay Gradient (keep as-is, beautiful 😉) */
.overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.85),
    rgba(0, 0, 0, 0.3),
    rgba(0, 0, 0, 0.05)
  );
  z-index: 1;
}

/* Content */
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: 80px;
  margin-top: 80px;
  align-items: center;
 
}

/* Slides */
.hero-slide {
  position: absolute;
  opacity: 0;
  transform: translateX(60px);
  transition: all 0.9s ease;
  pointer-events: none;
}

.hero-slide.active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}

.hero-slide h1 {
  font-size: 3rem;
  margin-bottom: 15px;
  text-transform: uppercase;
  font-size: 30px;
  font-weight: bolder;
}

.hero-slide p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 30px;
  text-align: justify-all;
}

/* Buttons */
.hero-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.btn {
  padding: 14px 22px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: 0.3s;
}

.btn.primary {
  background: #1B263B;
  color: #fff;
}

.btn.secondary {
  background: transparent;
  border: 1px solid #fff;
  color: #fff;
}

.btn:hover {
  transform: translateY(-3px);
  opacity: 0.9;
}


@media (max-width: 768px) {
  .hero-content {
    margin-top: 150px;
    padding: 40px 30px;
  }

  /*.hero-slide{
    text-align: center;
  }

  .hero-buttons{
    justify-content: center;
  }*/

  .hero-slide h1 {
    font-size: 28px
  }
  .hero-slide p{
    font-size: 16px;
  }
  .hero-buttons .btn{
    padding: 8px 12px;
    border-radius: 25px;
    font-size: 14px;
  }
}
