*{
margin:0;
padding:0;
box-sizing:border-box;
scroll-behavior:smooth;

  box-sizing: border-box;
  font-family: "Vazirmatn", sans-serif;
}
body{
background:#f4f8fb;
color:#333;
}
header{
background:linear-gradient(135deg,#12d8a0,#1fa2ff);
padding:15px 40px;
position:sticky;
top:0;
z-index:1000;
}
nav{
display:flex;
align-items:center;
justify-content:space-between;
}
/*h*/
.logo{
color:white;
font-size:22px;
font-weight:bold;
}
nav ul{
display:flex;
list-style:none;
gap:25px;
}

nav a{
text-decoration:none;
color:white;
font-size:16px;
}

.section{
padding:70px 20px;
text-align:center;
}
.section h2{
margin-bottom:40px;
font-size:28px;
}
/* شبکه های اجتماعی */
.socials{
display:flex;
flex-wrap:wrap;
justify-content:center;
gap:20px;
margin-bottom:50px;
}

.social-card{
width:120px;
height:120px;
background:white;
border-radius:15px;
box-shadow:0 8px 20px rgba(0,0,0,0.08);
display:flex;
align-items:center;
justify-content:center;
flex-direction:column;
transition:.3s;
}
/*i*/
.social-card:hover{
transform:translateY(-5px);
}

.social-card img{
width:40px;
margin-bottom:8px;
}
/* پلن ها */
.cards{
display:flex;
flex-wrap:wrap;
justify-content:center;
gap:25px;
}

.card{
background:white;
width:260px;
padding:25px;
border-radius:15px;
box-shadow:0 10px 25px rgba(0,0,0,0.08);
transition:.3s;
}

.card:hover{
transform:translateY(-6px);
}
/*a*/
.card i{
font-size:38px;
margin-bottom:15px;
color:#1fa2ff;
}

.price{
font-size:20px;
font-weight:bold;
margin:10px 0;
}

select{
width:100%;
padding:8px;
border-radius:8px;
border:1px solid #ddd;
margin-top:10px;
}

.btn{
display:block;
margin-top:12px;
padding:10px;
background:linear-gradient(135deg,#1fa2ff,#12d8a0);
color:white;
border:none;
border-radius:8px;
cursor:pointer;
}

/* نظرات مشتریان */

.testimonials{
background:#eefaf6;
padding:70px 20px;
text-align:center;
}

.testimonial-cards{
display:flex;
flex-wrap:wrap;
justify-content:center;
gap:25px;
margin-top:40px;
}

.testimonial{
background:white;
width:300px;
padding:20px;
border-radius:15px;
box-shadow:0 8px 20px rgba(0,0,0,0.08);
}

.testimonial i{
color:#12d8a0;
margin-bottom:10px;
}

footer{
background:#222;
color:#ddd;
text-align:center;
padding:20px;
}

@media (max-width:768px){

nav ul{
gap:12px;
font-size:14px;
}

.hero h1{
font-size:24px;
}

.card{
width:90%;
}

.testimonial{
width:90%;
}

}


/* مراحل سفارش */

.steps{
background:linear-gradient(135deg,#1fa2ff,#12d8a0);
padding:70px 20px;
text-align:center;
color:white;
}

.steps-container{
display:flex;
flex-wrap:wrap;
justify-content:center;
gap:25px;
margin-top:40px;
}
/*d*/
.step{
background:white;
color:#333;
width:300px;
padding:25px;
border-radius:15px;
box-shadow:0 8px 20px rgba(0,0,0,0.15);
}

.step i{
font-size:35px;
color:#12d8a0;
margin-bottom:15px;
}


/* ویژگی ها */

.features{
padding:70px 20px;
background:#f7fbff;
text-align:center;
}

.feature-box{
max-width:900px;
margin:auto;
margin-top:40px;
background:white;
border-radius:15px;
box-shadow:0 10px 25px rgba(0,0,0,0.08);
padding:30px;
}

.feature{
display:flex;
justify-content:space-between;
padding:12px;
border-bottom:1px solid #eee;
font-size:15px;
}

.feature span{
font-weight:bold;
color:#1fa2ff;
}

.feature:last-child{
border:none;
}
@media (max-width:768px){

.step{
width:90%;
}
/*ml*/
.feature{
flex-direction:column;
gap:5px;
text-align:right;
}

}
.hero{
background:linear-gradient(135deg,#12d8a0,#1fa2ff);
color:white;
text-align:center;
padding:120px 20px 140px;
position:relative;
overflow:hidden;
}
.hero-icon{
font-size:60px;
margin-bottom:20px;
animation:float 3s ease-in-out infinite;
}
.hero h1{
font-size:32px;
margin-bottom:15px;
}
.hero p{
max-width:600px;
margin:auto;
line-height:1.9;
font-size:16px;
opacity:0.95;
}
.hero-buttons{
margin-top:30px;
}
.btn{
display:inline-block;
padding:12px 25px;
background:white;
color:#1fa2ff;
border-radius:30px;
text-decoration:none;
margin:5px;
font-weight:bold;
transition:0.3s;
}
.btn:hover{
transform:translateY(-3px);
box-shadow:0 8px 20px rgba(0,0,0,0.15);
}

.btn2{
background:#0bbf8a;
color:white;
}

@keyframes float{

0%{transform:translateY(0);}
50%{transform:translateY(-10px);}
100%{transform:translateY(0);}

}


