.floating-button {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: #8a63d2;
  color: white;
  padding: 20px;
  border-radius: 50%;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: transform 0.5s ease-in-out;
  animation: jump 1s infinite alternate;
  text-decoration: none;
}

.floating-button:hover {
  transform: scale(1.1);
}

@keyframes jump {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-10px);
  }
}

.floating-button .message {
  display: none;
  position: absolute;
  bottom: 50%;
  right: calc(100% + 10px);
  transform: translateY(50%);
  background-color: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 12px 24px;
  border-radius: 8px;
  transition: opacity 0.3s ease-in-out;
}

.floating-button:hover .message {
  display: block;
}









.call-now-button {
  position: fixed;
  bottom: 20px;
  left: 20px;
  background: linear-gradient(to right, #4f24fb, #6619ae);
  color: #fff;
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 16px;
  text-decoration: none;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  animation: pulse 0.8s infinite alternate;
}

@keyframes pulse {
  0% {
    opacity: 0.6;
  }
  100% {
    opacity: 1;
  }
}

.fa-phone-alt {
  margin-right: 8px;
}
