.azmait-float-container {
  position: fixed;
  bottom: 60px;
  right: 30px;
  z-index: 9999;
}

.azmait-contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.azmait-contact-list li {
  margin-bottom: 10px;
}

.azmait-contact-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background-color: #333;
  color: #fff;
  border-radius: 50%;
  font-size: 24px;
  text-decoration: none;
  transition: transform 0.3s ease-in-out;
}

.azmait-contact-btn:hover {
  transform: scale(1.1);
}

/* انیمیشن پالس و چرخش/لرزش */
.pulse {
  animation: 
    pulse 2s infinite,
    wiggle 3s ease-in-out 4s infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(0, 191, 255, 0.5); }
  70% { box-shadow: 0 0 0 10px rgba(0, 191, 255, 0); }
  100% { box-shadow: 0 0 0 0 rgba(0, 191, 255, 0); }
}

@keyframes rotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes wiggle {
  0%, 100% { transform: rotate(0deg); }
  25% { transform: rotate(10deg); }
  75% { transform: rotate(-10deg); }
}