/* ===========================
   Google Fonts
=========================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:#F8F5EF;
    color:#2A1B14;
    overflow-x:hidden;
}

img{
    width:100%;
    display:block;
}

a{
    text-decoration:none;
}

ul{
    list-style:none;
}

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}


/* ===========================
        NAVBAR
=========================== */

nav{

    width:100%;

    position:fixed;
    top:0;
    left:0;

    z-index:1000;

    backdrop-filter:blur(15px);

    background:rgba(255,255,255,.08);

    border-bottom:1px solid rgba(255,255,255,.2);

}

.navbar{

    display:flex;

    justify-content:space-between;

    align-items:center;

    height:90px;

}

.logo img{

    width:170px;

}

.nav-links{

    display:flex;

    gap:45px;

}

.nav-links a{

    color:#2A1B14;

    font-size:15px;

    font-weight:500;

    transition:.3s;

}

.nav-links a:hover{

    color:#C89A3D;

}

.btn{

    padding:14px 30px;

    border-radius:50px;

    transition:.4s;

    font-size:15px;

}

.nav-btn{

    background:#31543B;

    color:#fff;

}

.nav-btn:hover{

    background:#C89A3D;

}


/* ===========================
        HERO
=========================== */

.hero{

    min-height:100vh;

    display:flex;

    align-items:center;

    padding-top:120px;

}

.hero-content{

    display:grid;

    grid-template-columns:1fr 1fr;

    align-items:center;

    gap:70px;

}

.subtitle{

    display:inline-block;

    color:#C89A3D;

    letter-spacing:3px;

    font-size:13px;

    font-weight:600;

    margin-bottom:20px;

}

.hero-text h1{

    font-family:'Cormorant Garamond',serif;

    font-size:70px;

    line-height:1.1;

    margin-bottom:25px;

}

.hero-text h1 span{

    color:#31543B;

}

.hero-text p{

    font-size:17px;

    color:#666;

    line-height:1.9;

    margin-bottom:40px;

}

.hero-buttons{

    display:flex;

    gap:20px;

    margin-bottom:60px;

}

.primary-btn{

    background:#31543B;

    color:#fff;

}

.primary-btn:hover{

    background:#C89A3D;

}

.secondary-btn{

    border:2px solid #31543B;

    color:#31543B;

}

.secondary-btn:hover{

    background:#31543B;

    color:#fff;

}

.hero-image{

    position:relative;

}

.hero-image img{

    width:100%;

    animation:float 5s ease-in-out infinite;

}


/* ===========================
        STATS
=========================== */

.hero-stats{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:25px;

}

.stat{

    background:#fff;

    padding:25px;

    border-radius:15px;

    box-shadow:0 15px 30px rgba(0,0,0,.08);

    text-align:center;

}

.stat h2{

    font-family:'Cormorant Garamond',serif;

    color:#31543B;

    font-size:34px;

    margin-bottom:8px;

}

.stat p{

    margin:0;

    font-size:14px;

    color:#666;

}


/* ===========================
      ANIMATION
=========================== */

@keyframes float{

    0%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(-15px);

    }

    100%{

        transform:translateY(0);

    }

}


/* ===========================
      RESPONSIVE
=========================== */

@media(max-width:991px){

.hero-content{

grid-template-columns:1fr;

text-align:center;

}

.hero-buttons{

justify-content:center;

}

.hero-stats{

grid-template-columns:repeat(2,1fr);

}

.hero-text h1{

font-size:55px;

}

}

@media(max-width:600px){

.nav-links{

display:none;

}

.nav-btn{

display:none;

}

.hero{

padding-top:140px;

}

.hero-text h1{

font-size:42px;

}

.hero-stats{

grid-template-columns:1fr;

}

.hero-buttons{

flex-direction:column;

}

.btn{

width:100%;

text-align:center;

}

}
/*==========================
        ABOUT
===========================*/

.about{

    padding:120px 0;

    background:#fff;

}

.about-container{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:80px;

    align-items:center;

}

.about-image{

    position:relative;

}

.about-image img{

    width:100%;

    border-radius:25px;

    box-shadow:0 25px 50px rgba(0,0,0,.12);

}

.section-subtitle{

    color:#C89A3D;

    font-size:14px;

    font-weight:600;

    letter-spacing:3px;

    display:block;

    margin-bottom:18px;

}

.about-content h2{

    font-family:'Cormorant Garamond',serif;

    font-size:55px;

    line-height:1.2;

    margin-bottom:25px;

    color:#2A1B14;

}

.about-content p{

    font-size:17px;

    line-height:1.9;

    color:#666;

    margin-bottom:20px;

}

.about-boxes{

    display:flex;

    gap:25px;

    margin:45px 0;

}

.about-box{

    flex:1;

    background:#F8F5EF;

    padding:30px;

    border-radius:20px;

    text-align:center;

    transition:.4s;

}

.about-box:hover{

    transform:translateY(-10px);

    background:#31543B;

}

.about-box:hover h3,

.about-box:hover span{

    color:#fff;

}

