/*** Spinner Start ***/
/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}

/*** Spinner End ***/

.back-to-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    transition: 0.5s;
    z-index: 99;
}

/*** Button Start ***/
.btn {
    font-weight: 600;
    transition: .5s;
}

.btn-square {
    width: 32px;
    height: 32px;
}

.btn-sm-square {
    width: 34px;
    height: 34px;
}

.btn-md-square {
    width: 44px;
    height: 44px;
}

.btn-lg-square {
    width: 56px;
    height: 56px;
}

.btn-xl-square {
    width: 66px;
    height: 66px;
}

.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square,
.btn-xl-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

.btn.btn-primary {
    color: var(--bs-white);
}

.btn.btn-primary:hover {
    background: var(--bs-bg-secondary);
    border: 1px solid var(--bs-secondary);
}

.btn.btn-secondary {
    color: var(--bs-white);
}

.btn.btn-secondary:hover {
    background: var(--bs-primary);
    border: 1px solid var(--bs-primary);
}

.btn.btn-light {
    color: var(--bs-primary);
}

.btn.btn-light:hover {
    color: var(--bs-white);
    background: var(--bs-primary);
    border: 1px solid var(--bs-primary);
}

/*** Icon Animation Start ***/
@keyframes icon-animat {
    0% {
        border-radius: 67% 33% 29% 71% / 39% 46% 54% 61%;
    }

    25% {
        border-radius: 69% 31% 19% 81% / 43% 37% 63% 57%;
    }

    50% {
        border-radius: 67% 33% 16% 84% / 57% 37% 63% 43%;
    }

    75% {
        border-radius: 77% 23% 61% 39% / 36% 61% 39% 64%;
    }

    100% {
        border-radius: 67% 33% 29% 71% / 39% 46% 54% 61%;
    }
}

/*** Icon Animation End ***/


/*** Navbar Start ***/
.nav-bar {
    background: var(--bs-white);
}

.sticky-top {
    transition: 1s;
}

.dark-text {
    color: black;
    font-weight: bold;
}

.navbar-light .navbar-nav .nav-link {
    position: relative;
    margin-right: 25px;
    padding: 35px 0;
    letter-spacing: 1px;
    color: var(--bs-dark);
    font-size: 17px;
    font-weight: 500;
    outline: none;
    transition: .5s;
}

.sticky-top .navbar-light .navbar-nav .nav-link {
    padding: 20px 0;
    color: var(--bs-dark);
}

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

.navbar-light .navbar-brand img {
    max-height: 60px;
    transition: .5s;
}

.sticky-top .navbar-light .navbar-brand img {
    max-height: 50px;
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    vertical-align: middle;
    margin-left: 8px;
}

.dropdown .dropdown-menu a:hover {
    background: var(--bs-primary);
    color: var(--bs-white);
}

.navbar .nav-item:hover .dropdown-menu {
    transform: rotateX(0deg);
    visibility: visible;
    margin-top: 8px !important;
    background: var(--bs-light);
    transition: .5s;
    opacity: 1;
}



@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        border: 0;
        border-radius: 10px;
        margin-top: 8px !important;
        transition: .5s;
        opacity: 0;
    }
}

@media (max-width: 991px) {
    .navbar.navbar-expand-lg .navbar-toggler {
        padding: 8px 15px;
        border: 1px solid var(--bs-primary);
        color: var(--bs-primary);
    }

    .sticky-top .navbar-light .navbar-nav .nav-link {
        padding: 12px 0;
    }
}

/*** Navbar End ***/

/*** Carousel Header Start ***/
.carousel .carousel-item img {
    object-fit: cover;
}

.carousel .carousel-item,
.carousel .carousel-item img {
    height: 700px;
}

.carousel-item .carousel-caption {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    bottom: 0;
    background: rgba(0, 0, 0, .6);
    display: flex;
    align-items: center;
}

.carousel .carousel-indicators {
    left: 75%;
    top: 50%;
    margin-right: 25%;
    transform: translateY(-50%);
    flex-direction: column;
}

