/* Ensure Custom Content Follows Elementor Global Fonts */
.elementor-widget-container {
    font-family: "Montserrat", Sans-serif !important;
}

/* Heading Elements */
.elementor-widget-container h1,
.elementor-widget-container h2,
.elementor-widget-container h3 {
    font-family: inherit !important;
}

/* Paragraph Text */
.elementor-widget-container p {
    font-family: inherit !important;
}

/* Buttons */
.elementor-widget-button {
    font-family: inherit !important;
}

/* Links */
.elementor-widget-container a {
    font-family: inherit !important;
}

.custom-link-a {
    color: #333;
}
.custom-link-a:hover {
    color: #000;
}

[type=button], [type=submit], button {
    display: inline-block;
    font-weight: 500!important;
    color: #fff;
    text-align: center;
    white-space: nowrap;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    background-color: #000!important;
    border: none!important;
    font-size: 1rem!important;
    border-radius: 3px!important;
    transition: all .3s!important;
    padding: 10px 20px!important;
    cursor: pointer!important;
}

#content {
    width: 100%;
    max-width: 100%;
    padding: 0;
    margin: 0 auto; /* Center the content */
    top: 70px;
    height: 70px;
}

.filter-nav {
    position: sticky;
    top: 8vh; /* Distance from the top of the viewport */
    z-index: 1; /* Ensure it stays above other content */
    background-color: #F7F7F7; /* Optional to avoid transparency issues */
    width: 100%;
    justify-content: space-between;
    align-items: center;
    padding: 8px 20px;
    box-sizing: border-box;
    border-bottom: 1px solid #ddd;
}

header {
    top: 0;
    height: 80px;
    background-color: #121212;
    color: white;
}

.page-header {
    display: none;
}

/*.filter-nav {
    top: 79px;
    height: 70px;
    background-color: #fff;
    border-bottom: 1px solid #ddd;
    z-index: 999;
}*/



.logo {
    width: 20%;
    display: flex;
    align-items: center;
}

.logo img {
    max-height: 80px;
}

.menu {
    width: 60%;
    display: flex;
    justify-content: center;
}

.menu a {
    margin: 0 15px;
    text-decoration: none;
    color: white;
}

.actions {
    width: 20%;
    display: flex;
    justify-content: flex-end;
}

.actions button {
    margin-left: 10px;
    color: white;
    background-color: #333;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
}

.actions button:hover {
    background-color: #555;
}

.filter-nav .left {
    width: 20%;
    display: flex;
    justify-content: flex-start;
    gap: 10px;
}

.filter-nav .right {
    width: 20%;
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

.filter-nav.center {
    width: 60%;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.filter-nav .center a {
    position: relative;
    padding: 5px 0;
    text-decoration: none;
    color: #000;
}

.filter-nav .center a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 100%;
    height: 2px;
    background-color: #000;
    visibility: hidden;
    transform: scaleX(0);
    transition: transform 0.3s ease, visibility 0.3s ease;
}

.filter-nav .center a:hover::after {
    visibility: visible;
    transform: scaleX(1);
}

.gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 540px;
}

.gallery .image-container {
    width: 50%;
    height: 100%;
    box-sizing: border-box;
}

.gallery img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: pointer;
}

.content-container {
    width: 100%; /* Ensure the container takes full width */
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 20px; /* Optional: Add padding */
    box-sizing: border-box;
}

.content {
    display: flex;
    flex-wrap: wrap; /* Ensure it wraps on smaller screens */
    padding: 20px;
    box-sizing: border-box;
}

.left-column {
    width: 70%;
    padding-right: 10px;
    box-sizing: border-box;
}

.right-column {
    width: 30%;
    top: 175px;
    height: fit-content;
    padding-left: 10px;
    box-sizing: border-box;
    position: sticky;
}

.section {
    margin-bottom: 20px;
    padding: 20px;
    box-sizing: border-box;
}

.first-section {
    padding: 20px 20px 40px 20px;
    border-bottom: 1px solid #e7e7e7;
}

.section-end {
    margin-bottom: 20px;
    background-color: #f9f9f9;
    padding: 20px;
}

.modal {
    display: none;
    position: fixed;
    z-index: 100;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.9);
    justify-content: center;
    align-items: center;
}

.modal-content {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
}

.close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
}

