* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: Arial, sans-serif;
            scroll-behavior: smooth;
        }
        body {
            background-color: #f5f5f5;
            color: #333;
        }
        header {
            background: #004466;
            color: white;
            text-align: center;
            padding: 20px;
            animation: fadeIn 1s ease-in-out;
        }
        .search-bar {
            margin: 20px auto;
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 10px;
            background: rgba(255, 255, 255, 0.2);
            padding: 10px;
            border-radius: 20px;
            backdrop-filter: blur(5px);
            width: 90%;
            max-width: 600px;
            transition: transform 0.3s ease-in-out;
        }
        .search-bar:hover {
            transform: scale(1.05);
        }
        .search-bar input {
            padding: 12px;
            width: 100%;
            border: 2px solid #004466;
            border-radius: 25px;
            background: transparent;
            color: white;
            font-size: 16px;
            outline: none;
        }
        .search-bar input::placeholder {
            color: white;
        }
        .search-bar button {
            background: transparent;
            border: 2px solid #004466;
            color: #004466;
            padding: 12px 20px;
            cursor: pointer;
            border-radius: 25px;
            transition: 0.3s;
            font-size: 16px;
        }
        .search-bar button:hover {
            background: #004466;
            color: white;
        }
        .slider {
            display: flex;
            overflow-x: auto;
            scroll-snap-type: x mandatory;
            gap: 20px;
            padding: 20px;
            scroll-behavior: smooth;
            white-space: nowrap;
            position: relative;
        }
        .slider::-webkit-scrollbar {
            display: none;
        }
        .property {
            background: white;
            padding: 15px;
            border-radius: 10px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            text-align: center;
            flex: 0 0 auto;
            width: 300px;
            scroll-snap-align: center;
            transition: transform 0.3s ease-in-out;
        }
        .property:hover {
            transform: translateY(-5px);
        }
        .property img {
            width: 100%;
            border-radius: 10px;
            transition: opacity 0.5s ease-in-out;
        }
        .property h2 {
            margin: 10px 0;
            color: #004466;
        }
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(-10px); }
            to { opacity: 1; transform: translateY(0); }
        }