/* Sticky Button Styling */
.sticky-book-btn {
  position: fixed;
  bottom: 225px;
  right: 25px;
  background-color: #14a172; /* Clinic blue color */
  color: black;
  padding: 15px 25px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  z-index: 99999;
  transition: all 0.3s ease;
}

/* Hover effect */
.sticky-book-btn:hover {
 background: rgba(178, 224, 209, 0.25);

  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0,0,0,0.25);
}

/* Mobile friendly */
@media (max-width: 600px) {
  .sticky-book-btn {
    padding: 12px 16px;
    font-size: 14px;
    bottom: 320px;
    right: 20px;
  }
}