.fab-container {
  position: fixed;
  bottom: 20px;
  left: 20px;
  display: flex;
  flex-direction: column-reverse; /* Stacks WhatsApp on top of General */
  gap: 15px;
  z-index: 1000;
}

.fab {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  cursor: pointer;
  text-decoration: none;
}

.fab:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
}

/* WhatsApp Brand Color */
.fab-whatsapp {
  background-color: #25D366;
}

/* General Action Color (Change to your brand color) */
.fab-all {
  background-color: #007bff;
}

/* Icon Sizing */
.fab svg {
  width: 30px;
  height: 30px;
  fill: white;
}