.floating-icons {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .floating-icons .icon {
    width: 58px;
    height: 58px;
    background-color: #00bfa5;
    color: white;
    font-size: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s ease;
  }
  .floating-icons img {
    width: 58px;
    height: 58px;
    background-color: white;
    color: white;
    font-size: 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s ease;
  }

  .floating-icons .icon:hover {
    background-color: #008e76;
  }

  /* Optional: Specific colors per icon */
  .floating-icons .phone {
    background-color: #4caf50;
  }
  .floating-icons .whatsapp {
    background-color: #25d366;
  }
  .floating-icons .form {
    background-color: #007bff;
  }
  .floating-icons .chat {
    background-color: #ff9800;
  }