.close:hover, .close:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}

.modal-content, .close {
    animation-name: zoom;
    animation-duration: 0.6s;
}

@keyframes zoom {
    from {transform: scale(0)}
    to {transform: scale(1)}
}

.contact-card {
    background-color: #f7f7f7;
    border-radius: 10px;
    padding: 20px;
    /* box-sizing: border-box; */
    margin-bottom: 20px;
    border: 1px solid #f0f0f0;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, .1), 0 2px 4px -1px rgba(0, 0, 0, .06);
}

.contact-card .logo-info {
    display: flex;
    margin-bottom: 0px;
}

.contact-card .logo-form {
    width: 20%;
}

.contact-card .logo-form img {
    display: block;
    margin: 0 auto;
    max-width: 100%;
    border-radius: 6px;
}

.contact-card .contact-info {
    width: 80%;
    text-align: left;
    padding-left: 10px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    margin-bottom: 45px;
}

.contact-card .contact-info h2 {
    font-size: 16px;
    font-weight: 700;
    color: #121212;
    line-height: 0px;
}

.contact-card .contact-info h3 {
    font-size: 14px;
    color: #999;
    margin: 0 0 0px;
}

.contact-card .contact-info p {
    font-size: 14px;
    color: #666;
    margin: 5px 0;
}

.contact-info-detail p {
    margin-bottom: 0px;
    font-size: 14px;
}

.contact-info-detail {
    margin-bottom: 10px;
    width: 100%;
}

.highlight-text {
    font-size: 14px;
    font-weight: 600;
}

/* Style for the description list */
.contact-list {
    display: flex;
    flex-direction: column;
    margin: 0;
    padding: 0;
}

/* Style for each contact item */
.contact-item {
    display: flex;
    align-items: center;
    margin: 8px 0px;
}

/* Style for the term (dt) */
.contact-term {
    width: 120px;
    margin: 0;
    text-align: left; /* Align the term to the left */
    line-height: 22px;
    font-weight: 500;
    font-size: 0.875rem;
    color: #9a9a9a;
}

/* Style for the description (dd) */
.contact-description {
    flex-grow: 1;
    margin: 0;
    text-align: right; /* Align the description to the right */
    line-height: 22px;
    font-weight: 600;
    font-size: 0.875rem;
    color: #333333;
}

/* Style for the horizontal rule */
.separator {
    width: 100%;
    margin: 10px 0;
    border-top: 1px solid #e4e4e4;
}


.contact-card .contact-form input, .contact-card .contact-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 8px;
    border: 1px solid #ccc;
    border-radius: 4px!important;
    box-sizing: border-box;
    font-size: 14px!important;
}

.contact-card .contact-form textarea {
    height: 90px;
    resize: none;
}

.contact-card .checkbox {
    display: flex;
    align-items: flex-start;
    font-size: 12px;
    color: #666;
    margin-bottom: 14px;
}

.contact-card .checkbox input {
    appearance: none;
    width: 20px;
    height: 20px;
    margin-right: 10px;
    margin-top: 2px;
    border: 1px solid #ccc;
    border-radius: 4px;
    position: relative;
    cursor: pointer;
}

.contact-card .checkbox input:checked {
    background-color: #121212;
}

.contact-card .checkbox input:checked:before {
    content: '✓';
    color: white;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 16px;
}

.contact-card .checkbox p {
    flex: 1;
    margin: 0;
    line-height: 16px;
}

#more { 
    display: none; 
}

.property-listing {
    width: 100%; /* Ensure it takes full width */
    max-width: 800px;
    margin: 20px auto;
    background-color: #fff;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
}

