* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --font-heading-1-size: 64px;
    --font-heading-2-size: 48px;
    --font-heading-3-size: 22px;
    --font-heading-4-size: 20px;
    --font-heading-5-size: 18px;
    --font-heading-6-size: 16px;
    --font-paragraph-size: 18px;
}

body {
    --heading-font-family: 'diatype', 'diatype Fallback';
    --paragraph-font-family: 'Roboto', sans-serif !important;
    padding-top: 80px;
}

h1 {
    font-size: var(--font-heading-1-size);
}

h2 {
    font-size: var(--font-heading-2-size);
}

h3 {
    font-size: var(--font-heading-3-size);
}

h4 {
    font-size: var(--font-heading-4-size);
}

h5 {
    font-size: var(--font-heading-5-size);
}

h6 {
    font-size: var(--font-heading-6-size);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--heading-font-family);
}

p {
    font-size: var(--font-paragraph-size);
}

:root {
    --primary-color: #f7ae1d;
    --secondary-hover-color: #ad7a14;
    --white: #fff;
    --black: #1a1a1a;
    --green: #14ad4c;
}

/* header */
.site-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 30px;
    height: 80px;
    background-color: var(--white);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
}

.logo img {
    height: 250px;
}

.main-nav {
    margin-right: 40px;
    display: contents;
}

    .main-nav a {
        text-decoration: none;
        color: var(--black);
        font-weight: 500;
        transition: color 0.3s;
    }

        .main-nav a:hover {
            color: var(--primary-color);
        }


.menu-toggle {
    display: none;
    cursor: pointer;
    width: 32px;
    height: 32px;
    position: relative;
}

    .menu-toggle svg {
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
    }


.icon-menu {
    display: block;
}

.icon-close {
    display: none;
}


.mobile-drawer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    background: var(--white);
    position: absolute;
    top: 100px;
    left: 0;
    right: 0;
    z-index: 99;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 0 30px;
    margin-top: -20px;
}

    .mobile-drawer.open {
        max-height: 500px;
        padding: 20px 30px;
        margin-top: -20px;
    }

    .mobile-drawer ul {
        list-style: none;
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    .mobile-drawer a {
        text-decoration: none;
        color: var(--black);
        font-weight: 500;
    }

@media screen and (max-width: 991px) {
    .main-nav {
        display: none;
    }

    .menu-toggle {
        display: block;
    }
}


.nav-phone a {
    display: flex;
    align-items: center;
    padding: 8px 16px;
    background-color: var(--primary-color);
    color: var(--white) !important;
    border-radius: 30px;
    margin-left: 20px;
    transition: background-color 0.3s;
    margin-right: 40px;
}

    .nav-phone a:hover {
        background-color: var(--secondary-hover-color);
        color: var(--white) !important;
    }


.drawer-phone {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--white);
}

    .drawer-phone a {
        display: block;
        padding: 12px;
        background-color: var(--primary-color);
        color: var(--white) !important;
        text-align: center;
        border-radius: 30px;
        font-weight: 600;
    }


.main-nav ul {
    display: flex;
    gap: 50px;
    list-style: none;
    align-items: center;
}


@media screen and (max-width: 991px) {
    .nav-phone {
        display: none;
    }

    .mobile-drawer ul {
        gap: 10px;
    }
}

.main-nav ul li a.active {
    color: var(--primary-color);
    font-weight: 600;
}


.mobile-drawer ul li a.active {
    color: var(--primary-color);
    font-weight: 600;
}




/* Slider section */

.slider {
    position: relative;
    overflow: hidden;
    height: 84.4vh;
    width: 100%;
}

.slider-track {
    display: flex;
    height: 100%;
    transition: transform 0.6s ease-in-out;
}

.slide {
    min-width: 100%;
    height: 100%;
    position: relative;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.slide-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    animation: fadeUp 1s ease-in-out;
}

    .slide-content h1 {
        font-size: var(--font-heading-1-size);
        margin: 10px 0;
        font-weight: bold;
        text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
    }

    .slide-content h4 {
        font-size: var(--font-heading-4-size);
        margin: 5px 0;
        text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
    }

