*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Montserrat',sans-serif;
    background:#ffffff;
    color:#16234a;
    overflow-x:hidden;
}

/* HEADER */

.header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:90px;
    background:#fff;
    z-index:9999;
    box-shadow:0 2px 10px rgba(0,0,0,.08);
}

.header-inner{
    height:90px;
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.logo img{
    height:50px;
}

.hamburger{
    width:35px;
    cursor:pointer;
}

.hamburger span{
    display:block;
    height:4px;
    margin:6px 0;
    background:#222;
    border-radius:50px;
}

/* MENU */

.mobile-menu{
    position:fixed;
    top:0;
    right:-100%;
    width:300px;
    height:100%;
    background:#fff;
    transition:.4s;
    z-index:9999;
}

.mobile-menu.active{
    right:0;
}

.mobile-menu ul{
    list-style:none;
    margin-top:100px;
}

.mobile-menu li{
    border-bottom:1px solid #ddd;
}

.mobile-menu a{
    display:block;
    padding:20px;
    color:#16234a;
    text-decoration:none;
    font-weight:600;
}

.close-menu{
    position:absolute;
    right:25px;
    top:20px;
    font-size:34px;
    cursor:pointer;
}

.menu-overlay{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.45);
    display:none;
}

.menu-overlay.active{
    display:block;
}

/* =====================================
   HERO
===================================== */

.hero{
    position:relative;
    width:100%;
    height:100vh;
    margin-top:90px;

    background-image:url("https://globalexpress-employment.com/assets/css/hero2.png");
    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;

    display:flex;
    align-items:center;
    justify-content:center;
}

.hero-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(
        90deg,
        rgba(8,20,65,.78) 0%,
        rgba(8,20,65,.55) 35%,
        rgba(8,20,65,.20) 70%,
        rgba(8,20,65,.10) 100%
    );
}

.hero-content{

    position:relative;
    z-index:5;

    max-width:600px;

    color:#fff;

    text-align:left;
}

.hero-logo{

    width:170px;

    margin-bottom:30px;
}

.hero h1{

    font-size:72px;

    font-weight:800;

    line-height:1;
}

.hero h2{

    font-size:52px;

    font-weight:300;

    margin-bottom:35px;
}

.hero-text{

    color:#d8ca87;

    font-size:28px;

    margin-bottom:40px;
}

.hero-btn{

    display:inline-block;

    background:#d8ca87;

    color:#16234a;

    padding:20px 50px;

    border-radius:12px;

    text-decoration:none;

    font-weight:700;
}

/* SECTION */

section{
    padding:90px 0;
}

.section-title{
    font-size:54px;
    text-align:center;
    margin-bottom:15px;
}

.section-subtitle{
    text-align:center;
    max-width:700px;
    margin:auto;
    margin-bottom:60px;
}

/* SERVICES */

.service-box{
    background:#0d1542;
    color:#fff;
    border-radius:15px;
    padding:35px;
    height:100%;
}

.service-box h3{
    color:#d8ca87;
    margin-bottom:20px;
}

/* MOBILE */

@media(max-width:991px){

.hero h1{
    font-size:42px;
}

.hero h2{
    font-size:34px;
}

.hero-text{
    font-size:22px;
}

.mobile-menu{
    width:100%;
}

.section-title{
    font-size:38px;
}
}

/* ===========================
ABOUT
=========================== */

.about{
    background:#ffffff;
}

.about-title{
    font-size:52px;
    color:#16234a;
    margin-bottom:30px;
    font-weight:700;
}

.about p{
    font-size:18px;
    line-height:1.9;
    margin-bottom:20px;
    color:#555;
}

/* ===========================
WHY CHOOSE US
=========================== */

.why-us{
    background:#081338;
    padding:100px 0;
}

.why-us .section-title{
    color:#d8ca87;
}

.why-us .section-subtitle{
    color:#ffffff;
}

.feature-box{
    background:#ffffff;
    border-radius:18px;
    padding:40px 30px;
    text-align:center;
    height:100%;
    transition:.3s;
}

.feature-box:hover{
    transform:translateY(-8px);
    box-shadow:0 15px 35px rgba(0,0,0,.15);
}

.feature-icon{
    font-size:48px;
    margin-bottom:20px;
}

.feature-box h4{
    color:#16234a;
    margin-bottom:15px;
    font-weight:700;
}

.feature-box p{
    color:#555;
    line-height:1.8;
}

/* ===========================
RECRUITMENT
=========================== */

.recruitment{
    position:relative;
    background:url("../images/recruitment.jpg") center center/cover no-repeat;
    padding:140px 0;
}

.recruitment .overlay{
    position:absolute;
    inset:0;
    background:rgba(8,20,65,.72);
}

.recruitment-content{
    position:relative;
    z-index:2;
    max-width:700px;
    margin:auto;
    text-align:center;
    color:#fff;
}

.recruitment-content h2{
    font-size:52px;
    margin-bottom:25px;
    font-weight:700;
}

.recruitment-content p{
    font-size:22px;
    line-height:1.8;
    margin-bottom:40px;
}

/* ===========================
APPLICATION
=========================== */

.application-card{
    background:#a8afc6;
    padding:50px;
    border-radius:25px;
    max-width:1000px;
    margin:auto;
}

.application-card label{
    font-weight:700;
    color:#fff;
    margin-bottom:10px;
    display:block;
}

.application-card .form-control,
.application-card .form-select{
    height:55px;
    border:none;
    border-radius:10px;
}

.application-card textarea.form-control{
    height:170px;
}

/* ===========================
BUTTON
=========================== */

.btn-main{
    border:none;
    border-radius:8px;
    transition:.3s;
}

