@font-face {
  font-family: 'Henry Sans';
  src: url(../fonts/HenrySans-Regular.ttf) format('truetype');
  font-display: swap;
  font-weight: 400;
  font-style: normal
}
body, html {
  font-family: 'Henry Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin: 0;
  padding: 0;
  overflow-y: hidden;
  width: 100%;
  height: 100%
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Henry Sans', sans-serif;
  font-weight: 700
}
button, input, select, textarea {
  font-family: 'Henry Sans', sans-serif
}
.navbar-default {
  background-color: #fff;
  border: none;
  margin-bottom: 0;
  padding-top: 10px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, .05)
}
.navbar-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap
}
.navbar-brand {
  height: auto;
  padding: 15px 15px;
  font-size: 18px;
  font-weight: 700;
  color: #001a9c !important;
  display: flex;
  align-items: center
}
.nav-tabs-custom {
  display: flex;
  margin: 0;
  padding: 0;
  list-style: none;
  height: 100%
}
.nav-tabs-custom > li {
  display: inline-block
}
.nav-tabs-custom > li > a {
  display: block;
  padding: 24px 20px;
  color: #555;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 13px;
  text-decoration: none;
  letter-spacing: .5px
}
.nav-tabs-custom > li > a:hover {
  background-color: #f0f4ff;
  color: #001a9c;
  border-top-left-radius: 30px;
  border-top-right-radius: 30px
}
.nav-tabs-custom > li.active > a {
  background-color: #001a9c !important;
  color: #fff !important;
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px
}
.carousel {
  height: calc(100vh - 68px);
  min-height: 500px
}
.carousel .item {
  position: relative;
  height: calc(100vh - 68px);
  min-height: 500px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden
}
.carousel .item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(25deg, rgba(0, 26, 156, .95) 10%, rgba(0, 26, 156, .6) 25%, rgba(0, 0, 0, 0) 35%);
  z-index: 1
}
.video-background {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 0
}
/* Video Container: Fills remaining height (100% viewport height minus 80px nav) */
.video-loader-overlay {
  width: 100%;
  height: calc(100vh - 80px); /* Matches nav height */
  overflow: hidden;
  position: relative;
  background-color: #000000; /* Fallback background color */
}

/* Video Styling: Forces video to cover the screen like a background image */
.video-loader-overlay video {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Auto-crops edges to fit without stretching */
  object-position: center; /* Keeps center focus */
  display: block;
}
.video-spinner-circle {
  width: 50px;
  height: 50px;
  border: 5px solid rgba(255, 255, 255, .15);
  border-top: 5px solid #fff;
  border-radius: 50%;
  animation: spin-video-kf 1s linear infinite
}
@keyframes spin-video-kf {
  0% {
    transform: rotate(0)
  }
  100% {
    transform: rotate(360deg)
  }
}
.carousel-caption {
  text-align: left;
  left: 10%;
  right: auto;
  top: 30%;
  bottom: auto;
  max-width: 550px;
  text-shadow: none;
  padding: 0;
  z-index: 2
}
.hero-title {
  font-size: 54px;
  font-weight: 700;
  margin-bottom: 5px;
  letter-spacing: -1px;
  color: #fff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, .3)
}
.hero-subtitle {
  font-size: 30px;
  margin-bottom: 15px;
  font-weight: 300;
  color: #fff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, .3)
}
.hero-description {
  font-size: 16px;
  margin-bottom: 30px;
  opacity: .95;
  line-height: 1.6;
  color: #fff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, .3)
}
.btn-directions {
  background-color: #fff;
  color: #001a9c;
  font-weight: 700;
  border-radius: 25px;
  padding: 12px 35px;
  border: none;
  font-size: 15px;
  display: inline-block;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, .15);
  position: relative;
  z-index: 3
}
.btn-directions:hover {
  background-color: #e6e6e6;
  color: #001a9c
}
@media (max-width:767px) {
  body, html {
    overflow-y: auto
  }
  .navbar-container {
    flex-direction: column;
    align-items: center
  }
  .navbar-brand {
    padding: 12px 15px 6px 15px
  }
  .nav-tabs-custom > li > a {
    padding: 12px 12px;
    font-size: 11px
  }
  .carousel-caption {
    text-align: center;
    left: 5%;
    right: 5%;
    top: 15%;
    width: auto
  }
  .carousel .item::before {
    background: linear-gradient(to bottom, rgba(0, 26, 156, .85) 40%, rgba(0, 0, 0, .6) 100%)
  }
  .hero-title {
    font-size: 36px
  }
  .hero-subtitle {
    font-size: 22px
  }
  .nav-tabs-custom {
    flex-direction: column !important;
    width: 100% !important;
    height: auto !important
  }
  .nav-tabs-custom > li {
    width: 100% !important;
    display: block !important
  }
  .nav-tabs-custom > li > a {
    padding: 15px 20px !important;
    font-size: 14px !important;
    width: 100% !important;
    box-sizing: border-box !important
  }
  .nav-tabs-custom > li > a:focus, .nav-tabs-custom > li > a:hover {
    background-color: #001a9c !important;
    color: #fff !important;
    border-radius: 0;

  }
  .nav-tabs-custom > li.active > a {
    border-radius: 0 !important
  }
}
.container {
  width: 100%;
  max-width: 1350px;
  margin: 0 auto
}
.navbar-brand1 {
  padding: 15px 15px;
  font-size: 18px;
  font-weight: 700;
  color: #001a9c !important;
  display: flex;
  align-items: center
}
.navbar-brand1 {
  padding: 12px 15px 6px 15px
}
.navbar-flex-container {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important
}
.mobile-burger-btn {
  display: none !important
}
@media (max-width:767px) {
  .navbar-default {
    position: fixed !important;
    top: 0;
    left: 0;
    width: 100% !important;
    z-index: 9999 !important
  }
  body {
    padding-top: 60px !important
  }
  .navbar-flex-container {
    flex-direction: row !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding: 5px 15px !important
  }
  .mobile-burger-btn {
    display: block !important;
    background: 0 0;
    border: none;
    padding: 10px;
    cursor: pointer;
    outline: 0
  }
  .mobile-burger-btn .line {
    display: block;
    width: 22px;
    height: 3px;
    background-color: #001a9c;
    margin: 4px 0;
    border-radius: 1px;
    transition: .3s ease
  }
  .menu-wrapper {
    display: none !important;
    position: absolute !important;
    top: 100% !important;
    left: 0 !important;
    width: 100% !important;
    background-color: #fff !important;
    box-shadow: 0 4px 10px rgba(0, 0, 0, .1) !important;
    border-top: 1px solid #eee !important;
    padding: 0 !important
  }
  .menu-wrapper.open {
    display: block !important
  }
  .nav-tabs-custom {
    flex-direction: column !important;
    width: 100% !important;
    height: auto !important
  }
  .nav-tabs-custom > li {
    width: 100% !important;
    display: block !important
  }
  .nav-tabs-custom > li > a {
    padding: 15px 20px !important;
    font-size: 14px !important;
    width: 100% !important;
    box-sizing: border-box !important;
    transition: background-color .2s ease, color .2s ease !important
  }
  .nav-tabs-custom > li > a:focus, .nav-tabs-custom > li > a:hover {
    background-color: #001a9c !important;
    color: #fff !important
  }
  .nav-tabs-custom > li.active > a {
    border-radius: 0 !important
  }
}


