:root {
    --app-color: #33b7bd;
    --second-color: #bee1e6;
    --base-color: #1d1d1b;
}

.role-option {
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
    width: 100%;
}

.role-option:hover {
    background-color: #f8f9fa6e;
}

.role-option.selected {
    background-color: #f8f9fa;
    font-weight: bold;
}

.form-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
    background-color: #f5f5f5;
    border-radius: 8px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

.location-item {
    padding: 20px;
    /* background-color: #fff; */
    border-radius: 5px;
    /* border: 1px solid #ddd; */
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 10px;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 5px;
    /* border: 1px solid #ccc; */
}

.d-flex {
    display: flex;
    gap: 10px;
}

.country-code {
    width: 70px;
    padding: 8px;
}

.remove-location-btn {
    background-color: #e74c3c;
    color: white;
    border: none;
    padding: 5px 10px;
    cursor: pointer;
}

.remove-location-btn:hover {
    background-color: #c0392b;
}

#add-location-btn {
    background-color: #3498db;
    color: white;
    padding: 10px 15px;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 20px;
}

#add-location-btn:hover {
    background-color: #2980b9;
}

h3 {
    color: #34495e;
    font-size: 24px;
    margin-bottom: 20px;
}

.pickup-box,
.drop-box {
    padding: 20px;
    border-radius: 10px;
    background: linear-gradient(
        to bottom right,
        rgb(9 9 14 / 78%),
        rgb(102 85 85 / 80%)
    );
    border-bottom: 1px solid #7f8894;
    box-shadow: 0 4px 8px 0;
    margin: 5px 3%;
}

.third-box {
    padding: 20px;
    border-radius: 10px;
    background: #4589d9;
    border-bottom: 1px solid #7f8894;
    box-shadow: 0 4px 8px 0;
    /* margin: 10px 20%; */
    margin-left: 50%;
}

.line-did {
    border-bottom: 1px solid #000;
}

.payment-views {
    display: flex;
    justify-content: center;
    align-items: center;
}

.bg-payment {
    /* background: #4589d9; */
    padding: 30px;
    border-radius: 8px;
}

.form-label.w-40 {
    width: 40%;
    /* margin-right: 10px; */
    text-align: center;
}

.pickup-box h4,
.drop-box h4 {
    margin-bottom: 10px;
    font-weight: 700;
    color: #fff;
    /* border-bottom: 0.5px solid #000; */
}

.form-control.w-60 {
    width: 60%;
}

/* .location-item input{
    border: none;
} */

.simple-line-input {
    border: none;
    border-bottom: 1px solid #fff;
    outline: none;
    padding: 5px 0;
    width: 100%;
    font-size: 16px;
    background-color: transparent;
    transition: border-color 0.3s ease;
}

.simple-line-input:focus {
    border-bottom: 1px solid #fff;
    /* Highlight color on focus */
}

.simple-line-input::placeholder {
    color: #999;
    /* Placeholder color */
    font-style: italic;
}

.form-label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
}

.custom-radio {
    display: inline-flex;
    align-items: center;
    position: relative;
    margin-right: 15px;
    cursor: pointer;
}

.custom-radio input[type="radio"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.radio-label {
    padding: 7px 20px;
    /* border: 1px solid rgba(0, 0, 0, .87); */
    border-radius: 5px;
    background: #fff;
    color: #000;
    transition: all 0.3s ease;
    font-size: 14px;
    text-align: center;
}

.custom-radio input[type="radio"]:checked + .radio-label {
    background: linear-gradient(
        to bottom right,
        rgb(9 9 14 / 78%),
        rgb(102 85 85 / 80%)
    );
    color: #fff;
    box-shadow: 0px 2px 7px rgba(0, 0, 0, 0.87);
    font-weight: bolder;

    /* border: 1px solid rgba(0, 0, 0, .87); */
}

.custom-radio input[type="radio"]:focus + .radio-label {
    /* outline: none; */
    /* background: var(--app-color); */
}

.custom-radio .radio-label:hover {
    /* background-color: #5aa09c; */
    /* color: #fff; */
}
.radio-label-fav {
    padding: 7px 20px;
    border: 1px solid rgba(0, 0, 0, 0.87);
    border-radius: 5px;
    background: #fff;
    color: #000;
    transition: all 0.3s ease;
    font-size: 14px;
    text-align: center;
}

.fav-radio {
    display: inline-flex;
    align-items: center;
    position: relative;
    margin-right: 15px;
    cursor: pointer;
}

.fav-radio input[type="radio"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    color: #000;
}
.fav-radio input[type="radio"]:checked + .radio-label-fav {
    background: #000;
    color: #fff;
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.87);
}

