/*====================================================
JOB INTELLIGENCE ASSIST
COMPLETE STYLE SHEET
====================================================*/


@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');


*{

margin:0;
padding:0;
box-sizing:border-box;
font-family:'Poppins',sans-serif;

}


html{

scroll-behavior:smooth;

}


body{

background:#f8fafc;
color:#1e293b;
line-height:1.6;

}



a{

text-decoration:none;

color:inherit;

}


ul{

list-style:none;

}



section{

padding:90px 8%;

}







/*========================
HEADER
========================*/


header{

background:white;

position:sticky;

top:0;

z-index:1000;

box-shadow:0 5px 20px rgba(0,0,0,.08);

}



.navbar{

height:85px;

display:flex;

align-items:center;

justify-content:space-between;

padding:0 8%;

}



.logo h2{

font-size:25px;

font-weight:800;

color:#2563eb;

}



.nav-links{

display:flex;

align-items:center;

gap:30px;

}



.nav-links a{

font-weight:500;

color:#334155;

transition:.3s;

}



.nav-links a:hover,
.nav-links .active{

color:#2563eb;

}



.menu-btn{

display:none;

font-size:25px;

cursor:pointer;

}









/*========================
BUTTONS
========================*/


.btn{

display:inline-flex;

align-items:center;

gap:8px;

background:#2563eb;

color:white!important;

padding:14px 30px;

border-radius:50px;

font-weight:600;

transition:.3s;

}



.btn:hover{

background:#1d4ed8;

transform:translateY(-3px);

}




.outline-btn{

display:inline-flex;

align-items:center;

gap:8px;

padding:14px 30px;

border-radius:50px;

border:2px solid #2563eb;

color:#2563eb;

font-weight:600;

transition:.3s;

}



.outline-btn:hover{

background:#2563eb;

color:white;

}









/*========================
HERO SECTION
========================*/


.hero{

min-height:90vh;

display:grid;

grid-template-columns:1fr 1fr;

align-items:center;

gap:50px;

background:

linear-gradient(

135deg,

#eff6ff,

#ffffff

);

position:relative;

overflow:hidden;

}



.hero-content{

z-index:2;

}



.hero-badge{

display:inline-block;

background:#dbeafe;

color:#2563eb;

padding:10px 20px;

border-radius:30px;

font-weight:600;

margin-bottom:25px;

}



.hero h1{

font-size:55px;

line-height:1.2;

font-weight:800;

color:#0f172a;

margin-bottom:25px;

}



.hero p{

font-size:18px;

color:#64748b;

margin-bottom:35px;

}



.hero-buttons{

display:flex;

gap:20px;

margin-bottom:40px;

}



.hero-features{

display:flex;

gap:25px;

}



.feature{

display:flex;

align-items:center;

gap:10px;

font-weight:600;

}



.feature i{

color:#2563eb;

font-size:22px;

}



.hero-image img{

width:100%;

max-width:550px;

animation:float 4s infinite ease-in-out;

}



@keyframes float{


50%{

transform:translateY(-20px);

}


}











/*========================
SECTION TITLE
========================*/


.section-title{

text-align:center;

max-width:800px;

margin:auto;

margin-bottom:60px;

}



.section-title span{

color:#2563eb;

font-weight:700;

}



.section-title h2{

font-size:40px;

margin:15px 0;

font-weight:800;

color:#0f172a;

}



.section-title p{

color:#64748b;

}









/*========================
STATISTICS
========================*/


.stats{

display:grid;

grid-template-columns:repeat(4,1fr);

gap:30px;

background:white;

}



.card{

background:white;

padding:35px;

text-align:center;

border-radius:25px;

box-shadow:0 10px 30px rgba(0,0,0,.08);

transition:.3s;

}



.card:hover{

transform:translateY(-10px);

}



.card i{

font-size:40px;

color:#2563eb;

}



.card h2{

font-size:40px;

margin:15px 0;

color:#0f172a;

}



.card p{

color:#64748b;

}









/*========================
SERVICES AND CATEGORY GRID
========================*/


