﻿:root {
    /*  --theme-clr: #23527c;*/
    --theme-clr: #0000ff;
    --theme-clr-hover: #ebf3f9;
    --button-clr: #37a000;
}

.overflow-hidden {
    overflow:hidden !important;
}

#scrollToTopBtn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--button-clr);
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    transition: all 0.3s ease;
    color: #fff;
    border: 0;
    padding-bottom: 5px;
}

    #scrollToTopBtn:hover {
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(39, 92, 139, 0.4);
    }

    #scrollToTopBtn:active {
        transform: translateY(-1px);
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    }

    .listing-card {
        transition: all 0.3s ease;
        position:relative;
    }

        .listing-card .btn:active,
        .listing-card .btn:focus {
            background: #37a000 !important;
        }

    .card-login-btn {
        position: absolute;
        right: 15px;
    }

.listing-card:hover {
    box-shadow: 0 10px 11px 1px rgba(0,0,0,.18);
    transform: translateY(-0.190919px) !important;
}

    .cards-icons {
        font-size: 40px;
        color: var(--primary);
        margin-bottom: 10px;
    }

.multilist-select {
    height: 40px;
    width: 271px;
    border-radius: 10px;
    border: 1px solid;
    background: #00000033;
    padding-inline: 10px;
    -webkit-appearance:none;
}

    .multilist-select option {
        background:white;
        color:#000;
    }
        /* For better visibility on different backgrounds */
        @media (prefers-color-scheme: dark) {
            #scrollToTopBtn {
                box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
            }
        }


.search-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin-top: 20px;
}

.custom-select2 {
    width: 300px;
}

