body {
    margin: 0px;
}

* {
    box-sizing: border-box;
}

html,
body {
    overflow-x: hidden !important;
}

html {
    scroll-behavior: smooth !important;
}




a {
    text-decoration: none !important;
    font-family: "Poppins", sans-serif;
}

h1 {
    font-family: "Poppins", sans-serif;
}

h2 {
    font-family: "Poppins", sans-serif;
}

h3 {
    font-family: "Poppins", sans-serif;
}

h4 {
    font-family: "Poppins", sans-serif;
}

h5 {
    font-family: "Poppins", sans-serif;
}

h6 {
    font-family: "Poppins", sans-serif;
}

p {
    font-family: "Poppins", sans-serif;
}

/* tag font end */

/* .sticky-navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
} */

/* section title */

.section-title {
    font-size: 36px;
    font-weight: 500;
    color: #000000;
    margin-bottom: 10px;
    font-family: "Courgette", cursive;
    
}

.section-title span {
    color: #8d8f3c;
}

.section-subtitle {
    font-size: 15px;
    color: #000000;
    margin: 0 auto;
}


@media (max-width: 575px) {
    .section-title {
        font-size: 30px;
    }
}

/* section title end*/




/* header start */



.navbar-custom {
    /* position: fixed; */
    /* top: 0; */
    width: 100%;
    z-index: 1030;
    background: transparent;
    transition: all 0.4s ease-in-out;
    background-color:#f7f7f7;
}

.navbar-brand img {
    width: 150px;
}


/* sticky */
.sticky-scroll {
    background-color: #ffffff;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1030;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.sticky-scroll .navbar-nav a {
    color: #000000 !important;
}
/* sticky */


.navbar-nav {
    justify-content: end;
}

.navbar-nav a {
    color: #000000 !important;
    margin: 0 20px;
    font-size: 16px;
    font-weight: 400;
}

.navbar-nav a:hover,
.navbar-nav .active a {
    color: #8d8f3c !important;
}



.navbar-toggler span {
    color: #000000;
}

.navbar-toggler:focus {
    box-shadow: none;
}



.header-btn a {
    border: 1px solid #8d8f3c;
    color: #8d8f3c;
    padding: 7px 26px;
    border-radius: 50px;
    
    transition: 0.3s;
}

.header-btn a:hover {
    background: #8d8f3c;
    color: #ffffff;
    
}



.offcanvas-end {
    background-color: #ffffff;
}




@media (max-width: 991px) {

    .navbar-nav a {
        color: #000000 !important;
    }

    .submenu {
        display: none;
        padding-left: 15px;
        margin-top: 5px;
        border-left: 2px solid #8d8f3c;
    }

    .submenu.show {
        display: block;
    }

    .submenu-toggle {
        font-weight: 500;
        color: #000000 !important;
    }
}



@media (max-width: 1200px) {
    .header-btn {
        display: none;
    }
}

@media (max-width: 432px) {
    .navbar-brand img {
        width: 140px;
    }
}



/* .navbar-toggler-icon{
    background-color: #000000 !important;
    color: #00ff37 !important;
} */

/* header end */




/* banner section home start */


.spice-banner {
    width: 100%;
    background: #f7f7f7;
    padding: 70px 0 80px;
    position: relative;
    overflow: hidden;
}



.banner-content {
    position: relative;
    z-index: 2;
}

.mini-title {
    display: inline-block;
    font-size: 14px;
    color: #8d8f3c;
    margin-bottom: 18px;
    font-weight: 400;
    font-style: italic;
    animation: fadeUp 1s ease;
}

.banner-content h1 {
    font-size: 64px;
    font-weight: 400;
    line-height: 1.2;
    color: #222;
    margin-bottom: 10px;
    animation: fadeUp 1.2s ease;
    font-family: "Courgette", cursive;
}

.banner-content h1 span{
    color: #8d8f3c;
}

.banner-content p {
    font-size: 15px;
    line-height: 1.8;
    color: #666;
    max-width: 520px;
    margin-bottom: 35px;
    animation: fadeUp 1.2s ease;
}



.banner-btns {
    display: flex;
    align-items: center;
    gap: 15px;
    animation: fadeUp 1.4s ease;
}

.btn-buy {
    background: #8d8f3c;
    color: #fff;
    padding: 13px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 400;
    transition: 0.4s;
}

.btn-buy:hover {
    background: #3a4d36;
    color: #fff;
    transform: translateY(-3px);
}

.btn-more {
    background: #fff;
    color: #222;
    border: 1px solid #ddd;
    padding: 13px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 15px;
    font-weight:400;
    transition: 0.4s;
}

.btn-more:hover {
    background: #8d8f3c;
    color: #fff;
    border-color: #ffffff;
    transform: translateY(-3px);
}


.banner-image {
    position: relative;
    text-align: center;
}

.banner-image img {
    width: 100%;
    max-width: 760px;
    animation: floatImage 4s ease-in-out infinite;
}


