@media (max-width: 1366px) {
    .full-width-section {
        width: 100%;
    }
}

@media (min-width: 991px){
    .menu-close{
        display: none;
    }
}

@media (max-width:991px) {
    .hero {
        height: 64vh;
        min-height: 420px;
    }

    .owl-nav button.owl-prev {
        left: 6px;
    }

    .owl-nav button.owl-next {
        right: 6px;
    }

    .nav-brand img {
        max-height: 40px;
    }

    /*..............*/
    /* Slide-in mobile menu */
    .navbar-collapse {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 280px;
        background: #fff;
        padding: 2rem 1.5rem;
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.15);
        transition: right 0.4s ease;
        display: block !important;
        /* override Bootstrap collapse hidden */
        z-index: 1060;
        /* above overlay */
        overflow-y: auto;
    }

    .navbar-collapse.show {
        right: 0;
    }

    /* Dim background when menu open */
    .menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.45);
        z-index: 1050;
        /* under the menu, above content */
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }

    .menu-overlay.active {
        opacity: 1;
        visibility: visible;
    }

    /* Close icon inside panel */
    .menu-close {
        position: absolute;
        top: 0px;
        right: 20px;
        font-size: 40px;
        color: var(--muted);
        cursor: pointer;
        background: none;
        border: none;
        outline: none;
        z-index: 1070;
    }

    .menu-close:hover {
        color: var(--accent);
    }

    /* Nav items layout */
    .navbar-nav {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
        margin-top: 3rem;
    }

    .nav-link {
        width: 100%;
        padding: 8px 0;
        font-weight: 500;
        color: #333 !important;
    }

    /* Account and Register section */
    .header-menu-wrapper {
        flex-direction: row-reverse;
        width: auto;
        gap: 10px;
    }

    .common-orange-btn {
        width: 100%;
    }

    /* Disable body scroll when menu open */
    body.no-scroll {
        overflow: hidden;
    }

    /* Toggle button (hamburger to X) */
    .navbar-toggler {
        position: relative;
        z-index: 2000;
        border: none;
        background: transparent;
        outline: none;
        padding: 0px;
    }

    .navbar-toggler.active {
        outline: none;
        border: none;
        display: none;
    }

    .navbar-toggler.active span,
    .navbar-toggler.active::before,
    .navbar-toggler.active::after {
        background-color: transparent;
    }

    /* .navbar-toggler-icon {
        background-image: none;
    }

    .navbar-toggler::before,
    .navbar-toggler::after {
        content: '';
        position: absolute;
        left: 0;
        width: 25px;
        height: 3px;
        background: #000;
        transition: 0.3s;
    }

    .navbar-toggler::before {
        top: 7px;
    }

    .navbar-toggler::after {
        top: 18px;
    } */

    .navbar-toggler.active::before {
        transform: rotate(45deg);
        top: 12px;
        background: var(--bs-primary);
    }

    .navbar-toggler.active::after {
        transform: rotate(-45deg);
        top: 12px;
        background: var(--bs-primary);
    }
}

@media (max-width: 768px) {
    .account-header {
        justify-content: center;
    }

    .dropdown-menu {
        right: 50%;
        transform: translateX(50%);
    }

    .vehicle-card {
        padding: 35px 30px;
    }

    .test-card {
        max-width: 100%;
    }
}

@media (max-width:576px) {
    .hero {
        height: auto;
        padding: 36px 0;
    }

    .hero h1 {
        font-size: 28px;
        line-height: 32px;
    }


    /*........./login css start/..........*/
    .login-card {
        padding: 30px 20px;
    }

    .social-btn {
        width: 100%;
    }

    /*........./login css end/.........*/
}