/* Global Overflow Prevention (clip prevents horizontal overflow without breaking position: sticky or scroll events) */
html, body {
    max-width: 100% !important;
    overflow-x: clip !important;
}

/* Custom background shapes & animations */
.hero-shape-bg {
    background: linear-gradient(135deg, #0B1B3D 0%, #0D224D 60%, #162B55 100%);
}

.hero-clip {
    clip-path: polygon(0 0, 100% 0, 100% 92%, 0 100%);
}

.customs-stamp {
    background: rgba(229, 166, 36, 0.12);
    border: 2px dashed #E5A624;
    transform: rotate(-8deg);
}

.glass-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
}

.glass-navy {
    background: rgba(11, 27, 61, 0.85);
    backdrop-filter: blur(12px);
}

/* Continuous Autoplay Marquee with Slow Hover Pause */
@keyframes marquee {
    0% {
        transform: translateX(0%);
    }

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

.animate-marquee {
    animation: marquee 35s linear infinite;
}

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