.glow-image {
  width: auto;
  height: 50px;
  border-radius: 8px;
  /* Smooth transition for the glow effect */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 0 20px 5px rgba(255, 251, 0, 0.4);
  
}

/* Apply the glow on hover */
.glow-image:hover {
  transform: scale(1.02);
  box-shadow: 0 0 20px 5px rgba(0, 212, 255, 0.7);
}