.header, .details, .map-section, .footer {
    margin-bottom: 20px;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.address h1 {
    font-size: 1.5em;
    font-weight: 600;
    margin: 0;
}

.address p {
    margin: 5px 0 0;
    color: #666;
    font-weight: 600;
    font-size: 0.875rem;
}

.price h2 {
    font-size: 1.5em;
    font-weight: 600;
    margin: 0;
    color: #000;
}

.details {
    display: flex;
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    padding: 20px 0;
}

.features {
    width: 25%;
}

.sub-details {
    width: 75%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.description p {
    margin-bottom: 20px;
    color: #333;
    font-weight: 500;
    font-size: 0.875rem;
}

.meta {
    display: flex;
    justify-content: space-between;
}

.meta p {
    margin: 0;
    font-weight: 600;
    color: #000;
    padding-right: 50px;
}

.meta small {
    font-weight: 500;
    font-size: 0.875rem;
    color: #9a9a9a;
}

.map-section h3 {
    font-size: 1.2em;
    font-weight: 600;
    margin: 0 0 10px;
}

.map-section img {
    width: 100%;
    height: 215px;
    border: 1px solid #ddd;
    border-radius: 8px;
}

.first-section-footer p {
    margin: 0;
    color: #666;
    text-align: start;
    font-weight: 500;
    font-size: 0.875rem;
}

.features-amenities {
    display: flex;
    flex-direction: column;
}

.table-section {
    margin-bottom: 20px;
}

.table-section h3 {
    font-size: 1.2em;
    font-weight: 600;
    margin-bottom: 10px;
}

.table-section table {
    width: 100%;
    border-collapse: collapse;
}

.table-section td {
    font-weight: 500;
    font-size: 0.875rem;
    color: #9a9a9a;
    padding: 16px 0px;
    border-bottom: 1px solid #e7e7e7!important;
}

table tbody tr:hover>td, table tbody tr:hover>th {
    background-color: transparent !important;
}

table tbody>tr:nth-child(odd)>td, table tbody>tr:nth-child(odd)>th {
    background-color: transparent !important;
}

table td, table th {
    border: 0px!important;
}

.table-section td:last-child {
    font-weight: 600;
    font-size: 0.875rem;
    color: #333333;
    width: 25%;
}

.table-section td:last-child {
    width: 75%;
}

.table-section-end {
    margin-bottom: 20px;
}

.table-section-end h3 {
    font-size: 1.2em;
    font-weight: 600;
    margin-bottom: 10px;
}

.table-section-end table {
    width: 100%;
    border-collapse: collapse;
}

.table-section-end td {
    font-weight: 500;
    font-size: 0.875rem;
    color: #9a9a9a;
    padding: 20px 0;
    border-bottom: 1px solid #ddd!important;
}

.table-section-end {
    font-weight: normal;
}

span.red-text {
    color: red;
}

.table-section table tr {
    height: 40px;
}

.global-btn {
    color: #fff!important;
}

.full-width\,.global-btn {
    width: 100%;
    font-weight: 600;
    color: #fff
}

a.global-btn {
    padding: 10px 20px;
    background-color: #000;
    color: #fff!important;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 3px;
}

.global-btn:hover {
    background-color: #404040!important;
}

.global-btn:active {
    background-color: #222; /* Darker color to show the active state */
    transform: scale(0.95); /* Slightly shrink the button for a click effect */
}

.overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
}

.popup {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    box-sizing: border-box;
    z-index: 9999;
}

.popup-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.popup-header h2 {
    margin: 0;
    font-size: 1em;
    font-family: 'Montserrat';
    font-weight: 700;
    margin-bottom: 10px;
}

.close-btn {
    font-size: 2em;
    font-family: 'Montserrat';
    font-weight: 700;
    cursor: pointer;
    padding: 0px;
    line-height: 0px;
    margin-bottom: 10px;
}

.popup-form input, .popup-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    font-size: 14px!important;
    font-weight: 500!important;
    color: #171717!important;

}

.popup-form textarea {
    resize: none;
    height: 90px;

}

.property-preview {
    display: block;
    margin-bottom: 10px;
}

.property-preview img {
    width: 100%;
    height: 50%;
    object-fit: cover;
    border-radius: 4px;
    margin-right: 10px;
}

.popup-property-details {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0px;
    padding: 0px;
    margin-bottom: 0px;
    font-size: 12px;
}

.popup-property-details p {
    margin: 0px;
}

.property-details p:not(.property-details-item-price) {
    margin: 0px 0;
    color: grey;
    font-size: 0.875em;
}

.property-details-item-price{
    font-size: 1rem;
    font-weight: 600;
    color: #121212;
    margin: 0px 0;
}

.property-details-item{
    cursor: pointer;
}

.property-details-item-image {
    position: relative;
    display: block;
    overflow: hidden;
}

/*Properties Details Page CSS*/

.swiper {
    margin-top: 20px;
    border-radius: 20px;
    height: 100%;
    width: 1440px;
}

