

.navbar {
      font-family: 'Barlow', sans-serif;
    width: 100%;
    background: #ffffff;
    border-bottom: 1px solid #e5e7eb;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1400px;
    margin: auto;
    padding: 0 0%;
    height: 75px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}



.nav-logo img {
    height: 65px;
    width: auto;
}



.nav-menu {
    display: flex;
    align-items: center;
    gap: 35px;
}

.nav-link {
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    color: #374151;
    transition: 0.3s ease;
}

.nav-link:hover {
    color: #437cf8;
}



.nav-btn {
    background: #111827;
    color: #ffffff;
    padding: 10px 18px;
    border-radius: 8px;
    font-size: 14px;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s ease;
}

.nav-btn:hover {
    background: #2563eb;
}



.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: #111827;
    border-radius: 5px;
    transition: 0.3s;
}



@media (max-width: 768px) {
    .nav-container {
    max-width: 1200px;
    padding: 0 6%;
}


    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 75px;
        left: 0;
        width: 100%;
        background: #ffffff;
        flex-direction: column;
        align-items: center;
        gap: 25px;
        padding: 30px 0;
        border-bottom: 1px solid #e5e7eb;
        display: none;
        animation: slideDown 0.3s ease;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-btn {
        width: 150px;
        text-align: center;
    }
}



@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}