.fav-radio input[type="radio"]:focus + .radio-label-fav {
    outline: none;
    background: #000;
}

.fav-radio .radio-label-fav:hover {
    background-color: #000;
    color: #fff;
}

.timeline {
    position: relative;
    margin: 20px 0;
    padding: 0;
    list-style: none;
}

.timeline-step {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    position: relative;
}

.timeline-step:last-child {
    margin-bottom: 0;
}

.timeline-step .checkbox {
    position: relative;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    border: 2px solid #6c757d;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 15px;
    transition: all 0.3s ease;
}

.timeline-step.completed .checkbox {
    border-color: #28a745;
    background-color: #28a745;
    color: #fff;
}

.timeline-step .checkbox::after {
    content: "✓";
    font-size: 18px;
    color: transparent;
    transition: color 0.3s ease;
}

.timeline-step.completed .checkbox::after {
    color: #fff;
}

.timeline-step .content {
    display: flex;
    flex-direction: column;
}

.timeline-step .content h5 {
    margin: 0;
    font-size: 1rem;
    font-weight: bold;
}

.timeline-step .content .time {
    font-size: 0.9rem;
    color: #6c757d;
}

.timeline_border {
    display: flex;
    background: #fff;
    border-radius: 10px;
}

.timeline_border .col-md-6 {
    display: flex;
    flex-direction: column;
}

.timeline {
    padding: 20px;
    flex: 1;
    overflow: auto;
    /* In case the content is long */
}

/* .map {
        flex: 1;
        height: 100%;
        background-color: #eaeaea; 
    } */

.driver_profile {
    border: 1px solid rgb(241 223 223);
    border-radius: 10px;
    padding: 3px 20px;
}

.job-timeline-container {
    /* padding-top: 10%;
    padding-bottom: 50px; */
    display: none;
    background: var(--app-color) !important;
}

.summary-container h4 {
    text-align: center;
}

.summary-item {
    margin-bottom: 10px;
}

.summary-item strong {
    font-weight: bold;
}

.summary-item span {
    margin-left: 10px;
}

.total {
    font-size: 1.5em;
    color: #28a745;
    font-weight: 800;
}

#ride-history th {
    font-size: medium;
}

@media (max-width: 768px) {
    .form-label.w-40 {
        text-align: left;
        width: 100%;
        margin-bottom: 5px;
    }

    .form-control.w-60 {
        width: 100%;
    }

    .map {
        height: 400px;
    }

    .fare-container {
        margin: 0px 10px !important;
    }
    .choose_type {
        margin: 0px 7% !important;
    }

    .regiser_container {
        margin: 5% 5% !important;
    }

    #driver_doc_upload {
        margin: 0 5% !important;
    }

    .reg_pad {
        padding: 50px 0px !important;
    }
}

.booking-container {
    padding-top: 20px;
    padding-bottom: 50px;
    background: white;
    border-radius: 10px;
}

.tab-content {
    /* background: #4589d9; */
}

.icon_btn {
    /* background: white; */
    border-radius: 50%;
    /* border: 1px solid #000; */
    margin-bottom: 10px;
}

.fare-container {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
    margin: 0px 10%;
}

.sum_details {
    margin-left: 7%;
}

.sum_details_p {
    color: #3498db;
}

.base_color {
    color: #3498db;
}

.app_color {
    color: #000;
}

#promo-code {
    border: 1px dashed #000 !important;
}

.reffer_code_share {
    border: 1px dashed #000 !important;
    padding: 10px;
    display: flex;
    justify-content: space-around;
    background: #fff;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
}

.reffer_code_share_btn {
    border: #2e2828;
    color: #000;
    font-size: 24px;
    border-radius: 10px;
    background: #ffffffa1;
}

.refferal-num {
    color: #000;
    font-weight: 900;
    font-style: italic;
    font-size: 26px;
    margin-top: 5px;
}

#fav-loc-name {
    border: none;
    border-bottom: 1px solid #000;
    outline: none;
    padding: 5px 0;
    font-size: 16px;
    background-color: transparent;
}

#fav-loc-name:focus {
    border-bottom: 2px solid #000;
}

