  <style>
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        :root {
            --primary: #f44336;
            --secondary: #3498db;
            --accent: #f84434;
            --light: #ecf0f1;
            --dark: #2c3e50;
            --success: #2ecc71;
            --warning: #f39c12;
            --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            --transition: all 0.3s ease;
        }

        body {
            background-color: #f5f7fa;
            color: #333;
            line-height: 1.6;
        }

        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0px 15px 0px 15px;
        }

        /* Header Styles */
        header {
            background: var(--primary);
            color: white;
            padding: 0.5rem 0;
            box-shadow: var(--shadow);
            position: sticky;
            top: 0;
            z-index: 100;
        }

        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 1.8rem;
            font-weight: 700;
            display: flex;
            align-items: center;
        }

        .logo i {
            color: white;
            margin-right: 10px;
        }

        /* Desktop Navigation */
        .desktop-nav ul {
            display: flex;
            list-style: none;
            align-items: center;
        }

        .desktop-nav ul li {
            margin-left: 1.5rem;
        }

        .desktop-nav ul li a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            transition: var(--transition);
            padding: 0.5rem 0.8rem;
            border-radius: 4px;
        }

        .desktop-nav ul li a:hover {
            background: rgba(255, 255, 255, 0.1);
        }

        .desktop-nav ul li a.active {
            background: rgba(255, 255, 255, 0.2);
            font-weight: 600;
        }

        .auth-buttons {
            display: flex;
            gap: 1rem;
            align-items: center;
            position: relative;
        }

        .btn {
            padding: 0.6rem 1.2rem;
            border-radius: 4px;
            border: none;
            cursor: pointer;
            font-weight: 600;
            transition: var(--transition);
            display: inline-flex;
            align-items: center;
            justify-content: center;
        }

        .btn-primary {
            background: var(--secondary);
            color: white;
        }

        .btn-primary:hover {
            background: #2980b9;
        }

        .btn-outline {
            background: transparent;
            border: 2px solid white;
            color: white;
        }

        .btn-outline:hover {
            background: white;
            color: var(--primary);
        }

        .btn-listing {
            background: var(--secondary);
            color: white;
        }

        .btn-listing:hover {
            background: #2980b9;
        }

        .btn-listing i {
            margin-right: 8px;
        }

        .user-avatar {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.2);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            cursor: pointer;
            transition: var(--transition);
        }

        .user-avatar:hover {
            background: rgba(255, 255, 255, 0.3);
        }

        /* Avatar Dropdown Menu */
        .avatar-dropdown {
            position: absolute;
            top: 100%;
            right: 0;
            background: white;
            width: 200px;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
            z-index: 1000;
            margin-top: 10px;
            opacity: 0;
            visibility: hidden;
            transform: translateY(10px);
            transition: var(--transition);
        }

        .avatar-dropdown.active {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .avatar-dropdown ul {
            list-style: none;
        }

        .avatar-dropdown ul li {
            border-bottom: 1px solid #eee;
        }

        .avatar-dropdown ul li:last-child {
            border-bottom: none;
        }

        .avatar-dropdown ul li a {
            display: block;
            padding: 12px 15px;
            color: #333;
            text-decoration: none;
            transition: var(--transition);
            display: flex;
            align-items: center;
        }

        .avatar-dropdown ul li a i {
            margin-right: 10px;
            color: var(--primary);
            width: 20px;
        }

        .avatar-dropdown ul li a:hover {
            background: #f5f5f5;
            color: var(--primary);
        }

        /* Hamburger Menu */
        .hamburger {
            display: none;
            flex-direction: column;
            justify-content: space-around;
            width: 30px;
            height: 25px;
            background: transparent;
            border: none;
            cursor: pointer;
            padding: 0;
        }

        .hamburger span {
            width: 100%;
            height: 3px;
            background-color: white;
            border-radius: 5px;
            transition: var(--transition);
        }

        /* Mobile Navigation */
        .mobile-nav {
            position: fixed;
            top: 0;
            right: -300px;
            width: 300px;
            height: 100vh;
            background: white;
            padding: 0;
            z-index: 200;
            transition: var(--transition);
            box-shadow: -5px 0 15px rgba(0, 0, 0, 0.2);
            display: flex;
            flex-direction: column;
        }

        .mobile-nav.active {
            right: 0;
        }

        .user-header {
            background: var(--primary);
            color: white;
            padding: 1.5rem;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .user-avatar-large {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            background: white;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1rem;
            color: var(--primary);
            font-size: 2rem;
        }

        .user-name {
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 0.2rem;
        }

        .user-email {
            font-size: 0.9rem;
            opacity: 0.9;
        }
        .user-login-register {
            font-size: 0.9rem;
            opacity: 0.9;
            color: #FFFFFF;
        }
         .user-login-register a {
            
            color: #FFFFFF;
        }
        .mobile-nav ul {
            list-style: none;
            padding: 1.5rem;
            flex-grow: 1;
            overflow-y: auto;
        }

        .mobile-nav ul li {
            margin-bottom: 1.5rem;
        }

        .mobile-nav ul li a {
            color: #333;
            text-decoration: none;
            font-size: 1.1rem;
            display: block;
            padding: 0.5rem 0;
            border-bottom: 1px solid rgba(0, 0, 0, 0.1);
            transition: var(--transition);
            display: flex;
            align-items: center;
        }

        .mobile-nav ul li a i {
            margin-right: 10px;
            color: var(--primary);
            width: 25px;
        }

        .mobile-nav ul li a.active {
            color: var(--primary);
            font-weight: 600;
        }

        .mobile-nav ul li a:hover {
            color: var(--primary);
        }

        .close-menu {
            position: absolute;
            top: 1rem;
            right: 1rem;
            background: none;
            border: none;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
            z-index: 201;
        }

        .overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            z-index: 150;
            display: none;
        }

        .overlay.active {
            display: block;
        }

        /* Floating Action Button for Mobile - HIDDEN */
        .floating-action-btn {
            display: none !important;
        }

        /* Mobile Post Listing Button - FIXED */
        .mobile-post-btn {
            display: none;
            padding: 0.6rem 1.2rem;
            border-radius: 4px;
            border: none;
            cursor: pointer;
            font-weight: 600;
            transition: var(--transition);
            align-items: center;
            justify-content: center;
            background: var(--secondary);
            color: white;
            margin-left: 1rem;
            white-space: nowrap;
        }

        .mobile-post-btn i {
            margin-right: 8px;
        }

        .mobile-post-btn:hover {
            background: #2980b9;
        }

        /* Main Content */
        .main-content {
            padding: 2rem 0;
        }

        .section-title {
            text-align: center;
            margin-bottom: 2rem;
            color: var(--dark);
            position: relative;
            padding-bottom: 0.5rem;
        }

        .section-title:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: var(--primary);
        }

        /* Filter Bar */
        .filter-bar {
            background: white;
            padding: 1.5rem;
            border-radius: 8px;
            box-shadow: var(--shadow);
            margin-bottom: 2rem;
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            align-items: center;
        }

        .filter-group {
            flex: 1;
            min-width: 200px;
        }

        .filter-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 600;
            color: var(--dark);
        }

        .filter-group select, .filter-group input {
            width: 100%;
            padding: 0.8rem;
            border: 1px solid #ddd;
            border-radius: 4px;
        }

        /* Property Grid */
        .property-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 2rem;
            margin-bottom: 3rem;
        }

        .property-card {
            background: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: var(--transition);
            cursor: pointer;
        }

        .property-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 20px rgba(0, 0, 0, 0.15);
        }

        .property-image {
            height: 200px;
            overflow: hidden;
            position: relative;
        }

        .property-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }

        .property-card:hover .property-image img {
            transform: scale(1.05);
        }

        .property-updated {
            position: absolute;
            bottom: 10px;
            right: 10px;
            background: rgba(0, 0, 0, 0.7);
            color: white;
            padding: 4px 8px;
            border-radius: 4px;
            font-size: 0.8rem;
        }

        .property-details {
            padding: 1.5rem;
        }

        .property-price {
            color: var(--primary);
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
        }

        .property-address {
            color: #777;
            margin-bottom: 1rem;
        }

        .property-features {
            display: flex;
            justify-content: space-between;
            margin-bottom: 1.5rem;
            border-top: 1px solid #eee;
            padding-top: 1rem;
        }

        .feature {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .feature i {
            color: var(--primary);
        }

        .property-status {
            position: absolute;
            top: 10px;
            right: 10px;
            background: rgba(0, 0, 0, 0.7);
            color: white;
            padding: 4px 8px;
            border-radius: 4px;
            font-size: 0.8rem;
        }
		/*
        .property-status {
            display: inline-block;
            padding: 0.3rem 0.8rem;
            border-radius: 4px;
            font-size: 0.8rem;
            font-weight: 600;
            margin-top: 1rem;
        }
*/
        .status-for-sale {
            background: #e8f5e9;
            color: #2e7d32;
        }

        .status-for-rent {
            background: #e3f2fd;
            color: #1565c0;
        }

        .status-for-lease {
            background: #fff3e0;
            color: #ef6c00;
        }

        /* Footer */
        footer {
            background: var(--dark);
            color: white;
            padding: 3rem 0 2rem;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }

        .footer-section h3 {
            font-size: 1.2rem;
            margin-bottom: 1.2rem;
            position: relative;
            padding-bottom: 0.5rem;
        }

        .footer-section h3:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 2px;
            background: var(--primary);
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 0.8rem;
        }

        .footer-links a {
            color: #ddd;
            text-decoration: none;
            transition: var(--transition);
            display: block;
        }

        .footer-links a:hover {
            color: var(--primary);
            margin-left: 5px;
        }

        .footer-social {
            display: flex;
            gap: 1rem;
            margin-top: 1rem;
        }

        .footer-social a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            color: white;
            transition: var(--transition);
        }

        .footer-social a:hover {
            background: var(--primary);
            transform: translateY(-3px);
        }

        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        /* Responsive Design */
        @media (max-width: 992px) {
            .desktop-nav, .auth-buttons .btn, .auth-buttons .user-avatar {
                display: none;
            }
            
            .hamburger {
                display: flex;
            }
            
            .filter-bar {
                flex-direction: column;
                align-items: stretch;
            }
            
            /* Show mobile post listing button */
            .mobile-post-btn {
                display: flex;
            }
            
            /* Show avatar instead of hamburger on small screens */
            .hamburger-avatar {
                display: flex;
                width: 40px;
                height: 40px;
                border-radius: 50%;
                background: rgba(255, 255, 255, 0.2);
                align-items: center;
                justify-content: center;
                color: white;
                cursor: pointer;
                transition: var(--transition);
                border: none;
                font-size: 1.2rem;
            }
            
            .hamburger-avatar:hover {
                background: rgba(255, 255, 255, 0.3);
            }
            
            .hamburger {
                display: none; /* Hide the hamburger icon */
            }
        }

        @media (max-width: 768px) {
            .filter-group {
                min-width: 100%;
            }
        }

        @media (max-width: 576px) {
            .mobile-post-btn {
                padding: 0.6rem 1rem;
                font-size: 0.9rem;
            }
            
            .mobile-post-btn i {
                margin-right: 5px;
            }
            
            .property-updated {
                font-size: 0.7rem;
                padding: 3px 6px;
            }
        }

        @media (min-width: 993px) {
            .mobile-nav, .overlay, .mobile-post-btn, .hamburger-avatar {
                display: none !important;
            }
            
            .auth-buttons .user-avatar {
                display: flex;
            }
        }
    </style>