/* Quillations Text Banner Styles */
.qtb-text-banner {
    background: transparent;
    text-align: center;
    overflow: hidden;
    position: relative;
    width: 100%;
    box-sizing: border-box;
    text-shadow: none;
    white-space: nowrap;
}

.qtb-banner-content {
    display: inline-block;
    white-space: nowrap;
}

/* Scrolling Marquee */
.qtb-banner-scrolling .qtb-banner-content {
    animation: qtb-marquee linear infinite;
    display: inline-block;
}

@keyframes qtb-marquee {
    0%   { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}

/* Pause on hover */
.qtb-banner-scrolling:hover .qtb-banner-content {
    animation-play-state: paused;
}

/* Static version */
.qtb-banner-static .qtb-banner-content {
    animation: none;
    white-space: normal;
    display: block;
}

/* Responsive */
@media (max-width: 768px) {
    .qtb-text-banner {
        padding: 10px 15px;
    }
    
    .qtb-banner-scrolling .qtb-banner-content {
        animation-duration: 18s; /* Slightly faster on mobile */
    }
}
