
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
            line-height: 1.6;
            color: #333;
        }

        /* Header */
        .header {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
        }

        .nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 5%;
            max-width: 1200px;
            margin: 0 auto;
        }

        .logo {
            font-size: 1.8rem;
            font-weight: bold;
            color: #0ea5e9;
        }

        .navbar-nav {
            display: flex;
            gap: 2rem;
            list-style: none;
            margin: 0;
            padding: 0;
        }

        .nav-item {
            margin: 0;
        }

        .nav-link {
            text-decoration: none;
            color: #666;
            font-weight: 500;
            transition: color 0.3s;
            padding: 0.5rem 0;
        }

        .nav-link:hover {
            color: #0ea5e9;
        }

        .cta-button {
            background: #0ea5e9;
            color: white;
            padding: 0.5rem 1.5rem;
            border-radius: 25px;
            text-decoration: none;
            font-weight: 600;
            transition: background 0.3s;
        }

        .cta-button:hover {
            background: #0284c7;
        }

        /* Hero Section - Updated for full width background */
        .hero {
            background: linear-gradient(135deg, rgba(14, 165, 233, 0.8), rgba(3, 105, 161, 0.9)), 
                        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1920 1080"><defs><linearGradient id="bg" x1="0%" y1="0%" x2="100%" y2="100%"><stop offset="0%" style="stop-color:%23f0f9ff;stop-opacity:1" /><stop offset="50%" style="stop-color:%23e0f2fe;stop-opacity:1" /><stop offset="100%" style="stop-color:%23bae6fd;stop-opacity:1" /></linearGradient></defs><rect fill="url(%23bg)" width="1920" height="1080"/><circle fill="%23ffffff" cx="400" cy="300" r="200" opacity="0.1"/><circle fill="%23ffffff" cx="1200" cy="600" r="300" opacity="0.05"/><circle fill="%23ffffff" cx="800" cy="800" r="150" opacity="0.08"/><path d="M0,400 Q400,350 800,400 T1920,400 L1920,1080 L0,1080 Z" fill="%23ffffff" opacity="0.03"/></svg>');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
			background-image:url(Real/real-family.jpg)
        }

        /* Add animated elements */
        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle fill="%23ffffff" cx="20" cy="20" r="2" opacity="0.3"><animate attributeName="opacity" values="0.3;0.8;0.3" dur="2s" repeatCount="indefinite"/></circle><circle fill="%23ffffff" cx="80" cy="30" r="1.5" opacity="0.4"><animate attributeName="opacity" values="0.4;0.9;0.4" dur="3s" repeatCount="indefinite"/></circle><circle fill="%23ffffff" cx="60" cy="70" r="1" opacity="0.5"><animate attributeName="opacity" values="0.5;1;0.5" dur="1.5s" repeatCount="indefinite"/></circle></svg>');
            animation: float 20s ease-in-out infinite;
            pointer-events: none;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            50% { transform: translateY(-20px) rotate(180deg); }
        }

        .hero-content {
            display: flex;
            align-items: center;
            gap: 4rem;
            max-width: 1200px;
            width: 100%;
            padding: 0 5%;
            z-index: 1;
        }

        .hero-text {
            flex: 1;
            color: white;
            text-align: left;
        }

        .hero-title {
            font-size: 3.5rem;
            font-weight: 800;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }

        .hero-subtitle {
            font-size: 1.3rem;
            margin-bottom: 2rem;
            opacity: 0.95;
            font-weight: 300;
            line-height: 1.6;
        }

        .hero-features {
            display: flex;
            gap: 2rem;
            margin-bottom: 2rem;
        }

        .feature-item {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 1rem;
            opacity: 0.9;
        }

        .feature-icon {
            width: 24px;
            height: 24px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.8rem;
        }

        .signup-form {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(15px);
            padding: 2.5rem;
            border-radius: 20px;
            width: 380px;
            box-shadow: 0 25px 50px rgba(0,0,0,0.2);
            border: 1px solid rgba(255, 255, 255, 0.3);
        }

        .signup-form h2 {
            text-align: center;
            margin-bottom: 1.5rem;
            color: #333;
            font-size: 1.8rem;
            font-weight: 700;
        }

        .form-group {
            margin-bottom: 1.2rem;
        }

        .form-group input {
            width: 100%;
            padding: 1rem;
            border: 2px solid #e5e7eb;
            border-radius: 12px;
            font-size: 1rem;
            transition: all 0.3s ease;
            background: rgba(255, 255, 255, 0.9);
        }

        .form-group input:focus {
            outline: none;
            border-color: #0ea5e9;
            box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.1);
            transform: translateY(-2px);
        }

        .password-field {
            position: relative;
        }

        .toggle-password {
            position: absolute;
            right: 12px;
            top: 50%;
            transform: translateY(-50%);
            cursor: pointer;
            color: #666;
            font-size: 1.2rem;
            transition: color 0.3s;
        }

        .toggle-password:hover {
            color: #0ea5e9;
        }

        .signup-btn {
            width: 100%;
            background: linear-gradient(135deg, #0ea5e9, #0284c7);
            color: white;
            padding: 1rem;
            border: none;
            border-radius: 12px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .signup-btn:hover {
            background: linear-gradient(135deg, #0284c7, #0369a1);
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(14, 165, 233, 0.3);
        }

        .login-link {
            text-align: center;
            margin-top: 1.5rem;
            color: #666;
            font-size: 0.95rem;
        }

        .login-link a {
            color: #0ea5e9;
            text-decoration: none;
            font-weight: 600;
            transition: color 0.3s;
        }

        .login-link a:hover {
            color: #0284c7;
        }

        /* Properties Section */
        .properties-section {
            padding: 4rem 5%;
            max-width: 1200px;
            margin: 0 auto;
        }

        .section-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 2rem;
        }

        .section-title {
            font-size: 1.5rem;
            color: #333;
            font-weight: 600;
        }

        .view-all {
            color: #0ea5e9;
            text-decoration: none;
            font-weight: 500;
        }

        .properties-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .property-card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
            transition: transform 0.3s, box-shadow 0.3s;
            position: relative;
        }

        .property-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.15);
        }

        .property-image {
            height: 200px;
            background: #f3f4f6;
            position: relative;
            overflow: hidden;
        }

        .property-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .property-image .image-placeholder {
            background: #e5e7eb;
            border: none;
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #9ca3af;
            font-size: 1rem;
            text-align: center;
            border: 2px dashed #d1d5db;
        }

        .property-badge {
            position: absolute;
            top: 15px;
            left: 15px;
            background: #0ea5e9;
            color: white;
            padding: 0.3rem 0.8rem;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
        }

        .property-actions {
            position: absolute;
            top: 15px;
            right: 15px;
            display: flex;
            gap: 0.5rem;
        }

        .action-btn {
            width: 35px;
            height: 35px;
            background: rgba(255,255,255,0.9);
            border: none;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background 0.3s;
        }

        .action-btn:hover {
            background: white;
        }

        .property-info {
            padding: 1.5rem;
        }

        .property-title {
            font-size: 1.1rem;
            font-weight: 600;
            margin-bottom: 0.5rem;
            color: #333;
        }

        .property-price {
            color: #0ea5e9;
            font-weight: 600;
            margin-bottom: 0.5rem;
        }

        .property-address {
            color: #666;
            font-size: 0.9rem;
            margin-bottom: 1rem;
        }

        .property-features {
            display: flex;
            gap: 1rem;
            color: #666;
            font-size: 0.9rem;
        }

        .feature {
            display: flex;
            align-items: center;
            gap: 0.3rem;
        }

        .agent-info {
            position: absolute;
            bottom: 15px;
            right: 15px;
            width: 40px;
            height: 40px;
            background: #f3f4f6;
            border-radius: 50%;
            border: 3px solid white;
            overflow: hidden;
        }

        .agent-info img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .agent-info .image-placeholder {
            border-radius: 50%;
            border: none;
            font-size: 0.7rem;
        }

        /* Property Value Section */
        .value-section {
            background: linear-gradient(135deg, #1e293b, #334155);
            color: white;
            padding: 4rem 5%;
            text-align: center;
        }

        .value-content h2 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }

        .value-content .highlight {
            color: #0ea5e9;
            font-style: italic;
        }

        .value-description {
            max-width: 600px;
            margin: 0 auto 2rem;
            font-size: 1.1rem;
            line-height: 1.7;
            color: #cbd5e1;
        }

        .value-form {
            display: flex;
            max-width: 500px;
            margin: 0 auto;
            gap: 1rem;
        }

        .value-input {
            flex: 1;
            padding: 1rem;
            border: none;
            border-radius: 8px;
            font-size: 1rem;
        }

        .value-btn {
            background: #0ea5e9;
            color: white;
            padding: 1rem 2rem;
            border: none;
            border-radius: 8px;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.3s;
        }

        .value-btn:hover {
            background: #0284c7;
        }

        /* Footer */
        .footer {
            background: #1e293b;
            color: white;
            padding: 3rem 5% 2rem;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
            gap: 3rem;
            margin-bottom: 2rem;
        }

        .footer-section h3 {
            color: #0ea5e9;
            margin-bottom: 1rem;
            font-size: 1.2rem;
        }

        .footer-logo {
            font-size: 2rem;
            font-weight: bold;
            color: #0ea5e9;
            margin-bottom: 1rem;
        }

        .footer-description {
            color: #cbd5e1;
            line-height: 1.6;
            margin-bottom: 1.5rem;
        }

        .social-links {
            display: flex;
            gap: 1rem;
        }

        .social-link {
            width: 40px;
            height: 40px;
            background: #334155;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-decoration: none;
            transition: background 0.3s;
        }

        .social-link:hover {
            background: #0ea5e9;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 0.5rem;
        }

        .footer-links a {
            color: #cbd5e1;
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer-links a:hover {
            color: #0ea5e9;
        }

        .contact-info {
            color: #cbd5e1;
            line-height: 1.8;
        }

        .contact-info strong {
            color: white;
        }

        .footer-bottom {
            border-top: 1px solid #334155;
            padding-top: 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 1rem;
        }

        .footer-bottom-links {
            display: flex;
            gap: 2rem;
            list-style: none;
        }

        .footer-bottom-links a {
            color: #cbd5e1;
            text-decoration: none;
            font-size: 0.9rem;
        }

        .footer-bottom-links a:hover {
            color: #0ea5e9;
        }

        .copyright {
            color: #94a3b8;
            font-size: 0.9rem;
        }

        .chat-widget {
            position: fixed;
            bottom: 20px;
            right: 20px;
            width: 60px;
            height: 60px;
            background: #0ea5e9;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
            box-shadow: 0 5px 15px rgba(14, 165, 233, 0.4);
            z-index: 1000;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .nav {
                padding: 1rem 3%;
            }

            .navbar-nav {
                display: none;
            }

            .hero-content {
                flex-direction: column;
                gap: 2rem;
                padding-top: 2rem;
                text-align: center;
            }

            .hero-title {
                font-size: 2.5rem;
            }

            .hero-features {
                justify-content: center;
                flex-wrap: wrap;
            }

            .signup-form {
                width: 100%;
                max-width: 350px;
                padding: 2rem;
            }

            .value-form {
                flex-direction: column;
                max-width: 300px;
            }

            .properties-section {
                padding: 2rem 3%;
            }

            .footer-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .hero {
                background-attachment: scroll;
            }
        }