.cta {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 28px;
    color: var(--white);
    border: 2px solid var(--white);
    text-decoration: none;
    border-radius: 30px;
    transition: 0.3s;
    font-weight: bold;
}

    .cta:hover {
        background-color: var(--secondary-hover-color);
        color: var(--white);
        border: var(--secondary-hover-color);
    }

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border: none;
    color: var(--black);
    font-weight: bold;
    cursor: pointer;
    z-index: 3;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: background-color 0.3s, color 0.3s;
}

    .slider-btn:hover {
        background-color: var(--white);
    }

    .slider-btn.prev {
        left: 20px;
    }

    .slider-btn.next {
        right: 20px;
    }

/*check to below css*/
@keyframes fadeUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .slide-content h1 {
        font-size: 36px;
    }

    .slide-content h4 {
        font-size: 18px;
    }

    .cta {
        padding: 10px 20px;
        font-size: 14px;
    }
}


/*why this cab*/

*,
::after,
::before {
    box-sizing: border-box;
}

.img-fluid {
    max-width: 100%;
    height: auto;
}

.container {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 0;
    width: 100%;
    padding-right: calc(var(--bs-gutter-x) * .5);
    padding-left: calc(var(--bs-gutter-x) * .5);
    margin-right: auto;
    margin-left: auto;
}

.row {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 0;
    display: flex;
    flex-wrap: wrap;
    margin-top: calc(-1 * var(--bs-gutter-y));
    margin-right: calc(-.5 * var(--bs-gutter-x));
    margin-left: calc(-.5 * var(--bs-gutter-x));
}

    .row > * {
        flex-shrink: 0;
        width: 100%;
        max-width: 100%;
        padding-right: calc(var(--bs-gutter-x) * .5);
        padding-left: calc(var(--bs-gutter-x) * .5);
        margin-top: var(--bs-gutter-y);
    }

.col-12 {
    flex: 0 0 auto;
    width: 100%;
}

@media (min-width:576px) {
    .col-sm-6 {
        flex: 0 0 auto;
        width: 50%;
    }
}

@media (min-width:992px) {
    .col-lg-6 {
        flex: 0 0 auto;
        width: 50%;
    }
}

.mt-4 {
    margin-top: 1.5rem !important;
}


.text-heading {
    font-size: var(--font-heading-2-size);
    font-weight: 700;
    margin-bottom: 16px;
}

.container {
    max-width: 1264px;
    width: 100%;
}

.yellow-text {
    color: var(--primary-color);
}

.s-py {
    padding: 100px 0;
}

.cta-btn-yellow {
    background: var(--primary-color);
    color: var(--white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    padding: 17px 32px;
    border-radius: 30px;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    text-decoration: none;
}

    .cta-btn-yellow svg {
        width: 20px;
        height: 20px;
        margin-right: 10px;
    }

.why-cab-section {
    position: relative;
    width: 100%;
}

@media (max-width: 768px) {
    .why-cab-section {
        margin-top: 40px;
        padding: 0 20px;
    }
}

.why-cab-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: -65%;
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    z-index: -1;
}

.why-cab-section .img-block {
    padding-right: 48px;
}

.why-cab-section .content h2 {
    margin-bottom: 8px;
}

.why-cab-section .content .box {
    border-radius: 16px;
    background: var(--white);
    border: #ddd solid 1px;
    padding: 32px;
}

    .why-cab-section .content .box h3 {
        font-size: var(--font-heading-3-size);
        font-weight: 600;
        margin-bottom: 10px;
    }

    .why-cab-section .content .box ul {
        padding-left: 15px;
        color: #565656;
        line-height: 22px;
    }

        .why-cab-section .content .box ul li {
            list-style: outside;
        }

@media (max-width: 1199px) {
    .container {
        padding: 0 20px;
    }
}

@media (max-width: 991px) {

    .why-cab-section .img-block {
        padding-right: 0;
    }

    .why-cab-section::before {
        display: none;
    }

    .why-cab-section .content h2 {
        margin-bottom: 0;
    }
}

