.video-banner {
    position: relative;
    width: 100%;
    height: 100vh; /* or 100vh for full screen */
    overflow: hidden;
}

.video-banner .hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;       /* fill container, crop excess */
    object-position: center; /* center video */
    z-index: 1;
}

.video-banner .hero-content {
    position: relative;
    z-index: 2;              /* above the video */
    color: #fff;             /* optional text color */
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;            /* center vertically */
}

.banner__circle {
  position: absolute;
  right: 30px;
  top: 50%;   /* 50% from top */
  transform: translateY(-50%); /* center vertically at 50% */
  width: 140px;
  height: 140px;
  background: #001644;
  border-radius: 50%;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* Main header */
#sp-header {
    background: transparent !important;
    box-shadow: none !important; /* remove shadow if any */
    position: absolute; /* so video shows behind */
    width: 100%;
    top: 0;
    left: 0;
    z-index: 10; /* above video */
}

/* Inner navbar containers */
#sp-header .navbar,
#sp-header .navbar-inner,
#sp-header .sp-megamenu-wrapper {
    background: transparent !important;
    box-shadow: none !important;
}

/* Optional: text color */
#sp-header a,
#sp-header .menu-item a {
    color: #fff !important;
}

#sp-header .menu-item a:hover {
    color: #ffcc00 !important; /* optional hover color */
}


/* ==============================
   STICKY STATE
   ============================== */

.home-hero #sp-header.header-sticky .container-inner {
  background: rgba(0, 22, 68, 0.95) !important;
}
.module-h3 {
    font-size: clamp(14px, 1.2vw, 18px)!important;
}

.module-h1 {
    font-size: clamp(24px, 4vw, 60px)!important;
}

/* Main menu text */
#sp-header .sp-megamenu-parent > li > a {
    font-size: 22px !important;
    color: #ffffff !important;
}

/* Hover and active states */
#sp-header .sp-megamenu-parent > li:hover > a,
#sp-header .sp-megamenu-parent > li.active > a,
#sp-header .sp-megamenu-parent > li.active:hover > a {
    color: #ffffff !important;
}