





/* Button styling */
.call-button {
  position: fixed;
  bottom: 200px;
  right: 200px;
  background-color: #007bff;
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 15px 20px;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  z-index: 1000; /* Ensures it stays on top */
  transition: background-color 0.3s, transform 0.2s;
}

.call-button:hover {
  background-color: #0056b3;
  transform: scale(1.05);
}