/* ===================================
   Typing Animation Styles
   =================================== */

.typing-wrapper {
    display: inline-block;
    position: relative;
    color: #066ac9; /* Primary blue color */
}

#typed-text {
    font-weight: 700;
    color: #066ac9;
}

/* Typing cursor animation */
.typing-cursor {
    display: inline-block;
    width: 3px;
    background-color: #066ac9;
    margin-left: 2px;
    animation: blink 0.7s infinite;
}

@keyframes blink {
    0%, 49% {
        opacity: 1;
    }
    50%, 100% {
        opacity: 0;
    }
}

/* Ensure text doesn't shift during typing */
.typing-wrapper {
    min-width: 280px; /* Adjust based on longest word */
    text-align: left;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .typing-wrapper {
        min-width: 200px;
    }

    #typed-text {
        font-size: 0.9em;
    }
}
