<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Price Range Dropdown Styling */
.search-dropdown-menu-price {
    display: none;
    position: absolute;
    width: 350px; /* Increased width for better layout */
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 12px;
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.15);
    padding: 15px;
    top: 100%;
    left: 0;
    z-index: 10;
}

/* Price Labels Above the Slider */
.price-labels {
    display: flex;
    justify-content: space-between;
    padding: 5px 5px;
    font-size: 14px;
    font-weight: bold;
    color: #333;
}

/* Price Inputs (Below Slider) */
.price-inputs {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
}

.price-inputs input {
    width: 48%;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 5px;
    text-align: center;
    font-size: 14px;
    font-weight: bold;
}

/* Range Slider Container */
.range-slider {
    position: relative;
    width: 100%;
    height: 10px;
    margin: 12px 0;
}

/* Orange Track Between Handles */
.slider-track {
    position: absolute;
    width: 100%;
    height: 6px;
    background: #ddd;
    border-radius: 5px;
    top: 50%;
    transform: translateY(-50%);
}

/* Active Orange Line */
.slider-track::before {
    content: "";
    position: absolute;
    height: 6px;
    background: #f04f1e; /* Orange */
    border-radius: 5px;
    top: 0;
    left: 0;
    right: 0;
    transition: all 0.3s ease-in-out;
}

/* Dual Range Sliders */
.range-slider input[type="range"] {
    position: absolute;
    width: 100%;
    top: 0;
    height: 10px;
    background: none;
    pointer-events: none;
    appearance: none;
    z-index: 2;
}

/* Customizing the Range Slider Thumbs */
.range-slider input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 18px;
    height: 18px;
    background: #0056b3;
    border-radius: 50%;
    pointer-events: auto;
    cursor: pointer;
    position: relative;
    z-index: 3;
}

.range-slider input[type="range"]::-moz-range-thumb {
    width: 18px;
    height: 18px;
    background: #0056b3;
    border-radius: 50%;
    pointer-events: auto;
    cursor: pointer;
}

/* Apply Button */
.apply-button {
    background: #0056b3;
    color: #fff;
    padding: 10px;
    border-radius: 8px;
    cursor: pointer;
    border: none;
    width: 100%;
    text-align: center;
    font-weight: bold;
    transition: background 0.3s ease-in-out;
    margin-top: 15px;
}

.apply-button:hover {
    background: #004494;
}

 

  .specialdescription{ 
    color: #ffffff;
    font-weight: 300;
    font-size: 13px;
    letter-spacing: 1.5px;
    font-family: 'Roboto', sans-serif;
}
.bannerhg2{
    font-size: 22px;
    margin: 0 0 0px;
    font-family: 'Roboto', sans-serif;
    font-weight: 200;
    color: #ffffff;
    line-height: 2;
    padding: 5px 3px;
    letter-spacing: 1px;

}
.headl{
    border-bottom: 3px solid #ffffff    ;
}
        .search-input{
            padding: 10px 0;
        }

        

.search-section-list { 
    padding: 29px 49px;
 
}


    
 
/* ====== Labels ====== */
.form-label {
    font-size: 16px;
    font-weight: 500;
    color: #444;
    display: block;
    margin-bottom: 8px;
 }


.search-dropdowns &gt; .form-label, .search-dropdowns2 &gt; .form-label{
    font-size: 16px;
    font-weight: 300;
    color: #ffffff!important;
    display: block;
    margin-bottom: 8px;
    letter-spacing: 1px;
}
/* Ensure the banner has enough height */
.banner-images img {
    width: 100%;
    height: 500px; /* Adjust as needed */
    object-fit: cover;
}

/* Tabs */
.search-tabs {
    display: flex;
    justify-content: space-around;
    border-bottom: 2px solid #ddd;
    margin-bottom: 10px;
}

.tab-button {
    background: none;
    border: none;
    padding: 10px;
    cursor: pointer;
    color: #ffffff;
    font-weight: 400;
    font-size: 14px;
    text-align: center;
    line-height: 2;
    width: 50%;
    letter-spacing: 1px;
}

.tab-button.active {
    border-bottom: 6px solid #db5f3a;
}

 

.search-input input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

 
/* Button placeholder and selected values */
.search-dropdown-toggle{
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    background: #fff;
    border-radius: 5px;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Placeholder Styling */
.search-dropdown-toggle .placeholder {
    color: #999;
    flex-grow: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    background-color: #fff;
    cursor: pointer;
}

/* Hide placeholder when selected values exist */
.search-dropdown-toggle .selected-values:not(:empty) + .placeholder {
    display: none;
}

 
.search-button-section{
            text-align: center;
            
 
}


/* Show dropdown when "open" class is added */
.search-dropdown-menu-property.open,
.search-dropdown-menu-beds.open,
.search-dropdown-menu-price.open {
    display: block;
}
/* Hide dropdowns by default */
.search-dropdown-menu-property,
.search-dropdown-menu-beds,
.search-dropdown-menu-price {
    display: none;
    position: absolute;
    width: 100%;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 5px;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
    padding: 10px;
    top: 100%;
    left: 0;
    z-index: 10;
}

/* Checkboxes */
.search-dropdown-menu-property label,
.search-dropdown-menu-beds label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    padding: 5px;
    border-bottom: 1px solid #f0f0f0;
}

