/* Navbar Styling */
.navbar {
    background: linear-gradient(135deg, #F16915 0%, #222123 100%);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    position: sticky;
    top: 0;
    z-index: 100;
}

.navbar-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.navbar-left {
    flex: 1;
}

.navbar-title {
    color: white;
    font-size: 24px;
    font-weight: 700;
    margin: 0;
    letter-spacing: 0.5px;
}

.navbar-center {
    flex: 2;
    display: flex;
    justify-content: center;
}

.nav-menu {
    list-style: none;
    display: flex;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.nav-item {
    position: relative;
}

.dropdown-item {
    display: inline-flex !important;
    align-items: center;
}

.nav-link {
    color: white;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s ease;
    padding: 5px 10px;
    border-radius: 4px;
}

.nav-link:hover {
    background: #F16915;
    transform: translateY(-2px);
}

.nav-link.active {
    background: #F16915;
    border-bottom: 2px solid #ECE5E2;
}

.navbar-right {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.navbar-logo {
    height: 60px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
    transition: transform 0.3s ease;
}

.navbar-logo:hover {
    transform: scale(1.05);
}

/* Dropdown Styling */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropbtn {
    background-color: transparent;
    color: white;
    padding: 5px 10px;
    font-size: 15px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.dropbtn:hover {
    background: #F16915;
    transform: translateY(-2px);
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: white;
    min-width: 200px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    padding: 12px 0;
    z-index: 1;
    border-radius: 4px;
    top: 100%;
    left: 0;
    margin-top: 5px;
}

.dropdown-content a {
    color: #222123;
    padding: 12px 20px;
    text-decoration: none;
    display: block;
    transition: all 0.3s ease;
}

.dropdown-content a:hover {
    background-color: #ECE5E2;
    padding-left: 25px;
}

.dropdown-content a:first-child {
    border-radius: 4px 4px 0 0;
}

.dropdown-content a:last-child {
    border-radius: 0 0 4px 4px;
}

.dropdown-loading {
    color: #999;
    font-style: italic;
    cursor: default;
}

.dropdown-loading:hover {
    background-color: transparent;
    padding-left: 20px;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown-item {
    position: relative;
}
@media (max-width: 768px) {
    .navbar-container {
        flex-wrap: wrap;
        height: auto;
        padding: 15px 20px;
    }

    .navbar-left {
        width: 100%;
        margin-bottom: 15px;
    }

    .navbar-title {
        font-size: 20px;
    }

    .navbar-center {
        width: 100%;
        justify-content: center;
        margin-bottom: 15px;
    }

    .nav-menu {
        gap: 15px;
    }

    .nav-link {
        font-size: 13px;
        padding: 5px 8px;
    }

    .navbar-right {
        width: 100%;
        justify-content: center;
    }

    .navbar-logo {
        height: 50px;
    }
}

@media (max-width: 480px) {
    .navbar-container {
        padding: 10px 15px;
    }

    .navbar-title {
        font-size: 18px;
    }

    .nav-menu {
        flex-direction: column;
        gap: 10px;
    }

    .nav-link {
        padding: 8px;
        display: block;
        text-align: center;
    }
}
