/* ==========================================================
   HireCenter - Modern Recruitment Website
   Author: OpenAI
   Version: 2.0
========================================================== */

/* ==========================
   Google Font
========================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* ==========================
   Reset
========================== */

*,
*::before,
*::after{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Inter',sans-serif;
    background:#f8fafc;
    color:#374151;
    line-height:1.6;
    overflow-x:hidden;
}

img{
    max-width:100%;
    display:block;
}

a{
    text-decoration:none;
    color:inherit;
}

ul{
    list-style:none;
}

button,
input,
select,
textarea{
    font-family:inherit;
}

input:focus,
select:focus,
textarea:focus{
    outline:none;
}

/* ==========================
   Variables
========================== */

:root{

    --primary:#2563eb;
    --primary-dark:#1d4ed8;

    --secondary:#0ea5e9;

    --success:#16a34a;

    --danger:#dc2626;

    --warning:#f59e0b;

    --dark:#111827;

    --text:#4b5563;

    --light:#f8fafc;

    --white:#ffffff;

    --border:#e5e7eb;

    --shadow:
    0 10px 30px rgba(15,23,42,.08);

    --radius:14px;

    --transition:.30s ease;
}

/* ==========================
   Container
========================== */

.container{

    width:92%;
    max-width:1200px;

    margin:auto;
}

/* ==========================
   Buttons
========================== */

.btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    gap:10px;

    padding:15px 28px;

    border:none;

    border-radius:10px;

    font-weight:600;

    cursor:pointer;

    transition:var(--transition);
}

.btn-primary{

    background:var(--primary);

    color:#fff;
}

.btn-primary:hover{

    background:var(--primary-dark);

    transform:translateY(-2px);
}

.btn-outline{

    background:#fff;

    color:var(--primary);

    border:2px solid var(--primary);
}

.btn-outline:hover{

    background:var(--primary);

    color:#fff;
}

/* ==========================
   HEADER
========================== */

header{
    position: relative;
    top: 0;
    width: 100%;
    background: #fff;
    border-bottom: 1px solid #e5e7eb;
    z-index: 1000;
}

header .container{
    max-width: 1280px;
    margin: auto;
    padding: 0 25px;
}

.navbar{
    display:flex;
    align-items:center;
    justify-content:space-between;
    height:75px;
}

.logo{
    display:flex;
    align-items:center;
    flex:0 0 auto;
}

.logo img{
    width:260px;
    height:auto;
    display:block;
    object-fit:contain;
}

.nav-links{
    display:flex;
    align-items:center;
    gap:35px;
    margin-left:auto;
    margin-right:35px;
    list-style:none;
}

.nav-links li{
    list-style:none;
}

.nav-links a{
    color:#374151;
    text-decoration:none;
    font-size:16px;
    font-weight:600;
}

.btn-primary{
    padding:12px 24px;
}

/* ==========================
   Hero
========================== */

.hero{

    padding:90px 0;

    background:

    linear-gradient(

    135deg,

    #eff6ff,

    #ffffff);

}

.hero-content{

    display:grid;

    grid-template-columns:

    repeat(2,1fr);

    align-items:center;

    gap:70px;
}

.hero h1{

    font-size:54px;

    font-weight:800;

    color:#111827;

    line-height:1.1;

    margin-bottom:24px;
}

.hero p{

    font-size:18px;

    color:#6b7280;

    margin-bottom:35px;

    max-width:560px;
}

.hero-buttons{

    display:flex;

    gap:18px;

    flex-wrap:wrap;
}

/* ==========================
   Hero Stats
========================== */

.hero-stats{

    display:flex;

    gap:40px;

    margin-top:50px;
}

.stat h2{

    color:var(--primary);

    font-size:34px;

    font-weight:800;
}

.stat p{

    margin-top:8px;

    color:#6b7280;

    font-size:15px;
}
/* ==========================================================
   FEATURES SECTION
========================================================== */

.features{
    padding:90px 0;
    background:#fff;
}

.section-title{
    text-align:center;
    margin-bottom:60px;
}

.section-title h2{
    font-size:40px;
    font-weight:800;
    color:var(--dark);
    margin-bottom:15px;
}

.section-title p{
    max-width:700px;
    margin:auto;
    color:#6b7280;
    font-size:17px;
}

.features-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:30px;
}

.feature-card{
    background:#fff;
    border:1px solid var(--border);
    border-radius:16px;
    padding:35px;
    text-align:center;
    transition:.3s;
    box-shadow:var(--shadow);
}

.feature-card:hover{
    transform:translateY(-8px);
}

.feature-icon{
    width:70px;
    height:70px;
    margin:0 auto 25px;
    background:#eff6ff;
    color:var(--primary);
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
}