.carousel-indicators [data-bs-target] {
    display: flex;
    width: 15px;
    height: 15px;
    border: 6px solid var(--bs-white);
    border-radius: 15px;
    padding: 0;
    margin-top: 10px;
    margin-bottom: 10px;
    background-color: var(--bs-secondary);
    opacity: 1;
    transition: 0.5s;
}

.carousel-indicators [data-bs-target].active {
    background-color: var(--bs-primary);
}

@media (max-width: 992px) {
    .carousel-indicators [data-bs-target] {
        display: none;
    }
}

/*** Carousel Header End ***/

/*** Single Page Hero Header Start ***/
.bg-breadcrumb {
    position: relative;
    overflow: hidden;
    background: linear-gradient(rgba(31, 46, 78, 1), rgba(0, 12, 33, 0.8)), url(../img/facts-section.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 60px 0 60px 0;
    transition: 0.5s;
}

.bg-breadcrumb .breadcrumb {
    position: relative;
}

.bg-breadcrumb .breadcrumb .breadcrumb-item a {
    color: var(--bs-white);
}

/*** Single Page Hero Header End ***/

/*** Features Start ***/
.feature {
    background: var(--bs-light);
}

.feature .feature-item {
    display: flex;
    border-radius: 10px;
}

.feature .feature-item .feature-icon span {
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bs-secondary);
    background: var(--bs-primary);
    border-radius: 67% 33% 29% 71% / 39% 46% 54% 61%;
    ;
    animation-name: icon-animat;
    animation-duration: 5s;
    animation-delay: 1s;
    animation-direction: alternate;
    animation-iteration-count: infinite;
    transition: 0.5s;
}

/*** Features End ***/

/*** About Start ***/
.about .about-item .about-item-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-radius: 10px;
    background: var(--bs-light);
    transition: 0.5s;
}

.about .about-item .about-item-inner .about-icon {
    width: 90px;
    height: 90px;
    border-radius: 67% 33% 29% 71% / 39% 46% 54% 61%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bs-secondary);
    background: var(--bs-primary);
    animation-name: icon-animat;
    animation-duration: 5s;
    animation-delay: 1s;
    animation-direction: alternate;
    animation-iteration-count: infinite;
    transition: 0.5s;
}

.about .about-img {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 100%;

}

.about .about-img .img-1 {
    height: 85%;
    margin-right: 50px;
}

.about .about-img .img-2 {
    position: absolute;
    width: 100%;
    bottom: 0;
    right: 0;
    padding-left: 50px;
    border-radius: 10px;
}

.about .about-img::after {
    content: "";
    position: absolute;
    width: 10px;
    height: 98%;
    top: 0;
    right: 0;
    border-radius: 10px;
    background: var(--bs-primary);
    z-index: -1;
}

.about .about-item .text-item {
    position: relative;
    padding-left: 25px;
}

.about .about-item .text-item::after {
    content: "";
    position: absolute;
    width: 5px;
    height: 100%;
    top: 0;
    left: 0;
    border-radius: 10px;
    background: var(--bs-secondary);
}

/*** About End ***/


/*** Fact Counter Start ***/
.counter {
    /* // laravel : get bg image from the public/assets/img/facts-section */
    background: linear-gradient(rgba(0, 12, 33, 0.9), rgba(31, 46, 78, 0.9)), url(../img/facts-section.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.counter .counter-item .counter-item-icon {
    width: 90px;
    height: 90px;
    border-radius: 67% 33% 29% 71% / 39% 46% 54% 61%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bs-secondary);
    background: var(--bs-primary);
    animation-name: icon-animat;
    animation-duration: 5s;
    animation-delay: 1s;
    animation-direction: alternate;
    animation-iteration-count: infinite;
    transition: 0.5s;
}

/*** Fact Counter End ***/

/*** Enhanced Services Start ***/
.service .service-item {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 86, 179, 0.08), 0 4px 15px rgba(0, 0, 0, 0.05);
    border-radius: 25px;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border: 1px solid rgba(0, 86, 179, 0.1);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    overflow: hidden;
    height: 100%;
    min-height: 280px;
}