.swiper img {
    min-height: 100%;
}
.swiper-wrapper {
    height: 480px!important;
    width: 720px!important;
}
.swiper-button-prev, .swiper-button-next {
    color: #000000!important;
}

.un-golden-btn {
    display: inline-block;
    font-weight: 500;
    color: #121212;
    text-align: center;
    white-space: nowrap;
    user-select: none;
    background-color: transparent;
    border: 2px solid #e8a941;
    padding: .5rem 1rem;
    font-size: 1rem;
    border-radius: 3px;
    text-decoration: none !important;
}
.un-golden-btn:hover {
    color: #121212;
    background-color: #e8a941;
    border: 2px solid #e8a941;
}

.golden-btn {
    display: inline-block;
    font-weight: 500;
    color: #121212;
    text-align: center;
    white-space: nowrap;
    user-select: none;
    background-color: transparent;
    border: 2px solid #e8a941;
    padding: .5rem 1rem;
    font-size: 1rem;
    border-radius: 3px;
    text-decoration: none !important;
}
.golden-btn:hover {
    color: #121212;
    background-color: #e8a941;
    border: 2px solid #e8a941;
}


.sub-nav {
    position: sticky;
    top: 8vh;
    z-index: 2;
    background-color: #F7F7F7;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    padding: 8px 20px;
    box-sizing: border-box;
    border-bottom: 1px solid #ddd;
    display: flex;
}
.sub-nav .left {
    width: 20%;
    display: flex
;
    justify-content: flex-start;
    gap: 10px;
}
.sub-nav .right {
    width: 20%;
    display: flex
;
    justify-content: flex-end;
    gap: 10px;
}

.center {
    display: flex;
    gap: 20px;
    align-items: center;
    font-weight: 500;
    font-size: 0.875rem;
}

.sub-nav.center {
    width: 60%;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.sub-nav .center a {
    position: relative;
    padding: 5px 0;
    text-decoration: none;
    color: #000;
}

.sub-nav .center a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 100%;
    height: 2px;
    background-color: #000;
    visibility: hidden;
    transform: scaleX(0);
    transition: transform 0.3s ease, visibility 0.3s ease;
}

.sub-nav .center a:hover::after {
    visibility: visible;
    transform: scaleX(1);
}


/*Map Page CSS*/

         .container-fluid {
            height: 100%;
        }

        .row {
            height: 100%;
        }

        .col-md-4 {
            height: 100%;
            overflow-y: auto;
        }

        .col-md-8 {
            height: 100%;
            display: flex;
            flex-direction: column;
        }

        .property-image {
            position: relative;
            width: 100%;
            height: 180px;
            border-radius: 10px;
            background-size: cover;
            background-position: center;
        }

        .property-status {
            position: absolute;
            top: 10px;
            left: 10px;
            background: rgba(0, 0, 0, 0.5);
            color: #fff;
            padding: 1px 8px;
            border-radius: 20px;
            font-size: 13px;
            font-weight: 500;
        }

        .property-details {
            padding: 10px;
            margin-bottom: 10px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            gap: 10px;
            font-weight: 500;
        }

        .filters {
            display: flex;
            justify-content: space-between;
            margin-bottom: 10px;
        }

        .map-container {
            width: 100%;
            min-height: 84vh;
            flex: 1;
            margin-bottom: 0px;
        }

        .filter-nav .plm-full-width {
            width: 100%;
            display: flex;
            justify-content: center;
        }

        .plm-full-width .filters {
            display: flex;
            justify-content: space-between;
            margin-bottom: 0px;
            gap: 6px;
        }

        .plm-content {
            display: flex;
            flex-wrap: wrap;
            padding: 0px;
        }

        .plm-content .plm-left-column {
            width: 40%;
            padding-right: 10px;
            box-sizing: border-box;
        }

        .plm-content .plm-right-column {
            width: 60%;
            top: 145px;
            height: fit-content;
            box-sizing: border-box;
            position: sticky;
            background: #e5e5e5;
        }

        .plm-pag-center {
            display: flex;
            justify-content: center;
            align-items: center;
            flex-direction: row;
            height: 100%;
            align-content: center;
            width: 100%;
        }
        
        .field-range {
            display: flex;
            /* Use flexbox to align items in a row */
            justify-content: space-between;
            /* Optional: Add space between items */
            margin-bottom: 0px;
            /* Space below the price fields */
        }

        .price-input {
            flex: 1;
            /* Make each input take up equal space */
            margin-right: 10px;
            /* Add space between inputs */
        }

        .price-input:last-child {
            margin-right: 0;
            /* Remove margin for the last input */
        }

