/* Gradient Text Effect */
.gradient-text-scrolling {
    background: linear-gradient(
        to right,
        #27ae60,
        #2ecc71,
        #00eeff,
        #16a085,
        #27ae60
    );
    background-size: 200% auto;
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    animation: gradientScroll 8s linear infinite;
}

@keyframes gradientScroll {
    0% {
        background-position: 0% 50%;
    }
    100% {
        background-position: 200% 50%;
    }
}