.service .service-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #0056b3, #003d80, #0056b3);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service .service-item:hover::before {
    opacity: 1;
}

.service .service-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 86, 179, 0.15), 0 10px 25px rgba(0, 0, 0, 0.1);
    border-color: #0056b3;
    background: linear-gradient(135deg, #ffffff 0%, #f0f8ff 100%);
}

.service .service-item::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    bottom: 0;
    left: 0;
    background: linear-gradient(135deg, #0056b3, #003d80);
    border-radius: 25px;
    z-index: -1;
    transition: all 0.4s ease;
    opacity: 0;
    transform: scale(0.9);
}

.service .service-item:hover::after {
    opacity: 0.03;
    transform: scale(1);
}

.service .service-item .service-icon {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    background: linear-gradient(135deg, #0056b3, #003d80);
    box-shadow: 0 8px 20px rgba(0, 86, 179, 0.3);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    margin-bottom: 25px;
}

.service .service-item .service-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service .service-item:hover .service-icon::before {
    opacity: 1;
}

.service .service-item:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 30px rgba(0, 86, 179, 0.4);
}

.service .service-item .service-icon i {
    font-size: 2.2rem;
    transition: all 0.3s ease;
}

.service .service-item:hover .service-icon i {
    transform: scale(1.1);
}

.service .service-item h5 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
    transition: color 0.3s ease;
    line-height: 1.3;
}

.service .service-item:hover h5 {
    color: #0056b3;
}

.service .service-item p {
    font-size: 0.95rem;
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 0;
    transition: color 0.3s ease;
    padding: 0 15px;
}

.service .service-item:hover p {
    color: #495057;
}

/* Enhanced Services Section Background */
.enhanced-services {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.enhanced-services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23e9ecef" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
    z-index: 0;
}

.enhanced-services .container {
    position: relative;
    z-index: 1;
}

/* Service Items Animation */
.service .service-item {
    animation: fadeInUp 0.8s ease-out;
}

.service .service-item:nth-child(1) {
    animation-delay: 0.1s;
}

.service .service-item:nth-child(2) {
    animation-delay: 0.2s;
}

.service .service-item:nth-child(3) {
    animation-delay: 0.3s;
}

.service .service-item:nth-child(4) {
    animation-delay: 0.4s;
}

.service .service-item:nth-child(5) {
    animation-delay: 0.5s;
}

.service .service-item:nth-child(6) {
    animation-delay: 0.6s;
}

/* Responsive Design */
@media (max-width: 768px) {
    .service .service-item {
        min-height: 250px;
        margin-bottom: 20px;
    }

    .service .service-item .service-icon {
        width: 80px;
        height: 80px;
        margin-bottom: 20px;
    }

    .service .service-item .service-icon i {
        font-size: 1.8rem;
    }

    .service .service-item h5 {
        font-size: 1.2rem;
    }

    .service .service-item p {
        font-size: 0.9rem;
        padding: 0 10px;
    }
}

@media (max-width: 576px) {
    .service .service-item {
        min-height: 220px;
    }

    .service .service-item .service-icon {
        width: 70px;
        height: 70px;
    }

    .service .service-item .service-icon i {
        font-size: 1.6rem;
    }
}

/*** Enhanced Services End ***/

/*** Cars Categories Start ***/
.categories {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.categories .categories-item {
    position: relative;
    border: 1px solid rgba(0, 86, 179, 0.2);
    border-radius: 20px;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08), 0 4px 10px rgba(0, 0, 0, 0.05);
    transform: translateY(0);
    backdrop-filter: blur(10px);
}