@media (max-width: 767px) {


    .why-cab-section .content .box {
        padding: 24px;
    }
}

@media (max-width: 575px) {

    .cta-btn-yellow {
        padding: 15px 24px;
        height: 46px;
    }

    .cta-btn-yellow {
        width: 100%;
        justify-content: center;
    }
}


/* Our Fleet Section */
.product-slider-section {
    width: 100%;
    background-color: #f9f9f9;
    padding: 60px 0;
    overflow: hidden;
}

    .product-slider-section .container {
        max-width: 100%;
        margin: 0 auto;
        padding: 0 20px;
        position: relative;
    }

.section-heading {
    text-align: center;
    margin-bottom: 40px;
    font-size: 36px;
    color: var(--primary-color);
    font-weight: 700;
    letter-spacing: 1px;
}

.product-slider {
    position: relative;
    width: 100%;
}

.slider-container {
    width: 100%;
    overflow: hidden;
    padding: 0 50px;
}

.slider-track {
    display: flex;
    transition: transform 0.6s ease;
    gap: 25px;
    padding: 5px 10px;
}

.product-card {
    flex: 0 0 calc((100% / 3) - 17px);
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    padding: 25px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    min-width: 0;
    display: flex;
    flex-direction: column;
    margin: 0;
}

    .product-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    }

.product-img-container {
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: 12px;
    margin-bottom: 20px;
}

.product-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.product-card:hover .product-img {
    transform: scale(1.05);
}

.product-info h4 {
    margin: 10px 0 8px;
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.product-info p {
    font-size: 16px;
    margin-bottom: 20px;
    color: var(--black);
}

.new-price {
    color: var(--black);
    font-weight: 700;
    font-size: 18px;
}

.book-now-btn {
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 12px 25px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    font-weight: 600;
    margin-top: auto;
    cursor: pointer;
    border-radius: 30px;
    transition: all 0.3s ease;
    width: 80%;
    align-self: center;
    letter-spacing: 0.5px;
}

    .book-now-btn:hover {
        background-color: var(--secondary-hover-color);
        transform: translateY(-3px);
        box-shadow: 0 8px 15px rgba(240, 195, 46, 0.3);
    }

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: var(--primary-color);
    border: none;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

    .slider-arrow:hover {
        background-color: var(--secondary-hover-color);
        transform: translateY(-50%) scale(1.1);
    }

    .slider-arrow svg {
        width: 24px;
        height: 24px;
    }

    .slider-arrow.prev {
        left: 0;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        background: var(--primary-color);
        border: none;
        padding: 10px;
        border-radius: 50%;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
        cursor: pointer;
        z-index: 10;
        transition: background 0.3s;
        width: 40px;
        height: 40px;
    }

    .slider-arrow.next {
        right: 0;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        background: var(--primary-color);
        border: none;
        padding: 10px;
        border-radius: 50%;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
        cursor: pointer;
        z-index: 10;
        transition: background 0.3s;
        width: 40px;
        height: 40px;
    }



@media (max-width: 1199px) {
    .product-card {
        flex: 0 0 calc((100% / 2) - 20px);
    }
}

@media (max-width: 767px) {
    .product-card {
        flex: 0 0 100%;
    }


    .slider-track {
        gap: 10px;
        padding-bottom: 15px;
    }

    .product-img-container {
        height: 180px;
    }

    .book-now-btn {
        width: 90%;
    }
}


@media (max-width: 480px) {
    .product-card {
        padding: 15px;
    }

    .product-img-container {
        height: 160px;
    }

    .section-heading {
        font-size: 28px;
    }
}

/*One Way Cab Services*/
.cab-title {
    text-align: center;
    color: var(--primary-color);
    font-size: 32px;
    margin-bottom: 30px;
    font-weight: bold;
    margin-top: 20px;
}

.cab-slider-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.cab-slider-wrapper {
    overflow: hidden;
    position: relative;
    width: 100%;
    margin-bottom: 20px;
}

.cab-slider-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 100%;
}