.select2-container--default .select2-selection--single {
    height: 48px;
    padding: 10px 16px;
    font-size: 16px;
    font-weight: 600;
    border: 2px solid #28a745;
    border-radius: 8px;
    background-color: #fff;
    color: #333;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

    .select2-container--default .select2-selection--single .select2-selection__arrow {
        height: 100%;
        right: 10px;
    }

.search-button {
    background-color: #28a745;
    color: #fff;
    font-weight: bold;
    font-size: 16px;
    padding: 14px 20px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    width: 300px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/*main page state dropdown*/
.custom-dropdown {
    position: relative;
    display: inline-block;
    text-align: center;
}

.dropdown-btn {
    background: var(--button-clr);
    color: white;
    padding: 10px 22px;
    font-size: 26px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    text-align: center;
    min-width: 250px;
}

.dropdown-content {
     display: none; 
    position: absolute;
    background-color: #ffffff;
    min-width: 250px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
    z-index: 9999;
    max-height: 300px;
    overflow-y: auto;
    border-radius: 6px;
    padding: 10px;
}

    .dropdown-content input {
        width: 100%;
        margin-bottom: 10px;
        border-radius: 6px;
        border: 1px solid gray;
        font-size: 16px;
        outline: none;
        padding: 5px 8px;
        color: #000;
    }
    .dropdown-content a {
        color: #333;
        padding: 6px 8px;
        text-decoration: none;
        display: block;
        font-size: 16px;
        text-align: left;
    }

        .dropdown-content a:hover {
            background-color: #f1f1f1;
        }

/*.custom-dropdown:hover .dropdown-content {
    display: block;
}*/

/*loader*/
.loader {
    position: fixed;
    left: 0;
    right: 0;
    top: 107px;
    bottom: 0;
    background: rgba(0,0,0,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    height: calc(100vh - 107px);
}

    .loader i {
        width: 50px;
        height: 50px;
        border: 1px solid #37a000;
        border-top: 0;
        display: block;
        border-radius: 50%;
        animation: loader-rotation 1s infinite linear;
    }

    .loader.d-none {
        display: none;
    }

@keyframes loader-rotation {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.custom-dropdown:hover .dropdown-content {
    display: block;
}

.custom-dropdown .dropdown-content {
    display: none;
}

.custom-dropdown.show .dropdown-content {
    display: block;
}

/*-------new design------*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: #f8f9fa;
    color: #333;
    line-height: 1.6;
}

/* Header */
/*.header {
    background: white;
    padding: 1rem 0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}*/

.header {
    background:#fff !important;
   }
.container {
    max-width: 1370px !important;
    margin: 0 auto;
    padding: 0 2rem;
}

.header-container {
    max-width: 1370px !important;
    margin: 0 auto;
    padding: 0 2rem;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1rem !important;
    font-weight: bold;
    color: #4A90E2;
}

.nav {
    display: flex;
    gap: 2rem;
}

    .nav a {
        text-decoration: none !important;
        color: #666;
        font-weight: 500;
        transition: color 0.3s;
        position: relative;
        padding: 0.5rem 0;
    }

        .nav a:hover {
            color: #10b981;
            transform: translateY(-1px);
        }
        .nav a:hover::after {
            width:100%;
        }
        .nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, #10b981, #059669);
            transition: width 0.3s ease;
        }

.header-content .icon {
    cursor: pointer;
    display: none;
    color: #525252;
}

.side-navbar {
    position: fixed;
    left: -100%;
}

    .side-navbar.active {
        position: fixed;
        background: #fff;
        z-index: 9999;
        padding: 1rem;
        top: 78px;
        height: 100%;
        left:0;
        box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
        transition:0.3s;
    }

    .side-navbar .navresp {
        display: flex !important;
        flex-direction: column;
        gap: 1rem;
    }

/* Breadcrumb */
.breadcrumb {
    background: white;
    padding: 1rem 0;
    border-bottom: 1px solid #eee;
    max-width: 100%;
    margin: 0 auto;
    padding: 1rem 2rem;
    color: #6b7280;
    font-size: 1rem;
}

    .breadcrumb a {
        color: #10b981;
        text-decoration: none;
        transition: color 0.3s ease;
    }

        .breadcrumb a:hover {
            color: #059669;
        }

        .breadcrumb span {
            color: #666;
            margin: 0 0.5rem;
        }

/* Hero Section */
.hero {
    padding: 4rem 0;
    background: linear-gradient(to bottom right, #45a07c91, rgb(255 14 0 / 20%)), url(https://images.unsplash.com/photo-1600585152915-d208bec867a1?auto=format&fit=crop&w=1950&q=80) no-repeat center center / cover;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    position: relative;
}

    .hero h1 {
        font-size: 3rem;
        font-weight: 700;
        margin-bottom: 1rem;
    }

    .hero p {
        font-size: 1.25rem;
        opacity: 0.9;
        max-width: 600px;
        margin: 0 auto;
    }

/* Search Section */
.search-section {
    background: white;
    padding: 3rem 0;
    margin-top: -2rem;
    border-radius: 20px 20px 0 0;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.1);
}

/* Search Options */
.search-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.search-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s;
}

    .search-card:hover {
        transform: translateY(-5px);
    }

.search-card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #4c90cc, #3376b3);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin: 0 auto 1rem;
    padding:10px;
}

.login-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}

    .login-container .search-card-icon {
        margin-bottom: 0;
    }

@media (min-width: 546px) {
    .foreclosure-card .login-container {
        position: relative;
    }

        .foreclosure-card .login-container .login-btn {
            position: absolute;
            right: -20px;
        }
}

    .img-agent {
        width: 100%;
        height: 100%;
        transform: scaleX(-1);
    }

    .search-card h3 {
        color: #2c5aa0;
        margin-bottom: 1rem;
    }

    .search-card p {
        color: #666;
        margin-bottom: 1.5rem;
    }

    .card-form {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .form-row {
        display: flex;
        align-items: center;
        gap: 1rem;
    }

        .form-row input,
        .form-row select {
            width: 50%;
        }

    .form-input, .form-select {
        padding: 0.8rem;
        border: 2px solid #eee;
        border-radius: 8px;
        font-size: 0.9rem;
    }

    .card-btn {
        background: #4CAF50;
        color: white;
        padding: 1rem;
        border: none;
        border-radius: 8px;
        cursor: pointer;
        font-weight: 600;
        transition: background 0.3s;
        width: 100%;
    }

        .card-btn:hover {
            background: #45a049;
        }
    /* Main Content */
    .main-content {
        display: grid;
        grid-template-columns: 3fr 1fr;
        gap: 3rem;
        padding: 3rem 0;
    }

    .content-section {
        background: white;
        padding: 2.5rem;
        border-radius: 16px;
        box-shadow: 0 4px 20px rgba(0,0,0,0.08);
        margin-bottom: 2rem;
    }

        .content-section:nth-of-type(3) .cities-grid {
            grid-template-columns: 1fr 1fr 1fr;
        }

    .features-grid {
        grid-template-columns: 1fr 1fr 1fr !important;
    }

    .section-title {
        font-size: 1.6rem;
        color: #333;
        margin-bottom: 1rem;
        padding-bottom: 1rem;
        position: relative;
    }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0px;
            left: 0;
            width: 100%;
            height: 3px;
            background: linear-gradient(90deg, var(--theme-clr), #4c90cc);
            border-radius: 2px;
        }

    .cities-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0.5rem;
    }

    .city-link {
        color: #4CAF50;
        text-decoration: none;
        padding: 0.5rem;
        border-radius: 8px;
        transition: background-color 0.3s;
        font-weight: 500;
        font-size: 15px;
    }

        .city-link:hover {
            color: #2c5aa0;
        }

    /* Sidebar */
    .sidebar {
        display: flex;
        flex-direction: column;
        gap: 2rem;
        max-width: 362px;
    }

