
/* Language Dropdown Styles */
.language-dropdown {
    position: relative;
    display: inline-block;
}

.language-dropdown-content {
    display: none;
    position: absolute;
    right: 0;
    top: 100%;
    margin-top: 0.5rem;
    background-color: #1C1C22;
    min-width: 180px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.4);
    border-radius: 0.5rem;
    z-index: 100;
    overflow: hidden;
}

.language-dropdown-content.show {
    display: block;
}

.language-dropdown-content a {
    color: #E5E7EB;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    transition: background-color 0.2s ease;
}

.language-dropdown-content a:hover {
    background-color: #4F46E5;
    color: white;
}

/* Active Navigation Link Indicator */
.nav-link.active {
    color: #E5E7EB !important;
}

.nav-link.active::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 100%;
    background-color: #4F46E5;
    border-radius: 2px;
}

.nav-link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 0;
    background-color: #4F46E5;
    border-radius: 2px;
    transition: height 0.3s ease;
}

.nav-link:hover::before {
    height: 100%;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #0A0A0F;
}

::-webkit-scrollbar-thumb {
    background: #4F46E5;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #6366F1;
}