<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* ===== SEAMLESS MARQUEE FIX ===== */
.services-hero + .marquee-container {
    margin-top: -20px;
}

.marquee-container {
    background: #2c3e50;
    margin: 40px 0;
    overflow: hidden;
    width: 100%;
}

.marquee-content {
    display: inline-block;
    white-space: nowrap;
    padding-left: 100%;
    animation: scroll 30s linear infinite;
}

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

.marquee-item {
    color: white;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1.3rem;
    padding: 0 30px;
    position: relative;
    display: inline-block;
}

.marquee-item:not(:last-child):after {
    content: "â€¢";
    position: absolute;
    right: -5px;
    color: #e74c3c;
}

/* Remove these problematic rules: */
/* html, body {
    overflow-x: hidden;
} */

/* Mobile responsiveness */
@media (max-width: 768px) {
    .marquee-item {
        font-size: 1.1rem;
        padding: 0 20px;
    }
}

.specialization-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    padding: 0 20px;
}

.independence-badge {
    display: inline-block;
    background: #2c3e50;
    color: white;
    padding: 8px 20px;
    border-radius: 30px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}</pre></body></html>