.categories .categories-item:hover {
    box-shadow: 0 20px 40px rgba(0, 86, 179, 0.15), 0 10px 20px rgba(0, 0, 0, 0.1);
    border-color: var(--bs-primary);
    background: linear-gradient(135deg, #ffffff 0%, #f0f8ff 100%);
}

.categories .categories-item .categories-item-inner {
    padding: 1rem;
}

.categories .categories-item .categories-item-inner {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}

.categories .categories-item .categories-top {
    margin-bottom: 20px;
    position: relative;
}

.categories .categories-item .categories-top p:first-child {
    font-size: 16px;
    font-weight: 700;
    color: var(--bs-primary);
    text-transform: uppercase;
    margin-bottom: 12px;
    letter-spacing: 1px;
    position: relative;
}

.categories .categories-item .categories-top h4 {
    font-size: 28px;
    font-weight: 800;
    text-transform: capitalize;
    margin-bottom: 8px;
    color: #2c3e50;
    line-height: 1.2;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.categories .categories-item .categories-top p.text-secondary {
    font-size: 14px;
    color: #6c757d;
    font-style: italic;
    opacity: 0.9;
}

.categories .categories-img {
    position: relative;
    overflow: hidden;
    border-radius: 15px 15px 0 0;
    padding: 15px;
    margin: 0 -3px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 200px;
}

.categories .categories-img::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.categories .categories-item:hover .categories-img::before {
    opacity: 1;
}

.categories .categories-img img {
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    height: 160px;
    object-fit: contain;
    object-position: center center;
    width: 100%;
    border-radius: 15px 15px 0 0;
    
}

.car-image {
    aspect-ratio: 16/9;
    object-fit: cover;
    object-position: center;
    width: 100%;
    height: auto;
    min-height: 200px;
    max-height: 250px;
    border-radius: 15px 15px 0 0;
    transition: transform 0.3s ease;
}

.car-image:hover {
    transform: scale(1.02);
}

.categories .categories-img img:hover {
    transform: scale(1.1);
    cursor: pointer;
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.15));
}

.categories .categories-content {
    border-top: 3px solid var(--bs-primary);
    text-align: center;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 25px 20px;
    border-radius: 0 0 20px 20px;
    position: relative;
    margin-top: -5px;
}

.categories .categories-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #0056b3, #003d80, #0056b3);
    border-radius: 2px;
}

.categories .categories-content .row {
    margin-bottom: 25px;
}

.categories .categories-content .col-4 {
    font-size: 13px;
    padding: 8px 4px;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
}

.categories .categories-content .col-4:hover {
    background: rgba(0, 86, 179, 0.05);
}

.categories .categories-content .col-4 i {
    font-size: 18px;
    color: var(--bs-primary);
    margin-bottom: 4px;
    transition: all 0.3s ease;
}

.categories .categories-content .col-4:hover i {
    color: #0056b3;
}

.categories .categories-content .text-body {
    font-weight: 600;
    color: #2c3e50;
    font-size: 12px;
    line-height: 1.3;
}

/* Book Now button styling */
.btn.btn-primary.animated-btn,
.btn.btn-primary.animated-btn-light {
    background: linear-gradient(135deg, #0056b3, #003d80);
    color: white;
    border: 2px solid transparent;
    border-radius: 50px;
    padding: 14px 28px;
    font-size: 15px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1.2px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 86, 179, 0.3);
}

.btn.btn-primary.animated-btn:hover {
    background: linear-gradient(135deg, #003d80, #001f40);
    color: #fff;
    border-color: transparent;
    transform: scale(1.05) translateY(-2px);
    box-shadow: 0 15px 30px rgba(0, 86, 179, 0.4);
}

.btn.btn-primary.animated-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: all 0.6s;
    transform: skewX(-45deg);
}

.btn.btn-primary.animated-btn:hover::before {
    left: 100%;
}

.btn.btn-primary.animated-btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.6s;
}

.btn.btn-primary.animated-btn:hover::after {
    width: 300px;
    height: 300px;
}

