/*=============================
  VOF SKILL ACQUISITION PROGRAMME
==============================*/

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

html{
scroll-behavior:smooth;
}

body{
font-family:'Poppins',sans-serif;
background:#f7fbf8;
color:#222;
line-height:1.7;
overflow-x:hidden;
}

.container{
width:90%;
max-width:1200px;
margin:auto;
}

/*=============================
HEADER
==============================*/

header{
background:#fff;
position:sticky;
top:0;
z-index:999;
box-shadow:0 5px 20px rgba(0,0,0,.08);
}

.nav{
display:flex;
justify-content:space-between;
align-items:center;
padding:18px 0;
}

.logo{
display:flex;
align-items:center;
gap:15px;
}

.logo-icon{
width:60px;
height:60px;
background:#0b7d38;
border-radius:50%;
display:flex;
justify-content:center;
align-items:center;
color:#fff;
font-size:24px;
}

.logo h2{
color:#0b7d38;
font-size:28px;
font-weight:700;
}

.logo p{
font-size:14px;
color:#666;
}

nav{
display:flex;
gap:28px;
}

nav a{
text-decoration:none;
color:#222;
font-weight:600;
transition:.3s;
}

nav a:hover{
color:#0b7d38;
}

/*=============================
HERO
==============================*/

.hero{
padding:90px 0;
background:linear-gradient(rgba(11,125,56,.85),rgba(11,125,56,.85)),
url("https://images.unsplash.com/photo-1522202176988-66273c2fd55f?w=1600");
background-size:cover;
background-position:center;
color:#fff;
}

.hero-content{
display:grid;
grid-template-columns:1.2fr 1fr;
gap:50px;
align-items:center;
}

.badge{
display:inline-block;
background:rgba(255,255,255,.18);
padding:10px 18px;
border-radius:50px;
margin-bottom:25px;
font-size:14px;
font-weight:600;
}

.hero h1{
font-size:56px;
line-height:1.2;
margin-bottom:20px;
}

.hero p{
font-size:18px;
margin-bottom:35px;
}

.hero-buttons{
display:flex;
gap:15px;
flex-wrap:wrap;
}

.btn{
background:#fff;
color:#0b7d38;
padding:15px 35px;
border-radius:40px;
text-decoration:none;
font-weight:600;
transition:.3s;
}

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

.btn2{
padding:15px 35px;
border:2px solid #fff;
color:#fff;
text-decoration:none;
border-radius:40px;
transition:.3s;
}

.btn2:hover{
background:#fff;
color:#0b7d38;
}

.hero-image img{
width:100%;
border-radius:20px;
box-shadow:0 20px 40px rgba(0,0,0,.25);
}

/*=============================
SECTIONS
==============================*/

.section{
padding:80px 0;
}

.light{
background:#fff;
}

.section-title{
text-align:center;
font-size:38px;
color:#0b7d38;
margin-bottom:20px;
}

.section-text{
max-width:900px;
margin:auto;
text-align:center;
color:#666;
font-size:17px;
}

/*=============================
CARDS
==============================*/

.cards{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
gap:30px;
margin-top:45px;
}

.card{
background:#fff;
padding:35px;
border-radius:18px;
text-align:center;
box-shadow:0 12px 35px rgba(0,0,0,.08);
transition:.3s;
}

.card:hover{
transform:translateY(-8px);
box-shadow:0 20px 45px rgba(0,0,0,.12);
}

.card i{
font-size:48px;
color:#0b7d38;
margin-bottom:20px;
}

.card h3{
margin-bottom:15px;
color:#0b7d38;
font-size:22px;
}

.card p{
color:#666;
font-size:15px;
}
/*=============================
APPLICATION FORM
==============================*/

.application{
padding:80px 0;
background:#f7fbf8;
}

.form-box{
background:#fff;
padding:45px;
border-radius:20px;
box-shadow:0 15px 40px rgba(0,0,0,.08);
}

.form-box h2{
text-align:center;
color:#0b7d38;
font-size:34px;
margin-bottom:10px;
}

.form-box p{
text-align:center;
color:#666;
margin-bottom:35px;
}

.grid{
display:grid;
grid-template-columns:repeat(2,1fr);
gap:20px;
}

.input-group{
display:flex;
flex-direction:column;
}

.full{
grid-column:1/-1;
}

label{
font-weight:600;
margin-bottom:8px;
color:#333;
}

