:root {
    --page-text-color: #0B0C0D;
    --page-secondary-bg: #FFD700;
    --page-primary-bg: #008080;
    --page-light-bg: #FFF8DC;
    --page-fade-bg: #F5F5FB;
    --text-grey: #3F4751;
    --tick-icon: url("../images/dubai-img/white-check.svg");
    --tick-yellow-icon: url("../images/taxi-img/tick-yellow.webp");
}

.button {
    border-radius: unset !important;
    font-family: 'Gilroy' !important;
    padding: 12px 16px !important;
}

.page-secondary-bg {
    background-color: var(--page-secondary-bg);
}

.page-primary-bg {
    background: var(--page-primary-bg);
}

.page-light-bg {
    background-color: var(--page-light-bg);
}

.page-fade-bg {
    background-color: var(--page-fade-bg);
}

.text-grey {
    color: var(--text-grey);
}

.button-primary {
    background-color: var(--page-secondary-bg);
    color: var(--page-text-color);
}

.button-primary:hover svg path {
    stroke: var(--white-color);
    fill: unset !important;
}

.button-primary-alt {
    background-color: var(--page-text-color) !important;
    color: var(--white-color);
}

.z-indexup {
    position: relative;
    z-index: 1;
}

.circle-icon,
.border-0 {
    border: none;
}

.link-active {
    color: var(--primary-color-600) !important;
    text-decoration: underline !important;
    font-weight: 600;
    font-size: calc(1rem + 0.208vw);
}

.link-blk {
    color: var(--page-text-color) !important;
    text-decoration: underline !important;
    font-size: calc(1rem + 0.208vw);
    font-weight: 600;
}

/* Hero Section */

.hero-section {
    background-color: var(--page-primary-bg);
    background-image: url(../images/taxi-img/banner-bg.webp);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.title {
    position: relative;
}

.title::before {
    content: '';
    background-image: url(../images/taxi-img/title-shape.webp);
    width: 100%;
    height: 20px;
    position: absolute;
    bottom: -12px;
    background-size: contain;
    background-repeat: no-repeat;
}

.tick-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.tick-list li {
    font-size: 18px;
    font-weight: 500;
    padding: 0 0 0 32px;
    position: relative;
}

.tick-list li::before {
    content: '';
    background-image: var(--tick-icon);
    display: inline-block;
    position: absolute;
    inset: 7px auto 0 0;
    width: 20px;
    height: 20px;
    background-size: 20px;
    background-repeat: no-repeat;
}

/* Counter */

.page-counter {
    background-color: var(--page-secondary-bg);
    padding: 80px 80px;
}

.counter-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px 0;
}

.counter-theme {
    color: var(--page-text-color);
    border-right: 1.5px solid #00000040;
    padding: 0 28px;
    width: 33.33%;
}

.highlight__link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: relative;
    width: fit-content;
    color: var(--page-text-color) !important;
}

.highlight__link::after {
    content: '';
    background-image: url(../images/intelligence-images/highlight-underline.webp);
    height: 30px;
    width: 100%;
    position: absolute;
    top: 100%;
    right: 0;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    filter: invert(1);
}

.highlight__link svg {
    transition: all 0.3s;
}

.highlight__link:hover svg {
    transition: all 0.3s;
    transform: translateX(10px);
}

/* App Block */

.app-block {
    background: var(--page-light-bg);
}