.btn-main:hover{
    background:#ffffff;
    color:#16234a;
}

/* ===========================
RESPONSIVE
=========================== */

@media(max-width:991px){

.about-title{
    font-size:36px;
    margin-top:40px;
}

.recruitment-content h2{
    font-size:34px;
}

.recruitment-content p{
    font-size:18px;
}

.application-card{
    padding:25px;
}

}
    
/* CONTACT */

.contact{
    background:#ffffff;
    text-align:center;
}

.contact-logo{
    display:block;
    width:180px;
    max-width:180px;
    height:auto;
    margin:0 auto 30px;
}

.contact-info{
    margin-top:30px;
}

.contact-info p{
    font-size:22px;
    margin-bottom:18px;
    color:#16234a;
}

.office-hours{
    margin-top:60px;
}

.office-hours h3{
    font-size:34px;
    margin-bottom:25px;
    color:#16234a;
}

.office-hours p{
    font-size:20px;
    margin-bottom:12px;
}

/* FOOTER */

.footer{
    background:#081338;
    color:#fff;
    padding:30px 0;
}

.footer p{
    margin:0;
}

.footer a{
    color:#fff;
    text-decoration:none;
    margin-left:20px;
}

.footer a:hover{
    color:#d8ca87;
}
.contact img.contact-logo{
    display:block;
    width:180px !important;
    max-width:180px !important;
    height:auto !important;
    margin:0 auto 30px;
}
.contact-logo-wrap{
    display:flex;
    justify-content:center;
    align-items:center;
    margin-bottom:40px;
}

.contact-logo{
    width:220px;
    height:auto;
    display:block;
}
.services-section{
    padding:100px 0;
    background:#fff;
}

.service-header{
    text-align:center;
    margin-bottom:60px;
}

.service-small-title{
    color:#d32027;
    font-weight:700;
    letter-spacing:2px;
}

.service-header h2{
    font-size:70px;
    font-weight:800;
    color:#08245c;
    margin:10px 0;
}

.service-header h3{
    font-size:42px;
    font-weight:700;
    color:#08245c;
}

.service-header h3 span{
    color:#d32027;
}

.service-card{

    position:relative;

    background:#081d4e;

    color:#fff;

    padding:70px 50px;

    border-radius:30px;

    overflow:hidden;

}

.service-card::before{

    content:"";

    position:absolute;

    inset:0;

    background:url("assets/images/world-map.png") center center no-repeat;

    background-size:80%;

    opacity:.06;

}

.service-card>*{
    position:relative;
    z-index:2;
}

.service-badge{

    width:90px;
    height:90px;

    margin:auto;

    border-radius:50%;

    background:#d6b64f;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:42px;

    margin-bottom:30px;

}

.service-card h4{

    text-align:center;

    font-size:44px;

    margin-bottom:20px;

}

.service-card h4 span{

    color:#f3c44d;

}

.service-ribbon{

    background:#d32027;

    color:#fff;

    padding:14px;

    border-radius:8px;

    text-align:center;

    font-weight:700;

    margin:30px auto;

    max-width:700px;

}

.service-card>p{

    max-width:850px;

    margin:40px auto;

    text-align:center;

    font-size:21px;

    line-height:1.8;

}

.service-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

    margin-top:50px;

}

.item{

    text-align:center;

}

.icon{

    width:90px;

    height:90px;

    margin:auto;

    border-radius:50%;

    background:#123c91;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:40px;

    margin-bottom:20px;

}

.item h5{

    color:#f3c44d;

    font-size:24px;

    margin-bottom:10px;

}

.item p{

    color:#ddd;

}

@media(max-width:991px){

.service-header h2{
    font-size:48px;
}

.service-header h3{
    font-size:28px;
}

.service-grid{

    grid-template-columns:1fr;

}

.service-card{

    padding:40px 25px;

}

.service-card h4{

    font-size:28px;

}

.service-card>p{

    font-size:18px;

}

.recruitment .btn-main{
    display:inline-block !important;
    margin-top:40px !important;
    padding:18px 45px !important;
    background:#d8ca87 !important;
    color:#16234a !important;
    font-size:22px !important;
    font-weight:700 !important;
    text-decoration:none !important;
    border-radius:12px !important;
    border:none !important;
    box-shadow:0 8px 20px rgba(0,0,0,.25);
}

.recruitment .btn-main:hover{
    background:#ffffff !important;
    color:#16234a !important;
}
}
.wa-float{

position:fixed;

right:20px;

bottom:20px;

z-index:99999;

background:#25D366;

color:#fff !important;

padding:12px 18px;

border-radius:50px;

display:flex;

align-items:center;

gap:12px;

text-decoration:none !important;

font-weight:700;

box-shadow:0 8px 25px rgba(0,0,0,.25);

animation:waPulse 2s infinite;

}

.wa-float img{

width:50px;

height:50px;

display:block;

}

.wa-float span{

color:#fff;

}

@keyframes waPulse{

0%{transform:scale(1);}
50%{transform:scale(1.08);}
100%{transform:scale(1);}

}

@media(max-width:768px){

.wa-float{

padding:10px;

}

.wa-float span{

display:none;

}

}
.submit-btn{

    display:inline-block;
    
    position:center;

    padding:18px 45px;

    background:#d8ca87;

    color:#16234a;

    border:none;

    border-radius:10px;

    font-size:16px;

    font-weight:500;

    cursor:pointer;

    transition:.3s;

}

.submit-btn:hover{

    background:#16234a;

    color:#fff;

}
.application-card small{
    display:block;
    margin-top:8px;
    color:#f3f3f3;
    font-size:14px;
}

input[type=file]{
    padding:12px;
    background:#fff;
}