/* GLOBAL */
*{
margin:0;
padding:0;
box-sizing:border-box;
}

body{
font-family:'Poppins',sans-serif;
background:#F8FAFC;
color:#1e293b;
}

.container{
width:100%;
max-width:1200px;
margin:0 auto;
padding:0 20px;
}

a{
text-decoration:none;
color:inherit;
}


.navbar{
width:100%;
background:#073185;
box-shadow:0 5px 5px rgba(0,0,0,0.15);
}

.nav-wrapper{
display:flex;
align-items:center;
justify-content:space-between;
height:55px;
}

/* LOGO */

.logo a{
display:flex;
align-items:center;
gap:12px;
color:#fff;
font-weight:600;
font-size:20px;
}

.logo img{
height:34px;
}

.divider{
width:1px;
height:24px;
background:rgba(255,255,255,0.4);
}

.brand{
letter-spacing:0.5px;
}

/* MENU DESKTOP */

.nav-menu ul{
display:flex;
list-style:none;
gap:30px;
align-items:center;
}

.nav-menu a{
color:#fff;
font-weight:500;
}

/* HAMBURGER */

.hamburger{
width:25px;
height:17px;
display:none;
flex-direction:column;
justify-content:space-between;
cursor:pointer;
}

.hamburger span{
height:3px;
background:#fff;
border-radius:3px;
transition:0.3s;
}

/* MOBILE */

@media(max-width:768px){

.hamburger{
display:flex;
}

.nav-menu{
position:fixed;
top:50px;
left:0;
width:100%;
background: rgba(7, 49, 133, 0.9);
max-height:0;
overflow:hidden;
transition:max-height .35s ease;
}

.nav-menu ul{
flex-direction:column;
padding:25px 0;
gap:20px;
}

.nav-menu.active{
max-height:200px;
}

/* ANIMATION */

.hamburger.active span:nth-child(1){
transform:rotate(45deg) translate(5px,5px);
}

.hamburger.active span:nth-child(2){
opacity:0;
}

.hamburger.active span:nth-child(3){
transform:rotate(-45deg) translate(5px,-5px);
}

}

/* HERO */

.hero{
min-height:84.5vh;
background:#eef2f9;
padding:50px 0 40px;
display:flex;
align-items:center;
}

.hero-content{
text-align:center;
max-width:720px;
margin:auto;
}

/* TITLE */

.hero-title{
font-size:26px;
font-weight:700;
line-height:1.4;
color:#0f172a;
margin-bottom:18px;
}

/* STATS */

.hero-stats{
display:flex;
justify-content:center;
gap:30px;
margin-bottom:25px;
}

.stat span{
display:block;
font-size:24px;
font-weight:700;
color:#073185;
}

.stat p{
font-size:12px;
color:#64748b;
margin-top:3px;
}

/* SEARCH BOX */

.search-box{
background:#fff;
padding:30px 22px 30px 22px;
border-radius:12px;
box-shadow:0 10px 25px rgba(0,0,0,0.08);
}

.search-form{
display:flex;
flex-direction:column;
gap:10px;
}

.field input{
width:100%;
padding:14px;
border:1px solid #e5e7eb;
border-radius:8px;
font-size:14px;
font-family:'Poppins',sans-serif;
outline:none;
}

.field input:focus{
border-color:#073185;
}

/* BUTTON */

.search-btn{
padding:14px;
background:#073185;
color:#fff;
border:none;
border-radius:8px;
font-weight:600;
cursor:pointer;
}

/* DESKTOP */

@media(min-width:768px){

.hero-title{
font-size:26px;
}

.hero-stats{
gap:50px;
}

.search-form{
flex-direction:row;
}

.field{
flex:1;
}

.search-btn{
width:150px;
}

}
.field{
position:relative;
}

.field i{
position:absolute;
left:14px;
top:50%;
transform:translateY(-50%);
color:#94a3b8;
font-size:16px;
}

.field input{
width:100%;
padding:14px 14px 14px 40px;
border:1px solid #e5e7eb;
border-radius:8px;
font-size:14px;
}
button,
input,
textarea,
select{
font-family:'Poppins',sans-serif;
}

/* JOB SECTION */

.jobs{
padding:60px 0;
background:#ffffff;
}

.jobs-title{
font-size:22px;
font-weight:600;
margin-bottom:30px;
text-align:center;
color:#0f172a;
}

/* GRID */

.jobs-grid{
display:grid;
grid-template-columns:1fr;
gap:16px;
}

/* CARD */

.job-card{
background:#fff;
border:1px solid #e5e7eb;
border-radius:10px;
padding:18px;
transition:all .2s ease;
}

.job-card:hover{
border-color:#cbd5f5;
box-shadow:0 10px 25px rgba(0,0,0,0.05);
}

/* TEXT */

.job-title{
font-size:16px;
font-weight:600;
margin-bottom:6px;
color:#0f172a;
}

.job-company{
font-size:14px;
color:#475569;
margin-bottom:8px;
}

.job-meta{
font-size:13px;
color:#64748b;
display:flex;
align-items:center;
gap:5px;
}

/* MORE LINK */

.jobs-more{
text-align:center;
margin-top:35px;
}

.jobs-more a{
color:#073185;
font-weight:600;
font-size:14px;
}

