/*
==========================================
YAZD MINE HOUSE
MAIN CSS V2
==========================================
*/

*{
margin:0;
padding:0;
box-sizing:border-box;
}

html{
scroll-behavior:smooth;
}

body{

font-family:tahoma,sans-serif;
font-size:16px;
line-height:1.9;
background:#f6f8fb;
color:#2b2b2b;

}

img{

max-width:100%;
display:block;

}

a{

text-decoration:none;
color:inherit;

}

ul{

list-style:none;

}

.container{

width:92%;
max-width:1280px;
margin:auto;

}

.section{

padding:90px 0;

}

.gray{

background:#eef3f8;

}

.section-header{

text-align:center;
margin-bottom:45px;

}

.section-header span{

display:inline-block;
padding:14px 38px;
background:#d8b36a;
color:#fff;
border-radius:50px;
font-size:30px;
font-weight:700;
line-height:1.5;

}

.section-header h2{

display:none;

}




.btn{

display:inline-flex;

align-items:center;

justify-content:center;

padding:15px 35px;

border-radius:6px;

transition:.35s;

font-weight:bold;

}

.btn-primary{

background:#b68b3d;

color:#fff;

}

.btn-primary:hover{

background:#9d742d;

}

.btn-outline{

border:2px solid #fff;

color:#fff;

}

.btn-outline:hover{

background:#fff;

color:#16375d;

}



/* ==========================================
HEADER
========================================== */

.site-header{

position:fixed;
top:0;
right:0;
left:0;
z-index:9999;

background:rgba(11,33,55,.92);

backdrop-filter:blur(10px);

}

.header-container{

height:90px;

display:flex;

align-items:center;

justify-content:space-between;

}

.logo-placeholder{

font-size:28px;

font-weight:700;

color:#fff;

}

.main-menu ul{

display:flex;

align-items:center;

gap:35px;

margin:0;
padding:0;
list-style:none;

}

.main-menu li{

list-style:none;

}

.main-menu a{

color:#fff;

font-size:16px;

font-weight:600;

transition:.3s;

}

.main-menu a:hover{

color:#d8b36a;

}

.header-button a{

display:inline-block;

padding:12px 28px;

background:#d8b36a;

color:#fff;

border-radius:6px;

transition:.3s;

}

.header-button a:hover{

background:#b88d43;

}

.hero{

padding-top:90px;

}


/* ==========================================
HERO SLIDER
========================================== */

.hero-slider{

position:relative;
height:760px;
overflow:hidden;

}


.hero-slide{

position:absolute;
inset:0;

background-size:cover;
background-position:center;

display:flex;
align-items:center;

opacity:0;
transition:1s;

}


.hero-slide.active{

opacity:1;
z-index:2;

}

.hero-slide .hero-overlay{

position:absolute;

inset:0;

background:
linear-gradient(
90deg,
rgba(7,25,45,.92) 0%,
rgba(7,25,45,.65) 45%,
rgba(7,25,45,.25) 100%
);

z-index:1;

}


.hero-slide .container{

position:relative;

z-index:3;

}


.slider-dots{

position:absolute;
bottom:40px;
right:50%;
transform:translateX(50%);
z-index:5;

display:flex;
gap:12px;

}


.dot{

width:14px;
height:14px;

background:#fff;

border-radius:50%;

opacity:.5;

cursor:pointer;

}


.dot.active{

opacity:1;
background:#d8b36a;

}

/* HERO */

.hero{

position:relative;

height:760px;

background:url("../images/hero.jpg") center center;

background-size:cover;

display:flex;

align-items:center;

}

.hero-overlay{

position:absolute;

inset:0;

background:linear-gradient(90deg,rgba(11,33,55,.93),rgba(11,33,55,.55));

}

.hero .container{

position:relative;

z-index:5;

}

.hero-content{

position:relative;

z-index:4;

}

.hero-content{

max-width:700px;

color:#fff;

}

.hero-badge{

display:inline-block;

padding:10px 22px;

background:rgba(255,255,255,.18);

border-radius:50px;

margin-bottom:25px;

}

.hero h1{

font-size:64px;

line-height:1.25;

margin-bottom:25px;

}

.hero p{

font-size:21px;

line-height:2;

margin-bottom:40px;

opacity:.95;

}

.hero-buttons{

display:flex;

gap:20px;

flex-wrap:wrap;

}





/* ABOUT */

.about-grid{

display:grid;

grid-template-columns:1fr 1fr;

gap:70px;

align-items:center;

}

.about-image img{

border-radius:18px;

box-shadow:0 20px 45px rgba(0,0,0,.15);

}

.about-text p{

margin-bottom:25px;

font-size:18px;

line-height:2.2;

color:#555;

}





/* SERVICES */

.services-grid{

display:grid;

grid-template-columns:repeat(4,1fr);

gap:25px;

}

.service-card{

background:#fff;

padding:55px 25px 30px;

border-radius:18px;

position:relative;

text-align:center;

transition:.35s;

box-shadow:0 10px 30px rgba(0,0,0,.06);

margin-top:35px;

}

.service-card:hover{

transform:translateY(-8px);

}





