
.select2-container {
    width: 100% !important; /* Make the container wider */
}
.select2-results__option {
    font-size: 0.85rem; /* Make text smaller */
    font-weight: bold; /* Make text bolder */
}
.select2-selection__rendered {
    font-size: 0.85rem; /* Adjust selected text size */
    font-weight: bold; /* Adjust selected text weight */
}
.uniform-height {
    height: 35px !important; /* Ensure uniform height for all input fields */
}
.form-label {
    font-size: 0.75rem; /* Smaller label */
    font-weight: bold; /* Bolder label */
    color: #6c757d;
    margin-bottom: 0.5rem;
    display: block;
}
.uniform-height {
    height: 35px; /* Uniform height for all inputs */
}
.larger-input {
    width: 100%; /* Make the input box larger */
}
.btn-icon-only { 
       width: 40px;
height: 29px;
padding: 0;
display: flex;
justify-content: center;
align-items: center;
margin-top: 13px;
}
.address-suggestions {
    position: absolute;
    z-index: 1000;
    background: #fff;
    border: 1px solid #ddd;
    width: 100%;
    max-height: 200px;
    overflow-y: auto;
}
.address-suggestions li {
    padding: 8px 12px;
    cursor: pointer;
}

.address-suggestions li:hover {
    background: #f0f0f0;
}

.fancy-submit-btn {
    background: linear-gradient(to left, #0670ba 0%, #ce3131 50%, #0670ba 100%);
    color: #fff;
    border: none;
    border-radius: 30px;
    padding: 12px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    box-shadow: 0 4px 16px rgba(0, 123, 255, 0.15);
    transition: background 0.3s, box-shadow 0.3s, transform 0.2s;
    letter-spacing: 1px;
    width: 100%;
    display: block;
    margin-top: 10px;
}

.fancy-submit-btn:hover,
.fancy-submit-btn:focus {
    background: linear-gradient(90deg, #0056b3 0%, #00aaff 100%);
    color: #fff;
    box-shadow: 0 8px 24px rgba(0, 123, 255, 0.25);
    transform: translateY(-2px) scale(1.03);
    outline: none;
}

.trip-form .form-group {
    margin-bottom: 18px;
}

@media (max-width: 991.98px) {
    .trip-form .form-group {
        width: 100%;
        max-width: 100%;
        flex: 0 0 100%;
    }
}

.trip-form .form-group,
.trip-form .form-row .col {
    width: 100%;
    max-width: 100%;
    flex: 0 0 100%;
}

.trip-form .form-row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -8px;
    margin-left: -8px;
}

.trip-form .form-row>.col {
    flex: 1 0 0%;
    min-width: 0;
    padding-right: 8px;
    padding-left: 8px;
}

@media (min-width: 768px) {
    .trip-form .form-row>.col {
        max-width: 50%;
    }
    
}
.linear-bg{
 border: none; height: 1px; 
    background:linear-gradient(to right, #ce3131, #0670ba);

}
#searchForm{
    padding: 40px 30px;
    background: #fff;
    position: relative;
    margin-top: 0px;
    border-radius: 20px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    z-index: 10;
}
.carousel-caption {
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    background:none;
    padding: 10px 20px;
    border-radius: 5px;
    max-width: 90%;
    max-height: max-content;
    width: max-content;
    bottom:-35px;
}
@media (max-width: 770px) {
  #searchForm {
    margin-top: 60px !important;
  }

}
@media (max-width: 410px) {
  #searchForm {
    margin-top: 30px !important;
  }
}
.carousel-caption p {
    color:#9dd9fe;
    margin: 0;
    font-weight: bold;
}

.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Material Design Form Styles */
.trip-form .form-group {
    position: relative;
    margin-bottom: 1.5rem;
}

.trip-form .form-control {
    border: none;
    border-bottom: 2px solid #ccc;
    border-radius: 0;
    box-shadow: none;
    padding: 0.5rem 0;
    background: transparent;
    font-size: 1rem;
    transition: border-color 0.3s;
    position: relative;
    z-index: 1;
}

