   .contact-fixed-icons {
       position: fixed;
       top: 80%;
       right: 20px;
       z-index: 1050;
       display: flex;
       flex-direction: column;
       /* Stack the icons vertically */
       align-items: center;
       /* Center align the icons horizontally */
       gap: 10px;
       /* Space between icons */
   }

   .contact-icon {
       width: 50px;
       /* Increased for visual balance */
       height: 50px;
       display: inline-flex;
       align-items: center;
       justify-content: center;
       border-radius: 10px;
       box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
       font-size: 25px;
       /* Icon size */
       text-decoration: none;
   }

   .icon-phone {
       background-color: #f0f0f0;
       color: #333;
   }

   .icon-whatsapp {
       background-color: #25D366;
       color: white;
   }

   /* @keyframes spin-continuous {
        0% { transform: rotate(0deg); }
        100% { transform: rotate(360deg); }
    } */

   .contact-icon i {
       animation: spin-continuous 2s linear infinite;
       display: inline-block;
   }

   .contact-icon:hover i {
       animation-play-state: paused;
   }

   @media (max-width: 576px) {
       .contact-fixed-icons {
           top: 80%;
           right: 10px;
       }
   }