@import url('https://fonts.googleapis.com/css2?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');
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    scroll-behavior: smooth;
}

:root {
    --primary-color: #18AA9E;
    --primary-color2: #19ada1;
    --secondary-color: #0E2431;
    --white-color: #fff;
    --black-color: #000;
}

body {
    overflow-x: hidden;
}

a {
    text-decoration: none;
}

figure {
    margin: 0;
    padding: 0;
}

.btn:focus {
    outline: none;
}

ul,
ol {
    list-style: none;
    margin: 0;
    padding: 0;
}

h1, h2, h3, h4, h5, h6 {
    margin: 0;
    padding: 0;
    font-family: "Open Sans", sans-serif;
}

p, span {
    margin: 0;
    padding: 0;
    font-family: "Poppins", sans-serif;
}

a, button {
    display: inline-block;
}

    button:focus {
        outline: none;
        box-shadow: none;
    }

select {
    cursor: pointer;
}

.btn:focus {
    outline: none;
    box-shadow: none;
}

.form-control:focus {
    outline: none;
    box-shadow: none;
}

/************************** All Main Css Start **************************/
/* mini header css */
.mini-header {
    width: 100%;
    padding: 10px;
    background: var(--primary-color2);
}

.infocont {
    width: 100%;
    display: flex;
    gap: 20px;
    align-items: center;
}

    .infocont a {
        color: var(--white-color);
        transition: all 0.3s ease-in-out;
    }

        .infocont a:hover {
            color: var(--secondary-color);
        }

        .infocont a i {
            padding-right: 5px;
        }

.social_icons {
    width: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 25px;
    margin-top: 5px;
}

    .social_icons i {
        color: var(--white-color);
        cursor: pointer;
        transition: all 0.3s ease-in-out;
    }

        .social_icons i:hover {
            color: var(--secondary-color);
        }
/* mini header css */
/* header css */
.header {
    width: 100%;
    position: relative;
    background: var(--secondary-color);
    transition: all 0.3s ease;
    z-index: 10;
}

    .header .header_stick {
        width: 100%;
        position: relative;
        background: var(--secondary-color);
        transition: all 0.3s ease;
        z-index: 10;
    }

        .header .header_stick.sticky {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            background-color: var(--secondary-color);
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
            animation: fadeInDown 0.5s ease;
        }

@keyframes fadeInDown {
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

#scrollBtn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    background-color: var(--primary-color2);
    color: white;
    border: none;
    padding: 10px 18px;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    transition: background-color 0.3s;
}

    #scrollBtn:hover {
        background-color: var(--secondary-color);
    }

.header .navbar-expand-lg {
    padding: 10px 0;
    background: var(--secondary-color);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

    .header .navbar-expand-lg .navbar-collapse {
        justify-content: flex-end;
        align-items: center;
    }

    .header .navbar-expand-lg .navbar-nav {
        align-items: center;
        gap: 20px;
    }

.header .navbar-light .navbar-nav .nav-link.active {
    border: none;
    padding: 10px 20px !important;
    background: var(--primary-color2);
    color: var(--white-color) !important;
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    transition: all 0.3s ease;
}

    .header .navbar-light .navbar-nav .nav-link.active:hover {
        color: var(--white-color);
    }

.header .header-Btn {
    border: none;
    padding: 10px 40px !important;
    background: var(--primary-color2);
    background-size: 300% 300%;
    color: var(--white-color) !important;
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    transition: all 0.3s ease-in-out;
    animation: buttonanimation 2s ease infinite;
}

    .header .header-Btn:hover {
        background: var(--primary-color);
    }

.header .navbar-light .navbar-nav .nav-link {
    font-size: 16px;
    font-weight: 500;
    font-family: "Poppins", sans-serif;
    color: var(--white-color);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.header .navbar-nav .nav-item:hover .nav-link {
    color: var(--white-color) !important;
}

.header .navbar-nav .nav-item:hover .inactive {
    color: var(--primary-color) !important;
}

.header .navbar-nav .nav-item .inactive::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: var(--primary-color);
    transition: all 0.3s ease;
}

.header .navbar-nav .nav-item .inactive:hover::before {
    width: 100%;
}

.header .navbar-brand .logo {
    width: 100px;
}

.header .dropdown-submenu {
    position: relative;
}

    .header .dropdown-submenu > .dropdown-menu {
        top: 0;
        left: 100%;
        margin-top: -1px;
        display: none;
        position: absolute;
    }

    .header .dropdown-submenu:hover > .dropdown-menu {
        display: block;
    }

.header .navbar-expand-lg .navbar-nav .dropdown-menu {
    background: var(--secondary-color);
    border: 3px solid var(--primary-color2);
}

.header .dropdown-item.active, .dropdown-item:active {
    color: var(--white-color);
    background: var(--secondary-color);
}

.header .dropdown-item:hover, .dropdown-item:focus {
    color: var(--white-color);
    background: var(--primary-color);
}

.header .dropdown-item {
    color: var(--white-color);
}
/* header css */
/* hero section */
.hero {
    position: relative;
    width: 100%;
    height: 82vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .hero h1 {
        position: relative;
        z-index: 3;
        color: var(--white-color);
        text-align: center;
        font-size: 18px;
        font-weight: 700;
        background: #0e2431;
        width: fit-content;
        padding: 10px 20px;
        margin-bottom: 20px;
        border-radius: 10px;
    }

    .hero h2 {
        position: relative;
        z-index: 3;
        color: var(--white-color);
        font-size: 50px;
        font-weight: 700;
        margin-bottom: 20px;
        background-color: #19ada1;
        padding: 6px 20px;
        border-radius: 10px;
    }

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transform: scale(1);
    transition: opacity 1s ease, transform 5s ease;
}

    .slide.active {
        opacity: 1;
        transform: scale(1.1);
        z-index: 1;
    }

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 2;
}