.trip-form .form-control:focus {
    border-bottom: 2px solid #007bff;
    outline: none;
    box-shadow: none;
}

.trip-form label {
    position: absolute;
    top: 0;
    left: 0;
    font-size: 1rem;
    color: #aaa;
    transition: all 0.3s;
    pointer-events: none;
    z-index: 0;
}

.trip-form .form-control:focus+label,
.trip-form .form-control:not(:placeholder-shown)+label {
    top: 0;
    font-size: 0.8rem;
    color: #007bff;
}

.trip-form .form-control:placeholder-shown+label {
    font-size: 1rem;
    color: #aaa;
}

.trip-form label {
    font-weight: bold;
    color: #333;
    z-index: 2;
}

.trip-form .form-control {
    padding-top: 1.5rem;
}

.trip-form label {
    top: 1rem;
}

/* Style for Previous and Next Buttons */
.owl-carousel .owl-nav .owl-prev,
.owl-carousel .owl-nav .owl-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1000;
    font-size: 1.5rem;
}

.owl-carousel .owl-nav .owl-prev {
    left: -30px;
}

.owl-carousel .owl-nav .owl-next {
    right: -30px;
}

.owl-carousel .owl-nav .owl-prev:hover,
.owl-carousel .owl-nav .owl-next:hover {
    background: rgba(0, 0, 0, 0.8);
}
.select2-container .select2-selection--single {
    border-radius:10px !important;
    padding:4px;
}
.select2-dropdown--above{
margin-top: 10px;

}
 .select2-dropdown--below{
margin-top: -10px;
}
@media (max-width: 768px) {
   

    .content-heading {
        font-size: 1.3rem;
    }

    .highlighted-text p {
        font-size: 0.9rem;
        padding-bottom: 0px;
    }

    .carousel-caption h5 {
        font-size: 0.9rem;
        top: 60%;
    }

  

    .carousel-caption p {
        font-size: 0.7rem;
    }

    .trip-form {
        margin-top: 30px;
        padding-top: 10px;
    }

    .py-5 {
        padding-top: 0px !important;
        padding-bottom: 0px !important;
    }
}

.ddcc .item {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 230px;
}

.ddcc .item img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);width: 230px;
    height: 150px;
    object-fit: cover;
}

.ddcc .item .carousel-caption {
    
    text-align: center;
    padding: 10px 20px;
    border-radius: 5px;
    color: #fff;
}

#carSlideshow {
    overflow: hidden;
}

#carSlideshow .carousel-item img {
    height: 100%;
    object-fit: cover;
    height: 100%;
    object-fit: contain;
    aspect-ratio: 3 / 1;
}

       
        .select2-results__option {
            font-size: 0.95rem; /* Make text smaller */
            font-weight: bold; /* Make text bolder */
        }
        .select2-selection__rendered {
            font-size: 0.95rem; /* Adjust selected text size */
            font-weight: bold; /* Adjust selected text weight */
        }
        .uniform-height {
            height: 35px !important; /* Ensure uniform height for all input fields */
        }
        .form-label {
           font-size: 1rem;
    font-weight: bold;
    color: #0670ba;
            margin-bottom: 0.2rem;
            display: block;
        }
        .uniform-height {
            height: 35px; /* Uniform height for all inputs */
        }
        .larger-input {
            width: 100%; /* Make the input box larger */
        }
        .btn-icon-only { 
               width: 40px;
    height: 29px;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 13px;
        }
        .form-control{
            
    color: #0670ba; 
    font-weight: 600;
    border-radius:0px;

        }
        .select2-selection__rendered
 {
    color: #0670ba !important;
    line-height: 28px;
}
.select2-container--default .select2-selection--single .select2-selection__rendered
 {
    color: #0670ba;
    line-height: 28px;
}
btn-primary{
    font-weight: 600;
}