*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Vazirmatn',sans-serif;
}

body{
    background:#0b1120;
    color:white;
}

.navbar{
    width:100%;
    height:80px;

    display:flex;
    justify-content:space-between;
    align-items:center;

    padding:0 60px;

    background:#111827;
}

.logo{
    font-size:30px;
    font-weight:bold;
    color:#38bdf8;
}

.menu{
    list-style:none;
    display:flex;
    gap:30px;
}

.menu a{
    color:white;
    text-decoration:none;
}

.menu a:hover{
    color:#38bdf8;
}

.order-btn{

    background:#38bdf8;
    color:black;

    padding:12px 22px;

    border-radius:8px;

    text-decoration:none;

    font-weight:bold;

}

.hero{

    height:85vh;

    display:flex;

    justify-content:center;

    align-items:center;

    text-align:center;

}

.hero-content{

    max-width:700px;

}

.hero h1{

    font-size:55px;

    margin-bottom:20px;

}

.hero p{

    color:#cbd5e1;

    font-size:20px;

    margin-bottom:40px;

}

.buttons{

    display:flex;

    justify-content:center;

    gap:20px;

}

.btn-primary{

    background:#38bdf8;

    color:black;

    text-decoration:none;

    padding:15px 35px;

    border-radius:10px;

}

.btn-secondary{

    border:2px solid #38bdf8;

    color:white;

    text-decoration:none;

    padding:15px 35px;

    border-radius:10px;

}
.badge{
    display:inline-block;
    background:#1e293b;
    color:#38bdf8;
    padding:10px 20px;
    border-radius:30px;
    margin-bottom:25px;
    font-size:15px;
}

.hero h1{
    font-size:60px;
    line-height:1.4;
    margin-bottom:25px;
}

.hero p{
    max-width:650px;
    margin:auto;
    color:#cbd5e1;
    line-height:2;
    margin-bottom:40px;
}
body::before{
    content:"";
    position:fixed;
    width:500px;
    height:500px;
    background:#2563eb;
    filter:blur(180px);
    opacity:.15;
    top:-150px;
    left:-150px;
    z-index:-1;
}

body::after{
    content:"";
    position:fixed;
    width:500px;
    height:500px;
    background:#9333ea;
    filter:blur(180px);
    opacity:.15;
    bottom:-150px;
    right:-150px;
    z-index:-1;
}
.hero{
    min-height:90vh;
    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
    padding:0 20px;
}

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

.badge{
    display:inline-block;
    padding:10px 22px;
    border-radius:30px;
    background:rgba(255,255,255,.08);
    border:1px solid rgba(255,255,255,.15);
    color:#38bdf8;
    margin-bottom:25px;
}

.hero h1{
    font-size:65px;
    line-height:1.3;
    margin-bottom:25px;
}

.hero p{
    font-size:22px;
    color:#cbd5e1;
    line-height:2;
    margin-bottom:40px;
}

.buttons{
    display:flex;
    justify-content:center;
    gap:20px;
}

.btn-primary{
    background:#38bdf8;
    color:#000;
    padding:16px 35px;
    border-radius:12px;
    text-decoration:none;
    font-weight:bold;
    transition:.3s;
}

.btn-primary:hover{
    transform:translateY(-4px);
}

.btn-secondary{
    border:2px solid #38bdf8;
    color:#fff;
    padding:16px 35px;
    border-radius:12px;
    text-decoration:none;
    transition:.3s;
}

.btn-secondary:hover{
    background:#38bdf8;
    color:#000;
}
.stats{
    display:flex;
    justify-content:center;
    gap:30px;
    padding:80px 20px;
    flex-wrap:wrap;
}

.card{
    width:250px;
    padding:35px;
    text-align:center;
    background:rgba(255,255,255,.06);
    border:1px solid rgba(255,255,255,.08);
    border-radius:20px;
    backdrop-filter:blur(10px);
    transition:.3s;
}

.card:hover{
    transform:translateY(-10px);
}

.card h2{
    font-size:45px;
    color:#38bdf8;
    margin-bottom:10px;
}

.card p{
    color:#cbd5e1;
    font-size:18px;
}