@keyframes floatImage {

    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}

@keyframes fadeUp {

    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0px);
    }
}


@media (max-width: 1200px) {

    .banner-content h1 {
        font-size: 52px;
    }
}

@media (max-width: 991px) {

    .spice-banner {
        padding: 150px 0 60px;
        text-align: center;
    }

    .banner-content {
        margin-bottom: 50px;
    }

    .banner-content h1 {
        font-size: 44px;
    }

    .banner-content p {
        max-width: 100%;
        margin: 0 auto 30px;
    }

    .banner-btns {
        justify-content: center;
    }

    .banner-image img {
        max-width: 100%;
    }
}

@media (max-width: 767px) {

    .spice-banner {
        padding: 130px 0 50px;
    }

    .mini-title {
        font-size: 13px;
    }

    .banner-content h1 {
        font-size: 34px;
        line-height: 1.3;
        margin-bottom: 25px;
    }

    .banner-content p {
        font-size: 15px;
        line-height: 1.7;
    }

    .banner-btns {
        /* flex-direction: column; */
        justify-content: center;
        gap: 12px;
    }

    .btn-buy,
    .btn-more {
        width: 200px;
        text-align: center;
    }
}

@media (max-width: 480px) {

    .spice-banner {
        padding: 35px 0 40px;
    }

    .banner-content h1 {
        font-size: 35px;
    }

    .btn-buy,
    .btn-more {
        width: 180px;
        padding: 12px 20px;
        font-size: 14px;
    }
}

/* banner end */





/* footer start */


.footer-section {
    padding-bottom: 15px;
    /* background-color: #f7f7f7; */
    background-color: #f7f7f7;
}

.footer-bg {
    padding-top: 50px;
    /* padding-bottom: 10px; */
    border-radius: 15px;
}

.footer-logo img {
    width: 150px;
}

.footer-about p {
    margin-top: 15px;
    color: #000;
    font-size: 15px;
    font-weight: 400;
}

.social-icon {
    padding-top: 5px;
}

.social-icon a {
    font-size: 20px;
    color: #000;
    padding: 0px 25px 0px 0px;

    transition: all 0.4s ease-in-out;
    opacity: 1;
    display: inline-block;
}

.social-icon a:hover {

    /* opacity: 0.6; */
    transform: translateY(-5px);
    color: #8d8f3c;
}


.footer-menu{
    display: flex;
    justify-content: center;
}

.footer-menu ul {
    padding: 0px;
}

.footer-menu li {
    list-style: none;
    margin: 10px;
    margin-left: 0px;

}

.footer-menu h2 {
    color: #000;

    font-weight: 500;
    font-size: 22px;
    line-height: 100%;
    letter-spacing: 0%;
    padding-bottom: 10px;

}

.footer-menu a {
    color: #000;
    font-weight: 400;
    font-size: 15px;
    line-height: 100%;
    letter-spacing: 0%;

}

.footer-menu a:hover {
    color: #8d8f3c;
}

.copy-right {
    display: flex;

    justify-content: space-between;
    padding-top: 25px;
    /* padding: 30px 20px 0px 20px; */
}

.copy-right p {

    font-weight: 400;
    font-size: 15px;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
    color: #000;

}

.copy-right a {
    color: #000000;
}





@media(max-width:768px) {
    .footer-menu {
        padding: 20px;
        display: flex;
        justify-content: left;
    }

    .footer-content {
        padding: 20px;
    }
}

@media(max-width:432px) {
    .footer-menu h2 {
        font-size: 18px;
    }

    .footer-menu li {
        margin: 5px;
        margin-left: 0px;
    }

    .footer-menu a {
        font-size: 15px;
    }

    .copy-right {
        display: flex;
        flex-direction: column;
    }

    .copy-right p {
        font-size: 13px;
    }

    .footer-section {
        padding-bottom: 0px;
    }
}

/* footer end */





/* about start */

.about-section {
    padding: 50px 0px;
}



.about-btn {
    padding-top: 10px;
}

.about-btn a {
    padding: 7px 26px 7px 26px;
    /* background-color: #8d8f3c; */
    border: 1px solid #8d8f3c;
    color: #8d8f3c;
    border-radius: 50px;
    font-size: 15px;
}

.about-btn a:hover {
    background-color: #8d8f3c;
    color: #ffffff;
    
}

.about-image-col{
    display: flex;
    align-items: center;
}

.about-image img {
    border-radius: 10px;
}

.about-content h2 {
    font-size: 40px;
    font-weight: 500;
    color: #000000;
    margin-bottom: 15px;
    font-family: "Courgette", cursive;
}

.about-content span {
    color: #8d8f3c;
}

.about-content p {
    color: #000000;
    font-size: 16px;
    font-weight: 400;
    text-align: left;
}


/* Counter */

.about-counter {
    margin-top: 25px;
}

