html, body {
  overflow-x: hidden;
  max-width: 100%;
}
body {
  position: relative;
  overflow-y: auto;
}
* {
  box-sizing: border-box;
}

:root {
    --brand-yellow:#f3c613;
    --nav-height: 76px;
  }

  /* Topbar */
  .topbar {
    background: skyblue;
    font-size: 1rem;
    line-height: 1;
  }

  .topbar .item+.item {
    position: relative;
    padding-left: 1rem;
    margin-left: 1rem;
    padding-top: 4px;
    padding-bottom: 4px;
  }

  .topbar .item+.item:before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 1px;
    height: 18px;
    background: rgba(0, 0, 0, 0.2);
    transform: translateY(-50%);
  }

  /* Navbar */
  .navbar-brand img {
    height: 75px;
    width: 120px;
  }

  .navbar.sticky-top {
    
    position: sticky !important;
    top: 0;
    z-index: 999;
    background: #fff;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.04);
  }

  .navbar-nav .nav-link {
    font-weight: 600;
    color: #0b0b0b;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .navbar-nav .nav-link:hover,
  .navbar-nav .nav-link:focus,
  .navbar-nav .nav-link.active {
    color: #0a58ca;
  }

  /* Hero Carousel */
  .hero {
    position: relative;
  }

  .hero .carousel,
  .hero .carousel-inner,
  .hero .carousel-item {
    height: calc(100vh - var(--nav-height) - 44px);
    min-height: 560px;
  }

  .hero .carousel-item {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
  }

  .hero .carousel-item::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
        rgba(0, 0, 0, 0.5),
        rgba(0, 0, 0, 0.55));
  }

  /* Hero caption/content */
  .hero .container {
    position: relative;
    z-index: 2;
  }

  .eyebrow {
    color: #fff;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: 0.2px;
  }

  .display-title {
    color: #fff;
    font-weight: 800;
    line-height: 1.1;
    text-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
  }

  /* Smooth slide-up/down animations for content */
  .hero-caption {
    will-change: transform, opacity;
    transition: transform 600ms ease, opacity 600ms ease;
    transform: translateY(14px);
    opacity: 0;
  }

  .carousel-item.active .hero-caption {
    transform: translateY(0);
    opacity: 1;
  }

  .hero-caption.slide-up {
    transform: translateY(18px);
  }

  .hero-caption.slide-down {
    transform: translateY(-18px);
  }

  .social a {
    color: #0b0b0b;

  }

  .social a:hover {
    opacity: 1;
  }

  /* Responsive tweaks */
  @media (max-width: 991.98px) {
    .topbar {
      display: none;
    }

    .hero .carousel,
    .hero .carousel-inner,
    .hero .carousel-item {
      height: calc(100vh - var(--nav-height) - 64px);
    }

    .display-title {
      font-size: 2rem !important;
    }

    .navbar-collapse {
      background: white;
      padding: 1rem;
    }
  }

  @media (prefers-reduced-motion: reduce) {
    .hero-caption {
      transition: none;
    }
  }

  .about-wrap {
    position: relative;
    background: #fff;
  }

  .about-media {
    border: 18px solid var(--brand-yellow);
    border-radius: 18px;
    overflow: hidden;
    position: relative;
  }

  /* Blue chevrons on sides like the reference */
  .about-media::before,
  .about-media::after {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 28px;
    height: 120px;
    background: var(--brand-blue);
    clip-path: polygon(0 0, 100% 25%, 100% 75%, 0 100%);
    z-index: 2;
  }

  .about-media::before {
    left: -14px;
    transform: translateY(-50%) scaleX(-1);
  }

  .about-media::after {
    right: -14px;
  }

  .about-img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
  }

  .about-title {
    color: var(--brand-blue);
    font-weight: 800;
    line-height: 1.2;
  }

  /* Footer */
  .site-footer {
    color: #e8eef7;
    position: relative;
    background: #000000;
  }

  .site-footer .bg-img {
    position: absolute;
    inset: 0;
    background-image: url("");
    background-size: cover;
    background-position: center;
    filter: brightness(.35);
    z-index: 0;
  }

  .site-footer .container {
    position: relative;
    z-index: 1;
  }

  .site-footer h5 {
    font-weight: 800;
    color: #fff;
  }

  .site-footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .site-footer li {
    margin: .5rem 0;
  }

  .site-footer .bi-check2-circle {
    color: var(--brand-yellow);
    margin-right: .5rem;
  }

  .contact-line {
    display: flex;
    align-items: center;
    gap: .65rem;
    padding: .6rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, .25);
  }

  /* Bottom blue bar */
  .footer-base {
    background: var(--brand-blue);
    color: #cfe0ff;
  }

  .social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    margin: 0 .35rem;
    background: var(--brand-yellow);
    color: #1b1b1b;
    border-radius: 50%;
    transition: transform .15s ease;
  }

  .social a:hover {
    transform: translateY(-2px);
  }

  .back-top {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: var(--brand-yellow);
    color: #1b1b1b;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
  }

  /* Helpers */
  .section-pad {
    padding: min(9vw, 5rem) 0;
  }

  .muted {
    opacity: .9;
  }