/*==================================================
GET QUICK JOB
Professional Job Portal
Version 1.0
==================================================*/

/* Google Font */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

/* Reset */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:#f5f7fb;
    color:#222;
    overflow-x:hidden;
    line-height:1.6;
}

a{
    text-decoration:none;
}

ul{
    list-style:none;
}

img{
    max-width:100%;
    display:block;
}

.container{
    width:90%;
    max-width:1250px;
    margin:auto;
}

/* Buttons */

button,
.btn{

    background:#2563eb;

    color:#fff;

    border:none;

    padding:14px 30px;

    border-radius:8px;

    cursor:pointer;

    transition:.3s;

    font-weight:600;

}

button:hover,
.btn:hover{

    background:#1d4ed8;

}

/* Headings */

h1{

    font-size:58px;

    line-height:1.2;

    font-weight:700;

}

h2{

    font-size:38px;

    margin-bottom:20px;

}

h3{

    font-size:22px;

}

section{

    padding:90px 0;

}
/* HEADER */

header{

    position:fixed;

    width:100%;

    top:0;

    left:0;

    z-index:999;

    background:white;

    box-shadow:0 10px 25px rgba(0,0,0,.08);

}

header .container{

    display:flex;

    justify-content:space-between;

    align-items:center;

    height:80px;

}

.logo a{

    font-size:32px;

    color:#111827;

    font-weight:800;

}

.logo span{

    color:#2563eb;

}

nav ul{

    display:flex;

    gap:35px;

}

nav ul li a{

    color:#333;

    font-weight:500;

    transition:.3s;

}

nav ul li a:hover{

    color:#2563eb;

}

.register{

    background:#2563eb;

    color:white;

    padding:10px 22px;

    border-radius:7px;

}.hero{

    padding-top:170px;

    background:linear-gradient(135deg,#eff6ff,#ffffff);

}

.hero-content{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:70px;

    align-items:center;

}

.hero h1 span{

    color:#2563eb;

}

.hero p{

    margin:30px 0;

    font-size:18px;

    color:#555;

}

.hero-image img{

    width:100%;

}

.search-box{

    display:flex;

    gap:15px;

    flex-wrap:wrap;

    margin-top:35px;

}

.search-box input{

    flex:2;

    padding:18px;

    border-radius:8px;

    border:1px solid #ddd;

    font-size:16px;

}

.search-box select{

    flex:1;

    padding:18px;

    border-radius:8px;

    border:1px solid #ddd;

}

.search-box button{

    padding:18px 35px;

}
.stats{

    background:#2563eb;

    color:white;

}

.stats .container{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:25px;

}

.stat-card{

    text-align:center;

}

.stat-card h2{

    font-size:42px;

}

.stat-card p{

    font-size:18px;

}
.categories{

    background:white;

}

.category-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));

    gap:30px;

    margin-top:50px;

}

.category-card{

    background:#f8fafc;

    padding:35px;

    text-align:center;

    border-radius:15px;

    transition:.4s;

    cursor:pointer;

}

.category-card i{

    font-size:45px;

    color:#2563eb;

    margin-bottom:20px;

}

.category-card:hover{

    transform:translateY(-10px);

    box-shadow:0 20px 45px rgba(0,0,0,.1);

}
.featured{

    background:#eef4ff;

}

.job-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(330px,1fr));

    gap:30px;

    margin-top:40px;

}

.job-card{

    background:white;

    padding:30px;

    border-radius:15px;

    box-shadow:0 15px 40px rgba(0,0,0,.05);

    transition:.3s;

}

.job-card:hover{

    transform:translateY(-10px);

}

.job-card h3{

    margin-bottom:20px;

}

.job-card p{

    margin:12px 0;

    color:#555;

}

.job-card a{

    display:inline-block;

    margin-top:25px;

    background:#2563eb;

    color:white;

    padding:12px 22px;

    border-radius:8px;

}
.why-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));

    gap:35px;

    margin-top:50px;

}

