@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400..700&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Poppins", sans-serif;
    overflow-x: hidden;
    background-color: rgb(255, 194, 120, 0.2);
}

.btn {
    background-color: #f7941d;
    border: none;
}

.btn:hover {
    background-color: #e68515;
}

/*------------------------------------------------------------------
    SKELETON
-------------------------------------------------------------------*/
/* width */
::-webkit-scrollbar {
    width: 15px;
}

/* Track */
::-webkit-scrollbar-track {
    background: #f1f1f1;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: #f18909;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: #f7941d;
}



/* Select Color Change */

::-moz-selection {
    /* Code for Firefox */
    color: white;
    background: #f18909;
}

::selection {
    color: white;
    background: #f18909;
}


.creative-banner-two {
    height: auto;
    overflow: hidden;
}

.main h4 {
    margin-bottom: 0;
}

.main img {
    margin-top: 2px;
}


.swiper {
    width: 100%;
    height: 100%;
}

.vehicle-box {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffac79 50%, #ff8c42 100%);
    min-height: 550px !important;
    height: 100%;
    position: relative;
    overflow: hidden;
}

@media (max-width: 768px) {
    .vehicle-box {
        height: auto;
        /* allow scroll on mobile */
        min-height: 50vh !important;
        /* fill most of the mobile screen */
        padding-top: 100px;
    }
}

.vehicle-box::before {
    content: "";
    position: absolute;
    top: 15%;
    left: 15%;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    z-index: 1;
}

.vehicle-box::after {
    content: "";
    position: absolute;
    bottom: 15%;
    right: 10%;
    width: 250px;
    height: 250px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    z-index: 1;
}

.slide-content {
    position: relative;
    z-index: 10;
    height: 100%;
}

.main-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #333;
    line-height: 1.1;
}

.tagline {
    font-size: 1.5rem;
    color: #ff8c42;
    font-weight: 400;
    margin-bottom: 2rem;
}

.vehicle-img img {
    max-width: 100%;
    height: 100%;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.2));
}

.brand-text {
    font-size: 8rem;
    font-weight: 100;
    color: rgba(255, 140, 66, 0.15);
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: rotate(180deg);
}

/* Vertical pagination */
.swiper-pagination {
    right: 30px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    width: auto !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 15px;
}

.swiper-pagination-bullet {
    width: 4px !important;
    height: 60px !important;
    border-radius: 0 !important;
    background: rgba(255, 140, 66, 0.3) !important;
    opacity: 1 !important;
    position: relative;
}

.swiper-pagination-bullet::before {
    content: "";
    position: absolute;
    right: -15px;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 2px;
    background: rgba(255, 140, 66, 0.3);
}

.swiper-pagination-bullet-active {
    background: #ff8c42 !important;
}

.swiper-pagination-bullet-active::before {
    background: #ff8c42;
}

.action-btn {
    background: #ff8c42;
    border: none;
    color: white;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 600;
    text-transform: uppercase;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 140, 66, 0.3);
}

.action-btn:hover {
    background: #e67c3c;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 140, 66, 0.4);
    color: white;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .main-title {
        font-size: 2.5rem;
    }

    .tagline {
        font-size: 1.2rem;
    }

    .brand-text {
        font-size: 4rem;
    }

    .vehicle-box::before,
    .vehicle-box::after {
        width: 150px;
        height: 150px;
    }

    .swiper-pagination {
        right: 20px !important;
    }
}

@media (max-width: 576px) {
    .main-title {
        font-size: 2rem;
    }

    .tagline {
        font-size: 1rem;
    }

    .brand-text {
        font-size: 3rem;
    }

}

/*----------------------------------------------*/
/* NAV BAR */
/*----------------------------------------------*/
.navbar-dark .navbar-nav .nav-link {
    position: relative;
    margin-left: 25px;
    font-size: 15px;
    color: black !important;
    text-transform: uppercase;
    font-weight: 500;
    outline: none;
    transition: .5s;
}

.sticky-top.navbar-dark .navbar-nav .nav-link {
    padding: 20px 0;
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
    color: #f0a82b !important;
}

.navbar-dark .navbar-brand img {
    max-height: 60px;
    transition: .5s;
}

.sticky-top.navbar-dark .navbar-brand img {
    max-height: 45px;
}

@media (max-width: 991.98px) {
    .sticky-top.navbar-dark {
        position: relative;
    }

    .navbar-dark .navbar-collapse {
        margin-top: 15px;
        border-top: 1px solid rgba(255, 255, 255, .1)
    }

    .navbar-dark .navbar-nav .nav-link,
    .sticky-top.navbar-dark .navbar-nav .nav-link {
        padding: 10px 0;
        margin-left: 0;
    }

    .carousel-item {
        height: 40vh !important;
    }

    .d-block {
        height: 50vh !important;
    }

    .d-block2 img {
        height: 35vh;
    }

    .carousel-caption {
        text-align: center;
        margin-bottom: 11% !important;
        font-size: xx-large !important;
    }


    .navbar-dark .navbar-brand img {
        max-height: 45px;
    }
}

@media (min-width: 992px) {
    .navbar-dark {
        width: 100%;
        top: 0;
        left: 0;
        z-index: 999;

    }

    .sticky-top.navbar-dark {
        position: fixed;
        background: white;
    }
}

