/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  width: 70px;
  height: 70px;
  bottom: 100px;
  right: 30px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  text-decoration: none;
  cursor: pointer;
}

.whatsapp-float:hover {
  background-color: #20ba5a;
  transform: scale(1.1);
  box-shadow: 2px 2px 15px rgba(0, 0, 0, 0.4);
}

.whatsapp-float i {
  color: #fff;
  font-size: 40px;
}

/* Mobile responsive */
@media (max-width: 768px) {
  .whatsapp-float {
    width: 65px;
    height: 65px;
    bottom: 90px;
    right: 20px;
    font-size: 28px;
  }
  
  .whatsapp-float i {
    font-size: 36px;
  }
}

