/*==================================================
WORKFORYOU by CRK GROUP
REGISTER.CSS
PART 1
==================================================*/

:root{

--primary:#0d6efd;
--primary-dark:#0a58ca;

--secondary:#198754;
--secondary-dark:#157347;

--white:#ffffff;

--light:#f8fbff;
--light2:#eef5fb;

--dark:#1d2636;

--text:#5b6474;

--border:#e5ecf5;

--shadow:0 15px 45px rgba(0,0,0,.08);

--radius:22px;

--transition:.35s;

}

*{

margin:0;

padding:0;

box-sizing:border-box;

}

html{

scroll-behavior:smooth;

}

body{

font-family:'Poppins',sans-serif;

background:var(--light);

color:var(--dark);

overflow-x:hidden;

}

/*==================================================
LINKS
==================================================*/

a{

text-decoration:none;

transition:.3s;

}

img{

max-width:100%;

display:block;

}

/*==================================================
NAVBAR
==================================================*/

.navbar{

background:#ffffff;

padding:18px 0;

box-shadow:0 10px 40px rgba(0,0,0,.06);

transition:.4s;

z-index:999;

}

.navbar-brand{

display:flex;

align-items:center;

font-size:30px;

font-weight:800;

color:var(--primary)!important;

}

.navbar-brand img{

height:48px;

width:auto;

margin-right:12px;

}

.nav-link{

font-size:15px;

font-weight:600;

color:#444;

margin-left:18px;

transition:.3s;

position:relative;

}

.nav-link:hover{

color:var(--primary);

}

.nav-link.active{

color:var(--primary)!important;

}

.nav-link::after{

content:"";

position:absolute;

left:0;

bottom:-8px;

height:3px;

width:0;

background:var(--primary);

transition:.3s;

border-radius:20px;

}

.nav-link:hover::after,

.nav-link.active::after{

width:100%;

}

/*==================================================
WHATSAPP BUTTON
==================================================*/

