<div class="zoom-effect">
    /* CSS to add a zoom effect on hover */
.zoom-effect:{
  transition: transform 0.6s ease; /* Smooth zoom transition */
}
.zoom-effect:hover {
  transform: scale(1.1); /* Adjust the scale value to control the zoom level */
  transition: transform 0.6s ease; /* Smooth zoom transition */
}
</div>

/*---------------------------------------------------------------------------*/