/* .counter-box{
    display: flex;
    flex-direction: column;
    align-items: center;
} */

.counter-box h3 {
    font-size: 55px;
    font-weight: 600;
    color: #000000;
    margin-bottom: 5px;
}

.counter-box span{
    color: #000000;
}

.counter-box p {
    font-size: 14px;
    font-weight: 500;
    color:#8d8f3c;
}




@media(max-width:992px) {
    .about-content {
        padding-top: 30px;
    }
}




@media(max-width:432px) {
    .about-section {
        padding-top: 27px;
    }

    .about-content h2 {
        font-size: 30px;
        line-height: 37px;
    }

    .about-content p {
        font-size: 15px;
        text-align: left;
    }

    .counter-box{
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .counter-box h3{
        font-size: 34px;
    }

   
}

/* about end */



/* floating btn */

.floating-buttons-left {
    position: fixed;
    left: 15px;
    bottom: 3%;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.float-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    text-decoration: none;
}


.float-btn.whatsapp {
    background: #25d366;
}


.float-btn.call {
    background: #8d8f3c;
}
/* end */

/* bootom to top */

.back-to-top {
    position: fixed;
    right: 15px;
    bottom: 3%;
    width: 40px;
    height: 40px;
    background: #8d8f3c;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    text-decoration: none;
    z-index: 999;
}
/* end */




/* products start */



/* .product-section {
    background: #f7f7f7;
    padding: 50px 0;
    overflow: hidden;
}

.section-head {
    margin-bottom: 60px;
}

.section-head h2 {
    font-size: 40px;
    font-weight: 500;
    color: #000000;
    margin-bottom: 18px;
    font-family: "Courgette", cursive;
}

.section-head h2 span{
    color: #8d8f3c;
}

.section-head p {
    max-width: 650px;
    margin: auto;
    color: #666;
    font-size: 15px;
    line-height: 1.8;
}



.product-card {
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    transition: 0.5s ease;
    position: relative;
    height: 100%;
    
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}


.product-img {
    overflow: hidden;
}

.product-img img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: 0.6s ease;
}

.product-card:hover .product-img img {
    transform: scale(1.08);
}



.product-content {
    padding: 30px;
}

.product-content h4 {
    font-size: 18px;
    font-weight: 500;
    color: #222;
    margin-bottom: 14px;
}

.product-content p {
    color: #666;
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 25px;
}


.product-btns {
    display: flex;
    gap: 12px;
}



.whatsapp-btn,
.view-btn {
    flex: 1;
    height: 35px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    transition: 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}



.whatsapp-btn {
    background: #25d366;
    color: #fff;
}

.whatsapp-btn:hover {
    background: #1ebd5a;
    color: #fff;
    transform: translateY(-2px);
}



.view-btn {
    border: 1px solid #8d8f3c;
    color: #8d8f3c;
    background: transparent;
}

.view-btn:hover {
    background: #8d8f3c;
    color: #fff;
    transform: translateY(-2px);
}



.more-product-btn {
    margin-top: 60px;
}

.more-product-btn a {
    display: inline-block;
    border: 1px solid #8d8f3c;
    color: #8d8f3c;
    padding: 13px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 400;
    transition: 0.4s ease;
}

.more-product-btn a:hover {
    background: #8d8f3c;
    color: #ffffff;
    transform: translateY(-3px);
}



@media (max-width: 991px) {

    .product-section {
        padding: 80px 0;
    }

    .section-head h2 {
        font-size: 38px;
    }

    .product-content {
        padding: 25px;
    }
}

@media (max-width: 767px) {

    .product-section {
        padding: 70px 0;
    }

    .section-head {
        margin-bottom: 40px;
    }

    .section-head h2 {
        font-size: 30px;
    }

    .product-content h4 {
        font-size: 18px;
    }

    

    .product-btns {
        display: flex;
        flex-direction: row;
        gap: 10px;
    }

    .whatsapp-btn,
    .view-btn {
        flex: 1;
        font-size: 13px;
        height: 35px;
        padding: 0 10px;
    }

    .product-img img {
        height: 240px;
    }
}

@media (max-width: 480px) {

    .section-head h2 {
        font-size: 30px;
    }

    .product-content {
        padding: 20px;
    }

    .product-content p {
        font-size: 14px;
    }

    .whatsapp-btn,
    .view-btn {
        font-size: 13px;
        gap: 5px;
    }
} */





.product-section {
    position: relative;
    background: #f7f7f7;
    padding: 50px 0;
    overflow: hidden;
}

/* LEFT BLUR SHAPE */
.shape-img{
    position: absolute;
    left: -120px;
    top: 35%;
    transform: translateY(-50%);
    z-index: 1;
    opacity: 1.01;
    pointer-events: none;
    filter: blur(1px);

    
}

.shape-img img{
    width: 350px;
    display: block;
}

/* CONTENT */
.product-section .container{
    position: relative;
    z-index: 2;
}

/* HEADING */
.section-head {
    margin-bottom: 60px;
}

.section-head h2 {
    font-size: 40px;
    font-weight: 500;
    color: #000000;
    margin-bottom: 18px;
    font-family: "Courgette", cursive;
}

.section-head h2 span{
    color: #8d8f3c;
}

.section-head p {
    max-width: 650px;
    margin: auto;
    color: #666;
    font-size: 15px;
    line-height: 1.8;
}

/* PRODUCT CARD */
.product-card {
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    transition: 0.5s ease;
    position: relative;
    height: 100%;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

/* IMAGE */
.product-img {
    overflow: hidden;
}

.product-img img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: 0.6s ease;
}

.product-card:hover .product-img img {
    transform: scale(1.08);
}

/* CONTENT */
.product-content {
    padding: 30px;
}

.product-content h4 {
    font-size: 18px;
    font-weight: 500;
    color: #222;
    margin-bottom: 14px;
}

.product-content p {
    color: #666;
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 25px;
}

/* BUTTONS */
.product-btns {
    display: flex;
    gap: 12px;
}

.whatsapp-btn,
.view-btn {
    flex: 1;
    height: 40px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    transition: 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.whatsapp-btn {
    background: #25d366;
    color: #fff;
}

.whatsapp-btn:hover {
    background: #1ebd5a;
    color: #fff;
    transform: translateY(-2px);
}

.view-btn {
    border: 1px solid #8d8f3c;
    color: #8d8f3c;
    background: transparent;
}

.view-btn:hover {
    background: #8d8f3c;
    color: #fff;
    transform: translateY(-2px);
}


.more-product-btn {
    margin-top: 60px;
}

.more-product-btn a {
    display: inline-block;
    border: 1px solid #8d8f3c;
    color: #8d8f3c;
    padding: 13px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 400;
    transition: 0.4s ease;
}

.more-product-btn a:hover {
    background: #8d8f3c;
    color: #ffffff;
    transform: translateY(-3px);
}

/* RESPONSIVE */
@media (max-width: 991px) {

    .product-section {
        padding: 80px 0;
    }

    .section-head h2 {
        font-size: 38px;
    }

    .product-content {
        padding: 25px;
    }

    .shape-img{
        left: -90px;
    }

    .shape-img img{
        width: 260px;
    }

}

@media (max-width: 767px) {

    .product-section {
        padding: 50px 0;
    }

    .section-head {
        margin-bottom: 40px;
    }

    .section-head h2 {
        font-size: 30px;
    }

    .product-img img {
        height: 240px;
    }

    .shape-img{
        left: -70px;
        opacity: 0.05;
    }

    .shape-img img{
        width: 180px;
    }

}

@media (max-width: 480px) {

    .product-content {
        padding: 20px;
    }

    .product-content p {
        font-size: 14px;
    }

    .whatsapp-btn,
    .view-btn {
        font-size: 13px;
        gap: 5px;
    }

    .shape-img{
        left: -50px;
    }

    .shape-img img{
        width: 140px;
    }

}






/* products end */


/* why choose us */



.choose-section {
    padding: 100px 0;
    background: #ffffff;
    overflow: hidden;
}



.choose-image {
    position: relative;
    padding-right: 40px;
}

.choose-image img {
    width: 100%;
    border-radius: 30px;
    animation: floatImage 4s ease-in-out infinite;
}



.floating-card {
    position: absolute;
    bottom: 30px;
    right: 0;
    background: #8d8f3c;
    color: #fff;
    padding: 25px;
    width: 260px;
    border-radius: 24px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    animation: fadeUp 1.5s ease;
}

.floating-card h4 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
}

.floating-card p {
    margin: 0;
    line-height: 1.7;
    font-size: 14px;
}



.choose-content span {
    display: inline-block;
    background: rgba(141, 143, 60, 0.12);
    color: #8d8f3c;
    padding: 8px 22px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 18px;
}

.choose-content h2 {
    font-size: 45px;
    font-weight: 500;
    line-height: 1.3;
    color: #000000;
    margin-bottom: 20px;
    font-family: "Courgette", cursive;
}

.choose-content p {
    color: #666;
    font-size: 16px;
    line-height: 1.9;
    margin-bottom: 35px;
}



.choose-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}