.service-icon{

width:85px;

height:85px;

background:#d8b36a;

border-radius:50%;

display:flex;

align-items:center;

justify-content:center;

position:absolute;

top:-42px;

left:50%;

transform:translateX(-50%);

border:8px solid #eef3f8;

overflow:hidden;

}


.service-icon img{

width:55px;

height:55px;

object-fit:contain;

}







.service-card h3{

font-size:20px;

margin-bottom:12px;

color:#16375d;

}

.service-card p{

color:#666;

line-height:1.9;

font-size:14px;

}





/* STATISTICS */

.statistics{

background:#16375d;

padding:90px 0;

}

.statistics-grid{

display:grid;

grid-template-columns:repeat(4,1fr);

gap:35px;

}

.stat-box{

text-align:center;

color:#fff;

}

.stat-box h2{

font-size:60px;

margin-bottom:10px;

color:#d7b36f;

}

.stat-box p{

font-size:18px;

}





/* NEWS */

.news-grid{

display:grid;

grid-template-columns:repeat(3,1fr);

gap:35px;

}

.news-card{

background:#fff;

border-radius:16px;

overflow:hidden;

box-shadow:0 12px 35px rgba(0,0,0,.08);

transition:.35s;

}

.news-card:hover{

transform:translateY(-8px);

}

.news-card img{

width:100%;

height:260px;

object-fit:cover;

}

.news-body{

padding:30px;

}

.news-body h3{

font-size:24px;

margin-bottom:18px;

color:#16375d;

}

.news-body p{

line-height:2;

color:#666;

margin-bottom:20px;

}

.read-more{

display:inline-block;

color:#b68b3d;

font-weight:bold;

}




/* ==========================================
BOARD MEMBERS
========================================== */

.boardSwiper{

padding:15px 10px 50px;

}

.boardSwiper .swiper-slide{

height:auto;
padding-top:90px;
display:flex;

}

.board-card{

position:relative;
background:#fff;
border-radius:20px;
padding:105px 25px 25px;
text-align:center;
box-shadow:0 10px 30px rgba(0,0,0,.08);
transition:.35s;
overflow:visible;
margin:0 5px;
width:100%;

}

.board-card:hover{

transform:translateY(-5px);

}

.board-card a{

display:block;
text-decoration:none;

}

.board-card img{

width:170px;
height:170px;
border-radius:50%;
object-fit:cover;
position:absolute;
top:-85px;
left:50%;
transform:translateX(-50%);
border:8px solid #f6f8fb;
background:#fff;
box-shadow:0 12px 30px rgba(0,0,0,.15);

}

.board-card h3{

font-size:22px;
line-height:1.5;
height:66px;
display:flex;
align-items:center;
justify-content:center;
color:#16375d;
margin:0 0 8px;
padding:0 10px;

}

.board-card p{

font-size:15px;
font-weight:bold;
color:#b68b3d;
margin:0;

}




/* ==========================================
MEMBER COMPANIES
========================================== */

.membersSwiper{

padding:20px 10px 50px;

}

.membersSwiper .swiper-slide{

display:flex;
justify-content:center;
align-items:center;

}

.company-card{

width:190px;
height:190px;
border-radius:50%;
background:#fff;
display:flex;
justify-content:center;
align-items:center;
box-shadow:0 10px 30px rgba(0,0,0,.08);
transition:.35s;
overflow:hidden;
margin:auto;

}

.company-card:hover{

transform:translateY(-8px);
box-shadow:0 18px 40px rgba(0,0,0,.15);

}

.company-card a{

display:flex;
justify-content:center;
align-items:center;
width:100%;
height:100%;

}

.company-card img{

width:120px;
height:120px;
object-fit:contain;
transition:.35s;

}

.company-card:hover img{

transform:scale(1.08);

}




/* ==========================================
GALLERY
========================================== */

.gallery-grid{

display:grid;
grid-template-columns:repeat(3,1fr);
gap:25px;

}

.gallery-grid img{

width:100%;
height:260px;
object-fit:cover;
border-radius:16px;
transition:.35s;
cursor:pointer;

}

.gallery-grid img:hover{

transform:scale(1.05);

}




/* ==========================================
VIDEO
========================================== */

.video-box{

background:#fff;
padding:80px;
border-radius:18px;
text-align:center;
box-shadow:0 10px 30px rgba(0,0,0,.08);

}

.video-box p{

font-size:22px;
color:#555;
line-height:2;

}




/* ==========================================
CTA
========================================== */

.cta{

padding:120px 0;
background:#16375d;
text-align:center;
color:#fff;

}

.cta h2{

font-size:48px;
margin-bottom:20px;

}

.cta p{

max-width:800px;
margin:0 auto 35px;
font-size:20px;
line-height:2;

}




/* ==========================================
CONTACT
========================================== */

.contact-grid{

display:grid;
grid-template-columns:repeat(3,1fr);
gap:30px;

}

.contact-item{

background:#fff;
padding:40px;
border-radius:16px;
text-align:center;
box-shadow:0 8px 25px rgba(0,0,0,.08);

}

.contact-item h3{

margin-bottom:15px;
color:#16375d;
font-size:24px;

}

