@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');

* {
    margin: 0%;
    padding: 0%;
    box-sizing: border-box;
    font-family: "Poppins", serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Poppins", serif;
    font-weight: 700 !important;
}

header img {
    object-fit: contain;
}

.here-section {
    background-image: linear-gradient(#000000a8, #000000a8), url(../images/banner/hero-banner.webp);
    width: 100%;
    height: 100%;
    background-position: center;
    background-size: cover;
}

.here-section h1 {
    font-size: 45px;
    font-weight: 700;
}

.form-text-color {
    color: #CF0017;
    font-weight: 600;
}

input:focus,
input:active,
textarea:focus,
textarea:active, select:active, select:focus {
    outline: none;
    border: none;
}

input,
textarea, select {
    background-color: #FE90003D;
    margin-top: 15px;
}

input::placeholder,
textarea::placeholder {
    color: black;
}

#submit {
    background-color: #FE9000;
    color: black !important;
}
.bodyText p{
    color: #CF0017;
}
.bg-orange {
    background-color: #FE9000;
    width: 35px;
    height: 35px;
    position: absolute;
    top: 0px;
    left: 0px;
    border-radius: 6px 0px 35px 0px;
}

/* .overflowhidden{
    overflow: hidden;
} */

.bg-orange1 {
    background-color: #FE9000;
    width: 35px;
    height: 35px;
    position: absolute;
    right: 0px;
    bottom: -16px;
    border-radius: 35px 0px 5px 0px;
}

.bg-raod-img {
    position: relative;
}

.maxtra-taxi {
    position: absolute;
    margin-top: -60px;
    left: 37px;
    width: 100px;
    animation: moveTaxi 10s linear infinite;
    /* Control speed with duration */
    overflow: hidden;
}

.taxi-container {
    overflow: hidden;
}

.road img {
    object-fit: cover;
}




@keyframes moveTaxi {
    0% {
        left: 0px;
        /* Start from the left, just outside the view */
    }

    100% {
        left: 92%;
        /* Move to the right, just outside the view */
    }
}






.bg-light-orange {
    background-color: #FE900033;
    width: 100%;
    height: 100%;
}



.bg-same {
    background-color: #FE9000;
    display: block;
    color: rgb(0, 0, 0);
    text-align: center;
    padding: 8px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
}






.relatives .text-absolute {
    position: absolute;
    bottom: 45px;
    left: 13px;
    right: 13px;
    color: white;
    font-size: 22px;
    font-weight: 600;
    line-height: 34px;
    text-align: center;
}

.relatives img {
    border-radius: 10px;
    transition: 0.5s ease-in-out;
    width: 100%;
    height: 100%;
}


.relatives {
    position: relative;
    overflow: hidden;
    transition: 0.5s ease-in-out;
}

.relatives::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: #00000054; */
    background-image: linear-gradient(to bottom, #00000000, #000);
    border-radius: 10px;
}


.business-banner {
    background-image: url(../images/banner/bussiness-banner.webp);
}

.bg-developer-img {
    background-image: url(../images/banner/app-development-ser.webp);
    background-position: center;
    background-size: cover;
    width: 100%;
    height: 100%;
}

.tabs {
    display: flex;
    margin-bottom: 10px;
}

.tab-button {
    padding: 10px 20px;
    cursor: pointer;
    border: none;
    background-color: transparent;
    margin-right: 5px;
    transition: background-color 0.3s;
}

.tab-button.active {
    /* background-color: #ccc; */
    border-bottom: 3px solid #FE9000 !important;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.customer-img img {
    background-color: #FE900033;
    padding: 5px;
    border-radius: 10px;
}

.design-text {
    background-color: transparent;
    color: transparent;
    -webkit-text-stroke: 1.5px #FE9000;
    text-shadow: 0 0 0 #fff;
    transition: all 250ms;
    font-size: 30px;
}