.main-heroo {
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 2;
}

.hero-head {
    width: 100%;
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.bokking-eginer-main {
    width: 100%;
    background: var(--secondary-color);
    padding: 30px 40px 20px;
    border-top-left-radius: 25px;
    border-bottom-right-radius: 25px;
    margin-top: 20px;
}

.booking {
    width: 100%;
    position: relative;
    overflow: hidden;
}

    .booking .custom-input {
        width: 100%;
        padding: 10px;
        background: transparent;
        border: 2px solid var(--white-color);
        color: var(--white-color);
        margin-bottom: 20px;
        position: relative;
        z-index: 10;
    }

        .booking .custom-input::placeholder {
            color: var(--white-color);
        }

        .booking .custom-input option {
            color: var(--black-color);
        }

    .booking i {
        color: var(--white-color);
        position: absolute;
        top: 15px;
        right: 20px;
    }

    .booking .Form-Btn {
        border: none;
        padding: 10px 40px !important;
        background: var(--primary-color2);
        color: var(--white-color) !important;
        font-family: "Poppins", sans-serif;
        font-weight: 500;
        transition: all 0.3s ease-in-out;
        animation: buttonanimation 2s ease infinite;
    }

        .booking .Form-Btn:hover {
            background: var(--primary-color);
        }
/* hero section */
/* about section */
.about-section {
    width: 100%;
    height: 100%;
    padding: 40px 0;
}

.about-content {
    width: 100%;
    padding: 10px;
}

    .about-content .About-Btn {
        border: none;
        padding: 10px 40px !important;
        background: var(--primary-color2);
        color: var(--white-color) !important;
        font-family: "Poppins", sans-serif;
        font-weight: 500;
        transition: all 0.3s ease-in-out;
        animation: buttonanimation 2s ease infinite;
    }

        .about-content .About-Btn:hover {
            background: var(--primary-color);
        }

    .about-content h3 {
        font-size: 34px;
        font-weight: 700;
        color: var(--secondary-color);
        margin-bottom: 10px;
    }

    .about-content h4 {
        font-size: 22px;
        font-weight: 700;
        color: var(--secondary-color);
        margin-bottom: 10px;
    }

    .about-content .content-p {
        margin-bottom: 10px;
    }

.color-change {
    font-weight: 600;
    font-style: italic;
    color: var(--primary-color2);
}

.about-image {
    width: 100%;
}

.about-img {
    border: 10px solid var(--primary-color2);
    border-top-left-radius: 25px;
    border-bottom-right-radius: 25px;
}

.about-cards {
    width: 100%;
}

.left-content-about {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

    .left-content-about .left-p i {
        color: var(--primary-color2);
        padding-right: 5px;
    }

    .left-content-about .left-p {
        border-bottom: 2px solid var(--primary-color2);
        padding-bottom: 5px;
    }
/* about section */
/* services section */
.services-section {
    width: 100%;
    padding: 40px 0;
}

.services-heading {
    width: 100%;
    text-align: center;
}

    .services-heading h2 {
        font-size: 22px;
        font-weight: 700;
        color: var(--primary-color2);
        margin-bottom: 10px;
    }

    .services-heading h3 {
        font-size: 36px;
        font-weight: 700;
        color: var(--secondary-color);
        margin-bottom: 10px;
    }

    .services-heading p {
        margin-bottom: 40px;
    }

.mainSer {
    width: 100%;
    border: 5px solid var(--primary-color2);
    background: var(--secondary-color);
    margin-bottom: 25px;
    border-top-left-radius: 15px;
    border-bottom-right-radius: 15px;
    overflow: hidden;
}

.imageServ {
    width: 100%;
    height: 100%;
    background: url(../images/airport-transfer.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.imageServ2 {
    width: 100%;
    height: 100%;
    background: url(../images/leicester-taxis.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.imageServ3 {
    width: 100%;
    height: 100%;
    background: url(../images/seaport-transfer.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.imageServ4 {
    width: 100%;
    height: 100%;
    background: url(../images/courier-service.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.padDiv {
    width: 100%;
    padding: 20px;
}

    .padDiv h2 {
        font-size: 28px;
        font-weight: 700;
        margin-bottom: 10px;
        color: var(--white-color);
    }

    .padDiv p {
        margin-bottom: 10px;
        font-size: 14px;
        color: var(--white-color);
    }

.services-btn {
    border: none;
    padding: 10px 40px !important;
    background: var(--primary-color2);
    color: var(--white-color) !important;
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    transition: all 0.3s ease-in-out;
    animation: buttonanimation 2s ease infinite;
}

    .services-btn:hover {
        background: var(--primary-color);
    }
/* services section */
/* app section */
.app-section {
    width: 100%;
    padding: 40px 0;
    background: var(--secondary-color);
}

.app-image {
    width: 100%;
    padding: 30px;
    text-align: center;
}

    .app-image .app-screen {
        width: 400px;
    }

.app-content {
    width: 100%;
    padding: 50px;
}

    .app-content h2 {
        font-size: 22px;
        font-weight: 700;
        color: var(--white-color);
        margin-bottom: 10px;
    }

    .app-content h3 {
        font-size: 42px;
        font-weight: 700;
        color: var(--white-color);
        margin-bottom: 10px;
    }

    .app-content p {
        color: var(--white-color);
        margin-bottom: 10px;
    }

.buttons {
    width: 100%;
}

    .buttons .iosapp-icon, .buttons .android-icon {
        width: 200px;
    }

    .buttons .android-icon {
        margin-left: 10px;
    }
/* app section */
/* our fleets section */
.our-fleet-section {
    width: 100%;
    height: 100%;
    padding: 40px 0px;
}

    .our-fleet-section h2 {
        font-size: 42px;
        font-weight: 700;
        color: var(--secondary-color);
        text-align: center;
        margin-bottom: 40px;
    }

    .our-fleet-section .fleetPara {
        text-align: center;
        margin-bottom: 50px;
    }

.fleet-card {
    width: 100%;
    padding: 20px;
    background: var(--white-color);
    box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.1);
    margin-bottom: 15px;
}

    .fleet-card .fleet-1 {
        width: 100%;
        height: 200px;
        object-fit: contain;
        margin-bottom: 20px;
        background-color: #edf2fa;
        padding: 10px;
    }

    .fleet-card h3 {
        font-weight: 700;
        color: var(--secondary-color);
        margin-bottom: 10px;
        padding-bottom: 10px;
        border-bottom: 1px solid var(--primary-color);
        font-size: 22px;
    }

    .fleet-card .fleet-para {
        color: var(--black-color);
        margin-bottom: 10px;
        padding-bottom: 10px;
        border-bottom: 1px solid var(--primary-color);
    }

.fleet-features {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-bottom: 20px;
    font-size: 14px;
}

    .fleet-features i {
        color: var(--primary-color);
        padding-right: 7px;
    }

.fleet-Btn {
    width: 100%;
    text-align: center;
    border: none;
    padding: 10px 40px !important;
    background: var(--primary-color2);
    color: var(--white-color) !important;
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    transition: all 0.3s ease-in-out;
    animation: buttonanimation 2s ease infinite;
}

    .fleet-Btn:hover {
        background: var(--primary-color);
    }
/* our fleets section */
/* contact us section */
.contact-us {
    width: 100%;
    height: 100%;
    padding: 40px 0;
}

.topcontact-sec h2 {
    font-size: 42px;
    font-weight: 700;
    color: var(--secondary-color);
    text-align: center;
    margin-bottom: 40px;
}

.main-Contact {
    width: 100%;
    height: auto;
    padding: 50px;
    border: 5px solid var(--primary-color2);
}

    .main-Contact h3 {
        font-weight: 700;
        margin-bottom: 40px;
        color: var(--primary-color2);
    }

.CfotmInp {
    width: 100%;
    height: 100%;
}

    .CfotmInp .ininput {
        width: 100%;
        padding: 10px 20px;
        border: 2px solid var(--primary-color2);
        border-radius: 0;
        margin-bottom: 10px;
        font-family: "Poppins", sans-serif;
    }

        .CfotmInp .ininput:focus {
            outline: none;
            border: 2px solid var(--primary-color2);
            border-radius: 0;
        }

        .CfotmInp .ininput::placeholder {
            color: var(--black-color);
            font-family: "Poppins", sans-serif;
        }

.contact-Btn {
    text-align: center;
    border: none;
    padding: 10px 40px !important;
    background: var(--primary-color2);
    color: var(--white-color) !important;
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    transition: all 0.3s ease-in-out;
    animation: buttonanimation 2s ease infinite;
    margin-top: 20px;
}

    .contact-Btn:hover {
        background: var(--primary-color);
    }
/* contact us section */
/* footer section css */
.footer {
    width: 100%;
    height: 100%;
    padding: 40px 0;
    background: var(--secondary-color);
}

.left-footer-content {
    width: 100%;
    height: 100%;
}

    .left-footer-content .logo {
        width: 120px;
    }

    .left-footer-content .card {
        width: 250px;
    }

    .left-footer-content h2 {
        color: var(--white-color);
    }

    .left-footer-content p {
        font-size: 16px;
        color: var(--white-color);
    }

.center-footer-content {
    width: 100%;
    height: 100%;
    margin-left: 20px;
}

    .center-footer-content h2 {
        font-weight: 600;
        color: var(--white-color);
    }

.footer_ul {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
    padding: 6px;
    margin-top: 10px;
}

    .footer_ul .footer_li a {
        color: var(--white-color);
        transform: translateX(0px);
        transition: all 0.3s ease-in-out;
        display: flex;
        align-items: flex-start;
        gap: 5px;
    }

        .footer_ul .footer_li a:hover {
            transform: translateX(10px);
        }

        .footer_ul .footer_li a i {
            padding-right: 5px;
            margin-top: 4px;
        }

.info-contact {
    width: 100%;
    margin: 20px 0;
}

    .info-contact p a {
        color: var(--white-color);
        transition: all 0.3s ease-in-out;
    }

        .info-contact p a:hover {
            color: var(--primary-color);
        }

        .info-contact p a i {
            padding-right: 5px;
        }

    .info-contact p {
        margin-bottom: 10px;
        display: flex;
        align-items: flex-start;
        gap: 5px;
    }

        .info-contact p i {
            padding-right: 5px;
            margin-top: 3px;
        }

.last-footer-content h2 {
    font-weight: 600;
    color: var(--white-color);
}

.social-icons {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-top: 10px;
    gap: 10px;
}

.bootom-footer-section {
    width: 100%;
    background: var(--primary-color2);
    padding: 20px;
    color: var(--white-color);
    text-align: center;
}

.bottom-footer-content a {
    color: #ffffff;
    transition: all 0.3s ease-in-out;
    text-decoration: underline;
}

    .bottom-footer-content a:hover {
        color: var(--secondary-color);
    }
/* footer section css */
/* inner pages banner css */
.banner-section {
    width: 100%;
    height: 300px;
    padding: 100px;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../images/inner-banner-image.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

    .banner-section h2 {
        font-size: 52px;
        font-weight: 600;
        color: var(--white-color);
    }

.breadcrumb {
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}

.breadcrumb-item {
    color: var(--white-color);
}

    .breadcrumb-item a {
        color: var(--white-color);
    }

    .breadcrumb-item + .breadcrumb-item::before {
        color: var(--white-color);
    }

    .breadcrumb-item.active {
        color: var(--white-color);
    }
/* inner pages banner css */
/* inner about page css */
.service-heading {
    width: 100%;
    text-align: center;
    margin: 40px 0;
}

    .service-heading h3 {
        font-size: 24px;
        font-weight: 700;
        color: var(--white-color);
        background: var(--primary-color2);
        width: fit-content;
        margin: 0 auto;
        padding: 10px 40px;
        border-radius: 10px;
    }

.about-services-cards {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

    .about-services-cards .card-services {
        width: 100%;
        height: 100%;
        padding: 20px;
        background: var(--white-color);
        box-shadow: 0 10px 40px 0 rgb(23 166 154 / 45%);
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
    }
/* inner about page css */
/* inner pages css */
.content-ul {
    margin-left: 20px;
}

    .content-ul .content-li {
        list-style: disc;
        color: var(--primary-color2);
        margin-bottom: 10px;
    }

    .content-ul .content-li-2 {
        list-style: disc;
        color: var(--black-color);
        margin-bottom: 10px;
    }

        .content-ul .content-li-2 .font-bold {
            font-weight: 700;
        }

.font-bold {
    font-weight: 700;
}
/* inner pages css */
/* Faq section css */
.faq-section {
    width: 100%;
    padding: 40px 0;
}

.accordion-header .accordion-button {
    background: var(--primary-color2) !important;
    color: var(--white-color) !important;
}

    .accordion-header .accordion-button:focus {
        box-shadow: none !important;
    }

.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' viewBox='0 0 16 16'%3E%3Cpath d='M1.646 4.646a.5.5 0 0 1 .708 0L8 9.293l5.646-4.647a.5.5 0 1 1 .708.708l-6 5a.5.5 0 0 1-.708 0l-6-5a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' viewBox='0 0 16 16'%3E%3Cpath d='M1.646 4.646a.5.5 0 0 1 .708 0L8 9.293l5.646-4.647a.5.5 0 1 1 .708.708l-6 5a.5.5 0 0 1-.708 0l-6-5a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
}

.accordion-item {
    margin-bottom: 10px;
}
/* Faq section css */
/* contact border none */
.border-none {
    border: none !important;
}

.border-none-2 {
    border-radius: 25px;
    padding: 40px;
    box-shadow: 0 0 40px 0 rgba(0, 0, 0, 0.1) !important;
}

.marTop {
    margin-top: 0px !important;
}
/* contact border none */
/* testimonials css */
.testimonials-Btn {
    border: none;
    padding: 10px 40px !important;
    background: var(--primary-color2);
    color: var(--white-color) !important;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    transition: all 0.3s ease-in-out;
    animation: buttonanimation 2s ease infinite;
}

    .testimonials-Btn:hover {
        background: var(--primary-color);
    }

.feedback-section {
    width: 100%;
    padding: 40px 0;
}

.top-section-feedback {
    width: 100%;
}

.top-content-icons {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
}

    .top-content-icons i {
        font-size: 20px;
        color: gold;
    }

.add-testimonail {
    width: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.main-feedback {
    width: 100%;
    margin-top: 80px;
}

.feedback-card {
    width: 800px;
    padding: 20px;
    margin: 50px auto 0 auto;
    background: var(--white-color);
    text-align: center;
    box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.1);
    border-top: 5px solid var(--primary-color2);
    border-bottom: 5px solid var(--primary-color2);
    position: relative;
}

.top-icon-feed {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: var(--white-color);
    box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    border: 5px solid var(--primary-color2);
}

    .top-icon-feed i {
        font-size: 40px;
        color: var(--primary-color2);
    }

.feed-content {
    width: 100%;
    margin-top: 50px;
    padding: 0 10px;
}

    .feed-content .review {
        font-size: 16px;
        color: var(--black-color);
        margin-bottom: 20px;
    }

    .feed-content .name {
        font-size: 22px;
        font-weight: 700;
        color: var(--secondary-color);
    }

    .feed-content .designation {
        font-size: 14px;
        margin-top: 5px;
        font-weight: 700;
        color: var(--primary-color2);
    }
/* Slick arrows styling (optional but recommended) */
.slick-prev, .slick-next {
    background-color: var(--primary-color2);
    color: var(--white-color);
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    font-size: 14px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
}

.slick-prev {
    left: 120px;
}

.slick-next {
    right: 140px;
}

    .slick-prev:hover, .slick-next:hover {
        background-color: var(--primary-color);
    }
/* testimonials css */
/* add review css */
.CfotmInp .CImage {
    margin-bottom: 20px;
}

.add-review-Btn {
    text-align: center;
    border: none;
    padding: 10px 40px !important;
    background: var(--primary-color2);
    color: var(--white-color) !important;
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    transition: all 0.3s ease-in-out;
    animation: buttonanimation 2s ease infinite;
}

    .add-review-Btn:hover {
        background: var(--primary-color);
    }
/* add review css */
/* extra-top */
.extra-top {
    margin-top: 40px;
}
/* extra-top */
/* courier-service */
.about-image .courier-service {
    border: 10px solid var(--primary-color2);
    border-radius: 25px;
}
/* courier-service */

/* inner services css */
.sec-result {
    padding: 60px 0;
}

    .sec-result .upper-list {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 7px 16px;
        background: #e2fffd;
    }

        .sec-result .upper-list li {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

            .sec-result .upper-list li .icon-box {
            }

                .sec-result .upper-list li .icon-box .img-icon {
                    width: 60px;
                    height: 100%;
                    object-fit: contain;
                }

            .sec-result .upper-list li .text-box {
                padding: 0 10px;
            }

                .sec-result .upper-list li .text-box h6 {
                    font-size: 16px;
                    font-weight: 600;
                    color: #000;
                }

                .sec-result .upper-list li .text-box p {
                    font-size: 14px;
                }

    .sec-result .number-box {
        padding: 30px 40px;
    }

        .sec-result .number-box ul {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

            .sec-result .number-box ul li {
                width: 24%;
                position: relative;
            }

                .sec-result .number-box ul li .num-circle {
                    text-align: center;
                }

                    .sec-result .number-box ul li .num-circle h6 {
                        background-color: #edf2fa;
                        width: 50px;
                        height: 50px;
                        display: flex;
                        align-items: center;
                        justify-content: center;
                        border-radius: 50%;
                        font-size: 20px;
                        margin: 0 auto;
                        color: #000;
                        font-weight: 600;
                    }

                    .sec-result .number-box ul li .num-circle p {
                        font-size: 14px;
                        margin-top: 15px;
                        text-transform: uppercase;
                        color: #000;
                    }

    .sec-result .completed {
        background-color: #18aa9e !important;
        color: #ffffff !important;
    }

    .sec-result .for-line {
        position: relative
    }

        .sec-result .for-line::before {
            content: '';
            background-color: #0e2431;
            position: absolute;
            width: 67%;
            height: 4px;
            top: 30%;
            border-radius: 10px;
            left: 70%;
        }

    .sec-result .cancellation-box {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        padding: 20px;
        background-color: #000000bd;
    }

        .sec-result .cancellation-box .img-box {
            background-color: #fff;
            padding: 10px;
            border-radius: 10px;
        }

            .sec-result .cancellation-box .img-box .shield-img {
                width: 50px;
            }

        .sec-result .cancellation-box .text-box {
            padding-left: 10px;
        }

            .sec-result .cancellation-box .text-box p {
                line-height: 23px;
                color: #fff;
                font-size: 18px;
            }


.update-fleet-box {
    background: #e2fffd;
    margin: 20px 0;
    padding: 20px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

    .update-fleet-box .img-box {
        margin-bottom: 10px;
    }

        .update-fleet-box .img-box img {
            width: 100%;
            height: 120px;
            object-fit: contain;
        }

    .update-fleet-box .car-text {
        text-align: center;
        font-size: 14px;
        line-height: 18px;
        padding-bottom: 10px;
        font-weight: 700;
    }

    .update-fleet-box .private-text {
        font-size: 14px;
    }

    .update-fleet-box .star-list {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        padding: 7px 0 0;
    }

        .update-fleet-box .star-list li {
            padding: 0 1px;
        }

            .update-fleet-box .star-list li i {
                color: #ffffff;
                background-color: #0e2431;
                padding: 4px;
                border-radius: 5px;
            }

    .update-fleet-box .fleet-detail {
        padding: 0px 13px;
        border-right: 1px solid #bbbbbb;
        border-left: 1px solid #bbbbbb;
    }

        .update-fleet-box .fleet-detail h4 {
            font-size: 22px;
            font-weight: 600;
            padding-bottom: 5px;
            color: #000000;
        }

        .update-fleet-box .fleet-detail .passenger-list {
            display: flex;
            align-items: center;
        }

            .update-fleet-box .fleet-detail .passenger-list li {
                font-size: 13px;
                padding: 0 8px 0 0;
                font-weight: 600;
            }

                .update-fleet-box .fleet-detail .passenger-list li i {
                    font-size: 16px;
                }

        .update-fleet-box .fleet-detail .passenger-list-2 {
            padding: 10px 0;
        }

            .update-fleet-box .fleet-detail .passenger-list-2 li {
                font-size: 15px;
                padding: 3px 10px;
                border: 1px solid #19ada1;
                margin: 3px 0;
                border-radius: 6px;
                font-size: 12px;
                background-color: #19ada1;
                width: fit-content;
                color: #ffffff;
            }

                .update-fleet-box .fleet-detail .passenger-list-2 li i {
                    font-size: 16px;
                    padding-right: 5px;
                }

        .update-fleet-box .fleet-detail .info-btn {
            color: #f9b442;
            text-decoration: underline;
            font-weight: 500;
        }

    .update-fleet-box .rate-box {
        margin-top: 10%;
    }

        .update-fleet-box .rate-box h6 {
            font-size: 15px;
            margin-top: 4px;
        }

        .update-fleet-box .rate-box .prize-box {
            text-align: center;
            padding: 4px 0;
            font-size: 20px;
            line-height: 29px;
            color: #000;
            font-weight: 600;
        }

        .update-fleet-box .rate-box .done-btn {
            padding: 0px;
            border-radius: 5px;
            text-align: center;
            color: #000000;
            font-weight: 600;
        }

.right-card {
    background-color: #e2fffd;
    padding: 20px;
    margin-top: 15px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

    .right-card .top-heading {
        display: flex;
        align-items: center;
        padding: 10px 0 15px;
    }

        .right-card .top-heading i {
            font-size: 24px;
            padding-right: 10px;
            color: #000000;
        }

        .right-card .top-heading h5 {
            font-size: 22px;
            color: #000000;
        }

    .right-card .distance-box {
        padding: 20px 0;
        border-top: 1px solid #000000;
        border-bottom: 1px solid #000000;
    }

        .right-card .distance-box h6 {
            color: #000;
        }

        .right-card .distance-box ul {
            padding: 10px 0 0;
        }

            .right-card .distance-box ul li {
                font-size: 14px;
                padding: 5px 0px;
                color: #000;
            }

                .right-card .distance-box ul li i {
                    font-size: 16px;
                    color: #000000;
                    padding-right: 5px;
                }

    .right-card .cal-mile {
        padding: 10px 0 0;
    }

        .right-card .cal-mile li {
            font-size: 16px;
            padding: 5px 0;
            color: #000;
        }

            .right-card .cal-mile li i {
                padding-right: 5px;
                color: #000000;
            }

    .right-card .distance-box-2 ul li {
        font-size: 14px;
        padding: 5px 0;
        color: #000;
    }

        .right-card .distance-box-2 ul li i {
            font-size: 15px;
            color: #000000;
            padding-right: 3px;
        }

.ui-menu {
    height: 250px !important;
    overflow-y: scroll;
}

.Passenger-Information {
    background: #e2fffd;
    padding: 20px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

    .Passenger-Information h3 {
        font-size: 22px;
        font-weight: 600;
        padding-bottom: 5px;
        color: #000000;
    }

    .Passenger-Information .input-box {
        padding-bottom: 10px;
    }

        .Passenger-Information .input-box label {
            text-align: center;
            padding: 4px 0;
            font-size: 16px;
            font-weight: 600;
            line-height: 18px;
            color: #000;
            margin: 0;
        }

        .Passenger-Information .input-box .b-field {
            width: 100%;
            border: 1px solid #ccc !important;
        }

        .Passenger-Information .input-box p {
            font-size: 13px;
            padding: 4px 0;
        }

    .Passenger-Information .input-box-extra {
        height: 80px;
        display: flex;
        align-items: center;
        justify-content: flex-start;
    }

        .Passenger-Information .input-box-extra input {
            margin: 0 !important;
        }

        .Passenger-Information .input-box-extra label {
            padding-left: 10px;
        }

.ui-dialog .ui-dialog-content {
    overflow-y: hidden !important;
}

.ui-dialog .ui-dialog-buttonpane button {
    background: #000 !important;
    padding: 7px 10px !important;
    text-align: center !important;
    color: #ffffff !important;
    border-radius: 7px !important;
}

/*.ui-menu .ui-menu-item {
    width: 350px !important;
}*/

.loadingDiv {
    text-align: center;
    background: rgba(0,0,0,0.5) url(images/ajax-loader.gif) no-repeat right center;
    position: fixed;
    display: none;
    z-index: 99999999999;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
}

/************************** All Main Css End **************************/

/************************** media-query **************************/

@media only screen and (min-width: 1921px) and (max-width: 7368px) {
}

@media only screen and (min-width: 1600px) and (max-width: 1920px) {
}

@media only screen and (min-width: 1400px) and (max-width: 1599px) {
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    html {
        overflow-x: hidden;
    }

    .header .navbar-expand-lg .navbar-nav {
        gap: 5px;
    }

    .header .navbar-light .navbar-nav .nav-link {
        font-size: 15px;
        padding: 4px;
    }

    .header .header-Btn {
        padding: 10px 20px !important;
        font-size: 15px;
    }

    .hero h2 {
        font-size: 40px;
        text-align: center;
        text-shadow: 1px 1px 2px #000000d1;
    }

    .hero {
        height: auto;
        padding: 80px 0;
    }

    .bokking-eginer-main {
        padding: 20px;
    }

    .app-content {
        padding: 5px;
    }

        .app-content h3 {
            font-size: 28px;
        }

    .app-section .buttons {
        display: flex;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    html {
        overflow-x: hidden;
    }

    .header .navbar-expand-lg .navbar-nav {
        gap: 5px;
    }

    .header .navbar-light .navbar-nav .nav-link {
        font-size: 15px;
        padding: 4px;
    }

    .header .header-Btn {
        padding: 10px 20px !important;
        font-size: 15px;
    }

    .hero h2 {
        font-size: 40px;
        text-align: center;
        text-shadow: 1px 1px 2px #000000d1;
    }

    .hero {
        height: auto;
        padding: 80px 0;
    }

    .bokking-eginer-main {
        padding: 20px;
    }

    .app-content {
        padding: 5px;
    }

        .app-content h3 {
            font-size: 28px;
        }

    .app-section .buttons {
        display: flex;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    html {
        overflow-x: hidden;
    }

    .header .navbar-expand-lg .navbar-nav {
        gap: 5px;
    }

    .infocont {
        justify-content: center;
        flex-wrap: wrap;
        gap: 0 8px;
    }

    .social_icons {
        justify-content: center;
    }

    .header .navbar-brand .logo {
        width: 80px;
    }

    .navbar-light .navbar-toggler {
        border-color: rgb(255 255 255);
    }

    .navbar-light .navbar-toggler-icon {
        filter: brightness(0) saturate(100%) invert(95%) sepia(97%) saturate(14%) hue-rotate(213deg) brightness(104%) contrast(104%);
    }

    .hero h2 {
        font-size: 40px;
        text-align: center;
        text-shadow: 1px 1px 2px #000000d1;
    }

    .hero {
        height: auto;
        padding: 80px 0;
    }

    .bokking-eginer-main {
        padding: 20px;
    }

    .about-content {
        padding: 0;
        margin-bottom: 10px;
    }

        .about-content h3 {
            font-size: 26px;
        }

    .left-content-about {
        grid-template-columns: repeat(1, 1fr);
    }

    .about-img {
        border: 5px solid var(--primary-color2);
    }

    .services-heading h3 {
        font-size: 24px;
    }

    .services-heading p {
        margin-bottom: 10px;
    }

    .app-content {
        padding: 5px;
    }

        .app-content h3 {
            font-size: 28px;
        }

    .app-section .buttons {
        display: flex;
    }

    .our-fleet-section h2 {
        font-size: 30px;
        margin-bottom: 20px;
    }

    .fleet-card {
        padding: 15px;
    }

    .topcontact-sec h2 {
        font-size: 30px;
        margin-bottom: 30px;
    }

    .main-Contact {
        padding: 15px;
    }

        .main-Contact h3 {
            margin-bottom: 20px;
            font-size: 20px;
        }

    .center-footer-content {
        margin: 10px 0 10px 0;
    }

    .banner-section {
        height: 300px;
        padding: 0px;
    }

        .banner-section h2 {
            font-size: 30px;
        }

    .breadcrumb {
        margin-top: 5px;
    }

    .about-services-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .about-image .courier-service {
        border: 5px solid var(--primary-color2);
    }

    .sec-result {
        padding: 30px 0;
    }

        .sec-result .upper-list {
            display: none;
        }

            .sec-result .upper-list li {
                padding: 7px 0;
            }

                .sec-result .upper-list li .icon-box .img-icon {
                    width: 60px;
                }

        .sec-result .number-box {
            padding: 20px 10px;
        }

        .sec-result .for-line::before {
            left: 80%;
        }

        .sec-result .cancellation-box {
            align-items: center;
            flex-direction: column;
        }

            .sec-result .cancellation-box .text-box {
                padding: 10px;
                text-align: center;
            }

    .update-fleet-box .fleet-detail {
        padding: 10px 0px;
        border-right: unset;
        border-left: unset;
    }

    .update-fleet-box .rate-box {
        margin-top: 0%;
    }
}

@media only screen and (min-width: 481px) and (max-width: 767px) {
    html {
        overflow-x: hidden;
    }

    .header .navbar-expand-lg .navbar-nav {
        gap: 5px;
    }

    .infocont {
        justify-content: center;
        flex-wrap: wrap;
        gap: 0 8px;
    }

    .social_icons {
        justify-content: center;
    }

    .header .navbar-brand .logo {
        width: 80px;
    }

    .navbar-light .navbar-toggler {
        border-color: rgb(255 255 255);
    }

    .navbar-light .navbar-toggler-icon {
        filter: brightness(0) saturate(100%) invert(95%) sepia(97%) saturate(14%) hue-rotate(213deg) brightness(104%) contrast(104%);
    }

    .hero h2 {
        font-size: 40px;
        text-align: center;
        text-shadow: 1px 1px 2px #000000d1;
    }

    .hero {
        height: auto;
        padding: 40px 0;
    }

    .bokking-eginer-main {
        padding: 20px;
    }

    .about-content {
        padding: 0;
        margin-bottom: 10px;
    }

        .about-content h3 {
            font-size: 26px;
        }

    .left-content-about {
        grid-template-columns: repeat(1, 1fr);
    }

    .about-img {
        border: 5px solid var(--primary-color2);
    }

    .services-heading h3 {
        font-size: 24px;
    }

    .services-heading p {
        margin-bottom: 10px;
    }

    .app-content {
        padding: 5px;
    }

        .app-content h3 {
            font-size: 28px;
        }

    .app-section .buttons {
        display: flex;
    }

    .our-fleet-section h2 {
        font-size: 30px;
        margin-bottom: 20px;
    }

    .fleet-card {
        padding: 15px;
    }

    .topcontact-sec h2 {
        font-size: 30px;
        margin-bottom: 30px;
    }

    .main-Contact {
        padding: 15px;
    }

        .main-Contact h3 {
            margin-bottom: 20px;
            font-size: 20px;
        }

    .center-footer-content {
        margin: 10px 0 10px 0;
    }

    .banner-section {
        height: 220px;
        padding: 0px;
    }

        .banner-section h2 {
            font-size: 30px;
        }

    .breadcrumb {
        margin-top: 5px;
    }

    .about-services-cards {
        grid-template-columns: repeat(1, 1fr);
        gap: 15px;
    }

    .about-image .courier-service {
        border: 5px solid var(--primary-color2);
    }

    .welcome {
        height: 350px !important;
        background-size: cover !important;
    }

    .WelComeText {
        margin-top: 210px !important;
        margin-left: 40px !important;
        line-height: 19px !important;
    }

    .payfield {
        width: auto !important;
    }

    .sec-result {
        padding: 30px 0;
    }

        .sec-result .upper-list {
            display: none;
        }

            .sec-result .upper-list li {
                padding: 7px 0;
            }

                .sec-result .upper-list li .icon-box .img-icon {
                    width: 60px;
                }

        .sec-result .number-box {
            padding: 20px 10px;
        }

        .sec-result .for-line::before {
            left: 80%;
        }

        .sec-result .cancellation-box {
            align-items: center;
            flex-direction: column;
        }

            .sec-result .cancellation-box .text-box {
                padding: 10px;
                text-align: center;
            }

    .update-fleet-box .fleet-detail {
        padding: 10px 0px;
        border-right: unset;
        border-left: unset;
    }

    .update-fleet-box .rate-box {
        margin-top: 0%;
    }
}

@media only screen and (min-width: 300px) and (max-width: 480px) {
    html {
        overflow-x: hidden;
    }

    .header .navbar-expand-lg .navbar-nav {
        gap: 5px;
    }

    .infocont {
        justify-content: center;
        flex-wrap: wrap;
        gap: 0 8px;
    }

    .social_icons {
        justify-content: center;
    }

    .header .navbar-brand .logo {
        width: 80px;
    }

    .navbar-light .navbar-toggler {
        border-color: rgb(255 255 255);
    }

    .navbar-light .navbar-toggler-icon {
        filter: brightness(0) saturate(100%) invert(95%) sepia(97%) saturate(14%) hue-rotate(213deg) brightness(104%) contrast(104%);
    }

    .hero h2 {
        font-size: 40px;
        text-align: center;
        text-shadow: 1px 1px 2px #000000d1;
    }

    .hero {
        height: auto;
        padding: 40px 0;
    }

    .bokking-eginer-main {
        padding: 20px;
    }

    .about-content {
        padding: 0;
        margin-bottom: 10px;
    }

        .about-content h3 {
            font-size: 26px;
        }

    .left-content-about {
        grid-template-columns: repeat(1, 1fr);
    }

    .about-img {
        border: 5px solid var(--primary-color2);
    }

    .services-heading h3 {
        font-size: 24px;
    }

    .services-heading p {
        margin-bottom: 10px;
    }

    .app-content {
        padding: 5px;
    }

        .app-content h3 {
            font-size: 28px;
        }

    .app-section .buttons {
        display: flex;
    }

    .our-fleet-section h2 {
        font-size: 30px;
        margin-bottom: 20px;
    }

    .fleet-card {
        padding: 15px;
    }

    .topcontact-sec h2 {
        font-size: 30px;
        margin-bottom: 30px;
    }

    .main-Contact {
        padding: 15px;
    }

        .main-Contact h3 {
            margin-bottom: 20px;
            font-size: 20px;
        }

    .center-footer-content {
        margin: 10px 0 10px 0;
    }

    .banner-section {
        height: 220px;
        padding: 0px;
    }

        .banner-section h2 {
            font-size: 30px;
        }

    .breadcrumb {
        margin-top: 5px;
    }

    .about-services-cards {
        grid-template-columns: repeat(1, 1fr);
        gap: 15px;
    }

    .about-image .courier-service {
        border: 5px solid var(--primary-color2);
    }

    .welcome {
        height: 350px !important;
        background-size: cover !important;
    }

    .WelComeText {
        margin-top: 210px !important;
        margin-left: 40px !important;
        line-height: 19px !important;
    }

    .payfield {
        width: auto !important;
    }

    .sec-result {
        padding: 30px 0;
    }

        .sec-result .upper-list {
            display: none;
        }

            .sec-result .upper-list li {
                padding: 7px 0;
            }

                .sec-result .upper-list li .icon-box .img-icon {
                    width: 60px;
                }

        .sec-result .number-box {
            padding: 20px 10px;
        }

        .sec-result .for-line::before {
            left: 80%;
        }

        .sec-result .cancellation-box {
            align-items: center;
            flex-direction: column;
        }

            .sec-result .cancellation-box .text-box {
                padding: 10px;
                text-align: center;
            }

    .update-fleet-box .fleet-detail {
        padding: 10px 0px;
        border-right: unset;
        border-left: unset;
    }

    .update-fleet-box .rate-box {
        margin-top: 0%;
    }
}