input[type="radio"]:disabled {
    cursor: not-allowed;
}

.regiser_container {
    margin: 5% 30%;
}

#terms {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

#driver_doc_upload {
    margin: 0 30%;
}

.card-shadow {
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
}

.btn_design {
    background: #fff;
    color: #000;
    border: 1px solid #000;
    border-radius: 8px;
    padding: 7px;
    transition: transform 0.3s ease-in-out;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
}

.btn_design:hover {
    background: #282727;
    color: #fff;
    transform: scale(1.1);
}

.btn_design.active {
    background: #000;
    color: #fff;
}

/* Section Styling */
.step-progress {
    padding-top: 150px;
}

.step-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

/* Step Box */
.step-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
    text-align: center;
}

.step-box .circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 3px solid #ddd;
    background-color: #fff;
    color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    position: relative;
    transition: all 0.3s ease;
}

/* Completed Step */
.step-box.completed .circle {
    background-color: #28a745;
    border-color: #28a745;
    color: #fff;
}

.step-box.completed .icon-check {
    display: block;
}

.step-box.completed .step-number {
    display: none;
}

/* Active Step */
.step-box.active .circle {
    border-color: #007bff;
    background-color: #007bff;
    color: #fff;
}

/* Step Title */
.step-title {
    margin-top: 10px;
    font-size: 1rem;
    font-weight: 600;
    color: #555;
}

/* Arrows */
.arrow {
    flex: 1;
    height: 3px;
    background-color: #ddd;
    position: relative;
}

.arrow::after {
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 10px 0 10px 10px;
    border-color: transparent transparent transparent #ddd;
    position: absolute;
    right: -10px;
    top: 50%;
    transform: translateY(-50%);
}

.step-box.completed + .arrow,
.step-box.completed + .arrow::after {
    background-color: #28a745;
    border-left-color: #28a745;
}

/* Active Arrows */
.step-box.active + .arrow,
.step-box.active + .arrow::after {
    background-color: #007bff;
    border-left-color: #007bff;
}

/* Responsive Design */
@media (max-width: 768px) {
    .step-wrapper {
        flex-direction: column;
    }

    .arrow {
        width: 3px;
        height: 50px;
        margin: 10px 0;
    }

    .arrow::after {
        border-width: 10px 10px 0 10px;
        border-color: #ddd transparent transparent transparent;
        right: 50%;
        top: -10px;
        transform: translateX(50%);
    }
}

.profile-image {
    width: 100%;
    height: 40px;
    cursor: pointer;
}

.wallet_amount {
    background: #28a745;
    color: #fff;
    border-radius: 20px;
    padding: 8px;
    text-align: center;
    font-weight: 900;
}

.logout_btn {
    background: #f70909;
    color: #fff;
    border-radius: 10px;
    text-align: center;
}

.logout_btn:hover {
    background: #ff0101;
    color: #ff0101;
}

.profile_card {
    padding: 20px;
}

.form_sub {
    display: flex;
    justify-content: end;
    margin: 10px 0px;
}

.file_input {
    height: 46px;
}

.info-message {
    background-color: #e7f3fe;
    color: #3178c6;
    padding: 15px;
    border: 1px solid #bee3f8;
    border-radius: 5px;
    font-size: 14px;
    line-height: 1.5;
    display: flex;
    align-items: center;
}

.info-message i {
    margin-right: 10px;
    /* Space between icon and text */
    font-size: 18px;
    /* Icon size */
    color: #3178c6;
    /* Match text color */
}

.input_icon {
    position: relative;
}

.input_icon_style {
    position: absolute;
    top: 40%;
    left: 10px;
    transform: translateY(-50%);
    color: blue;
}

.location_inputs {
    padding-left: 35px !important;
}

.choose_type {
    /* background: #fff; */
    border-radius: 20px;
    /* box-shadow: 0 4px 8px 0 rgba(0, 0, 0, .2); */
    padding: 20px;
    min-width: 76%;
    /* margin: 0px 20%; */
}

.fav_radio_cls input[type="radio"] {
    margin-right: 10px;
}

.fav_radio_cls label {
    cursor: pointer;
    font-size: 16px;
    padding: 5px 10px;
    border: 1px solid #d9d9d9;
    border-radius: 5px;
    display: inline-block;
    transition: background-color 0.3s ease, border-color 0.3s ease;
    width: 80%;
    text-align: center;
    min-height: 40px;
    margin-left: 10%;
}

