/* =========================
   VOF UNIVERSITY SPONSORSHIP
========================= */

*{
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;
}

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

/* Header */

header{
background:#fff;
position:sticky;
top:0;
z-index:1000;
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;
align-items:center;
justify-content:center;
color:#fff;
font-size:24px;
}

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

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

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

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

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

/* Hero */

.hero{
padding:90px 0;
background:linear-gradient(135deg,#0b7d38,#20b15f);
color:#fff;
}

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

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

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

.hero h1 span{
color:#d9ffd9;
}

.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);
}

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

.btn-outline:hover{
background:#fff;
color:#0b7d38;
}

.hero-card{
background:#fff;
color:#222;
padding:35px;
border-radius:20px;
box-shadow:0 20px 45px rgba(0,0,0,.15);
}

.hero-card h3{
color:#0b7d38;
margin-bottom:25px;
}

.feature{
display:flex;
align-items:center;
gap:12px;
margin:18px 0;
}

.feature i{
color:#0b7d38;
font-size:20px;
}

/* 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:850px;
margin:auto;
text-align:center;
color:#666;
}

/* Cards */

.cards{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,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);
}

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

.card h3{
margin-bottom:15px;
color:#0b7d38;
}
/* =========================
   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;
margin-bottom:10px;
font-size:34px;
}

.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;
background:#fff;
}

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:140px;
}

.submit-btn{
margin-top:30px;
width:100%;
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;
}

/* =========================
   Footer
========================= */

footer{
background:#0b7d38;
color:#fff;
margin-top:80px;
}

.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;
}

.footer-links a:hover{
text-decoration:underline;
}

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

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

/* =========================
   Scroll Button
========================= */

#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,.2);
transition:.3s;
}

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

/* =========================
   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:55px;
height:55px;
border:5px solid #ddd;
border-top:5px 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,.55);
z-index:99999;
}

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

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

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

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

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

/* =========================
   Mobile Responsive
========================= */

@media(max-width:900px){

.hero-grid{
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:36px;
}

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

.form-box{
padding:25px;
}

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

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

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

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