*{
margin:0;
padding:0;
box-sizing:border-box;
}

body{
font-family:'Poppins',sans-serif;
background:#07111f;
color:white;
overflow-x:hidden;
}

.bg{
position:fixed;
width:200%;
height:200%;
background:
radial-gradient(circle,#3b82f633 1px,transparent 1px);
background-size:40px 40px;
animation:bgMove 30s linear infinite;
z-index:-1;
}

@keyframes bgMove{
0%{transform:translate(0,0);}
100%{transform:translate(-250px,-250px);}
}

.hero{
padding:140px 20px 100px;
text-align:center;
background:linear-gradient(135deg,#0f172a,#0b3b70);
}

.hero-content{
max-width:900px;
margin:auto;
}

.hero h1{
font-size:72px;
margin-bottom:25px;
background:linear-gradient(to right,#60a5fa,#ffffff);
-webkit-background-clip:text;
-webkit-text-fill-color:transparent;
}

.hero p{
font-size:20px;
line-height:1.8;
color:#dbeafe;
}

.hero-btn{
display:inline-block;
margin-top:40px;
padding:18px 38px;
background:linear-gradient(135deg,#2563eb,#3b82f6);
color:white;
text-decoration:none;
border-radius:14px;
font-weight:600;
transition:0.3s;
}

.hero-btn:hover{
transform:translateY(-5px);
}

.cards{
max-width:1200px;
margin:80px auto;
padding:0 20px;
display:grid;
grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
gap:30px;
}

.card{
background:rgba(255,255,255,0.05);
border:1px solid rgba(255,255,255,0.08);
backdrop-filter:blur(12px);
padding:35px;
border-radius:24px;
transition:0.3s;
}

.card:hover{
transform:translateY(-10px);
border-color:#60a5fa;
}

.logo{
width:70px;
height:70px;
background:white;
padding:10px;
border-radius:18px;
margin-bottom:20px;
}

.card h2{
font-size:28px;
margin-bottom:18px;
color:#93c5fd;
}

.card p{
line-height:1.9;
color:#dbeafe;
}

.btn{
display:inline-block;
margin-top:28px;
padding:14px 28px;
background:linear-gradient(135deg,#2563eb,#60a5fa);
color:white;
text-decoration:none;
border-radius:12px;
font-weight:600;
}

@media(max-width:768px){

.hero h1{
font-size:48px;
}

.hero p{
font-size:17px;
}

}
