/* ===================================================
   CRK GROUP - Skilled Workers Portal
   Main Stylesheet
=================================================== */

:root{
    --primary:#0d6efd;
    --secondary:#198754;
    --dark:#1f2937;
    --light:#f8f9fa;
    --white:#ffffff;
    --text:#495057;
    --shadow:0 10px 30px rgba(0,0,0,.08);
    --radius:18px;
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:#f5f7fb;
    color:var(--text);
    overflow-x:hidden;
}

a{
    text-decoration:none;
    transition:.3s;
}

img{
    max-width:100%;
}

section{
    padding:90px 0;
}

.section-title{
    font-size:2.4rem;
    font-weight:700;
    color:#222;
}

.section-subtitle{
    color:#777;
    margin-top:10px;
}

.navbar{
    padding:16px 0;
    background:#fff!important;
    box-shadow:0 5px 20px rgba(0,0,0,.05);
}

.navbar-brand{
    font-size:1.6rem;
    font-weight:700;
}

.nav-link{
    color:#333!important;
    font-weight:500;
    margin-left:12px;
}

.nav-link:hover{
    color:var(--primary)!important;
}

.hero{
    background:linear-gradient(135deg,#eef5ff,#ffffff);
    min-height:85vh;
    display:flex;
    align-items:center;
}

.hero h1{
    font-size:3.4rem;
    line-height:1.2;
}

.hero p{
    font-size:1.1rem;
}

.btn{
    transition:all .3s ease;
    border-radius:40px;
    padding:13px 28px;
    font-weight:600;
}

.btn-primary{
    border:none;
    background:linear-gradient(45deg,#0d6efd,#198754);
    box-shadow:0 10px 25px rgba(13,110,253,.25);
}

.btn-primary:hover{
    transform:translateY(-3px);
}

.card{
    border:none;
    border-radius:var(--radius);
    box-shadow:var(--shadow);
    transition:.35s;
}

.card:hover{
    transform:translateY(-8px);
}

.icon-box{
    width:75px;
    height:75px;
    border-radius:50%;
    background:linear-gradient(45deg,#0d6efd,#198754);
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    margin:auto;
    font-size:30px;
}

.list-group-item{
    border:none;
    padding:14px 0;
    font-size:1.05rem;
}

.bg-primary{
    background:linear-gradient(45deg,#0d6efd,#198754)!important;
}

footer{
    background:#1e293b;
    color:#fff;
    padding:60px 0;
}

footer a{
    color:#fff;
}

::-webkit-scrollbar{
    width:8px;
}

::-webkit-scrollbar-thumb{
    background:#0d6efd;
    border-radius:20px;
}

@media (max-width:991px){

.hero{
    text-align:center;
    min-height:auto;
}

.hero h1{
    font-size:2.5rem;
}

.section-title{
    font-size:2rem;
}

.nav-link{
    margin-left:0;
}

}

@media (max-width:576px){

.hero h1{
    font-size:2rem;
}

.btn{
    width:100%;
    margin-bottom:10px;
}

section{
    padding:60px 0;
}

}
.navbar-brand{

font-size:28px;

font-weight:700;

}

.nav-link{

font-weight:500;

margin-left:18px;

}

.nav-link:hover{

color:#0d6efd!important;

}