.navbar .btn-success{

padding:12px 26px;

font-weight:600;

border-radius:50px;

background:linear-gradient(135deg,var(--secondary),#28b463);

border:none;

box-shadow:0 12px 25px rgba(25,135,84,.25);

transition:.35s;

}

.navbar .btn-success:hover{

transform:translateY(-4px);

box-shadow:0 18px 40px rgba(25,135,84,.35);

}

/*==================================================
HERO
==================================================*/

.hero-section{

position:relative;

height:720px;

background:url('../images/construction-bg.jpg') center center/cover no-repeat;

display:flex;

align-items:center;

justify-content:center;

overflow:hidden;

}

.hero-section::before{

content:"";

position:absolute;

inset:0;

background:linear-gradient(

135deg,

rgba(5,60,120,.85),

rgba(18,110,90,.70)

);

}

.hero-overlay{

position:relative;

z-index:2;

width:100%;

}

.hero-badge{

display:inline-block;

padding:12px 26px;

border-radius:50px;

background:rgba(255,255,255,.18);

backdrop-filter:blur(10px);

color:#fff;

font-weight:700;

font-size:14px;

letter-spacing:1px;

margin-bottom:30px;

}

.hero-section h1{

font-size:68px;

font-weight:800;

line-height:1.15;

color:#fff;

margin-bottom:25px;

}

.hero-section p{

max-width:760px;

margin:auto;

font-size:20px;

line-height:1.9;

color:rgba(255,255,255,.92);

}

.hero-buttons{

margin-top:45px;

display:flex;

justify-content:center;

gap:18px;

flex-wrap:wrap;

}

.hero-buttons .btn{

padding:18px 42px;

border-radius:60px;

font-size:17px;

font-weight:700;

transition:.35s;

}

.hero-buttons .btn-primary{

background:linear-gradient(135deg,var(--primary),#33a0ff);

border:none;

box-shadow:0 18px 35px rgba(13,110,253,.35);

}

.hero-buttons .btn-primary:hover{

transform:translateY(-5px);

}

.hero-buttons .btn-light{

color:var(--dark);

box-shadow:0 15px 35px rgba(255,255,255,.25);

}

.hero-buttons .btn-light:hover{

transform:translateY(-5px);

}

/*==================================================
WHY JOIN
==================================================*/

.why-join{

padding:110px 0;

background:#fff;

}

.why-join h2{

font-size:46px;

font-weight:800;

margin-bottom:18px;

}

.why-join p{

font-size:18px;

color:var(--text);

}

.feature-card{

background:#fff;

border-radius:var(--radius);

padding:45px 35px;

text-align:center;

border:1px solid var(--border);

transition:.35s;

box-shadow:var(--shadow);

height:100%;

}

.feature-card:hover{

transform:translateY(-10px);

}

.feature-card i{

width:90px;

height:90px;

border-radius:50%;

display:flex;

align-items:center;

justify-content:center;

margin:auto;

font-size:34px;

background:linear-gradient(

135deg,

var(--primary),

var(--secondary)

);

color:#fff;

margin-bottom:25px;

}

.feature-card h4{

font-size:22px;

font-weight:700;

margin-bottom:15px;

}

.feature-card p{

font-size:15px;

line-height:1.8;

color:var(--text);

}
/*==================================================
REGISTER SECTION
PART 2
==================================================*/

.register-section{

padding:110px 0;

background:linear-gradient(
180deg,
#f7fbff 0%,
#eef5fb 100%
);

}

.register-card{

background:#ffffff;

border-radius:30px;

padding:70px;

box-shadow:
0 25px 80px rgba(0,0,0,.08);

border:1px solid #edf2f8;

position:relative;

overflow:hidden;

}

.register-card::before{

content:"";

position:absolute;

top:-120px;

right:-120px;

width:260px;

height:260px;

background:linear-gradient(
135deg,
rgba(13,110,253,.08),
rgba(25,135,84,.08)
);

border-radius:50%;

}

.register-card::after{

content:"";

position:absolute;

bottom:-150px;

left:-150px;

width:320px;

height:320px;

background:linear-gradient(
135deg,
rgba(13,110,253,.05),
rgba(25,135,84,.05)
);

border-radius:50%;

}

.register-card>*{

position:relative;

z-index:2;

}

/*==================================================
REGISTER TITLE
==================================================*/

.register-card h2{

font-size:42px;

font-weight:800;

margin-bottom:12px;

color:var(--dark);

}

.register-card p{

font-size:17px;

color:var(--text);

margin-bottom:0;

}

/*==================================================
SECTION TITLES
==================================================*/

.form-title{

font-size:28px;

font-weight:700;

margin-top:55px;

margin-bottom:28px;

display:flex;

align-items:center;

gap:12px;

color:var(--dark);

}

.form-title i{

width:55px;

height:55px;

border-radius:50%;

display:flex;

align-items:center;

justify-content:center;

background:linear-gradient(
135deg,
var(--primary),
var(--secondary)
);

color:#fff;

font-size:20px;

}

/*==================================================
UPLOAD BOX
==================================================*/

.upload-wrapper{

margin-bottom:45px;

}

.upload-box{

display:flex;

flex-direction:column;

justify-content:center;

align-items:center;

padding:60px 35px;

border:3px dashed #cfdceb;

border-radius:30px;

background:#fbfdff;

cursor:pointer;

transition:.35s;

}

.upload-box:hover{

border-color:var(--primary);

background:#f3f9ff;

transform:translateY(-6px);

}

.photo-preview{

width:150px;

height:150px;

border-radius:50%;

background:#fff;

display:flex;

align-items:center;

justify-content:center;

font-size:52px;

color:var(--primary);

border:5px solid #edf4fc;

overflow:hidden;

margin-bottom:25px;

box-shadow:0 10px 35px rgba(0,0,0,.08);

}

.photo-preview img{

width:100%;

height:100%;

object-fit:cover;

}

.upload-box h4{

font-size:28px;

font-weight:700;

margin-bottom:10px;

}

.upload-box p{

font-size:15px;

color:var(--text);

margin-bottom:0;

}

/*==================================================
FORM LABELS
==================================================*/

.form-label{

font-weight:700;

font-size:15px;

margin-bottom:12px;

color:#333;

}

.form-control,

.form-select{

height:62px;

border-radius:18px;

border:2px solid #e7eef6;

padding:16px 22px;

font-size:16px;

background:#fff;

box-shadow:none;

transition:.3s;

}

textarea.form-control{

height:auto;

min-height:150px;

padding-top:18px;

resize:none;

}

.form-control::placeholder{

color:#9aa5b3;

}

.form-control:focus,

.form-select:focus{

border-color:var(--primary);

box-shadow:
0 0 0 .25rem rgba(13,110,253,.12);

}

.text-danger{

font-size:15px;

}

/*==================================================
ROW SPACING
==================================================*/

.register-card .row{

margin-bottom:8px;

}

/*==================================================
EXPERIENCE
==================================================*/

.form-select option{

padding:10px;

}

/*==================================================
DIVIDER
==================================================*/

.register-card hr{

margin:70px 0;

border:none;

height:1px;

background:#e6edf6;

}

/*==================================================
SKILL SECTION TITLE
==================================================*/

.register-card .text-center h2{

font-size:40px;

font-weight:800;

margin-bottom:12px;

}

.register-card .text-center p{

font-size:17px;

color:var(--text);

margin-bottom:40px;

}
/*==================================================
REGISTER.CSS
PART 3
SKILLS + PRIVACY + BUTTON
==================================================*/

/*==============================
ACCORDION
==============================*/

.accordion{

border:none;

background:none;

}

.accordion-item{

border:none;

margin-bottom:22px;

border-radius:22px !important;

overflow:hidden;

box-shadow:0 12px 35px rgba(0,0,0,.06);

}

.accordion-button{

background:#ffffff;

padding:24px 28px;

font-size:22px;

font-weight:700;

color:var(--dark);

box-shadow:none!important;

}

.accordion-button:not(.collapsed){

background:linear-gradient(
135deg,
var(--primary),
var(--secondary)
);

color:#fff;

}

.accordion-button:focus{

box-shadow:none;

}

.accordion-body{

padding:30px;

background:#f9fcff;

}

/*==============================
SKILL GRID
==============================*/

.skills-grid{

display:grid;

grid-template-columns:repeat(auto-fill,minmax(180px,1fr));

gap:20px;

}

/*==============================
SKILL CARD
==============================*/

.skill-card{

cursor:pointer;

display:block;

margin:0;

}

.skill-card input{

display:none;

}

.skill-box{

position:relative;

background:#fff;

border:2px solid #e9eef5;

border-radius:22px;

padding:28px 18px;

text-align:center;

transition:.35s;

height:170px;

display:flex;

flex-direction:column;

justify-content:center;

align-items:center;

overflow:hidden;

}

.skill-box:hover{

transform:translateY(-8px);

box-shadow:0 20px 40px rgba(13,110,253,.15);

border-color:var(--primary);

}

.skill-icon{

font-size:42px;

margin-bottom:18px;

color:var(--primary);

transition:.3s;

}

.skill-box h6{

font-size:16px;

font-weight:700;

line-height:1.4;

margin-bottom:0;

}

/*==============================
SELECTED
==============================*/

.selected-mark{

position:absolute;

top:14px;

right:14px;

width:34px;

height:34px;

border-radius:50%;

background:#fff;

display:flex;

align-items:center;

justify-content:center;

color:var(--secondary);

font-size:16px;

opacity:0;

transform:scale(.4);

transition:.3s;

box-shadow:0 10px 20px rgba(0,0,0,.10);

}

.selected-text{

display:none;

margin-top:12px;

font-size:13px;

font-weight:600;

opacity:.9;

}

.skill-card input:checked + .skill-box{

background:linear-gradient(
135deg,
var(--primary),
var(--secondary)
);

border-color:transparent;

color:#fff;

transform:translateY(-8px);

box-shadow:0 25px 45px rgba(13,110,253,.25);

}

.skill-card input:checked + .skill-box .skill-icon{

color:#fff;

}

.skill-card input:checked + .skill-box .selected-mark{

opacity:1;

transform:scale(1);

}

.skill-card input:checked + .skill-box .selected-text{

display:block;

}

/*==============================
OTHER SKILL
==============================*/

#otherSkillBox{

margin-top:25px;

padding:25px;

background:#fff;

border-radius:20px;

border:2px dashed #cdd9ea;

display:none;

animation:fadeIn .4s;

}

/*==============================
PRIVACY
==============================*/

.privacy-card{

background:linear-gradient(
135deg,
#f5fff8,
#eefcf4
);

padding:35px;

border-radius:24px;

border-left:8px solid var(--secondary);

margin-top:60px;

}

.privacy-card h3{

font-size:28px;

font-weight:700;

margin-bottom:20px;

}

.privacy-card ul{

margin:0;

padding-left:22px;

}

.privacy-card li{

margin-bottom:12px;

font-size:16px;

color:var(--text);

}

/*==============================
AGREEMENT
==============================*/

.form-check{

padding:28px;

background:#fff;

border-radius:20px;

margin-top:45px;

box-shadow:0 8px 20px rgba(0,0,0,.05);

}

.form-check-input{

width:24px;

height:24px;

cursor:pointer;

}

.form-check-label{

padding-left:12px;

font-size:16px;

font-weight:500;

cursor:pointer;

}

/*==============================
REGISTER BUTTON
==============================*/

.register-btn{

height:70px;

border:none;

border-radius:60px;

font-size:20px;

font-weight:700;

background:linear-gradient(
135deg,
var(--primary),
var(--secondary)
);

box-shadow:0 20px 40px rgba(13,110,253,.25);

transition:.35s;

}

.register-btn:hover{

transform:translateY(-6px);

box-shadow:0 30px 55px rgba(13,110,253,.35);

}

/*==============================
FADE
==============================*/

@keyframes fadeIn{

from{

opacity:0;

transform:translateY(15px);

}

to{

opacity:1;

transform:translateY(0);

}

}
/*==================================================
REGISTER.CSS
PART 4
FOOTER + RESPONSIVE + ANIMATIONS
==================================================*/

/*=========================================
FOOTER
=========================================*/

.footer{

margin-top:120px;

padding:70px 0;

background:#0f172a;

color:#ffffff;

text-align:center;

}

.footer p{

font-size:16px;

margin-bottom:20px;

opacity:.85;

}

.footer .btn{

padding:15px 35px;

border-radius:50px;

font-weight:600;

font-size:16px;

background:linear-gradient(
135deg,
var(--secondary),
#2ecc71
);

border:none;

transition:.35s;

}

.footer .btn:hover{

transform:translateY(-5px);

box-shadow:0 18px 40px rgba(46,204,113,.35);

}

/*=========================================
CUSTOM SCROLLBAR
=========================================*/

::-webkit-scrollbar{

width:10px;

}

::-webkit-scrollbar-track{

background:#eef4fb;

}

::-webkit-scrollbar-thumb{

background:linear-gradient(
180deg,
var(--primary),
var(--secondary)
);

border-radius:20px;

}

::-webkit-scrollbar-thumb:hover{

background:var(--primary);

}

/*=========================================
SMOOTH ANIMATIONS
=========================================*/

.register-card,
.feature-card,
.skill-box,
.upload-box,
.privacy-card{

transition:all .35s ease;

}

.register-card{

animation:fadeUp .8s ease;

}

.feature-card{

animation:fadeUp .9s ease;

}

.hero-section h1{

animation:fadeDown .8s ease;

}

.hero-section p{

animation:fadeUp 1s ease;

}

.hero-buttons{

animation:fadeUp 1.2s ease;

}

/*=========================================
KEYFRAMES
=========================================*/

@keyframes fadeUp{

0%{

opacity:0;

transform:translateY(40px);

}

100%{

opacity:1;

transform:translateY(0);

}

}

@keyframes fadeDown{

0%{

opacity:0;

transform:translateY(-40px);

}

100%{

opacity:1;

transform:translateY(0);

}

}

@keyframes zoomIn{

0%{

opacity:0;

transform:scale(.85);

}

100%{

opacity:1;

transform:scale(1);

}

}

.photo-preview{

animation:zoomIn .5s;

}

/*=========================================
TABLETS
=========================================*/

@media(max-width:991px){

.hero-section{

height:auto;

padding:160px 0 120px;

text-align:center;

}

.hero-section h1{

font-size:46px;

}

.hero-section p{

font-size:17px;

}

.register-card{

padding:45px;

}

.skills-grid{

grid-template-columns:repeat(3,1fr);

}

.feature-card{

margin-bottom:25px;

}

}

/*=========================================
MOBILE
=========================================*/

@media(max-width:768px){

.navbar{

padding:12px 0;

}

.navbar-brand{

font-size:24px;

}

.navbar-brand img{

height:40px;

}

.hero-section{

padding:140px 0 90px;

}

.hero-section h1{

font-size:34px;

line-height:1.3;

}

.hero-section p{

font-size:15px;

}

.hero-buttons{

flex-direction:column;

align-items:center;

}

.hero-buttons .btn{

width:100%;

max-width:320px;

}

.why-join{

padding:70px 0;

}

.why-join h2{

font-size:32px;

}

.register-section{

padding:70px 0;

}

.register-card{

padding:25px;

border-radius:20px;

}

.register-card h2{

font-size:30px;

}

.form-title{

font-size:22px;

}

.form-title i{

width:45px;

height:45px;

font-size:16px;

}

.upload-box{

padding:35px 20px;

}

.photo-preview{

width:120px;

height:120px;

font-size:40px;

}

.skills-grid{

grid-template-columns:repeat(2,1fr);

gap:15px;

}

.skill-box{

height:145px;

padding:18px 10px;

}

.skill-icon{

font-size:34px;

}

.skill-box h6{

font-size:14px;

}

.accordion-button{

font-size:18px;

padding:18px;

}

.privacy-card{

padding:25px;

}

.privacy-card h3{

font-size:22px;

}

.register-btn{

height:60px;

font-size:17px;

}

.footer{

padding:45px 20px;

margin-top:80px;

}

}

/*=========================================
SMALL MOBILE
=========================================*/

@media(max-width:480px){

.skills-grid{

grid-template-columns:1fr;

}

.hero-section h1{

font-size:30px;

}

.hero-buttons .btn{

font-size:15px;

padding:15px 20px;

}

.form-control,

.form-select{

height:56px;

font-size:15px;

}

textarea.form-control{

min-height:120px;

}

}