.elementor-widget .tippy-tooltip .tippy-content{text-align:center;}/* Start custom CSS for html, class: .elementor-element-02a2d5b */.typewriter {
  font-size: 18px;
  font-family: 'Vazir', sans-serif;
  white-space: nowrap;
  overflow: hidden;
  border-left: 3px solid #ff0055;
  direction: rtl;
  text-align: right;
  width: 0;
  animation: typingLoop 12s steps(100, end) infinite, blink .75s step-end infinite;
}

@keyframes typingLoop {
  0% { width: 0 }
  85% { width: 100% } /* تا اینجا یعنی 10s از 12s */
  100% { width: 0 }      /* برگشت برای شروع مجدد */
}

@keyframes blink {
  50% { border-color: transparent }
}/* End custom CSS */