/*----------------------------------------------*/
/* ABOUT US  */
/*----------------------------------------------*/
.large-circle-img {
    width: 350px;
    height: 350px;
    border: 12px solid #f7941d;
    border-radius: 50%;
    object-fit: cover;
    position: relative;
    z-index: 2;
}

.small-circle-img {
    width: 180px;
    height: 180px;
    border: 12px solid #f7941d;
    border-radius: 50%;
    object-fit: cover;
    position: absolute;
    top: 220px;
    left: -70px;
    z-index: 3;
    background: white;
}

/* Service */
.service-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    border-radius: 15px;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-icon {
    font-size: 3rem;
    color: #f7941d;
    margin-bottom: 1rem;
}

/* Customer Journey Map */
.journey-map {
    padding: 80px 0;
    background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
}

.journey-step {
    text-align: center;
    position: relative;
    padding: 30px 20px;
}

.journey-step::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -20px;
    width: 0;
    height: 0;
    border-left: 20px solid #ff6b6b;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    z-index: 2;
}

.journey-step:last-child::after {
    display: none;
}

.step-icon {
    width: 80px;
    height: 80px;
    background: #f7941d;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: white;
}

@media (max-width: 768px) {
    .journey-step::after {
        display: none;
    }
}

/* Our Features */
.feature-title {
    font-weight: 700;
    font-size: 2rem;
    line-height: 1.2;
}

.feature-desc {
    color: #6c757d;
    margin-top: 1rem;
    /* margin-bottom: 1.75rem; */
}

.feature-icons {
    max-width: 180px;
}

.feature-icon-circle {
    background-color: #fff;
    border-radius: 50%;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.75rem auto;
    box-shadow: 0 0 12px rgba(230, 57, 70, 0.1);
}

.feature-label {
    font-weight: 600;
    font-size: 0.9rem;
    text-align: center;
    color: #212529;
}

.car-img-wrapper {
    position: relative;
    max-width: 400px;
    margin: 0 auto;
}

/* Circle behind car */
.car-circle-background {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300px;
    height: 300px;
    background: rgba(230, 57, 70, 0.1);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
}

.car-img {
    position: relative;
    z-index: 1;
    max-width: 100%;
    height: auto;
}

@media (max-width: 991.98px) {
    .car-img-wrapper {
        max-width: 300px;
        margin-top: 2rem;
        margin-bottom: 2rem;
    }
}

/* Gallery */
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.gallery-item img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 152, 0, 0.9), rgba(255, 193, 7, 0.9));
    opacity: 0;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    font-size: 3rem;
    color: white;
    margin-bottom: 1rem;
    transform: scale(0);
    transition: transform 0.3s ease 0.1s;
}

.gallery-item:hover .gallery-overlay i {
    transform: scale(1);
}

.gallery-overlay h5 {
    color: white;
    font-weight: 600;
    margin-bottom: 0.5rem;
    transform: translateY(20px);
    transition: transform 0.3s ease 0.2s;
    text-align: center;
}

.gallery-overlay p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    margin: 0;
    transform: translateY(20px);
    transition: transform 0.3s ease 0.3s;
    text-align: center;
}

.gallery-item:hover .gallery-overlay h5,
.gallery-item:hover .gallery-overlay p {
    transform: translateY(0);
}


/* Modal Styles */
.modal-content {
    border: none;
    border-radius: 15px;
    overflow: hidden;
}

.modal-header {
    background: linear-gradient(45deg, #ff9800, #ffc107);
    color: white;
    border: none;
}

.modal-header .btn-close {
    filter: brightness(0) invert(1);
}

@media (max-width: 768px) {
    .gallery-item {
        margin-bottom: 20px;
    }

    .gallery-item img {
        height: 220px;
    }


    .gallery-section {
        padding: 60px 0;
    }
}

.gallery-stats {
    background: white;
    border-radius: 15px;
    padding: 3rem 2rem;
    margin: 4rem 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Top Brand */
.brands-section {
    padding: 80px 0;
}

.brands-carousel {
    margin-top: 2rem;
}

.brand-item {
    background: transparent;
    padding: 2rem 1rem;
    text-align: center;
    transition: opacity 0.3s ease;
}

.brand-item:hover {
    opacity: 1;
}

.brand-logo img {
    max-width: 120px;
    max-height: 80px;
    width: auto;
    height: auto;
    object-fit: contain;
}

/* Hide Owl Carousel Navigation and Dots */
.owl-nav,
.owl-dots {
    display: none !important;
}

@media (max-width: 768px) {

    .brand-item {
        padding: 1.5rem 0.5rem;
    }

    .brand-logo img {
        max-width: 100px;
        max-height: 60px;
    }

    .brands-section {
        padding: 60px 0;
    }
}

@media (max-width: 576px) {
    .brand-logo img {
        max-width: 80px;
        max-height: 50px;
    }

    .brand-item {
        padding: 1rem 0.5rem;
    }
}

/* Contact */
.contact-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #ff9800, #ffc107);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.contact-icon i {
    font-size: 2rem;
    color: white;
}

/* Footer */
footer i {
    color: #f18909;
}

/* Gallery */
.gallery-img {
    height: 220px;
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-img:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}