
/*  header */
.main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99999;
  background: hsl(var(--navy-color-hls));
  transform: translateZ(0);
}
/* Header line */
.main-header::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  /* gradient line */
  background: linear-gradient(
    90deg,
    transparent,
    hsl(var(--accent-color-hls) / .8),
    transparent
  );
  /* soft shadow under it */
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.12);
  pointer-events: none;
}

/* NAVBAR BASE */
.navbar {
  padding-top: 1px;
  padding-bottom: 1px;
}
/* Shrink effect */
.navbar.navbar-shrink {
  padding-top: 1px;
  padding-bottom: 1px;
  box-shadow: 0 5px 18px rgba(0,0,0,0.08);
}
/* MOBILE GRADIENTS */
.mobile-gradient {
  height: 1px;
  margin: 0 16px;
  background: linear-gradient(
    to right,
    transparent,
    hsl(var(--accent-color-hls) / .8),
    transparent
  );
}

.line-gradient {
  width: 100%;
  height: 1px;
  margin-top: 12px;
  background: linear-gradient(
    to right,
    transparent,
    hsl(var(--accent-color-hls) / .8),
    transparent
  );
}

/* NAV LINKS */
.nav-link-custom {
  color: hsl(var(--primary-foreground-color-hls) / .8);
  letter-spacing: .3px;
  font-size: 16px;
  transition: all 0.3s ease;
  white-space: nowrap;
}
.navbar-nav .nav-link-custom.active,
.navbar-nav .nav-link-custom.show {
  color: hsl(var(--accent-color-hls) / .8);
  font-weight: 500;
}
/* TOGGLER */
.toggler-style:hover,
.toggler-style:focus,
.toggler-style:active {
  border: 0 none;
  box-shadow: none;
}
/* RAPPEL LINK */
.rapple,
.rapple:hover,
.rapple:focus,
.rapple:active {
  color: hsl(var(--primary-foreground-color-hls) / .8) !important;
  white-space: nowrap;
}
.rapple:hover {
  color: hsl(var(--accent-color-hls) / .8) !important;
}
/* TOGGLER ICON */
.toggler-icon {
  position: relative;
  display: inline-block;
  width: 30px;
  height: 30px;
}
.toggler-icon i {
  position: absolute;
  top: 0;
  left: 0;
  font-size: 2rem;
  transition: opacity 0.25s ease, transform 0.25s ease;
  color: hsl(var(--accent-color-hls) / .8);
}
.toggler-icon .bi-x {
  opacity: 0;
  transform: rotate(90deg);
}
/* When menu is OPEN */
.navbar-toggler[aria-expanded="true"] .bi-list {
  opacity: 0;
  transform: rotate(90deg);
}
.navbar-toggler[aria-expanded="true"] .bi-x {
  opacity: 1;
  transform: rotate(0);
}
/* Footer */

footer{font-size: 14px;}
.sm-logo{height:44px;}
.text-primary-foreground{color: hsl(var(--primary-foreground-color-hls) / .8);line-height: 2rem;}  
.text-primary-foreground-light{color:hsl(var(--primary-foreground-color-hls) / .5)}
.color-accent {color: hsl(var(--accent-color-hls) / .8);}

/* =========================
   LARGE SCREENS (1400px+)
========================= */

@media (min-width: 992px) {
    /* Logo */
.logo-img {
  height: 46px;
  transition: all 0.35s ease;
}
.lg-w-58{width: 58% !important;}
.navbar.navbar-shrink .logo-img {
  height: 40px;
}
/* =========================
   NAV LINKS
========================= */

.nav-link-custom {
  color: hsl(var(--primary-foreground-color-hls) / .8);
  letter-spacing: .1px;
  font-size: 14px;
  transition: all 0.3s ease;
  white-space: nowrap;
}


  .nav-link-custom {
    position: relative;
    transition: color 0.3s ease;
  }

  .navbar-expand-lg .navbar-nav .nav-link-custom {
    padding: 5px 0;
  }

  /* underline */
  .nav-link-custom::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0%;
    height: 2px;
    background-color: hsl(var(--accent-color-hls) / .8);
    transition: width 0.3s ease;
  }

  .nav-link-custom.active {
    color: hsl(var(--accent-color-hls) / .8);
  }

  .nav-link-custom.active::after {
    width: 100%;
  }

  .nav-link-custom:hover,
  .nav-link-custom:focus {
    color: hsl(var(--accent-color-hls) / .8);
  }
  header .button-accent-color, header .rapple{font-size: 14px;}  
}

/* =========================
   MOBILE (≤991px)
========================= */

@media (max-width: 991.98px) {

  
  .logo-img {
    height: 44px;
    transition: all 0.35s ease;
  }

  .navbar.navbar-shrink .logo-img {
    height: 40px;
  }

  .navbar-nav .nav-link-custom.active,
  .navbar-nav .nav-link-custom:focus {
    font-weight: 500;
    border-radius: 6px;
    background-color: hsl(var(--navy-light) / .5);
  }

  .navbar-nav .nav-link-custom {
    transition: all 0.2s ease;
    padding: 10px 16px;
    display: block;
    text-align: left;
  }

  .navbar-nav li {
    margin: 4px 0;
  }

  .right-actions {
    justify-content: center;
    padding-top: 20px;
    padding-bottom: 20px;
    overflow-x: auto;
    flex-wrap: nowrap;
  }

  .right-actions .rapple,
  .right-actions .button-accent-color{
    display: inline-flex;
    align-items: center;
    padding: 6px 22px;
    border-radius: 999px;
    white-space: nowrap;
    border: 2px solid hsl(var(--accent-color-hls));
  }

  .phone-icon,
  .map-icon {
    font-size: 1rem;
    color: hsl(var(--accent-color-hls) / .8);
  }

  .phone-text {
    font-size: 13.5px;
    font-weight: 500;
    color: hsl(var(--accent-color-hls) / .8);
  }

  .cont-text {
    font-size: 13.5px;
    font-weight: 500;
    color: hsl(var(--primary-foreground-color-hls) / .8);
  }
}
/* XX-Large devices (larger desktops, 1400px and up)*/
@media (min-width: 1400px) { 
  /* Logo */
  .logo-img {
    height: 64px;
    transition: all 0.35s ease;
  }
  .navbar.navbar-shrink .logo-img {
    height: 54px;
  }
}
/* MOBILE */
@media (max-width: 767px) {

    .video-banner {
        padding-top: 20px;
    }

    .video-banner-title {
        font-size: 2.3rem;
    }

    .video-banner-subtitle {
        font-size: 1.25rem;
    }

    .video-banner-text {
        font-size: 1rem;
    }

    .stat-number {
        font-size: 1.4rem;
    }

    .quote-text {
        font-size: 1rem;
    }
}





 



