body {

text-align: left; /* تراز متن: چپ */
	   font-family: Arial, Helvetica, sans-serif !important;
}

.floating-btn {
  width: 52px;
  height: 52px;
  background-color: #fff;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  animation: pulse 2s infinite;
  transition: transform 0.3s ease;
}

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

.floating-btn.whatsapp {
  background-color: #25D366;
}
.floating-btn.phone {
  background-color: #8183BE;
}

.tooltip-wrapper {
  position: relative;
}

.tooltip { 
  border-radius : 8px;
  position: absolute;
  right: calc(100% + 10px);
  top: 50%;
  transform: translateY(-50%);
  background:#fff;
  color: #000;
  padding: 6px 10px;
  font-size: 13px;
  white-space: nowrap;
  border-radius: 6px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.tooltip-wrapper:hover .tooltip {
  opacity: 1;
}
@media (min-width: 992px) {
  .floating-btn {
    width: 67px; 
    height: 67px;  
  }

  .tooltip {
    font-size: 20px; 
    padding: 8px 12px;
  }
}
/* Pulse animation */
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.2);
  }
  70% {
    box-shadow: 0 0 0 12px rgba(0, 0, 0, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
  }
}
.file-label {
    display: flex;
    flex-direction: row-reverse;
    height: 44px;
    width: 100%;
    cursor: pointer;
    align-items: center;
    border-radius: 6px;
    background-color: rgb(var(--kt-light));
    padding: 9px 16px;
    gap: 10px;
}
*::placeholder{    font-family: serif;}
input,textarea{    font-family: serif!important;}