




html .bg-color-primary, html .bg-primary {
    background-color: #0a354d !important;
}





.video-hero-wrapper {
  position: relative;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
}

.video-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.video-background iframe {
  width: 100vw;
  height: 100vh;
  position: absolute;
  top: 0;
  left: 0;
  transform: scale(1.5); /* force cover */
  object-fit: cover;
  pointer-events: none;
}

/* Optional overlay for readability */
.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0,0,0,0.4), rgba(0,0,0,0.2));
  z-index: 1;
}

/* Centered logo with fade-in */
.video-logo-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  text-align: center;
  opacity: 0;
  animation: fadeIn 1.5s ease-in-out 0.3s forwards;
}

.video-logo-center img {
  max-width: 320px;
  width: 80%;
  height: auto;
}

/* Mobile tweak to avoid notch */
@media (max-width: 768px) {
  .video-logo-center {
    top: 55%;
  }
}

/* Animation */
@keyframes fadeIn {
  to {
    opacity: 1;
  }
}
