/* floating action button whatsapp */
.fab-whatsapp {
    position: fixed;
    bottom: 100px;
    right: 18px;
    background-color: #25d366;
    border-radius: 50%;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fab-whatsapp img {
    width: 45px;
    height: 45px;
}

.fab-whatsapp:hover {
    background-color: #128c7e;
    /* Darker green on hover */
}

.phone-float {
    position: fixed;
    bottom: 175px; /* Adjust to position above other floating buttons, like WhatsApp */
    right: 20px;
    width: 50px;
    height: 50px;
    /* Blue color for the phone button */
    border-radius: 50%;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    text-decoration: none;
  }

  .phone-float img {
    width: 30px;
    height: 30px;
  }

  .phone-float:hover {
    box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.3);
    transform: scale(1.1);
    transition: all 0.3s ease;
  }