.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 100px 0;
  /* scroll-snap-align: start;
  scroll-snap-stop: always; */
}

.hero .video-container {
  position: absolute; 
  top: 0; 
  left: 0; 
  width: 100%; 
  height: 100%; 
  overflow: hidden; 
  z-index: 0;
}

.hero .video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.60) 0%, rgba(0, 0, 0, 0.60) 100%);
  z-index: 1;
}

.hero .video-container video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero .hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  z-index: 2;
  position: relative;
  padding: 0;
}

.hero .hero-title {
  font-weight: 700;
  font-size: 72px;
  line-height: 1.25;
  color: #fff;
  margin-bottom: 30px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  max-width: 820px;
}

.hero .hero-subtitle {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  font-size: 20px;
  line-height: 1.5;
  color: #fff;
  margin-bottom: 51px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.hero .hero-buttons {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.hero .btn {
  background: #042474;
  color: #fff;
  font-weight: 600;
  border-radius: 8px;
  padding: 14px 36px;
  font-size: 1.1rem;
  box-shadow: 0 2px 8px rgba(162, 89, 255, 0.15);
  border: none;
  display: block
}

.hero .btn-outline {
  background: none;
  color: #fff;
  border: 2px solid #042474;
}

.hero .btn-outline:hover {
  background: #042474;
  color: #fff;
}

.hero .hero-btn-primary {
  margin-right: 0 !important;
  background: #042474;
  color: #fff;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.56;
  padding: 11px 24px 13px;
  border-radius: 8px;
  border: none;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.05);
}

.hero .hero-btn-primary:hover {
  background: #1149cb;
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.15);
}

.hero .hero-btn-outline {
  background: rgba(10, 9, 47, 0.4) !important;
  border: 2px solid #5351E3 !important;
  color: #fff;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.56;
  padding: 11px 24px 13px;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.05);
}

.hero .hero-btn-outline:hover {
  background: rgba(83, 81, 227, 0.2) !important;
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.15);
}
@media (max-width: 1512px) {

}

@media (max-width: 1200px) {

}

@media (max-width: 992px) {
    .hero .hero-title {
    color:  #FFF;
    text-align: center;
    font-size: 56px;
    font-style: normal;
    font-weight: 700;
    line-height: 72px;
    letter-spacing:  0px;
  }

    .hero .hero-buttons {
      flex-direction: column;
      gap: 12px;
    }

    .hero .hero-btn-primary,
    .hero .hero-btn-outline {
      width: 100%;
      max-width: 100%;
      text-align: center;
    }


}

@media (max-width: 768px) {
  .hero .hero-title {
    color:  #FFF;
    text-align: center;
    font-size: 30px;
    font-style: normal;
    font-weight: 700;
    line-height: 38px;
    letter-spacing:  0px;
    mrrgin-bottom: 0;
  }

    .hero .hero-subtitle {
    font-size: 18px;
    margin-bottom: 40px;
  }

}

@media (max-width: 568px) {
  .hero .container {
    padding: 0 24px;
  }

  .hero .hero-btn-primary,
      .hero .hero-btn-outline {
        width: 100%;
        max-width: 100%;
        text-align: center;
      }
  .hero .hero-buttons {
      padding: 40px 0
    }
}