
    /* Basic styling to approximate the screenshots, updated for full-viewport hero and sticky navbar behavior */
    :root {
      --hero-height: 80vh;
      /* full first view */
      --font-heading: 'Montserrat', sans-serif;
      --font-body: 'Poppins', sans-serif;
      --topbar-height: 56px;
      --nav-total-height: 120px;
    }

    * {
      box-sizing: border-box;
    }

    body {
      color: #222;
      margin: 0;
      transition: padding-top .25s ease;
    }

    .offcanvas .nav-link.active,
    .offcanvas .h6.active {
      color: var(--bs-primary) !important;
    }

    /* Topbar and navbar overlay initial state (transparent over hero) */
    .overlay-topbar,
    .overlay-navbar {
      position: fixed;
      left: 0;
      right: 0;
      z-index: 40;
      transition: background-color .35s ease, box-shadow .35s ease, backdrop-filter .35s ease;
    }

    /* specific topbar style */
    .topbar.overlay-topbar {
      top: 0;
      background: transparent;
      padding-top: .4rem;
      padding-bottom: .4rem;
    }

    /* Navbar overlay sits below topbar using a CSS variable set by JS */
    .overlay-navbar {
      top: var(--topbar-height, 56px);
      background: transparent;
    }

    /* Hide navbar on mobile, only show offcanvas menu */
    @media (max-width: 767.98px) {
      .overlay-navbar {
        display: none;
      }
    }

    /* When scrolled, pin to top and give opaque background & shadow */
    body.nav-scrolled .overlay-topbar,
    body.nav-scrolled .overlay-navbar {
      position: fixed;
      left: 0;
      right: 0;
      background: #fff !important;
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
      backdrop-filter: blur(4px);
    }

    /* Ensure navbar sits below topbar when pinned */
    body.nav-scrolled .overlay-topbar {
      top: 0;
    }

    body.nav-scrolled .overlay-navbar {
      top: var(--topbar-height);
    }

    /* Apply the equivalent padding-top to body so content doesn't jump (set dynamically too) */
    body.nav-scrolled {
      padding-top: var(--nav-total-height);
    }

    /* Navbar links (ensure good contrast when pinned) */
    /* Default overlaying nav: dark links for better contrast on white */
    .overlay-navbar .nav-link {
      color: rgba(0, 0, 0, 0.85);
      font-weight: 500;
    }

    .overlay-navbar .nav-link:hover {
      color: var(--bs-primary);
    }

    /* When nav is scrolled (pinned) use dark links for contrast on white background */
    .overlay-navbar .nav-link.active,
    body.nav-scrolled .overlay-navbar .nav-link.active {
      color: var(--bs-primary);
    }

    .overlay-navbar .nav-link:hover,
    .overlay-navbar .nav-link.active:hover {
      color: var(--bs-primary);
    }

    /* topbar contact link colors */
    .topbar-contact {
      color: rgba(0, 0, 0, 0.85);
      transition: color .25s ease;
    }

    .topbar-email {
      color: rgba(0, 0, 0, 0.85);
      transition: color .25s ease;
      text-decoration: none;
    }

    body.nav-scrolled .topbar-contact {
      color: rgba(0, 0, 0, 0.85);
    }

    body.nav-scrolled .topbar-email {
      color: rgba(0, 0, 0, 0.85);
    }

    /* Social icons in topbar */
    .topbar-social a {
      color: rgba(0, 0, 0, 0.7);
      font-size: 1.25rem;
      transition: color .25s ease;
    }

    .topbar-social a:hover {
      color: var(--bs-primary);
    }

    body.nav-scrolled .topbar-social a {
      color: rgba(0, 0, 0, 0.7);
    }

    body.nav-scrolled .topbar-social a:hover {
      color: var(--bs-primary);
    }

    /* Hide default bootstrap caret; we use FontAwesome symbols */
    .navbar .dropdown-toggle::after,
    #mainNavbar .dropdown-toggle::after {
      display: none !important;
    }

    /* Mobile hamburger button */
    .mobile-toggle:focus,
    .btn-close:focus {
      outline: none !important;
      box-shadow: none !important;
    }

    /* Match close button size to hamburger and add animation */
    .btn-close {
      width: 30px !important;
      height: 30px !important;
      padding: 0.5rem !important;
      background-size: 1rem !important;
      transition: transform 0.3s ease, opacity 0.2s ease !important;
      opacity: 0.8;
    }

    .btn-close:hover {
      transform: rotate(90deg) scale(1.1);
      opacity: 1;
    }

    .mobile-toggle {
      color: #000;
      position: relative;
      transition: color .25s ease;
      width: 30px !important;
      height: 24px !important;
      padding: 0 !important;
      border: none !important;
      background: transparent !important;
    }

    body.nav-scrolled .mobile-toggle {
      color: #000;
    }

    /* Animated hamburger icon */
    .hamburger-icon {
      width: 28px;
      height: 20px;
      position: relative;
      display: block !important;
      margin: 0 auto;
    }

    .hamburger-icon span {
      display: block !important;
      position: absolute;
      height: 3px;
      width: 100%;
      background: currentColor;
      border-radius: 2px;
      opacity: 1;
      left: 0;
      transform: rotate(0deg);
      transition: .25s ease-in-out;
    }

    .hamburger-icon span:nth-child(1) {
      top: 0px;
    }

    .hamburger-icon span:nth-child(2) {
      top: 9px;
    }

    .hamburger-icon span:nth-child(3) {
      top: 18px;
    }

    /* Transform to X when menu is open */
    .mobile-toggle[aria-expanded="true"] .hamburger-icon span:nth-child(1) {
      top: 9px;
      transform: rotate(135deg);
    }

    .mobile-toggle[aria-expanded="true"] .hamburger-icon span:nth-child(2) {
      opacity: 0;
      left: -60px;
    }

    .mobile-toggle[aria-expanded="true"] .hamburger-icon span:nth-child(3) {
      top: 9px;
      transform: rotate(-135deg);
    }

    /* HERO */
    .hero-wrap {
      position: relative;
      height: var(--hero-height);
      overflow: hidden;
      display: block;
    }

    .hero-video {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 0;
      filter: grayscale(80%) contrast(.9) brightness(.45);
    }

    /* overlay to darken video */
    .hero-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0.6) 100%);
      z-index: 1;
    }

    /* content inside hero */
    .hero-content {
      position: relative;
      z-index: 2;
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding-top: var(--nav-total-height);
    }

    .hero-title {
      font-weight: 800;
      letter-spacing: -0.5px;
      line-height: 1.1;
      color: #fff;
      font-size: clamp(1.4rem, 4.5vw, 2.4rem);
      margin-bottom: 1rem;
      text-align: center;
      white-space: nowrap;
    }

    /* Standard wrap for mobile */
    @media (max-width: 991.98px) {
      .hero-title {
        white-space: normal;
      }
    }

    .hero-lead {
      max-width: 70ch;
      color: rgba(255, 255, 255, 0.9);
      font-size: clamp(1.1rem, 2.5vw, 1.4rem);
      font-weight: 500;
      text-align: center;
      margin-left: auto;
      margin-right: auto;
      line-height: 1.5;
    }

    /* CTA button uses Bootstrap primary */
    .dropdown-item.active, 
    .dropdown-item:active {
      background-color: var(--bs-primary);
      color: #fff;
    }

    .btn-primary {
      font-weight: 700;
    }

    .btn-primary:hover {
      filter: brightness(1.1);
    }

    /* Footer */
    .footer {
      font-size: .95rem;
    }

    .footer-links a {
      color: rgba(255, 255, 255, 0.85);
      text-decoration: none;
    }

    .footer-links a:hover {
      color: var(--bs-primary);
    }

    /* google circle look */
    .google-circle img {
      width: 110px;
      height: 110px;
      object-fit: cover;
      border-radius: 9999px;
    }

    /* Responsive tweaks */
    @media (max-width: 991.98px) {
      .hero-wrap {
        height: 72vh;
      }

      .topbar .container {
        gap: .5rem;
      }

      .overlay-navbar {
        top: calc(var(--topbar-height) - 8px);
      }
    /* Flickity Footer Slider Customization */
    .featured-slider {
      background: transparent;
    }
    .featured-slider .flickity-page-dots {
      bottom: -15px;
    }
    .featured-slider .flickity-page-dots .dot {
      width: 6px;
      height: 6px;
      margin: 0 4px;
      background: #fff;
      opacity: 0.3;
      transition: opacity 0.3s ease;
    }
    .featured-slider .flickity-page-dots .dot.is-selected {
      opacity: 1;
      background: var(--bs-primary);
    }
    .featured-slider .flickity-prev-next-button {
      width: 12px;
      height: 12px;
      background: rgba(255, 255, 255, 0.2);
      border-radius: 2px;
      transition: background 0.3s ease;
    }
    .featured-slider .flickity-prev-next-button:hover {
      background: var(--bs-primary);
    }
    .featured-slider .flickity-prev-next-button .flickity-button-icon {
      fill: #fff;
      width: 60%;
      height: 60%;
      left: 20%;
      top: 20%;
    }
    .featured-slider .flickity-prev-next-button.previous { left: 0; }
    .featured-slider .flickity-prev-next-button.next { right: 0; }

      .topbar-social {
        display: none !important;
      }
    }

    /* Utilities */

    @media (max-width: 575.98px) {
      .hero-title {
        font-size: 2.4rem;
        line-height: 1.02;
      }

      .hero-lead {
        display: none;
      }
    }