.scrollable-dropdown {
    max-height: 200px;
    /* Adjust the height as needed */
    overflow-y: auto;
    border: 1px solid #ccc;
    /* Optional: Add a border for better visibility */
    padding: 0;
    margin: 0;

}
.search_box_dropdown_menu{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.dropdown_menu_first_col{
    margin-bottom: 0.5rem;
    width: 49%;
}
.dropdown_menu_second_col{
    margin-bottom: 0.5rem;
    width: 49%;
}
.search-form-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255,255,255,0.98);
    z-index: 9999;
    overflow-y: auto;
    padding-top: 20px;
}

.search-form-modal .modal-content {
    max-width: 90%;
    margin: 0 auto;
    background: white;
    border-radius: 10px;
    padding: 10px 15px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}
body.no-scroll {
    overflow: hidden;
    position: fixed;
    width: 100%;
}

@media only screen and (min-width:991px) {
    .hero-section-desktop {
        display: block;
        width: 100%;
        height: 100vh;
        position: relative;
        top: -60px;
        z-index: 10;
        overflow: hidden;
    }

    .desktop-hero-section {
        display: block;
        width: 100%;
        height: 100%;
        z-index: 10;
        object-fit: cover;
    }

    .desktop-hero-section-text {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        height: 100%;  
    }
    .desktop-hero-section-innerbox{
        width:60%;
        margin-top: 3%;
        background-color: white;
        text-align: center;
        padding: 25px 50px;
        border-radius: 20px;
    }    
    .hero-section-mobile {
        display: none;
    }

    .form-search-button {
        display: none;
    }
}

@media screen and (max-width: 990px) {
    #externalDropdownList {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    #externalDropdownList li {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 10px;
        border-bottom: 1px solid #ddd;
        /* Separator line */
        font-size: 16px;
        position: relative;
    }

    #externalDropdownList li:last-child {
        border-bottom: none;
    }

    /* Adding an unfilled black circle at the end of each list item */
    #externalDropdownList li::after {
        content: "";
        width: 12px;
        /* Adjust size of the circle */
        height: 12px;
        border: 2px solid black;
        /* Black border for unfilled effect */
        border-radius: 50%;
        margin-left: 10px;
    }

    .search-form-modal {
        display: none;
        position: fixed;
        z-index: 1002;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        overflow: auto;
        background-color: rgba(0, 0, 0, 0.775);
        padding-top: 60px;

    }

    .modal-content {
        background-color: #fefefe;
        border: 1px solid #888;
        width: 60%;
        border-radius: 10px;
        position: relative;
        top: 15%;

    }

    .close {
        color: #aaa;
        float: right !important;
        font-size: 35px;
        font-weight: bold;
        cursor: pointer;
        margin-left: auto;
        /* Pushes it to the right */
        margin-right: 10px;
        /* Adjust spacing */

    }

    .close:hover,
    .close:focus {
        color: black;
        text-decoration: none;
    }

    .modal-content {
        width: 80%;
        height: 350px;
        overflow-y: auto;

    }

    .form-search-button {
        display: block;
        position: fixed;
        padding: 10px;
        top: 380px;
        right: 10px;
        width: 40px;
        height: 40px;
        border-radius: 10px;
        background-color: #D6DDF5;

        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        z-index: 998;

    }

    .form-search-button button {
        border: none;
        background-color: transparent;
    }

    .form-search-button img {
        width: 100%;
        height: 100%;
    }

    .hero-section-desktop {
        display: none;
    }

    .desktop-hero-section {
        display: none;
    }

    .desktop-hero-section-text {
        display: none;
    }

    .hero-section-mobile {
        display: block;
    }
}

@media screen and (max-width:600px){
    .search_box_dropdown_menu{
        display: flex;
        justify-content:space-between;
        align-items: center;
        width: 100%;
    }
    .dropdown_menu_first_col{
        margin-bottom: 0.5rem;        
        width: 48%;
    }
    .dropdown_menu_second_col{
        margin-bottom: 0.5rem;
        width: 48%;
    }
}