/* Remove gradient overlay from project cards */
.project-image-overlay {
    display: none !important;
}

/* Adjust project image styling */
.project-image {
    background-size: cover !important;
    background-position: center !important;
    transition: transform 0.3s ease !important;
}

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