.rotator {
    display: flex;
    align-items: center;
    padding: 30px 40px;
    border-radius: 10px;
    box-shadow: 0 20px 25px rgba(0,0,0,0.2);
    font-family: "Poppins", sans-serif;
    font-size: 45px;
    font-weight: 600;
}

.rotator p {
    margin-right: 15px;
}

/* Container for rotating words */
.rotator-words {
    height: 50px;
    overflow: hidden;
}

.rotator-words span {
    display: block;
    height: 50px;
    line-height: 50px;
    color: #0e6ffc;
    animation: rotate 17s linear infinite;
}

/* Smooth forward scroll only */
@keyframes rotate {
    0%   { transform: translateY(0); }
    100% { transform: translateY(-300px); } /* 6 words * 50px height */
}