/* TABLET */

@media(min-width:768px){

.jobs-grid{
grid-template-columns:repeat(2,1fr);
}

}

/* DESKTOP */

@media(min-width:1024px){

.jobs-grid{
grid-template-columns:repeat(4,1fr);
}

}
.job-card{
display:block;
background:#fff;
border:1px solid #e5e7eb;
border-radius:10px;
padding:18px;
transition:all .2s ease;
color:inherit;
}

.job-card:hover{
border-color:#cbd5f5;
box-shadow:0 10px 25px rgba(0,0,0,0.05);
transform:translateY(-2px);
}
.job-row{
display:flex;
justify-content:space-between;
align-items:center;
gap:12px;
margin-bottom:10px;
}

.job-logo{
width:42px;
height:42px;
border-radius:8px;
background:#f1f5f9;
overflow:hidden;
flex-shrink:0;
}

.job-logo img{
width:100%;
height:100%;
object-fit:contain;
}

.job-info{
flex:1;
}

.jumbotron{
padding:40px 0;
background:#073185;
border-top:1px solid #e5e7eb;
border-bottom:1px solid #e5e7eb;
}

.jumbo-row{
display:flex;
align-items:center;
gap:20px;
}

.jumbo-logo img{
height:120px;
}

.jumbo-title{
font-size:22px;
font-weight:600;
color:#ffffff;
line-height:1.4;
}

/* FOOTER */

.footer{
background:#0f172a;
color:#cbd5e1;
padding:50px 0 20px;
}

/* BRAND */

.footer-brand{
text-align:center;
margin-bottom:30px;
}

.footer-brand img{
height:35px;
margin-bottom:10px;
}

.footer-brand p{
font-size:14px;
color:#94a3b8;
}

/* LINK WRAPPER */

.footer-links-wrapper{
display:grid;
grid-template-columns:1fr 1fr;
gap:40px;
max-width:600px;
margin:auto;
}

/* TITLE */

.footer-links h4{
font-size:15px;
color:#fff;
margin-bottom:12px;
}

/* LIST */

.footer-links ul{
list-style:none;
padding:0;
margin:0;
}

.footer-links li{
margin-bottom:8px;
}

.footer-links a{
font-size:14px;
color:#94a3b8;
text-decoration:none;
}

.footer-links a:hover{
color:#fff;
}

/* COPYRIGHT */

.footer-bottom{
border-top:1px solid #1e293b;
margin-top:35px;
padding-top:15px;
text-align:center;
font-size:13px;
color:#64748b;
}

/* DESKTOP */

@media(min-width:768px){

.footer-brand{
text-align:left;
}

.footer-links-wrapper{
grid-template-columns:1fr 1fr;
max-width:800px;
margin:30px 0 0 0;
}

}

/* MOBILE */

@media(max-width:768px){

.footer-links-wrapper{
grid-template-columns:1fr 1fr;
gap:25px;
}

.footer-links{
text-align:left;
}

}

/* REGISTER */

.register-section{
padding:80px 0;
background:#f1f5f9;
min-height:80vh;
}

.register-box{
width:100%;
max-width:800px;
margin:40px auto;
background:#fff;
padding:40px;
border-radius:14px;
box-shadow:0 10px 25px rgba(0,0,0,0.08);
}

.register-box h2{
text-align:center;
margin-bottom:25px;
font-size:22px;
font-weight:600;
}

/* TOGGLE */

.register-toggle{
display:flex;
margin-bottom:25px;
border:1px solid #e5e7eb;
border-radius:6px;
overflow:hidden;
}

.toggle-btn{
flex:1;
padding:10px;
border:none;
background:#f1f5f9;
cursor:pointer;
font-family:'Poppins',sans-serif;
font-size:14px;
}

.toggle-btn.active{
background:#073185;
color:#fff;
}

/* FORM */

.form-group{
margin-bottom:15px;
}

.form-group label{
display:block;
font-size:13px;
margin-bottom:6px;
color:#334155;
}

.form-group input{
width:100%;
padding:12px;
border:1px solid #e5e7eb;
border-radius:6px;
font-family:'Poppins',sans-serif;
font-size:14px;
}

.form-group input:focus{
outline:none;
border-color:#073185;
}

/* BUTTON */

.register-btn{
width:100%;
padding:13px;
border:none;
background:#073185;
color:#fff;
border-radius:6px;
cursor:pointer;
font-family:'Poppins',sans-serif;
font-size:14px;
font-weight:500;
}

.register-btn:hover{
background:#052a72;
}

/* MOBILE */

@media(max-width:600px){

.register-box{
padding:25px;
}

}
/* ALERT NOTIFICATION */

.alert{
padding:12px 14px;
border-radius:6px;
margin-bottom:20px;
font-size:14px;
font-family:'Poppins',sans-serif;
}

.alert.error{
background:#fee2e2;
color:#991b1b;
border:1px solid #fecaca;
}

.alert.success{
background:#dcfce7;
color:#166534;
border:1px solid #bbf7d0;
}
/* CAPTCHA CENTER */

.g-recaptcha{
transform:scale(0.92);
transform-origin:0 0;
}

/* MOBILE */

@media(max-width:480px){

.register-box{
padding:25px;
}

.g-recaptcha{
transform:scale(0.85);
}

}