*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:Poppins,sans-serif;
}

body{
background:#fafafa;
color:#333;
line-height:1.8;
}
/* ===========================
   NAVBAR
=========================== */

header{

position:fixed;

top:0;

left:0;

width:100%;

z-index:999;

}

.navbar{

max-width:1200px;

margin:20px auto;

display:flex;

justify-content:space-between;

align-items:center;

padding:18px 30px;

background:rgba(255,255,255,.75);

backdrop-filter:blur(16px);

border-radius:20px;

box-shadow:0 15px 35px rgba(0,0,0,.08);

}

.logo a{

text-decoration:none;

color:#8B5CF6;

font-size:28px;

font-weight:700;

}

.nav-links{

display:flex;

list-style:none;

gap:30px;

}

.nav-links a{

text-decoration:none;

color:#555;

font-weight:500;

transition:.3s;

}

.nav-links a:hover{

color:#8B5CF6;

}

.desktop-btn{

padding:12px 25px;

border:2px solid #8B5CF6;

border-radius:40px;

text-decoration:none;

color:#8B5CF6;

}

.hamburger{

display:none;

cursor:pointer;

}

.hamburger span{

display:block;

width:28px;

height:3px;

background:#111;

margin:6px 0;

transition:.35s;

border-radius:20px;

}


.hero{
padding:120px 20px;
background:linear-gradient(135deg,#8B5CF6,#D946EF);
color:white;
text-align:center;
}

.hero h1{
font-size:56px;
margin-bottom:15px;
}

.hero p{
font-size:18px;
}

.content{
max-width:1000px;
margin:70px auto;
padding:20px;
}

.card{
background:white;
padding:35px;
border-radius:18px;
margin-bottom:30px;
box-shadow:0 15px 35px rgba(0,0,0,.06);
}

.card h2{
margin-bottom:20px;
color:#8B5CF6;
}

.card ul{
padding-left:20px;
}

.card li{
margin-bottom:10px;
}

footer{
margin-top:100px;
padding:40px;
background:#111827;
color:white;
text-align:center;
}

@media(max-width:900px){

.hamburger{

display: block !important;
}
.contact{

grid-template-columns:1fr;

}

.hero h1{

font-size:40px;

}

}
@media(max-width:900px){

.desktop-btn{

display:none;

}

.hamburger{

display:block;

z-index:1001;

}

.nav-links{

position:fixed;

top:0;

right:-100%;

width:280px;

height:100vh;

background:white;

display:flex;

flex-direction:column;

justify-content:center;

align-items:center;

gap:30px;

transition:.35s;

box-shadow:-10px 0 40px rgba(0,0,0,.12);

}

.nav-links.active{

right:0;

}

.contact{

grid-template-columns:1fr;

}

.hero h1{

font-size:42px;

}

}