.card-hover {
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* smooth animation */
}

.card-hover:hover {
    transform: translateY(-10px);  /* lifts the card */
    box-shadow: 0 15px 25px rgba(0,0,0,0.3); /* stronger shadow on hover */
}
