/* Floating WhatsApp Button Styles */
.float-whatsapp {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 40px;
  right: 40px;
  background-color: #25d366;
  color: #FFF;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.3);
  z-index: 100;
  transition: all 0.3s ease;
}

.float-whatsapp:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.float-whatsapp i {
  margin-top: 16px;
}

/* Media query for mobile devices */
@media screen and (max-width: 767px) {
  .float-whatsapp {
    width: 50px;
    height: 50px;
    bottom: 20px;
    right: 20px;
    font-size: 25px;
  }
  
  .float-whatsapp i {
    margin-top: 13px;
  }
}