.project-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project-card:hover {
    transform: scale(1.01);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.project-card {
    height: 350px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.project-card .card-body {
    flex-grow: 1;
    overflow: hidden;
}
.project-card img {
    max-height: 150px;
    object-fit: contain;
}