/* Enhanced discount badge styling */
.categories .categories-top .bg-primary.rounded-pill {
    background: linear-gradient(135deg, #dc3545 0%, #e74c3c 100%) !important;
    color: white !important;
    padding: 8px 16px !important;
    font-size: 12px !important;
    font-weight: 700 !important;
    letter-spacing: 0.5px !important;
    box-shadow: 0 4px 12px rgba(220, 53, 69, 0.3) !important;
    border: 2px solid rgba(255, 255, 255, 0.2) !important;
    transition: all 0.3s ease !important;
    position: relative !important;
    overflow: hidden !important;
}

.categories .categories-top .bg-primary.rounded-pill::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: all 0.8s;
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

.categories .categories-item:hover .bg-primary.rounded-pill {
    box-shadow: 0 6px 16px rgba(220, 53, 69, 0.4) !important;
}

/* Enhanced price display */
.categories .categories-content h5.text-primary {
    font-size: 24px !important;
    font-weight: 800 !important;
    color: #0056b3 !important;
    text-shadow: 0 2px 4px rgba(0, 86, 179, 0.2) !important;
    margin: 0 !important;
}

.categories .categories-content h5.text-primary .text-secondary {
    font-size: 16px !important;
    font-weight: 500 !important;
    color: #6c757d !important;
}

.categories .categories-content p.text-dark {
    font-size: 14px !important;
    font-weight: 600 !important;
    color: #495057 !important;
    margin-bottom: 8px !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
}

/* Enhanced car specifications icons */
.categories .categories-content .col-4 .fa-gas-pump,
.categories .categories-content .col-4 .fa-suitcase,
.categories .categories-content .col-4 .fa-users,
.categories .categories-content .col-4 .fa-gauge,
.categories .categories-content .col-4 .fa-fan,
.categories .categories-content .col-4 .fa-door-closed {
    background: linear-gradient(135deg, #0056b3, #003d80);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
}

/* Add subtle animation on card load */
.categories .categories-item {
    animation: fadeInUp 0.6s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive enhancements */
@media (max-width: 768px) {
    .categories .categories-item .categories-top h4 {
        font-size: 24px !important;
    }

    .categories .categories-content h5.text-primary {
        font-size: 20px !important;
    }

    .categories .categories-content .col-4 {
        font-size: 12px !important;
    }

    .categories .categories-content .col-4 i {
        font-size: 16px !important;
    }

    .car-image {
        min-height: 180px;
        max-height: 220px;
        aspect-ratio: 4/3;
    }

    .categories .categories-img {
        padding: 10px;
    }
}

@media (max-width: 576px) {
    .car-image {
        min-height: 160px;
        max-height: 200px;
        aspect-ratio: 1/1;
    }

    .categories .categories-img {
        padding: 8px;
        min-height: 160px;
    }

    .categories .categories-item .categories-top h4 {
        font-size: 20px !important;
    }
}

@media (max-width: 480px) {
    .car-image {
        min-height: 140px;
        max-height: 180px;
    }

    .categories .categories-img {
        padding: 6px;
        min-height: 140px;
    }
}


.categories-carousel .owl-stage-outer {
    margin-top: 65px;
    margin-right: -1px;
}

.categories-carousel .owl-nav .owl-prev,
.categories-carousel .owl-nav .owl-next {
    position: absolute;
    top: -65px;
    padding: 10px 35px;
    color: var(--bs-white);
    background: var(--bs-primary);
    border-radius: 50px;
    transition: 0.5s;
}

.categories-carousel .owl-nav .owl-prev {
    left: 0 !important;
}

.categories-carousel .owl-nav .owl-next {
    right: 0;
}

.categories-carousel .owl-nav .owl-prev:hover,
.categories-carousel .owl-nav .owl-next:hover {
    background: var(--bs-white);
    color: var(--bs-primary);
    border: 2px solid var(--bs-primary);
}

/*** Cars Categories End ***/


/*** Process Start ***/
.steps {
    /* background: linear-gradient(rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.9)), url(../img/bg-1.jpg); */
    /* background-position: center center; */
    /* background-repeat: no-repeat; */
    /* background-size: cover; */
}


.steps .steps-item {
    position: relative;
    background: var(--bs-primary);
    border-radius: 10px;
}

.steps .steps-item h4 {
    color: var(--bs-white);
}

.steps .steps-item .setps-number {
    position: absolute;
    width: 64px;
    height: 64px;
    bottom: 0;
    right: 40px;
    font-weight: 900;
    border: 1px solid var(--bs-white);
    border-radius: 64px;
    transform: translateY(50%);
    color: var(--bs-white);
    background: var(--bs-primary);
    display: flex;
    align-items: center;
    justify-content: center;
}

/*** Process End ***/


/*** Blog Start ***/
.blog .blog-item {
    border-radius: 10px;
    transition: 0.5s;
}

.blog .blog-item:hover {
    box-shadow: 0 0 45px rgba(0, 0, 0, .2);
}

.blog .blog-item .blog-img {
    position: relative;
    overflow: hidden;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.blog .blog-item .blog-img::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    bottom: 0;
    left: 0;
    background: rgba(255, 255, 255, 0.3);
    transition: 0.5s;
}

.blog .blog-item:hover .blog-img::after {
    height: 100%;
}

.blog .blog-item .blog-img img {
    transition: 0.5s;
}

.blog .blog-item:hover .blog-img img {
    transform: scale(1.2);
}

.blog .blog-item .blog-content {
    position: relative;
    background: var(--bs-light);
}

.blog .blog-item .blog-content .blog-date {
    position: absolute;
    top: 0;
    left: 25px;
    transform: translateY(-50%);
    padding: 12px 25px;
    border-radius: 10px;
    color: var(--bs-white);
    background: var(--bs-primary);
}

.blog .blog-item .blog-content .blog-comment {
    display: flex;
    justify-content: space-between;
}

/*** Blog End ***/


/*** Banner Start ***/
.banner .banner-item {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    transition: 0.5s;
    z-index: 1;
}

.banner .banner-item::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-radius: 10px;
    background: rgba(0, 0, 0, .6);
    z-index: 2;
}

.banner .banner-item .banner-content {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    margin-left: 0;
    margin-bottom: 0;
    padding: 25px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: end;
    z-index: 5;
}

@media (min-width: 992px) {
    .banner .banner-item .banner-content h2 {
        font-size: 45px;
        margin-bottom: 20px;
    }

    .banner .banner-item .banner-content h1 {
        font-size: 72px;
        margin-bottom: 20px;
    }

    .banner .banner-item .banner-content p {
        font-size: 40px;
        margin-bottom: 20px;
    }
}

/*** Banner End ***/

/*** Location Start ***/
.location .location-item {
    position: relative;
    text-align: center;
    border-radius: 10px;
    margin-top: 100px;
    background: var(--bs-light);
    transition: 0.5s;
    z-index: 1;
}

.location .location-item::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    bottom: 0;
    left: 0;
    border-radius: 10px;
    background: var(--bs-primary);
    z-index: 2;
    transition: 0.5s;
}

.location .location-item:hover::after {
    height: 100%;
}

.location .location-item .location-content {
    position: relative;
    z-index: 5;
}

.location .location-item .location-content h4,
.location .location-item .location-content p {
    transition: 0.5s;
}

.location .location-item:hover .location-content h4 {
    color: var(--bs-white);
}

.location .location-item:hover .location-content p {
    color: var(--bs-white);
}

.location .location-item .location-img {
    position: relative;
    overflow: hidden;
    top: -100px;
    margin-bottom: -100px;
    border-radius: 10px;
    z-index: 3;
}

.location .location-item .location-img img {
    transition: 0.5s;
}

.location .location-item:hover .location-img img {
    transform: scale(1.1);
}

.location .location-item .location-img::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    border-radius: 10px;
    background: rgba(255, 255, 255, .3);
    z-index: 4;
    transition: 0.5s;
}

