﻿.about-section .section-heading h2 {
    font-size: 36px;
    line-height: 42px;
    margin-bottom: 20px;
}

.about-img {
    position: relative;
    margin-top: -80px;
    z-index: 1;
}

/* .about-img:before {
    background-color: #000;
    border-radius: 2px;
    transform: skew(-20deg, 0deg);
    content: "";
    width: 200px;
    height: calc(100% + 70px);
    position: absolute;
    right: 200px;
    bottom: -80px;
    z-index: -1;
} */

.about-img img {
    border-radius: 3px;
}

.about-img .about-img1 {
    max-width: 300px;
    transform: translate(20px, 40px);
}

.about-img .about-img2 {
    max-width: 200px;
    position: absolute;
    right: 80px;
    bottom: 0;
}

.round-text {
    position: absolute;
    right: 100px;
    top: 60px;
}

.round-text img {
    animation-name: spin;
    animation-duration: 15s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}

.round-text:before {
    background-image: url(../img/mxuberfav.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 30%;
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.about-info {
    display: flex;
    align-items: flex-start;
    column-gap: 40px;
}

.about-info li {
    display: flex;
    column-gap: 15px;
}

.owner-thumb {
    width: 80px;
    height: 80px;
    border-radius: 50%;
}

.signature {
    width: 140px;
}

.about-info li h2 a {
    color: #000;
    font-weight: 700;
    margin: 0;
}

.owner h4,
.about-info li h2 span {
    font-size: 17px;
    font-weight: 500;
    line-height: 1;
    color: #666;
    display: block;
    margin-bottom: 5px;
}

.owner h4 {
    margin: 0;
}

/*=== 1.1 Video Box ===*/
.video-box-inner {
    position: relative;
    text-align: right;
}

.video-box-inner>img {
    width: 400px;
    border-radius: 5px;
}

.video-box {
    width: 250px;
    border-radius: 5px;
    position: absolute;
    left: 30px;
    bottom: -30px;
}

.video-box>img {
    width: 100%;
    border-radius: 5px;
}

.video-box .play-btn {
    background-color: #000;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    -webkit-box-shadow: 0 10px 33.25px 1.75px rgba(0, 27, 103, .35);
    box-shadow: 0 10px 33.25px 1.75px rgba(0, 27, 103, .35);
    transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}

.video-box .play-btn svg {
    fill: #fff;
    width: 40px;
    margin-left: 5px;
}

.video-box .play-btn .ripple,
.video-box .play-btn .ripple:before,
.video-box .play-btn .ripple:after {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 70px;
    height: 70px;
    transform: translateX(-50%) translateY(-50%);
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border-radius: 50%;
    -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.50);
    -moz-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.50);
    -ms-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.50);
    -o-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.50);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.50);
    -webkit-animation: rippleanim 3s infinite;
    -moz-animation: rippleanim 3s infinite;
    -ms-animation: rippleanim 3s infinite;
    -o-animation: rippleanim 3s infinite;
    animation: rippleanim 3s infinite;
}

.video-box .play-btn .ripple:before {
    -webkit-animation-delay: .9s;
    -moz-animation-delay: .9s;
    -ms-animation-delay: .9s;
    -o-animation-delay: .9s;
    animation-delay: .9s;
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
}

.video-box .play-btn .ripple:after {
    -webkit-animation-delay: .6s;
    -moz-animation-delay: .6s;
    -ms-animation-delay: .6s;
    -o-animation-delay: .6s;
    animation-delay: .6s;
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
}

