/* =========================
   HEADER
========================= */
header{
    width:100%;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:20px;
    padding:10px 2%;
    background:rgba(255,255,255,.97);
    backdrop-filter:blur(8px);
    position:sticky;
    top:0;
    z-index:999;
    box-shadow:0 2px 15px rgba(0,0,0,.08);
}

/* =========================
   LOGO
========================= */
.header-logo img{
    width:clamp(70px,8vw,110px);
    height:auto;
}

/* =========================
   COMPANY TITLE
========================= */
.company-title{
    flex:1;
    display:flex;
    justify-content:center;
    text-align:center;
}

.title{
    font-size:clamp(1rem,2vw,2rem);
    font-weight:700;
    letter-spacing:2px;
    text-shadow:4px 4px 8px rgba(108,104,104,.25);
}

.saffron{
    color:#ff7b00;
}

.gray{
    color:#333333c6;
}

/* PRIVATE LIMITED */
.private-box{
    margin-top:4px;
}

.private-text{
    position:relative;
    display:inline-block;
    font-size:clamp(.45rem,1vw,.85rem);
    font-weight:600;
    letter-spacing:clamp(2px,.8vw,12px);
    color:#333333c6;
    padding:4px 0;
}

.private-text::before,
.private-text::after{
    content:"";
    position:absolute;
    left:50%;
    transform:translateX(-50%);
    width:100%;
    height:2px;
    background:#ff7b00;
}

.private-text::before{
    top:0;
}

.private-text::after{
    bottom:0;
}

/* TAGLINE */
.tagline{
    margin-top:4px;
    color:#ff7b00;
    font-size:clamp(.5rem,1vw,1rem);
    text-align:right;
}

.big{
    font-size:clamp(.7rem,1.5vw,1.5rem);
}

/* =========================
   NAVIGATION
========================= */
.right-side{
    display:flex;
    align-items:flex-end;
}

nav{
    display:flex;
    align-items:flex-end;
    gap:0;
}

nav a{
    padding:12px 18px;
    min-width:auto;
    font-size:clamp(.8rem,1vw,1rem);
    font-weight:600;
    text-decoration:none;
    color:#fff;
    background:#333333c6;
    transition:.3s;
    box-shadow:4px 4px 14px rgba(38,38,98,.35);
}

nav a:hover{
    background:#ff7b00;
}

nav a:first-child{
    border-bottom-left-radius:12px;
}

nav a:last-child{
    border-bottom-right-radius:12px;
}

/* =========================
   LOGIN BUTTON
========================= */
.dropbtn{
    padding:12px 18px;
    background:#ff7b00;
    color:#fff;
    border:none;
    cursor:pointer;
    font-size:clamp(.8rem,1vw,1rem);
    font-weight:600;
    border-bottom-right-radius:12px;
    box-shadow:4px 4px 14px rgba(38,38,98,.35);
}

/* =========================
   DROPDOWN
========================= */
.dropdown{
    position:relative;
}

.dropdown-content{
    display:none;
    position:absolute;
    top:100%;
    right:0;
    min-width:220px;
    background:#fff;
    border-radius:8px;
    overflow:hidden;
    box-shadow:0 8px 20px rgba(0,0,0,.15);
}

.dropdown-content a{
    display:block;
    padding:12px;
    color:#333;
    background:#fff;
}

.dropdown-content a:hover{
    background:#f5f5f5;
}

/* =========================
   TABLET
========================= */
@media (max-width:1024px){

    header{
        flex-wrap:wrap;
        justify-content:center;
    }

    .company-title{
        order:2;
        width:100%;
    }

    .right-side{
        order:3;
        width:100%;
        justify-content:center;
    }

    nav{
        flex-wrap:wrap;
        justify-content:center;
    }
}

/* =========================
   MOBILE
========================= */
@media (max-width:768px){

    header{
        padding:10px;
    }

    .header-logo img{
        width:65px;
    }

    .title{
        font-size:1rem;
    }

    .private-text{
        font-size:.45rem;
        letter-spacing:3px;
    }

    .tagline{
        font-size:.55rem;
    }

    nav{
        display:none;
    }

    .hamburger{
        display:flex;
        font-size:28px;
        cursor:pointer;
    }

    .mobile-nav{
        display:none;
        flex-direction:column;
        width:100%;
        margin-top:10px;
    }

    .mobile-nav.active{
        display:flex;
    }

    .mobile-nav a{
        padding:12px;
        text-decoration:none;
        background:#333333c6;
        color:#fff;
        border-bottom:1px solid rgba(255,255,255,.2);
    }

    .mobile-nav a:hover{
        background:#ff7b00;
    }
}