.contact-item p{

color:#666;
line-height:2;

}




/* ==========================================
FOOTER
========================================== */

.site-footer{

background:#0f2844;
color:#fff;
padding:70px 0 30px;

}

.footer-grid{

display:grid;
grid-template-columns:2fr 1fr 1fr;
gap:50px;

}

.footer-title{

font-size:24px;
margin-bottom:25px;

}

.footer-menu li{

margin-bottom:12px;

}

.footer-menu a{

color:#dcdcdc;
transition:.3s;

}

.footer-menu a:hover{

color:#d6b16d;

}

.copyright{

margin-top:60px;
padding-top:30px;
border-top:1px solid rgba(255,255,255,.1);
text-align:center;
font-size:14px;

}




/* ==========================================
RESPONSIVE
========================================== */

@media(max-width:1100px){

.services-grid,
.news-grid,
.board-grid,
.gallery-grid,
.company-grid,
.statistics-grid,
.contact-grid{

grid-template-columns:repeat(2,1fr);

}

.about-grid{

grid-template-columns:1fr;

}

.hero h1{

font-size:48px;

}

}



@media(max-width:768px){

.hero{

height:auto;
padding:120px 0;

}

.hero h1{

font-size:36px;

}

.hero p{

font-size:18px;

}

.services-grid,
.news-grid,
.board-grid,
.gallery-grid,
.company-grid,
.statistics-grid,
.contact-grid{

grid-template-columns:1fr;

}

.section{

padding:70px 0;

}

.section-header h2{

font-size:30px;

}

.cta h2{

font-size:34px;

}

.video-box{

padding:40px 25px;

}

.container{

width:94%;

}

.hero-buttons{

flex-direction:column;

}

.btn{

width:100%;

}

}


/* ==========================================
HEADER
========================================== */


.site-header{

background:#ffffff;
box-shadow:0 5px 20px rgba(0,0,0,.08);
position:relative;
z-index:10;

}


.header-container{

display:flex;
align-items:center;
justify-content:space-between;
padding:20px 0;

}


.site-logo a{

font-size:24px;
font-weight:700;
color:#1d1d1d;
text-decoration:none;

}



.main-menu .menu{

display:flex;
gap:30px;
list-style:none;
margin:0;
padding:0;

}



.main-menu .menu li a{

color:#333;
text-decoration:none;
font-size:16px;
transition:.3s;

}


.main-menu .menu li a:hover{

color:#e67e22;

}



.header-button a{

background:#e67e22;
color:#fff;
padding:12px 25px;
border-radius:30px;
text-decoration:none;

}



/* ==========================================
FOOTER
========================================== */


.site-footer{

background:#09243d;
color:#fff;
margin-top:80px;

}


.footer-column h3{

color:#fff;

}


.footer-column p{

color:#d5dde5;
line-height:2;

}


.footer-column ul li a{

color:#d5dde5;
text-decoration:none;

}


.footer-column ul li a:hover{

color:#f39c12;

}


.footer-bottom{

border-top:1px solid rgba(255,255,255,.15);
text-align:center;
padding:20px;
color:#b8c4cf;

}


.footer-container{

display:grid;
grid-template-columns:repeat(3,1fr);
gap:40px;
padding:60px 0;

}


.footer-column h3{

font-size:20px;
margin-bottom:20px;

}


.footer-column p{

color:#ccc;
line-height:2;

}



.footer-column ul{

list-style:none;
padding:0;

}


.footer-column ul li{

margin-bottom:12px;

}


.footer-column ul li a{

color:#ccc;
text-decoration:none;

}


.footer-column ul li a:hover{

color:#e67e22;

}



.footer-bottom{

border-top:1px solid #333;
text-align:center;
padding:20px;
color:#aaa;

}



@media(max-width:768px){


.header-container{

flex-direction:column;
gap:20px;

}


.main-menu .menu{

flex-wrap:wrap;
justify-content:center;

}


.footer-container{

grid-template-columns:1fr;

}


}

/* ==========================================
LOGO
========================================== */

.custom-logo{

    width:90px;
    height:auto;

}


.site-logo img{

    max-width:90px;
    height:auto;

}


@media(max-width:768px){

    .custom-logo,
    .site-logo img{

        width:75px;

    }

}

/* ==========================================
MAIN MENU
========================================== */

.main-menu{

    flex:1;
    display:flex;
    justify-content:center;

}


.main-menu .menu{

    display:flex;
    align-items:center;
    gap:25px;
    list-style:none;
    margin:0;
    padding:0;

}


.main-menu .menu li{

    position:relative;

}


.main-menu .menu li a{

    color:#1d2b36;
    text-decoration:none;
    font-size:15px;
    font-weight:500;
    padding:10px 0;
    transition:.3s;

}


.main-menu .menu li a:hover{

    color:#e67e22;

}


/* Active Menu */

.current-menu-item a{

    color:#e67e22 !important;

}


/* Header Layout */

.header-container{

    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:30px;

}


.header-button{

    white-space:nowrap;

}


@media(max-width:768px){


.main-menu .menu{

    flex-direction:column;

}


.main-menu{

    width:100%;

}


}