/* General Body & Color Styles */
:root {
    --primary-green: #28a745; /* A vibrant green for accents */
    --light-bg: #f8f9fa;
    --card-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
    --card-border-radius: 0.75rem;
}

body {
    background-color: var(--light-bg);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Hero Section Styles */
.hero-section {
    position: relative;
    color: white;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
}

    .hero-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.5); /* Dark overlay */
    }

.hero-content {
    position: relative; /* Ensures content is above the overlay */
    padding: 6rem 0;
}

/* Custom Search Box Styles */
.search-container {
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: var(--card-border-radius);
    box-shadow: var(--card-shadow);
    max-width: 900px;
    margin: auto;
}

    .search-container .nav-tabs {
        border-bottom: none;
    }

        .search-container .nav-tabs .nav-link {
            border: none;
            color: #333;
            font-weight: 500;
            padding: 0.5rem 1.5rem;
            background-color: #e9ecef;
            margin-right: 5px;
            border-radius: 0.25rem 0.25rem 0 0;
        }

            .search-container .nav-tabs .nav-link.active {
                background-color: #fff;
                color: var(--primary-green);
                border-bottom: 2px solid var(--primary-green);
            }

.search-form-body {
    background-color: #fff;
    padding: 1.5rem;
    border-radius: 0 0 0.5rem 0.5rem;
}

.btn-find {
    background-color: var(--primary-green);
    border-color: var(--primary-green);
    color: white;
    font-weight: bold;
    padding: 0.75rem 2rem;
}

/* Browse Properties Section Styles */
.browse-section {
    padding: 4rem 0;
}

.property-card {
    background-color: white;
    border: none;
    border-radius: var(--card-border-radius);
    box-shadow: var(--card-shadow);
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

    .property-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 1rem 1.5rem rgba(0, 0, 0, 0.15);
    }

    .property-card .card-body {
        padding: 1.5rem;
    }

.card-icon {
    font-size: 1.5rem;
    color: var(--primary-green);
}

.property-card .nav-pills .nav-link {
    color: #6c757d;
    font-size: 0.9rem;
    padding: 0.25rem 0.75rem;
}

    .property-card .nav-pills .nav-link.active {
        background-color: var(--primary-green);
        color: white;
    }

.property-links a {
    background-color: #eef7f0;
    color: #333;
    padding: 0.5rem 1rem;
    border-radius: 50px; /* Pill shape */
    font-size: 0.85rem;
    text-decoration: none;
    margin: 0.25rem;
    transition: background-color 0.2s;
}

    .property-links a:hover {
        background-color: #d4e9d7;
    }
.sold-watermark-container {
    position: relative;
}

.sold-watermark {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-30deg);
    font-size: 3rem;
    font-weight: bold;
    color: rgba(220, 53, 69, 0.7); /* Bootstrap's danger color with transparency */
    border: 5px solid rgba(220, 53, 69, 0.7);
    padding: 5px 20px;
    pointer-events: none; /* Allows clicks to go through the watermark */
}
.search-form {
    background: #fff;
    border: 1px solid #eaeaea;
    transition: box-shadow 0.3s ease;
}

    .search-form:hover {
        box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    }

    .search-form select,
    .search-form input {
        border-radius: 8px;
        padding: 10px;
        font-size: 0.95rem;
    }

    .search-form .btn-primary {
        border-radius: 8px;
        font-weight: 600;
        transition: background 0.2s ease;
    }

        .search-form .btn-primary:hover {
            background: #0056b3;
        }

.advanced-filters {
    border-top: 1px dashed #ddd;
    margin-top: 10px;
    padding-top: 15px;
}
/*Search Custom Css*/
/* Premium Navbar */
/* Prevent overlap with fixed navbar */
body {
    padding-top: 70px; /* equal to navbar height */
}

/* Navbar Styling */
.premium-navbar {
    background: #fff;
    border-bottom: 1px solid #eaeaea;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
    height: 70px;
}

/* Brand */
.premium-brand {
    font-weight: 700;
    font-size: 1.5rem;
    color: #111;
}

    .premium-brand span {
        color: #007bff;
    }

/* Nav Links */
.premium-nav .nav-link {
    font-weight: 500;
    color: #333;
    margin: 0 0.5rem;
    transition: color 0.3s;
}

    .premium-nav .nav-link:hover {
        color: #007bff;
    }

/* Search Box */
.premium-search {
    display: flex;
    align-items: center;
}

    .premium-search .search-input {
        border-radius: 30px 0 0 30px;
        padding: 0.4rem 1rem;
        border: 1px solid #ccc;
    }

    .premium-search .search-btn {
        border-radius: 0 30px 30px 0;
        background: #007bff;
        color: #fff;
        border: none;
        padding: 0.4rem 1rem;
        transition: background 0.3s;
    }

        .premium-search .search-btn:hover {
            background: #0056b3;
        }

/* User text */
.user-text {
    font-size: 0.9rem;
    color: #555;
}
<style >
/* Preloader Styles */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ffffff; /* A clean white background */
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.75s ease, visibility 0.75s ease;
}

/* This class will be added by JavaScript to hide the preloader */
#preloader.hide {
    opacity: 0;
    visibility: hidden;
}

/* The SVG for our house icon animation */
.house-loader {
    width: 100px;
    height: 100px;
}

    .house-loader path {
        stroke: #0d6efd; /* Bootstrap primary blue */
        stroke-width: 2;
        fill: transparent;
        /* This is the magic for the drawing animation */
        stroke-dasharray: 1000;
        stroke-dashoffset: 1000;
        animation: draw-house 2.5s ease-in-out infinite;
    }

/* The animation keyframes */
@keyframes draw-house {
    to {
        stroke-dashoffset: 0;
    }
}

/* Page Content Styles */
body {
    font-family: sans-serif;
    margin: 0;
}

#page-content {
    opacity: 0; /* Start with content hidden */
    transition: opacity 1s ease;
    padding: 2rem;
    text-align: center;
}

    /* This class will be added by JavaScript to show the content */
    #page-content.show {
        opacity: 1;
    }

/* Basic styling for the placeholder content */
.placeholder-card {
    max-width: 400px;
    margin: 1rem auto;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