.cab-slide {
    flex: 0 0 calc(100% - 40px);
    margin: 0 20px;
    background: #f9f9f9;
    padding: 20px;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

    .cab-slide img {
        width: 100%;
        height: 200px;
        object-fit: cover;
        border-radius: 10px;
    }

.cab-route {
    margin: 15px 0 10px;
    color: var(--primary-color);
    font-size: var(--font-heading-4-size);
    font-weight: bold;
}

.cab-price {
    display: flex;
    justify-content: space-between;
    margin: 5px 0;
    color: #333;
}

    .cab-price span {
        font-weight: bold;
    }

@media (min-width: 768px) {
    .cab-slide {
        flex: 0 0 calc(50% - 40px);
    }
}

@media (min-width: 1024px) {
    .cab-slide {
        flex: 0 0 calc(33.33% - 40px);
    }
}

.cab-slider-wrapper {
    position: relative;
}

.cab-prev-btn,
.cab-next-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--primary-color);
    border: none;
    padding: 10px;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    z-index: 10;
    transition: background 0.3s;
    width: 40px;
    height: 40px;
}

    .cab-prev-btn:hover,
    .cab-next-btn:hover {
        background: var(--secondary-hover-color);
    }

.cab-prev-btn {
    left: 10px;
}

.cab-next-btn {
    right: 10px;
}

    .cab-prev-btn svg,
    .cab-next-btn svg {
        display: block;
    }



/*testimonial*/
.testimonial-section {
    text-align: center;
    padding: 50px 20px;
}

.subheading {
    color: var(--primary-color);
    letter-spacing: 1px;
    font-weight: 600;
}

.main-heading {
    font-size: 2rem;
    font-weight: bold;
    margin: 10px 0 0px;
}

.testimonial-slider {
    position: relative;
    margin-top: 20px;
    overflow: hidden;
    padding: 0 50px;
}

.testimonial-wrapper {
    display: flex;
    transition: transform 0.5s ease;
    will-change: transform;
}

.testimonial {
    background-color: var(--white);
    padding: 20px;
    margin: 0 10px;
    border-radius: 10px;
    flex: 0 0 calc(33.333% - 20px);
    box-sizing: border-box;
    transition: background-color 0.3s ease;
}


@media (max-width: 900px) {
    .testimonial {
        flex: 0 0 calc(100% - 20px);
        margin: 0 10px;
    }
}

.testimonial h4 {
    margin-top: 20px;
    font-weight: 700;
}

.stars {
    margin-top: 10px;
    color: var(--black);
}

    .stars i {
        margin: 0 1px;
    }

.testimonial.active {
    background: var(--primary-color);
    color: var(--black);
}

.nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

    .nav-btn.prev-btn {
        left: 5px;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        background: var(--primary-color);
        border: none;
        padding: 10px;
        border-radius: 50%;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
        cursor: pointer;
        z-index: 10;
        transition: background 0.3s;
        width: 40px;
        height: 40px;
    }

    .nav-btn.next-btn {
        right: 5px;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        background: var(--primary-color);
        border: none;
        padding: 10px;
        border-radius: 50%;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
        cursor: pointer;
        z-index: 10;
        transition: background 0.3s;
        width: 40px;
        height: 40px;
    }

    .nav-btn:hover {
        background: var(--secondary-hover-color);
        color: var(--white);
        border-color: var(--secondary-hover-color);
    }
.nav-controls {
    display: flex;
    justify-content: space-between;
    max-width: 1000px;
    margin: 0 auto 20px;
    padding: 0 20px;
}

    .nav-controls .nav-btn {
        position: static;
        transform: none;
    }

.nav-btn svg {
    width: 24px;
    height: 24px;
}

@media (max-width: 900px) {
    .nav-btn {
        width: 36px;
        height: 36px;
    }

        .nav-btn svg {
            width: 20px;
            height: 20px;
        }
}


@media (max-width: 900px) {
    .testimonial-slider {
        padding: 0 30px;
    }
}


/*WHAT SETS SAVAARI APART?*/
.savaari-highlights {
    text-align: center;
    padding: 40px 20px;
}

    .savaari-highlights h2 {
        color: var(--black);
        font-size: var(--font-heading-2-size);
        margin-bottom: 30px;
    }

