/* ====== SHARED STYLES (used on all pages) ====== */

/* WhatsApp Floating Button */
.whatsapp_float {
  position: fixed;
  width: 50px;
  height: 50px;
  bottom: 80px;
  right: 20px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  z-index: 1000;
}

.whatsapp-icon {
  margin-top: 15px;
}

.whatsapp_float:hover {
  background-color: #1ebc59;
  text-decoration: none;
}

/* Scroll to Top Button */
#scrollTopBtn {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 99;
  display: none;
  border-radius: 5px;
  padding: 5px 10px;
  background-color: #67C4DB;
  font-size: 15px;
  border: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: opacity 0.3s, transform 0.3s;
}

#scrollTopBtn:hover {
  transform: translateY(-3px);
}
