/* Card Image Hover Effect */
.card img {
  transition: transform 0.3s ease;
}

.card:hover img {
  transform: scale(1.08);
}
