/*$Id$*/
.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
    margin-bottom: 0;
    margin-left: auto;
}

.nav-link {
    text-decoration: none;
    color: #9C9AB8;
    font-size: var(--fs-navbar-custom);
    position: relative;
    padding: 10px 0;
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #fff;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background: linear-gradient(135deg, #667eea, #764ba2);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after,
.nav-link.active::after
{
    width: 100%;
}
.dropdown-item:hover {
    background: transparent;
    color: #000;
    border-left: 3px solid #00345a;
}
.dropdown {
    position: relative;
}

.dropdown-toggle-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.dropdown-arrow {
    transition: transform 0.3s ease;
    font-size: 12px;
}

.dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu-options {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    min-width: 160px;
    border-radius: 6px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: 10px;
    padding: 5px;
}

.dropdown:hover .dropdown-menu-options {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: block;
    padding: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
    border-radius: 0px;
    border-left: 3px solid transparent;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
    margin-left: auto;
}

.hamburger span {
    width: 20px;
    height: 3px;
    background: var(--link-color);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(4px, -4px);
}

.content {
    padding: 60px 20px;
    text-align: center;
    color: white;
}

.content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.content p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .nav-link {
        color: #0a1035;
    }
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: fit-content;
        height: calc(100vh - 70px);
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding: 2rem;
        transition: left 0.3s ease;
        gap: 2rem;
        align-items: flex-start !important;
    }

    .nav-menu.active {
        left: 0;
    }

    .dropdown-menu-options {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: transparent;
        margin-top: 0;
        border: none;
        margin-left: 20px;
    }

    .dropdown-item {
        margin: 2px 0;
        background: rgba(102, 126, 234, 0.1);
    }

    .content h1 {
        font-size: 2rem;
    }

    .content p {
        font-size: 1rem;
    }

    .nav-link:hover,
    .nav-link.active {
        color: #764ba2 !important;
    }
}

.dropdown-arrow {
    width: 14px;
    height: 14px;
    background-image: url(../../images/people/down-arrow.646cfd5c873a6cecf580c57615d6ab76.svg);
    background-size: 14px;
    background-repeat: no-repeat;
}