.animated-text-widget {
    font-family: "Outfit", Sans-serif;
    font-size: 64px;
    font-weight: 600;
    line-height: 76px;
    color: #062A26;
}

.animated-text-widget .prefix {
    color: #062A26; /* Color for static text */
    display: block; /* Force text to appear on its own line */
    margin-bottom: 16px; /* Space between static text and rotating text */
}

.animated-text-widget .rotating-words {
    color: #015A67; /* Color for dynamic text */
    border-right: 2px solid #015A67; /* Blinking caret */
    animation: blink-caret 0.7s step-end infinite;
    line-height: 76px;
    height: 76px; /* Fix the height to avoid layout shifts */
    display: inline-block;
    overflow: hidden; /* Prevent layout issues */
}

/* Blinking caret animation */
@keyframes blink-caret {
    50% {
        border-color: transparent;
    }
}

.word {
    display: none; /* Hidden words used for reference */
}
