*{
margin:0;
padding:0;
box-sizing:border-box;
}

body{

font-family:Poppins,sans-serif;

background:#F5F7FB;

color:#222;

}

.container{

width:90%;

max-width:1300px;

margin:auto;

}

header{

background:white;

position:sticky;

top:0;

z-index:1000;

box-shadow:0 5px 20px rgba(0,0,0,.05);

}

nav{

height:80px;

display:flex;

align-items:center;

justify-content:space-between;

}

.logo{

font-size:28px;

font-weight:700;

color:#2563eb;

}

.logo i{

margin-right:8px;

}

nav ul{

display:flex;

list-style:none;

gap:30px;

}

nav a{

text-decoration:none;

color:#444;

font-weight:500;

transition:.3s;

}

nav a:hover{

color:#2563eb;

}

.nav-buttons{

display:flex;

gap:15px;

}

.login-btn{

padding:10px 25px;

border-radius:40px;

border:2px solid #2563eb;

}

.register-btn{

padding:10px 25px;

border-radius:40px;

background:#2563eb;

color:white;

}

.hero{

padding:90px 0;

}

.hero-grid{

display:grid;

grid-template-columns:1fr 1fr;

gap:60px;

align-items:center;

}

.badge{

background:#DBEAFE;

padding:10px 18px;

border-radius:50px;

display:inline-block;

margin-bottom:20px;

color:#2563eb;

font-weight:600;

}

.hero h1{

font-size:58px;

line-height:1.2;

margin-bottom:25px;

}

.hero h1 span{

color:#2563eb;

}

.hero p{

font-size:20px;

color:#666;

line-height:1.8;

margin-bottom:35px;

}

.hero-buttons{

display:flex;

gap:20px;

margin-bottom:50px;

}

.btn-primary{

padding:16px 35px;

background:#2563eb;

color:white;

border-radius:40px;

text-decoration:none;

font-weight:600;

}

.btn-secondary{

padding:16px 35px;

background:white;

border-radius:40px;

text-decoration:none;

color:#2563eb;

box-shadow:0 10px 30px rgba(0,0,0,.08);

}

.stats{

display:flex;

gap:70px;

}

.stats h2{

font-size:34px;

color:#2563eb;

}

.hero-right{

position:relative;

height:550px;

}

.hero-card{

background:white;

border-radius:30px;

padding:60px;

box-shadow:0 30px 70px rgba(0,0,0,.08);

text-align:center;

position:absolute;

width:100%;

height:100%;

display:flex;

justify-content:center;

align-items:center;

flex-direction:column;

}

.hero-card i{

font-size:90px;

color:#2563eb;

margin-bottom:25px;

}

.hero-card h3{

font-size:34px;

margin-bottom:10px;

}

.floating-card{

position:absolute;

background:white;

padding:18px 30px;

border-radius:50px;

box-shadow:0 15px 40px rgba(0,0,0,.08);

font-weight:600;

animation:float 4s ease-in-out infinite;

}

.card1{

left:-20px;

top:80px;

}

.card2{

right:-30px;

top:170px;

}

.card3{

bottom:50px;

left:50px;

}

@keyframes float{

50%{

transform:translateY(-15px);

}

}

@media(max-width:1000px){

.hero-grid{

grid-template-columns:1fr;

}

nav ul{

display:none;

}

.stats{

gap:30px;

}

.hero h1{

font-size:40px;

}

.hero-right{

height:420px;

}

}