* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background-color: #333;
    height: 65px;
}

.logo img {
    height: 85px; /* Adjust the height as needed */
    margin-left: 100px;
}

.nav-links {
    list-style: none;
    display: flex;
    /* margin-right: 100px; */
    text-align: center;
}

.nav-links li {
    margin: 0 15px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-size: 18px;
}

.burger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.line {
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 3px 0;
}

/* Responsive styles */
@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 60px;
        right: -100%;
        /* height: 100vh; */
        width: 150px;
        background-color: #333;
        flex-direction: column;
        justify-content: center;
        transition: right 0.3s ease-in;
        text-align: center;
        margin-top: 4px;
    }

    .nav-links.active {
        right: 0;
    }

    .burger {
        display: flex;
    }

    .nav-links li {
         margin: 15px 0;
       
        
    }

    .logo img{
        margin-left: 10px;


    }
}