.fav_radio_cls input[type="radio"]:checked + label {
    background-color: #fff;
    border-color: #000;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
}

.fav_radio_cls label:hover {
    background-color: #e0e0e0;
    border-color: #b0b0b0;
}

.edit_del_btn {
    background: none;
    border-radius: 56%;
    border: 0.5px solid #4589d9;
}
.edit_del_btn:hover {
    background: #fff;
}

/* ---------------------------------------------------------------------- */
.simple_btn {
    padding: 10px 50px;
    background: var(--app-color);
    color: #fff;
    border: none;
    border-radius: 20px;
    margin-top: 25px;
}

.banner-btn {
    font-size: 1rem;
    padding: 10px 40px;
    border: none;
    border-radius: 5px;
    background-color: #000;
    /* Button color */
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease-in-out;
    z-index: 2;
    box-shadow: 0px 4px 6px rgb(37 135 117);
}

.banner-btn1 {
    font-size: 1rem;
    padding: 10px 40px;
    border-radius: 5px;
    background: transparent;
    border: 1px solid #000;
    color: #333;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease-in-out;
    z-index: 2;
}

.banner-btn:hover {
    background-color: rgb(0, 0, 0);
    transform: translateY(-2px);
    color: #fff;
}

.banner-btn1:hover {
    background-color: transparent;
    color: #000;
    transform: translateY(-2px);
}