.choose-box {
    background: #f7f7f7;
    border-radius: 24px;
    padding: 25px;
    display: flex;
    align-items: flex-start;
    gap: 18px;
    transition: 0.4s ease;
    position: relative;
    overflow: hidden;
}

.choose-box::before {
    content: "";
    position: absolute;
    width: 0%;
    height: 100%;
    background: #8d8f3c;
    left: 0;
    top: 0;
    transition: 0.5s ease;
    z-index: 0;
}

.choose-box:hover::before {
    width: 100%;
}

.choose-box:hover {
    transform: translateY(-8px);
}

.choose-box:hover h4,
.choose-box:hover p,
.choose-box:hover i {
    color: #fff;
}

.choose-box:hover i {
    color: #8d8f3c !important;
}

.choose-box * {
    position: relative;
    z-index: 2;
}



.choose-icon {
    min-width: 60px;
    height: 60px;
    background: #fff;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.choose-icon i {
    font-size: 24px;
    color: #8d8f3c;
    transition: 0.4s;
}



.choose-box h4 {
    font-size: 18px;
    font-weight: 500;
    color: #8d8f3c;
    margin-bottom: 10px;
    transition: 0.4s;
}

.choose-box p {
    margin: 0;
    font-size: 14px;
    line-height: 1.7;
    color: #666;
    transition: 0.4s;
}



