.navbar-brand {
    position: relative;
    z-index: 1;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    position: absolute;
    top: 0;
    width: 100%;
}

.logo-img {
    max-height: 4rem;
}

.navbar .logo img {
    height: 40px;
}


.navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='white' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
}

    .nav-links li a {
        text-decoration: none;
        font-family: Inter;
        font-weight: 500;
        color: white;
        font-size: 16px;
        transition: 0.3s;
    }

        .nav-links li a:hover {
            color: #FF6600; /* Orange hover */
        }

.navbar-expand-lg .navbar-nav {
    flex-direction: row;
    gap: 3rem;
    position: relative;
    z-index: 2;
}
/* Navbar styling */
.custom-navbar {
    background: black; /* solid black navbar */
    padding: 1rem 2rem;
}

    .custom-navbar .nav-link {
        color: white !important;
        font-weight: 500;
        margin-left: 20px;
        transition: color 0.3s ease;
    }

        .custom-navbar .nav-link:hover {
            color: #ff6600 !important; /* orange hover */
        }

    .custom-navbar .dropdown-menu {
        background-color: #111;
        border: none;
    }

    .custom-navbar .dropdown-item {
        color: white;
    }

        .custom-navbar .dropdown-item:hover {
            background-color: #ff6600;
            color: black;
        }
/* Show dropdown on hover */
.nav-item.dropdown:hover > .dropdown-menu {
    display: block;
    margin-top: 0;
}

/* Submenu positioning */
.dropdown-submenu {
    position: relative;
}

    .dropdown-submenu > .dropdown-menu {
        top: 0;
        left: 100%;
        margin-top: -1px;
    }

    /* Show submenu on hover */
    .dropdown-submenu:hover > .dropdown-menu {
        display: block;
    }

@media (min-width: 1200px) {
    .navbar-expand-lg .navbar-toggler {
        display: none;
    }
}
.navbar-collapse {
    z-index: 2;
    background-color: black;
}