/* ===== GLOBAL ===== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html,body{
    overflow-x:hidden;
    font-family:'Poppins',sans-serif;
    background:#fffaf3;
    color:#3a2616;
}

img{
    max-width:100%;
    display:block;
}

section{
    padding:90px 8%;
}

h2{
    font-size:42px;
    color:#8b5a2b;
    margin-bottom:20px;
}

/* ===== NAVBAR ===== */

.navbar{
    position:sticky;
    top:0;
    z-index:9999;

    display:flex;
    justify-content:space-between;
    align-items:center;

    padding:14px 8%;
    background:#2b1b10;

    box-shadow:0 5px 20px rgba(0,0,0,.15);
}

.nav-logo img{
    height:70px;
}

.nav-links{
    display:flex;
    gap:35px;
}

.nav-links a{
    color:#fff;
    text-decoration:none;
    font-size:16px;
    font-weight:500;
    transition:.3s;
    position:relative;
}

.nav-links a:hover{
    color:#f4c542;
}

.nav-links a::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-5px;

    width:0%;
    height:2px;

    background:#f4c542;
    transition:.3s;
}

.nav-links a:hover::after{
    width:100%;
}

/* ===== SLIDER ===== */

.slider{
    position:relative;
    height:90vh;
    overflow:hidden;
}

.slide{
    position:absolute;
    inset:0;
    background-size:cover;
    background-position:center;
    opacity:0;
    transition:1s;
}

.slide.active{
    opacity:1;
}

.slide-content{
    position:absolute;
    inset:0;

    background:rgba(0,0,0,.5);

    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;

    text-align:center;
    color:#fff;

    padding:20px;
}

.slide-content h1{
    font-size:64px;
    margin-bottom:20px;
}

.slide-content p{
    font-size:24px;
}

/* ===== ARROWS ===== */

.arrow{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    z-index:10;

    width:50px;
    height:50px;

    border:none;
    border-radius:50%;

    background:rgba(0,0,0,.5);
    color:#fff;

    font-size:28px;
    cursor:pointer;
}

.arrow.left{
    left:25px;
}

.arrow.right{
    right:25px;
}

/* ===== DOTS ===== */

.dots{
    position:absolute;
    bottom:30px;
    width:100%;
    text-align:center;
}

.dot{
    width:12px;
    height:12px;

    border-radius:50%;

    display:inline-block;
    margin:0 5px;

    background:rgba(255,255,255,.5);
}

.dot.active{
    background:#fff;
}

/* ===== WHY SECTION ===== */

.why-bne{
    text-align:center;
    background:#fff;
}

.subtitle{
    max-width:700px;
    margin:auto auto 60px;
    line-height:1.7;
}

.why-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:35px;
}

.why-box{
    background:#fffaf3;
    padding:35px;
    border-radius:18px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.why-icon{
    font-size:45px;
    margin-bottom:20px;
}

.why-box h3{
    margin-bottom:15px;
    color:#8b5a2b;
}

/* ===== PROCESS ===== */

.process-grid{
    display:grid;
    grid-template-columns:1.2fr 1fr;
    gap:50px;
    align-items:center;
}

.process-text p{
    line-height:1.8;
    margin-bottom:20px;
}

.process-image img{
    border-radius:18px;
    box-shadow:0 10px 30px rgba(0,0,0,.15);
}

/* ===== STATS ===== */

.stats-section{
    background:#3a2616;
}

.stats-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:35px;
    text-align:center;
}

.stat-box h3{
    font-size:48px;
    color:#f4c542;
}

.stat-box p{
    color:#fff;
}

/* ===== PRODUCTS ===== */

.products-grid,
.product-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:35px;
}

.product-card{
    background:#fff;
    padding:25px;
    border-radius:18px;
    text-align:center;

    box-shadow:0 10px 25px rgba(0,0,0,.08);
    transition:.3s;
}

.product-card:hover{
    transform:translateY(-8px);
}

.product-card img{
    height:220px;
    width:100%;
    object-fit:cover;
    border-radius:12px;
    margin-bottom:20px;
}

/* ===== GALLERY ===== */

.gallery-hero{
    height:55vh;

    background:
    linear-gradient(rgba(0,0,0,.55),rgba(0,0,0,.55)),
    url("../images/farm-1.jpg") center/cover no-repeat;

    display:flex;
    align-items:center;
    justify-content:center;
}

.gallery-hero-content{
    text-align:center;
    color:#fff;
}

.gallery-hero-content h1{
    font-size:56px;
}

.gallery-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:30px;
}

.gallery-item{
    position:relative;
    overflow:hidden;
    border-radius:18px;
}

.gallery-item img{
    width:100%;
    height:260px;
    object-fit:cover;
    transition:.4s;
}

.gallery-item:hover img{
    transform:scale(1.08);
}

.gallery-overlay{
    position:absolute;
    inset:0;

    background:rgba(0,0,0,.45);

    display:flex;
    justify-content:center;
    align-items:center;

    color:#fff;
    font-size:18px;
}

/* ===== VIDEO ===== */

.video-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:30px;
}

.video-item{
    position:relative;
    height:260px;
    border-radius:18px;
    overflow:hidden;
    cursor:pointer;

    background-size:cover;
    background-position:center;
}

.video-item::before{
    content:"";
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.35);
}

.play-icon{
    position:absolute;
    inset:0;

    display:flex;
    justify-content:center;
    align-items:center;

    font-size:60px;
    color:#fff;
    z-index:2;
}

