    .animated-text span {
        display: inline-block; /* Allows individual transformation */
        animation: bounce 1s infinite alternate; /* Apply animation */
    }

    .animated-text span:nth-child(1) { animation-delay: 0s; }
    .animated-text span:nth-child(2) { animation-delay: 0.1s; }
    .animated-text span:nth-child(3) { animation-delay: 0.2s; }
    /* ... and so on for each letter */




    @keyframes bounce {
        0%, 100% {
            transform: translateY(0); /* Starting and ending position */
        }
        50% {
            transform: translateY(-10px); /* Highest point of the bounce */
        }
    }