.cc-nav-list{
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 30px;
}
.cc-nav-list a{
	color: #fff;
	text-transform: uppercase;
}
.nav-links {
    list-style: none;
    position: fixed;
    top: 0;
    left: -100%;
    width: 250px;
    height: 100%;
    background-color: #000;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: flex-start;
    transition: left 0.3s ease;
    z-index: 5;
    padding-top: 70px; /* Align with navbar */
}
.nav-links.active {
    left: 0;
}
.nav-links a {
    color: var(--light-color);
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 4px;
    transition: background-color 0.3s;
    display: inline-block;
}
.nav-links a:hover {
    color: var(--main-color);
}
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 15; /* Ensure toggle is on top */
}
.menu-toggle .bar {
    height: 3px;
    width: 25px;
    background-color: white;
    margin: 4px 0;
    transition: all 0.3s ease;
}
.menu-toggle.open .bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.menu-toggle.open .bar:nth-child(2) {
    opacity: 0;
}
.menu-toggle.open .bar:nth-child(3) {
    transform: rotate(-45deg) translate(10px, -10px);
}
@media (max-width: 991px) {
	.cc-nav-list{
		display: none;
	}
    .nav-links {
        display: flex;
    }

    .menu-toggle {
        display: flex;
    }
}