header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:12px 25px;
    background:#fff;
    border-bottom:1px solid #e6e6e6;
    position:sticky;
    top:0;
    z-index:999;
}

/* Left */
.brand{
    display:flex;
    align-items:center;
    gap:12px;
}

.brand-logo-img{
    width: 180px;      /* Logo ki lambai */
    height: 55px;      /* Logo ki unchai */
    object-fit: contain;
    display: block;
}

.brand-text .name{
    font-size:22px;
    font-weight:700;
    color:#2e7d32;
}

.brand-text .tag{
    font-size:13px;
    color:#666;
}

/* Right */
.header-right{
    display:flex;
    align-items:center;
    gap:20px;
}

/* Menu */
.header-nav{
    display:flex;
    align-items:center;
    gap:12px;
}

.header-nav a{
    text-decoration:none;
    padding:9px 16px;
    border-radius:8px;
    background:#f4f4f4;
    color:#333;
    font-size:14px;
    font-weight:600;
    transition:.3s;
}

.header-nav a:hover{
    background:#2e7d32;
    color:#fff;
}

/* Language */
.lang-toggle{
    display:flex;
    gap:8px;
}

.lang-toggle button{
    padding:8px 14px;
    border:none;
    border-radius:8px;
    cursor:pointer;
    background:#ececec;
    font-weight:600;
}

.lang-toggle button.active{
    background:#2e7d32;
    color:#fff;
}

/* Mobile */
@media(max-width:900px){

    header{
        flex-direction:column;
        gap:15px;
    }

    .header-right{
        width:100%;
        flex-direction:column;
    }

    .header-nav{
        width:100%;
        overflow-x:auto;
        white-space:nowrap;
        padding-bottom:5px;
    }

    .header-nav::-webkit-scrollbar{
        display:none;
    }
}