.feature-card h3{
    font-size:22px;
    margin-bottom:15px;
    color:var(--dark);
}

.feature-card p{
    color:#6b7280;
}

/* ==========================================================
   TRUSTED COMPANIES
========================================================== */

.companies{
    padding:70px 0;
    background:#f8fafc;
}

.company-grid{
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:25px;
}

.company-box{
    background:#fff;
    border:1px solid var(--border);
    border-radius:14px;
    padding:25px;
    text-align:center;
    font-weight:700;
    color:#6b7280;
    transition:.3s;
}

.company-box:hover{
    border-color:var(--primary);
    color:var(--primary);
}

/* ==========================================================
   JOB CATEGORIES
========================================================== */

.categories{
    padding:90px 0;
}

.category-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:25px;
}

.category-card{
    background:#fff;
    border-radius:16px;
    border:1px solid var(--border);
    padding:30px;
    transition:.3s;
    box-shadow:var(--shadow);
}

.category-card:hover{
    transform:translateY(-6px);
    border-color:var(--primary);
}

.category-card h4{
    margin-bottom:12px;
    color:var(--dark);
    font-size:20px;
}

.category-card p{
    color:#6b7280;
}

/* ==========================================================
   APPLICATION FORM
========================================================== */

.application{
    padding:100px 0;
    background:#f8fafc;
}

.application-card{
    background:#fff;
    border-radius:18px;
    padding:50px;
    box-shadow:var(--shadow);
}

.application-card h2{
    text-align:center;
    margin-bottom:40px;
    font-size:34px;
    color:var(--dark);
}

/* ==========================================================
   PROGRESS BAR
========================================================== */

.progressbar{
    display:flex;
    justify-content:space-between;
    margin-bottom:50px;
    position:relative;
}

.progressbar::before{
    content:"";
    position:absolute;
    left:0;
    right:0;
    top:20px;
    height:4px;
    background:#e5e7eb;
    z-index:1;
}

.progress{
    position:absolute;
    top:20px;
    left:0;
    height:4px;
    width:0%;
    background:var(--primary);
    transition:.4s;
    z-index:2;
}

.progress-step{
    width:42px;
    height:42px;
    background:#fff;
    border:3px solid #d1d5db;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:700;
    position:relative;
    z-index:5;
    transition:.3s;
}

.progress-step.active{
    background:var(--primary);
    border-color:var(--primary);
    color:#fff;
}

/* ==========================================================
   FORM GRID
========================================================== */

.form-step{
    display:none;
}

.form-step.active{
    display:block;
    animation:fadeIn .4s ease;
}

.form-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:25px;
}

.form-group{
    display:flex;
    flex-direction:column;
    margin-bottom:22px;
}

.form-group.full{
    grid-column:1/-1;
}

.form-group label{
    margin-bottom:8px;
    font-weight:600;
    color:var(--dark);
}

.form-group input,
.form-group select,
.form-group textarea{
    width:100%;
    padding:14px 16px;
    border:1px solid var(--border);
    border-radius:12px;
    background:#fff;
    font-size:15px;
    transition:.3s;
}

