* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Navigation container */
nav {
    background-color: #333;
    padding: 1rem 2rem;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

/* Navigation list */
.nav-list {
    text-decoration: none;
    list-style: none;
    display: flex;
    justify-content: flex-end;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* Navigation items */
.nav-item {
    position: relative;
}

/* Navigation links */
.nav-item a {
    color: white;
    text-decoration: none;
    font-family: Arial, sans-serif;
    font-size: 1.1rem;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    transition: all 0.3s ease;
    display: block;
}

/* Hover effect */
.nav-item a:hover {
    background-color: #555;
    color: #fff;
}

/* Active state */
.nav-item a.active {
    background-color: #444;
}

/* Responsive Design */
@media (max-width: 600px) {
    .nav-list {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    nav {
        padding: 1rem;
    }
    
    .nav-item {
        width: 100%;
        text-align: center;
    }
}



body {
      background-color:#00ABE1 ; 

}
