/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: #0f172a;
}
::-webkit-scrollbar-thumb {
    background: #334155;
    border-radius: 5px;
    border: 2px solid #0f172a;
}
::-webkit-scrollbar-thumb:hover {
    background: #10B981;
}

/* Hero Image Overlay Gradient */
.hero-overlay {
    background: linear-gradient(to bottom, rgba(15, 23, 42, 0.4), rgba(15, 23, 42, 0.95));
}

.nav-active {
    color: #34D399 !important;
    border-bottom: 2px solid #34D399;
}