.customer-pannel-img img {
    width: 100%;
    height: 480px;
    object-fit: contain;
    display: flex;
    justify-content: center;
    align-items: center;
}



.technology {
    background-image: url(../images/banner/technology-banner.webp);
    width: 100%;
    height: 100%;
    background-position: center;
    background-size: cover;
}


.tech-img img {
    width: 70px;
    height: 70px;
    object-fit: contain;
}

.company-logo img {
    width: 150px;
    height: 150px;
    object-fit: contain;
    background-color: #FBDED0;
    padding: 10px;
    border-radius: 10px;
    border: 1px solid #FE9000;
    box-shadow: 11px -2px 1px #fe900054;
    margin: 0 40px;
}


.logo-slider {
    overflow: hidden;
    /* padding: 30px 0 0 0; */
    white-space: nowrap;
    position: relative;
}

.logo-slider:hover .logos-slide {
    animation-play-state: paused;
}

.logos-slide {
    display: inline-block;
    animation: 45s slide infinite linear;
}



@keyframes slide {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-100%);
    }
}


.app-logo {
    border: 1px solid #FE9000;
    padding: 10px;
    border-radius: 50%;
    /* line-height: 50px; */
    display: flex;
    justify-content: center;
    align-items: center;
    height: 150px;
    width: 150px;
    box-shadow: gray 0px 0px 10px inset;
    transition: 0.5s ease-in-out;
}

.app-logo:hover {
    box-shadow: #FE9000 0px 0px 10px;
    transform: scale(1.08);
}

.app-logo img {
    width: 70px;
    height: 70px;
    object-fit: contain;
}

