/* =========================================
   MODULE: Visuals & Backgrounds
   ========================================= */

body {
    background-color: #020617; 
    margin: 0;
    padding: 0;
}

.bg-tech-pattern {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    pointer-events: none;
    background: 
        radial-gradient(circle at 50% -20%, rgba(249, 115, 22, 0.15) 0%, transparent 60%),
        radial-gradient(circle at 0% 100%, rgba(56, 189, 248, 0.05) 0%, transparent 50%);
}

button, a, .card-hover {
    transition: all 0.3s ease-in-out;
}

.hero-height {
    min-height: 200px;
}
@media (max-width: 768px) {
    .hero-height { min-height: 160px; }
}

/* =========================================
   MODULE: Custom Scrollbar for LMS
   ========================================= */
.custom-scrollbar::-webkit-scrollbar {
    width: 6px;
}
.custom-scrollbar::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 10px;
}
.custom-scrollbar::-webkit-scrollbar-thumb {
    background: rgba(249, 115, 22, 0.3);
    border-radius: 10px;
}
.custom-scrollbar::-webkit-scrollbar-thumb:hover {
    background: rgba(249, 115, 22, 0.6);
}