#floating-call-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 99999;
}

#floating-call-btn .call-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  font-size: 14px;
  text-align: center;
  line-height: 1.5;
  color: white;
  text-decoration: none;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  animation: pulse 2s infinite ease-in-out;
  transition: 0.3s;
}

#floating-call-btn .call-icon:hover {
  transform: scale(1.1);
  background: #003166;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.08);
  }
  100% {
    transform: scale(1);
  }
}