.form-group textarea{
    resize:vertical;
    min-height:130px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus{
    border-color:var(--primary);
    box-shadow:0 0 0 4px rgba(37,99,235,.12);
}

.required{
    color:#dc2626;
}
/* ==========================================================
   CHOICES.JS (SEARCHABLE MULTI-SELECT)
========================================================== */

.choices{
    margin-bottom:0;
}

.choices__inner{
    min-height:52px;
    padding:8px 12px;
    border:1px solid var(--border);
    border-radius:12px;
    background:#fff;
    transition:var(--transition);
}

.choices.is-focused .choices__inner{
    border-color:var(--primary);
    box-shadow:0 0 0 4px rgba(37,99,235,.12);
}

.choices__list--multiple .choices__item{
    background:var(--primary);
    border:none;
    border-radius:20px;
    padding:4px 10px;
    font-size:14px;
    font-weight:500;
}

.choices__input{
    background:transparent;
    font-size:15px;
}

/* ==========================================================
   FILE UPLOAD
========================================================== */

.upload-box{
    border:2px dashed #cbd5e1;
    border-radius:16px;
    padding:40px;
    text-align:center;
    background:#f8fafc;
    cursor:pointer;
    transition:var(--transition);
}

.upload-box:hover{
    border-color:var(--primary);
    background:#eff6ff;
}

.upload-box i{
    font-size:48px;
    color:var(--primary);
    margin-bottom:15px;
}

.upload-box h3{
    font-size:22px;
    margin-bottom:10px;
    color:var(--dark);
}

.upload-box p{
    color:#6b7280;
}

input[type="file"]{
    display:block;
    width:100%;
    padding:12px;
    border:1px solid #d1d5db;
    border-radius:8px;
    background:#fff;
    cursor:pointer;
}

/* ==========================================================
   CHECKBOXES
========================================================== */

.checkbox-group{
    display:flex;
    align-items:flex-start;
    gap:12px;
    margin-bottom:20px;
}

.checkbox-group input{
    margin-top:4px;
    width:18px;
    height:18px;
    accent-color:var(--primary);
}

.checkbox-group label{
    color:#4b5563;
    line-height:1.6;
}

.checkbox-group a{
    color:var(--primary);
    font-weight:600;
}

/* ==========================================================
   FORM NAVIGATION
========================================================== */

.form-navigation{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-top:40px;
    gap:20px;
}

.form-navigation .btn{
    min-width:160px;
}

.btn-secondary{
    background:#e5e7eb;
    color:#374151;
}

.btn-secondary:hover{
    background:#d1d5db;
}

/* ==========================================================
   ALERTS
========================================================== */

.alert{
    padding:16px 20px;
    border-radius:12px;
    margin-bottom:20px;
    font-weight:500;
}

.alert-success{
    background:#dcfce7;
    color:#166534;
    border:1px solid #86efac;
}

.alert-error{
    background:#fee2e2;
    color:#991b1b;
    border:1px solid #fca5a5;
}

/* ==========================================================
   FOOTER
========================================================== */

footer{
    background:#111827;
    color:#d1d5db;
    padding:70px 0 30px;
}

.footer-grid{
    display:grid;
    grid-template-columns:2fr 1fr 1fr 1fr;
    gap:40px;
}

.footer-logo{
    font-size:30px;
    font-weight:800;
    color:#fff;
    margin-bottom:20px;
}

.footer-title{
    color:#fff;
    margin-bottom:18px;
    font-size:18px;
    font-weight:700;
}

.footer-links{
    display:flex;
    flex-direction:column;
    gap:12px;
}

.footer-links a{
    color:#d1d5db;
    transition:var(--transition);
}

.footer-links a:hover{
    color:#fff;
    padding-left:6px;
}

.footer-bottom{
    margin-top:50px;
    padding-top:25px;
    border-top:1px solid rgba(255,255,255,.1);
    text-align:center;
    color:#9ca3af;
}

/* ==========================================================
   ANIMATIONS
========================================================== */

@keyframes fadeIn{
    from{
        opacity:0;
        transform:translateY(20px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

.fade-in{
    animation:fadeIn .6s ease forwards;
}

/* ==========================================================
   UTILITIES
========================================================== */

.text-center{
    text-align:center;
}

.mt-1{margin-top:10px;}
.mt-2{margin-top:20px;}
.mt-3{margin-top:30px;}
.mt-4{margin-top:40px;}
.mt-5{margin-top:50px;}

.mb-1{margin-bottom:10px;}
.mb-2{margin-bottom:20px;}
.mb-3{margin-bottom:30px;}
.mb-4{margin-bottom:40px;}
.mb-5{margin-bottom:50px;}

/* ==========================================================
   RESPONSIVE
========================================================== */

@media (max-width:992px){

    .hero-content{
        grid-template-columns:1fr;
        text-align:center;
    }

    .hero h1{
        font-size:42px;
    }

    .hero-stats{
        justify-content:center;
        flex-wrap:wrap;
    }

    .company-grid{
        grid-template-columns:repeat(3,1fr);
    }

    .footer-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .form-grid{
        grid-template-columns:1fr;
    }
}

@media (max-width:768px){

    .navbar{
        flex-direction:column;
        height:auto;
        padding:20px 0;
    }

    .nav-links{
        margin-top:20px;
        flex-wrap:wrap;
        justify-content:center;
        gap:20px;
    }

    .hero{
        padding:70px 0;
    }

    .hero h1{
        font-size:34px;
    }

    .section-title h2{
        font-size:32px;
    }

    .company-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .application-card{
        padding:30px;
    }

    .form-navigation{
        flex-direction:column;
    }

    .form-navigation .btn{
        width:100%;
    }

    .footer-grid{
        grid-template-columns:1fr;
        text-align:center;
    }
}

@media (max-width:576px){

    .container{
        width:94%;
    }

    .hero h1{
        font-size:30px;
    }

    .hero p{
        font-size:16px;
    }

    .company-grid{
        grid-template-columns:1fr;
    }

    .progress-step{
        width:36px;
        height:36px;
        font-size:14px;
    }
}
/* ==========================
   SOCIAL ICONS
========================== */

.social-links{
    display:flex;
    gap:12px;
    margin-top:20px;
}

.social-links a{
    width:42px;
    height:42px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:rgba(255,255,255,.08);
    color:#fff;
    border-radius:50%;
    transition:.3s;
}

.social-links a:hover{
    background:var(--primary);
    transform:translateY(-3px);
}
.upload-section{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:20px;
    margin-top:20px;
}

.upload-card{
    border:2px dashed #d1d5db;
    border-radius:12px;
    background:#fff;
    height:170px;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    cursor:pointer;
    transition:.3s;
    text-align:center;
}

.upload-card:hover{
    border-color:#2563eb;
    background:#f8fbff;
}

.upload-icon{
    font-size:42px;
    color:#b0b7c3;
    margin-bottom:12px;
}

.upload-card span{
    font-size:18px;
    color:#4b5563;
}

.upload-card small{
    margin-top:15px;
    font-weight:600;
    color:#374151;
}

input[type=file]{
    display:none;
}
.faq-section{

    padding:80px 0;

    background:#f8fafc;

}

.faq-section .container{

    max-width:900px;

    margin:auto;

}

.faq-section h2{

    font-size:36px;

    font-weight:700;

    color:#111827;

    text-align:center;

    margin-bottom:12px;

}

.faq-section p{

    font-size:17px;

    color:#6b7280;

    text-align:center;

    margin-bottom:45px;

}

.faq{

    width:100%;

}

.faq-item{

    background:#fff;

    border:1px solid #e5e7eb;

    border-radius:12px;

    margin-bottom:18px;

    overflow:hidden;

    box-shadow:0 8px 25px rgba(0,0,0,.05);

}

.faq-question{

    width:100%;

    padding:22px 28px;

    background:#fff;

    border:none;

    display:flex;

    justify-content:space-between;

    align-items:center;

    font-size:17px;

    font-weight:600;

    color:#111827;

    cursor:pointer;

}

.faq-question:hover{

    background:#f8fbff;

}

.faq-question span{

    font-size:28px;

    color:#2563eb;

}

.faq-answer{

    display:none;

    padding:0 28px 24px;

    color:#6b7280;

    line-height:1.8;

}

.faq-item.active .faq-answer{

    display:block;

}
/* ===============================
   WHY CHOOSE US
================================== */

.why-us{

    padding:90px 0;

    background:#ffffff;

}

.section-title{

    text-align:center;

    max-width:750px;

    margin:0 auto 60px;

}

.badge{

    display:inline-block;

    padding:8px 18px;

    background:#eef4ff;

    color:#2563eb;

    border-radius:999px;

    font-weight:600;

    margin-bottom:18px;

}

.section-title h2{

    font-size:42px;

    font-weight:700;

    color:#111827;

    margin-bottom:20px;

}

.section-title p{

    font-size:18px;

    color:#6b7280;

    line-height:1.8;

}

.why-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));

    gap:30px;

}

.why-card{

    background:#fff;

    padding:35px;

    border-radius:18px;

    text-align:center;

    box-shadow:0 12px 30px rgba(0,0,0,.08);

    transition:.3s;

}

.why-card:hover{

    transform:translateY(-8px);

}

.why-icon{

    font-size:52px;

    margin-bottom:20px;

}

.why-card h3{

    margin-bottom:15px;

    color:#111827;

}

.why-card p{

    color:#6b7280;

    line-height:1.8;

}
/* ===============================
   HOW IT WORKS
================================== */

.how-it-works{

    padding:90px 0;

    background:#f8fafc;

}

.steps-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));

    gap:30px;

}

