/* Banner Background */
.banner {
    background-image: url("../section-img/banner.png");
    height: 620px;
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: flex-end; /* Push content to the bottom */
    align-items: flex-start;
    position: relative;
    padding: 20px; /* Ensures spacing from edges */
    z-index: 1; /* Ensure banner text stays above */
}


.login-banner {
    background-image: url("../section-img/login-banner.png");
    height: 680px;
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: flex-end; /* Push content to the bottom */
    align-items: flex-start;
    position: relative;
    padding: 20px; /* Ensures spacing from edges */
    z-index: 1; /* Ensure banner text stays above */
}

.ride-confirmation-banner {
    background-image: url("../section-img/confirmation-banner.png");
    /* height: 650px; */
    padding-top: 80px !important;
    padding-bottom: 80px !important;
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: flex-end; /* Push content to the bottom */
    align-items: flex-start;
    position: relative;
    padding: 20px; /* Ensures spacing from edges */
    z-index: 1; /* Ensure banner text stays above */
}

/* Banner Text (Ensure visibility) */
.banner_text {
    color: #fff; /* Adjust text color */
    font-size: 24px;
    max-width: 80%;
    z-index: 2; /* Ensure text is above the booking box */
    position: relative;
}

/* Responsive Styles for Tablets */
@media (max-width: 768px) {
    .banner {
        height: 800px; /* Adjust height for smaller screens */
        padding: 15px; /* Reduce padding */
        background-size: cover;
        background-position: center;
    }


}


/* Responsive Styles for Tablets */
@media (max-width: 768px) {
    .login-banner {
        height: 800px; /* Adjust height for smaller screens */
        padding: 15px; /* Reduce padding */
        background-size: cover;
        background-position: center;
    }
}

/* Responsive Styles for Mobile */

@media (max-width: 480px) {
    .banner {
        height: 930px; 
        padding: 10px; 
      
    }
}



/* Responsive Styles for Mobile */
@media (max-width: 480px) {
    .login-banner{
        height: 590px; /* Reduce height for very small screens */
        padding: 10px; /* Adjust padding */
        background-position: top; /* Adjust background position */

    }

}

/* Booking Box - Aligned to Left on Desktop */
.banner_part2 {
    width: 100%;
    max-width: 680px;
    border-radius: 9px;
    background: rgba(255, 255, 255, 0.70);
    backdrop-filter: blur(10px);
    padding: 20px;
    position: absolute;
    bottom: auto;
    right: 150px; /* Align to the left */
    transform: none; /* Remove centering */
    z-index: 3; /* Ensure it stays above */
}

/* Responsive Booking Box */
@media (max-width: 1024px) {
    .banner_part2 {
        max-width: 90%; 
        padding: 18px;
        left: 50%; 
        transform: translateX(-50%); 
    }
}

@media (max-width: 768px) {
    .banner_part2 {
        max-width: 95%;
        padding: 15px;
        bottom: 15px;
    }
}

@media (max-width: 480px) {
    .banner_part2 {
        max-width: 100%;
        padding: 12px;
        border-radius: 5px;
        top:0px !important;
        height: fit-content;
        position: absolute;
       
        
    }
}






/* Input Icons */
.input-group-text {
    border: none;

}