.location .location-item:hover .location-img::after {
    height: 100%;
}

/*** Team End ***/

/*** Testimonial Start ***/
.testimonial-carousel .owl-stage-outer {
    margin-right: -1px;
}

.testimonial .testimonial-item {
    position: relative;
    margin-top: 35px;
    border: 1px solid var(--bs-secondary);
    border-radius: 10px;
}

.testimonial .testimonial-item .testimonial-quote {
    position: absolute;
    width: 70px;
    height: 70px;
    top: 0;
    right: 25px;
    transform: translateY(-50%);
    border-radius: 70px;
    color: var(--bs-white);
    background: var(--bs-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial .testimonial-item .testimonial-inner {
    display: flex;
    align-items: center;
    background: var(--bs-light);
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.testimonial .testimonial-item .testimonial-inner img {
    width: 100px;
    height: 100px;
    border-radius: 100px;
    border: 4px solid var(--bs-white);
}

.testimonial-carousel .owl-dots {
    display: flex;
    justify-content: center;
}

.testimonial-carousel .owl-dots .owl-dot {
    width: 30px;
    height: 30px;
    border-radius: 30px;
    margin: 20px 10px 0 10px;
    background: var(--bs-primary);
    transition: 0.5s;
}

.testimonial-carousel .owl-dots .owl-dot.active {
    width: 30px;
    height: 30px;
    border-radius: 30px;
    background: var(--bs-secondary);
    transition: 0.5s;
}

.testimonial-carousel .owl-dots .owl-dot span {
    position: relative;
    margin-top: 50%;
    margin-left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.testimonial-carousel .owl-dots .owl-dot.active span::after {
    background: var(--bs-primary);
}

.testimonial-carousel .owl-dots .owl-dot span::after {
    content: "";
    width: 15px;
    height: 15px;
    border-radius: 15px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--bs-white);
    transition: 0.5s;
}

/*** Testimonial End ***/

/*** Contact Start ***/
.contact .contact-add-item {
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--bs-light);
}

.contact .contact-add-item .contact-icon {
    width: 90px;
    height: 90px;
    border-radius: 67% 33% 29% 71% / 39% 46% 54% 61%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bs-secondary);
    background: var(--bs-primary);
    animation-name: icon-animat;
    animation-duration: 5s;
    animation-delay: 1s;
    animation-direction: alternate;
    animation-iteration-count: infinite;
    transition: 0.5s;
}

/*** Contact End ***/


/*** Footer Start ***/
.footer {
    background: var(--bs-dark);
}

.footer .footer-item a {
    line-height: 35px;
    color: var(--bs-body);
    transition: 0.5s;
}

.footer .footer-item p {
    line-height: 35px;
}

.footer .footer-item a:hover {
    letter-spacing: 1px;
    color: var(--bs-primary);
}

.footer .footer-item .footer-btn a,
.footer .footer-item .footer-btn a i {
    transition: 0.5s;
}

.footer .footer-item .footer-btn a:hover {
    background: var(--bs-white);
}

.footer .footer-item .footer-btn a:hover i {
    color: var(--bs-primary) !important;
}

/*** Footer End ***/

/*** Copyright Start ***/
.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: var(--bs-dark);
}