.step-card{

    background:#fff;

    border-radius:18px;

    padding:40px;

    text-align:center;

    box-shadow:0 10px 25px rgba(0,0,0,.08);

    transition:.3s;

}

.step-card:hover{

    transform:translateY(-8px);

}

.step-number{

    width:70px;

    height:70px;

    margin:0 auto 25px;

    border-radius:50%;

    background:#2563eb;

    color:#fff;

    font-size:28px;

    font-weight:700;

    display:flex;

    align-items:center;

    justify-content:center;

}

.step-card h3{

    margin-bottom:18px;

    color:#111827;

}

.step-card p{

    color:#6b7280;

    line-height:1.8;

}
/* ===============================
   TESTIMONIALS
================================== */

.testimonials{

    padding:90px 0;

    background:#ffffff;

}

.testimonial-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));

    gap:30px;

}

.testimonial-card{

    background:#fff;

    padding:35px;

    border-radius:18px;

    text-align:center;

    box-shadow:0 12px 30px rgba(0,0,0,.08);

}

.stars{

    color:#fbbf24;

    font-size:24px;

    margin-bottom:20px;

}

.testimonial-card p{

    color:#6b7280;

    line-height:1.8;

    font-style:italic;

    margin-bottom:20px;

}

.testimonial-card h4{

    color:#111827;

}
.footer-logo{
    display:inline-block;
    margin-bottom:20px;
}

.footer-logo img{
    width:220px;
    height:auto;
    display:block;
}