.banner {
    position: relative;
    background: var(--app-color);
    /* background-image: url('../images/Home_banner.jpeg'); */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 65vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-overlay {
    background-color: rgba(24, 24, 24, 0.285);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.banner-title {
    color: #000;
    font-size: 3rem;
    font-weight: 700;
    z-index: 2;
}

.banner-subtitle {
    color: #cdc4c4;
    font-size: 1.2rem;
    margin-bottom: 30px;
    z-index: 2;
}

.bg-app {
    background: var(--second-color) !important;
    /* background:  url('/webimages/dark_bg.jpeg'); */
}
.bg-second {
    /* background: var(--app-color) !important; */
    /* background: radial-gradient(circle, rgba(51,183,189,1) 0%, rgba(255,255,255,1) 100%); */
    background: radial-gradient(
        circle,
        rgba(51, 183, 189, 1) 16%,
        rgb(169 150 150) 116%
    );
    /* background: radial-gradient(circle, rgba(51,183,189,1) 16%, rgb(0 0 0) 116%); */
}
.app-color {
    color: var(--app-color);
}

.home_btns {
    display: flex;
    gap: 20px;
}

.modal-title {
    font-weight: 900;
}
/* Responsive Adjustments */
@media (max-width: 768px) {
    .banner-title {
        font-size: 2.5rem;
    }

    .banner-subtitle {
        font-size: 1rem;
    }

    .banner-btn {
        font-size: 0.9rem;
        padding: 8px 20px;
    }
    .home_btns {
        display: flex;
        flex-direction: column;
    }
    .banner-btn1,
    .banner-btn {
        width: 50%;
    }
    .reg_note {
        width: 90% !important;
        margin-left: 5% !important;
    }

    .banner {
        height: auto !important;
    }
    .header-important {
        height: 80px !important;
        padding: 0px 20px !important;
    }

    .reg-title {
        padding-top: 5vh !important;
        padding-left: 10px !important;
        padding-right: 10px !important;
    }
    .reg-title h2 {
        font-size: 50px !important;
        letter-spacing: 10px;
    }

    .reg-title p {
        font-size: 30px !important;
        letter-spacing: 10px;
    }

    .image-section-title {
        font-size: 40px !important;
        letter-spacing: 10px;
    }

    .step-2 {
        margin-top: 0px !important;
        z-index: 2;
    }

    .step-3 {
        margin-top: 0px !important;
        z-index: 3;
    }

    .step-4 {
        margin-top: 0px !important;
        z-index: 4;
    }
    .features {
        padding-top: 50px !important;
    }
}

/* .about_image{
    box-shadow: 0px 4px 6px rgb(37 135 117);
    border-radius: 10px;

} */

.about_image {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.banner-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #000;
}

.banner-subtitle {
    font-size: 1.25rem;
    color: #1d1d1b;
    margin-bottom: 20px;
}

.reg_note {
    width: 40%;
    margin-left: 60%;
}

.loading-block {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 5px solid #ccc;
    border-top-color: #3498db;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.loading-text {
    margin-top: 20px;
    font-size: 1.2rem;
    color: #555;
}

.img-container {
    background: var(--app-color);
    padding: 20px;
    border-radius: 30px;
    text-align: center;
    color: #000;
}

.img-container img {
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    min-height: 350px;
    height: 350px;
    width: 100%;
}

.min-height {
    min-height: 60vh;
}

.header-important {
    height: 100px;
    padding: 0px 20px;
}
@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.content-animation {
    animation: fadeInLeft 1s ease-in-out;
}

.image-animation {
    animation: fadeInRight 1s ease-in-out;
}

.bg_wallet_card {
    padding: 0 50px;
}

.bg-radial {
    background: radial-gradient(circle, #ffffff, #bee1e6);
}

.reg_btn,
.back_btn {
    color: #fff;
    background: #000;
    border-radius: 26px;
    box-shadow: 0px 4px 6px rgb(45 57 54);
    cursor: pointer;
}

.book_now_button {
    padding: 7px 25px;
    background: #000;
    color: #fff;
    border-radius: 20px;
    border: 1px solid #fff;
}

.reg-title {
    padding-top: 20vh;
}
.reg-title h2 {
    color: #fff;
    font-size: 70px;
    letter-spacing: 10px;
}

.reg-title p {
    color: var(--app-color);
    font-size: 40px;
    letter-spacing: 10px;
}

.reg_pad {
    padding: 70px;
}

.features-section {
    background-image: url(../images/testimonial_BG.png);
}
.features-section h2 {
    text-align: center;
    color: #fff;
    padding: 20px;
}

.features {
    padding-top: 200px;
}

.features-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    min-height: 400px;
}

.features-card:hover {
    transform: translateY(-10px);
}

.features-card img {
    max-height: 280px;
    min-height: 280px;
    object-fit: cover;
    width: 100%;
}

.step-2 {
    margin-top: -50px;
    z-index: 2;
}

.step-3 {
    margin-top: -100px;
    z-index: 3;
}

.step-4 {
    margin-top: -150px;
    z-index: 4;
}

.card-title {
    font-size: 1.25rem;
    font-weight: bold;
    color: #333;
}

.card-text {
    font-size: 0.9rem;
    color: #666;
}

.feature-content h5 {
    font-family: monospace;
}

.section-title {
    font-size: 2rem;
    color: #333;
    font-weight: bold;
}

.section-subtitle {
    font-size: 1rem;
    color: #666;
    margin-bottom: 2rem;
}

.step-card {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    position: relative;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step-card:hover {
    transform: translateY(-10px);
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2);
}

.step-icon {
    position: absolute;
    top: -40px; /* Adjust height above the card */
    left: 50%;
    transform: translateX(-50%);
    background-color: #fff;
    border: 2px solid #ddd;
    border-radius: 50%;
    padding: 15px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    z-index: 1;
}

.step-icon img {
    width: 40px;
    height: 40px;
}

.step-title {
    margin-top: 50px; /* Space for the floating icon */
    font-size: 1.2rem;
    font-weight: bold;
    color: #333;
}

.step-text {
    font-size: 0.9rem;
    color: #666 !important;
    margin-top: 10px;
}

.how-it-works-section {
    background-image: url(../images/testimonial_BG.png);
    background-size: cover;
    padding: 110px 0 160px;
}

.how-it-works h2 {
    color: #fff;
}

.how-it-works p {
    color: #e9cfcf;
}

.how-it-works .section-subtitle {
    margin-bottom: 100px;
}
@media (max-width: 768px) {
    .step-card {
        margin-bottom: 20px;
    }
    .about_us_section {
        height: 28vh !important;
    }
    .home_banner {
        padding-left: 0px !important;
    }
}

.about_us_section {
    position: relative;
    background-image: url("/webimages/good_1.png");
    height: 60vh;
    background-repeat: round;
    background-size: cover;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.about_us_section::before,
.banner-section.abt::before,
.banner-imgs::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1;
}

.about_us_section .content,
.banner-section.abt .content,
.banner-imgs .content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.image-section-title {
    font-size: 70px;
    color: #fff;
    letter-spacing: 10px;
}

.image-section-subtitle {
    color: var(--app-color);
    font-size: 28px;
    letter-spacing: 10px;
    font-weight: 600;
    font-family: monospace;
}

/* .home_banner {
    position: relative; 
    background-image: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('/webimages/home_screen_1.png');
    height: 90vh;
    background-size: cover; 
    width: 100%;
    display: flex; 
    align-items: center; 
    justify-content: start; 
    color: #fff; 
    padding-left: 100px;
} */

.home_banner {
    position: relative;
    background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
        url("/webimages/home_screen_1.png");
    height: 90vh;
    width: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    color: #fff;
    padding-left: 100px;
}

/* Tablets */
@media (max-width: 1024px) {
    .home_banner {
        padding-left: 60px;
        height: 80vh;
        width: 100%;
        background-size: cover;
        background-repeat: no-repeat;
    }
}

/* Phones */
@media (max-width: 768px) {
    .home_banner {
        padding-left: 20px;
        height: 70vh;
        justify-content: center;
        text-align: center;
        flex-direction: column;
        width: 100%;
        background-size: cover;
    }
    .home_banner h1 {
        font-size: 1.5rem;
    }
    .home_banner h2 {
        font-size: 1.2rem;
    }
}

/* Extra small phones */
@media (max-width: 480px) {
    .home_banner {
        padding-left: 10px;
        height: 30vh;
        width: 100%;
        background-size: contain;
        background-repeat: no-repeat;
    }
    .home_banner h1 {
        font-size: 2rem;
    }
    .home_banner h2 {
        font-size: 1rem;
    }
}

@media (max-width: 375px) {
    .home_banner {
        padding-left: 10px;
        height: 40vh;
        width: 100%;
        background-size: contain;
        background-repeat: no-repeat;
    }
    .home_banner h1 {
        font-size: 1.5rem;
    }
    .home_banner h2 {
        font-size: 1rem;
    }
}

.home_banner .content {
    z-index: 2;
}

.banner-img-btn {
    font-size: 1rem;
    padding: 10px 40px;
    border: none;
    border-radius: 5px;
    background-color: #fff;
    /* Button color */
    color: #000;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease-in-out;
    z-index: 2;
    box-shadow: 2px 4px 8px #a1a6ab;
}

.banner-img-btn1 {
    font-size: 1rem;
    padding: 10px 40px;
    border-radius: 5px;
    background: transparent;
    border: 1px solid #fff;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease-in-out;
    z-index: 2;
}

.banner-img-btn:hover {
    background-color: #fff;
    transform: translateY(-2px);
    color: #000;
}

.banner-img-btn1:hover {
    background-color: transparent;
    color: #fff;
    transform: translateY(-2px);
}
.vehicle-list {
    background-color: #f8f9fa;
    padding: 100px 0px;
}

.section-title {
    font-size: 2rem;
    color: #333;
    font-weight: bold;
    margin-bottom: 2rem;
}

.truck-card {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.05);
}

.truck-card:hover {
    transform: translateY(-5px);
    box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.15);
}