.about-box h3{

    font-size:40px;

    color:#31543B;

    margin-bottom:10px;

    font-family:'Cormorant Garamond',serif;

}

.about-box span{

    color:#555;

    font-size:15px;

}
/*==========================
      WHY SECTION
===========================*/

.why{

    padding:120px 0;

    background:#F8F5EF;

}

.section-heading{

    text-align:center;

    max-width:700px;

    margin:auto;

    margin-bottom:70px;

}

.section-heading h2{

    font-family:'Cormorant Garamond',serif;

    font-size:55px;

    margin:20px 0;

    color:#2A1B14;

}

.section-heading p{

    color:#666;

    line-height:1.8;

    font-size:17px;

}

.why-container{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

}

.why-card{

    background:#fff;

    padding:45px 35px;

    border-radius:20px;

    transition:.4s;

    box-shadow:0 15px 35px rgba(0,0,0,.08);

}

.why-card:hover{

    transform:translateY(-12px);

    background:#31543B;

}

.icon{

    width:70px;

    height:70px;

    border-radius:50%;

    background:#F8F5EF;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:32px;

    margin-bottom:25px;

}

.why-card h3{

    margin-bottom:15px;

    font-size:24px;

    color:#2A1B14;

    font-family:'Cormorant Garamond',serif;

}

.why-card p{

    color:#666;

    line-height:1.8;

}

.why-card:hover h3,

.why-card:hover p{

    color:#fff;

}
/*==========================
        PRODUCTS
===========================*/

.products{

    padding:120px 0;

    background:#ffffff;

}

.products-container{

    display:grid;

    grid-template-columns:1fr 1.2fr;

    gap:60px;

    align-items:center;

}

.products-image img{

    width:100%;

    height:700px;

    object-fit:cover;

    border-radius:25px;

    box-shadow:0 25px 50px rgba(0,0,0,.12);

}

.products-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:25px;

}

.product-card{

    background:#F8F5EF;

    border-radius:20px;

    overflow:hidden;

    transition:.4s;

    box-shadow:0 15px 30px rgba(0,0,0,.08);

}

.product-card:hover{

    transform:translateY(-10px);

}

.product-card img{

    width:100%;

    height:220px;

    object-fit:cover;

    transition:.5s;

}

.product-card:hover img{

    transform:scale(1.08);

}

.product-content{

    padding:25px;

}

.product-content h3{

    font-family:'Cormorant Garamond',serif;

    font-size:28px;

    margin-bottom:12px;

    color:#2A1B14;

}

.product-content p{

    color:#666;

    line-height:1.8;

    margin-bottom:20px;

}

.product-content a{

    color:#31543B;

    font-weight:600;

    transition:.3s;

}

.product-content a:hover{

    color:#C89A3D;

}
/*==========================
      JOURNEY
===========================*/

.journey{

    padding:120px 0;

    background:#F8F5EF;

}

.timeline{

    position:relative;

    max-width:1000px;

    margin:80px auto 0;

}

.timeline::before{

    content:"";

    position:absolute;

    left:50%;

    top:0;

    transform:translateX(-50%);

    width:3px;

    height:100%;

    background:#C89A3D;

}

.timeline-item{

    width:50%;

    padding:30px;

    position:relative;

}

.timeline-item.left{

    left:0;

    text-align:right;

}

.timeline-item.right{

    left:50%;

}

.timeline-content{

    background:#fff;

    padding:35px;

    border-radius:20px;

    box-shadow:0 20px 40px rgba(0,0,0,.08);

    transition:.4s;

}

.timeline-content:hover{

    transform:translateY(-10px);

}

.timeline-content span{

    display:inline-block;

    width:60px;

    height:60px;

    background:#31543B;

    color:#fff;

    border-radius:50%;

    text-align:center;

    line-height:60px;

    font-weight:700;

    margin-bottom:20px;

}

.timeline-content h3{

    font-size:30px;

    font-family:'Cormorant Garamond',serif;

    margin-bottom:15px;

}

.timeline-content p{

    line-height:1.8;

    color:#666;

}

.timeline-item::after{

    content:"";

    position:absolute;

    width:18px;

    height:18px;

    background:#C89A3D;

    border-radius:50%;

    top:55px;

}

.timeline-item.left::after{

    right:-9px;

}

.timeline-item.right::after{

    left:-9px;

}
/*==========================
    CERTIFICATIONS
===========================*/

.certifications{

    padding:120px 0;

    background:#ffffff;

}

.cert-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

}

.cert-card{

    background:#F8F5EF;

    border-radius:25px;

    padding:45px 30px;

    text-align:center;

    transition:.4s;

    border:1px solid rgba(0,0,0,.05);

}

.cert-card:hover{

    transform:translateY(-12px);

    background:#31543B;

}

.cert-icon{

    width:85px;

    height:85px;

    margin:auto;

    border-radius:50%;

    background:#C89A3D;

    color:#fff;

    font-size:34px;

    display:flex;

    align-items:center;

    justify-content:center;

    margin-bottom:25px;

}

.cert-card h3{

    font-family:'Cormorant Garamond',serif;

    font-size:30px;

    margin-bottom:15px;

    color:#2A1B14;

}

