@import url('https://fonts.googleapis.com/css2?family=Vazirmatn:wght@300;400;500;700;800&display=swap');

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Vazirmatn',sans-serif;
}

body{
    background:#f8fafb;
    color:#0e1b79;
}

/* HEADER */


    header{
    background:linear-gradient(135deg,#0b1b3a,#0a2a66);
    color:white;
    padding:25px 40px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    flex-wrap:wrap;
    box-shadow:0 4px 20px rgba(0,0,0,.15);
}

.logo h1{
    font-size:32px;
    font-weight:800;
    color:#60a5fa;
}

.logo p{
    margin-top:8px;
    color:#93c5fd;
}


.contact-top a{
    color:white;
    text-decoration:none;
    font-size:18px;
    font-weight:600;
}

/* HERO */

.hero{
    background:linear-gradient(
        135deg,
        #0f172a,
        #1e3a8a,
        #2563eb
    );

    color:white;
    text-align:center;
    padding:120px 20px;
}

.hero h2{
    font-size:58px;
    font-weight:800;
    margin-bottom:20px;
}

.hero p{
    font-size:22px;
    line-height:2;
    max-width:800px;
    margin:auto;
}

.hero-buttons{
    margin-top:40px;
}

.hero-buttons a{
    display:inline-block;
    margin:10px;
    padding:15px 35px;
    border-radius:12px;
    text-decoration:none;
    font-weight:700;
    transition:.3s;
}

.btn-primary{
    background:white;
    color:#1e3a8a;
}

.btn-secondary{
    background:#16a34a;
    color:white;
}

.btn-primary:hover,
.btn-secondary:hover{
    transform:translateY(-3px);
}

/* CATEGORIES */

.categories{
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:30px;
    padding:70px 20px;
}

.card{
    width:320px;
    background:white;
    padding:45px;
    text-align:center;
    border-radius:20px;
    text-decoration:none;
    color:#111827;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.4s;
}

.card:hover{
    transform:translateY(-10px);
    box-shadow:0 15px 40px rgba(37,99,235,.25);
}

.card h3{
    font-size:28px;
    margin-bottom:15px;
}

.card p{
    color:#64748b;
}

/* FEATURES */

.features{
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:20px;
    padding:20px 20px 60px;
}

.features div{
    background:white;
    padding:20px 30px;
    border-radius:15px;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
    font-weight:700;
}

/* TITLES */

.page-title{
    text-align:center;
    margin-top:40px;
    margin-bottom:20px;
    font-size:40px;
    color:#0f172a;
}

h2{
    text-align:center;
    margin-top:40px;
    margin-bottom:20px;
}

/* GALLERY */

.gallery{
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:25px;
    padding:20px;
}

.gallery img{
    max-width:500px;
    width:100%;
    height:auto;
    border-radius:18px;
    box-shadow:0 8px 25px rgba(0,0,0,.15);
    transition:.4s;
}

.gallery img:hover{
    transform:scale(1.03);
}

/* BUTTONS */

.back{
    display:inline-block;
    margin:25px;
    padding:12px 25px;
    background:#2563eb;
    color:white;
    text-decoration:none;
    border-radius:10px;
    font-weight:700;
}

.order-btn{
    display:block;
    width:280px;
    margin:50px auto;
    text-align:center;
    padding:18px;
    background:#16a34a;
    color:white;
    text-decoration:none;
    border-radius:12px;
    font-size:20px;
    font-weight:700;
    transition:.3s;
}

.order-btn:hover{
    transform:scale(1.05);
}

/* WHATSAPP */

.whatsapp{
    position:fixed;
    left:20px;
    bottom:20px;
    background:#25d366;
    color:white;
    text-decoration:none;
    padding:15px 20px;
    border-radius:50px;
    font-weight:700;
    box-shadow:0 5px 15px rgba(0,0,0,.2);
}

/* FOOTER */

footer{
    background:#0f172a;
    color:white;
    text-align:center;
    padding:40px;
    margin-top:60px;
}

footer p{
    margin:8px 0;
}

/* MOBILE */

@media(max-width:768px){

    .hero h2{
        font-size:36px;
    }

    .hero p{
        font-size:18px;
    }

    .card{
        width:90%;
    }

    .gallery img{
        max-width:100%;
    }

}