/********** Template CSS **********/
:root {
    /* --primary: #FEA116; */
    --primary: #53AF30;
    /* --light: #F1F8FF; */
    --dark: #1A1A18;
}

/* fonts */
@font-face {
    font-family: 'Heebo';
    src: url('../lib/tempusdominus/fonts/Heebo.ttf') format('woff2');
    font-weight: 400;
}

@font-face {
    font-family: 'Nunito';
    src: url('../lib/tempusdominus/fonts/Nunito.ttf') format('woff2');
    font-weight: 800;
}

@font-face {
    font-family: 'Pacifico';
    src: url('../lib/tempusdominus/fonts/Pacifico.ttf') format('woff2');
    font-weight: 600;
}

@font-face {
    font-family: 'Nunito-Regular';
    src: url('../lib/tempusdominus/fonts/Nunito-Regular.ttf') format('woff2');
    font-weight: 600;
}

@font-face {
    font-family: 'Cookie-Regular';
    src: url('../lib/tempusdominus/fonts/Cookie-Regular.ttf') format('woff2');
    font-weight: 600;
}

/* body {
    -ms-overflow-style: none !important;
}

body::-webkit-scrollbar {
    display: none !important;
} */

.ff-secondary {
    font-family: 'Pacifico', cursive;
}

.first-letter {
    font-family: 'Cookie-Regular', sans-serif;
    /* for A to capital */
    font-size: 30px;
}

.fw-medium {
    font-weight: 600 !important;
}

.fw-semi-bold {
    font-weight: 700 !important;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    font-family: 'Nunito-Regular', sans-serif;
    font-weight: 500;
    text-transform: uppercase;
    transition: .5s;
}

.btn.btn-primary,
.btn.btn-secondary {
    color: #FFFFFF;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 2px;
}

/* home page */
.home-title {
    font-size: 45px !important;
}

@media (max-width: 767px) {
    .home-title {
        font-size: 35px !important;
    }
}

/*** Navbar ***/

.navbar {
    min-height: 85px;
}

.navbar-dark .navbar-nav .nav-link {
    position: relative;
    margin-left: 25px;
    padding: 35px 0;
    font-size: 15px;
    color: #4e4e4e !important;
    text-transform: uppercase;
    font-weight: 500;
    outline: none;
    transition: .5s;
    letter-spacing: 0.5px;

}

.bg-nav {
    background-color: #fff !important;

}

.sticky-top.navbar-dark .navbar-nav .nav-link {
    padding: 20px 0;
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
    color: var(--primary) !important;
    font-weight: bolder !important;
}

.navbar-dark .navbar-brand img {
    max-height: 60px;
    transition: .5s;
    border-radius: 6px;
}

.sticky-top.navbar-dark .navbar-brand img {
    max-height: 68px;
}

@media (max-width: 991.98px) {
    .sticky-top.navbar-dark {
        position: relative;
    }

    .navbar-dark .navbar-collapse {
        margin-top: 15px;
        border-top: 1px solid rgba(255, 255, 255, .1)
    }

    .navbar-dark .navbar-nav .nav-link,
    .sticky-top.navbar-dark .navbar-nav .nav-link {
        padding: 10px 0;
        margin-left: 0;
    }

    .navbar-dark .navbar-brand img {
        max-height: 36px;
    }
}

@media (min-width: 992px) {
    .navbar-dark {
        position: fixed;
        width: 100%;
        top: 0;
        left: 0;
        z-index: 999;
        height: 75px !important;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.192) !important;
        /* background: transparent !important; */
    }

    .sticky-top.navbar-dark {
        position: fixed;
        /* background: var(--dark) !important; */
    }
}

@media (max-width: 600px) {
    .navbar {
        position: fixed !important;
        z-index: 999;
        width: 100%;
    }

    /* .overflow-hidden {
        margin-top: 91px !important;
    } */
    .navbar-dark {
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.192) !important; 
    }
}

/* Hide scrollbar on mobile but keep scrolling */
@media (max-width: 767px) {

  html, body {
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE/Edge */
  }

  /* WebKit Browsers (Chrome, Safari, Opera) */
  html::-webkit-scrollbar,
  body::-webkit-scrollbar {
    width: 0 !important;
    height: 0 !important;
  }
}