input,
select,
textarea{
width:100%;
padding:15px;
border:1px solid #ddd;
border-radius:10px;
font-family:'Poppins',sans-serif;
font-size:15px;
outline:none;
transition:.3s;
}

input:focus,
select:focus,
textarea:focus{
border-color:#0b7d38;
box-shadow:0 0 0 3px rgba(11,125,56,.15);
}

textarea{
resize:vertical;
min-height:150px;
}

.submit-btn{
width:100%;
margin-top:30px;
padding:16px;
border:none;
border-radius:10px;
background:#0b7d38;
color:#fff;
font-size:18px;
font-weight:600;
cursor:pointer;
transition:.3s;
}

.submit-btn:hover{
background:#08652d;
transform:translateY(-2px);
}

#responseMessage{
margin-top:20px;
text-align:center;
font-weight:600;
}

/*=============================
CALL TO ACTION
==============================*/

.cta{
padding:80px 0;
background:linear-gradient(135deg,#0b7d38,#19a852);
color:#fff;
text-align:center;
}

.cta h2{
font-size:42px;
margin-bottom:20px;
}

.cta p{
max-width:800px;
margin:0 auto 35px;
font-size:17px;
}

.cta .btn{
display:inline-block;
}

/*=============================
FOOTER
==============================*/

footer{
background:#06592a;
color:#fff;
}

.footer{
display:flex;
justify-content:space-between;
align-items:center;
flex-wrap:wrap;
gap:30px;
padding:40px 0;
}

.footer-logo{
display:flex;
align-items:center;
gap:15px;
}

.footer-links{
display:flex;
gap:20px;
flex-wrap:wrap;
}

.footer-links a{
color:#fff;
text-decoration:none;
transition:.3s;
}

.footer-links a:hover{
color:#bff5cb;
}

.footer-text{
max-width:350px;
}

.copyright{
text-align:center;
padding:18px;
border-top:1px solid rgba(255,255,255,.15);
}

/*=============================
BACK TO TOP
==============================*/

#topBtn{
position:fixed;
bottom:25px;
right:25px;
width:50px;
height:50px;
border:none;
border-radius:50%;
background:#0b7d38;
color:#fff;
font-size:18px;
cursor:pointer;
display:none;
box-shadow:0 8px 20px rgba(0,0,0,.25);
transition:.3s;
}

#topBtn:hover{
transform:scale(1.1);
}

/*=============================
LOADING SCREEN
==============================*/

#loading{
position:fixed;
top:0;
left:0;
width:100%;
height:100%;
display:none;
justify-content:center;
align-items:center;
flex-direction:column;
background:rgba(255,255,255,.95);
z-index:9999;
}

.loader{
width:60px;
height:60px;
border:6px solid #ddd;
border-top:6px solid #0b7d38;
border-radius:50%;
animation:spin 1s linear infinite;
margin-bottom:20px;
}

@keyframes spin{
100%{
transform:rotate(360deg);
}
}

/*=============================
SUCCESS MODAL
==============================*/

.modal{
display:none;
position:fixed;
top:0;
left:0;
width:100%;
height:100%;
justify-content:center;
align-items:center;
background:rgba(0,0,0,.6);
z-index:10000;
}

.modal-content{
background:#fff;
padding:40px;
border-radius:20px;
width:90%;
max-width:500px;
text-align:center;
animation:popup .35s ease;
}

@keyframes popup{
from{
transform:scale(.8);
opacity:0;
}
to{
transform:scale(1);
opacity:1;
}
}

.success-icon{
font-size:75px;
color:#0b7d38;
margin-bottom:20px;
}

#closeModal{
margin-top:25px;
padding:12px 30px;
background:#0b7d38;
color:#fff;
border:none;
border-radius:8px;
cursor:pointer;
font-size:16px;
}

#closeModal:hover{
background:#08652d;
}

/*=============================
RESPONSIVE
==============================*/

@media(max-width:900px){

.hero-content{
grid-template-columns:1fr;
}

.grid{
grid-template-columns:1fr;
}

.footer{
flex-direction:column;
text-align:center;
}

}

@media(max-width:768px){

nav{
display:none;
}

.hero{
padding:70px 0;
}

.hero h1{
font-size:38px;
}

.section-title{
font-size:30px;
}

.form-box{
padding:25px;
}

.btn,
.btn2{
width:100%;
text-align:center;
}

.hero-buttons{
flex-direction:column;
}

.cta h2{
font-size:30px;
}

.logo-icon{
width:50px;
height:50px;
font-size:20px;
}

.logo h2{
font-size:22px;
}

}