#homeCarousel {
  position: relative;
  background-color: #000;
  overflow: hidden;
}

#homeCarousel .carousel-inner .item img {
  width: 100%;
  height: 100vh;
  object-fit: cover;
  transform-origin: center center;
}

/* ============================================================
   NEW: DARK TINT + BLUR OVERLAY LAYER
   ============================================================ */
#homeCarousel .carousel-inner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 5; /* Places overlay on top of images (z-index 1-4) but behind text (z-index 10) */
  pointer-events: none; /* Allows clicks/swipes to pass through to the carousel */
  
  /* EDIT OVERLAY COLOR & DARKNESS HERE: rgba(red, green, blue, opacity) */
  background-color: rgba(0, 0, 0, 0.2	); 

  /* EDIT OVERLAY BLUR HERE: Adjust px value for more or less blur */
  
}

/* Base Styles: Mobile (0px to 767px) */
#homeCarousel .carousel-caption {
  position: absolute;
  top: 50%;
  left: 5%;
  transform: translateY(-50%); /* Vertical centering only to avoid horizontal overflow */
  bottom: auto;
  z-index: 10;
  width: 90%;
  max-width: 100%;
  text-align: left;
  padding: 0 15px; /* Adds safe inner spacing */
}

/* iPad Air / iPad Pro Portrait & Standard Tablets (768px to 1023px) */
@media (min-width: 768px) {
  #homeCarousel .carousel-caption {
    top: 55%;
    left: 8%;
    width: 80%;
    max-width: 650px;
  }
}

/* iPad Pro Landscape & Laptops (1024px to 1199px) */
@media (min-width: 1024px) {
  #homeCarousel .carousel-caption {
    top: 50%;
    left: 10%;
    width: 75%;
    max-width: 750px;
  }
}

/* Large Desktop Screens (1200px+) */
@media (min-width: 1200px) {
  #homeCarousel .carousel-caption {
    left: 5%;
    max-width: 400px;
  }
}
		
/* ============================================================
   FAST-TO-SLOW ZOOM TRANSITION
   ============================================================ */

.carousel-fade .carousel-inner .item {
  opacity: 0;
  top: 0;
  left: 0;
  width: 100%;
  display: block;
  position: absolute;
  z-index: 1;
  transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Initial First Slide on Page Load */
.carousel-fade .carousel-inner .item.active {
  position: relative;
  opacity: 1;
  z-index: 2;
}

.carousel-fade .carousel-inner .item.active img {
  animation: zoomFastToSlow 5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* Outgoing Slide Fade-Out */
.carousel-fade .carousel-inner .item.active.left,
.carousel-fade .carousel-inner .item.active.right {
  opacity: 0;
  z-index: 3;
}

/* Incoming Slide Entry */
.carousel-fade .carousel-inner .next.left,
.carousel-fade .carousel-inner .prev.right {
  opacity: 1;
  z-index: 4;
}

.carousel-fade .carousel-inner .next.left img,
.carousel-fade .carousel-inner .prev.right img {
  animation: zoomFastToSlow 5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* Override standard Bootstrap horizontal directional shifts */
.carousel-fade .carousel-inner .next,
.carousel-fade .carousel-inner .prev,
.carousel-fade .carousel-inner .active.left,
.carousel-fade .carousel-inner .active.right {
  left: 0 !important;
  transform: translate3d(0, 0, 0) !important;
}

/* --- KEYFRAMES --- */
@keyframes zoomFastToSlow {
  0% {
    transform: scale(1.40); 
  }
  100% {
    transform: scale(1.00); 
  }
}