html {
    scroll-behavior: smooth;
}

body {
    overflow-x: hidden;
}

.hero-gradient {
    background:
        radial-gradient(circle at 16% 18%, rgba(12, 139, 199, 0.18), transparent 34%),
        linear-gradient(135deg, #ffffff 0%, #eef7fb 48%, #f7fafc 100%);
}

.factory-hero {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.brand-marquee {
    animation: brand-scroll 28s linear infinite;
}

.brand-marquee:hover {
    animation-play-state: paused;
}

@keyframes brand-scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

img {
    max-width: 100%;
}

::selection {
    background: #0c8bc7;
    color: #ffffff;
}