.services-preview,
.categories,
.why-us{

background:#f8fafc;

}



.grid{

display:grid;

grid-template-columns:repeat(3,1fr);

gap:30px;

}



.box{

background:white;

padding:35px;

border-radius:25px;

box-shadow:

0 10px 25px rgba(0,0,0,.07);

transition:.3s;

}



.box:hover{

transform:translateY(-10px);

}



.box i{

font-size:40px;

color:#2563eb;

margin-bottom:20px;

}



.box h3{

font-size:22px;

margin-bottom:15px;

}



.box p{

color:#64748b;

}









/*========================
REGISTRATION FORM
========================*/


.registration{

background:#eff6ff;

}



.form-box{

background:white;

max-width:700px;

margin:auto;

padding:45px;

border-radius:30px;

box-shadow:0 10px 40px rgba(0,0,0,.1);

}



.form-box label{

display:block;

font-weight:600;

margin:15px 0 8px;

}



.form-box input,
.form-box select,
.form-box textarea{


width:100%;

padding:15px;

border:1px solid #cbd5e1;

border-radius:12px;

outline:none;

font-size:15px;

}



.form-box textarea{

height:130px;

resize:none;

}



.form-box button{

margin-top:25px;

width:100%;

padding:16px;

border:none;

border-radius:50px;

background:#2563eb;

color:white;

font-size:17px;

font-weight:600;

cursor:pointer;

}









/*========================
FAQ
========================*/


.faq{

background:white;

}



.faq-container{

max-width:900px;

margin:auto;

}



.faq-item{

background:#f8fafc;

margin-bottom:20px;

border-radius:20px;

overflow:hidden;

}



.faq-question{

width:100%;

padding:25px;

border:none;

background:none;

display:flex;

justify-content:space-between;

font-size:17px;

font-weight:600;

cursor:pointer;

}



.faq-answer{

padding:0 25px 20px;

color:#64748b;

}









/*========================
CTA
========================*/


.cta{

margin:50px 8%;

border-radius:35px;

background:

linear-gradient(

135deg,

#2563eb,

#1e40af

);

color:white;

text-align:center;

}



.cta h2{

font-size:42px;

}



.cta p{

margin:20px auto 30px;

max-width:700px;

color:#dbeafe;

}



.cta .btn{

background:white;

color:#2563eb!important;

}









/*========================
FOOTER
========================*/


footer{

background:#0f172a;

color:white;

padding:70px 8% 30px;

}



.footer-container{

display:grid;

grid-template-columns:repeat(4,1fr);

gap:40px;

}



.footer-column h2,
.footer-column h3{

color:#facc15;

margin-bottom:20px;

}



.footer-column p,
.footer-column li{

color:#cbd5e1;

margin-bottom:12px;

}



footer hr{

margin:40px 0;

border-color:#334155;

}



.copyright{

text-align:center;

color:#94a3b8;

}









/*========================
ANIMATION
========================*/


.box,
.card{

animation:fadeUp .8s ease;

}



@keyframes fadeUp{


from{

opacity:0;

transform:translateY(40px);

}


to{

opacity:1;

transform:translateY(0);

}


}









/*========================
RESPONSIVE
========================*/


@media(max-width:1000px){


.hero{

grid-template-columns:1fr;

text-align:center;

}


.hero-buttons,
.hero-features{

justify-content:center;

}


.stats{

grid-template-columns:repeat(2,1fr);

}



.grid{

grid-template-columns:repeat(2,1fr);

}



.footer-container{

grid-template-columns:repeat(2,1fr);

}



}







@media(max-width:700px){


.nav-links{

display:none;

flex-direction:column;

position:absolute;

top:85px;

left:0;

width:100%;

background:white;

padding:30px;

}



.menu-btn{

display:block;

}



.hero h1{

font-size:36px;

}



.hero-buttons{

flex-direction:column;

}



.hero-features{

flex-direction:column;

}



.stats,
.grid,
.footer-container{

grid-template-columns:1fr;

}



.section-title h2{

font-size:30px;

}



.cta h2{

font-size:30px;

}



}