/* Typing Text Section Styles */
.typing-section {
    background-color: #01061c;
    padding: 1rem 0;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.typing-box {
    display: inline-block;
    padding: 1rem 2rem;
    border: 1.8px solid #00f6fe;
    border-radius: 8px;
    box-shadow:
        0 0 10px rgba(0, 246, 254, 0.2),
        inset 0 0 5px rgba(0, 246, 254, 0.1);
    background: rgba(0, 246, 254, 0.01);
    transition: all 0.3s ease;
    animation: boxGlow 3.5s ease-in-out infinite alternate;
}

@keyframes boxGlow {
    from {
        box-shadow: 0 0 10px rgba(0, 246, 254, 0.2), inset 0 0 5px rgba(0, 246, 254, 0.1);
        border-color: rgba(0, 246, 254, 0.5);
    }

    to {
        box-shadow: 0 0 25px rgba(0, 246, 254, 0.6), inset 0 0 15px rgba(0, 246, 254, 0.3);
        border-color: rgba(0, 246, 254, 1);
    }
}

#typing-text {
    font-size: clamp(1.4rem, 4vw, 2.5rem);
    font-weight: 800;
    margin: 0;
    color: var(--color-primary);
    font-family: "Source Sans Pro", Arial, Helvetica, sans-serif;
    letter-spacing: 0.5px;
}

#dynamic-word {
    color: var(--color-secondary) !important;
}

@keyframes blinkCaret {

    from,
    to {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}