/*** Hero Header ***/
.hero-header {
    background: linear-gradient(rgba(0, 0, 0, 0.9), rgba(22, 25, 30, 75%)), url(../img/bg-hero.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding-bottom: 0rem !important;
    padding-top: 30px !important;
}

.hero-header img {
    animation: imgRotate 50s linear infinite;
}

@keyframes imgRotate {
    100% {
        transform: rotate(360deg);
    }
}

.breadcrumb-item+.breadcrumb-item::before {
    color: rgba(255, 255, 255, .5);
}

@media (max-width: 767px) {
    .row-mobile {
        flex-direction: column-reverse !important;
    }
}


/*** Section Title ***/
.section-title {
    position: relative;
    display: inline-block;
}

.section-title::before {
    position: absolute;
    content: "";
    width: 45px;
    height: 2px;
    top: 50%;
    left: -55px;
    margin-top: -1px;
    background: var(--primary);
}

.section-title::after {
    position: absolute;
    content: "";
    width: 45px;
    height: 2px;
    top: 50%;
    right: -55px;
    margin-top: -1px;
    background: var(--primary);
}

.section-title.text-start::before,
.section-title.text-end::after {
    display: none;
}


/*** Service ***/
.service-item {
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
    transition: .5s;
}

.service-item:hover {
    background: var(--primary);
}

.service-item * {
    transition: .5s;
}

.service-item:hover * {
    color: var(--light) !important;
}

.service-text:hover{
    color: white !important;
}


/*** Food Menu ***/
.nav-pills .nav-item .active {
    border-bottom: 2px solid var(--primary);
}




/*** Team ***/
/* .team-item {
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
    height: calc(100% - 38px);
    transition: .5s;
}

.team-item small {
    color: #606060;
}

.team-item img {
    transition: .5s;
}

.team-item:hover img {
    transform: scale(1.1);
}

.team-item:hover {
    height: 100%;
} */
.team-item {
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
    height: calc(100% - 38px);
    transition: .5s;

}

.team-item small {
    color: #606060;
}

.team-item img {
    transition: .5s;
}

.team-item:hover {
    height: 100%;
}

/* mobile */
@media (max-width: 767px) {
    .team-item {
        box-shadow: 0 0 45px rgba(0, 0, 0, .08);
        height: calc(100% - 38px);
        transition: .5s;
        height: 100%;

    }

    .team-item small {
        color: #606060;
    }

    .team-item img {
        transition: .5s;
    }
}



.team-item .btn {
    border-radius: 38px 38px 0 0;
}

.product-btn {
    border-radius: 3px !important;
}

@media (max-width: 767px) {
    .product-btn {
        background-color: rgba(255, 255, 255, 0) !important;
        color: #42af42 !important;
        border: none !important;
        text-decoration: underline !important;
        margin-top: -5px !important;
        padding-bottom: 10px !important;
    }
}

/* certificate page  */
.certificate-item {
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
    height: calc(100% - 38px);
    transition: .5s;
}

.certificate-item img {
    transition: .5s;
}

.certificate-item:hover img {
    transform: scale(1.1);
}

.certificate-item:hover {
    height: 100%;
}

.certificate-item .btn {
    border-radius: 2px;
}


/*** Testimonial ***/
.testimonial-carousel .owl-item .testimonial-item,
.testimonial-carousel .owl-item.center .testimonial-item * {
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-item {
    background: var(--primary) !important;
    border-color: var(--primary) !important;
}

.testimonial-carousel .owl-item.center .testimonial-item * {
    color: var(--light) !important;
}

.testimonial-carousel .owl-dots {
    margin-top: 24px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    border: 1px solid #CCCCCC;
    border-radius: 15px;
    transition: .5s;
}

.testimonial-carousel .owl-dot.active {
    background: var(--primary);
    border-color: var(--primary);
}


/*** Footer ***/
.footer .btn.btn-social {
    margin-right: 5px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    border: 1px solid #FFFFFF;
    border-radius: 35px;
    transition: .3s;
}

.footer .btn.btn-social:hover {
    color: var(--primary);
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #FFFFFF;
    font-size: 15px;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: var(--light);
}

.footer .footer-menu a {
    margin-right: 15px;
    padding-right: 15px;
    border-right: 1px solid rgba(255, 255, 255, .1);
}

.footer .footer-menu a:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
}

.contact-link {
    color: #ffffff;
    text-decoration: none;
    transition: 0.3s;
}

.contact-link:hover {
    color: #53AF30;
}

.footer-nav {
    padding-left: 50px;
}

/* mobile */
@media (max-width: 767px) {
    .footer-nav {
        padding-left: 25px;
    }
}


/* about us */

.about-icon {
    width: 35px;
}

/*product page */
.gallery-thumb.active-thumb {
    border: 2px solid #ffb200;
    opacity: 0.9;
}


/* turmeric powder */
.turmeric-header {
    background: linear-gradient(rgba(0, 0, 0, 0.9), rgba(22, 25, 30, 75%)), url(../img/turmeric-bg.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding-bottom: 0rem !important;
    padding-top: 30px !important;
}

.turmeric-header img {
    animation: imgRotate 50s linear infinite;
}

@keyframes imgRotate {
    100% {
        transform: rotate(360deg);
    }
}

/* cummin seeds */
.cummin-header {
    background: linear-gradient(rgba(0, 0, 0, 0.9), rgba(22, 25, 30, 75%)), url(../img/cummin-bg.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding-bottom: 0rem !important;
    padding-top: 30px !important;
}

.cummin-header img {
    animation: imgRotate 50s linear infinite;
}

@keyframes imgRotate {
    100% {
        transform: rotate(360deg);
    }
}

/* coriander */
.coriander-header {
    background: linear-gradient(rgba(0, 0, 0, 0.9), rgba(22, 25, 30, 75%)), url(../img/coriander-bg.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding-bottom: 0rem !important;
    padding-top: 30px !important;
}

.coriander-header img {
    animation: imgRotate 50s linear infinite;
}

@keyframes imgRotate {
    100% {
        transform: rotate(360deg);
    }
}

/* chilli-header */
.chilli-header {
    background: linear-gradient(rgba(0, 0, 0, 0.9), rgba(22, 25, 30, 75%)), url(../img/red-chilli-bg.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding-bottom: 0rem !important;
    padding-top: 30px !important;
}

.chilli-header img {
    animation: imgRotate 50s linear infinite;
}

@keyframes imgRotate {
    100% {
        transform: rotate(360deg);
    }
}

/* neem */

.neem-header {
    background: linear-gradient(rgba(0, 0, 0, 0.9), rgba(22, 25, 30, 75%)), url(../img/neem-bg.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding-bottom: 0rem !important;
    padding-top: 30px !important;
}

.neem-header img {
    animation: imgRotate 50s linear infinite;
}

@keyframes imgRotate {
    100% {
        transform: rotate(360deg);
    }
}

/* moringa */

.moringa-header {
    background: linear-gradient(rgba(0, 0, 0, 0.9), rgba(22, 25, 30, 75%)), url(../img/moringa-bg.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding-bottom: 0rem !important;
    padding-top: 30px !important;
}

.moringa-header img {
    animation: imgRotate 50s linear infinite;
}

@keyframes imgRotate {
    100% {
        transform: rotate(360deg);
    }
}

/* mango pulp */

.mango-header {
    background: linear-gradient(rgba(0, 0, 0, 0.9), rgba(22, 25, 30, 75%)), url(../img/mango-bg.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding-bottom: 0rem !important;
    padding-top: 30px !important;
}

.mango-header img {
    animation: imgRotate 50s linear infinite;
}

@keyframes imgRotate {
    100% {
        transform: rotate(360deg);
    }
}

/* contact page */
.contact-page-link {
    color: #666565 !important;
    text-decoration: none;
    transition: 0.3s;
}

.contact-page-link:hover {
    color: #53AF30 !important;
}

/* about-page */
.about-page {
    background: linear-gradient(rgba(0, 0, 0, 0.9), rgba(22, 25, 30, 70%)), url(../img/about-page.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding-bottom: 0rem !important;
    padding-top: 30px !important;
}

.about-page img {
    animation: imgRotate 50s linear infinite;
}

@keyframes imgRotate {
    100% {
        transform: rotate(360deg);
    }
}

/* product-page */
.product-page {
    background: linear-gradient(rgba(0, 0, 0, 0.9), rgba(22, 25, 30, 70%)), url(../img/products-page.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding-bottom: 0rem !important;
    padding-top: 30px !important;
}

.product-page img {
    animation: imgRotate 50s linear infinite;
}

@keyframes imgRotate {
    100% {
        transform: rotate(360deg);
    }
}

/* contact-page */

.contact-page {
    background: linear-gradient(rgba(0, 0, 0, 0.9), rgba(22, 25, 30, 70%)), url(../img/contact-us-page.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding-bottom: 0rem !important;
    padding-top: 30px !important;
}

.contact-page img {
    animation: imgRotate 50s linear infinite;
}

@keyframes imgRotate {
    100% {
        transform: rotate(360deg);
    }
}

/* certificates-page */
.certificates-page {
    background: linear-gradient(rgba(0, 0, 0, 0.9), rgba(22, 25, 30, 70%)), url(../img/certificates-page.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding-bottom: 0rem !important;
    padding-top: 30px !important;
}

.contact-page img {
    animation: imgRotate 50s linear infinite;
}

@keyframes imgRotate {
    100% {
        transform: rotate(360deg);
    }
}

/* @media (max-width: 767px) {
    .my-5 {
        margin-top: 0px !important;
    }
} */

/* certificates-page end */

/* ----product-details-page----- */
.sc-wrap-unik {
    max-width: 470px;
    margin: 0 auto;
    position: relative;
}

@media (max-width: 767px) {
    .sc-wrap-unik {
        margin: 20px !important;
    }
}

.sc-viewport-unik {
    overflow: hidden;
    border-radius: 10px;
}

.sc-track-unik {
    display: flex;
    transition: transform 0.55s ease;
    will-change: transform;
}

.sc-slide-img-unik {
    min-width: 100%;
    display: block;
    object-fit: cover;
    cursor: pointer;
    user-select: none;
}

.sc-wrap-unik .sc-viewport-unik {
    padding: 12px 0;
}

.sc-arrow-unik {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.55);
    color: #fff;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    font-size: 20px;
    cursor: pointer;
    z-index: 30;
    user-select: none;
}

.sc-arrow-left-unik {
    left: 8px;
}

.sc-arrow-right-unik {
    right: 8px;
}

#sc-popup-wrap-unik {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.88);
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

#sc-popup-inner-unik {
    position: relative;
    max-width: 90%;
    max-height: 90%;
}

#sc-popup-img-unik {
    max-width: 100%;
    max-height: 100%;
    display: block;
    border-radius: 8px;
}

#sc-popup-close-unik {
    position: absolute;
    top: -40px;
    right: -4px;
    color: #fff;
    font-size: 30px;
    cursor: pointer;
    user-select: none;
}

.sc-popup-arrow-unik {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
    font-size: 36px;
    cursor: pointer;
    user-select: none;
}

.sc-popup-left-unik {
    left: -60px;
}

.sc-popup-right-unik {
    right: -60px;
}

@media (max-width: 600px) {
    .sc-arrow-unik {
        width: 34px;
        height: 34px;
        font-size: 18px;
    }

    .sc-popup-left-unik,
    .sc-popup-right-unik {
        display: none;
    }
}

/* discription tab */

/* Wrapper line across full width */

.sk-tab-wrapper {
    border-bottom: 1px solid #d2cfe2;
    width: 100%;
    display: flex;
    align-items: center;
    position: relative;
}

/* Tab label design */
.sk-tab {
    background: #fff;
    border: 1px solid #d2cfe2;
    border-bottom: none;
    padding: 8px 18px;
    font-size: 15px;
    font-weight: 600;
    color: #686868;
    border-radius: 10px 10px 0 0;
    cursor: pointer;
    position: relative;
    top: 1px;
    /* makes border align perfectly */
    margin-left: 25px;
}

/* Inactive state reduced contrast */
.sk-tab:not(.sk-active) {
    background: #f7f7f7;
    opacity: 0.8;
}

/* Content area only visible when active */
.sk-tab-body {
    display: none;
    padding: 20px 0 0;
    /* no big box border — clean look */
}

/* Active Tab Content */
.sk-tab-body.sk-active {
    display: block;
}

.product-description {
    margin: 0 50px;
}

@media (max-width: 600px) {
    .product-description {
        margin: 0 12px !important;
    }
}

/* Table border styling */
/* Base table design */
.sk-tab-body table {
    width: 100%;
    border-collapse: collapse;
    border: 1px solid #d2cfe2;
    table-layout: auto;
    /* allows responsive adjustment */
}

.sk-tab-body table th,
.sk-tab-body table td {
    border: 1px solid #d2cfe2;
    padding: 10px;
    font-size: 14px;
    color: #333;
    word-wrap: break-word;
    /* allows text to wrap without scrolling */
}

.sk-tab-body table th {
    font-weight: 600;
    background: #f8f8fc;
}

.table-link {
    color: #42af42;
    font-weight: 500;
}


/* 🔹 Mobile Optimization */
@media (max-width: 576px) {

    .sk-tab-body table th,
    .sk-tab-body table td {
        padding: 8px;
        font-size: 13px;
        /* slightly smaller text */
    }

    .sk-tab-body table {
        font-size: 13px;
    }

    /* Long content wrapping */
    .sk-tab-body table td,
    .sk-tab-body table th {
        white-space: normal;
    }
}

/* ----product-details-page-end----- */