/*
=========================================================
ITGovtJobs Header Module
Version : 1.0
Production Ready
=========================================================
*/

:root{

--it-primary:#2563eb;
--it-primary-dark:#1d4ed8;
--it-dark:#0f172a;
--it-text:#1e293b;
--it-light:#ffffff;
--it-border:#e5e7eb;
--it-shadow:0 12px 35px rgba(15,23,42,.08);
--it-radius:14px;
--it-transition:.30s ease;

}

/*=========================================================
RESET
=========================================================*/

#itgj-header *{

margin:0;

padding:0;

box-sizing:border-box;

}

#itgj-header{

position:sticky;

top:0;

left:0;

width:100%;
display:block !important;
overflow:visible !important;

z-index:9999;

font-family:Inter,Segoe UI,Roboto,sans-serif;

background:rgba(255,255,255,.94);

backdrop-filter:blur(16px);

-webkit-backdrop-filter:blur(16px);

box-shadow:var(--it-shadow);

transition:all .35s ease;

}

.itgj-container{
    width:100%;
    /*max-width:1280px;8*/
    margin:0 auto;
    padding:0 32px;
    box-sizing:border-box;
}
/*=========================================================
TOP BAR
=========================================================*/

.itgj-header-top{
    width:100%;
    display:block;

    background:linear-gradient(
        90deg,
        #2563eb,
        #1d4ed8
    );

    color:#fff;
    font-size:13px;
    font-weight:500;
}

.itgj-header-top .itgj-container{

display:flex;

justify-content:space-between;

align-items:center;

height:36px;

}

.itgj-top-left{

display:flex;

align-items:center;

gap:10px;

}

.itgj-live-dot{

width:8px;

height:8px;

background:#22c55e;

border-radius:50%;

animation:itPulse 2s infinite;

}

@keyframes itPulse{

0%{

transform:scale(1);

opacity:1;

}

50%{

transform:scale(1.4);

opacity:.5;

}

100%{

transform:scale(1);

opacity:1;

}

}

.itgj-top-right{

display:flex;

align-items:center;

gap:14px;

}

.itgj-top-right a{

color:#fff;

text-decoration:none;

transition:.25s;

}

.itgj-top-right a:hover{

opacity:.8;

}

/*=========================================================
MAIN NAVBAR
=========================================================*/

.itgj-navbar{
    width:100%;
    display:block;

    padding:0;
    margin-bottom:18px;

    background:#fff;

    transition:.35s;
}

.itgj-navbar .itgj-container{

    

    display:flex;

    justify-content:space-between;

    align-items:center;

    height:78px;

}

/*=========================================================
LOGO
=========================================================*/

.itgj-logo a{

display:flex;

margin-left:0px;

align-items:center;

gap:14px;

text-decoration:none;

}

.itgj-logo-icon{

width:54px;

height:54px;

display:flex;

justify-content:center;

align-items:center;

border-radius:16px;

font-size:22px;

font-weight:700;

color:#fff;

background:linear-gradient(
135deg,
#2563eb,
#1d4ed8
);

box-shadow:0 10px 25px rgba(37,99,235,.30);

transition:.35s;

}

.itgj-logo a:hover .itgj-logo-icon{

transform:rotate(-8deg) scale(1.06);

}

.logo-title{

display:block;

font-size:24px;

font-weight:700;

color:var(--it-dark);

line-height:1.2;

}

.logo-subtitle{

display:block;

font-size:12px;

font-weight:500;

letter-spacing:.3px;

color:#64748b;

margin-top:2px;

}
/*=========================================================
DESKTOP NAVIGATION
=========================================================*/



/*=========================================================
HEADER ACTIONS
=========================================================*/

.itgj-header-actions{

    display:flex;

align-items:center;

justify-content:flex-end;

gap:14px;

margin-left:auto;

}


/*=========================================================
ICON BUTTONS
=========================================================*/




/*=========================================================
CTA BUTTON
=========================================================*/



/*=========================================================
HAMBURGER
=========================================================*/

.itgj-mobile-toggle{

display:flex;

flex-direction:column;

width:54px;

height:54px;
gap:5px;

border:none;

background:#f8fafc;

border-radius:12px;

cursor:pointer;

padding:0px;

align-items:center;

justify-content:center;

transition:var(--it-transition);

}

.itgj-mobile-toggle:hover{

background:var(--it-primary);

}

.itgj-mobile-toggle span{

    width:22px;

    height:3px;

    display:block;

    background:#1e293b;

    border-radius:20px;

    margin:0;

}