.property-details-item-image {
    position: relative; /* Ensure positioning context for pseudo-element */
    overflow: hidden;  /* Optional, ensures no overflow beyond the element */
}

.property-details-item-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3); /* Dark overlay with 30% opacity */
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none; /* Ensures clicks pass through */
}

.property-details-item-image:hover::after {
    opacity: 1; /* Show the overlay effect on hover */
}

#filter-lease_terms option:disabled, #filter-payment_method option:disabled {
    color: grey;
}

form#sc-filter-form {
    display: flex;
    flex-direction: column; /* Stack vertically */
    gap: 12px; /* Space between the child elements */
    align-items: flex-start; /* Aligns children to the left, change to center for center alignment */
    justify-content: flex-start; /* Aligns children from the top of the container */
}

#sc-filter-form span {
    width: 100%;
}

.uppercase{
    text-transform: uppercase
}

button.btn-filters {
    width: 49%;
    margin: 6px 0px;
    color: #fff;
    font-weight: 500;
}

span.span-spacing {
    margin: 20px 0px;
    padding-top: 20px;
    border-top: 1px solid #e5e5e5;
}

.btn-backtomap {
    width: 100%;
    color: #121212;
    background-color: #12121200 !important;
    border: 2px solid #e8a941 !important;
    font-weight: 500;
}

.btn-backtomap:hover {
    width: 100%;
    color: #121212;
    background-color: #e8a941 !important;
    border: 2px solid #e8a941 !important;
    font-weight: 500;
}

.btn-backtomap:focus {
    width: 100%;
    color: #121212;
    background-color: #e8a941 !important;
    border: 2px solid #e8a941 !important;
    font-weight: 500;
}

.btn-backtomap:active {
    width: 100%;
    color: #121212;
    background-color: #e8a941 !important;
    border: 2px solid #e8a941 !important;
    font-weight: 500;
}

button.full-width {
    width: auto;
    padding: 0px 20px;
    background-color: #000;
    color: white;
    border-radius: 5px;
    border: none;
    cursor: pointer;
}

button.full-width:hover {
    background-color: #404040;
}

/*Map Page Filter Form*/

#map-filter-form {
    width: 100%;
}

#map-filter-form #filter-address {
    width: 100%;
}

#map-filter-form #filter-ml_num {
    width: 50%;
}

#map-filter-form #filter-type {
    width: 50%;
}
#map-filter-form #filter-lease_terms {
    width: 50%;
}
#map-filter-form #filter-payment_method {
    width: 50%;
}
#map-filter-form .field-range {
    width: 100%;
}

.filter-form-style{
    font-size: 14px!important;
    color: black!important;
    border: 1px solid #ccc!important;
    border-radius: 4px!important;
}

.filter-form-style option{
    font-size: 14px!important;
    color: black!important;
    border: 1px solid #ccc!important;
    border-radius: 4px!important;
}

/*Map Properties Pagenation*/

.page-item.active .page-link {
    font-weight: 600!important;
    color: #bd975f!important;
    background-color: #121212!important;
    border-color: #121212!important;
}
.page-link {
    color: #121212!important;
    background-color: #fff!important;
    border: 1px solid #dee2e6!important;
    font-weight: 500!important;
}
.page-link:hover {
    color: #bd975f!important;
}

/*--Properties List Page--*/
.sc-container {
    margin: 0;
    padding: 0;
    display: flex;
}

.sc-container .sc-sub-container {
    display: flex;
    width: 100%;
}

.sc-container .sc-filters,
.sc-container .listings {
    padding: 20px;
}

.sc-container .sc-filters {
    width: 20%;
    height: fit-content;
    box-sizing: border-box;
    position: sticky;
}

.sc-container .sc-filters h2 {
    margin-top: 0;
}
    
#sc-filter-form input#filter-ml_num {
    width: 100% !important;
}
    
.sc-container .listings {
    width: 80%;
    background-color: #F7F7F7;
}

.sc-container .grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 80px;
}

