/* ===========================
   RESET
=========================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Vazirmatn',sans-serif;
    background:#f5f7fa;
    color:#2f3640;
    line-height:1.9;
}

img{
    max-width:100%;
    display:block;
}

a{
    text-decoration:none;
    color:inherit;
}

ul{
    list-style:none;
}

.container{
    width:min(1200px,92%);
    margin:auto;
}

section{
    padding:90px 0;
}

.section-title{
    text-align:center;
    margin-bottom:70px;
}

.section-title span{

    display:inline-block;

    color:#d4a017;

    font-weight:700;

    letter-spacing:1px;

    margin-bottom:12px;

}

.section-title h2{

    font-size:42px;

    color:#14324b;

    margin-bottom:20px;

}

.section-title p{

    max-width:700px;

    margin:auto;

    color:#666;

}


/* ===========================
NAVBAR
=========================== */

.navbar{

position:fixed;

top:0;

width:100%;

z-index:999;

transition:.35s;

background:rgba(0,0,0,.25);

backdrop-filter:blur(14px);

}

.navbar .container{

display:flex;

justify-content:space-between;

align-items:center;

height:82px;

}

.logo{

font-size:30px;

font-weight:800;

color:#fff;

letter-spacing:2px;

}

.navbar ul{

display:flex;

gap:35px;

}

.navbar li a{

color:white;

font-weight:500;

transition:.3s;

position:relative;

}

.navbar li a::after{

content:"";

position:absolute;

bottom:-8px;

right:0;

height:2px;

width:0;

background:#d4a017;

transition:.35s;

}

.navbar li a:hover::after{

width:100%;

}

/* ===========================
HERO
=========================== */

.hero{

height:100vh;

position:relative;

display:flex;

align-items:center;

background:url("https://images.unsplash.com/photo-1541888946425-d81bb19240f5?auto=format&fit=crop&w=1800&q=80")
center center/cover;

}

.overlay{

position:absolute;

width:100%;

height:100%;

background:linear-gradient(

90deg,

rgba(7,20,35,.92),

rgba(7,20,35,.55)

);

}

.hero-content{

position:relative;

z-index:2;

color:white;

max-width:700px;

}

.hero h5{

font-size:16px;

letter-spacing:3px;

color:#d4a017;

margin-bottom:18px;

}

.hero h1{

font-size:68px;

line-height:1.2;

font-weight:800;

margin-bottom:30px;

}

.hero p{

font-size:20px;

color:#ddd;

margin-bottom:45px;

}

/* ===========================
BUTTONS
=========================== */

.hero-buttons{

display:flex;

gap:20px;

}

.btn{

display:inline-flex;

align-items:center;

justify-content:center;

padding:16px 42px;

border-radius:50px;

background:#d4a017;

color:white;

font-weight:700;

transition:.35s;

}

.btn:hover{

transform:translateY(-4px);

box-shadow:0 12px 25px rgba(0,0,0,.2);

}

.btn-outline{

background:transparent;

border:2px solid white;

}

.btn-outline:hover{

background:white;

color:#14324b;

}


/* ===========================
STATS
=========================== */

.stats{

margin-top:-80px;

position:relative;

z-index:10;

}

.stats .container{

display:grid;

grid-template-columns:repeat(4,1fr);

gap:25px;

}

.stat-card{

background:white;

padding:45px;

border-radius:18px;

text-align:center;

box-shadow:0 18px 40px rgba(0,0,0,.08);

transition:.35s;

}

.stat-card:hover{

transform:translateY(-8px);

}

.stat-card i{

font-size:38px;

color:#d4a017;

margin-bottom:18px;

}

.stat-card h2{

font-size:44px;

color:#14324b;

margin-bottom:8px;

}


/* ===========================
ABOUT
=========================== */

.about-grid{

display:grid;

grid-template-columns:1fr 1fr;

gap:80px;

align-items:center;

}

.about-image img{

border-radius:22px;

box-shadow:0 25px 60px rgba(0,0,0,.15);

}

.about-content span{

display:inline-block;

color:#d4a017;

font-weight:bold;

margin-bottom:14px;

}

.about-content h2{

font-size:42px;

margin-bottom:24px;

color:#14324b;

}

.about-content p{

margin-bottom:18px;

color:#666;

}

/* ===========================
SERVICES
=========================== */

.services-grid{

display:grid;

grid-template-columns:repeat(2,1fr);

gap:30px;

}

.service{

padding:40px;

background:white;

border-radius:18px;

transition:.35s;

box-shadow:0 15px 35px rgba(0,0,0,.06);

}

.service:hover{

transform:translateY(-8px);

background:#14324b;

color:white;

}

.service:hover p{

color:#ddd;

}

.service:hover i{

color:#d4a017;

}

.service i{

font-size:44px;

margin-bottom:20px;

color:#14324b;

}

.service h3{

margin-bottom:16px;

font-size:24px;

}

.service p{

color:#666;

}
/* ===========================
VISION
=========================== */

.vision{
    background:#ffffff;
}

.vision-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:35px;
}

