body {
    margin: 0;
    padding: 0;
    font: Arial, sans-serif;
    background-color: #EFECE3;
    position: relative;

}

.top-bar {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 14px;
}

.top-options {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-right: 50px;
}

.top-link {
    text-decoration: none;
    color: #F6F8D5;
    font-weight: 500;
    transition: color 0.3s ease;
}

.search-bar {
    display: flex;
    align-items: center;
    background-color: #f5f5f5;
    border-radius: 20px;
    padding: 8px 10px;
    width: 80px;
    margin-top: 20px;
    margin-right: -30px;
    border: none;
    outline: none;
    font-size: 16px;
}


.navbar-main-container {
    background-color: #0C2B4E;
    color: white;
    display: flex;
    flex-wrap: wrap;
    padding: 10px 20px;
    justify-content: space-between;
    align-items: center;
    padding: 12px 30px;
    position: sticky;
    top: 0;

}

.logo-container {
    display: flex;
    align-items: center;
    gap: 15px;
}

.project-name {
    font-size: 22px;
    font-weight: bold;
    cursor: pointer;
}

.main-logo {
    width: 45px;
    height: 45px;
    border-radius: 70%;
}


.navbar-links-container {
    display: flex;
    gap: 30px;
    cursor: pointer;
    flex-wrap: wrap;
}

.nav-links-text {
    text-decoration: none;
    color: #F6F8D5;
    font-weight: bold;
    font-size: 16px;
}


.search-bar {
    display: flex;
    align-items: center;
    background-color: #f5f5f5;
    border-radius: 20px;
    padding: 8px 12px;
    width: 120px;
    margin-top: 20px;
    margin-right: 50px;
    border: none;
    outline: none;
    font-size: 16px;
}

.search-bar input {
    border: none;
    background: transparent;
    outline: none;
    flex: 1;
    font-size: 16px;
}

.search-icon {
    width: 20px;
}


@media (max-width: 992px) {
    .navbar-main-container {
        padding: 10px 15px;
    }

    .navbar-links-container {
        gap: 15px;
        flex-wrap: wrap;
    }

    .project-name {
        font-size: 20px;
    }
}


@media (max-width: 768px) {

    
    .navbar-main-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    
    .navbar-links-container {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 10px;
        width: 100%;
    }

    .nav-links-text {
        padding: 4px 0;
        font-size: 15px;
    }

    
    .search-bar {
        width: 100%;
        margin: 0;
    }

    
    .top-options {
        margin-right: 0;
        width: 100%;
        justify-content: start;
        gap: 10px;
        flex-wrap: wrap;
    }
}


@media (max-width: 480px) {
    .project-name {
        font-size: 18px;
    }

    .main-logo {
        width: 36px;
        height: 36px;
    }

    .navbar-links-container {
        gap: 8px;
    }

    .nav-links-text {
        font-size: 14px;
    }
}
