/*Hover Enlarge Transition */

.icon-container {
  display: inline-block; /* Ensures the container fits the size of the icon */
}

.icon {
   transition: transform 0.25s ease; /* Add a smooth transition effect */
}

.icon-card {
   transition: transform 0.25s ease; /* Add a smooth transition effect */
}



.icon:hover {
  transform: scale(1.10); /* Increase the size by 10% on hover */
}

.icon-card:hover {
  transform: scale(1.025); /* Increase the size by 2.5% on hover */
}


