header{
    position:sticky;
    top:0;
    z-index:9999;
    width:100%;
}


.top-bar{
    background:#f28c1b;
    color:#fff;
    font-size:14px;
    padding:8px 0;
    position: relative;
    z-index: 9999;
}

.top-bar-wrapper{
    display:flex;
    justify-content:space-between;
    align-items:center;
}

/* MAIN HEADER */
.main-header{
    background:#fff;
    border-bottom:1px solid #eee;
    position: relative;
    z-index: 9999;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.nav-wrapper{
    display:flex;
    justify-content:space-between;
    align-items:center;
    position:relative;
}

/* LOGO */
.logo img{
    height:80px;
}

/* NAV */
.nav-links{
    display:flex;
    list-style:none;
    top: 110px;
}

.nav-links li{
    margin-left:25px;
}

.nav-links a{
    text-decoration:none;
    font-size: 20px;
    color:#333;
    font-weight:500;
    transition:0.3s;
}

.nav-links a:hover{
    color:#f28c1b;
}

/* HAMBURGER */
.menu-toggle{
    display:none;
    font-size:26px;
    cursor:pointer;
}

/* MOBILE VIEW */
@media(max-width:992px){

    .menu-toggle{
        display:block;
    }

    .nav-links{
        position:fixed;
        top:148px;
        right:0;
        width:260px;
        height: auto;
        background:#fff;
        flex-direction:column;
        align-items:flex-start;
        padding:20px;
        box-shadow:0 5px 20px rgba(0,0,0,0.1);
        z-index: 3000;
        opacity:0;
        visibility:hidden;
        transform:translateY(-10px);
        transition:0.3s ease;
    }

    /* ACTIVE CLASS (TOGGLE) */
    .nav-links.active{
        opacity:1;
        visibility:visible;
        transform:translateY(0);
    }

    .nav-links li{
        margin:10px 0;
    }
}

/* SMALL DEVICES */
@media(max-width:600px){
    .top-bar-wrapper{
        flex-direction:column;
        text-align:center;
        gap:5px;
    }

    .logo img{
        height:50px;
    }
}