@keyframes floatImage {

    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-12px);
    }

    100% {
        transform: translateY(0px);
    }
}

@keyframes fadeUp {

    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


@media (max-width: 991px) {

    .choose-section {
        padding: 80px 0;
    }

    .choose-image {
        padding-right: 0;
        margin-bottom: 50px;
    }

    .choose-content h2 {
        font-size: 38px;
    }
}

@media (max-width: 767px) {

    .choose-content h2 {
        font-size: 30px;
    }

    .choose-grid {
        grid-template-columns: 1fr;
    }

    .floating-card {
        width: 220px;
        padding: 20px;
    }

    .choose-box {
        padding: 20px;
    }

    .choose-box h4 {
        font-size: 20px;
    }
}

@media (max-width: 480px) {

    .choose-section {
        padding: 70px 0;
    }

    .choose-content h2 {
        font-size: 30px;
    }

    .floating-card {
        position: relative;
        bottom: 0;
        margin-top: 20px;
        width: 100%;
    }
}

/* why choose us end*/




/* quality section */
.quality-section {
    padding: 50px 0;
    background: #f7f7f7;
    overflow: hidden;
}



.quality-head {
    margin-bottom: 60px;
}

.quality-head span {
    display: inline-block;
    background: rgba(141, 143, 60, 0.12);
    color: #8d8f3c;
    padding: 8px 22px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 18px;
}

.quality-head h2 {
    font-size: 45px;
    font-weight: 500;
    color: #222;
    margin-bottom: 18px;
    font-family: "Courgette", cursive;
}

.quality-head p {
    max-width: 650px;
    margin: auto;
    color: #666;
    line-height: 1.8;
    font-size: 16px;
}



.quality-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 28px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: 0.5s ease;
    height: 100%;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.05);
}



.quality-card::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 0%;
    background: #8d8f3c;
    left: 0;
    bottom: 0;
    transition: 0.5s ease;
    z-index: 0;
}

.quality-card:hover::before {
    height: 100%;
}

.quality-card:hover {
    transform: translateY(-12px);
}

.quality-card * {
    position: relative;
    z-index: 2;
}



.quality-icon {
    width: 90px;
    height: 90px;
    background: #f7f7f7;
    border-radius: 50%;
    margin: auto auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s ease;
    animation: iconFloat 3s ease-in-out infinite;
}

.quality-icon i {
    font-size: 34px;
    color: #8d8f3c;
    transition: 0.5s ease;
}



.quality-number {
    font-size: 70px;
    font-weight: 800;
    line-height: 1;
    color: rgba(141, 143, 60, 0.12);
    margin-bottom: 15px;
    transition: 0.5s ease;
}



.quality-card h4 {
    font-size: 20px;
    font-weight: 500;
    color: #222;
    margin-bottom: 15px;
    transition: 0.5s ease;
}

.quality-card p {
    color: #666;
    line-height: 1.8;
    font-size: 15px;
    transition: 0.5s ease;
}



.quality-card:hover h4,
.quality-card:hover p,
.quality-card:hover i {
    color: #fff;
}

.quality-card:hover .quality-number {
    color: rgba(255, 255, 255, 0.18);
}

.quality-card:hover .quality-icon {
    background: rgba(255, 255, 255, 0.12);
    transform: rotateY(180deg);
}



@keyframes iconFloat {

    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 991px) {

    .quality-section {
        padding: 80px 0;
    }

    .quality-head h2 {
        font-size: 38px;
    }

    .quality-card {
        padding: 35px 25px;
    }
}

@media (max-width: 767px) {

    .quality-section {
        padding: 70px 0;
    }

    .quality-head {
        margin-bottom: 40px;
    }

    .quality-head h2 {
        font-size: 30px;
    }

    .quality-card {
        padding: 30px 22px;
    }

    .quality-number {
        font-size: 56px;
    }

    .quality-card h4 {
        font-size: 22px;
    }
}

@media (max-width: 480px) {

    .quality-head h2 {
        font-size: 26px;
    }

    .quality-card h4 {
        font-size: 20px;
    }

    .quality-card p {
        font-size: 14px;
    }
}

/* quality section */





/* cta */

.cta-section {
    padding: 50px 0;
    background: #ffffff;
    overflow: hidden;
}


