.hero-section{
    position: relative;
    background:
        linear-gradient(rgba(10,35,66,0.65), rgba(0,74,225,0.65)),
        url('{{ asset("assets/img/hero/360_F_219973381_ADkrzGHo1b8vDWn96nJWUVdmjHEBe1if.jpg") }}');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 130px 0;
    color: #fff;
}

.hero-section h1{
    font-size:55px;
    font-weight:700;
    line-height:1.2;
}

.hero-section h1 span{
    color:#00d084;
}

.hero-section p{
    font-size:18px;
    color:#e8e8e8;
    margin-top:20px;
}

.hero-btn{
    margin-top:35px;
}

.hero-btn .btn{
    padding:14px 35px;
    border-radius:50px;
    font-weight:600;
    margin-right:15px;
}

.btn-job{
    background:#00d084;
    color:#fff;
}

.btn-job:hover{
    background:#00b46e;
    color:#fff;
}

.btn-post{
    background:#fff;
    color:#0A2342;
}

.btn-post:hover{
    background:#f4f4f4;
}

.search-card{
    margin-top:55px;
    background:#fff;
    color: #000;
    border-radius:15px;
    box-shadow:0 15px 40px rgba(0,0,0,.15);
    padding:25px;
}

.search-card .form-control,
.search-card .form-select{
    height:58px;
    border-radius:10px;
}

.search-btn{
    width:100%;
    height:58px;
    border:none;
    border-radius:10px;
    background:#0A2342;
    color:#fff;
    font-weight:600;
}

.search-btn:hover{
    background:#00d084;
}

.stats-section{
    margin-top:-60px;
    position:relative;
    z-index:9;
}

.stat-card{
    background:#fff;
    border-radius:15px;
    padding:35px;
    text-align:center;
    box-shadow:0 10px 35px rgba(0,0,0,.08);
    transition:.3s;
}

.stat-card:hover{
    transform:translateY(-8px);
}

.stat-card i{
    font-size:40px;
    color:#00d084;
    margin-bottom:20px;
}

.stat-card h2{
    font-size:38px;
    color:#0A2342;
    font-weight:700;
}

.stat-card p{
    margin:0;
    color:#666;
}

@media(max-width:768px){

.hero-section{
padding:90px 0;
}

.hero-section h1{
font-size:36px;
}

.stats-section{
margin-top:40px;
}

.stat-card{
margin-bottom:25px;
}

}

.industry-slider{
    overflow:hidden;
    width:100%;
    position:relative;
}

.industry-track{
    display:flex;
    width:max-content;
    animation:scrollIndustry 35s linear infinite;
}

.industry-slider:hover .industry-track{
    animation-play-state:paused;
}

.industry-card{

    width:220px;

    margin:15px;

    background:#fff;

    border-radius:15px;

    padding:35px 20px;

    text-align:center;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

    transition:.3s;
}

.industry-card:hover{

    transform:translateY(-10px);

    background:#0A2342;

    color:#fff;
}

.industry-card i{

    font-size:42px;

    color:#00c389;

    margin-bottom:20px;
}

.industry-card:hover i{

    color:#fff;
}

@keyframes scrollIndustry{

    from{
        transform:translateX(0);
    }

    to{
        transform:translateX(-50%);
    }

}
.feature-card{
background:#fff;
padding:35px 25px;
text-align:center;
border-radius:12px;
box-shadow:0 5px 20px rgba(0,0,0,.08);
transition:.3s;
height:100%;
}

.feature-card:hover{
background:#0A2342;
color:#fff;
transform:translateY(-8px);
}

.feature-card i{
font-size:42px;
color:#00b894;
margin-bottom:20px;
}

.feature-card:hover i{
color:#fff;
}

.step-card{
padding:35px;
background:#fff;
border-radius:12px;
box-shadow:0 5px 20px rgba(0,0,0,.08);
position:relative;
height:100%;
}

.step-number{
position:absolute;
top:-18px;
left:50%;
transform:translateX(-50%);
background:#00b894;
color:#fff;
width:45px;
height:45px;
border-radius:50%;
line-height:45px;
font-weight:bold;
}

.step-card i{
font-size:45px;
color:#0A2342;
margin:20px 0;
}

.step-card:hover{
transform:translateY(-8px);
transition:.3s;
}

/*====================================
    JOBGAIN CTA
=====================================*/

.jobgain-cta{
/*    background: linear-gradient(135deg,#0A2342,#114B8C);*/
    background:linear-gradient(rgba(10,35,66,0.65), rgba(0,74,225,0.65));
    padding:80px 0;
    color:#fff;
    border-radius:25px;
    margin:80px 0;
}

.cta-subtitle{
    display:inline-block;
    background:rgba(255,255,255,.15);
    padding:8px 18px;
    border-radius:30px;
    font-size:14px;
    font-weight:600;
    letter-spacing:1px;
}

.cta-title{
    font-size:42px;
    font-weight:700;
    line-height:1.3;
}

.cta-title span{
    color:#00d084;
}

.cta-text{
    font-size:18px;
    color:#f1f1f1;
    line-height:30px;
}

.cta-buttons .btn{
    width:100%;
    padding:14px;
    border-radius:50px;
    font-size:16px;
    font-weight:600;
    transition:.3s;
}

.btn-jobseeker{
    background:#00d084;
    color:#fff;
}

.btn-jobseeker:hover{
    background:#00b46e;
    color:#fff;
}

.btn-employer{
    background:#ffffff;
    color:#0A2342;
}

.btn-employer:hover{
    background:#f3f3f3;
}

.btn-browse{
    background:transparent;
    color:#fff;
    border:2px solid #fff;
}

.btn-browse:hover{
    background:#fff;
    color:#0A2342;
}

.btn-post{
    background:#ffc107;
    color:#000;
}

.btn-post:hover{
    background:#ffb300;
    color:#000;
}

.cta-buttons i{
    margin-right:8px;
}

@media(max-width:768px){

.jobgain-cta{
    padding:60px 20px;
}

.cta-title{
    font-size:30px;
}

.cta-text{
    font-size:16px;
}

}