.bg-choose-us {
    background-image: linear-gradient(to right, #FDFDFD, #FE9000);
    /* padding: 120px; */
}

.rotate img {
    animation: rotation 8s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

@keyframes rotation {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(359deg);
    }
}


.phone-img img {
    position: absolute;
    left: 30%;
    top: 37px;
    width: 157px;
}

marqee {
    overflow: hidden;
}

.choose-img img {
    background-color: white;
    padding: 5px;
    border-radius: 5px;
}

.choose-img p {
    font-size: 13px;
}

button:active,
button:focus {
    background-color: transparent;
    border: none !important;
    box-shadow: none !important;
    outline: none !important;
}

.bgorange {
    background-color: #FE9000;
    color: white;
    border-radius: 50%;
    display: block;
    padding: 10px;
    width: 40px;
    height: 40px;
    text-align: center;
    font-size: 22px;
    font-weight: bold;
}

.accordion-item:first-of-type>.accordion-header .accordion-button,
.accordion-button {
    background-color: #FE900040 !important;
    border-radius: 50px !important;
    padding: 5px 10px 5px 4px !important;
}

.accordion-item {
    border: none !important;
    margin-top: 20px;
}

.accordion-button:not(.collapsed) {
    background-color: #FE900040 !important;
    border-radius: 50px !important;
    padding: 5px 10px 5px 4px !important;
    color: rgb(0, 0, 0) !important;
    font-weight: 600;
}

.text-color {
    color: #FE9000;
}

.footer-img {
    background-image: url(../images/banner/footer-map.webp), linear-gradient(#FE90001A, #FE90001A);
    width: 100%;
    height: 100%;
}

.circle {
    background-color: #CF0017;
    padding: 10px;
    border-radius: 50%;
    display: block;
    width: 20px;
    height: 20px;
}

.circle {
    background-color: #CF0017;
    padding: 10px;
    border-radius: 50%;
    display: block;
    width: 20px;
    height: 20px;
}

.circleredgreen {
    background-color: forestgreen;
    padding: 10px;
    border-radius: 50%;
    display: block;
    width: 20px;
    height: 20px;
}

.circleredgblue {
    background-color: navy;
    padding: 10px;
    border-radius: 50%;
    display: block;
    width: 20px;
    height: 20px;
}


.process-img,
.process-imgg {
    text-align: center;
    height: 100%;
    width: 120px;
    position: relative;
}

.process-img img,
.process-imgg img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border: 1px solid #FE9000;
    border-radius: 50%;
    padding: 10px;
    box-shadow: #fe9000a1 0px 0px 10px inset;

}

.process-img::after {
    content: "";
    background-image: url(../images/icons/process.webp);
    position: absolute;
    width: 47px;
    height: 20px;
    /* background-color: red; */
    top: 25px;
    right: -60px;
}

.line-img {
    position: absolute;
    position: absolute;
    top: -49px;
    left: -9%;
    z-index: -1;
}

.line-img img {
    width: 100%;
    height: 400px;
    object-fit: contain;
}

.taxi-img {
    display: flex;
    justify-content: end;
}


@media screen and (max-width: 640px) {
    .here-section h1 {
        font-size: 35px;
    }

    .tab-button p {
        display: none;
    }

    .line-img {
        display: none;
    }

    .taxi-img {
        display: flex;
        justify-content: center !important;
    }

 
    

    .process-img::after {
        display: none;
    }


    .how-to-img {
        top: 40% !important;
        width: 50px;
    }

    .tech-img{
        justify-content: center !important;
    }
}


@media screen and (max-width: 768px) {

    .how-to-img{
        top: 41% !important;
        width: 50px;
    }

    .d-imf-none{
        display: none;
    }
}


@media screen and (max-width: 1080px) {
    .taxi-img {
        display: flex;
        justify-content: center !important;
    }

    /* .process-img::after{
        display: none;
    } */

    .revres {
        flex-direction: column-reverse;
    }

    .simple-none {
        display: none !important;
    }

 


    .maxtra-taxi {
        position: absolute;
        margin-top: -60px;
        left: 37px;
        width: 100px;
        animation: moveTaxi 2s linear infinite;
        /* Control speed with duration */
        overflow: hidden;
    }

    @keyframes moveTaxi {
        0% {
            left: 0px;
            /* Start from the left, just outside the view */
        }

        100% {
            left: 72%;
            /* Move to the right, just outside the view */
        }
    }
}





.technology .rounded {
    border-radius: 50px 0px 50px 0px !important;

}




.customer-hover-img {
    transition: 0.5s ease-in-out;
    cursor: pointer;
    padding: 5px;
    border-radius: 5px;
}

.driver-panel-hover {
    transition: 0.5s ease-in-out;
    cursor: pointer;
    padding: 5px;
    border-radius: 5px;
}

.admin-img-hover {
    transition: 0.5s ease-in-out;
    cursor: pointer;
    padding: 5px;
    border-radius: 5px;
}

.driver-panel-hover:hover {
    box-shadow: 0px 0px 5px #FE9000;
    /* padding: 10px; */
    border-radius: 4px;
}

.customer-hover-img:hover {
    box-shadow: 0px 0px 5px #FE9000;
    /* padding: 10px; */
    border-radius: 4px;
}



.admin-img-hover:hover {
    box-shadow: 0px 0px 5px #FE9000;
    /* padding: 10px; */
    border-radius: 4px;
}
.dispatch-img-hover:hover {
    box-shadow: 0px 0px 5px #FE9000;
    /* padding: 10px; */
    border-radius: 4px;
}

.dispatch-img-hover {
    transition: 0.5s ease-in-out;
    cursor: pointer;
    padding: 5px;
    border-radius: 5px;
}


.active-cus {
    box-shadow: 0px 0px 5px #FE9000;
    /* padding: 10px; */
    border-radius: 4px;
    /* background-color: #FE9000;
    color: white !important; */
}

.how-to-img {
    position: absolute;
    top: 48%;
    left: 0;
    z-index: 1;

    animation: hottoimg 10s linear infinite;
}

@keyframes hottoimg {
    0% {
        left: 0px;
        /* Start from the left, just outside the view */
    }

    100% {
        left: 92%;
        /* Move to the right, just outside the view */
    }
}