body {
            background-color: #f8f9fa;
        }
		
		.top-bar {
            background-color: #2c2c5e;
            color: white;
            display: flex;
            justify-content: space-between;
            padding: 10px 20px;
            align-items: center;
        }
        .social-icons a, .right-options a {
            color: white;
            text-decoration: none;
            margin: 0 10px;
        }
        .right-options {
            display: flex;
            align-items: center;
        }
        .language-selector {
            margin-left: 10px;
            cursor: pointer;
        }
        
        .logo img {
            height: 50px;
        }
        .nav-links {
            list-style: none;
            display: flex;
            gap: 20px;
            padding: 0;
            margin: 0;
        }
        .nav-links li {
            display: inline;
        }
        .nav-links a {
            text-decoration: none;
            color: black;
            font-weight: bold;
        }
        @media (max-width: 768px) {
            nav {
                flex-direction: column;
                align-items: center;
            }
            .nav-links {
                flex-direction: column;
                align-items: center;
                gap: 10px;
            }
        }
		
		
        .property-card {
            transition: transform 0.3s;
        }
        .property-card:hover {
            transform: scale(1.05);
        }
        .property-img {
            width: 100%;
            height: 200px;
            object-fit: cover;
            border-radius: 10px;
        }
		.card{
			border: 1px solid #EEE;
            border-radius: 10px !important;
		}
        .search-container {
            background: #fff;
            border-radius: 50px;
            padding: 10px 20px;
            display: flex;
            align-items: center;
            box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
            margin: 50px auto;
            flex-wrap: wrap;
        }
        .search-item {
            flex: 1;
            text-align: center;
            padding: 5px 10px;
            min-width: 120px;
        }
        .search-item:hover {
            background-color: rgba(0, 0, 0, 0.05);
            border-radius: 10px;
        }
        .search-item input {
            border: none;
            outline: none;
            background: transparent;
            text-align: center;
            font-size: 14px;
            width: 100%;
        }
        .search-item label {
            font-weight: bold;
            font-size: 12px;
            color: #555;
            display: block;
        }
        .filter-btn {
            background: #5cb85c;
            color: #fff;
            border: none;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: 0.3s;
        }
        .search-btn {
            background: #ff385c;
            color: #fff;
            border: none;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: 0.3s;
        }
        .search-btn:hover {
            background: #d81a48;
        }
        .filter-btn:hover {
            background: #5e942b;
        }
        /* Responsif untuk layar kecil */
        @media (max-width: 768px) {
            .search-container {
                flex-direction: column;
                border-radius: 20px;
                padding: 15px;
            }
            .search-item {
                width: 100%;
                text-align: left;
                padding: 10px 0;
            }
            .search-item input {
                text-align: left;
                border-bottom: 1px solid #ddd;
                padding: 5px 0;
            }
            .search-btn, .filter-btn {
                width: 100%;
                border-radius: 10px;
                margin-top: 10px;
            }
        }
		
		.category-container {
            display: flex;
            overflow-x: auto;
            white-space: nowrap;
            padding: 10px 0;
            border-bottom: 1px solid #ddd;
        }
        .category-container::-webkit-scrollbar {
            display: none;
        }
        .category-item {
            flex: 0 0 auto;
            text-align: center;
            padding: 10px;
            cursor: pointer;
            min-width: 100px;
            color: #555;
            font-size: 14px;
        }
        .category-item.active {
            color: black;
            font-weight: bold;
            border-bottom: 2px solid black;
        }
        .category-item i {
            display: block;
            font-size: 24px;
            margin-bottom: 5px;
        }
        .toggle-switch {
            display: flex;
            align-items: center;
            gap: 5px;
        }
        .toggle-switch label {
            font-size: 14px;
            cursor: pointer;
        }
		
        .modal-content {
            border-radius: 15px;
        }
        .filter-header {
            font-size: 18px;
            font-weight: bold;
        }
        .filter-option {
            display: flex;
            justify-content: space-between;
            padding: 10px 0;
            border-bottom: 1px solid #ddd;
        }
        .filter-buttons {
            display: flex;
            justify-content: space-between;
            padding: 15px;
            border-top: 1px solid #ddd;
        }
        .range-slider {
            width: 100%;
            display: flex;
            align-items: center;
        }
        .range-slider input {
            flex: 1;
        }
        .counter {
            display: flex;
            align-items: center;
        }
        .counter button {
            width: 30px;
            height: 30px;
            border: 1px solid #ccc;
            background: #fff;
            font-size: 18px;
            line-height: 1;
        }
        .counter input {
            width: 50px;
            text-align: center;
            border: none;
        }
		.property-card a{
			text-decoration:none;
		}
		
		
		.navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 10px 20px;
            background-color: white;
        }
		.logo img {
            height: 40px;
        }
        .menu {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: #1e1e5a;
            color: white;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            z-index: 1000;
        }
        .menu a {
            color: white;
            text-decoration: none;
            font-size: 18px;
            margin: 10px 0;
            display: block;
        }
        .menu-icons {
            display: flex;
            gap: 15px;
            position: absolute;
            bottom: 20px;
        }
        .menu-icons img {
            width: 24px;
        }
		.burger {
            display: block;
            cursor: pointer;
            z-index: 1100;
        }
        .burger div {
            width: 25px;
            height: 3px;
            background-color: black;
            margin: 5px;
        }
        .close {
            position: absolute;
            top: 20px;
            right: 20px;
            font-size: 30px;
            cursor: pointer;
        }
		.navbar1{ display:none;}
		@media (min-width: 768px) {
            .menu {
                display: flex !important;
                position: static;
                flex-direction: row;
                background: none;
                color: black;
            }
            .burger {
                display: none;
            }
			.navbar .logo {
                display: none;
			}
			 
            .close {
                display: none;
            }
			.navbar1 {
				display: flex;
				justify-content: space-between;
				align-items: center;
				padding: 15px 20px;
				background-color: white;
			}
			.navbar{ display:none;}
			
        }