/*==========================
    RESET & GLOBAL
==========================*/
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}
html{
    scroll-behavior:smooth;
}
body{
    font:15px/1.6 'Poppins',sans-serif;
    background:#f6f8fb;
    color:#222;
}
.container{
    width:min(1320px,95%);
    margin:auto;
}

/*==========================
        TOP MENU
==========================*/
.top-menu{
    display:flex;
    justify-content:space-between;
    align-items:center;
    flex-wrap:wrap;
    gap:15px;
    padding:10px 5%;
    background:linear-gradient(90deg,#0f172a,#1d4ed8,#0f172a);
    box-shadow:0 5px 20px rgba(0,0,0,.15);
    position:relative;
    z-index:1000;
}

.top-left,
.top-right{
    display:flex;
    align-items:center;
    gap:10px;
    flex-wrap:wrap;
}

.top-menu a{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:8px;
    padding:10px 16px;
    border-radius:30px;
    text-decoration:none;
    color:#fff;
    font-size:14px;
    font-weight:600;
    white-space:nowrap;
    transition:.35s;
}

.top-menu a i{
    font-size:15px;
}

.top-menu a:nth-child(1){background:#2563eb;}
.top-menu a:nth-child(2){background:#059669;}
.top-menu a:nth-child(3){background:#ea580c;}
.top-menu a:nth-child(4){background:#7c3aed;}

.top-right a:first-child{
    background:#dc2626;
}

.top-right a:last-child{
    background:#0284c7;
}

.top-menu a:hover{
    transform:translateY(-3px);
    box-shadow:0 10px 25px rgba(0,0,0,.25);
}

/*==========================
        HEADER
==========================*/
.main-header{
    background:#fff;
    box-shadow:0 8px 20px rgba(0,0,0,.08);
}

.header-flex{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:25px;
    padding:18px 0;
    flex-wrap:wrap;
}

.logo-box img{
    height:90px;
    transition:.3s;
}

.logo-box img:hover{
    transform:scale(1.05);
}

.company-box{
    flex:1;
    text-align:center;
}

.company-box h1{
    font-size:38px;
    font-weight:800;
    background:linear-gradient(90deg,#0f172a,#2563eb,#06b6d4);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

.company-box h3{
    margin-top:8px;
    font-size:20px;
    color:#ff6a00;
}

/*==========================
        HEADER BUTTONS
==========================*/
.header-btns{
    display:flex;
    flex-direction:column;
    gap:12px;
}

.header-btns a{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:8px;
    padding:12px 22px;
    border-radius:40px;
    text-decoration:none;
    color:#fff;
    font-weight:600;
    transition:.3s;
    box-shadow:0 8px 18px rgba(0,0,0,.15);
}

.btn-orange{
    background:linear-gradient(135deg,#ff6a00,#ff9800);
}

.btn-blue{
    background:linear-gradient(135deg,#2563eb,#06b6d4);
}

.header-btns a:hover{
    transform:translateY(-3px);
}

/*==========================
        NOTICE BAR
==========================*/
.notice-bar{
    background:#ff9800;
    color:#fff;
    padding:10px;
    font-weight:600;
}

.notice-bar marquee{
    font-size:15px;
}

/*==========================
        NAVBAR
==========================*/
.navbar{
    position:sticky;
    top:0;
    z-index:9999;
    background:#0f172a;
    box-shadow:0 5px 15px rgba(0,0,0,.15);
}

.nav-container{
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.menu-toggle{
    display:none;
    color:#fff;
    font-size:28px;
    cursor:pointer;
}

#navMenu{
    display:flex;
    list-style:none;
}

#navMenu li{
    position:relative;
}

#navMenu a{
    display:block;
    padding:18px 16px;
    color:#fff;
    text-decoration:none;
    font-weight:600;
    transition:.3s;
}

#navMenu a:hover,
#navMenu .active{
    background:#2563eb;
}

/*==========================
        DROPDOWN
==========================*/
#navMenu li ul{
    display:none;
    position:absolute;
    top:100%;
    left:0;
    min-width:220px;
    background:#fff;
    list-style:none;
    box-shadow:0 8px 20px rgba(0,0,0,.15);
}

#navMenu li:hover>ul{
    display:block;
}

#navMenu li ul a{
    color:#333;
    padding:12px 15px;
}

#navMenu li ul a:hover{
    background:#2563eb;
    color:#fff;
}

/*==========================
        MOBILE
==========================*/
@media(max-width:991px){

.top-menu,
.header-flex,
.nav-container{
    flex-direction:column;
    text-align:center;
}

.top-left,
.top-right{
    width:100%;
    justify-content:center;
}

.top-menu a{
    width:100%;
}

.company-box h1{
    font-size:28px;
}

.company-box h3{
    font-size:18px;
}

.header-btns{
    width:100%;
}

.menu-toggle{
    display:block;
}

#navMenu{
    display:none;
    flex-direction:column;
    width:100%;
    background:#0f172a;
}

#navMenu.show{
    display:flex;
}

#navMenu a{
    padding:14px;
    border-top:1px solid rgba(255,255,255,.08);
}

#navMenu li ul{
    position:static;
    width:100%;
}

}

@media(max-width:576px){

.logo-box img{
    height:70px;
}

.company-box h1{
    font-size:22px;
}

.company-box h3{
    font-size:15px;
}

.top-menu{
    padding:12px;
}

.top-menu a{
    font-size:12px;
    padding:10px;
}

}

/*==========================
        STICKY
==========================*/
.navbar.sticky{
    animation:slide .4s ease;
}

@keyframes slide{
    from{
        transform:translateY(-100%);
    }
    to{
        transform:translateY(0);
    }
}