/*======================================
    QADR MARKET
=======================================*/

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{

    font-family:'Manrope',sans-serif;
    background:#f8f6f2;
    color:#222;
    line-height:1.7;
    overflow-x:hidden;

}

img{

    width:100%;
    display:block;

}

a{

    text-decoration:none;

}

ul{

    list-style:none;

}

.container{

    width:90%;
    max-width:1280px;
    margin:auto;

}


/*======================================
        HEADER
=======================================*/

.header{

    width:100%;
    position:fixed;
    top:0;
    left:0;
    z-index:999;

    background:rgba(255,255,255,.92);

    backdrop-filter:blur(15px);

    box-shadow:0 8px 25px rgba(0,0,0,.06);

}

.header .container{

    display:flex;
    justify-content:space-between;
    align-items:center;

    height:90px;

}

.logo a{

    font-size:34px;
    font-weight:800;
    color:#123524;

}

.logo span{

    color:#c49b33;

}

.navbar ul{

    display:flex;
    gap:35px;

}

.navbar a{

    color:#222;
    font-weight:600;
    transition:.35s;

}

.navbar a:hover{

    color:#c49b33;

}

.header-btn{

    padding:14px 30px;

    background:#123524;

    color:#fff;

    border-radius:50px;

    transition:.4s;

    font-weight:700;

}

.header-btn:hover{

    background:#c49b33;

}

.menu-btn{

    display:none;

    font-size:28px;

    cursor:pointer;

}



/*======================================
        HERO
=======================================*/

.hero{

    padding-top:150px;
    padding-bottom:90px;

    position:relative;

}

.hero-content{

    display:grid;

    grid-template-columns:1fr 1fr;

    align-items:center;

    gap:70px;

}

.hero-subtitle{

    display:inline-block;

    padding:10px 20px;

    background:#f1e6c8;

    color:#123524;

    border-radius:40px;

    font-weight:700;

    margin-bottom:25px;

}

.hero h1{

    font-size:64px;

    line-height:1.15;

    margin-bottom:25px;

    color:#123524;

}

.hero p{

    font-size:19px;

    color:#666;

    margin-bottom:35px;

}

.hero-buttons{

    display:flex;

    gap:20px;

}

.btn-primary{

    background:#123524;

    color:#fff;

    padding:16px 38px;

    border-radius:50px;

    font-weight:700;

    transition:.35s;

}

.btn-primary:hover{

    background:#c49b33;

}

.btn-secondary{

    padding:16px 38px;

    border:2px solid #123524;

    color:#123524;

    border-radius:50px;

    font-weight:700;

    transition:.35s;

}

.btn-secondary:hover{

    background:#123524;

    color:#fff;

}

.hero-right img{

    border-radius:35px;

    box-shadow:0 30px 70px rgba(0,0,0,.15);

}



/*======================================
      STATISTICS
=======================================*/

.stats{

    padding:80px 0;

}

.stats .container{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:25px;

}

.stat-box{

    background:#fff;

    border-radius:25px;

    text-align:center;

    padding:40px;

    box-shadow:0 15px 35px rgba(0,0,0,.06);

    transition:.4s;

}

.stat-box:hover{

    transform:translateY(-10px);

}

.stat-box h2{

    font-size:42px;

    color:#123524;

}

.stat-box p{

    color:#666;

    margin-top:10px;

}
/*======================================
        SECTION TITLE
=======================================*/

.section-title{

    text-align:center;
    margin-bottom:70px;

}

.section-title span{

    color:#c49b33;
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;
    font-size:14px;

}

.section-title h2{

    font-size:46px;
    color:#123524;
    margin:15px 0;

}

.section-title p{

    width:650px;
    max-width:100%;
    margin:auto;
    color:#666;
    font-size:18px;

}


/*======================================
        ABOUT
=======================================*/

.about{

    padding:120px 0;

}

.about-grid{

    display:grid;
    grid-template-columns:1fr 1fr;
    gap:70px;
    align-items:center;

}

.about-image{

    display:flex;
    justify-content:center;
    align-items:center;

}

.about-image img{

    width:125px;     
    height:auto;
    border-radius:50%;
    box-shadow:0 20px 40px rgba(0,0,0,.12);

}
.about-image img{

    width:220px;
    height:220px;
    object-fit:cover;
    border-radius:50%;
    background:#fff;
    padding:15px;
    box-shadow:0 15px 45px rgba(0,0,0,.15);
    transition:.4s;

}

