/* Set up the initial state and transition for the image */
.hover-move {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Apply the upward movement and a subtle shadow effect on hover */
.hover-move:hover {
  transform: translateY(-50px);
  box-shadow: 0px 10px 15px rgba(0, 0, 0, 0.2);
}