.cert-card p{

    color:#666;

    line-height:1.8;

    font-size:15px;

}

.cert-card:hover h3,

.cert-card:hover p{

    color:#fff;

}
@media(max-width:991px){

.cert-grid{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:600px){

.cert-grid{

grid-template-columns:1fr;

}

}
/*==========================
      EXPORT MARKETS
===========================*/

.markets{

    padding:120px 0;

    background:#F8F5EF;

}

.markets-container{

    display:grid;

    grid-template-columns:1.3fr 1fr;

    gap:60px;

    align-items:center;

}

.map-image img{

    width:100%;

    filter:drop-shadow(0 20px 35px rgba(0,0,0,.12));

}

.market-content{

    display:grid;

    gap:20px;

}

.country{

    background:#fff;

    padding:25px 30px;

    border-radius:18px;

    transition:.4s;

    box-shadow:0 10px 25px rgba(0,0,0,.08);

    border-left:5px solid #C89A3D;

}

.country:hover{

    transform:translateX(12px);

    background:#31543B;

}

.country h3{

    font-size:26px;

    margin-bottom:10px;

    font-family:'Cormorant Garamond',serif;

    color:#2A1B14;

}

.country p{

    color:#666;

}

.country:hover h3,

.country:hover p{

    color:#fff;

}
@media(max-width:991px){

.markets-container{

grid-template-columns:1fr;

}

.map-image{

order:2;

}

.market-content{

order:1;

}

}
/*==========================
        GALLERY
===========================*/

.gallery{

    padding:120px 0;

    background:#ffffff;

}

.gallery-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    grid-auto-rows:250px;

    gap:20px;

}

.gallery-item{

    overflow:hidden;

    border-radius:20px;

    position:relative;

    cursor:pointer;

}

.gallery-item img{

    width:100%;

    height:100%;

    object-fit:cover;

    transition:.6s;

}

.gallery-item:hover img{

    transform:scale(1.12);

}

.gallery-item::before{

    content:"";

    position:absolute;

    inset:0;

    background:linear-gradient(
        to top,
        rgba(0,0,0,.55),
        transparent
    );

    opacity:0;

    transition:.4s;

}

.gallery-item:hover::before{

    opacity:1;

}

.gallery-item::after{

    content:"+";

    position:absolute;

    top:50%;

    left:50%;

    transform:translate(-50%,-50%);

    width:65px;

    height:65px;

    border-radius:50%;

    background:rgba(255,255,255,.25);

    backdrop-filter:blur(10px);

    color:#fff;

    font-size:34px;

    display:flex;

    align-items:center;

    justify-content:center;

    opacity:0;

    transition:.4s;

}

.gallery-item:hover::after{

    opacity:1;

}

.tall{

    grid-row:span 2;

}

.wide{

    grid-column:span 2;

}
@media(max-width:991px){

.gallery-grid{

grid-template-columns:repeat(2,1fr);

}

.wide{

grid-column:span 1;

}

}

@media(max-width:600px){

.gallery-grid{

grid-template-columns:1fr;

grid-auto-rows:250px;

}

.tall{

grid-row:span 1;

}

}
/*==========================
        CONTACT
===========================*/

.contact{

    padding:120px 0;

    background:#F8F5EF;

}

.contact-container{

    display:grid;

    grid-template-columns:1fr 1.2fr;

    gap:60px;

    margin-top:70px;

}

.contact-info{

    display:grid;

    gap:25px;

}

.info-box{

    background:#fff;

    padding:30px;

    border-radius:18px;

    box-shadow:0 15px 35px rgba(0,0,0,.08);

}

.info-box h3{

    margin-bottom:12px;

    color:#31543B;

    font-family:'Cormorant Garamond',serif;

    font-size:28px;

}

.info-box p{

    color:#666;

    line-height:1.8;

}

.contact-form{

    background:#fff;

    padding:45px;

    border-radius:25px;

    box-shadow:0 20px 45px rgba(0,0,0,.08);

}

.contact-form input,
.contact-form textarea{

    width:100%;

    padding:18px 20px;

    margin-bottom:20px;

    border:1px solid #ddd;

    border-radius:12px;

    outline:none;

    font-size:15px;

    font-family:'Poppins',sans-serif;

}

.contact-form input:focus,
.contact-form textarea:focus{

    border-color:#31543B;

}

.contact-form button{

    border:none;

    cursor:pointer;

}
@media(max-width:991px){

.contact-container{

grid-template-columns:1fr;

}

}
.footer{

    padding:35px 0;
    background-color: #ffffff;

}

.footer-content{

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:40px;

}

.footer-left{

    flex:1;

}

.footer-left p{

    line-height:1.8;
    font-size: 17px;

}

.footer-right img{

    width:170px;

}
.footer-left p a{
    color: #31543B;
}

/* Scroll Button */

.scroll-top{

    position:fixed;

    bottom:30px;

    right:30px;

    width:60px;

    height:60px;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    text-decoration:none;

    font-size:28px;
    color:#31543B ;

}