.about-image img:hover{

    transform:scale(1.05) rotate(3deg);

}

.about-content h2{

    font-size:48px;
    color:#123524;
    margin:20px 0;

}

.about-content p{

    color:#666;
    margin-bottom:18px;
    font-size:17px;

}

.about-features{

    margin-top:40px;

}

.feature{

    display:flex;
    gap:20px;
    align-items:flex-start;
    margin-bottom:28px;

}

.feature i{

    width:65px;
    height:65px;

    display:flex;
    justify-content:center;
    align-items:center;

    border-radius:18px;

    background:#123524;
    color:#fff;

    font-size:24px;

}

.feature h4{

    color:#123524;
    font-size:21px;
    margin-bottom:6px;

}

.feature p{

    margin:0;
    color:#777;

}


/*======================================
        PRODUCTS
=======================================*/

.products{

    padding:120px 0;
    background:#ffffff;

}

.product-grid{

    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;

}

.product-card{

    background:#fff;

    border-radius:25px;

    overflow:hidden;

    box-shadow:0 18px 45px rgba(0,0,0,.08);

    transition:.45s;

}

.product-card:hover{

    transform:translateY(-12px);

    box-shadow:0 30px 60px rgba(0,0,0,.12);

}

.product-card img{

    height:260px;
    object-fit:cover;

}

.product-content{

    padding:30px;

}

.product-content i{

    width:60px;
    height:60px;

    display:flex;
    justify-content:center;
    align-items:center;

    background:#123524;

    color:#fff;

    border-radius:18px;

    font-size:22px;

    margin-bottom:20px;

}

.product-content h3{

    color:#123524;
    font-size:24px;
    margin-bottom:15px;

}

.product-content p{

    color:#666;
    line-height:1.8;

}
/*======================================
            PARTNERS
=======================================*/

.partners{

    padding:120px 0;

}

.partners-grid{

    display:grid;

    grid-template-columns:repeat(5,1fr);

    gap:25px;

}

.partner-card{

    background:#fff;

    border-radius:22px;

    padding:30px;

    height:140px;

    display:flex;

    justify-content:center;

    align-items:center;

    box-shadow:0 15px 35px rgba(0,0,0,.08);

    transition:.4s;

}

.partner-card:hover{

    transform:translateY(-10px);

    box-shadow:0 25px 50px rgba(0,0,0,.12);

}

.partner-card img{

    max-width:100%;

    max-height:70px;

    object-fit:contain;

}



/*======================================
            GALLERY
=======================================*/

.gallery{

    padding:120px 0;

    background:#fff;

}

.gallery-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:25px;

}

.gallery-grid img{

    width:100%;

    height:280px;

    object-fit:cover;

    border-radius:22px;

    transition:.45s;

    cursor:pointer;

}

.gallery-grid img:hover{

    transform:scale(1.05);

    box-shadow:0 25px 50px rgba(0,0,0,.18);

}



/*======================================
            NEWS
=======================================*/

.news{

    padding:120px 0;

}

.news-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

}

.news-card{

    background:#fff;

    overflow:hidden;

    border-radius:22px;

    box-shadow:0 15px 40px rgba(0,0,0,.08);

    transition:.4s;

}

.news-card:hover{

    transform:translateY(-10px);

}

.news-card img{

    height:240px;

    object-fit:cover;

}

.news-content{

    padding:30px;

}

.news-content span{

    color:#c49b33;

    font-weight:700;

}

.news-content h3{

    margin:18px 0;

    color:#123524;

    font-size:24px;

}

.news-content p{

    color:#666;

    line-height:1.8;

}



/*======================================
              CTA
=======================================*/

.cta{

    padding:120px 0;

}

.cta-box{

    background:linear-gradient(135deg,#123524,#1d5d49);

    border-radius:35px;

    color:#fff;

    text-align:center;

    padding:80px 50px;

}

.cta-box h2{

    font-size:46px;

    margin-bottom:20px;

}

.cta-box p{

    max-width:700px;

    margin:0 auto 35px;

    font-size:18px;

    opacity:.9;

}

.cta-box .btn-primary{

    background:#fff;

    color:#123524;

}

.cta-box .btn-primary:hover{

    background:#c49b33;

    color:#fff;

}
/*======================================
              FOOTER
=======================================*/

.footer{

    background:#123524;

    color:#fff;

    padding-top:80px;

}

.footer-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:50px;

    padding-bottom:50px;

}