/* Button Full Width */
.btn-primary {

    font-size: 18px;
    font-weight: bold;
}


      .services-section {
        padding: 50px 0;
        background-color: #001F3F;
    }

    .service-card {
        background: #fff;
        padding-top: 80px;
        padding-bottom: 80px;
        padding-left: 40px;
        padding-right: 40px;
        border-radius: 0px;
        position: relative;
        text-align: left;
        box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 20px;
        transition: 0.3s ease-in-out;
    }

    .service-card:hover {
        transform: translateY(-5px);
    }

    .service-title {
        position: absolute;
        top: 30px; /* Moves the title lower */
        left: 50px;
        font-size: 18px;
        font-weight: bold;
        text-transform: uppercase;
        color: #333;
        margin-bottom: 200px;
    }



    .service-icon {
        max-width: 100px;
        flex-shrink: 0;
    }

    .service-content {
        flex: 1;
    }

    .service-description {
        font-size: 16px;
        color: #333;
    }

    .arrow-icon {
        font-size: 24px;
        color: #000;
    }

    @media (max-width: 768px) {
        .service-card {
            flex-direction: column;
            text-align: center;
            padding-top: 50px;
        }

        .service-title {
            top: 10px;
            right: 10px;
            font-size: 16px;
        }

        .service-icon {
            max-width: 80px;
        }
    }

    .swiper-container {
        padding: 20px 0;
    }
    .swiper-slide {
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .logo-img {
        max-width: 100%;
        height: auto;
        filter: grayscale(100%);
        transition: 0.3s;
    }
    .logo-img:hover {
        filter: grayscale(0%);
    }

    .faq-icon {
        background-color: #CC6600;
        color: white;
        border-radius: 50%;
        padding: 5px 10px;
        font-size: 16px;
        margin-right: 10px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .accordion-button {
        background: white;
        color: #CC6600;
        font-size: 18px;
        font-weight: 700;
        box-shadow: none;
    }

    .accordion-button:not(.collapsed) {
        background: #E3ECF8;
    }

    .accordion-item {
        border: none;
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
        transition: box-shadow 0.3s ease-in-out;
    }

    .accordion-item:hover {
        box-shadow: 0px 6px 16px rgba(0, 0, 0, 0.15);
    }


    .faq-icon {
        background-color: #CC6600;
        color: white;
        border-radius: 50%;
        padding: 5px 10px;
        font-size: 16px;
        margin-right: 10px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .accordion-button {
        background: white;
        color: #CC6600;
        font-size: 18px;
        font-weight: 700;
        box-shadow: none;
    }

    .accordion-button:not(.collapsed) {
        background: #E3ECF8;
    }

    .accordion-item {
        border: none;
        box-shadow: 0px 6px 8px rgba(0, 0, 0, 0.1);
    }

    .footer,p,h5{
        color: #01386E;
    }


    .btn-custom{
        color: #fff !important;
        background-color: #054E9D!important;
    }

    .btn-booking{
        color: #fff !important;
        background-color: #001F3F!important;
    }

    .testimonial-card {
        background: white;
        border-radius: 15px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        display: flex;
        flex-direction: column;
        height: 100%; /* Ensures equal height */
    }
    .testimonial-card p {
        flex-grow: 1; /* Pushes elements evenly, ensuring consistent spacing */
    }

    h5{
        color:#CC6600 !important;
    }

    /* Ensure Poppins Font is Loaded */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap');

.navbar-nav .nav-link {
    font-family: 'Poppins', sans-serif;
    font-weight: 500 !important;
    font-size: 18px;
    line-height: 24px;
    color: #01386E !important;
    transition: color 0.3s ease, border-bottom 0.3s ease;
    border-bottom: 2px solid transparent;
    padding-bottom: 5px;
}

.navbar-nav .nav-link:hover {
    color: #007bff !important;
}

.navbar-nav .nav-link.active {
    color: #007bff !important;
    border-bottom: 2px solid #007bff !important;
}

    .animated-border {
        width: 40%;
        height: 10px;
        border-radius: 10px;
        background: linear-gradient(90deg, #01386E, #ffffff, #01386E);
        background-size: 200% 100%;
        margin: 0 auto;
        position: relative;
        animation: wave-border 3s infinite linear;
    }

    @keyframes wave-border {
        0% {
            background-position: 200% 0;
        }

        100% {
            background-position: -200% 0;
        }
    }

    /* Main page booking form css  */

        /* .booking-form {
        background: #fff;
        border-radius: 15px;
        padding: 25px;
        box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
        max-width: 550px;
        margin: 20px auto;
        font-family: 'Poppins', sans-serif;
    } */

    .booking-form h4 {
        color: #D2691E;
        font-weight: 600;
        margin-bottom: 25px;
    }

  

    .vehicle-option img {
        width: 60px;
        height: 60px;
        display: block;
        margin: 0 auto 5px;
    }

    .vehicle-option {
        text-align: center;
        padding: 10px;
        border: 2px solid transparent;
        cursor: pointer;
        border-radius: 8px;
    }

    .vehicle-option.active {
        border-color: #D2691E;
    }

    .btn-book {
        background: #D2691E;
        color: #fff;
        border-radius: 5px;
        padding: 8px 25px;
        border: none;
        padding: 15px 80px;       
    }

    /* For screens smaller than 576px (Bootstrap's mobile breakpoint) */
@media (max-width: 575.98px) {
    .btn-book {
        padding: 10px 40px;
    }
}


    .btn-book:hover {
        background: #b35414;
        color: #fff;
    }

    .input-group-text {
    display: flex;
    align-items: center;
    padding: .375rem .75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: var(--bs-body-color);
    text-align: center;
    white-space: nowrap;
    background-color: transparent !important;
    border: var(--bs-border-width) solid var(--bs-border-color);
    border-radius: .375rem;
}

.accordion-button:not(.collapsed) {
    color: #CC6600 !important;
    background-color: var(--bs-accordion-active-bg);
    box-shadow: inset 0 calc(-1 * var(--bs-accordion-border-width)) 0 var(--bs-accordion-border-color);
}

        .login-box h4 {
            color: #D97706;
            font-weight: 700;
            margin-top: 10px;
        }

        .login-box .otp-input {
            width: 100px;
            height: 45px;
            text-align: center;
            font-size: 24px;
            border: 1px solid #ced4da;
            border-radius: 5px;
            
        }
      .login-box {
    padding: 40px;
}

/* Mobile Adjustment */
@media (max-width: 575.98px) {
    .login-box {
        padding: 10px;
    }
}

        @media (max-width: 575.98px) {
    .login-box .otp-input {
        width: 60px;
        height: 40px;
        font-size: 20px;
    }
}

         .otp-input:hover {
          
            border: 1px solid #00336F;
           
        }

        .btn-primary-custom {
            background: #003366;
            color: #fff;
            font-weight: 500;
            padding: 10px;
            width: 20%;
            border: none;
        }

        .btn-confirm-booking {
            background: #003366;
            color: #fff;
            font-weight: 500;
            padding: 10px;
            width: 100%;
            border: none;
        }
        
        .btn-confirm-booking:hover{
           background: #003366;
            color: #fff; 
        }


        .btn-primary-custom {
            background: #003366;
            color: #fff;
            font-weight: 500;
            padding: 10px;
            width: 35% !important;
            border: none;
        }

        /* Mobile Adjustment */
@media (max-width: 575.98px) {
    .btn-primary-custom {
        width: 50%;
        padding: 5px;
    }
}

        .btn-primary-custom:hover {
            background: #002244;
        }

        .para{
            color: #CC6600;
            font-size: 16px;
        }

        .custom-info-card{
               border-left: 4px solid #01386E; /* You can adjust color & thickness */
        background-color: #f9f9f9; /* Optional: light background for contrast */
        }

        







