/* *****************************************************

    ** Custom Stylesheet **

    Any custom styling you want to apply should be
    defined here.

***************************************************** */
.sec-bg4 {
  background: none !important;  /* حذف پس‌زمینه زرد */
}
.service-section.disabled,
.service-section.disabled a.btn {
  pointer-events: none;  /* غیر فعال کردن کلیک روی باکس و دکمه */
  opacity: 0.5;          /* کم‌رنگ کردن برای نمایش غیرفعال بودن */
  cursor: default;       /* نشانگر موس عادی */
}
.typing-animation {
  font-family: Tahoma, Arial, sans-serif;
  direction: rtl;
  unicode-bidi: bidi-override;
  max-width: 21ch;
  white-space: nowrap;
  overflow: hidden;
  border-left: 3px solid #f4c542;  /* نشانگر تایپ در سمت چپ متن */
  border-right: none;              /* کرسر سمت راست حذف شود */
  font-weight: 900;
  font-size: 24px;
  letter-spacing: normal;
  margin: -10px auto 0 auto;
  text-align: center;
  animation:
    typing 4s steps(20) forwards,
    blink 0.7s step-end infinite;
}

@keyframes typing {
  from { width: 0; }
  to { width: 27ch; }
}

@keyframes blink {
  50% { border-color: transparent; }
}
