html{
scroll-behavior:smooth;
}

body{
margin:0;
font-family:'Poppins',sans-serif;
background:linear-gradient(135deg,#0f2027,#203a43,#2c5364);
color:#fff;
}

/* NAVBAR */
nav{
position:fixed;
top:0;
width:100%;
display:flex;
justify-content:center;
gap:40px;
background:rgba(0,0,0,0.4);
backdrop-filter:blur(10px);
padding:15px;
z-index:1000;
}

nav a{
color:#fff;
text-decoration:none;
font-weight:500;
position:relative;
}
nav a.active{
color:#00ffd5;
}

/* SECTIONS */

section{
min-height:100vh;
display:flex;
align-items:center;
justify-content:center;
padding:120px 20px 60px;
}
.card{
max-width:1000px;
background:rgba(255,255,255,0.05);
padding:40px;
border-radius:20px;
backdrop-filter:blur(12px);
box-shadow:0 0 25px rgba(0,0,0,0.3);
opacity:0;
transform:translateY(40px);
transition:0.8s;
}

.card.show{
opacity:1;
transform:translateY(0);
}
h1{
text-align:center;
margin-bottom:20px;
color:#00ffd5;
}

p, li{
line-height:1.8;
opacity:.9;
}

ul{
padding-left:20px;
}

footer{
text-align:center;
padding:20px;
opacity:.7;
}

