header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(45deg, #afc6d6, #2487c8);
    padding-right: 60px;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    color: white;
    
   
}


.logo {
    width: 500px;
    max-width: 100%;
    height: auto;
}


nav {
    display: flex;
    gap: 20px;
    padding-right: 60px;
    
}

nav a {
    color: white;
    text-decoration: none;
    font-size: 18px;
    transition: color 0.3s;
}

nav a:hover {
    color: #ffd700;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.menu-toggle div {
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 4px 0;
    transition: background-color 0.3s;
    margin-right: 60px;
}

.menu-toggle:hover div {
    background-color: #ffd700;
}

@media (max-width: 768px) {
    .logo {
        width: 300px; /* Adjust width for phone */
    }
/*nav */

    nav {
        display: none;
        flex-direction: column;
        gap: 10px;
        position: absolute;
        top: 0px;
        right: 20px;
        background: linear-gradient(45deg, #86aec9, #2487c8);
        padding: 10px;
        border-radius: 5px;
        margin-right: 40px;
        width: 120px;
    }

    nav.active {
        display: flex;
    }

    .menu-toggle {
        display: flex;
    }

    nav a {
        font-size: 16px;
        font-weight: bold;
    }

    nav a:hover {
        background-color: #ffd700;
        color: white;
        border: solid white 1px;
    }
}
