.typewriter {
    display: inline-block;
    white-space: nowrap;
    clip-path: inset(0 100% 0 0);
    animation: reveal 3s steps(40, end) forwards;
}
    
@keyframes reveal {
    to {
        clip-path: inset(0 0 0 0);
    }
}

/* Slower stagger animation delays for each card */
.col-md-3:nth-child(1) .typewriter {
    animation-delay: 0s;
}

.col-md-3:nth-child(2) .typewriter {
    animation-delay:3s;
}

.col-md-3:nth-child(3) .typewriter {
    animation-delay: 6s;
}

.col-md-3:nth-child(4) .typewriter {
    animation-delay: 9s;
}

.col-md-3:nth-child(5) .typewriter {
    animation-delay: 12s;
}

.col-md-3:nth-child(6) .typewriter {
    animation-delay: 15s;
}

.col-md-3:nth-child(7) .typewriter {
    animation-delay: 18s;
}

.col-md-3:nth-child(8) .typewriter {
    animation-delay: 21s;
}