*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Poppins',sans-serif;
}

body{
background:#2f364a;
color:white;
}

/* ================= NAVBAR ================= */
nav{
background:#141a2a;
display:flex;
justify-content:space-between;
align-items:center;
padding:15px 50px;
}

.logo{
display:flex;
align-items:center;
gap:10px;
}

.logo img{
height:45px;
border-radius:50%;
background:white;
padding:4px;
}

.logo span{
font-size:24px;
font-weight:700;
color:#6edbd5;
}

nav ul{
list-style:none;
display:flex;
gap:25px;
}

nav a{
color:white;
text-decoration:none;
font-weight:500;
padding:6px 12px;
border-radius:6px;
}

nav a.active{
background:#f2e9b8;
color:#111;
}

.logout{
background:#63b7b6;
color:#111;
border:none;
padding:8px 16px;
border-radius:6px;
font-weight:600;
cursor:pointer;
}

/* ================= HERO ================= */
.hero{
height:380px;
background:linear-gradient(rgba(0,0,0,0.4),rgba(0,0,0,0.4)),
url("8.png") center/cover no-repeat;
display:flex;
flex-direction:column;
justify-content:center;
align-items:center;
text-align:center;
padding:20px;
}

.hero h1{
font-size:48px;
font-weight:700;
color:black;
}

.hero p{
margin-top:10px;
font-size:20px;
font-style:italic;
color:black;
}

.hero-buttons{
margin-top:25px;
}

.hero button{
padding:14px 30px;
margin:0 10px;
border-radius:8px;
font-size:18px;
font-weight:600;
cursor:pointer;
border:none;
}

.start{
background:#1b2236;
color:white;
}

.learn{
background:#9aa5a7;
color:white;
}

/* ================= FEATURES ================= */
.features{
display:flex;
justify-content:center;
gap:25px;
padding:40px 20px;
}

.feature{
background:#63b7b6;
padding:25px;
border-radius:12px;
width:300px;
display:flex;
align-items:center;
gap:15px;
}

.feature h3{
color:#f2e9b8;
}

.feature p{
font-size:14px;
}

/* ================= SECTION TITLE ================= */
.section-title{
text-align:center;
font-size:28px;
margin:20px 0;
position:relative;
}

.section-title::before,
.section-title::after{
content:"";
position:absolute;
top:50%;
width:30%;
height:2px;
background:#aaa;
}

.section-title::before{
left:0;
}

.section-title::after{
right:0;
}

/* ================= CARDS ================= */
.cards{
display:flex;
justify-content:center;
gap:25px;
flex-wrap:wrap;
padding:30px;
}

.card{
background:#d8e3ec;
color:#111;
width:250px;
padding:20px;
border-radius:12px;
text-align:center;
}

.card img{
width:100%;
border-radius:8px;
}

.card h3{
margin:10px 0;
}

.card button{
margin-top:10px;
padding:10px 20px;
border:none;
background:#4b6ea9;
color:white;
border-radius:6px;
cursor:pointer;
}

/* ================= FOOTER ================= */
footer{
background:#63b7b6;
padding:40px;
display:flex;
justify-content:space-around;
margin-top:30px;
}

footer h3{
margin-bottom:10px;
border-bottom:2px solid black;
padding-bottom:5px;
}

footer p{
margin:6px 0;
}