 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            background: #f8f9fa;
            padding-bottom: 0px;
        }

        /* Header */
        .header {
            background: white;
            padding: 15px 15px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            position: sticky; 
            top: 0;
            z-index: 100;
        }

        .user-info {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 15px;
        }

        .user-profile {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .avatar {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: bold;
            font-size: 18px;
        }

        .user-details h2 {
            font-size: 20px;
            color: #2c3e50;
            margin-bottom: 2px;
        }

        .greeting {
            color: #7f8c8d;
            font-size: 14px;
            display: flex;
            align-items: center;
            gap: 5px;
        }


        /* Search */
        .search-container {
            position: relative;
            margin-bottom: 0px;
        }

        .search-input {
            width: 100%;
            padding: 12px 50px 12px 12px;
            border: 1px solid #ddd;
            border-radius: 25px;
            font-size: 16px;
            background: #f8f9fa;
        }

        .search-icon {
            position: absolute;
            left: 15px;
            top: 50%;
            transform: translateY(-50%);
            color: #7f8c8d;
            font-size: 18px;
        }

        .filter-btn {
            position: absolute;
            right: 7px;
            top: 5%;
           /* transform: translateY(-50%);*/
           /* background: #3498db;*/
            color: white;
            border: none;
            border-radius: 20px;
            width: 35px;
            height: 35px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
        }

        /* CTA Banner */
        .cta-banner {
            background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
            margin: 20px;
            border-radius: 20px;
            padding: 25px;
            color: white;
            position: relative;
            overflow: hidden;
        }

        .cta-content {
            position: relative;
            z-index: 2;
        }

        .cta-banner h3 {
            font-size: 22px;
            margin-bottom: 8px;
        }

        .cta-banner p {
            opacity: 0.9;
            margin-bottom: 20px;
            font-size: 14px;
        }

        .cta-btn {
            background: white;
            color: #3498db;
            border: none;
            padding: 12px 25px;
            border-radius: 25px;
            font-weight: 600;
            cursor: pointer;
            transition: transform 0.2s ease;
        }

        .cta-btn:hover {
            transform: translateY(-2px);
        }

        .cta-decoration {
            position: absolute;
            right: -20px;
            top: -20px;
            width: 150px;
            height: 150px;
            background: rgba(255,255,255,0.1);
            border-radius: 50%;
        }

        /* Filters */
        .filters {
            display: flex;
            gap: 10px;
            padding: 10px 0 0;
            margin-bottom: 0px;
        }

        .filter-chip {
            padding: 8px 20px;
            border-radius: 20px;
            border: 1px solid #ddd;
            background: white;
            color: #2c3e50;
            font-size: 14px;
            cursor: pointer;
            transition: all 0.3s ease;
            white-space: nowrap;
        }

        .filter-chip.active {
            background: #3498db;
            color: white;
            border-color: #3498db;
        }

        .sort-btn {
            margin-left: auto;
            display: flex;
            align-items: center;
            gap: 5px;
            background: white;
            border: 1px solid #ddd;
            padding: 8px 15px;
            border-radius: 20px;
            cursor: pointer;
        }

        /* Featured Listings */
        .section-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 20px;
            margin-bottom: 15px;
        }

        .section-header h2 {
            font-size: 20px;
            color: #2c3e50;
        }

        .see-all {
            color: #3498db;
            text-decoration: none;
            font-weight: 500;
        }

        .listings-container {
            padding: 0 20px;
        }

        .listing-card {
            background: white;
            border-radius: 15px;
            margin-bottom: 20px;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
            position: relative;
        }

        .listing-image {
            width: 100%;
            height: 200px;
            background: linear-gradient(45deg, #f39c12, #e67e22);
            position: relative;
            overflow: hidden;
            background-size: cover!important;
        }

        .listing-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .listing-badge {
            position: absolute;
            top: 15px;
            left: 15px;
            background: rgba(0,0,0,0.7);
            color: white;
            padding: 5px 12px;
            border-radius: 15px;
            font-size: 12px;
        }

        .listing-actions {
            position: absolute;
            top: 15px;
            right: 15px;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .action-btn {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(0,0,0,0.5);
            color: white;
            border: none;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .action-btn:hover {
            background: rgba(0,0,0,0.7);
            transform: scale(1.1);
        }

        .order-type-btn {
            position: absolute;
            bottom: 15px;
            left: 15px;
            background: #3498db;
            color: white;
            border: none;
            padding: 8px 15px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 500;
            cursor: pointer;
        }

        .listing-info {
            padding: 20px;
        }

        .listing-price {
            font-size: 22px;
            font-weight: 700;
            color: #2c3e50;
            margin-bottom: 5px;
        }

        .listing-title {
            font-size: 16px;
            color: #2c3e50;
            margin-bottom: 8px;
            line-height: 1.3;
        }

        .listing-location {
            color: #7f8c8d;
            font-size: 14px;
            margin-bottom: 15px;
        }

        .listing-features {
            display: flex;
            gap: 15px;
        }

        .feature {
            display: flex;
            align-items: center;
            gap: 5px;
            font-size: 12px;
            color: #7f8c8d;
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .listing-card {
            animation: fadeInUp 0.5s ease forwards;
        }

        /* Responsive adjustments */
        @media (max-width: 375px) {
            .property-types {
                padding: 15px;
                gap: 10px;
            }
            
            .property-icon {
                width: 50px;
                height: 50px;
                font-size: 20px;
            }
        }
.property_link
{
    text-decoration: none;
}