/* Industrial Scrollbar */
.custom-scrollbar::-webkit-scrollbar {
    width: 8px;
}

.custom-scrollbar::-webkit-scrollbar-track {
    background: #0f172a; /* Slate 900 */
}

.custom-scrollbar::-webkit-scrollbar-thumb {
    background: #475569; /* Slate 600 */
    border: 1px solid #0f172a;
}

.custom-scrollbar::-webkit-scrollbar-thumb:hover {
    background: #f97316; /* Brand Orange */
}

/* Base resets */
html {
    scroll-behavior: smooth;
}

/* Swiper Customization for Industrial Look */
.swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #cbd5e1;
    opacity: 0.5;
    border-radius: 0; /* Square bullets */
}

.swiper-pagination-bullet-active {
    opacity: 1;
    background: #f97316;
    transform: scale(1.2);
}

/* Utility Classes */
.clip-polygon {
    clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
}

/* Animation utilities */
@keyframes industrial-pulse {
    0%, 100% { border-color: rgba(249, 115, 22, 0.5); }
    50% { border-color: rgba(249, 115, 22, 1); }
}

.border-pulse {
    animation: industrial-pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

/* Text Selection */
::selection {
    background-color: #f97316;
    color: white;
}