/* GLOBAL */

body{
font-family:'Poppins',sans-serif;
margin:0;
padding:0;
background:#ffffff;
color:#333;
scroll-behavior:smooth;
}

/* HERO SECTION */

.hero-section{
position:relative;
height:90vh;
overflow:hidden;
}

.hero-section video{
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
object-fit:cover;
z-index:-2;
}

.hero-overlay{
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
background:linear-gradient(rgba(0,0,0,0.35),rgba(0,0,0,0.35));
z-index:-1;
}

/* HERO TEXT */

.hero-content{
position:absolute;
top:50%;
left:50%;
transform:translate(-50%,-50%);
text-align:center;
color:white;
max-width:800px;
padding:20px;
text-shadow:0 4px 20px rgba(0,0,0,0.6);
}

.hero-content h1{
font-size:52px;
font-weight:700;
letter-spacing:1px;
margin-bottom:15px;
}

.hero-content p{
font-size:20px;
margin-bottom:30px;
opacity:0.95;
}

/* HERO BUTTON */

.hero-content .btn{
padding:14px 38px;
font-size:18px;
border-radius:40px;
background:linear-gradient(135deg,#ff7a00,#ffb347);
border:none;
color:white;
transition:all 0.3s ease;
}

.hero-content .btn:hover{
transform:translateY(-3px);
background:white;
color:#ff7a00;
box-shadow:0 10px 25px rgba(0,0,0,0.2);
}

/* MOBILE HERO */

@media(max-width:768px){

.hero-content h1{
font-size:36px;
}

.hero-content p{
font-size:16px;
}

.hero-section{
height:75vh;
}

}

/* ABOUT SECTION */

.about-section{
padding:80px 0;
background:#ffffff;
}

.about-section h2{
font-weight:600;
margin-bottom:20px;
color:#111;
}

.about-list{
list-style:none;
padding:0;
}

.about-list li{
padding:6px 0;
font-size:16px;
}

/* STATISTICS */

.stats-section{
background:#fff5eb;
padding:60px 0;
text-align:center;
}

.stats-section h2{
color:#ff7a00;
font-size:42px;
font-weight:700;
}

.stats-section p{
font-size:18px;
color:#555;
}

/* EVENTS SECTION */

.events-section{
padding:80px 0;
background:#f9f9f9;
}

.section-title{
font-size:36px;
font-weight:700;
margin-bottom:40px;
}

.events-wrapper{
position:relative;
}

.events-scroll{
display:flex;
gap:25px;
overflow-x:auto;
scroll-behavior:smooth;
padding:10px;
}

.events-scroll::-webkit-scrollbar{
display:none;
}

.event-card{
min-width:300px;
flex-shrink:0;
background:#fff;
border-radius:12px;
overflow:hidden;
box-shadow:0 5px 15px rgba(0,0,0,0.1);
transition:0.3s;
}

.event-card img{
width:100%;
height:200px;
object-fit:cover;
}

.event-card h4{
margin:15px;
font-weight:600;
}

.event-card p{
margin:0 15px 20px;
font-size:14px;
color:#666;
}

.event-card:hover{
transform:translateY(-6px);
box-shadow:0 10px 30px rgba(0,0,0,0.2);
}

/* Scroll buttons */

.scroll-btn{
position:absolute;
top:45%;
background:#ff7a00;
color:white;
border:none;
font-size:28px;
width:45px;
height:45px;
border-radius:50%;
cursor:pointer;
z-index:10;
display:flex;
align-items:center;
justify-content:center;
transition:0.3s;
}

.scroll-btn:hover{
background:#111827;
}

.scroll-btn.left{
left:-20px;
}

.scroll-btn.right{
right:-20px;
}

/* LEADERSHIP */

.leader-card{
background:white;
border-radius:12px;
padding:20px;
box-shadow:0 6px 20px rgba(0,0,0,0.08);
transition:0.3s;
text-align:center;
height:100%;
}

.leader-card:hover{
transform:translateY(-8px);
box-shadow:0 12px 35px rgba(0,0,0,0.2);
}

.leader-card img{
width:100%;
height:260px;
object-fit:cover;
border-radius:10px;
margin-bottom:15px;
}

.leader-card h5{
font-size:20px;
font-weight:600;
margin-bottom:5px;
}

.leader-card p{
color:#666;
}

/* INITIATIVES */

.initiative-section{
padding:80px 0;
background:#f7f7f7;
}

.initiative-box{
padding:30px;
background:white;
border-radius:12px;
box-shadow:0 6px 20px rgba(0,0,0,0.08);
transition:0.3s;
text-align:center;
}

.initiative-box:hover{
background:linear-gradient(135deg,#ff7a00,#ffb347);
color:white;
transform:translateY(-8px);
}

.initiative-box i{
font-size:40px;
margin-bottom:10px;
color:#ff7a00;
}

.initiative-box:hover i{
color:white;
}

/* CTA SECTION */

.cta-section{
background:linear-gradient(135deg,#ffffff,#f1f1f1,#e5e7eb);
color:#333;
padding:90px 0;
text-align:center;
border-top:1px solid #e5e7eb;
}

.cta-section h2{
font-weight:600;
margin-bottom:15px;
color:#111;
}

.cta-section p{
color:#555;
font-size:18px;
}

.cta-section .btn{
background:linear-gradient(135deg,#ff7a00,#ffb347);
color:white;
border:none;
padding:14px 35px;
font-weight:600;
border-radius:40px;
transition:0.3s;
box-shadow:0 8px 20px rgba(0,0,0,0.15);
}

.cta-section .btn:hover{
transform:scale(1.05);
background:#111827;
color:white;
}

/* FOOTER */

.footer{
background:#f9fafb;
color:#333;
padding:60px 0 20px 0;
border-top:1px solid #e5e7eb;
}

.footer h5{
margin-bottom:20px;
font-weight:600;
color:#111;
}

.footer ul{
list-style:none;
padding:0;
}

.footer ul li{
padding:6px 0;
}

.footer ul li a{
color:#555;
text-decoration:none;
transition:0.3s;
}

.footer ul li a:hover{
color:#ff7a00;
padding-left:6px;
}

.footer p{
color:#555;
}

.footer hr{
border-color:#e5e7eb;
margin-top:30px;
}

/* SOCIAL ICONS */

.social-icons i{
font-size:18px;
margin:8px;
background:#ff7a00;
color:white;
padding:10px;
border-radius:50%;
cursor:pointer;
transition:0.3s;
}

.social-icons i:hover{
background:#111827;
transform:scale(1.15);
}

/* FOOTER BOTTOM */

.footer-bottom{
display:flex;
justify-content:space-between;
flex-wrap:wrap;
font-size:14px;
margin-top:20px;
color:#666;
}

/* BACK TO TOP BUTTON */

#topBtn{
display:none;
position:fixed;
bottom:30px;
right:30px;
z-index:999;
border:none;
outline:none;
background:linear-gradient(135deg,#ff7a00,#ffb347);
color:white;
cursor:pointer;
padding:14px;
border-radius:50%;
font-size:18px;
box-shadow:0 5px 15px rgba(0,0,0,0.3);
transition:0.3s;
}

#topBtn:hover{
background:#111827;
transform:scale(1.1);
}