:root {
    --primary-color: #F2662A;
    --secondary-color: #2C3E50;
    --dark-color: #1A1A1A;
    --light-color: #FAFAFA;
}

.navbar {
    padding: 0.0rem 0;
    transition: all 0.3s ease;
}

.navbar-brand img {
    height: 95px;
    padding: 5px;
}

.navbar-nav .nav-link {
    padding: 0.5rem 1rem;
    color: var(--dark-color);
    font-weight: 500;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-color);
}

/* Dropdown container */
.dropdown-menu {
    background: #ffffff;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    animation: fadeIn 0.2s ease-in-out;
}

.dropdown-toggle {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    font-weight: 600;
    color: #1f2937;
    cursor: pointer;
    transition: color 0.3s ease;
}

.dropdown-toggle::after {
    border: none !important;
    width: auto;
    height: auto;
    content: "\f054" !important;
    font-family: 'Font Awesome 5 Free', 'Font Awesome 6 Free', sans-serif;
    font-weight: bold;
    font-size: 1em;
    margin-left: 0.8rem;
    color: #F2662A;
    transform: rotate(90deg);
    transition: transform 0.25s ease;
}

.dropdown-toggle[aria-expanded="true"]::after {
    content: "\f078" !important;
}

.dropdown-toggle:hover::after,
.dropdown.show .dropdown-toggle::after {
  transform: rotate(270deg);
}

/* Submenu positioning */
.dropdown-submenu {
    position: relative;
}

.dropdown-submenu>.dropdown-menu {
    top: 0;
    right: 100%;
    margin-top: -0.125rem;
    margin-right: 0.2rem;
    display: none;
    position: absolute;
}

.dropdown-submenu:hover>.dropdown-menu {
    display: block;
}


/* Dropdown items */
.dropdown-item {
    color: #374151;
    font-weight: 500;
    padding: 0.8rem 1.4rem;
    border: none;
    position: relative;
    transition: all 0.25s ease;
}

/* Hover & focus effect */
.dropdown-item:hover,
.dropdown-item:focus {
    background: #f3f4f6;
    color: var(--primary-color);
    padding-left: 1.6rem;
}

.dropdown-item:hover::before {
    content: "";
    position: absolute;
    left: 8px;
    top: 50%;
    transform: translateY(-50%);
    height: 60%;
    width: 4px;
    border-radius: 2px;
    background: var(--primary-color);
}

/* Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}