body{
margin:0;
font-family: 'Poppins', sans-serif;
background:#0b0c10;
color:white;
}

/* NAVBAR */
.navbar{
display:flex;
justify-content:space-between;
align-items:center;
padding:15px 40px;
background:rgba(0,0,0,0.7);
backdrop-filter: blur(10px);
position:sticky;
top:0;
z-index:1000;
}

.navbar a{
color:white;
text-decoration:none;
margin-left:20px;
font-weight:500;
transition:0.3s;
}

.navbar a:hover{
color:#00f7ff;
}

/* HERO */
.hero{
height:600px;
background:linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.9)), url('../images/hero.jpg');
background-size:cover;
background-position:center;
display:flex;
flex-direction:column;
justify-content:center;
align-items:center;
text-align:center;
}

.hero h1{
font-size:60px;
margin:0;
}

.hero p{
font-size:20px;
margin-top:10px;
}

.btn{
background:linear-gradient(45deg,#ff416c,#ff4b2b);
padding:12px 30px;
color:white;
text-decoration:none;
border-radius:30px;
margin-top:20px;
display:inline-block;
transition:0.3s;
}

.btn:hover{
transform:scale(1.1);
}

/* SECTION */
.section{
padding:80px 40px;
text-align:center;
}

/* CARDS */
.cards{
display:flex;
flex-wrap:wrap;
gap:25px;
justify-content:center;
}

.card{
width:260px;
background:rgba(255,255,255,0.05);
backdrop-filter: blur(10px);
border-radius:15px;
overflow:hidden;
transition:0.3s;
}

.card:hover{
transform:translateY(-10px);
}

.card img{
width:100%;
height:220px;
object-fit:cover;
}

.card h3{
margin:10px 0 5px;
}

.card p{
color:#ccc;
}

/* CTA */
.cta{
background:linear-gradient(45deg,#141e30,#243b55);
padding:60px;
}

/* FOOTER */
.footer{
background:#000;
padding:30px;
text-align:center;
color:#aaa;
}
.hero {
height:650px;
background:linear-gradient(rgba(0,0,0,0.7),rgba(0,0,0,0.8)),
url('../images/hero.jpg');
background-size:cover;
background-position:center;
}
.footer-main{
background:linear-gradient(180deg,#0a1f44,#1c2f7a);
color:white;
padding:50px 20px 0;
}

/* PARTNERS */
.partners{
text-align:center;
margin-bottom:40px;
}

.partner-logos{
display:flex;
justify-content:center;
gap:20px;
margin:15px 0;
}

.partner-logos img{
width:120px;
background:white;
padding:10px;
border-radius:10px;
}

/* LINKS */
.footer-links{
display:flex;
justify-content:space-around;
flex-wrap:wrap;
margin-top:40px;
}

.footer-links h4{
margin-bottom:10px;
}

.footer-links p{
color:#ccc;
margin:5px 0;
cursor:pointer;
}

/* SOCIAL */
.social span{
font-size:22px;
margin-right:10px;
cursor:pointer;
}

/* BOTTOM */
.footer-bottom{
text-align:center;
background:#f15a24;
margin-top:30px;
padding:15px;
font-size:14px;
}
.slider{
position:relative;
height:650px;
overflow:hidden;
}

.slides{
position:relative;
height:100%;
}
.slides{
position:relative;
height:100%;
}

.slide{
position:absolute;
width:100%;
height:100%;
opacity:0;
visibility:hidden;
transition:opacity 1s ease-in-out;
}

.slide.active{
opacity:1;
visibility:visible;
z-index:1;
}

.slide img{
width:100%;
height:100%;
object-fit:cover;
}

/* CAPTION */
.caption{
position:absolute;
top:50%;
left:50%;
transform:translate(-50%,-50%);
text-align:center;
color:white;
}

.caption h1{
font-size:60px;
}

.caption p{
font-size:20px;
}