/* ===============================
   GOOGLE FONTS & RESET
================================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:#F8F5F0;
    color:#333;
    overflow-x:hidden;
}

/* ===============================
   COLORS
================================= */


:root{

    --primary:#6F4E37;      /* Coffee Brown */
    --secondary:#8B0000;    /* Deep Maroon */
    --accent:#556B2F;       /* Olive Green */
    --dark:#1F1F1F;
    --white:#FFFFFF;
    --light:#F8F5F0;

}

/* Headings */

h1,h2,h3,h4,h5,h6{

    font-family:'Playfair Display',serif;

}

a{

    text-decoration:none;

}

img{

    max-width:100%;

    display:block;

}

section{

    padding:100px 0;

}
/*=================================
            NAVBAR
==================================*/

.navbar{

    padding:20px 0;

    transition:.4s;

    background:#ffffff;

    box-shadow:0 5px 20px rgba(0,0,0,0.08);

}


.navbar-brand{

    font-size:34px;
    font-weight:700;
    color:#7c2d12;

}
.logo{
    height:60px;
    width:auto;
}

.navbar-brand span{

    color:var(--secondary);

}

.nav-link{

    color:var(--white);

    font-size:16px;

    font-weight:500;

    margin:0 12px;

    position:relative;

    transition:.3s;

}
.nav-link.active{

    color:#ffffff;

    font-weight:600;

}


.nav-link:hover{

    color:#ffffff;

}

.nav-link::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-5px;

    width:0;

    height:2px;

    background:var(--secondary);

    transition:.3s;

}

.nav-link:hover::after{

    width:100%;

}

.quote-btn{

    background:#25D366;

    color:white;

    padding:12px 28px;

    border-radius:40px;

    font-weight:600;

    transition:.4s;

}


.quote-btn:hover{

    background:#128C7E;

    color:white;

    transform:translateY(-3px);

}

.navbar-toggler{

    border:none;
    color:#212529;
    font-size:28px;

}

.navbar-toggler:focus{

    box-shadow:none;

}
/*==================================
            HERO
===================================*/

.hero{

    position:relative;

    min-height:100vh;

    background:url('../images/hero.jpeg');

    background-size:cover;

    background-position:center;

    overflow:hidden;

}

.hero-overlay{

    position:absolute;

    inset:0;

    background:rgba(0,0,0,.55);

}

.hero .container{
    margin-top: -100px;
    position:relative;
    z-index:2;

}


.hero h5{

    color:#E8D9C5;

    letter-spacing:3px;

    text-transform:uppercase;

    font-weight:600;

}

.hero h1{

    color:#fff;

    font-size:65px;

    line-height:1.2;

    font-weight:700;

    margin-bottom:25px;

}


.hero h1 span{

    color:#D4AF37;

}
.hero h1 span{

    color:#A52A2A;

}

.hero p{

    color:#f1f1f1;

    font-size:18px;

    line-height:1.8;

    max-width:600px;

}

.hero-btns{

    margin-top:40px;

}


.btn1{

    background:var(--secondary);

    color:white;

    padding:15px 35px;

    border-radius:50px;

    margin-right:15px;

    transition:.4s;

    font-weight:600;

}


.btn1:hover{

    background:#6B0000;

    color:#fff;

    transform:translateY(-5px);

    box-shadow:0 15px 35px rgba(0,0,0,.25);

}

.btn2{

    border:2px solid white;

    color:white;

    padding:15px 35px;

    border-radius:50px;

    transition:.4s;

}

.btn2:hover{

    background:white;

    color:black;

}
.navbar .nav-link,
.navbar .nav-link.active{
    color:#7c2d12 !important;
    font-weight:600;
}


.navbar .nav-link:hover{
    color:#c2410c !important;
}
/*==========================
        ABOUT
==========================*/

.about{

    padding:100px 0;

    background:#fff;

}

.about-image{

    position:relative;
    margin-right:40px;

}

.about-image img{

    width:100%;

    border-radius:20px;

}

.experience-box{

    position:absolute;

    right:-20px;

    bottom:30px;

    background:#8B0000;

    color:#fff;

    padding:20px 30px;

    border-radius:20px;

    text-align:center;

    box-shadow:0 10px 25px rgba(0,0,0,.2);

}

.experience-box h2{

    font-size:38px;

    margin-bottom:5px;

}

.about-tag{

    color:#8B0000;

    letter-spacing:3px;

    font-weight:600;

    margin-bottom:15px;

}

.about h2{

    font-size:46px;

    margin-bottom:25px;

    color:#fff;

}

.about p{

    color:#fff;

    line-height:1.9;

}

.about-list{

    margin:30px 0;

}

.about-list p{

    margin-bottom:12px;

    font-weight:500;

}

