
      :root {
        --brand-blue: #005bbb;
        --hover: #cfe2ff;
        --font: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue",
          Arial, "Noto Sans", "Liberation Sans", "Apple Color Emoji",
          "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
      }
      html {
        scroll-behavior: smooth;
      }
      body {
        font-family: var(--font);
        margin: 0;
        padding: 0;
      }
      .container {
        max-width: 1200px !important;
      }
      /* Sticky header wrapper */
      .header-wrapper {
        position: sticky;
        top: 0;
        z-index: 1030;
        background: #fff;
      }

      /* Top utility bar */
      .topbar {
        background: #fff;
        border-bottom: 1px solid rgba(0, 0, 0, 0.08);
        font-size: 0.95rem;
        padding: 0.5rem 0;
      }
      .brand {
        color: #000;
        font-weight: 700;
        text-decoration: none;
        font-size: 1.395rem;
      }
      .topbar a {
        color: #0b0b0b;
        text-decoration: none;
      }
      .topbar a:hover {
        text-decoration: underline;
      }
      .topbar .contact-item {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        line-height: 1;
      }

      /* Main blue navbar */
      .mainnav {
        background: var(--brand-blue);
        padding: 0;
      }
      .mainnav .nav-link {
        position: relative;
        color: #fff;
        text-transform: uppercase;
        letter-spacing: 0.02em;
        padding: 0.9rem 1rem;
        line-height: 1.25;
        font-weight: 500;
      }
      .mainnav .nav-link:hover,
      .mainnav .nav-link:focus {
        color: var(--hover);
      }

      /* Active link white underline */
      .mainnav .nav-link.active {
        color: #fff;
      }
      .mainnav .nav-link.active::after {
        content: "";
        position: absolute;
        left: 1rem;
        right: 1rem;
        bottom: 0;
        height: 3px;
        background: #fff;
      }

      /* Remove padding from first nav-link so HOME aligns with ShieldXX text */
      .mainnav .nav-link:first-child {
        padding-left: 0;
      }
      .mainnav .nav-link:first-child.active::after {
        left: 0;
      }

      /* Keep items vertically centered */
      .navbar,
      .mainnav .container {
        align-items: center;
      }

      /* MOBILE ONLY RULES */
      @media (max-width: 991.98px) {
        /* Hide contact info on mobile */
        .topbar .contact-item {
          display: none !important;
        }

        /* Hide the blue navbar completely on mobile */
        .mainnav {
          display: none;
        }

        /* Show topbar with ShieldXX left and hamburger right */
        .topbar {
          display: block;
        }
        .topbar .container {
          display: flex;
          align-items: center;
          justify-content: space-between;
        }

        /* Mobile hamburger toggler */
        .mobile-toggler {
          display: inline-block;
          background: transparent;
          border: 1px solid rgba(0, 0, 0, 0.2);
          padding: 0.5rem 0.75rem;
          cursor: pointer;
          border-radius: 0.25rem;
        }
        .mobile-toggler .navbar-toggler-icon {
          display: inline-block;
          width: 1.5em;
          height: 1.5em;
          background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 0, 0, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
          background-repeat: no-repeat;
          background-position: center;
          background-size: 100%;
        }

        /* Mobile collapsed menu (white background) */
        .mobile-menu {
          background: #fff;
          border-bottom: 1px solid rgba(0, 0, 0, 0.08);
        }
        .mobile-menu .nav-link {
          color: #000;
          text-transform: uppercase;
          letter-spacing: 0.02em;
          padding: 0.75rem 1rem;
          display: block;
          text-decoration: none;
        }
        .mobile-menu .nav-link:hover,
        .mobile-menu .nav-link.active {
          background: rgba(0, 91, 187, 0.1);
          color: var(--brand-blue);
        }
      }

      /* DESKTOP ONLY: hide mobile toggler */
      @media (min-width: 992px) {
        .mobile-toggler {
          display: none;
        }
        .mobile-menu {
          display: none;
        }
      }

      /* Demo sections */
      section {
        min-height: 100vh;
        padding: 4rem 0;
        display: flex;
        align-items: center;
        justify-content: center;
      }
      section h2 {
        font-size: 3rem;
        font-weight: 700;
      }
      #home {
        background: #f8f9fa;
      }
      #about {
        background: #fff;
      }
      #services {
        background: #dee2e6;
      }
      #team {
        background: white;
      }
      #contact {
        background: #f5f5f5;
      }
      #contact2 {
        background: #6c757d;
        color: #fff;
      }
      /* Hero section with parallax */
      .hero-section {
        position: relative;
        min-height: 100vh;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        overflow: hidden;
      }

      .hero-background {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 120%;
        background-image: url("img/hero-image.jpeg");
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        z-index: 0;
        transform: translateZ(0);
        will-change: transform;
        filter: brightness(0.7);
      }

      .hero-content {
        position: relative;
        z-index: 1;
        width: 100%;
        padding: 4rem 0;
      }

      .hero-title {
        font-size: 4.5rem;
        font-weight: 700;
        color: #fff;
        margin-bottom: 1.5rem;
        line-height: 1.2;
        text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
        text-align: left;
      }

      .hero-subtitle {
        font-size: 1.5rem;
        color: #fff;
        margin-bottom: 2.5rem;
        font-weight: 400;
        text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.3);
        text-align: left;
      }

      .btn-hero {
        display: inline-block;
        padding: 1rem 2.5rem;
        background: var(--brand-blue);
        color: #fff;
        text-decoration: none;
        text-transform: uppercase;
        font-weight: 600;
        letter-spacing: 0.05em;
        border-radius: 0.25rem;
        transition: all 0.3s ease;
        box-shadow: 0 4px 12px rgba(0, 91, 187, 0.3);
      }

      .btn-hero:hover {
        background: #004494;
        color: #fff;
        transform: translateY(-2px);
        box-shadow: 0 6px 16px rgba(0, 91, 187, 0.4);
      }

      /* Responsive typography */
      @media (max-width: 991.98px) {
        .hero-title {
          font-size: 3.5rem;
        }
        .hero-subtitle {
          font-size: 1.35rem;
        }
      }

      @media (max-width: 767.98px) {
        .hero-title {
          font-size: 2.75rem;
        }
        .hero-subtitle {
          font-size: 1.2rem;
        }
        .btn-hero {
          padding: 0.875rem 2rem;
          font-size: 0.95rem;
        }
      }

      @media (max-width: 575.98px) {
        .hero-title {
          font-size: 2.25rem;
        }
        .hero-subtitle {
          font-size: 1.1rem;
        }
        .hero-content {
          padding: 3rem 0;
        }
      }
      /* Hero section with parallax */
      .hero-section {
        position: relative;
        min-height: 100vh;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        overflow: hidden;
      }

      .hero-content {
        position: relative;
        z-index: 1;
        width: 100%;
        padding: 4rem 0;
      }

      .hero-title {
        font-size: 4.5rem;
        font-weight: 700;
        color: #fff;
        margin-bottom: 1.5rem;
        line-height: 1.2;
        text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
      }

      .hero-subtitle {
        font-size: 1.5rem;
        color: #fff;
        margin-bottom: 2.5rem;
        font-weight: 400;
        text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.3);
      }

      .hero-button-wrapper {
        text-align: left;
      }

      .btn-hero {
        display: inline-block;
        padding: 1rem 2.5rem;
        background: var(--brand-blue);
        color: #fff;
        text-decoration: none;
        text-transform: uppercase;
        font-weight: 600;
        letter-spacing: 0.05em;
        border-radius: 0.25rem;
        transition: all 0.3s ease;
        box-shadow: 0 4px 12px rgba(0, 91, 187, 0.3);
      }

      .btn-hero:hover {
        background: #004494;
        color: #fff;
        transform: translateY(-2px);
        box-shadow: 0 6px 16px rgba(0, 91, 187, 0.4);
      }

      /* Responsive typography */
      @media (max-width: 991.98px) {
        .hero-title {
          font-size: 3.5rem;
        }
        .hero-subtitle {
          font-size: 1.35rem;
        }
      }

      @media (max-width: 767.98px) {
        .hero-title {
          font-size: 2.75rem;
        }
        .hero-subtitle {
          font-size: 1.2rem;
        }
        .btn-hero {
          padding: 0.875rem 2rem;
          font-size: 0.95rem;
        }
      }

      @media (max-width: 575.98px) {
        .hero-title {
          font-size: 2.25rem;
        }
        .hero-subtitle {
          font-size: 1.1rem;
        }
        .hero-content {
          padding: 3rem 0;
        }
      }

      /* About section */
      .about-section {
        background: #fff;
        padding: 5rem 0;
        min-height: auto;
      }

      .about-content {
        padding-right: 2rem;
      }

      .about-title {
        font-size: 2.5rem;
        font-weight: 700;
        color: #000;
        margin-bottom: 1rem;
        line-height: 1.3;
      }

      .about-subtitle {
        font-size: 1.5rem;
        font-weight: 400;
        color: #333;
        margin-bottom: 1.5rem;
        line-height: 1.4;
      }

      .about-text {
        font-size: 1.1rem;
        color: #555;
        line-height: 1.8;
        margin-bottom: 2rem;
      }

      .btn-about {
        display: inline-block;
        padding: 1rem 2.5rem;
        background: var(--brand-blue);
        color: #fff;
        text-decoration: none;
        text-transform: uppercase;
        font-weight: 600;
        letter-spacing: 0.05em;
        border-radius: 0.25rem;
        transition: all 0.3s ease;
      }

      .btn-about:hover {
        background: #004494;
        color: #fff;
        transform: translateY(-2px);
      }

      .about-contact-info {
        display: flex;
        align-items: center;
        gap: 2rem;
        margin-top: 2rem;
        padding-top: 2rem;
        border-top: 1px solid rgba(0, 0, 0, 0.1);
      }

      .about-contact-link {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        font-size: 1.1rem;
        color: #000;
        text-decoration: none;
        font-weight: 400;
      }

      .about-contact-link:hover {
        color: var(--brand-blue);
        text-decoration: underline;
      }

      .about-contact-link i {
        font-size: 1.2rem;
        color: var(--brand-blue);
      }

      .about-image-wrapper {
        position: relative;
        overflow: hidden;
        border-radius: 0.5rem;
      }

      .about-image {
        width: 100%;
        height: auto;
        display: block;
        border-radius: 0.5rem;
      }

      /* Responsive */
      @media (max-width: 991.98px) {
        .about-content {
          padding-right: 0;
          margin-bottom: 2rem;
        }

        .about-title {
          font-size: 2rem;
        }

        .about-subtitle {
          font-size: 1.3rem;
        }

        .about-text {
          font-size: 1rem;
        }
      }

      @media (max-width: 767.98px) {
        .about-section {
          padding: 3rem 0;
        }

        .about-title {
          font-size: 1.75rem;
        }

        .about-subtitle {
          font-size: 1.2rem;
        }

        .about-contact-info {
          flex-direction: column;
          align-items: flex-start;
          gap: 1rem;
        }
      }
      .services-section {
        background: #e8e8e8;
        padding: 5rem 0;
      }

      .services-main-title {
        font-size: 2.5rem;
        font-weight: 700;
        color: #005bbb;
        margin-bottom: 1rem;
      }

      .services-main-subtitle {
        font-size: 1.5rem;
        font-weight: 400;
        color: #555;
      }

      .service-card {
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        cursor: pointer;
      }

      .service-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
      }

      .card-decorative-bar {
        height: 8px;
        background: #999;
        width: 100%;
      }

      .card-image-wrapper {
        position: relative;
        height: 500px;
        overflow: hidden;
      }

      .card-bg-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
      }

      .card-content-overlay {
        position: absolute;
        top: 8px;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.97);
        padding: 2.5rem 2rem;
        z-index: 2;
      }

      .card-overlay-bottom {
        top: auto;
        bottom: 0;
      }

      .card-title {
        font-size: 1.5rem;
        font-weight: 700;
        color: #000;
        margin-bottom: 1rem;
        line-height: 1.3;
      }

      .card-text {
        font-size: 1rem;
        color: #666;
        margin-bottom: 1.5rem;
        line-height: 1.6;
      }

      .card-btn {
        display: inline-block;
        padding: 0.75rem 2rem;
        background: transparent;
        color: #000;
        border: 1px solid #000;
        text-decoration: none;
        transition: all 0.3s ease;
      }

      .card-btn:hover {
        background: #000;
        color: #fff;
      }

      @media (max-width: 991.98px) {
        .card-image-wrapper {
          height: 450px;
        }
      }

      @media (max-width: 767.98px) {
        .services-section {
          padding: 3rem 0;
        }
        .card-image-wrapper {
          height: 400px;
        }
        .services-main-title {
          font-size: 1.75rem;
        }
      }
      .team-section {
        background: #fff;
        padding: 5rem 0;
      }

      .team-title {
        font-size: 2.5rem;
        font-weight: 700;
        color: #005bbb;
        margin-bottom: 0.5rem;
      }

      .team-subtitle {
        font-size: 1.5rem;
        font-weight: 400;
        color: #333;
      }

      .team-member {
        background: #fff;
      }

      .member-image {
        width: 100%;
        height: auto;
        margin-bottom: 1.5rem;
        background: #fff;
      }

      .member-image img {
        width: 100%;
        height: auto;
        display: block;
        object-fit: contain;
      }

      .member-name {
        font-size: 1.25rem;
        font-weight: 700;
        color: #000;
        margin-bottom: 0.25rem;
      }

      .member-title {
        font-size: 1rem;
        font-weight: 400;
        color: #666;
        margin-bottom: 1rem;
      }

      .member-desc {
        font-size: 1rem;
        color: #555;
        line-height: 1.6;
        margin-bottom: 0.75rem;
      }

      .member-link {
        font-size: 0.95rem;
        color: #999;
        text-decoration: underline;
      }

      .member-link:hover {
        color: #005bbb;
      }

      @media (max-width: 991.98px) {
        .team-title {
          font-size: 2rem;
        }
      }

      @media (max-width: 767.98px) {
        .team-section {
          padding: 3rem 0;
        }
        .team-title {
          font-size: 1.75rem;
        }
      }
      .contact-section {
        background: #fff;
        padding: 5rem 0;
      }

      .contact-title {
        font-size: 2.5rem;
        font-weight: 700;
        color: #005bbb;
        margin-bottom: 0.5rem;
      }

      .contact-subtitle {
        font-size: 1.25rem;
        color: #333;
        margin-bottom: 2rem;
      }

      .contact-form .form-label {
        font-weight: 400;
        color: #000;
        margin-bottom: 0.5rem;
      }

      .contact-form .form-control {
        border: 1px solid #ccc;
        padding: 0.75rem 1rem;
        border-radius: 2px;
      }

      .contact-form .form-check-label {
        font-size: 0.95rem;
        color: #333;
      }

      .contact-form .btn-primary {
        background: #005bbb;
        border: none;
        padding: 1rem;
        font-weight: 600;
        letter-spacing: 0.05em;
      }

      .contact-form .btn-primary:hover {
        background: #004494;
      }

      /* Info boxes */
      .info-box {
        background: #f5f5f5;
        padding: 1.5rem;
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
      }

      .map-link {
        display: block;
        color: #005bbb;
        font-size: 0.9rem;
        margin-bottom: 0.75rem;
        text-decoration: none;
      }

      .map-link:hover {
        text-decoration: underline;
      }

      .map-container {
        margin-bottom: 1rem;
      }

      .address-text {
        font-size: 0.95rem;
        color: #555;
        line-height: 1.6;
      }

      .info-box-title {
        font-size: 1.1rem;
        font-weight: 700;
        color: #000;
        margin-bottom: 1rem;
      }

      .info-row {
        display: flex;
        align-items: flex-start;
        gap: 0.75rem;
        margin-bottom: 0.75rem;
        font-size: 0.95rem;
      }

      .info-row:last-child {
        margin-bottom: 0;
      }

      .info-row i {
        color: #666;
        margin-top: 0.15rem;
      }

      .info-row a {
        color: #555;
        text-decoration: none;
      }

      .info-row a:hover {
        color: #005bbb;
        text-decoration: underline;
      }

      .hours-grid {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
      }

      .hours-row {
        display: flex;
        justify-content: space-between;
        font-size: 0.95rem;
        color: #555;
      }

      @media (max-width: 991.98px) {
        .contact-title {
          font-size: 2rem;
        }
      }

      @media (max-width: 767.98px) {
        .contact-section {
          padding: 3rem 0;
        }
        .contact-title {
          font-size: 1.75rem;
        }
      }
      .contact-section {
        background: #f0f0f0;
        padding: 5rem 0;
      }

      .contact-title {
        font-size: 2.5rem;
        font-weight: 700;
        color: #005bbb;
        margin-bottom: 0.75rem;
      }

      .contact-subtitle {
        font-size: 1.25rem;
        color: #333;
        margin-bottom: 2rem;
      }

      /* Form styling */
      .contact-form .form-label {
        font-weight: 400;
        color: #000;
        font-size: 1rem;
        margin-bottom: 0.5rem;
      }

      .contact-form .form-control {
        border: 1px solid #ccc;
        padding: 0.75rem 1rem;
        border-radius: 2px;
        background: #fff;
        font-size: 1rem;
      }

      .contact-form .form-control:focus {
        border-color: #005bbb;
        box-shadow: none;
      }

      .contact-form .form-check-label {
        font-size: 0.9rem;
        color: #555;
        line-height: 1.5;
      }

      .contact-form .btn-primary {
        background: #005bbb;
        border: none;
        padding: 1rem;
        font-weight: 700;
        letter-spacing: 0.05em;
        font-size: 1rem;
        border-radius: 2px;
      }

      .contact-form .btn-primary:hover {
        background: #004494;
      }

      /* Map container */
      .map-container {
        width: 100%;
        height: 300px;
        overflow: hidden;
        background: #fff;
      }

      .map-container iframe {
        display: block;
      }

      /* Info boxes */
      .info-box {
        padding: 1.5rem;
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
      }

      .info-box-title {
        font-size: 1.1rem;
        font-weight: 700;
        color: #000;
        margin-bottom: 1rem;
      }

      .info-content {
        font-size: 0.95rem;
      }

      .info-item {
        display: flex;
        align-items: flex-start;
        gap: 0.5rem;
        margin-bottom: 0.75rem;
        line-height: 1.6;
      }

      .info-item i {
        color: #666;
        font-size: 1rem;
        margin-top: 0.2rem;
        flex-shrink: 0;
      }

      .info-item a {
        color: #666;
        text-decoration: underline;
      }

      .info-item a:hover {
        color: #005bbb;
      }

      /* Hours table */
      .hours-table {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
      }

      .hours-row {
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-size: 0.95rem;
        line-height: 1.5;
      }

      .day-name {
        color: #333;
        font-weight: 400;
      }

      .day-time {
        color: #666;
      }

      /* Responsive */
      @media (max-width: 991.98px) {
        .contact-title {
          font-size: 2rem;
        }

        .map-container {
          height: 250px;
        }
      }

      @media (max-width: 767.98px) {
        .contact-section {
          padding: 3rem 0;
        }

        .contact-title {
          font-size: 1.75rem;
        }

        .map-container {
          height: 220px;
        }
      }
      .footer {
        background: #005bbb;
        padding: 2.5rem 0;
        color: #fff;
      }

      .footer-brand {
        font-size: 1.5rem;
        font-weight: 700;
        color: #fff;
        margin: 0;
      }

      .footer-links {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        justify-content: center;
        gap: 2rem;
        flex-wrap: wrap;
      }

      .footer-links li {
        margin: 0;
      }

      .footer-links a {
        color: #fff;
        text-decoration: none;
        font-size: 0.9rem;
        font-weight: 500;
        letter-spacing: 0.05em;
      }

      .footer-links a:hover {
        text-decoration: underline;
      }

      .footer-credit {
        margin: 0;
        font-size: 0.9rem;
        color: #fff;
      }

      .footer-credit a {
        color: #fff;
        text-decoration: underline;
      }

      .footer-credit a:hover {
        text-decoration: none;
      }

      @media (max-width: 767.98px) {
        .footer {
          padding: 2rem 0;
          text-align: center;
        }

        .footer-links {
          flex-direction: column;
          gap: 1rem;
        }

        .col-md-4.text-md-end {
          text-align: center !important;
        }
      }
    