.sc-container .listing {
    padding: 10px;
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    background-color: #fff;
    border: 1px solid #e5e5e5;
}


.listings {
    border-left: 1px solid #e5e5e5;
}


.sc-container .listing img {
    width: 100%;
    height: 210px;
    object-fit: cover;
    border-radius: 5px;
}

.sc-container .listing .sc-status {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: rgba(0, 0, 0, 0.5);
    color: #fff;
    padding: 5px;
    font-size: 12px;
    border-radius: 3px;
}

.sc-container .listing .sc-details {
    text-align: start;
    margin-top: 6px;
    display: inline-block;
    border-top: 0px solid #ddd;
    border-bottom: 0px solid #ddd;
    padding: 0px;
    width: 100%;
}

.sc-container .listing .sc-price {
    font-size: 1.125rem;
    font-weight: 600;
    color: #121212;
    margin: 0px 0;
}

.sc-details-global {
    margin: 0px 0;
    color: grey;
    font-size: 0.875em;
    font-weight: 500;
}

.sc-container .listing .read-more {
    display: inline-block;
    padding: 10px 15px;
    color: #fff;
    background-color: #007bff;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 10px;
}

.sc-container .listing .read-more:hover {
    background-color: #0056b3;
}

.pagination {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}
    
.sc-image-container {
    position: relative;
    display: inline-block;
    width: 100%;
    overflow: hidden;
}

.sc-image-container img {
    width: 100%;
    display: block;
}

.sc-image-container .sc-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0); /* Initially transparent */
    z-index: 1;
    transition: background-color 0.3s ease-in-out; /* Smooth transition effect */
    border-radius: 5px;
}

.sc-image-container:hover .sc-overlay {
    background-color: rgba(0, 0, 0, 0.5); /* Dark overlay on hover */
}

.sc-filters h2, .heading-map-listing h2 {
    font-size: 18px;
    font-weight: 700;
    border-bottom: 1px solid #e5e5e5;
    margin: 0;
    line-height: 50px;
}

.sc-filters p, .heading-map-listing p {
    font-size: 14px;
    font-weight: 500;
    color: #8a8a8a;
    line-height: 50px;
    margin: 0;
}

.sc-filters label {
    font-size: 12px;
    font-weight: 500;
    color: #8a8a8a;
}

.price-range input {
    color: black !important;
    border: 1px solid #ccc !important;
    border-radius: 4px !important;
    padding: .5rem 1rem;
    width: 100%;
    display: flex;
    margin-bottom: 8px;
}
    
    
/* Responsive Styles */
@media (max-width: 1200px) {
    .content-container {
        width: 100%;
        max-width: 1140px;
        padding: 0;
        box-sizing: border-box;
    }

    .content {
        flex-direction: column;
    }

    .left-column, .right-column {
        width: 100%;
        padding: 0;
    }

    .right-column {
        position: relative;
        top: 0;
    }

    .menu, .filter-nav .center {
        width: 100%;
    }

    .logo, .actions, .filter-nav .left, .filter-nav .right {
        width: auto;
    }
}
@media (max-width: 768px) {
    header {
        flex-direction: column;
        height: auto;
        padding: 10px;
    }

    .logo img {
        max-height: 60px;
    }

    .menu {
        flex-direction: column;
        align-items: center;
    }

    .menu a {
        margin: 10px 0;
    }

    .actions {
        width: 100%;
        justify-content: center;
    }

    .filter-nav {
        flex-direction: column;
        height: auto;
    }

    .filter-nav .center {
        flex-direction: column;
        align-items: center;
    }

    .gallery {
        flex-direction: column;
    }

    .gallery .image-container {
        width: 100%;
    }

    .contact-card, .property-listing {
        width: 100%;
        padding: 10px;
        box-sizing: border-box;
    }
}

@media (max-width: 480px) {
    header {
        padding: 5px;
    }

    .menu a, .actions button {
        font-size: 14px;
    }

    .filter-nav .center a {
        font-size: 14px;
    }

    .gallery {
        height: auto;
    }

    .modal-content {
        width: 90%;
    }

    .popup {
        width: 90%;
        padding: 10px;
    }

    .popup-header h2, .close-btn {
        font-size: 1em;
    }

    .popup-form input, .popup-form textarea {
        padding: 5px;
        font-size: 14px;
    }
}