.search-dropdown-menu-property input[type="checkbox"],
.search-dropdown-menu-beds input[type="checkbox"] {
    cursor: pointer;
}

/* Search Button */
.search-button {
    background: #f04f1e;
    color: #fff;
    padding: 10px;
    border-radius: 44px;
    cursor: pointer;
    border: none;
    width: 90%;
    margin: 22px 0;
    text-align: center;
}

.search-button:hover, .search-button:focus, .search-button:active {
    background:   #f55a2b;
    color: #fff;
}
 
 
/* Container for Beds &amp; Baths */
.beds-baths-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* Section Titles */
.beds-section strong, .baths-section strong {
    font-size: 14px;
    display: block;
    margin-bottom: 5px;
}

/* Buttons Layout */
.beds-options, .baths-options {
    display: flex;
    gap: 8px;
}

/* Buttons for Beds &amp; Baths */
.bed-btn, .bath-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    font-size: 14px;
    font-weight: bold;
    border: 2px solid #ddd;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

/* Selected State */
.bed-btn.active, .bath-btn.active {
    background: #db5f3a;
    color: #fff;
    border-color: #db5f3a;
}

















/* Sidebar container */
.filter-sidebar {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

/* Header styling */
.filter-header {
    background: #222;
    color: #fff;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.filter-toggle {
    color: #fff;
    font-size: 20px;
    text-decoration: none;
}

.filter-content {
    padding: 15px;
}

/* Form Styling */
.filter-group {
    margin-bottom: 12px;
}

.filter-group label {
    font-size: 14px;
    font-weight: bold;
    color: #333;
}

.filter-input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 14px;
}

.filter-input:focus {
    border-color: #007bff;
    outline: none;
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.3);
}

/* Submit Button */
.filter-button {
    text-align: center;
}

.filter-btn {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    background: #f04f1e;
    color: #fff;
    border: none;
    border-radius: 6px;
    transition: 0.3s;
}

.filter-btn:hover {
    background: #e85b30;
}

.filterh5{
    color: #fff;
    font-size: 16px;
}








/**/

@media (max-width: 768px) {
                               
                                .banner-images {
                                    min-height: auto;
                                    padding: 80px 20px 120px; /* top padding, bottom for button space */
                                    flex-direction: column;
                                    align-items: flex-start; /* or center if needed */
                                }

                                .search-section {
                                    width: 100%;
                                }
                            }

                            .banner-images {
                                position: relative;
                                text-align: center;
                                width: 100%;
                                min-height: 500px;
                                padding: 60px 20px; /* Add vertical space for mobile */
                                background-size: cover;
                                background-position: center;
                                background-color: rgb(63, 64, 65);
                                overflow: hidden;
                            
                                display: flex;
                                justify-content: center;
                                align-items: center;
                            }
                            
                            .banner-images::before {
                                content: "";
                                position: absolute;
                                top: 0;
                                left: 0;
                                width: 100%;
                                height: 100%;
                                background-color: rgba(0, 0, 0, 0.8)!important;
                                z-index: 1;
                            }
                            
                            .search-section {
                                position: relative;
                                z-index: 2;
                                width: 80%;
                                color: white;
                            }
                            
.container-fluid &gt; nav{
        border-bottom: 1px solid #eee;
}
#compoundSuggestions {
    position: absolute;
    z-index: 1000;
    width: 100%; /* default for desktop */
    max-height: 250px;
    overflow-y: auto;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    padding: 0;
    margin-top: 5px;
    transition: all 0.3s ease-in-out;
}


.suggestion-item {
    cursor: pointer;
    padding: 10px 16px;
    border-bottom: 1px solid #f2f2f2;
    transition: background 0.2s ease-in-out;
}

.suggestion-item:last-child {
    border-bottom: none;
}

.suggestion-item:hover {
    background: #f8f9fa;
}

.suggestion-label {
    font-weight: 500;
    color: #333;
}

.suggestion-item .badge {
    font-size: 12px;
    padding: 4px 8px;
    border-radius: 20px;
}
.suggestion-logo {
    width: 36px!important;
    height:  36px!important;
    object-fit: cover!important;
    border-radius: 6px!important;
    border: 1px solid #eee!important;
}


.search-section2{
width: 100%;
}</pre></body></html>