.video-item p{
    position:absolute;
    bottom:20px;
    left:20px;

    color:#fff;
    z-index:2;
}

/* ===== LIGHTBOX ===== */

#lightbox,
#videoLightbox{
    position:fixed;
    inset:0;

    display:none;
    justify-content:center;
    align-items:center;

    background:rgba(0,0,0,.9);

    z-index:9999;
}

#lightbox img,
#videoLightbox video{
    max-width:90%;
    max-height:90%;
}

.close-btn{
    position:absolute;
    top:30px;
    right:40px;

    color:#fff;
    font-size:40px;
    cursor:pointer;
}

/* ===== TESTIMONIALS ===== */

.testimonials{
    background:#fff;
    text-align:center;
}

.testimonial-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:35px;
}

.testimonial-card{
    background:#fffaf3;
    padding:35px;
    border-radius:18px;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
}

.testimonial-card p{
    line-height:1.8;
}

.testimonial-card h4{
    margin-top:20px;
    color:#8b5a2b;
}

/* ===== GST CERTIFICATE ===== */

.certificate-section{
    background:#fff;
}

.certificate-container{
    display:grid;
    grid-template-columns:1fr 1.1fr;
    gap:50px;
    align-items:center;
}

.certificate-image img{
    width:100%;
    max-width:500px;
    margin:auto;

    border-radius:18px;
    box-shadow:0 10px 30px rgba(0,0,0,.15);
}

.certificate-content p{
    line-height:1.8;
    margin-bottom:18px;
}

.certificate-badges{
    display:flex;
    flex-wrap:wrap;
    gap:15px;
    margin-top:25px;
}

.certificate-badges span{
    background:#3a2616;
    color:#fff;
    padding:12px 22px;
    border-radius:30px;
}

/* ===== FOOTER ===== */

.main-footer{
    background:#2b1b10;
    color:#fff;
    padding:60px 8% 30px;
}

.footer-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:40px;
}

.footer-grid h3,
.footer-grid h4{
    color:#f4c542;
    margin-bottom:15px;
}

.footer-grid p{
    line-height:1.8;
}

.footer-bottom{
    text-align:center;
    margin-top:40px;
    padding-top:20px;
    border-top:1px solid rgba(255,255,255,.15);
}

/* ===== WHATSAPP ===== */

.whatsapp-float{
    position:fixed;
    right:25px;
    bottom:25px;

    width:60px;
    height:60px;

    border-radius:50%;

    display:flex;
    justify-content:center;
    align-items:center;

    background:#25d366;
    color:#fff;

    font-size:30px;
    text-decoration:none;

    z-index:9999;

    box-shadow:0 10px 25px rgba(0,0,0,.25);
}

/* ===== RESPONSIVE ===== */

@media(max-width:900px){

    .process-grid,
    .certificate-container,
    .gallery-split{
        grid-template-columns:1fr;
    }

    .slide-content h1{
        font-size:42px;
    }

    .slide-content p{
        font-size:18px;
    }

    .gallery-hero-content h1{
        font-size:40px;
    }

    .navbar{
        flex-direction:column;
        gap:15px;
    }

    .nav-links{
        flex-wrap:wrap;
        justify-content:center;
        gap:20px;
    }

}

@media(max-width:600px){

    section{
        padding:70px 5%;
    }

    h2{
        font-size:32px;
    }

    .slide-content h1{
        font-size:34px;
    }
/* ===== SECTION HEADING ===== */

.section-heading{
    text-align:center;
    margin-bottom:60px;
}

.section-heading p{
    max-width:700px;
    margin:auto;
    line-height:1.8;
    color:#555;
}

/* ===== HERO OVERLAY ===== */

.hero-overlay{
    height:100%;

    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;

    background:rgba(0,0,0,.5);

    color:#fff;
    text-align:center;

    padding:20px;
}

.hero-overlay h1{
    font-size:58px;
    margin-bottom:15px;
}

.hero-overlay p{
    font-size:22px;
    color:#f4c542;
}
/* ===== CONTACT PAGE ===== */

.contact-section{
    background:#fff;
}

.contact-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:40px;
    align-items:start;
}

.contact-card,
.contact-form-box{
    background:#fffaf3;
    padding:40px;
    border-radius:20px;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
}

.contact-card h3,
.contact-form-box h3{
    margin-bottom:25px;
    color:#8b5a2b;
    font-size:28px;
}

.contact-info{
    margin-bottom:30px;
}

.contact-info h4{
    margin-bottom:10px;
    color:#3a2616;
}

.contact-info p{
    line-height:1.8;
    color:#555;
}

.contact-form-box form{
    display:flex;
    flex-direction:column;
    gap:20px;
}

.contact-form-box input,
.contact-form-box textarea{
    width:100%;
    padding:16px;

    border:none;
    border-radius:12px;

    background:#fff;

    font-size:16px;
    font-family:'Poppins',sans-serif;
}

.contact-form-box button{
    background:#3a2616;
    color:#fff;

    padding:16px;

    border:none;
    border-radius:40px;

    font-size:16px;
    font-weight:600;

    cursor:pointer;
    transition:.3s;
}

.contact-form-box button:hover{
    background:#f4c542;
    color:#000;
}

.map-section{
    background:#fff3e0;
}

.map-box{
    overflow:hidden;
    border-radius:20px;
    box-shadow:0 10px 30px rgba(0,0,0,.12);
}

@media(max-width:900px){

    .contact-grid{
        grid-template-columns:1fr;
    }

}
}