/* Project Cards */
.project-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.project-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.project-card:hover .project-image img {
    transform: scale(1.1);
}

.project-image .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.project-card:hover .overlay {
    opacity: 1;
}

.project-info {
    padding: 1.5rem;
}

.project-info h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.location {
    color: var(--dark-gray);
    margin-bottom: 0.5rem;
}

.location i {
    color: var(--secondary-color);
    margin-right: 0.5rem;
}

.status {
    display: inline-block;
    padding: 0.25rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.status.ongoing {
    background: rgba(52, 152, 219, 0.1);
    color: #3498db;
}

.status.completed {
    background: rgba(46, 204, 113, 0.1);
    color: #2ecc71;
}

@media (max-width: 768px) {
    .project-image {
        height: 200px;
    }
    
    .project-info h3 {
        font-size: 1.1rem;
    }
}