.cta-wrapper {
    position: relative;
    background: linear-gradient(135deg, #8d8f3c, #6f712d);
    border-radius: 35px;
    padding: 70px;
    overflow: hidden;
    z-index: 1;
}



.cta-shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    z-index: -1;
}

.shape-1 {
    width: 250px;
    height: 250px;
    top: -80px;
    right: -50px;
    animation: zoomMove 6s ease-in-out infinite;
}

.shape-2 {
    width: 180px;
    height: 180px;
    bottom: -60px;
    left: -40px;
    animation: zoomMove 5s ease-in-out infinite;
}


.cta-content span {
    display: inline-block;
    background: rgba(255,255,255,0.12);
    color: #fff;
    padding: 8px 22px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

.cta-content h2 {
    font-size: 52px;
    font-weight: 500;
    line-height: 1.2;
    color: #fff;
    margin-bottom: 20px;
    max-width: 700px;
}

.cta-content p {
    color: rgba(255,255,255,0.85);
    font-size: 16px;
    line-height: 1.9;
    max-width: 650px;
    margin-bottom: 40px;
}



.cta-btns {
    display: flex;
    align-items: center;
    gap: 18px;
}

.cta-btn {
    min-width: 210px;
    height: 58px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.4s ease;
}



.whatsapp-cta {
    background: #25d366;
    color: #fff;
    gap: 10px;
}

.whatsapp-cta:hover {
    background: #1ebc59;
    color: #fff;
    transform: translateY(-3px);
}



.product-cta {
    background: #fff;
    color: #000000;
}

.product-cta:hover {
    background: #222;
    color: #fff;
    transform: translateY(-3px);
}



@keyframes zoomMove {

    0% {
        transform: scale(1) translateY(0px);
    }

    50% {
        transform: scale(1.1) translateY(10px);
    }

    100% {
        transform: scale(1) translateY(0px);
    }
}



@media (max-width: 991px) {

    .cta-section {
        padding: 80px 0;
    }

    .cta-wrapper {
        padding: 55px 40px;
    }

    .cta-content h2 {
        font-size: 40px;
    }
}

@media (max-width: 767px) {

    .cta-wrapper {
        padding: 45px 25px;
        text-align: center;
    }

    .cta-content h2 {
        font-size: 30px;
    }

    .cta-content p {
        margin-bottom: 30px;
    }

    .cta-btns {
        justify-content: center;
        flex-wrap: wrap;
    }

    .cta-btn {
        min-width: 180px;
        height: 52px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {

    .cta-content h2 {
        font-size: 30px;
        line-height: 1.4;
    }

    .cta-btns {
        flex-direction: column;
    }

    .cta-btn {
        width: 100%;
    }
}

/* cta end */


/* contact page start */

/* CONTACT PAGE */
.contact-page{
    background: #f7f7f7;
    overflow: hidden;
}

/* Heading */
.contact-heading span{
    display: inline-block;
    background: rgba(141, 143, 60, 0.12);
    color: #8d8f3c;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
}

.contact-heading h2{
    font-size: 45px;
    font-weight: 500;
    color: #000000;
    margin-bottom: 15px;
    font-family: "Courgette", cursive;
}

.contact-heading p{
    color: #666;
    max-width: 650px;
    margin: auto;
    line-height: 1.8;
}

/* Info Card */
.contact-info-card{
    background: #ffffff;
    border-radius: 24px;
    padding: 28px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 25px;
    transition: 0.4s;
    box-shadow: 0 10px 35px rgba(0,0,0,0.05);
}

.contact-info-card:hover{
    transform: translateY(-8px);
}

.info-icon{
    width: 68px;
    height: 68px;
    min-width: 68px;
    background: #8d8f3c;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-icon i{
    color: #ffffff;
    font-size: 24px;
}

.info-content h4{
    color: #000000;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}

.info-content p{
    margin: 0;
    color: #666;
    line-height: 1.8;
}

.info-content a{
    color: #666;
    text-decoration: none;
    transition: 0.3s;
    font-size: 15px;
}

.info-content a:hover{
    color: #8d8f3c;
}

/* Form */
.contact-form-box{
    background: #ffffff;
    padding: 40px;
    border-radius: 28px;
    height: 100%;
    box-shadow: 0 10px 35px rgba(0,0,0,0.05);
}

.contact-form-box input,
.contact-form-box textarea{
    width: 100%;
    border: 1px solid #ddd;
    border-radius: 16px;
    padding: 16px 20px;
    outline: none;
    transition: 0.3s;
    font-size: 15px;
}

.contact-form-box input:focus,
.contact-form-box textarea:focus{
    border-color: #8d8f3c;
    box-shadow: 0 0 0 4px rgba(141,143,60,0.12);
}

.contact-form-box textarea{
    resize: none;
}

.contact-form-box button{
    background: #8d8f3c;
    color: #ffffff;
    border: none;
    padding: 16px 42px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    transition: 0.4s;
}

.contact-form-box button:hover{
    background: #000000;
}

/* Map */
.map-wrapper iframe{
    border-radius: 28px;
}

/* Responsive */
@media(max-width:991px){

    .contact-heading h2{
        font-size: 34px;
    }

    .contact-form-box{
        padding: 25px;
    }

}

@media(max-width:576px){

    .contact-info-card{
        padding: 22px;
    }

    .contact-heading h2{
        font-size: 30px;
    }

}

/* contact page end */




/* product detail page */

.product-detail-section{
    position: relative;
    padding: 50px 0;
    background: linear-gradient(to bottom, #f8f8f3, #ffffff);
    overflow: hidden;
}


.floating-spice{
    position: absolute;
    z-index: 1;
    pointer-events: none;
}

.spice-1{
    width: 130px;
    top: 70px;
    left: 30px;
}

.spice-2{
    width: 180px;
    bottom: 70px;
    right: 50px;
}

.spice-3{
    width: 110px;
    top: 45%;
    right: 10%;
}


.product-detail-wrapper{
    position: relative;
    z-index: 2;
}


.product-detail-image{
    position: relative;
    margin-bottom: 50px;
    border-radius: 30px;
    overflow: hidden;
}

.image-bg{
    position: absolute;
    width: 420px;
    height: 420px;
    background: #8d8f3c;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.12;
    filter: blur(10px);
}

.product-detail-image img{
    width: 100%;
    height: 520px;
    object-fit: cover;
    border-radius: 30px;
    display: block;
    position: relative;
    z-index: 2;
    box-shadow: 0 25px 60px rgba(0,0,0,0.12);
    transition: 0.5s;
}

.product-detail-image:hover img{
    transform: scale(1.03);
}


.product-detail-content{
    position: relative;
    z-index: 2;
}

.product-tag{
    display: inline-block;
    background: rgba(141,143,60,0.12);
    color: #8d8f3c;
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

.product-detail-content h1{
    font-size: 30px;
    font-weight: 500;
    color: #000000;
    line-height: 1.2;
    margin-bottom: 20px;
}

.product-text{
    color: #666;
    line-height: 1.9;
    margin-bottom: 35px;
    max-width: 850px;
    font-size: 15px;
    font-weight: 400;
}


.product-features{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 18px;
    margin-bottom: 40px;
}

.feature-item{
    background: #ffffff;
    border-radius: 18px;
    padding: 16px 18px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: 0.4s;
    font-weight: 500;
    color: #333;
}

.feature-item:hover{
    transform: translateY(-5px);
}

.feature-item i{
    color: #8d8f3c;
    margin-right: 8px;
}


.detail-action-btns{
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

.detail-whatsapp-btn,
.detail-contact-btn{
    flex: 1;
    min-width: 220px;
    height: 58px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: 0.4s ease;
}

.detail-whatsapp-btn{
    background: #25D366;
    color: #ffffff;
}

.detail-whatsapp-btn i{
    margin-right: 10px;
    font-size: 18px;
}

.detail-contact-btn{
    background: #000000;
    color: #ffffff;
}

.detail-whatsapp-btn:hover{
    transform: translateY(-5px);
    color: #ffffff;
}

.detail-contact-btn:hover{
    background: #8d8f3c;
    transform: translateY(-5px);
    color: #ffffff;
}


.enquiry-form-box{
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 30px;
    /* position: sticky;
    top: 100px;
    z-index: 2; */
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

.form-head{
    margin-bottom: 30px;
}

.form-head span{
    display: inline-block;
    background: rgba(141,143,60,0.12);
    color: #8d8f3c;
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
}

.form-head h3{
    font-size: 25px;
    color: #000000;
    font-weight: 500;
}


.enquiry-form-box input,
.enquiry-form-box textarea{
    width: 100%;
    border: 1px solid #ddd;
    border-radius: 16px;
    padding: 16px 20px;
    outline: none;
    transition: 0.3s;
    font-size: 15px;
}

.enquiry-form-box input:focus,
.enquiry-form-box textarea:focus{
    border-color: #8d8f3c;
    box-shadow: 0 0 0 4px rgba(141,143,60,0.12);
}

.enquiry-form-box textarea{
    resize: none;
}


.enquiry-form-box button{
    width: 100%;
    height: 58px;
    border: none;
    border-radius: 50px;
    background: #8d8f3c;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    transition: 0.4s;
}

.enquiry-form-box button:hover{
    background: #000000;
}


@media(max-width:991px){

    .product-detail-section{
        padding: 80px 0;
    }

    .product-detail-content h1{
        font-size: 40px;
    }

    .product-features{
        grid-template-columns: 1fr;
    }

    .enquiry-form-box{
        position: relative;
        top: 0;
    }

}

@media(max-width:767px){

    .product-detail-image img{
        height: 400px;
    }

}

@media(max-width:576px){

    .product-detail-content h1{
        font-size: 25px;
    }

    .product-detail-image img{
        height: 320px;
    }

    .detail-whatsapp-btn,
    .detail-contact-btn{
        width: 100%;
        min-width: 100%;
    }

    .enquiry-form-box{
        padding: 25px;
    }

    .spice-1,
    .spice-2,
    .spice-3{
        opacity: 0.25;
    }

}


/* detail page end */




/* mssion */

.mission-vision-section {
    position: relative;
    padding: 50px 0;
    background: linear-gradient(135deg, #f5fff6, #eef8f0);
    overflow: hidden;
}


.mv-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: 0;
}

.mv-shape1 {
    width: 350px;
    height: 350px;
    background: rgba(39, 174, 96, 0.15);
    top: -120px;
    left: -100px;
    animation: floatShape 8s ease-in-out infinite;
}

.mv-shape2 {
    width: 280px;
    height: 280px;
    background: rgba(241, 196, 15, 0.12);
    bottom: -100px;
    right: -80px;
    animation: floatShape 10s ease-in-out infinite;
}

@keyframes floatShape {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(30px);
    }

    100% {
        transform: translateY(0px);
    }
}

.mission-vision-section .container {
    position: relative;
    z-index: 2;
}




.mv-card {
    position: relative;
    background: #ffffff;
    border-radius: 30px;
    padding: 50px 40px;
    overflow: hidden;
    transition: 0.5s ease;
    box-shadow: 0 15px 50px rgba(0,0,0,0.06);
    height: 100%;
}

.mv-card::before {
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    background: rgba(39, 174, 96, 0.06);
    border-radius: 50%;
    top: -60px;
    right: -60px;
    transition: 0.5s ease;
}

.mv-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.10);
}

.mv-card:hover::before {
    transform: scale(1.3);
}


.mv-icon {
    width: 85px;
    height: 85px;
    background: linear-gradient(135deg, #1b7a3c, #34b56a);
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
}

.mv-icon::after {
    content: "";
    position: absolute;
    width: 140%;
    height: 140%;
    background: rgba(255,255,255,0.15);
    transform: rotate(45deg);
    left: -120%;
    transition: 0.6s;
}

.mv-card:hover .mv-icon::after {
    left: 120%;
}

.mv-icon i {
    font-size: 34px;
    color: #fff;
}


.mv-card h3 {
    font-size: 30px;
    font-weight: 500;
    color: #111;
    margin-bottom: 20px;
}


.mv-card p {
    font-size: 16px;
    color: #666;
    line-height: 1.9;
    margin-bottom: 18px;
}


.mv-line {
    width: 70px;
    height: 4px;
    background: linear-gradient(to right, #1b7a3c, #7ed957);
    border-radius: 50px;
    margin-top: 25px;
    transition: 0.5s;
}

.mv-card:hover .mv-line {
    width: 140px;
}


.vision-card .mv-icon {
    background: linear-gradient(135deg, #e6a400, #ffcc29);
}

.vision-card::before {
    background: rgba(255, 204, 41, 0.08);
}


@media(max-width:991px) {

    .mission-vision-section {
        padding: 90px 0;
    }

    .mv-heading h2 {
        font-size: 40px;
    }

    .mv-card {
        padding: 40px 30px;
    }

}

@media(max-width:767px) {

    .mv-card h3 {
        font-size: 28px;
    }

    .mv-card {
        border-radius: 24px;
        padding: 35px 25px;
    }

    .mv-icon {
        width: 75px;
        height: 75px;
    }

    .mv-icon i {
        font-size: 28px;
    }

}

/* mission & vision end */




/* galler slider */

.spice-gallery-section {
    padding: 50px 0;
    background: #f7f7f7;
    overflow: hidden;
}



.spice-item {
    text-align: center;
    transition: 0.5s;
}

/* Image */

.spice-img {
    width: 150px;
    height: 150px;
    margin: auto;
    border-radius: 100%;
    overflow: hidden;
    position: relative;

    border: 5px solid #fff;

    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: 0.5s;
}

.spice-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 100%;
    transition: 0.6s;
}

/* Hover */

.spice-item:hover .spice-img {
    transform: translateY(-10px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.12);
}

.spice-item:hover .spice-img img {
    transform: scale(1.08);
}

/* Name */

.spice-item h4 {
    margin-top: 20px;
    font-size: 18px;
    font-weight: 400;
    color: #222;
}

/* Owl Spacing */

.spice-gallery-slider .owl-stage {
    display: flex;
    align-items: center;
}

.spice-gallery-slider .owl-item {
    padding: 10px;
}

/* Responsive */

@media(max-width:767px) {

    .spice-gallery-section {
        padding: 30px 0;
    }

    .gallery-head h2 {
        font-size: 34px;
    }

    .spice-img {
        width: 130px;
        height: 130px;
    }

    .spice-item h4 {
        font-size: 17px;
    }

}