@-webkit-keyframes rippleanim {
    70% {
        box-shadow: 0 0 0 70px rgba(244, 68, 56, .0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(244, 68, 56, .0);
    }
}

@keyframes rippleanim {
    70% {
        box-shadow: 0 0 0 70px rgba(244, 68, 56, .0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(244, 68, 56, .0);
    }
}

@media (max-width: 992px) {
    .video-box {
        width: 100%;
        position: relative;
        left: 0;
        bottom: 0;
    }
}

@media (max-width: 767px) {
    .video-box {
        margin-top: 30px;
    }
}

/*=== 2.0 Services Section ===*/
.service-section {
    position: relative;
    z-index: 1;
}

.service-carousel {
    position: relative;
    overflow: hidden;
    padding-bottom: 50px;
}

/* New Service Item Styles */
.service-item-new {
    background-color: #fff;
    border-radius: 9px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.service-item-new:hover {
    transform: translateY(-5px);
}

.service-thumb-new {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.service-thumb-new img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.service-item-new:hover .service-thumb-new img {
    filter: grayscale(0%);
}

.service-overlay-num {
    position: absolute;
    bottom: -15px;
    right: 20px;
    font-size: 100px;
    font-weight: 900;
    color: #fff;
    line-height: 1;
    font-style: italic;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
    z-index: 2;
    font-family: 'Arial', sans-serif;
    /* Fallback for strong impact */
}

/* Add a diagonal shape behind the number for better readability if needed, or just rely on the image contrast */
.service-overlay-num:before {
    content: '';
    position: absolute;
    bottom: 10px;
    right: -10px;
    width: 120px;
    height: 100px;
    background: linear-gradient(to top right, transparent 50%, rgba(0, 0, 0, 0.6) 50%);
    z-index: -1;
    display: none;
    /* Removed for cleaner look, enabling if needed */
}

.service-content-new {
    padding: 30px;
    text-align: left;
    position: relative;
}

.service-content-new h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #222;
}

.service-content-new h3 a {
    color: #222;
    text-decoration: none;
}

.service-content-new h3 a:hover {
    color: #000;
}

.service-content-new p {
    color: #666;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Swiper Navigation Update for Dark Background */
.swiper-outside .swiper-nav {
    color: #fff;
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    left: -60px;
    /* Adjust based on container */
    opacity: 0.7;
    visibility: visible !important;
    /* Force visible */
}

.swiper-outside .swiper-nav:hover {
    background-color: #fff;
    color: #000;
    opacity: 1;
}

.swiper-outside .swiper-nav.swiper-next {
    left: auto;
    right: -60px;
    clip-path: none;
    /* Remove old styling */
}

.swiper-outside .swiper-nav.swiper-prev {
    clip-path: none;
    /* Remove old styling */
}

.swiper-outside .swiper-nav:before {
    display: none;
    /* Remove old pseudo-element */
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .swiper-outside .swiper-nav {
        left: 10px;
    }

    .swiper-outside .swiper-nav.swiper-next {
        right: 10px;
    }
}


/*=== 2.2 Swiper Dots ===*/
.service-carousel .swiper-pagination {
    bottom: 0;
    line-height: 1;
}

.swiper-pagination span {
    background-color: #222;
    border-radius: 2px;
    width: 10px;
    height: 10px;
    border-radius: 0;
    opacity: 1;
}

.swiper-pagination span.swiper-pagination-bullet-active {
    background-color: #000;
    box-shadow: 0px 0px 0px 3px rgba(0, 0, 0, 0.5);
}

/*=== 2.3 Service Details ===*/
.service-details-info img {
    height: 350px;
    width: 100%;
    object-fit: cover;
    object-position: bottom;
    border-radius: 5px;
    margin-bottom: 30px;
}

.service-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 20px;
    margin: 30px 0;
}

.service-features li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.service-features li i {
    font-size: 50px;
    color: #000;
}

.service-features li h3 {
    margin-bottom: 0;
}

.service-features li p {
    margin-bottom: 0;
}

.service-details-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 20px;
    margin-top: 30px;
}

.service-details-list img {
    height: 220px;
    margin: 0;
}

.service-icon-list li i {
    font-size: 20px;
    color: #000;
}

.service-icon-list li {
    font-weight: 500;
    display: flex;
    align-items: center;
    column-gap: 10px;
}

.service-icon-list li:not(:last-of-type) {
    margin-bottom: 10px;
}

/*=== 2.4 Service Sidebar ===*/
.service-sidebar ul li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #f4f5f8;
    padding: 8px 15px;
    border: 1px solid #eee;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
}

.service-sidebar ul li:hover {
    background-color: #000;
}

.service-sidebar ul li:not(:last-of-type) {
    margin-bottom: 10px;
}

.service-sidebar ul li a {
    font-size: 17px;
    font-weight: 500;
}

.service-sidebar ul li a:hover {
    color: #222;
}

.service-sidebar ul li i {
    font-size: 20px;
    color: #000;
}

.service-sidebar ul li:hover i {
    color: #fff;
}

/*=== 3.0 Booking Section ===*/
.booking-section {
    background-image: url(../img/texture.png);
    background-repeat: repeat;
    background-size: cover;
    background-color: #222;
    position: relative;
    z-index: 1;
}

.booking-section:before {
    background-color: #000;
    content: "";
    width: 300px;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: -2;
}

.booking-section:after {
    background-color: #F4F5F8;
    clip-path: polygon(0 0, 100% 0%, 100% 100%, 25% 100%);
    content: "";
    width: 400px;
    height: 80px;
    position: absolute;
    right: 0;
    top: -1px;
}

/*=== 3.1 Booking Car ===*/
.booking-car {
    background-image: url(../img/car-2.png);
    background-repeat: no-repeat;
    background-position: left center;
    background-size: 85%;
    width: 780px;
    height: 439px;
    position: absolute;
    left: -280px;
    top: 50px;
    z-index: -1;
}

.booking-wrap .section-heading h2 {
    font-size: 40px;
}

.booking-form {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    z-index: 1;
}

.booking-form .form-field {
    position: relative;
}

.booking-form .niceSelect .current,
.booking-form .form-field input {
    background-color: #333;
    color: #fff;
    border-radius: 2px;
    width: 100%;
    height: 50px;
    padding: 0 35px 0 20px;
    font-size: 17px;
    line-height: 50px;
    box-shadow: none;
    outline: none;
    border: 1px solid #333;
}

.booking-form .form-field input:focus {
    border: 1px solid #000;
}

.booking-form .form-field i {
    color: #000;
    font-size: 20px;
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
}

.booking-form .form-field button {
    width: 100%;
    height: 50px;
}

.booking-form .niceSelect {
    padding: 0;
    border: none;
    width: 100%;
    height: auto;
    font-size: 17px;
    color: #fff;
}

.booking-form .niceSelect .current {
    height: 50px;
    line-height: 50px;
    display: block;
    padding: 0 20px;
}

.booking-form .niceSelect .list {
    background-color: #333;
    width: 100%;
    border-radius: 0;
    margin-top: -2px;
    border: none;
}

.booking-form .niceSelect .list li {
    font-size: 14px;
}

.booking-form .niceSelect .list li:not(:last-of-type) {
    border-bottom: 1px solid #444;
}

.nice-select .option:hover,
.nice-select .option.focus,
.nice-select .option.selected.focus {
    background-color: #000;
    font-weight: normal;
}

.nice-select:after {
    display: none;
}

/*=== 3.2 Date Time Picker ===*/
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box>div>div.xdsoft_current,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current {
    background: #000;
    box-shadow: #000 0 1px 3px 0 inset;
}

.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box>div>div:hover,
.xdsoft_datetimepicker .xdsoft_calendar td:hover {
    background: #222 !important;
    color: #fff;
}

/*=== 3.3 Booking Form ===*/
.booking-form-2 {
    position: relative;
    margin-top: -100px;
    margin-bottom: 80px;
    z-index: 1;
}

.booking-form-2:before {
    background-color: #222;
    clip-path: polygon(0 0, 90% 0%, 100% 20%, 100% 100%, 0 99%);
    background-image: url(../img/texture.png);
    background-repeat: repeat;
    background-size: cover;
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    right: 0;
    top: 0;
    z-index: -1;
}

.booking-car-wrap {
    position: absolute;
    left: 0;
    top: 0;
    width: 50%;
    height: calc(100% - 2px);
    overflow: hidden;
}

.booking-car-wrap:before {
    background-color: #000;
    background-image: repeating-linear-gradient(45deg, #f7a20f 0, #f7a20f 2px, transparent 0, transparent 50%);
    background-size: 10px 10px;
    content: "";
    width: 330px;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
}

.booking-form-2 .booking-car {
    background-size: 70%;
    left: -130px;
    top: 10px;
    z-index: 0;
}

.booking-form-2 .col-lg-8 {
    padding: 60px;
}

@media (max-width: 767px) {
    .booking-form-2:before {
        clip-path: polygon(0 0, 90% 0%, 100% 8%, 100% 100%, 0 99%);
    }
}

/*=== 4.0 Pricing Section ===*/
.pricing-item {
    background-color: #fff;
    padding: 0;
    border-left: 1px solid #ddd;
    border-right: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}

.pricing-head-wrap {
    position: relative;
    z-index: 1;
}

.pricing-head-wrap:before {
    background-image: url(../img/pricing-bg.jpg);
    clip-path: polygon(0 0, 100% 0, 100% 80%, 0 40%);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    content: '';
    width: 100%;
    height: 280px;
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
}

.pricing-head-wrap:after {
    background-color: rgba(34, 34, 34, 0.5);
    clip-path: polygon(0 0, 100% 0, 100% 80%, 0 40%);
    content: '';
    width: 100%;
    height: 280px;
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
}

.pricing-head {
    text-align: center;
}

.pricing-head h3 {
    font-size: 22px;
    font-weight: 700;
    line-height: 1;
    display: block;
    margin: 0;
}

.pricing-head h3 a:hover {
    color: #222;
}

.pricing-head .location {
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pricing-car {
    text-align: center;
    padding: 30px 20px 10px;
    position: relative;
    z-index: 1;
}

.pricing-car .price {
    background-color: #000;
    clip-path: polygon(85% 0%, 100% 30%, 100% 100%, 0 100%, 0 0);
    font-size: 20px;
    font-weight: 700;
    color: #222;
    padding: 10px 15px 10px 25px;
    position: absolute;
    right: 40px;
    top: 55px;
    z-index: -1;
}

.pricing-list {
    padding: 20px 40px 30px;
}

.pricing-list li {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.pricing-list li:not(:last-of-type) {
    margin-bottom: 10px;
}

.pricing-list li a.default-btn {
    width: 100%;
    margin-top: 20px;
}


/*=== 4.1 Pricing Tab Menu ===*/
.pricing-tab-menu {
    justify-content: center;
    margin-bottom: 30px;
}

.pricing-tab-menu li {
    position: relative;
}

.pricing-tab-menu li .nav-link {
    font-size: 17px;
    font-weight: 500;
    color: #999;
    padding: 0;
}

.pricing-tab-menu li .nav-link:hover,
.pricing-tab-menu li .nav-link.active {
    color: #222;
}

.pricing-tab-menu li:not(:last-of-type) {
    padding-right: 80px;
}

.pricing-tab-menu li:not(:last-of-type):before {
    background-color: #ccc;
    width: 50px;
    height: 2px;
    content: '';
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
}

.tab-pane.active.show .row>div {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-name: fade-in-bottom;
    animation-name: fade-in-bottom;
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    animation-fill-mode: both;
    transition: all 0.2s ease-in-out;
    transition-duration: 800ms;
    animation-delay: 0.1s;
}

.tab-pane.active.show .row>div:nth-child(2) {
    animation-delay: 0.2s;
}

.tab-pane.active.show .row>div:nth-child(3) {
    animation-delay: 0.3s;
}

/*=== 5.0 Taxi Details ===*/
.taxi-details-img {
    position: relative;
}

.taxi-details-img:before {
    background-color: #000;
    background-image: repeating-linear-gradient(45deg, #f7a20f 0, #f7a20f 2px, transparent 0, transparent 50%);
    background-size: 10px 10px;
    width: 40%;
    height: 100%;
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
}

.taxi-details-img img {
    margin-left: -50px;
    margin-top: 100px;
}

/*=== 6.0 Download Section - Modern Dark/Bold Redesign ===*/
.download-section {
    background-image: url(../img/bg-1.jpg);
    background-color: #121212;
    /* Fallback */
    background-size: cover;
    background-position: center;
    background-attachment: scroll;
    position: relative;
    overflow: hidden;
    color: #fff;
    padding: 100px 0;
}

/* Dark Overlay */
.download-section:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    /* Dark overlay for readability */
    z-index: 0;
}

.download-section .container {
    position: relative;
    z-index: 2;
    /* Ensure content is above overlay */
}

.download-section .section-heading h4 {
    color: #FFC107;
    /* Taxi Yellow */
}

.download-section .section-heading h4 span {
    background-color: #FFC107;
}

.download-section .section-heading h2 {
    color: #fff;
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 20px;
}

.download-section .section-heading p {
    color: #ddd;
    /* Lighter text for better contrast on dark bg */
    font-size: 16px;
    line-height: 1.8;
}

.app-feature {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
    margin-bottom: 40px;
    justify-content: center;
    /* Center features */
}

.app-feature li {
    display: flex;
    align-items: center;
    /* Center align vertically */
    flex-direction: column;
    /* Stack icon and text */
    text-align: center;
    /* Center text */
    gap: 15px;
    width: auto;
    /* Let them size naturally */
}

.app-feature li i {
    width: 60px;
    height: 60px;
    background-color: rgba(255, 255, 255, 0.1);
    /* Subtle bg for icon */
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.app-feature li .feature-icon {
    width: 28px;
    filter: invert(1);
    /* Make black icons white */
}

.app-feature li h3 {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    line-height: 1.4;
    margin: 0;
}

.download-btn {
    display: flex;
    gap: 15px;
    justify-content: center;
    /* Center buttons */
}

.download-btn a img {
    height: 55px;
    /* Slightly larger */
    transition: transform 0.3s ease;
}

.download-btn a:hover img {
    transform: translateY(-3px);
}

.taxi-holder {
    background-image: url(../img/taxi-background.png);
    background-repeat: no-repeat;
    background-position: center right;
    background-size: contain;
    width: 100%;
    min-height: 550px;
    position: absolute;
    right: 40px;
    top: 100px;
    z-index: -1;
}

.taxi-holder .taxi {
    background-image: url(../img/taxi_1.png);
    background-repeat: no-repeat;
    background-position: center right;
    background-size: contain;
    width: 650px;
    height: 100%;
    position: absolute;
    right: 75px;
    top: 80px;
}

.taxi-holder .mockup {
    background-image: url(../img/mockup.png);
    background-repeat: no-repeat;
    background-position: center right;
    background-size: contain;
    width: 350px;
    height: 100%;
    position: absolute;
    right: 330px;
    top: -120px;
    z-index: -1;
}

.taxi-holder .charecter {
    background-image: url(../img/charecter.png);
    background-repeat: no-repeat;
    background-position: center right;
    background-size: contain;
    width: 180px;
    height: 100%;
    position: absolute;
    right: 130px;
    top: 80px;
}

.location-marker {
    position: absolute;
    right: 17%;
    top: 20px;
    animation: bounce 2s infinite;
    -webkit-animation: bounce 2s infinite;
    -moz-animation: bounce 2s infinite;
    -o-animation: bounce 2s infinite;
}

@-webkit-keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        -webkit-transform: translateY(0);
    }

    40% {
        -webkit-transform: translateY(-20px);
    }

    60% {
        -webkit-transform: translateY(-10px);
    }
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-20px);
    }

    60% {
        transform: translateY(-10px);
    }
}

@media (min-width: 993px) and (max-width: 1300px) {
    .taxi-holder .taxi {
        width: 390px;
        right: 75px;
        top: 80px;
    }

    .taxi-holder .mockup {
        width: 230px;
        right: 190px;
        top: -55px;
    }

    .taxi-holder .charecter {
        width: 125px;
        right: 130px;
        top: 45px;
    }

    .location-marker {
        right: 15%;
        top: 50px;
    }
}

/*=== 6.1 Download Section 2 ===*/
.download-section-2 {
    background-image: url(../img/bg-1.jpg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.download-section-2 .section-heading h2 {
    color: #fff;
}

.download-section-2 .section-heading p {
    color: #ddd;
}

.download-mockup {
    background-image: url(../img/mockup-2.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    width: 380px;
    height: 100%;
    position: absolute;
    right: 250px;
    bottom: -20px;
}

.app-screen {
    width: 220px;
    position: absolute;
    right: 150px;
    bottom: 0;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    box-shadow: 0 1px 5px rgb(0 0 0 / 15%);
    overflow: hidden;
}

@media (max-width: 1200px) {
    .download-mockup {
        right: 130px;
        bottom: -60px;
    }

    .app-screen {
        right: 60px;
    }
}

@media (min-width: 1600px) {
    .download-mockup {
        right: 320px;
    }

    .app-screen {
        right: 290px;
    }
}

/*=== 3.4 Pricing/Feature Item Styles - Modern Clean Redesign ===*/
.pricing-section {
    background-color: #f8fbff;
    /* Very light cool grey/blue for contrast */
}

.pricing-item-new {
    background-color: #fff;
    border-radius: 15px;
    /* Softer corners */
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    /* Deep, soft shadow */
    overflow: hidden;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: none;
    /* Removed border */
    position: relative;
    top: 0;
}

.pricing-item-new:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

/* Yellow accent line on hover */
.pricing-item-new:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 4px;
    background-color: #FFC107;
    /* Taxi Yellow */
    transition: width 0.4s ease;
}

.pricing-item-new:hover:after {
    width: 100%;
}

.pricing-thumb-new {
    width: 100%;
    height: 240px;
    position: relative;
    background-color: #fff;
    /* White bg for image area */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 30px;
}

.pricing-thumb-new img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    width: 100%;
    height: 100%;
    transition: transform 0.5s ease;
}

.pricing-item-new:hover .pricing-thumb-new img {
    transform: scale(1.05);
}

.pricing-content-new {
    padding: 0 40px 40px 40px;
    /* Increased padding */
    text-align: center;
}

.pricing-content-new h3 {
    font-size: 24px;
    /* Larger heading */
    font-weight: 800;
    /* Bolder */
    margin-bottom: 15px;
    color: #222;
    letter-spacing: -0.5px;
}

/* Handle injected headings */
.pricing-content-new h2 {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 15px;
    color: #222;
    line-height: 1.3;
    letter-spacing: -0.5px;
}

.pricing-content-new h2 strong {
    font-weight: 800;
}

.pricing-content-new p {
    font-size: 16px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 0;
}

/* Modern Pill Tabs */
.pricing-tab-menu {
    justify-content: center;
    margin-bottom: 50px;
    border: none;
    gap: 15px;
}

.pricing-tab-menu .nav-item {
    margin: 0;
}

.pricing-tab-menu .nav-link {
    border: none;
    border-radius: 50px;
    /* Pill shape */
    padding: 12px 30px;
    font-size: 16px;
    font-weight: 700;
    color: #555;
    background-color: #eaeaea;
    /* Light grey default */
    position: relative;
    transition: all 0.3s ease;
}

.pricing-tab-menu .nav-link:after {
    display: none;
    /* Remove old underline */
}

.pricing-tab-menu .nav-link:hover {
    background-color: #ddd;
    color: #000;
    transform: translateY(-2px);
}

.pricing-tab-menu .nav-link.active {
    background-color: #222;
    /* Black active */
    color: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/*=== 7.0 Testimonials Section ===*/
.testimonial-section {
    position: relative;
}

.testimonial-section:before {
    background-image: url(../img/map.png);
    background-repeat: no-repeat;
    background-position: top center;
    background-size: contain;
    width: 50%;
    height: 100%;
    content: "";
    position: absolute;
    left: 0;
    top: 40px;
}

/*=== 7.0 News & Insights (Blog) - Modern Redesign ===*/
.blog-section {
    background-color: #f9f9f9;
    /* Light grey backdrop */
    position: relative;
    padding: 100px 0;
}

.blog-item-new {
    background-color: #fff;
    border-radius: 15px;
    /* Softer corners */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    /* Subtle but deep shadow */
    overflow: hidden;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.blog-item-new:hover {
    transform: translateY(-10px);
    /* Lift up effect */
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.blog-thumb-new {
    height: 240px;
    overflow: hidden;
    position: relative;
}

.blog-thumb-new img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.blog-item-new:hover .blog-thumb-new img {
    transform: scale(1.1);
    /* Zoom effect on hover */
}

.blog-content-new {
    padding: 30px;
}

.blog-content-new h3 {
    font-size: 22px;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    /* Limit to 2 lines */
    line-clamp: 2;
    /* Standard property */
    -webkit-box-orient: vertical;
    overflow: hidden;
    color: #222;
}

.blog-text {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    /* Limit excerpt to 3 lines */
    line-clamp: 3;
    /* Standard property */
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-text p {
    margin: 0;
}

.read-more {
    font-size: 14px;
    font-weight: 700;
    color: #222;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: color 0.3s ease;
}

.read-more i {
    font-size: 16px;
    transition: transform 0.3s ease;
}

.read-more:hover {
    color: #FFC107;
    /* Taxi Yellow */
}

.read-more:hover i {
    transform: translateX(5px);
}

.testimonial-carousel {
    overflow: hidden;
    padding: 25px 5px 5px;
}

.testimonial-carousel-2.swiper-container {
    padding: 25px 0;
}

.testi-pagination {
    margin-left: -5px;
}

.testi-pagination .swiper-pagination {
    left: 5px;
    bottom: -50px;
    text-align: left;
}

.testi-item {
    background-color: #fff;
    border-radius: 2px;
    padding: 40px;
    box-shadow: 0 1px 5px rgb(0 0 0 / 20%);
    position: relative;
    border-radius: 10px;
}

.testi-item p {
    font-size: 20px;
    line-height: 36px;
    font-weight: 500;
    margin-bottom: 0;
    letter-spacing: -0.5px;
}

.quote-icon {
    background-color: #000;
    clip-path: polygon(25% 0%, 100% 0%, 75% 100%, 0% 100%);
    font-size: 30px;
    color: #fff;
    width: 60px;
    height: 50px;
    position: absolute;
    right: 100px;
    top: -25px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testi-author {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 20px;
}

.testi-author .author-thumb img {
    border-radius: 50%;
}

.testi-author .author-info h3 {
    font-size: 22px;
    margin: 0;
    display: block;
    line-height: 1;
}

.testi-author .author-info h3 span {
    display: block;
    font-size: 16px;
    line-height: 1;
    margin-top: 10px;
}

.testimonial-carousel .swiper-pagination {
    text-align: left;
}

/* Feature List */
.feature-wrap {
    background-color: #000;
    padding: 110px 40px;
    /*background-image: repeating-linear-gradient(45deg, #ffd321 0, #ffcc00 2px, transparent 0, transparent 50%);*/
    background-size: 10px 10px;
    margin-left: 40px;
}

.ridek-features li {
    display: flex;
    align-items: center;
    gap: 20px;
}

.ridek-features li:not(:last-of-type) {
    margin-bottom: 30px;
}

.feature-icon {
    font-size: 60px;
    color: #fff;
}

.feature-content h3 {
    color: #fff;
    font-size: 22px;
    margin: 0;
}

.feature-content p {
    margin: 0;
    color: #fafafa;
}

/*=== 8.0 CTA Section ===*/
.cta-section {
    background-image: url(../img/texture.png);
    clip-path: polygon(0 0, 100% 0, 100% 50%, 80% 100%, 0 100%);
    background-repeat: repeat;
    background-size: cover;
    background-color: #222;
    position: relative;
    z-index: 1;
}

.cta-men {
    background-image: url(../img/cta-men.png);
    background-repeat: no-repeat;
    background-position: bottom right;
    background-size: contain;
    width: 100%;
    height: 100%;
    position: absolute;
    right: 130px;
    bottom: -30px;
    z-index: -1;
}

.cta-content .cta-call {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 25px;
}

.cta-content .cta-call p span {
    display: block;
}

.cta-content .cta-call p a {
    color: #fff;
    font-size: 32px;
    font-weight: 700;
    line-height: 1;
}

.cta-content .cta-call i {
    background-color: rgba(255, 153, 0, 0.1);
    width: 60px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    font-size: 40px;
    color: #fff;
    border-radius: 2px;
}

.cta-content h2 {
    font-size: 46px;
    line-height: 52px;
    color: #fff;
    margin-bottom: 20px;
}

.cta-content h2 span {
    color: #fff;
}

.cta-content P {
    font-size: 18px;
    font-weight: 500;
    color: #ccc;
    margin: 0;
}

/*=== 8.1 CTA Section 2 ===*/
.cta-section-2 {
    position: relative;
    z-index: 1;
}

.cta-section-2:before {
    background-color: #000;
    background-image: url(../img/cta-map.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    width: 90%;
    height: 100%;
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
}

.cta-section-2 .cta-content h4 {
    text-transform: uppercase;
    font-size: 16px;
    letter-spacing: 1px;
}

.cta-section-2 .cta-content h2 {
    margin: 0;
    font-size: 36px;
    line-height: 42px;
}

.cta-section-2 .cta-content .default-btn {
    background-color: #222;
    margin-top: 20px;
}

.cta-section-2 .cta-content .default-btn:hover {
    color: #222;
}

.cta-section-2 .cta-content .default-btn:after,
.cta-section-2 .cta-content .default-btn:before {
    background-color: #fff;
}

.cta-section-2 .check-list i {
    background-color: #222;
    clip-path: polygon(15% 0%, 100% 0%, 85% 100%, 0% 100%);
    font-size: 12px;
    color: #000;
    width: 30px;
    height: 20px;
    line-height: 20px;
    text-align: center;
}

.cta-section-2 .check-list li {
    color: #fff;
}

.cta-section-2 .check-list li:not(:last-of-type) {
    margin-bottom: 10px;
}

.cta-section-2 .cta-men {
    background-size: 95%;
    right: 90px;
    bottom: 0;
    width: 500px;
    height: 420px;
}

@media (min-width: 993px) and (max-width: 1200px) {
    .cta-men {
        width: 450px;
        right: 70px;
        bottom: -5px;
    }
}

/*=== 9.0 Team Section ===*/
.team-thumb {
    clip-path: polygon(0 0, 90% 0%, 100% 10%, 100% 100%, 0 100%);
}

.team-thumb img {
    width: 100%;
}

.team-content {
    position: relative;
}

.team-content:before {
    background-image: url(../img/car%20steering.svg);
    background-repeat: no-repeat;
    background-position: top center;
    background-size: 50%;
    width: 100%;
    height: 100%;
    content: "";
    position: absolute;
    left: 50%;
    top: -65px;
    transform: translateX(-50%);
}

.team-content h3 a {
    background-color: #000;
    clip-path: polygon(0 0, 100% 0, 100% 70%, 90% 100%, 0 100%);
    background-image: repeating-linear-gradient(45deg, #f7a20f 0, #f7a20f 2px, transparent 0, transparent 50%);
    background-size: 8px 8px;
    width: 90%;
    height: 70px;
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 700;
    line-height: 1;
    margin: 0 auto;
    margin-top: -30px;
    padding-bottom: 10px;
}

.team-content h3 a:hover {
    color: #222;
}

.team-content h4 {
    background-color: #222;
    background-image: url(../img/texture.png);
    background-repeat: repeat;
    background-size: cover;
    clip-path: polygon(100% 0, 100% 100%, 10% 100%, 0% 70%, 0 0);
    color: #fff;
    width: 60%;
    height: 40px;
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0;
    margin-left: auto;
    position: absolute;
    right: 59px;
    top: 50px;
    box-shadow: 0 1px 5px rgb(0 0 0 / 20%);
}

/* Driver Details */
.driver-details {
    position: relative;
}

.driver-details img {
    width: 100%;
    border-radius: 5px;
}

.experience-box {
    background-color: #000;
    background-image: repeating-linear-gradient(45deg, #f7a20f 0, #f7a20f 2px, transparent 0, transparent 50%);
    background-size: 10px 10px;
    padding: 30px;
    position: absolute;
    left: -20px;
    top: 50px;
    border-radius: 2px;
}

.experience-box h3 span {
    font-size: 50px;
    line-height: 1;
    font-weight: 600;
    display: block;
    color: #fff;
}

.experience-box h3 {
    font-size: 16px;
    margin: 0;
}

/*=== 10.0 Taxi Booking Form ===*/
.taxi-booking-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 20px;
}

.taxi-booking-form .form-control {
    height: 50px;
    border-radius: 2px;
    border: 1px solid #ccc;
    font-size: 17px;
    outline: none;
    box-shadow: none;
}

.taxi-booking-form .form-control:focus {
    border: 1px solid #000;
}

.taxi-booking-form .niceSelect {
    width: 100%;
    border-radius: 2px;
    border: 1px solid #ccc;
    height: 50px;
    line-height: 50px;
    font-size: 17px;
}

.taxi-booking-form .nice-select .list {
    border-radius: 2px;
    margin-top: 0;
}

.taxi-booking-form .nice-select .option {
    font-size: 15px;
}

.taxi-booking-form .nice-select .option:hover {
    color: #222;
}

.taxi-booking-form .form-field {
    position: relative;
}

.taxi-booking-form .form-field i {
    color: #000;
    font-size: 20px;
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
}

/*=== 11.0 Faq's Section ===*/
.accordion-item:first-of-type .accordion-button {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    outline: none;
    box-shadow: none;
}

.accordion-button {
    background-color: #fff;
    color: #222;
    font-size: 18px;
    line-height: 28px;
    letter-spacing: -0.5px;
    font-weight: 500;
    text-transform: capitalize;
    border: 1px solid #eee;
    padding: 20px 15px;
}

.accordion-button:focus {
    border-color: #eee;
    outline: none;
    box-shadow: none;
}

.accordion-button:not(.collapsed) {
    color: #fff;
    background-color: #000;
}

.accordion-button:not(.collapsed):after {
    background-image: inherit;
    content: "\f068";
    color: #fff;
    transform: inherit;
}

.accordion-button:after {
    background-image: inherit;
    content: "\f067";
    font-family: "Font Awesome 5 Free";
    font-size: 12px;
    position: absolute;
    right: 20px;
    top: 50%;
    color: #222;
    font-weight: 600;
    transform: translateY(-50%) !important;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

/*=== 12.0 Contact Section ===*/
.contact-section {
    position: relative;
    z-index: 1;
}

.contact-section .map {
    background-image: url(../img/cta-map.png);
    background-repeat: no-repeat;
    background-position: left center;
    background-size: 80%;
    width: 100%;
    height: 100%;
    position: absolute;
    left: -20%;
    top: 0;
    z-index: -1;
}

.contact-details-wrap {
    padding-right: 60px;
}

.contact-title {
    margin-bottom: 20px;
}

.contact-title h2 {
    font-size: 28px;
    line-height: 38px;
    font-weight: 600;
    display: inline-block;
}

.contact-section .contact-details li {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.contact-section .contact-details li i {
    background-color: #222;
    background-image: url(../img/texture.png);
    background-repeat: repeat;
    background-size: cover;
    color: #000;
    font-size: 15px;
    margin-right: 15px;
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    border-radius: 2px;
}

.contact-form-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 15px;
}

.contact-form-group .form-field .form-control {
    background-color: #fff;
    border: 1px solid #ccc;
    height: 50px;
    border-radius: 10px;
    box-shadow: none;
    outline: none;
}

.contact-form-group .form-field .form-control:focus {
    border: 1px solid #000;
}

.contact-form-group .form-field.message {
    grid-column-end: span 2;
}

.contact-form-group .form-field.message .form-control {
    height: auto;
}

.contact-form .form-group .form-control::-webkit-input-placeholder,
.contact-form .form-group .form-control::-webkit-input-placeholder {
    color: #999 !important;
}

.contact-form .form-group .form-control:-moz-placeholder,
.contact-form .form-group .form-control:-moz-placeholder {
    /* Firefox 18- */
    color: #999 !important;
}

.contact-form .form-group .form-control::-moz-placeholder,
.contact-form .form-group .form-control::-moz-placeholder {
    /* Firefox 19+ */
    color: #999 !important;
}

input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
    color: #ddd !important;
}

.contact-form .form-group .form-control.message {
    height: 120px;
}

#b-form-messages,
#form-messages {
    display: none;
    margin-top: 15px;
    margin-bottom: 0;
}

#b-form-messages.alert-danger,
#form-messages.alert-danger,
#b-form-messages.alert-success,
#form-messages.alert-success {
    display: block
}

.branches-section {
    position: relative;
}

.branches-list h3 {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0;
    background-color: #000;
    color: #fff;
    display: inline-block;
    padding: 3px 15px;
    margin-bottom: 20px;
}

.branches-list ul li {
    margin-bottom: 5px;
}

.branches-list ul li a {
    color: #777;
}

.branches-list ul li a:hover {
    text-decoration: underline;
    color: #000;
}

/*=== 13.0 Footer Section - Modern Redesign ===*/
.footer-section {
    background-color: #121212;
    /* Deep Dark Background */
    color: #a0a0a0;
    font-size: 15px;
    line-height: 1.8;
}

.footer-content-wrap {
    padding: 80px 0 50px;
}

.footer-item {
    margin-bottom: 30px;
}

.footer-logo {
    display: inline-block;
    margin-bottom: 25px;
}

.footer-logo img {
    height: 40px;
    /* Adjust as needed */
}

.footer-desc {
    margin-bottom: 25px;
}

.footer-call {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-call i {
    font-size: 32px;
    color: #FFC107;
    /* Taxi Yellow */
}

.footer-call p span {
    display: block;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    color: #777;
    margin-bottom: 2px;
}

.footer-call p a {
    color: #fff;
    font-size: 20px;
    font-weight: 700;
}

.widget-title h3 {
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.widget-title h3:before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 2px;
    background-color: #FFC107;
}

.footer-links ul,
.footer-contact ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-links li:not(:last-child),
.footer-contact li:not(:last-child) {
    margin-bottom: 12px;
}

.footer-links li a {
    color: #a0a0a0;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.footer-links li a:before {
    content: "\f105";
    font-family: "Line Awesome Free";
    font-weight: 900;
    margin-right: 8px;
    font-size: 12px;
    color: #555;
    transition: all 0.3s ease;
}

.footer-links li a:hover {
    color: #FFC107;
    padding-left: 5px;
}

.footer-links li a:hover:before {
    color: #FFC107;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: #a0a0a0;
}

.footer-contact li i {
    color: #FFC107;
    font-size: 18px;
    margin-top: 3px;
}

/* Newsletter Form */
.subscribe-form {
    position: relative;
}

.subscribe-form .input-group {
    position: relative;
    display: flex;
}

.subscribe-form .form-control {
    background-color: #1e1e1e;
    border: 1px solid #2a2a2a;
    border-radius: 4px;
    /* Slight radius */
    height: 50px;
    padding: 0 60px 0 20px;
    color: #fff;
    width: 100%;
}

.subscribe-form .form-control:focus {
    border-color: #FFC107;
}

.subscribe-form .submit {
    position: absolute;
    right: 0;
    top: 0;
    height: 50px;
    width: 50px;
    background-color: #FFC107;
    border: none;
    border-radius: 0 4px 4px 0;
    color: #000;
    font-size: 20px;
    cursor: pointer;
    transition: background 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.subscribe-form .submit:hover {
    background-color: #e0a800;
}

/* Copyright */
.copyright-wrap {
    background-color: #0f0f0f;
    border-top: 1px solid #1e1e1e;
    padding: 25px 0;
    text-align: center;
}

.copyright-wrap p {
    color: #666;
    margin: 0;
    font-size: 14px;
}

/*=== 14.0 Header Redesign ===*/
.main-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
}

/* Top Header */
.top-header {
    background-color: #121212;
    padding: 10px 0;
    border-bottom: 1px solid #222;
}

.top-header-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-contact-info,
.header-social-share {
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.header-contact-info li {
    color: #ccc;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.header-contact-info li i {
    color: #FFC107;
}

.header-social-share li a {
    color: #ccc;
    font-size: 14px;
    transition: color 0.3s;
}

.header-social-share li a:hover {
    color: #FFC107;
}

.drive-link {
    font-size: 13px;
    color: #FFC107;
    font-weight: 600;
    margin-left: 20px;
    text-transform: uppercase;
}

.drive-link:hover {
    color: #fff;
    text-decoration: underline;
}

/* Nav Menu Wrapper */
.nav-menu-wrapper {
    background-color: #fff !important;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
    height: 80px;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 998;
    margin-bottom: 0 !important;
    /* Override header.css */
}

/* Override header.css conflicting styles */
.nav-menu-inner:before {
    display: none !important;
}

.nav-menu-wrapper .site-logo {
    display: block !important;
    /* Force logo display */
}

.nav-menu-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    width: 100%;
    max-width: 100% !important;
    /* Force full width */
    margin: 0 !important;
}

.site-logo img {
    max-height: 50px;
    width: auto;
}

/* Navigation */
.header-menu-wrap ul.nav-menu {
    display: flex;
    margin: 0;
    padding: 0;
    list-style: none;
    gap: 30px;
}

.nav-menu>li>a {
    color: #222 !important;
    /* Force dark color on white bg */
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    position: relative;
    padding: 10px 0;
    transition: color 0.3s;
    font-family: inherit;
    /* Use site font */
}

.nav-menu>li>a:hover {
    color: #FFC107 !important;
}

.nav-menu>li>a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #FFC107;
    transition: width 0.3s;
}

.nav-menu>li>a:hover::after {
    width: 100%;
}

/* Submenu */
.nav-menu li.dropdown_menu {
    position: relative;
}

.nav-menu li.dropdown_menu ul {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #fff;
    width: 220px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1000;
    display: block !important;
    /* Override potential display:none */
}

.nav-menu li.dropdown_menu:hover ul {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-menu li.dropdown_menu ul li {
    display: block;
    margin: 0;
    padding: 0;
    border: none;
}

.nav-menu li.dropdown_menu ul li a {
    display: block;
    padding: 10px 20px;
    color: #555 !important;
    font-size: 14px;
    font-weight: 500;
    text-transform: capitalize;
    transition: all 0.2s;
}

.nav-menu li.dropdown_menu ul li a:hover {
    background-color: #f9f9f9;
    color: #FFC107 !important;
    padding-left: 25px;
}

/* CTA Button */
.header-cta .default-btn {
    background-color: #FFC107;
    color: #000;
    padding: 10px 25px;
    border-radius: 4px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 14px;
    transition: background 0.3s;
}

.header-cta .default-btn:hover {
    background-color: #e0a800;
    color: #000;
}

/* Mobile Responsive */
@media (max-width: 991px) {
    .nav-menu-wrapper {
        height: 70px;
    }

    .header-cta {
        display: none;
        /* Hide CTA on mobile for now, or move it inside menu */
    }

    .top-header {
        display: none;
        /* Hide top header on mobile */
    }

    .mobile-menu-icon {
        display: block;
    }

    .nav-menu-wrapper .site-logo {
        display: block !important;
    }

    /* Mobile Menu Container */
    .header-menu-wrap {
        display: none;
        /* JS will toggle this to block */
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #fff;
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        padding: 0;
        z-index: 999;
        border-top: 1px solid #eee;
    }

    /* Mobile Nav List */
    .header-menu-wrap ul.nav-menu {
        flex-direction: column;
        gap: 0;
        padding: 0;
        margin: 0;
    }

    .header-menu-wrap ul.nav-menu>li {
        display: block;
        width: 100%;
        border-bottom: 1px solid #f5f5f5;
    }

    .header-menu-wrap ul.nav-menu>li:last-child {
        border-bottom: none;
    }

    .nav-menu>li>a {
        display: block;
        padding: 15px 20px;
        font-size: 15px;
        color: #333 !important;
    }

    .nav-menu>li>a:hover {
        background-color: #f9f9f9;
        color: #FFC107 !important;
        padding-left: 25px;
        /* Slight indent on hover */
    }

    .nav-menu>li>a::after {
        display: none;
        /* Remove underline effect on mobile */
    }

    /* Mobile Dropdown */
    .nav-menu li.dropdown_menu ul {
        position: static;
        /* Stack naturally */
        width: 100%;
        box-shadow: none;
        border: none;
        opacity: 1;
        visibility: visible;
        display: none;
        /* JS toggles this */
        padding: 0;
        transform: none;
        background-color: #f9f9f9;
    }

    .nav-menu li.dropdown_menu ul li a {
        padding: 10px 40px;
        /* Indent sub-items */
        font-size: 14px;
        color: #666 !important;
    }

    .nav-menu li.dropdown_menu ul li a:hover {
        padding-left: 45px;
    }

    /* Adjust dropdown plus icon if needed */
    .dropdown-plus {
        position: absolute;
        right: 15px;
        top: 0;
        width: 44px;
        height: 44px;
        line-height: 44px;
        text-align: center;
        cursor: pointer;
        z-index: 5;
    }
}

/*=== 15.0 Banner Redesign ===*/
.main-slider .slider-content-wrap {
    height: auto !important;
    min-height: 100vh;
    /* Full screen height */
    display: flex;
    align-items: center;
    padding-top: 80px;
    /* Offset for fixed header */
    padding-bottom: 50px;
}

.slider-img {
    height: 100% !important;
    min-height: 100vh;
}

.slider-img img {
    height: 100% !important;
    object-fit: cover;
}

/* Responsive Banner Text */
@media (max-width: 991px) {
    .main-slider .slider-content-wrap {
        min-height: 600px;
        /* Smaller minimum on mobile */
        padding-top: 100px;
    }

    .slider-img,
    .slider-img img {
        min-height: 600px;
    }

    .slider-caption.big {
        font-size: 36px !important;
        line-height: 1.3 !important;
    }

    .slider-caption.medium {
        font-size: 16px !important;
    }
}

@media (max-width: 575px) {
    .main-slider .slider-content-wrap {
        min-height: 500px;
        padding-top: 80px;
    }

    .slider-img,
    .slider-img img {
        min-height: 500px;
    }

    .slider-caption.big {
        font-size: 28px !important;
    }
}

/* Driver Page Redesign */
.driver-hero {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    width: 100%;
    color: #ffffff !important;
}

.driver-hero * {
    color: #ffffff !important;
}

.driver-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.driver-feature-card {
    background: #fff;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.02);
}

.driver-feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.driver-hero h1 strong {
    font-weight: 800;
}
/* App Showcase Section */
.app-showcase-section {
    position: relative;
    background-color: #1a1a1a; /* Fallback dark */
    color: #fff;
}

.feature-item .icon-box {
    font-size: 1.2rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.hover-scale {
    transition: transform 0.3s ease;
}

.hover-scale:hover {
    transform: scale(1.05);
}


/* How It Works Page */
.how-it-works-hero {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.how-it-works-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.process-step .step-number {
    font-size: 4rem;
    font-weight: 800;
    color: #dee2e6; /* Light gray for subtle background number */
    line-height: 1;
}

.process-step .step-image-wrapper {
    max-width: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 5px solid #fff;
}

.process-step .step-image-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15) !important;
}

/* Ensure alternating alignment looks good on mobile */
@media (max-width: 767.98px) {
    .process-step .text-md-right {
        text-align: left !important;
    }
    .process-step .step-number {
        font-size: 3rem;
    }
    .process-step .order-md-2 {
       order: 1 !important;
    }
    .process-step .order-md-1 {
       order: 2 !important;
    }
}


/* Driver Requirements Page */
.requirements-content ul {
    list-style-type: none;
    padding-left: 0;
    margin-bottom: 1rem;
}

.requirements-content ul li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 12px;
    line-height: 1.6;
    color: #4a4a4a;
}

.requirements-content ul li::before {
    content: '\2713'; /* Checkmark */
    position: absolute;
    left: 0;
    top: 0;
    color: #000; /* Black or Theme Color check */
    font-weight: bold;
    font-size: 1.1rem;
}

.requirements-content h3, .requirements-content h4 {
    margin-top: 0;
    margin-bottom: 1.2rem;
    color: #222;
    font-weight: 700;
}


/* Force Hero Text White */
.how-it-works-hero h1,
.how-it-works-hero p {
    color: #ffffff !important;
    text-shadow: 0 1px 3px rgba(0,0,0,0.5); /* Add shadow for readability */
    opacity: 1 !important;
}


/* Service Area Card Styles */
.service-area-card {
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-area-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 1rem 3rem rgba(0,0,0,.2) !important;
}

.service-area-card .card-img-wrapper {
    height: 300px;
    overflow: hidden;
    position: relative;
}

.service-area-card .card-img-wrapper img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-area-card:hover .card-img-wrapper img {
    transform: scale(1.1);
}


/* Compliance Page Styles */
.compliance-content {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #4a4a4a;
}

.compliance-content p {
    margin-bottom: 1.5rem;
}

.compliance-content strong {
    color: #2c2c2c;
}

.compliance-content ul {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.compliance-content li {
    margin-bottom: 0.5rem;
}

