/* RESET */
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Segoe UI',sans-serif;
}

/* CONTAINER */
.container{
    max-width:1200px;
    margin:auto;
    padding:0 20px;
}

/* HEADER */
.header{
    background:#fff;
    border-bottom:1px solid #eee;
    position:sticky;
    top:0;
    z-index:999;
}

.header .container{
    display:flex;
    justify-content:space-between;
    align-items:center;
    height:70px;
}

/* LEFT */
.header-left{
    display:flex;
    align-items:center;
    gap:20px;
}

/* RIGHT */
.header-right{
    display:flex;
    align-items:center;
    gap:12px;
}

/* LOGO */
.logo{
    display:flex;
    align-items:center;
    gap:8px;
}

.logo img{
    height:40px;
}

.brand{
    font-weight:600;
    font-size:18px;
}

/* MENU */
.menu{
    display:flex;
    align-items:center;
    gap:18px;
}

.menu a{
    text-decoration:none;
    color:#333;
    font-weight:500;
}

/* BUTTONS */
.btn-outline{
    padding:8px 14px;
    border:1px solid #00b14f;
    border-radius:20px;
    color:#00b14f;
    text-decoration:none;
}

.btn-primary{
    padding:8px 14px;
    background:#00b14f;
    color:#fff;
    border-radius:20px;
    text-decoration:none;
}

.btn-employer{
    padding:10px 16px;
    background:#00b14f;
    color:#fff;
    border-radius:20px;
    text-decoration:none;
}

/* MENU TOGGLE */
.menu-toggle{
    display:none;
    font-size:22px;
    cursor:pointer;
}

/* MOBILE MENU */
/* MOBILE FIX */
.mobile-menu{
    display:none;
}

.mobile-menu.active{
    display:block;
}

/* RESPONSIVE */
@media(max-width:768px){

    .menu{
        display:none;
    }

    .header-right{
        display:none;
    }

    .menu-toggle{
        display:block;
    }

    .mobile-menu{
        display:block;
    }
}

/* HERO */
.hero{
    background:#00b14f;
    padding:60px 20px;
    text-align:center;
    color:#fff;
}

.hero h1{
    margin-bottom:25px;
    font-size:26px;
}

/* SEARCH */
.search-wrapper{
    display:flex;
    justify-content:center;
}

.search-box{
    background:#fff;
    border-radius:50px;
    display:flex;
    align-items:center;
    width:800px;
    max-width:100%;
    overflow:hidden;
    box-shadow:0 5px 20px rgba(0,0,0,0.1);
}

.search-item{
    display:flex;
    align-items:center;
    gap:8px;
    padding:14px 18px;
    flex:1;
}

.search-item input{
    border:none;
    outline:none;
    width:100%;
}

.divider{
    width:1px;
    height:30px;
    background:#eee;
}

.search-box button{
    background:#00b14f;
    color:#fff;
    border:none;
    padding:14px 25px;
    cursor:pointer;
    border-radius:30px;
    margin-right:5px;
}

/* ================= MOBILE ================= */
@media(max-width:768px){

    /* HEADER */
    .menu{
        display:none;
    }

    .header-right{
        display:none;
    }

    .menu-toggle{
        display:block;
    }

    .header .container{
        height:60px;
    }

    .logo img{
        height:30px;
    }

    .brand{
        font-size:16px;
    }

    /* SEARCH */
    .search-box{
        flex-direction:column;
        border-radius:20px;
        padding:10px;
    }

    .search-item{
        width:100%;
        padding:10px;
    }

    .divider{
        display:none;
    }

    .search-box button{
        width:100%;
        margin-top:10px;
    }

    /* HERO */
    .hero{
        padding:40px 15px;
    }

    .hero h1{
        font-size:20px;
    }
}
/* DROPDOWN FIX */
.dropdown{
    position:relative;
}

.dropdown-menu{
    position:absolute;
    top:120%;
    left:0;
    background:#fff;
    border-radius:10px;
    box-shadow:0 10px 30px rgba(0,0,0,0.1);
    display:none;
    padding:10px;
    min-width:200px;
}

.dropdown:hover .dropdown-menu{
    display:block;
}

/* RIGHT MENU */
.right-menu{
    right:0;
    left:auto;
}

/* MEGA */
.mega{
    display:flex;
    gap:30px;
}

/* AVATAR */
.avatar{
    width:35px;
    height:35px;
    background:#00b14f;
    color:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
}