.floating-buttons {
    position: fixed;
    bottom: 60px;
    right: 20px;
    z-index: 1000;
  }
  
  .floating-buttons a {
    display: block;
    width: 50px;
    height: 50px;
    margin-bottom: 10px;
    border-radius: 50%;
    text-align: center;
    line-height: 50px;
    color: #fff;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.2s ease;
  }
  
  .phone-button {
    background-color: #007bff; 
    font-size: 20px;
  }
  
  .phone-button:hover {
    background-color: #0056b3; 
    transform: scale(1); 
    animation: shake 3s ease;
  }
  
  .whatsapp-button {
    background-color: #25d366; 
    font-size: 30px;
  }
  
  .whatsapp-button i {
    padding-top: 10px;
  }
  
  .whatsapp-button:hover {
    background-color: #128c7e;
  }
  