
.fa-regular, .far {
    font-family: "Font Awesome 6 Free" !important;
    font-weight: 400 !important;
    font-display: swap;
}

    @media (max-width: 768px) {
        .display-none{
display: none;
        }
    }

    .site-header.is-sticky {
        position: fixed;
        top: 0;
        background: #1B0901; /* Dark Background */
        box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
        padding: 0;
        animation: slideDown 0.4s ease-in-out;
    }

    .site-header.is-sticky .header-wrapper {
        background: transparent;
        backdrop-filter: none;
        padding: 12px 0; /* Slimmer padding on scroll */
        border-radius: 0;
    }

    .nav-link:hover {
        color: lightgreen;
    }

    .nav-item:hover .sub-menu {
        opacity: 1;
        visibility: visible;
        top: 100%;
        transform: translateY(0);
    }

    .sub-menu-link:hover {
        /* color: #D11207; */
        padding-left: 26px;
    }

    .btn-quote {
        display: none; /* Hidden on mobile */
        align-items: center;
        background: #D11207;
        padding: 14px 24px;
        color: #ffffff;
        font-weight: 700;
        font-size: 16px;
        text-decoration: none;
        position: relative;
        overflow: hidden;
        z-index: 1;
        transition: 0.3s;
        border-radius: 4px;
    }

    .btn-quote::after {
        position: absolute;
        content: "";
        left: 0;
        top: 0;
        height: 100%;
        width: 100%;
        background: #333333;
        z-index: -1;
        transform: scaleX(0);
        transform-origin: right;
        transition: transform 0.3s ease;
    }

    .btn-quote:hover::after {
        transform: scaleX(1);
        transform-origin: left;
    }

    .btn-icon-rotate {
        margin-left: 8px;
        display: inline-block;
        transform: rotate(-45deg);
        transition: transform 0.3s ease;
    }

    .btn-quote:hover .btn-icon-rotate {
        transform: rotate(0deg);
    }

    .offcanvas-menu.is-active {
        transform: translateX(0);
        opacity: 1;
        visibility: visible;
    }

    .close-btn:hover {
        color: #D11207;
    }

    .mobile-sub-link:hover {
        color: #D11207;
    }

    .offcanvas-title {
        font-size: 24px;
        color: #02000E;
        margin-bottom: 20px;
        margin-top: 0;
    }

    .contact-item {
        display: flex;
        align-items: flex-start;
        margin-bottom: 20px;
    }

    .contact-icon {
        width: 40px;
        height: 40px;
        border: 1px solid #eeeeee;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #D11207;
        flex-shrink: 0;
        margin-right: 15px;
    }

    .contact-text {
        margin: 0;
        font-size: 15px;
    }

    .contact-link {
        color: #0C0504;
        text-decoration: none;
        transition: 0.3s;
    }

    .contact-link:hover {
        color: #D11207;
    }

    .social-list {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
    }

    .social-item {
        margin-right: 10px;
    }

    .social-link:hover {
        background: #D11207;
        color: #ffffff;
    }

    .menu-overlay.is-active {
        opacity: 1;
        visibility: visible;
    }

    @media (min-width: 992px) {

        .btn-quote {
            display: flex;
        }
    }

    @media (max-width: 991px) {
        .site-header.is-sticky {
            background: #1B0901;
            position: fixed;
        }
    }

    .speed-lines::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 4px;
    width: 15px;
    height: 2px;
    background: #cbd5e1;
    border-radius: 2px;
  }

    .speed-lines::after {
    content: '';
    position: absolute;
    top: 6px;
    left: 2px;
    width: 8px;
    height: 2px;
    background: #cbd5e1;
    border-radius: 2px;
  }

    .premium-truck-btn:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08); /* Lift effect */
    border-color: #cbd5e1;
    transform: translateY(-2px);
  }

    .premium-truck-btn:hover .btn-text {
    transform: translateY(-30px);
    opacity: 0;
  }

    .premium-truck-btn:hover .truck-icon-wrapper {
    transform: translate(-50%, -50%); /* Center it */
    opacity: 1;
  }

    .premium-truck-btn:hover .speed-lines {
    opacity: 1;
    animation: wind 1s infinite linear;
  }

    .premium-truck-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  }