*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Vazirmatn',sans-serif;
}

body{
background:#f5f6fa;
color:#333;
line-height:1.8;
}

.container{
width:90%;
max-width:1200px;
margin:auto;
}


header{
background:white;
box-shadow:0 2px 10px rgba(0,0,0,0.1);
}

.header-flex{
display:flex;
justify-content:space-between;
align-items:center;
padding:20px 0;
}

.logo{
font-size:24px;
font-weight:700;
}

.logo span{
color:#27ae60;
}

nav a{
margin:0 10px;
text-decoration:none;
color:#333;
font-weight:500;
}


.hero{
background:linear-gradient(120deg,#27ae60,#2ecc71);
color:white;
padding:120px 0;
text-align:center;
}

.hero h1{
font-size:40px;
margin-bottom:20px;
}

.hero p{
margin-bottom:30px;
font-size:18px;
}

.btn{
background:white;
color:#27ae60;
padding:12px 30px;
text-decoration:none;
border-radius:5px;
font-weight:bold;
}


.services{
padding:80px 0;
background:white;
}

.services h2{
text-align:center;
margin-bottom:40px;
}

.service-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:20px;
}

.card{
background:#f9f9f9;
padding:30px;
border-radius:10px;
text-align:center;
transition:0.3s;
}

.card:hover{
transform:translateY(-5px);
box-shadow:0 5px 20px rgba(0,0,0,0.1);
}



.request{
padding:80px 0;
background:#ecf0f1;
}

.request form{
display:grid;
gap:15px;
max-width:600px;
margin:auto;
}

.request input,
.request select,
.request textarea{
padding:12px;
border:1px solid #ccc;
border-radius:6px;
}

.request button{
background:#27ae60;
color:white;
border:none;
padding:12px;
font-size:16px;
cursor:pointer;
border-radius:6px;
}


.about{
padding:80px 0;
text-align:center;
}


footer{
background:#222;
color:white;
padding:40px 0;
}

.footer-grid{
display:flex;
justify-content:space-between;
margin-bottom:20px;
}

.copy{
text-align:center;
font-size:14px;
opacity:0.7;
}

.login-btn{

background:#2c3e50;
color:white;
padding:8px 16px;
border-radius:5px;
margin-right:10px;
transition:0.3s;

}

.login-btn:hover{

background:#27ae60;
color:white;

}