.highlight-container {
    background-color: var(--primary-color);
    border-radius: 15px;
    display: flex;
    justify-content: space-around;
    padding: 20px 10px;
    flex-wrap: wrap;
}

.highlight-box {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 15px;
    width: 100%;
    max-width: 300px;
    margin: 10px auto;
    color: var(--white);
    text-align: left;
}

    .highlight-box img {
        width: 80px;
        height: 80px;
        margin-bottom: 10px;
        border-radius: 50%;
        border: 2px solid var(--white);
        object-fit: cover;
        padding: 10px;
    }

    .highlight-box p {
        margin: 0;
        font-size: var(--font-paragraph-size);
        line-height: 1.4;
    }

@media (max-width: 768px) {
    .highlight-container {
        flex-direction: row;
        justify-content: center;
        gap: 20px;
        padding: 20px;
    }

    .highlight-box {
        width: 45%;
        margin-bottom: 20px;
    }
}

@media (max-width: 480px) {
    .savaari-highlights h2 {
        font-size: var(--font-heading-2-size);
    }

    .highlight-box {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

        .highlight-box img {
            width: 70px;
            height: 70px;
        }

        .highlight-box p {
            font-size: 13px;
        }
}

@media (max-width: 480px) {
    .savaari-highlights h2 {
        font-size: var(--font-heading-2-size);
    }

    .highlight-container {
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .highlight-box {
        width: 100%;
        max-width: 250px;
    }

        .highlight-box img {
            width: 70px;
            height: 70px;
        }

        .highlight-box p {
            font-size: 13px;
        }
}




/*footer*/
.footer {
    padding: 40px 40px 10px 40px;
    background-color: var(--black);
    color: var(--primary-color);
}

.footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
}

.newsletter {
    max-width: 300px;
}

    .newsletter .logo {
        font-size: 40px;
        margin-bottom: 10px;
    }

    .newsletter h2 {
        font-size: var(--font-heading-2-size);
        margin-bottom: 15px;
    }

    .newsletter form {
        display: flex;
        border: 1px solid var(--white);
        margin-bottom: 15px;
        border-radius: 30px;
        width: 298.400px;
        height: 45.800px;
        margin-top: 5px;
    }

    .newsletter input {
        flex: 1;
        padding: 10px;
        border: none;
        outline: none;
        background: transparent;
        color: var(--white);
    }

    .newsletter button {
        background: transparent;
        color: var(--white);
        border: none;
        padding: 10px 10px 15px;
        cursor: pointer;
        font-size: 18px;
    }

.footer-columns {
    display: flex;
    flex: 1;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
}

    .footer-columns h4 {
        font-size: 14px;
        text-transform: uppercase;
        margin-bottom: 10px;
    }

    .footer-columns ul {
        list-style: none;
        padding: 0;
    }

    .footer-columns li {
        margin-bottom: 14px;
        font-size: 14px;
        cursor: pointer;
        list-style: none;
        color: var(--white);
    }


.footer a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s;
}

    .footer a:hover {
        color: var(--secondary-hover-color);
    }

.footer-bottom {
    border-top: 1px solid var(--white);
    margin-top: 40px;
    padding-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: 12px;
}

@media screen and (max-width: 768px) {
    .footer-top {
        flex-direction: column;
    }

    .footer-columns {
        flex-direction: column;
        gap: 30px;
    }

    .footer-bottom {
        text-align: center;
    }
}

.social-icons {
    display: flex;
    gap: 10px;
}

    .social-icons .icon {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 36px;
        height: 36px;
        border: 2px solid var(--primary-color);
        border-radius: 50%;
        color: var(--primary-color);
        text-decoration: none;
        font-size: 16px;
        transition: background 0.3s, color 0.3s;
    }

        .social-icons .icon:hover {
            background-color: var(--secondary-hover-color);
            color: var(--black);
        }


/*page-banner*/