.sidebar-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    text-align: center;
    border-top: 4px solid var(--theme-clr);
}

    .sidebar-icon {
        width: 60px;
        height: 60px;
        background: linear-gradient(135deg, #68d391, #48bb78);
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 1.5rem;
        font-size: 1.7rem;
        color: white;
    }

.real-agent-icon {
    width: 80px !important;
    height: 80px !important;
    border-radius:50% !important;
    overflow:hidden !important;
}

.sidebar-card h3 {
    color: #333;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

    .sidebar-card p {
        color: #666;
        margin-bottom: 1.5rem;
    }

.login-btn {
    background: var(--button-clr);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 0.75rem;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
    border: 0;
    cursor: pointer;
}

        .login-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(39, 92, 139, 0.4);
            ;
        }

    .find-agent {
        display: block;
        text-decoration: none;
        font-size: 14px !important;
        text-transform: uppercase;
    }
    /* Florida Image */
    .florida-image {
        width: 150px;
        height: 150px;
        background: linear-gradient(135deg, #20B2AA, #4A90E2);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 1rem;
        font-size: 2.5rem;
        color: white;
        overflow: hidden;
    }

        .florida-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .agent-anchor {
            font-size: 18px;
            font-weight: 500;
            color: #fff;
            transition: all 0.3s ease;
            background: var(--button-clr) !important;
            border-radius: 25px !important;
            padding: 0.6rem 2rem !important;
        }

        .agent-anchor:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(39, 92, 139, 0.4);
        }

    .agent-card-title {
        color: #2d3748;
        margin-bottom: 1rem;
        font-size: 1.1rem !important;
    }

.florida-agent-btn {
    background: var(--button-clr) !important;
    color: white;
    border: none;
    padding: 0.5rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    width: 100%;
    display: block;
}

        .florida-agent-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(72, 187, 120, 0.4);
        }

    .find-agent-anchor {
        font-size: 18px;
        font-weight: 500;
        color: #4CAF50;
        transition: all 0.3s ease;
    }

        .find-agent-anchor:hover {
            color: #4a783f;
        }

    /* footer design */

    .footer {
        background: linear-gradient(135deg, #4a5568, #2d3748);
        color: white;
        padding: 3rem 2rem 1rem;
        margin-top: 4rem;
    }

    .footer-content {
        /*    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;*/
        max-width: 1370px !important;
        margin: 0 auto;
        padding: 0 2rem;
        display: flex !important;
        justify-content: space-between;
        flex-wrap: wrap;
    }

    .about-footer-section {
        min-width: 450px;
        max-width: 450px;
        text-align: justify;
    }

        .about-footer-section a {
            color: #4abc79;
        }

    .footer-section h3 {
        color: #48bb78;
        margin-bottom: 1rem;
        font-weight: 700;
    }

    .footer-section ul {
        list-style: none;
    }

        .footer-section ul li {
            margin-bottom: 0.5rem;
        }

            .footer-section ul li a {
                color: #cbd5e0;
                text-decoration: none;
                transition: color 0.3s ease;
            }

                .footer-section ul li a:hover {
                    color: #48bb78;
                }

    .footer-bottom {
        border-top: 1px solid #68d391;
        margin-top: 2rem;
        padding-top: 1rem;
        text-align: center;
        color: #e2e8f0;
    }


    /* End of footer */

    /* Responsive Design */
    @media (max-width: 768px) {
        .search-grid {
            grid-template-columns: 1fr;
        }

        .main-content {
            grid-template-columns: 1fr;
        }

        .cities-grid {
            grid-template-columns: 1fr;
        }

        .hero h1 {
            font-size: 2rem;
        }

        .nav {
            display: none;
        }

        .about-footer-section {
            min-width: 100%;
        }

        .footer {
            padding-inline: 1.5rem !important;
        }

        .footer-content {
            padding: 0 !important;
        }

        .header-content {
            justify-content: flex-start;
            gap: 1rem;
        }

            .header-content .icon {
                display: block;
            }

        .header .container {
            padding: 0 1rem;
        }

        .breadcrumb {
            padding-inline: 0;
        }

        .foreclosure-card .form-row {
            flex-direction: unset !important;
        }
    }

    /* New About Section Styles */
    .about-main-container {
        max-width: 1370px;
        margin: 0 auto;
        padding: 40px 2rem;
        display: grid;
        grid-template-columns: 2fr 1fr;
        gap: 3rem;
    }

    .about-content-wrapper {
        background: white;
        padding: 2.5rem;
        border-radius: 16px;
        box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    }

    .about-main-title {
        font-size: 2rem;
        color: #333;
        margin-bottom: 2rem;
        position: relative;
        padding-bottom: 1rem;
        font-weight: 700;
        display: inline-block;
    }

        .about-main-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 3px;
            background: linear-gradient(90deg, #2c5aa0, #4CAF50);
            border-radius: 2px;
        }

    .about-section-block {
        margin-bottom: 2rem;
    }

        .about-section-block h3 {
            color: var(--theme-clr);
            font-size: 1.5rem;
            margin-bottom: 1rem;
            font-weight: 600;
        }

        .about-section-block p {
            color: #666;
            line-height: 1.8;
            margin-bottom: 1rem;
            font-size: 1rem;
        }

.about-highlight-box {
    background: linear-gradient(135deg, #74a9d8, var(--theme-clr));
    color: white;
    padding: 2rem;
    border-radius: 15px;
    margin: 2rem 0;
    text-align: center;
}

        .about-highlight-box h3 {
            color: white;
            font-size: 1.5rem;
            margin-bottom: 1rem;
        }

        .about-highlight-box p {
            color: white;
            font-size: 1rem;
            opacity: 0.95;
        }

    .about-stats-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1.5rem;
        margin: 2rem 0;
    }

    .about-stat-item {
        background: white;
        padding: 1.5rem;
        border-radius: 12px;
        text-align: center;
        border: 2px solid #f0f0f0;
        transition: all 0.3s ease;
        box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    }

        .about-stat-item:hover {
            border-color: #4CAF50;
            transform: translateY(-2px);
            box-shadow: 0 5px 20px rgba(76, 175, 80, 0.2);
        }

    .about-stat-number {
        font-size: 2.5rem;
        font-weight: bold;
        color: #2c5aa0;
        display: block;
        margin-bottom: 0.5rem;
    }

    .about-stat-description {
        color: #666;
        font-size: 0.9rem;
        font-weight: 500;
    }

    /* Responsive Design */
    @media (max-width: 768px) {
        .about-main-container {
            grid-template-columns: 1fr;
            gap: 2rem;
            padding: 20px 1rem;
        }

        .about-content-wrapper {
            padding: 1.5rem;
        }

        .about-main-title {
            font-size: 1.5rem;
        }

        .about-stats-grid {
            grid-template-columns: 1fr 1fr;
        }

        .about-highlight-box {
            padding: 1.5rem;
        }
    }

    /* New Contact Section Styles */
    .contact-main-container {
        max-width: 1370px;
        margin: 0 auto;
        padding: 40px 2rem;
        display: grid;
        grid-template-columns: 2fr 1fr;
        gap: 3rem;
    }

    .contact-content-wrapper {
        background: white;
        padding: 2.5rem;
        border-radius: 16px;
        box-shadow: 0 4px 20px rgba(0,0,0,0.08);
        height: fit-content;
    }

    .contact-main-title, .privacy-main-title, .terms-main-title, .sitemap-main-title {
        font-size: 2rem;
        color: #333;
        margin-bottom: 2rem;
        position: relative;
        padding-bottom: 1rem;
        font-weight: 700;
        display: inline-block;
    }

        .contact-main-title::after, .privacy-main-title::after, .terms-main-title::after, .sitemap-main-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 3px;
            background: linear-gradient(90deg, #2c5aa0, #4CAF50);
            border-radius: 2px;
        }

    .content-main-description {
        color: #666;
        font-size: 1rem;
        margin-bottom: 1.5rem;
        line-height: 1.6;
    }

    .contact-question-section {
        margin-bottom: 1rem;
    }


    .contact-select-dropdown select {
        width: 100%;
        padding: 0.8rem;
        border: 2px solid #eee;
        border-radius: 8px;
        font-size: 1rem;
        background-color: #fff;
        color: #333;
        transition: border-color 0.3s ease;
    }

        .contact-select-dropdown select:focus {
            outline: none;
            border-color: var(--theme-clr);
        }

    .contact-info-text {
        background: #f8f9fa;
        padding: 1.5rem;
        border-radius: 12px;
        border-left: 4px solid var(--theme-clr);
    }

        .contact-info-text p {
            color: #666;
            font-size: 1rem;
            line-height: 1.6;
            margin-bottom: 1rem;
        }

        .contact-info-text a {
            color: #4CAF50;
            text-decoration: none;
            font-weight: 500;
        }

            .contact-info-text a:hover {
                color: #2c5aa0;
            }

    .contact-form-section {
        margin-top: 2rem;
    }

.contact-form-title {
    font-size: 1.5rem;
    color: var(--theme-clr);
    margin-bottom: 1.5rem;
    font-weight: 600;
    text-align: center;
}

    .contact-form-group {
        margin-bottom: 1.5rem;
    }

    .contact-form-input {
        width: 100%;
        padding: 0.8rem;
        border: 2px solid #eee;
        border-radius: 8px;
        font-size: 1rem;
        color: #333;
        transition: border-color 0.3s ease;
    }

        .contact-form-input:focus {
            outline: none;
            border-color: var(--theme-clr);
        }

    .contact-form-textarea {
        width: 100%;
        padding: 0.8rem;
        border: 2px solid #eee;
        border-radius: 8px;
        font-size: 1rem;
        color: #333;
        resize: vertical;
        min-height: 120px;
        transition: border-color 0.3s ease;
    }

        .contact-form-textarea:focus {
            outline: none;
            border-color: #4CAF50;
        }

    .contact-character-count {
        font-size: 0.8rem;
        color: #999;
        margin-top: 0.5rem;
        margin-left: auto;
        width: 100%;
        display: block;
        text-align: right;
    }

    .contact-captcha-section {
        margin: 1.5rem 0;
        display: flex;
        justify-content: center;
    }

    .btn-center {
        display: flex;
        justify-content: center;
    }

    .contact-submit-btn {
        width: unset !important;
        text-transform: uppercase;
        border-radius: 25px !important;
        font-size: 14px !important;
        border: none !important;
        padding: 0.75rem 2rem !important;
    }

        .contact-submit-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(72, 187, 120, 0.4);
        }

        .contact-submit-btn:active {
            transform: translateY(0);
        }

    /* Responsive Design */
    @media (max-width: 768px) {
        .contact-main-container {
            grid-template-columns: 1fr;
            gap: 2rem;
            padding: 20px 1rem;
        }

        .contact-main-title, .privacy-main-title, .terms-main-title, .sitemap-main-title {
            font-size: 1.5rem;
        }

        .contact-content-wrapper {
            padding: 1.5rem;
        }
    }

    /*Privacy Container Desgin*/

    .privacy-container, .terms-container, .sitemap-container {
        max-width: 1370px;
        margin: 0 auto;
        padding: 40px 2rem;
    }

    .privacy-content-wrapper, .terms-content-wrapper, .sitemap-content-wrapper {
        background: white;
        padding: 2.5rem;
        border-radius: 16px;
        box-shadow: 0 4px 20px rgba(0,0,0,0.08);
        height: fit-content;
    }

        .privacy-content-wrapper p, .terms-content-wrapper p {
            color: #666;
            font-size: 1rem;
            line-height: 1.6;
            margin-bottom: 1rem;
        }

            .privacy-content-wrapper p a, .terms-content-wrapper p a {
                color: #4CAF50;
                text-decoration: none;
                font-weight: 500;
            }

    .privacy-desc, .terms-desc, .sitemap-desc {
        margin-bottom: 1rem;
    }

    @media (max-width: 768px) {
        .privacy-content-wrapper, .terms-content-wrapper {
            padding: 1.5rem;
        }

        .privacy-container, .terms-container {
            padding: 20px 1rem;
        }
    }
    /*sitemap design*/
    .sitemap-title-wrapper {
        text-align: center;
    }

    .sitemap-content-wrapper p {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
        gap: 1rem;
        max-width: 600px;
        margin: auto;
    }

        .sitemap-content-wrapper p a {
            background: linear-gradient(135deg, #f8fafb, #f1f5f9);
            border-radius: 8px;
            padding: 0.1rem;
            text-decoration: none;
            color: var(--theme-clr);
            font-weight: 500;
            transition: all 0.3s ease;
            text-align: center;
            border: 2px solid transparent;
            display: flex;
            justify-content: center;
            align-items: center;
        }

            .sitemap-content-wrapper p a:hover {
                background: var(--theme-clr-hover);
                border-color: var(--theme-clr);
                transform: translateY(-2px);
            }

    /* Responsive Design */
    @media (max-width: 768px) {
        .sitemap-content-wrapper {
            padding: 1.5rem;
        }

        .sitemap-container {
            padding: 20px 1rem;
        }
    }

    /*buyer seller page*/

    .seller-info-section {
        background: white;
        padding: 2.5rem;
        border-radius: 16px;
        box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    }

    .seller-page-title {
        font-size: 2rem;
        color: #333;
        margin-bottom: 2rem;
        position: relative;
        padding-bottom: 1rem;
        font-weight: 700;
        display: inline-block;
    }

        .seller-page-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 3px;
            background: linear-gradient(90deg, #2c5aa0, #4CAF50);
            border-radius: 2px;
        }

.seller-page-subheading {
    color: var(--theme-clr);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.section-content {
    margin-bottom: 2.5rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid var(--theme-clr);
}

        .section-content p {
            color: #4a5568;
            font-size: 1rem;
            line-height: 1.7;
            margin-bottom: 1rem;
        }

            .section-content p:last-child {
                margin-bottom: 0;
            }

    .highlight-link {
        color: #5cb85c;
        text-decoration: none;
        font-weight: 600;
        transition: color 0.3s ease;
    }

        .highlight-link:hover {
            color: #4a9749;
            text-decoration: underline;
        }

.important-notice {
    background: var(--theme-clr-hover);
    border: 1px solid #ebf6ff;
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    border-left: 4px solid var(--theme-clr);
}

    .important-notice .notice-title {
        font-weight: 600;
        color: #042585;
        margin-bottom: 0.5rem;
        font-size: 1.1rem;
    }

        .important-notice p {
            color: #666;
            margin-bottom: 0;
        }


    /***/
    .quick-links {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
        margin-top: 2rem;
    }

    .quick-link {
        padding: 1rem;
        background: #f8f9fa;
        border-radius: 8px;
        text-align: center;
        text-decoration: none;
        color: #5cb85c;
        font-weight: 500;
        transition: all 0.3s ease;
        border: 2px solid transparent;
    }

        .quick-link:hover {
            background: #5cb85c;
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(92, 184, 92, 0.2);
        }

    .key-points {
        background: #e8f5e8;
        border-radius: 8px;
        padding: 1.5rem;
        margin: 1.5rem 0;
    }

        .key-points h4 {
            color: #2d3748;
            margin-bottom: 1rem;
            font-size: 1.1rem;
            font-weight: 600;
        }

        .key-points ul {
            list-style: none;
            padding-left: 0;
        }

        .key-points li {
            color: #4a5568;
            margin-bottom: 0.5rem;
            padding-left: 1.5rem;
            position: relative;
        }

            .key-points li:before {
                content: "✓";
                position: absolute;
                left: 0;
                color: #5cb85c;
                font-weight: bold;
            }
    /*Glossary page*/

    .glossary-terms-section {
        background: white;
        padding: 2.5rem;
        border-radius: 16px;
        box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    }

    .glossary-section-title {
        font-size: 2rem;
        color: #333;
        margin-bottom: 2rem;
        position: relative;
        padding-bottom: 1rem;
        font-weight: 700;
        display: inline-block;
    }

        .glossary-section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 3px;
            background: linear-gradient(90deg, #2c5aa0, #4CAF50);
            border-radius: 2px;
        }

    .glossary-Link-container {
        background: #f8f9fa;
        padding: 1rem;
        border-radius: 8px;
        margin-bottom: 2rem;
        list-style: none;
        display: flex;
        flex-wrap: wrap;
        gap: 0.5rem;
    }

        .glossary-Link-container .glossaryLink {
            padding: 0.5rem 0.8rem;
            background: white;
            color: var(--theme-clr);
            text-decoration: none;
            border-radius: 6px;
            font-weight: 500;
            transition: all 0.3s;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }

.glossaryLetter {
    font-size: 2.5rem;
    color: #2c5aa0;
    margin-bottom: 1rem;
    border-bottom: 3px solid var(--theme-clr);
}

.glossary-descriptions-container p:not(.glossaryLetter) {
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid var(--theme-clr);
    word-break: break-word;
}

        .glossary-descriptions-container p:not(.glossaryLetter) .link {
            color: #4CAF50;
            text-decoration: none;
            font-weight: 500;
            font-size: 15px;
        }

        .glossary-descriptions-container p:not(.glossaryLetter) strong:first-of-type {
            display: block;
        }

    .glossary-descriptions-container p:not(.glossaryLetter) strong {
        color: var(--theme-clr);
    }

    .glossary-descriptions-container p:has(a.top-link) {
        background: unset !important;
        border-left: 0 !important;
        padding-inline: 0 !important;
    }

        .glossary-descriptions-container p:has(a.top-link) a {
            background: var(--button-clr);
            color: white;
            border: none;
            padding: 0.75rem 2rem;
            border-radius: 25px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            width: 100%;
            text-decoration: none;
        }

            .glossary-descriptions-container p:has(a.top-link) a:hover {
                transform: translateY(-2px);
                box-shadow: 0 5px 15px rgba(39, 92, 139, 0.4);
            }
            /* Responsive Design */
            @media (max-width: 768px) {
                .glossary-section-title, .glossaryLetter {
                    font-size: 1.5rem;
                }

                .glossary-terms-section {
                    padding: 1.5rem;
                }
            }
            /*foreclosure style*/

            .foreclosure-container-main {
        max-width: 1370px;
        margin: 0 auto;
        padding: 40px 2rem;
        display: grid;
        grid-template-columns: 2fr 1fr;
        gap: 3rem;
    }

    .foreclosure-map-main {
        background: white;
        padding: 2.5rem;
        border-radius: 16px;
        box-shadow: 0 4px 20px rgba(0,0,0,0.08);
        overflow: hidden;
    }

    .foreclosure-title {
        font-size: 2rem;
        color: #333;
        margin-bottom: 2rem;
        position: relative;
        padding-bottom: 1rem;
        font-weight: 700;
        display: inline-block;
    }

        .foreclosure-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 3px;
            background: linear-gradient(90deg, #2c5aa0, #4CAF50);
            border-radius: 2px;
        }

    .foreclosure-map-main .lg-map-container {
        position: static !important;
        width: 100% !important;
        height: 100% !important;
    }

    .foreclosure-container-main:has(.foreclosure-list-main) {
        padding-block: 0;
    }

    .foreclosure-list-main .small-list {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
        gap: 1rem;
    }

        .foreclosure-list-main .small-list li {
            margin-bottom: 1rem;
            list-style: none;
        }

        .foreclosure-list-main .small-list li {
            background: linear-gradient(135deg, #f8fafb, #f1f5f9);
            border-radius: 8px;
            padding: 0.1rem;
            text-decoration: none;
            color: var(--theme-clr);
            font-weight: 500;
            transition: all 0.3s ease;
            text-align: center;
            border: 2px solid transparent;
            display: flex;
            justify-content: center;
            align-items: center;
            margin: auto;
            width:100%;
        }

            .foreclosure-list-main .small-list li:hover {
                background: var(--theme-clr-hover);
                border-color: var(--theme-clr);
                transform: translateY(-2px);
            }

            .foreclosure-list-main .small-list li a {
                color: var(--theme-clr);
                text-decoration: none;
            }

    .foreclosure-list-main h4 {
        transition: all 0.3s ease;
        color: #2c5aa0;
        font-size: 1.3rem;
        font-weight: 600;
        margin-block: 1rem;
    }


    @media (max-width: 768px) {
        .foreclosure-container-main {
            grid-template-columns: 1fr;
            gap: 2rem;
            padding: 20px 1rem;
        }

        .foreclosure-title {
            font-size: 1.5rem;
        }

        .foreclosure-map-main {
            padding: 1.5rem;
        }

        .findlisting-sidebar {
            position: static !important;
        }
    }


    /*education-container*/
    .education-container-main {
        max-width: 1370px;
        margin: 0 auto;
        padding: 40px 2rem;
    }

    .education-section {
        display: flex;
        align-items: flex-start;
        gap: 2rem;
    }

    .courses-section {
        display: grid;
        grid-template-columns: 2.5fr 1fr;
        gap: 3rem;
    }

    .broker-section .broker-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
        gap: 1rem;
        margin-bottom: 1rem;
        text-align: center;
    }

    .education-content-main {
        background: white;
        padding: 2.5rem;
        border-radius: 16px;
        box-shadow: 0 4px 20px rgba(0,0,0,0.08);
        overflow: hidden;
        color: #666;
    }

    .education-content-title {
        font-size: 2rem;
        color: #333;
        margin-bottom: 2rem;
        position: relative;
        padding-bottom: 1rem;
        font-weight: 700;
        display: inline-block;
    }

        .education-content-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 3px;
            background: linear-gradient(90deg, #2c5aa0, #4CAF50);
            border-radius: 2px;
        }

    .education-content-subheading {
        color: #2c5aa0;
        font-size: 1.1rem;
        margin-bottom: 1rem;
        font-weight: 700;
    }

    .education-content-main .mbition-img {
        margin-block: 25px;
    }

    .education-content-main .education-link {
        display: flex;
        gap: 20px;
        margin-top: 30px;
    }

        .education-content-main .anchr-link, .education-content-main .education-link a {
            color: #4CAF50;
            text-decoration: none;
            font-weight: 500;
        }

    .education-content-main .small-list {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
        gap: 1rem;
        margin-bottom: 1rem;
    }

        .education-content-main .small-list li {
            background: linear-gradient(135deg, #f8fafb, #f1f5f9);
            border-radius: 8px;
            padding: 0.1rem;
            text-decoration: none;
            color: var(--theme-clr);
            font-weight: 500;
            transition: all 0.3s ease;
            text-align: center;
            border: 2px solid transparent;
            display: flex;
            justify-content: center;
            align-items: center;
        }

            .education-content-main .small-list li:hover {
                background: var(--theme-clr-hover);
                border-color: var(--theme-clr);
                transform: translateY(-2px);
            }

            .education-content-main .small-list li a {
                text-decoration: none;
                color: var(--theme-clr);
            }

    .education-content-main .backToTop-btn {
        text-align: center;
        padding-top: 1rem;
    }

        .education-content-main .backToTop-btn a {
            background: var(--button-clr);
            color: white;
            border: none;
            padding: 0.75rem 2rem;
            border-radius: 25px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            width: 100%;
            text-decoration: none;
        }

    @media (max-width: 768px) {
        .courses-section {
            grid-template-columns: 1fr;
            gap: 2rem;
            padding: 20px 1rem;
        }

        .education-container-main {
            padding: 20px 1rem;
        }

        .education-section {
            flex-direction: column;
        }

        .education-content-main {
            padding: 1.5rem;
        }

        .education-content-title {
            font-size: 1.5rem;
        }

        .broker-grid {
            text-align: left !important;
        }
    }

    @media screen and (max-width:767px) {
        .flex-sm {
            display: flex;
            flex-wrap: wrap;
        }

        .sm-order-2 {
            order: 2;
        }

        .sm-order-1 {
            order: 1;
        }
    }

    .show-mobile {
        display: none;
    }

    .hide-mobile {
        display: block;
    }


    @media screen and (max-width: 992px) {
        .show-mobile {
            display: block;
        }

        .hide-mobile {
            display: none;
        }
    }