/* =================================
   PROJECT CARD
================================= */

.project-card {
    position: relative;
    height: 500px;
    overflow: hidden;
    padding: 0;
    transition: all 0.4s ease;
}

.project-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.project-card:hover img {
    transform: scale(1.1);
}