/*** Copyright End ***/


/*** Reservation form ***/
.reservation-form {
    background: linear-gradient(145deg, #003d80, #0056b3);
    box-shadow: 0 15px 30px rgba(0, 86, 179, 0.2);
    max-width: 500px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px !important;
}

.header-line {
    height: 2px;
    width: 50px;
    /* margin-top: 10px; */
}

/* Form Container */
.reservation-form form {
    background-color: rgba(255, 255, 255, 0.98);
    border-radius: 8px;
}

/* Form Controls */
.reservation-form .form-control {
    border: 1px solid #e0e0e0;
    padding: 0.8rem 1rem;
    font-size: 1rem;
    transition: all 0.3s ease;
    background-color: #f8f9fa;
}

.reservation-form .form-control:focus {
    box-shadow: 0 0 0 0.25rem rgba(0, 86, 179, 0.1);
    border-color: #0056b3;
    background-color: #ffffff;
}

/* Text Colors */
.text-primary {
    color: #0056b3 !important;
}

/* Custom Select Styling */
.reservation-form select.form-control {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%230056b3' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1em;
    padding-right: 2.5rem;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

/* Checkbox Styling */
.reservation-form .form-check-input {
    width: 1.2em;
    height: 1.2em;
}

.reservation-form .form-check-input:checked {
    background-color: #0056b3;
    border-color: #0056b3;
}

/* Button Styling */
.btn-reservation {
    background: linear-gradient(145deg, #0056b3, #0066cc);
    color: white;
    border: none;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.btn-reservation:hover {
    background: linear-gradient(145deg, #0066cc, #0056b3);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 86, 179, 0.2);
}

.btn-reservation:active {
    transform: translateY(0);
}

/* Date Input Specific Styling */
.reservation-form input[type="date"]::-webkit-calendar-picker-indicator {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%230056b3' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='4' width='18' height='18' rx='2' ry='2'%3E%3C/rect%3E%3Cline x1='16' y1='2' x2='16' y2='6'%3E%3C/line%3E%3Cline x1='8' y1='2' x2='8' y2='6'%3E%3C/line%3E%3Cline x1='3' y1='10' x2='21' y2='10'%3E%3C/line%3E%3C/svg%3E");
    cursor: pointer;
}

/* Hover Effects */
.form-control:hover {
    background-color: #ffffff;
    border-color: #0056b3;
}

/* Labels */
.form-label {
    font-weight: 500;
    color: #0056b3;
}

/* Animation */
.reservation-form {
    animation: formAppear 0.5s ease-out;
}

@keyframes formAppear {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .reservation-form {
        margin-top: 0 !important;
        margin-bottom: 0 !important;
    }
}

/*** Reservation form end ***/
/*** Hero responsive ***/
/* #hero-section */
@media screen and (max-width: 768px) {
    #hero-section {
        padding-bottom: 00px 0;
        overflow: visible;
    }

}

.location-scroll {
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 1rem;
    /* Space for scrollbar */
}

.location-scroll::-webkit-scrollbar {
    height: 6px;
}

.location-scroll::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 3px;
}

/* Desktop view - show 3 items */
@media (min-width: 992px) {
    .location-scroll {
        width: 100%;
    }

    .location-scroll .col-lg-4 {
        width: 33.333%;
        flex: 0 0 33.333%;
    }
}

/* Mobile view - show 1.5 items */
@media (max-width: 991px) {
    .location-scroll .col-md-6 {
        width: 90%;
        flex: 0 0 90%;
    }
}

/* Enhanced Booking Form Styles */
.enhanced-booking-form {
    background: linear-gradient(135deg, rgba(0, 86, 179, 0.95), rgba(0, 61, 128, 0.98));
    border-radius: 25px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.enhanced-booking-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%23ffffff" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    pointer-events: none;
}

.form-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.form-icon i {
    font-size: 1.5rem;
    color: white;
}

.form-title {
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.form-subtitle {
    font-weight: 500;
}

.enhanced-booking-form .bg-white {
    border-radius: 20px;
    position: relative;
    z-index: 2;
}

.enhanced-booking-form .form-control {
    border: 2px solid #e9ecef;
    border-radius: 12px;
    transition: all 0.3s ease;
    background: #f8f9fa;
    font-weight: 500;
}

.enhanced-booking-form .form-control:focus {
    border-color: #0056b3;
    background: white;
    box-shadow: 0 0 0 3px rgba(0, 86, 179, 0.1);
    transform: translateY(-1px);
}

.enhanced-booking-form .form-check-input {
    border: 2px solid #0056b3;
    border-radius: 4px;
    width: 20px;
    height: 20px;
}

.enhanced-booking-form .form-check-input:checked {
    background-color: #0056b3;
    border-color: #0056b3;
}

.enhanced-booking-form .btn-primary {
    background: linear-gradient(135deg, #0056b3, #003d80);
    border: none;
    border-radius: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.enhanced-booking-form .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(0, 86, 179, 0.4);
}

.enhanced-booking-form .btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.enhanced-booking-form .btn-primary:hover::before {
    left: 100%;
}

@media (max-width: 768px) {
    .enhanced-booking-form .form-icon {
        width: 50px;
        height: 50px;
    }

    .enhanced-booking-form .form-icon i {
        font-size: 1.2rem;
    }

    .enhanced-booking-form .form-title {
        font-size: 1.3rem;
    }
}