.vision-card{
    background:linear-gradient(135deg,#163b5c,#0d2438);
    color:white;
    border-radius:22px;
    padding:45px;
    transition:.35s;
    box-shadow:0 18px 40px rgba(0,0,0,.08);
}

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

.vision-card i{
    font-size:42px;
    color:#d4a017;
    margin-bottom:25px;
}

.vision-card h3{
    font-size:28px;
    margin-bottom:20px;
}

.vision-card p{
    color:#d8e3ec;
}


/* ===========================
VALUES
=========================== */

.values{
    background:#f7f9fb;
}

.values-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.value-card{
    background:white;
    border-radius:18px;
    padding:35px;
    text-align:center;
    transition:.35s;
    box-shadow:0 15px 35px rgba(0,0,0,.06);
}

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

.value-card i{
    font-size:42px;
    color:#d4a017;
    margin-bottom:20px;
}

.value-card h3{
    margin-bottom:15px;
    color:#14324b;
}

.value-card p{
    color:#666;
}


/* ===========================
WHY US
=========================== */

.why-us{
    background:white;
}

.why-us .container{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:70px;
    align-items:center;
}

.why-us span{
    color:#d4a017;
    font-weight:bold;
}

.why-us h2{
    font-size:44px;
    margin:20px 0;
    color:#14324b;
}

.why-us p{
    color:#666;
    margin-bottom:30px;
}

.why-us ul{
    display:flex;
    flex-direction:column;
    gap:18px;
}

.why-us li{
    display:flex;
    align-items:center;
    gap:12px;
    font-weight:500;
}

.why-us li i{
    color:#d4a017;
}

.why-us img{
    border-radius:24px;
    box-shadow:0 25px 55px rgba(0,0,0,.15);
}


/* ===========================
CTA
=========================== */

.cta{

    position:relative;

    background:url("https://images.unsplash.com/photo-1504307651254-35680f356dfd?auto=format&fit=crop&w=1800&q=80")
    center/cover;

    text-align:center;

    padding:120px 0;

    color:white;

}

.cta .overlay{

    position:absolute;

    inset:0;

    background:rgba(10,25,40,.75);

}

.cta .container{

    position:relative;

    z-index:5;

}

.cta h2{

    font-size:48px;

    margin-bottom:25px;

}

.cta p{

    max-width:700px;

    margin:auto auto 35px;

    color:#ddd;

}


/* ===========================
CONTACT
=========================== */

.contact{
    background:#fff;
}

.contact-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:50px;
}

.contact-info{
    display:flex;
    flex-direction:column;
    gap:20px;
}

.info-card{
    display:flex;
    gap:18px;
    align-items:flex-start;
    padding:28px;
    background:#f5f7fa;
    border-radius:18px;
}

.info-card i{
    width:60px;
    height:60px;
    border-radius:50%;
    background:#14324b;
    color:white;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:22px;
}

.info-card h3{
    margin-bottom:8px;
    color:#14324b;
}

.contact-form{
    background:#fff;
    border-radius:20px;
    box-shadow:0 18px 40px rgba(0,0,0,.08);
    padding:40px;
}

.contact-form form{
    display:flex;
    flex-direction:column;
    gap:18px;
}

.contact-form input,
.contact-form textarea{

    border:1px solid #dcdcdc;

    border-radius:12px;

    padding:18px;

    font-family:inherit;

    font-size:15px;

    transition:.3s;

}

.contact-form input:focus,
.contact-form textarea:focus{

    outline:none;

    border-color:#d4a017;

    box-shadow:0 0 0 4px rgba(212,160,23,.15);

}


/* ===========================
MAP
=========================== */

.map iframe{

    width:100%;

    height:420px;

    border:0;

}


/* ===========================
FOOTER
=========================== */

footer{

    background:#10283f;

    color:white;

    padding:80px 0 30px;

}

.footer-grid{

    display:grid;

    grid-template-columns:2fr 1fr 1fr 1fr;

    gap:40px;

}

.footer-grid h3{

    margin-bottom:22px;

    color:#fff;

}

.footer-grid p,
.footer-grid li{

    color:#cfd9e1;

    margin-bottom:12px;

}

.footer-grid a{

    transition:.3s;

}

.footer-grid a:hover{

    color:#d4a017;

}

.socials{

    display:flex;

    gap:15px;

}

.socials a{

    width:45px;

    height:45px;

    background:#183754;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    transition:.3s;

}

.socials a:hover{

    background:#d4a017;

}

footer hr{

    margin:50px 0 25px;

    border:none;

    border-top:1px solid rgba(255,255,255,.15);

}

.copyright{

    text-align:center;

    color:#bfc8d0;

}


/* ===========================
RESPONSIVE
=========================== */

@media(max-width:992px){

.hero h1{
font-size:46px;
}

.about-grid,
.why-us .container,
.contact-grid{

grid-template-columns:1fr;

}

.stats .container{

grid-template-columns:repeat(2,1fr);

}

.values-grid{

grid-template-columns:repeat(2,1fr);

}

.services-grid{

grid-template-columns:1fr;

}

.vision-grid{

grid-template-columns:1fr;

}

.footer-grid{

grid-template-columns:1fr 1fr;

}

}

@media(max-width:768px){

.navbar ul{

display:none;

}

.hero{

text-align:center;

}

.hero-buttons{

justify-content:center;

flex-wrap:wrap;

}

.hero h1{

font-size:38px;

}

.section-title h2{

font-size:32px;

}

.stats .container{

grid-template-columns:1fr;

}

.values-grid{

grid-template-columns:1fr;

}

.footer-grid{

grid-template-columns:1fr;

text-align:center;

}

.socials{

justify-content:center;

}

}

@media(max-width:576px){

section{

padding:70px 0;

}

.hero h1{

font-size:30px;

}

.hero p{

font-size:16px;

}

.btn{

width:100%;

}

.contact-form{

padding:25px;

}

}