.page-banner {
    background-image: url('../image/cab-back-highlight.jpg');
    background-size: cover;
    background-position: center;
    padding: 100px 20px;
    text-align: center;
    position: relative;
}

    .page-banner:before {
        position: absolute;
        content: '';
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        display: block;
        background-color: rgba(0, 0, 0, 0.70);
    }

    .page-banner::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 0;
    }

.banner-content {
    position: relative;
    z-index: 1;
    color: var(--white);
}

.page-title {
    font-size: 36px;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.breadcrumb {
    font-size: 16px;
    color: var(--white);
}

    .breadcrumb a {
        color: var(--white);
        text-decoration: none;
        margin: 0 5px;
    }

    .breadcrumb span {
        margin: 0 5px;
        color: #ccc;
    }


.whatsapp-float, .call-float {
    position: fixed;
    bottom: 20px;
    z-index: 1000;
    padding: 15px;
    border-radius: 50%;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    text-align: center;
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    font-weight: bold;
    font-family: sans-serif;
}


.whatsapp-float {
    right: 20px;
    background-color: var(--green);
}

    .whatsapp-float i {
        font-size: 28px;
        color: var(--white);
    }

.whatsapp-text {
    display: none;
    margin-left: 10px;
    color: var(--white);
    font-size: 18px;
}


.call-float {
    right: 80px;
    background-color: var(--primary-color);
}

    .call-float i {
        font-size: 20px;
        color: var(--white);
    }

.call-text {
    display: none;
    margin-left: 10px;
    color: var(--white);
    font-size: 18px;
}


.whatsapp-float:hover,
.call-float:hover {
    transform: scale(1.1);
}


@media (max-width: 768px) {
    .whatsapp-float {
        right: 20px;
        border-radius: 30px;
        padding: 12px 20px;
        justify-content: flex-start;
        background-color: var(--green);
    }

    .whatsapp-text {
        display: inline;
    }

    .whatsapp-float i {
        color: var(--white);
    }

    .call-float {
        left: 20px;
        right: auto;
        border-radius: 30px;
        padding: 15px 20px;
        justify-content: flex-start;
        background-color: var(--primary-color);
    }

    .call-text {
        display: inline;
    }

    .call-float i {
        color: var(--white);
    }
}

/* Default (Desktop) View */
.whatsapp-float,
.call-float {
    width: 55px;
    height: 55px;
}

/* Mobile View */
@media (max-width: 768px) {
    .whatsapp-float,
    .call-float {
        width: auto;
        height: auto;
    }
}

@media (max-width: 400px) and (max-height: 900px) {
    .whatsapp-float,
    .call-float {
        width: auto;
        height: auto;
        border-radius: 30px;
        padding: 12px 20px;
        justify-content: flex-start;
    }

    .whatsapp-text,
    .call-text {
        display: inline;
        font-size: 16px;
    }

    .whatsapp-float i,
    .call-float i {
        font-size: 20px;
    }
}


@media (max-width: 300px) {
    .whatsapp-float,
    .call-float {
        padding: 10px 14px;
        font-size: 14px;
    }

    .whatsapp-text,
    .call-text {
        font-size: 14px;
    }

    .whatsapp-float i,
    .call-float i {
        font-size: 20px;
    }
}


/* Screens between 280px and 366px wide */
@media (max-width: 366px) {
    .whatsapp-float,
    .call-float {
        padding: 10px 14px;
        font-size: 14px;
        border-radius: 24px;
        width: auto;
        height: auto;
        justify-content: flex-start;
    }

    .whatsapp-text,
    .call-text {
        display: inline;
        font-size: 14px;
    }

    .whatsapp-float i,
    .call-float i {
        font-size: 18px;
    }
}


.footer-logo img {
    height: 35px;
    width: auto;
}
/*slider*/
.slider-track {
    display: flex;
    transition: transform 0.5s ease;
    will-change: transform;
}

.cab-slider-section {
    margin-left: 20px;
}

.product-card {
    flex: 0 0 calc(33.333% - 20px);
    margin-right: 11px;
}

@media (max-width: 768px) {
    .product-card {
        flex: 0 0 100%;
    }
}