.real-estate-projects {
    padding: 80px 20px;
    background: #f9f9f9;
    font-family: 'Poppins', sans-serif;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: #1a1a1a;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 30px;
}


/* Filter Buttons */

.filter-buttons {
    text-align: center;
    margin-bottom: 40px;
}

.filter-btn {
    background: #fff;
    border: 2px solid var(--primary-green);
    color: var(--primary-green);
    padding: 10px 20px;
    margin: 0 10px;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 500;
    transition: 0.3s ease;
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--primary-green);
    color: #fff;
}


/* Projects Grid */

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.project-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.project-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.project-content {
    padding: 20px;
}

.project-content h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #1a1a1a;
}

.project-content p {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 10px;
}

.project-status {
    display: inline-block;
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 10px;
}

.project-status.under-construction {
    background: #f39c12;
}

.project-status.completed {
    background: #27ae60;
}

.project-status.pending {
    background: #3498db;
}