/* -------------------- */
/*  SaeedRezaValizadeh  */
/* -------------------- */

*{
margin:0;
padding:0;
box-sizing:border-box;
scroll-behavior:smooth;
}

body{

font-family:'Vazirmatn',sans-serif;

background:#f5f7fb;

color:#222;

line-height:1.9;

}

.container{

width:90%;

max-width:1200px;

margin:auto;

}

header{

position:fixed;

top:0;

right:0;

width:100%;

background:#0B132B;

padding:18px 0;

z-index:999;

box-shadow:0 3px 12px rgba(0,0,0,.15);

}

header .container{

display:flex;

justify-content:space-between;

align-items:center;

}

.logo h2{

color:#fff;

font-size:22px;

}

nav ul{

display:flex;

gap:30px;

list-style:none;

}

nav a{

color:white;

text-decoration:none;

font-size:15px;

transition:.3s;

}

nav a:hover{

color:#C8A24D;

}

.hero{

height:100vh;

background:linear-gradient(rgba(11,19,43,.85),rgba(11,19,43,.85)),
url(images/background.jpg);

background-size:cover;

background-position:center;

display:flex;

justify-content:center;

align-items:center;

text-align:center;

color:white;

padding:20px;

}

.hero h1{

font-size:55px;

margin-bottom:15px;

}

.hero h3{

font-size:28px;

margin-bottom:20px;

font-weight:500;

color:#C8A24D;

}

.hero p{

font-size:20px;

max-width:800px;

margin:auto;

margin-bottom:40px;

}

.btn{

display:inline-block;

padding:15px 35px;

background:#C8A24D;

color:white;

border-radius:50px;

text-decoration:none;

transition:.3s;

}

.btn:hover{

background:#2F80ED;

transform:translateY(-3px);

}

section{

padding:90px 0;

}

section h2{

font-size:34px;

text-align:center;

margin-bottom:10px;

color:#0B132B;

}

.line{

width:90px;

height:4px;

background:#C8A24D;

margin:15px auto 45px;

border-radius:20px;

}

.cards{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(260px,1fr));

gap:25px;

}

.card{

background:white;

padding:30px;

border-radius:15px;

box-shadow:0 5px 20px rgba(0,0,0,.08);

transition:.3s;

}

.card:hover{

transform:translateY(-8px);

}

.card h3{

margin-bottom:15px;

color:#0B132B;

}

.why-grid{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(250px,1fr));

gap:25px;

}

.why-item{

background:white;

padding:25px;

border-radius:15px;

box-shadow:0 4px 15px rgba(0,0,0,.08);

}

.license-box{

display:flex;

gap:40px;

align-items:center;

flex-wrap:wrap;

}

.license-box img{

max-width:420px;

width:100%;

border-radius:12px;

box-shadow:0 8px 25px rgba(0,0,0,.15);

}

.contact-box{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(250px,1fr));

gap:25px;

}

.contact-item{

background:white;

padding:25px;

border-radius:12px;

box-shadow:0 5px 15px rgba(0,0,0,.08);

}

footer{

background:#0B132B;

color:white;

text-align:center;

padding:40px;

}

#topBtn{

position:fixed;

left:25px;

bottom:25px;

width:50px;

height:50px;

border:none;

border-radius:50%;

background:#C8A24D;

color:white;

font-size:22px;

cursor:pointer;

display:none;

}

@media(max-width:768px){

header .container{

flex-direction:column;

}

nav ul{

margin-top:15px;

flex-wrap:wrap;

justify-content:center;

gap:15px;

}

.hero h1{

font-size:36px;

}

.hero h3{

font-size:22px;

}

.hero p{

font-size:17px;

}

section{

padding:70px 0;

}

}