/* Navbar Styles */
nav {
background: rgba(0,0,0,0.8);
padding: 1rem 2rem;
box-shadow: 0 2px 10px rgba(0,0,0,0.1);
position: sticky;
top: 0;
z-index: 1000;
}

.nav-container {
max-width: 1200px;
margin: 0 auto;
display: flex;
justify-content: space-between;
align-items: center;
}

.logo {
color: white;
font-size: 1.5rem;
font-weight: bold;
text-decoration: none;
display: flex;
align-items: center;
gap: 0.5rem;
z-index: 1001;
}

.logo img {
width: 40px;
border-radius: 100px;
}

.logo span {
background: linear-gradient(135deg, orange 25%, rgb(120, 120, 244) 40%, red 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}

.nav-links {
display: flex;
gap: 2rem;
list-style: none;
align-items: center;
}

.nav-links a {
color: white;
text-decoration: none;
font-weight: 500;
transition: opacity 0.3s;
}

.nav-links .verbal {
color: orange;
}

.nav-links .physical {
color: rgb(120, 120, 244);
}

.nav-links .cyber {
color: red;
}

.nav-links a:hover {
opacity: 0.8;
}

.activeLink {
background-color: rgba(137, 146, 2, 0.3);
border-radius: 30px;
padding: 10px 20px;
}

/* Hamburger Menu */
.hamburger {
display: none;
flex-direction: column;
cursor: pointer;
gap: 4px;
z-index: 1001;
}

.hamburger span {
width: 25px;
height: 3px;
background: white;
transition: all 0.3s ease;
}

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

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

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

/* Mobile Styles */
@media (max-width: 1000px) {
.hamburger {
    display: flex;
}

.nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 70%;
    max-width: 300px;
    background: rgba(0,0,0,0.95);
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
    transition: right 0.3s ease;
    padding: 2rem;
}

.nav-links.active {
    right: 0;
}

.nav-links li {
    width: 100%;
    text-align: center;
}

.activeLink {
    width: 100%;
}

.logo span {
    display: none;
}
}

@media (max-width: 480px) {
nav {
    padding: 1rem;
}

.logo {
    font-size: 1.2rem;
}

.nav-links {
    width: 80%;
}
}