/* تأثير وميض المؤشر */
.typewriter-cursor {
    display: inline-block;
    color: #f6bf3c; 
    font-weight: bold;
    animation: blinkCursor 0.7s infinite;
    margin-right: 5px;
}

@keyframes blinkCursor {
    0% { opacity: 1; }
    50% { opacity: 0; }
    100% { opacity: 1; }
}

/* لضمان ثبات النص وتوسيطه */
.advanced-slider__caption__inner__content__heading {
    display: flex;
    align-items: center;
    justify-content: center; /* اجعلها flex-start إذا كان النص يبدأ من اليمين */
    min-height: 1.5em; 
}