.app-content {
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.app-mockup img {
    object-fit: cover;
}

.case-grid {
    display: flex;
    align-items: flex-start;
    gap: 50px;
    margin-bottom: 30px;
}

/* Product Block */

.product-block {
    padding: 25px 25px;
    transition: all 0.3s;
    background: var(--white-color);
    border: 1px solid #00000033;
}

.product-block:hover {
    background-color: var(--page-light-bg);
    cursor: pointer;
}

.product-block .highlight__link::after {
    height: 14px;
}

.product-block:hover .link,
.product-block .link:hover {
    color: var(--primary-color-600) !important;
}

/* Booking Block */

.booking-block {
    padding: 20px 20px;
    border: 1.5px solid #0000001A;
    transition: all 0.3s;
}

.booking-block:hover {
    background-color: var(--page-light-bg);
    border-color: var(--page-secondary-bg);
    transform: translateY(-5px);
}

/* Technology Slider */

.technology-slider {
    width: 100%;
    overflow-x: hidden;
    padding: 0 0 6px;
}

.technology-slider .swiper-slide {
    height: auto !important;
}

.technology-block {
    padding: 20px 20px 0;
    transition: all 0.3s;
    border: 1px solid #00000026;
    background: var(--white-color);
    height: 100%;
    cursor: none;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.techno-icon {
    padding: 0 30px;
    margin: 0 0 -1px;
}

.technology-block:hover {
    background: var(--white-color);
}

.cursor {
    position: fixed;
    left: var(--cursor-x);
    top: var(--cursor-y);
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    font-weight: 600;
    background:var(--page-primary-bg);
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0);
    z-index: 2;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.2s, transform 0.2s;
}

body.show-custom-cursor .cursor {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.slider-btn {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    gap: 10px;
    justify-content: center;
    margin: 50px 0 0;
}

.slider-btn .swiper-pagination,
.slider-btn .swiper-pagination-dots,
.slider-btn .swiper-pagination-number {
    display: flex;
    align-items: center;
    position: static;
    width: auto;
}

.slider-btn .swiper-pagination-bullet {
    background: var(--white-color) !important;
}

.slider-btn .swiper-pagination-bullet-active {
    opacity: var(--swiper-pagination-bullet-opacity, 1);
    background: var(--white-color) !important;
    width: 28px !important;
    border-radius: 4px;
}

.swiper-button-next,
.swiper-button-prev {
    width: 46px;
    height: 46px;
    min-width: 46px;
    border: 1px solid var(--white-color);
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: static !important;
    color: var(--white-color);
    margin: unset !important;
    z-index: 1 !important;
    transition: ease-in 0.3s;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: var(--page-primary-bg);
    border-color: var(--white-color);
    color: var(--white-color);
    transition: ease-in 0.3s;
}

.swiper-button-next:after,
.swiper-button-prev:after  {
    font-size: 16px;
}

/* Service Tab */

.process-tab-wrap {
    padding: 40px;
    background-color: var(--page-primary-bg);
    color: var(--white-color);
}

.tab-menu ul {
    padding: 0;
    list-style: none;
    display: flex;
    align-items: center;
    gap: 20px;
    max-width: 700px;
    margin: 0 auto 50px;
}

.tab-menu ul li {
    width: 100%;
    text-align: center;
}

.tab-menu ul li a {
    padding: 12px 20px;
    width: 100%;
    max-width: 250px;
    display: block;
    transition: 0.5s all;
    color: var(--black-color);
    background: var(--white-color);
    font-weight: 600;
    text-decoration: none;
}

.tab-menu ul li a:hover,
.tab-menu ul li a.active {
    background: var(--page-secondary-bg);
}

.tab-box .tick-list li::before {
    background-image: var(--tick-yellow-icon);
}

.tab-box {
    display: none;
    padding: 0 160px;
}

.taxi-tab-wrapper #tab-3.tab-box img {
    position: relative;
    right: -200px;
}

.video-block {
    width: 100%;
    height: 450px;
    overflow: hidden;
}

.video-block iframe {
    width: 100%;
    height: 100%;
}

/* Business Block */

.b-app-block {
    padding: 20px 20px;
    background: var(--white-color);
    border: 1px solid transparent;
    transition: all 0.3s;
    text-align: center;
    width: 100%;
}

.b-app-icon {
    width: 70px;
    height: 70px;
    background: #1E90FF;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    margin-inline: auto;
    border: 1px solid transparent;
}

.b-app-block:hover {
    border-color: #1E90FF;
}

.b-blk-2:hover {
    border-color: #F6AC8B;
}

.b-blk-2 .b-app-icon{
    background: #F6AC8B;
}

.b-blk-3:hover {
    border-color: #AD6BA9;
}

.b-blk-3 .b-app-icon{
    background: #AD6BA9;
}

.b-blk-4:hover {
    border-color: #5277F7;
}

.b-blk-4 .b-app-icon{
    background: #5277F7;
}

.b-blk-5:hover {
    border-color: #64BB46;
}

.b-blk-5 .b-app-icon{
    background: #64BB46;
}

.b-blk-6:hover {
    border-color: #043059;
}

.b-blk-6 .b-app-icon{
    background: #043059;
}

.circle {
    all: unset !important;
}

/* Process Block */

.process-block {
    padding: 20px 20px;
    background-color: transparent;
    color: var(--white-color);
    transition: all 0.3s;
}

.process-count {
    -webkit-text-fill-color: var(--page-primary-bg);
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: #FFFFFF4D;
    transition: all 0.3s;
}

.process-block:hover .process-count {
    -webkit-text-fill-color: var(--white-color);
}

.process-block:hover {
    background-color: #014D4D24;
}

/* Development Block */

.development-block {
    background: var(--page-fade-bg);
    border: 1px solid transparent;
    padding: 20px 20px;
    transition: all 0.3s;
}

.development-block:hover {
    background-color: var(--page-light-bg);
    border-color: var(--page-secondary-bg);
    transform: translateY(-5px);
}

.development-block:hover .link-blk {
    color: var(--primary-color-600) !important;
}

/* Testimonial Slider */

.testimonial-slider {
    background: var(--page-fade-bg);
}

.button-group {
    display: flex;
    align-items: center;
    gap: 10px;
}

.test-nav.disable {
    opacity: 0.5;
}

.test-nav {
    height: 40px;
    width: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    border: 0;
    background-color: var(--white-color);
    box-shadow: 0px 0px 20px 0px rgba(34, 42, 65, 0.15);
}

.test-nav path {
    stroke: var(--page-text-color);
    transition: all 0.3s ease;
}

.test-nav:hover path {
    stroke: var(--page-text-color);
}

.test-nav:hover {
    background-color: var(--page-secondary-bg);
}

.monial-slider {
    padding-top: 40px;
    border-top: 1px solid rgba(105, 107, 112, .4);
}

.monial-wrap {
    display: flex;
    gap: 20px 40px;
    align-items: center;
}

.monial-img {
    flex: 0 0 auto;
    max-width: 240px;
    aspect-ratio: 1/1;
    border-radius: 50%;
    overflow: hidden;
}

.monial-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* Cta Wrapper */

.cta-block {
    background-color: var(--page-secondary-bg);
    padding: 0 15px 0 80px;
}

.cta-intro {
    padding: 40px 70px;
    background-color: var(--page-secondary-bg);
}

.cta-wrapper {
    background-image: url(../images/taxi-img/cta-bg.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom;
}

.cta-process {
    background-color: var(--page-primary-bg);
    padding: 20px 20px;
    color: var(--white-color);
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.cta-wrapper .tick-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.cta-wrapper .tick-list li::before {
    filter: invert(1);
}

.aroow-icon {
    position: absolute;
    top: 30px;
    right: 0;
}

.cta-img {
    margin: -60px 0 0;
}

.cta-shape h2::before {
    content: '';
    background-image: url(../images/taxi-img/title-arrow.webp);
    width: 70px;
    height: 72px;
    position: absolute;
    background-size: contain;
    background-repeat: no-repeat;
    top: -40px;
    left: -50px;
}

main .accordion-flush .accordion-item .accordion-button.collapsed {
    padding: 34px 0;
    font-size: 22px;
}

.svg-block {
    padding: 20px 20px;
    background: var(--page-light-bg);
    transition: all 0.3s;
    border: 1px solid transparent;
}

.svg-block:hover {
    box-shadow: 6px 8px 1px var(--page-secondary-bg);
    border-color: var(--page-secondary-bg);
}

/* Responsive */

@media (max-width: 1599px) {

    .padding-left {
        --page-width: 1200px;
        padding-left: calc(50% - (var(--page-width) / 2) + 12px);
    }

}

@media only screen and (max-width: 1599px) {

    .app-content {
        padding: 20px 20px;
    }

    .aroow-icon {
        right: -50px;
        max-width: 100px;
    }

    .tab-box {
        padding: 0 50px;
    }

    .taxi-tab-wrapper #tab-3.tab-box img {
        right: -91px;
    }
}

@media only screen and (max-width: 1200px) {

    .page-counter {
        padding: 50px 50px;
    }

    .cta-block {
        padding: 0 15px 0 50px;
    }

    .aroow-icon {
        display: none;
    }
}

@media only screen and (max-width: 991px) {

    .slider-btn {
        display: flex !important;
    }

    .text-align-center {
        text-align: center;
    }

    .highlight__link {
        margin: 0 auto 30px;
    }

    .page-counter {
        padding: 50px 20px;
    }

    .cta-img {
        margin: 40px 0 0;
    }

    .tab-box {
        padding: 0;
    }

    .cta-block {
        padding: 40px 20px 0;
    }

    .cta-intro {
        padding: 40px 20px;
    }

    .cta-shape h2::before {
        display: none;
    }

    .product-block .highlight__link {
        margin: 0 0 20px;
    }

    .technology-slider {
        padding: 0 0 6px 15px !important;
    }

    .tab-menu ul {
        max-width: 100%;
    }

    .taxi-tab-wrapper #tab-3.tab-box img {
        right: -40px;
    }
}

@media only screen and (max-width: 767px) {

    .counter-grid {
        justify-content: space-between;
    }

    .counter-theme {
        padding: 0 15px;
        width: 49%;
        text-align: center;
    }

    .counter-grid .counter-theme:nth-child(2), .counter-grid .counter-theme:nth-child(4) {
        border: none;
    }

    .counter-grid .counter-theme:nth-child(3) {
        border-right: 1.5px solid #00000040 !important;
    }

    .product-block {
        padding: 20px 20px;
    }

    .process-tab-wrap {
        padding: 40px 20px;
    }

    .monial-wrap {
        flex-direction: column;
    }

    .monial-img {
        max-width: 150px;
    }

    .monial-content {
        text-align: center;
    }

    .monial-content .stars-list {
        justify-content: center;
    }

    .taxi-tab-wrapper #tab-3.tab-box img {
        right: -20px;
    }
}

@media only screen and (max-width: 500px) {

    .page-counter {
        padding: 40px 10px;
    }

    .case-grid {
        flex-direction: column;
        gap: 20px;
    }

    .tab-menu ul {
        flex-wrap: wrap;
    }

    .tab-menu ul li a {
        max-width: 100%;
    }

    .cta-wrapper .tick-list {
        grid-template-columns: repeat(1, 1fr);
    }
}

