.whatsapp-button {
    position: fixed;
    bottom: 10px;
    left: 10px;
    background-color: #25D366 ;
    color: white;
    padding: 7px 12px;
    border-radius: 50px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    font-size: 16px;
    display: flex;
    align-items: center;
    text-decoration: none !important; /* Ensure no underline */
    z-index: 1000;
    transition: all 0.3s ease;
  }
  
  .whatsapp-button:hover,
  .whatsapp-button:active {
    text-decoration: none !important;   /* Prevent underline on hover and active states */
    color: black;
  }
  
  .whatsapp-button i {
    font-size: 24px;
    margin-right: 10px;
  }
  
  /* Responsive styling */
  @media (max-width: 768px) {
    .whatsapp-button {
        bottom: 10px;
        left: 10px;
        padding: 8px 16px;
        font-size: 14px;
    }
  
    .whatsapp-button i {
        font-size: 20px;
        margin-right: 5px;
    }
  }
  
  @media (max-width: 480px) {
    .whatsapp-button {
        bottom: 10px;
        left: 10px;
        padding: 5px 10px;
        font-size: 12px;
        border-radius: 30px;
    }
  
    .whatsapp-button i {
        font-size: 18px;
        margin-right: 5px;
    }
  }