.why-grid div{

    background:white;

    padding:40px;

    text-align:center;

    border-radius:15px;

    box-shadow:0 10px 30px rgba(0,0,0,.05);

}

.why-grid i{

    font-size:50px;

    color:#2563eb;

    margin-bottom:20px;

}
.newsletter{

    background:#111827;

    color:white;

    text-align:center;

}

.newsletter form{

    display:flex;

    justify-content:center;

    gap:20px;

    margin-top:30px;

    flex-wrap:wrap;

}

.newsletter input{

    width:420px;

    max-width:100%;

    padding:18px;

    border-radius:8px;

    border:none;

}
footer{

    background:#0f172a;

    color:white;

    padding:30px;

    text-align:center;

}
@media(max-width:991px){

.hero-content{

grid-template-columns:1fr;

text-align:center;

}

.stats .container{

grid-template-columns:repeat(2,1fr);

}

nav{

display:none;

}

}

@media(max-width:768px){

h1{

font-size:40px;

}

.stats .container{

grid-template-columns:1fr;

}

.search-box{

flex-direction:column;

}

.newsletter form{

flex-direction:column;

}

.newsletter input{

width:100%;

}
.login-page,
.register-page{

padding:150px 0;

background:#f5f7fb;

}

.login-box,
.register-box{

max-width:500px;

margin:auto;

background:#fff;

padding:40px;

border-radius:12px;

box-shadow:0 15px 40px rgba(0,0,0,.08);

}

.login-box h2,
.register-box h2{

text-align:center;

margin-bottom:30px;

}

.login-box input,
.register-box input{

width:100%;

padding:15px;

margin-bottom:20px;

border:1px solid #ddd;

border-radius:8px;

font-size:16px;

}

.login-box button,
.register-box button{

width:100%;

}

.success{

background:#d1fae5;

color:#065f46;

padding:12px;

border-radius:6px;

margin-bottom:20px;

}

.error{

background:#fee2e2;

color:#991b1b;

padding:12px;

border-radius:6px;

margin-bottom:20px;

}
/* HOW IT WORKS */

.how-it-works{
    padding:100px 0;
    background:#ffffff;
}

.section-title{
    text-align:center;
    max-width:850px;
    margin:0 auto 60px;
}

.section-title p{
    color:#666;
    font-size:18px;
}

.steps{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:30px;
}

.step{
    background:#fff;
    padding:35px;
    border-radius:15px;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
    transition:.3s;
}

.step:hover{
    transform:translateY(-8px);
}

.step h3{
    color:#2563eb;
    margin-bottom:15px;
}

/* WHY REMOTE */

.why-remote{
    padding:100px 0;
    background:#f7f9fc;
}

.why-remote h2{
    text-align:center;
}

.why-remote p{
    text-align:center;
    max-width:900px;
    margin:20px auto;
}

.benefits{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:30px;
    margin-top:60px;
}

.benefit{
    background:white;
    padding:30px;
    border-radius:15px;
    text-align:center;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

/* CTA */

.cta{
    background:#2563eb;
    color:white;
    text-align:center;
    padding:100px 20px;
}

.cta p{
    max-width:800px;
    margin:20px auto 40px;
}

.cta .btn{
    background:white;
    color:#2563eb;
    padding:16px 40px;
    border-radius:8px;
    font-weight:700;
}
.register-box select,
.register-box textarea,
.register-box input[type=file]{

    width:100%;
    padding:15px;
    margin-bottom:20px;
    border:1px solid #ddd;
    border-radius:8px;
    font-size:16px;
    font-family:Poppins,sans-serif;
}

.register-box textarea{
    resize:vertical;
}

.register-box label{
    display:block;
    margin-bottom:8px;
}
/*==========================================
 APPLY PAGE
==========================================*/

.apply-page{
    padding:140px 0 80px;
    background:#f5f7fb;
}

.apply-box{
    width:100%;
    max-width:800px;
    margin:auto;
    background:#ffffff;
    padding:45px;
    border-radius:15px;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
}

.apply-box h2{
    text-align:center;
    color:#2563eb;
    margin-bottom:15px;
    font-size:36px;
}

.apply-box p.intro{
    text-align:center;
    color:#666;
    margin-bottom:35px;
    line-height:1.8;
}

.apply-box input,
.apply-box select,
.apply-box textarea{

    width:100%;
    padding:16px;
    border:1px solid #ddd;
    border-radius:8px;
    margin-bottom:20px;
    font-size:15px;
    font-family:'Poppins',sans-serif;
    transition:.3s;

}

.apply-box input:focus,
.apply-box select:focus,
.apply-box textarea:focus{

    outline:none;
    border-color:#2563eb;
    box-shadow:0 0 10px rgba(37,99,235,.15);

}

.apply-box textarea{

    resize:vertical;
    min-height:150px;

}

.apply-box input[type=file]{

    padding:12px;

}

.apply-box label{

    display:block;
    margin-bottom:8px;
    font-weight:600;
    color:#444;

}

.apply-box button{

    width:100%;
    background:#2563eb;
    color:white;
    border:none;
    padding:18px;
    border-radius:8px;
    font-size:17px;
    cursor:pointer;
    transition:.3s;

}

.apply-box button:hover{

    background:#1d4ed8;

}

.application-note{

    margin-top:40px;
    background:#eef6ff;
    border-left:5px solid #2563eb;
    padding:30px;
    border-radius:10px;

}

.application-note h3{

    color:#2563eb;
    margin-bottom:15px;

}

.application-note ul{

    padding-left:20px;

}

.application-note ul li{

    margin-bottom:12px;
    color:#444;

}

/*==========================================
 SUCCESS MESSAGE
==========================================*/

.success-message{

    background:#d1fae5;
    color:#065f46;
    padding:18px;
    border-radius:8px;
    margin-bottom:25px;
    text-align:center;
    font-weight:600;

}

.error-message{

    background:#fee2e2;
    color:#991b1b;
    padding:18px;
    border-radius:8px;
    margin-bottom:25px;
    text-align:center;
    font-weight:600;

}

/*==========================================
 RESPONSIVE
==========================================*/

@media(max-width:768px){

.apply-box{

padding:30px 20px;

}

.apply-box h2{

font-size:28px;

}

.apply-page{

padding-top:120px;

}
/*==================================

APPLY HERO

===================================*/

.apply-hero{

position:relative;

padding:180px 0;

background:linear-gradient(135deg,#0f172a,#2563eb);

color:#fff;

text-align:center;

overflow:hidden;

}

.apply-hero .overlay{

position:absolute;

top:0;

left:0;

width:100%;

height:100%;

background:rgba(0,0,0,.35);

}

.apply-hero .container{

position:relative;

z-index:2;

}

.apply-hero h1{

font-size:60px;

margin-bottom:25px;

font-weight:700;

}

.apply-hero p{

font-size:20px;

max-width:850px;

margin:auto;

line-height:1.8;

}

.hero-buttons{

margin-top:40px;

display:flex;

justify-content:center;

gap:20px;

flex-wrap:wrap;

}

.btn-outline{

padding:16px 40px;

border:2px solid white;

color:white;

border-radius:8px;

transition:.3s;

}

.btn-outline:hover{

background:white;

color:#2563eb;

}

/*===========================

BENEFITS

============================*/

.apply-benefits{

padding:100px 0;

background:#f8fafc;

}

.apply-benefits h2{

text-align:center;

margin-bottom:15px;

}

.section-text{

text-align:center;

max-width:850px;

margin:auto auto 60px;

color:#666;

}

.benefit-grid{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(250px,1fr));

gap:30px;

}

.benefit-card{

background:white;

padding:35px;

border-radius:15px;

text-align:center;

box-shadow:0 15px 35px rgba(0,0,0,.08);

transition:.4s;

}

.benefit-card:hover{

transform:translateY(-10px);

}

.icon{

font-size:55px;

margin-bottom:20px;

}
}
}