.itgj-mobile-toggle:hover span{

background:#fff;

}
/*=========================================================
SEARCH OVERLAY
=========================================================*/

#itgj-search-overlay{

position:fixed;

top:0;

left:0;

width:100%;

height:100%;

display:flex;

justify-content:center;

align-items:flex-start;

padding-top:120px;

background:rgba(15,23,42,.65);

backdrop-filter:blur(8px);

-webkit-backdrop-filter:blur(8px);

opacity:0;

visibility:hidden;

transition:.35s;

z-index:99999;

}

#itgj-search-overlay.active{

opacity:1;

visibility:visible;

}

.itgj-search-box{

width:100%;

max-width:700px;

background:#fff;

border-radius:20px;

padding:28px;

box-shadow:0 35px 80px rgba(0,0,0,.18);

position:relative;

animation:itSearch .35s ease;

}

@keyframes itSearch{

from{

opacity:0;

transform:translateY(-25px);

}

to{

opacity:1;

transform:translateY(0);

}

}

.itgj-search-close{

position:absolute;

top:18px;

right:18px;

width:42px;

height:42px;

border:none;

border-radius:50%;

background:#f1f5f9;

cursor:pointer;

font-size:24px;

transition:.30s;

}

.itgj-search-close:hover{

background:#2563eb;

color:#fff;

}

.itgj-search-box form{

display:flex;

gap:12px;

margin-top:18px;

}

.itgj-search-box input{

flex:1;

height:56px;

padding:0 20px;

border:1px solid #dbe4ee;

border-radius:12px;

font-size:16px;

outline:none;

}

.itgj-search-box input:focus{

border-color:#2563eb;

}

.itgj-search-box button[type=submit]{

padding:0 30px;

border:none;

border-radius:12px;

background:#2563eb;

color:#fff;

cursor:pointer;

font-weight:600;

}


/*=========================================================
MOBILE DRAWER
=========================================================*/

#itgj-mobile-menu{

display: none;
opacity: 0;

position:fixed;

top:112px;

right:-320px;

width:240px;

max-width:80%;

height:auto;

min-height:220px;

max-height:320px;

overflow:hidden;

border-radius:14px;

background:#fff;

box-shadow:0 15px 40px rgba(0,0,0,.15);

transition:.35s;

z-index:999999;

overflow-y:auto;

}

#itgj-mobile-menu.active{

display:block;
opacity:1;
right:45px;

}

.itgj-mobile-header{

display:flex;

justify-content:space-between;

align-items:center;

padding:16px 20px;

border-bottom:1px solid #e5e7eb;

}

.itgj-mobile-logo{

font-size:24px;

font-weight:700;

color:#2563eb;

}

#itgj-mobile-close{

border:none;

background:none;

font-size:34px;

cursor:pointer;

}

.itgj-mobile-navigation{

display:flex;

flex-direction:column;

padding:20px;

}

.itgj-mobile-navigation a{

padding:16px 18px;

margin-bottom:8px;

border-radius:10px;

text-decoration:none;

color:#1e293b;

font-weight:600;

transition:.30s;

}

.itgj-mobile-navigation a:hover{

     background:#eef4ff;

    color:#2563eb;

    border-left:4px solid #2563eb;

    padding-left:12px;

    transition:.25s ease;

}
.itgj-mobile-navigation a.active{

    background:#2563eb;

    color:#ffffff;

    border-radius:8px;

}

.itgj-mobile-footer{

padding:24px;

}

.itgj-mobile-btn{

display:block;

text-align:center;

padding:15px;

border-radius:12px;

background:#2563eb;

color:#fff;

text-decoration:none;

font-weight:600;

}


/*=========================================================
RESPONSIVE
=========================================================*/

@media(max-width:1100px){


.itgj-mobile-toggle{

display:flex;

}

}

@media(max-width:768px){

.itgj-header-top{

display:none;

}

.itgj-navbar{

height:72px;

}

.itgj-logo-icon{

width:46px;

height:46px;

font-size:18px;

}

.logo-title{

font-size:20px;

}

.logo-subtitle{

display:none;

}

.itgj-container{

padding:0 16px;

}



#itgj-mobile-menu{

width:100%;

right:-100%;

}

}


/*=========================================================
SCROLL EFFECT
=========================================================*/

#itgj-header.itgj-scrolled{

box-shadow:0 18px 40px rgba(0,0,0,.12);

background:rgba(255,255,255,.98);

}


/*=========================================================
SMOOTH
=========================================================*/

html{

scroll-behavior:smooth;

}




/*==========================================
Hide Blocksy Header
==========================================*/

.ct-header{
    display: none !important;
}