.about-list i{

    color:#556B2F;

    margin-right:10px;

}

/*=========================
      PAGE BANNER
=========================*/

.page-banner{

    padding:100px 20px;

    background:linear-gradient(135deg,#fff7ed,#fed7aa);

    text-align:center;

    color:#7c2d12;

    border-radius:0 0 40px 40px;

    box-shadow:0 10px 30px rgba(0,0,0,0.15);

    position:relative;

    overflow:hidden;

}


.page-banner::before{

    content:"";

    position:absolute;

    width:250px;
    height:250px;

    background:rgba(194,65,12,0.15);

    border-radius:50%;

    top:-120px;
    left:-80px;

}



.page-banner::after{

    content:"";

    position:absolute;

    width:200px;
    height:200px;

    background:rgba(251,191,36,0.20);

    border-radius:50%;

    bottom:-100px;
    right:-50px;

}



.page-banner h1{

    position:relative;
    z-index:2;

    font-family:'Playfair Display',serif;

    font-size:55px;

    font-weight:800;

    color:#7c2d12;

}



.page-banner p{

    position:relative;
    z-index:2;

    font-size:18px;

    color:#78350f;

}

/* Decorative spice effect */
.about-title::before,
.page-header::before{
    content:"";
    position:absolute;
    width:180px;
    height:180px;
    background:rgba(194,65,12,0.12);
    border-radius:50%;
    top:-70px;
    left:-70px;
}


.about-title::after,
.page-header::after{
    content:"";
    position:absolute;
    width:150px;
    height:150px;
    background:rgba(251,191,36,0.18);
    border-radius:50%;
    bottom:-60px;
    right:-50px;
}


.about-title h1,
.page-header h1{
    position:relative;
    z-index:2;
    font-size:45px;
    font-weight:800;
    color:#7c2d12;
    letter-spacing:1px;
    text-transform:uppercase;
}


.about-title p,
.page-header p{
    position:relative;
    z-index:2;
    color:#78350f;
    font-size:18px;
}


/* Animation */

@keyframes slideDown{

    from{
        opacity:0;
        transform:translateY(-30px);
    }

    to{
        opacity:1;
        transform:translateY(0);
    }
}
/* About Page Title Box */

.about-header{
    background: linear-gradient(135deg, #fff3e0, #ffcc80);
    padding: 50px 20px;
    border-radius: 20px;
    margin: 30px 0;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.about-header h1{
    color:#8b4513;
    font-size:45px;
    font-weight:800;
    text-transform:uppercase;
}
/* Navbar About button fix */

.navbar-nav .nav-link{
    color:#333;
    font-weight:500;
    padding:10px 18px;
}


.navbar-nav .nav-link:hover{
    color:#8B0000;
}


/* Remove bootstrap blue active color */

.navbar-nav .nav-link:focus,
.navbar-nav .nav-link:active{
    color:#8B0000;
}

/*=========================
 PRODUCT SECTION HEADING
=========================*/

.section-heading{
    position:relative;
}


.section-heading span{

    display:inline-block;

    color:#c2410c;

    font-size:15px;

    font-weight:700;

    letter-spacing:4px;

    margin-bottom:12px;

    text-transform:uppercase;

}


.section-heading h2{

    font-family:'Playfair Display',serif;

    font-size:48px;

    font-weight:800;

    color:#7c2d12;

    margin-bottom:18px;

    position:relative;

}


.section-heading h2::after{

    content:"";

    display:block;

    width:90px;

    height:4px;

    background:#c2410c;

    border-radius:10px;

    margin:15px auto;

}


.section-heading p{

    max-width:750px;

    margin:auto;

    color:#666;

    font-size:17px;

    line-height:1.8;

}

/*=========================
        PRODUCTS
=========================*/

.products{

    background:#fff8ed;

}


.product-card{

    background:#fff;

    border-radius:20px;

    overflow:hidden;

    transition:.4s;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

    height:100%;

}



.product-card img{

    width:100%;

    height:210px;

    object-fit:cover;

    transition:.5s;

}


.product-content{

    padding:25px;

    text-align:center;

}


.product-content h4{

    color:#7c2d12;

    font-weight:700;

    margin-bottom:12px;

}


.product-content p{

    color:#666;

    line-height:1.7;

}


.product-card:hover{

    transform:translateY(-10px);

    box-shadow:0 20px 40px rgba(0,0,0,.15);

}


.product-card:hover img{

    transform:scale(1.08);

}
.product-btn{

    display:inline-block;

    margin-top:18px;

    padding:10px 24px;

    background:#8B0000;

    color:#fff;

    text-decoration:none;

    border-radius:30px;

    font-weight:600;

    transition:.3s;

}

.product-btn:hover{

    background:#5f0000;

    color:#fff;

    transform:translateY(-3px);

}
/*=========================
      WHY CHOOSE
=========================*/


.why-choose{

    background:#fff;

}



.choose-box{

    background:#fff8ed;

    padding:35px 25px;

    text-align:center;

    border-radius:20px;

    height:100%;

    transition:.4s;

    box-shadow:0 10px 25px rgba(0,0,0,0.08);

}


.choose-box h4{

    color:#7c2d12;

    font-weight:700;

    margin-bottom:15px;

}



.choose-box p{

    color:#666;

    line-height:1.7;

}



.choose-box:hover{

    transform:translateY(-10px);

    box-shadow:0 20px 40px rgba(0,0,0,.15);

}



.choose-box:hover i{

    transform:scale(1.15);

}
/* FINAL WHY CHOOSE ICON COLORS */

.choose-box i{

    width:90px;
    height:90px;

    display:flex;
    align-items:center;
    justify-content:center;

    margin:0 auto 20px;

    font-size:42px;

    border-radius:50%;

    transition:.4s;

}


/* 1st - Pure & Natural Green */

.why-choose .row .col-lg-3:nth-child(1) .choose-box i{

    color:#15803d !important;

    background:#dcfce7 !important;

}



/* 2nd - Hygiene Blue */
.why-choose .row .col-lg-3:nth-child(2) .choose-box i{

    color:#2563eb !important;

    background:#dbeafe !important;

}



/* 3rd - Authentic Flavour Red */

.why-choose .row .col-lg-3:nth-child(3) .choose-box i{


    color:#dc2626 !important;

    background:#fee2e2 !important;

}



/* 4th - Packaging Golden */
.why-choose .row .col-lg-3:nth-child(4) .choose-box i{

    color:#b45309 !important;

    background:#fef3c7 !important;

}



.choose-box:hover i{

    transform:scale(1.15) rotate(8deg);

}
/*=========================
        GALLERY
=========================*/

.gallery{

    background:#fff8ed;

}

.gallery-buttons{

    margin-bottom:40px;

}

.gallery-btn{

    border:none;

    padding:14px 35px;

    border-radius:50px;

    margin:10px;

    background:white;

    color:#7c2d12;

    font-weight:600;

    transition:.4s;

    box-shadow:0 5px 20px rgba(0,0,0,.08);

}

.gallery-btn.active{

    background:#8B4513;

    color:white;

}

.gallery-btn:hover{

    background:#A0522D;

    color:white;

}

.gallery-content{

    display:none;

}

.gallery-content.active{

    display:block;

}

.gallery-card{

    overflow:hidden;

    border-radius:20px;

    background:white;

    box-shadow:0 10px 25px rgba(0,0,0,.08);

}


.gallery-card{

    overflow:hidden;
    border-radius:20px;
}

.gallery-card img{

    width:100%;
    height:550px;   /* Zarurat ho to 450px bhi kar sakti ho */
    object-fit:cover;
    transition:.5s;

}
.gallery-card video{

    width:100%;

    height:280px;

    object-fit:cover;

    transition:.5s;

}

.gallery-card:hover img{

    transform:scale(1.08);

}
/* Video Cards */

.video-card{

    width:300px;

    border-radius:20px;

    overflow:hidden;

}

.video-card video{

    width:100%;

    height:535px;

    object-fit:contain;

    background:#000;

}
/* Brand Promotion */

.promotion-card{
    max-width:450px;
    margin:auto;
}

.promotion-card img{
    width:100%;
    height:500px;
    object-fit:cover;
    border-radius:20px;
}
#gallery-promotions .row{
    margin-bottom:40px;
}
/*=========================
        CONTACT
=========================*/

.contact{

    background:#fff;

}

.contact-info{

    display:flex;

    flex-direction:column;

    gap:20px;

}

.contact-box{

    display:flex;

    align-items:center;

    gap:20px;

    background:#fff8ed;

    padding:22px;

    border-radius:18px;

    transition:.4s;

    box-shadow:0 8px 20px rgba(0,0,0,.08);

}

.contact-box:hover{

    transform:translateY(-6px);

}

.contact-box i{

    width:65px;

    height:65px;

    background:#8B4513;

    color:#fff;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:24px;

}

.contact-box h5{

    color:#7c2d12;

    font-weight:700;

    margin-bottom:5px;

}

.contact-box p{

    margin:0;

    color:#666;

}

.contact-form{

    background:#fff8ed;

    padding:35px;

    border-radius:20px;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

}

.contact-form .form-control{

    border:none;

    border-radius:12px;

    padding:15px;

    box-shadow:none;

}

.contact-form .form-control:focus{

    border:2px solid #8B4513;

}
/*=========================
        FOOTER
=========================*/

.footer{

    background:#2b170d;

    color:#fff;

    padding:70px 0 20px;

}

.footer-logo{

    border-radius: 10px;
    background-color: white;
    height:90px;

    width:auto;

    object-fit:contain;

    margin-bottom:20px;

    margin-top:-20px;

}
.footer h3{

    color:#FFD54F;

    margin-bottom:20px;

    font-weight:700;

}

.footer h5{

    color:#FFD54F;

    margin-bottom:18px;

}

.footer p{

    color:#ddd;

    line-height:1.8;

}

.footer ul{

    list-style:none;

    padding:0;

}

.footer ul li{

    margin-bottom:12px;

}

.footer ul li a{

    color:#ddd;

    text-decoration:none;

    transition:.3s;

}

.footer ul li a:hover{

    color:#FFD54F;

    padding-left:6px;

}

.footer hr{

    border-color:rgba(255,255,255,.15);

    margin:35px 0 20px;

}

.footer-bottom{

    text-align:center;

}

.footer-bottom p{

    margin:0;

    color:#bbb;

}

/* Google Map Button */

.map-btn{

    display:inline-block;

    margin-top:15px;

    padding:12px 24px;

    background:#FFD54F;

    color:#2b170d;

    border-radius:30px;

    text-decoration:none;

    font-weight:600;

    transition:.3s;

}

.map-btn:hover{

    background:#fff;

    color:#8B0000;

    transform:translateY(-3px);

}
/*=========================
   PRODUCT DETAIL PAGE
=========================*/

.page-banner{

    background:
    linear-gradient(rgba(0,0,0,.60),rgba(0,0,0,.60)),
    url("../images/hero.jpeg");

    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;

    height:420px;

    display:flex;
    align-items:center;
    justify-content:center;

    text-align:center;

    color:#ffffff;
}


.page-banner h1{

    font-size:58px;
    font-weight:700;
    color:#FFD700;      /* Golden */

    text-shadow:0 3px 10px rgba(0,0,0,.6);

    margin-bottom:15px;

    font-family:'Playfair Display',serif;

}

.page-banner p{

    font-size:20px;

    color:#ffffff;

    font-weight:500;

    letter-spacing:1px;

    text-shadow:0 2px 8px rgba(0,0,0,.6);

}
.btn1{
    display:inline-block;
    margin-top:25px;
    background:#8B0000;
    color:#fff;
    padding:14px 35px;
    border-radius:50px;
    text-decoration:none;
    font-weight:600;
    transition:.3s;
}

.btn1:hover{
    background:#5e0000;
    color:#fff;
    transform:translateY(-3px);
}
/*=========================
 PRODUCT PAGE
=========================*/

.product-img{
    width:100%;
    height:650px;       /* Image ki height */
    /*object-fit:cover;  */
    border-radius:18px;
    box-shadow:0 15px 35px rgba(0,0,0,.12);
}

.product-title{

    font-size:42px;

    color:#7c2d12;

    font-weight:700;

    margin-bottom:18px;

    font-family:'Playfair Display',serif;

}

.product-text{

    color:#666;

    line-height:1.8;

    margin-bottom:25px;

}

.product-details h4{

    color:#8B0000;

    font-size:24px;

    margin-bottom:15px;

}

.pack-text{

    font-size:18px;

    font-weight:600;

    color:#444;

    margin-bottom:25px;

}

.product-list{

    list-style:none;

    padding:0;

}

.product-list li{

    padding:10px 0;

    color:#555;

}

.product-list li::before{

    content:"✔";

    color:#16a34a;

    margin-right:12px;

    font-weight:bold;

}


/* Bottom Cards */

.info-card{

    background:#fff;

    padding:30px;

    border-radius:18px;

    height:100%;

    box-shadow:0 10px 25px rgba(0,0,0,.08);

    transition:.3s;

}

.info-card:hover{

    transform:translateY(-8px);

}

.info-card h4{

    color:#8B0000;

    margin-bottom:20px;

}

.info-card h4 i{

    color:#c68b00;

    margin-right:10px;

}

.info-card ul{

    list-style:none;

    padding:0;

}

.info-card li{

    padding:10px 0;

    color:#555;

}

.info-card li::before{

    content:"✔";

    color:#16a34a;

    margin-right:10px;

    font-weight:bold;

}

.navbar-toggler{
    display:block !important;
    border:none;
    background:transparent;
}

.navbar-toggler i{
    color:#333 !important;
    font-size:28px;
}
html, body{
    overflow-x: hidden;
    width: 100%;
}

.container,
.container-fluid{
    overflow-x: hidden;
}

.row{
    margin-left: 0 !important;
    margin-right: 0 !important;
}

.hero{
    overflow: hidden;
}