.footer-box h3{

    font-size:24px;

    margin-bottom:25px;

}

.footer-box p{

    color:#d8d8d8;

    line-height:1.9;

    margin-bottom:15px;

}

.footer-box ul li{

    margin-bottom:15px;

}

.footer-box ul li a{

    color:#d8d8d8;

    transition:.3s;

}

.footer-box ul li a:hover{

    color:#c49b33;

}

.socials{

    display:flex;

    gap:15px;

    margin-top:20px;

}

.socials a{

    width:45px;

    height:45px;

    border-radius:50%;

    background:rgba(255,255,255,.1);

    color:#fff;

    display:flex;

    justify-content:center;

    align-items:center;

    transition:.35s;

    font-size:18px;

}

.socials a:hover{

    background:#c49b33;

    transform:translateY(-5px);

}

.footer-bottom{

    border-top:1px solid rgba(255,255,255,.15);

    text-align:center;

    padding:25px 0;

    color:#ddd;

}


/*======================================
          RESPONSIVE
=======================================*/

@media(max-width:1100px){

.hero-content,
.about-grid{

grid-template-columns:1fr;

}

.product-grid,
.why-grid,
.news-grid,
.store-grid{

grid-template-columns:repeat(2,1fr);

}

.partners-grid{

grid-template-columns:repeat(3,1fr);

}

.footer-grid{

grid-template-columns:repeat(2,1fr);

}

.hero h1{

font-size:52px;

}

}


@media(max-width:768px){

.navbar{

display:none;

}

.header-btn{

display:none;

}

.menu-btn{

display:block;

}

.hero{

padding-top:130px;

}

.hero h1{

font-size:38px;

}

.hero-buttons{

flex-direction:column;

}

.stats .container{

grid-template-columns:repeat(2,1fr);

}

.product-grid,
.store-grid,
.why-grid,
.news-grid,
.gallery-grid{

grid-template-columns:1fr;

}

.partners-grid{

grid-template-columns:repeat(2,1fr);

}

.footer-grid{

grid-template-columns:1fr;

}

.section-title h2{

font-size:34px;

}

.about-content h2{

font-size:34px;

}

.cta-box{

padding:50px 25px;

}

.cta-box h2{

font-size:34px;

}

}


@media(max-width:500px){

.container{

width:92%;

}

.hero h1{

font-size:30px;

}

.hero p{

font-size:16px;

}

.section-title h2{

font-size:28px;

}

.partner-card{

height:110px;

}

.stats .container{

grid-template-columns:1fr;

}

}
/*======================================
        JAVASCRIPT EFFECTS
=======================================*/

.header.sticky{

    background:#fff;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

}

.hidden{

    opacity:0;

    transform:translateY(70px);

    transition:1s;

}

.show{

    opacity:1;

    transform:translateY(0);

}

@media(max-width:768px){

.navbar{

position:absolute;

top:90px;

left:0;

width:100%;

background:#fff;

padding:30px;

display:none;

box-shadow:0 15px 30px rgba(0,0,0,.08);

}

.navbar.active{

display:block;

}

.navbar ul{

flex-direction:column;

gap:20px;

}

}
/*==============================
        PAGE HERO
===============================*/

.page-hero{

    padding:180px 0 100px;

    background:linear-gradient(135deg,#123524,#1f5d45);

    color:#fff;

    text-align:center;

}

.page-hero h1{

    font-size:58px;

    margin-bottom:20px;

}

.page-hero p{

    max-width:700px;

    margin:auto;

    font-size:20px;

    opacity:.9;

}



.about-story{

    padding:120px 0;

}



.mission{

    padding:120px 0;

    background:#fff;

}
/*==============================
        STORES PAGE
===============================*/

.stores-page{

    padding:120px 0;

}

.map-section{

    padding:120px 0;

    background:#fff;

}

.map-box{

    border-radius:25px;

    overflow:hidden;

    box-shadow:0 20px 50px rgba(0,0,0,.08);

}

.map-box iframe{

    width:100%;

    height:500px;

    border:0;

}