.truck-image img {
    width: 100%;
    height: 300px;
    border-bottom: 1px solid #ddd;
}

.truck-details {
    padding: 15px;
    text-align: center;
}

.truck-name {
    font-size: 1.2rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 5px;
}

.truck-capacity {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
}

.letter {
    display: inline-block;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.letter.visible {
    opacity: 1;
    transform: translateY(0);
}

.date_time_box {
    /* background: linear-gradient(to bottom right, rgb(9 9 14 / 78%),rgb(102 85 85 / 80%)); */
    border-radius: 5px;
    /* color: rgb(255, 255, 255); */
    margin: 10px;
    padding: 10px 15px;
    /* border-bottom: 1px solid #7f8894; */
}
.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
    background-color: #ccc;
    border-radius: 34px;
    cursor: pointer;
    transition: background-color 0.4s;
}

.switch .slider {
    position: absolute;
    height: 26px;
    width: 26px;
    background-color: white;
    border-radius: 50%;
    top: 4px;
    left: 4px;
    transition: transform 0.4s;
}

.switch.on {
    background-color: #4caf50;
}

.switch.on .slider {
    transform: translateX(26px);
}
@media (max-width: 768px) {
    .truck-card {
        margin-bottom: 20px;
    }
}

.contact_btn {
    padding: 2px 16px;
    border: 1px solid black;
    border-radius: 5px;
    margin-bottom: 5px;
    background: white;
    font-weight: 800;
    cursor: pointer;
}

.parnter-header-profile {
    object-fit: cover;
}
