/* ===================================
   GLOBAL
=================================== */

body{
margin:0;
font-family:Segoe UI,Arial;
background:#0b0d22;
color:white;
scroll-behavior:smooth;
}

h1,h2,h3{
margin:0 0 15px;
}

section{
padding:80px 8%;
}

img{
max-width:100%;
display:block;
}


/* ===================================
   NAVBAR
=================================== */

.navbar{
display:flex;
justify-content:space-between;
align-items:center;
padding:18px 8%;
background:#020617;
position:sticky;
top:0;
z-index:1000;
}

.logo{
height:60px;
}

nav a{
color:white;
text-decoration:none;
margin:0 15px;
font-weight:500;
}

nav button{
background:#2563eb;
border:none;
padding:10px 18px;
border-radius:25px;
color:white;
cursor:pointer;
}


/* ===================================
   HERO SECTION
=================================== */

.hero{
display:flex;
align-items:center;
justify-content:space-between;
background:linear-gradient(90deg,#020617,#22004a);
min-height:85vh;
}

.hero-left{
max-width:550px;
}

.hero h1{
font-size:60px;
line-height:1.2;
}

.hero p{
color:#cbd5e1;
margin:20px 0;
}

.hero button{
background:#2563eb;
border:none;
padding:15px 28px;
border-radius:30px;
color:white;
font-size:16px;
cursor:pointer;
}

.hero-right img{
width:420px;
}


/* ===================================
   COURSES SECTION
=================================== */

#courses{
background:#020617;
}

.scroll{
display:flex;
gap:25px;
overflow-x:auto;
padding-top:20px;
}

.card{
min-width:260px;
background:#15183a;
border-radius:14px;
padding:15px;
transition:.3s;
}

.card:hover{
transform:translateY(-6px);
}

.card img{
height:170px;
object-fit:cover;
border-radius:10px;
margin-bottom:10px;
}


/* ===================================
   TESTIMONIALS
=================================== */

#performances{
background:#f1f5f9;
color:black;
}

.performance-card{
background:white;
border-radius:14px;
padding:20px;
min-width:250px;
text-align:center;
box-shadow:0 5px 20px rgba(0,0,0,.08);
}

.performance-card img{
width:90px;
height:90px;
border-radius:50%;
object-fit:cover;
margin:auto;
margin-bottom:10px;
}


/* ===================================
   GALLERY
=================================== */

#gallery{
background:#020617;
}

.gallery-card{
min-width:250px;
}

.gallery-card img{
border-radius:12px;
height:180px;
object-fit:cover;
}


/* ===================================
   NEWS SECTION
=================================== */

#news{
background:#111827;
}

.news-item{
background:#1e293b;
padding:20px;
border-radius:12px;
margin-bottom:15px;
}


/* ===================================
   DOWNLOAD APP
=================================== */

#downloadApp{
background:#f4f6f9;
color:black;
text-align:center;
}

.download-box{
max-width:750px;
margin:auto;
background:white;
padding:30px;
border-radius:20px;
box-shadow:0 10px 40px rgba(0,0,0,.08);
}

.download-banner{
width:100%;
max-width:600px;
margin:auto;
border-radius:15px;
margin-bottom:25px;
}

.download-buttons{
display:flex;
justify-content:center;
gap:20px;
flex-wrap:wrap;
}

.download-buttons img{
height:55px;
cursor:pointer;
transition:.3s;
}

.download-buttons img:hover{
transform:scale(1.05);
}


/* ===================================
   FOOTER
=================================== */

footer{
background:#020617;
text-align:center;
padding:30px;
color:#94a3b8;
}


/* ===================================
   SCROLLBAR
=================================== */

::-webkit-scrollbar{
height:8px;
}

::-webkit-scrollbar-thumb{
background:#2563eb;
border-radius:10px;
}


/* ===================================
   MOBILE RESPONSIVE
=================================== */

@media(max-width:900px){

.hero{
flex-direction:column;
text-align:center;
}

.hero-right img{
margin-top:40px;
width:300px;
}

nav{
display:none;
}

}