.whatsapp-link {
   position: fixed;
   bottom: 20px;
   right: 20px;
   z-index: 1000;
 }
 
 .whatsapp-link a {
   display: inline-block;
   width: 80px; /* Increase size */
   height: 80px; /* Increase size */
   border-radius: 50%;
   background-color: #25d366;
   box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
   transition: transform 0.3s ease;
 }
 
 .whatsapp-link a:hover {
   transform: scale(1.2); /* Slightly larger hover effect */
 }
 
 .whatsapp-link img {
   width: 100%;
   height: 100%;
   border-radius: 50%;
 }
 