.floating-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: #007bff; /* hex code to match site's color */
  color: #ffffff;
  padding: 12px 20px;
  border-radius: 50px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
  text-decoration: none;
  font-family: sans-serif;
  font-weight: bold;
  z-index: 9999;
  transition: transform 0.2s ease;
}
.floating-btn:hover {
  transform: scale(1.05);
  color: #ffffff;
}

