/********** CSS **********/
:root {
    --primary: #348E38;
    --secondary: #525368;
    --light: #E8F5E9;
    --dark: #0F4229;
    --primary: #2E8B57;
    --primary-light: #7FCD91;
    --primary-dark: #1A5D3A;
    --primary-color: #1A5D3A;
    --secondary: #FF7D9C;
    --secondary-light: #FFD6DE;
    --accent: #9C27B0;
    --text-dark: #212121;
    --text-light: #757575;
    --white: #ffffff;
    --gray-light: #f8f9fa;
    --gray: #e9ecef;
    --gradient: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    --shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 12px 40px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --radius: 12px;

}

.back-to-top {
    position: fixed;
    display: none;
    right: 20px;
    bottom: 10px;
    z-index: 99;
}

h1,
.h1,
h2,
.h2,
.fw-bold {
    font-weight: 700 !important;
}

h3,
.h3,
h4,
.h4,
.fw-medium {
    font-weight: 600 !important;
}

h5,
.h5,
h6,
.h6,
.fw-semi-bold {
    font-weight: 500 !important;
}

/*** 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 {
    transition: .5s;
    font-weight: 500;
}

.btn-primary,
.btn-outline-primary:hover {
    color: var(--light);
}

.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;
}


/*** Navbar ***/
.navbar.sticky-top {
    transition: all 0.3s ease-in-out;
    z-index: 1030;
    /* keeps navbar on top */
}

.navbar .navbar-brand,
.navbar a.btn {
    height: 80px
}

.navbar .navbar-nav .nav-link {
    margin-right: 35px;
    padding: 25px 0;
    color: var(--dark);
    font-size: 18px;
    font-weight: 500;
    outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--primary);
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

.logo-img {
    width: 100px;
    height: 100px;
    position: relative;
    top: 10px;
    object-fit: cover;
    left: 40px;
}


.header-text {
    position: relative;
    top: 10px;
    left: 50px;
    font-size: 40px;
    font-family: "Dancing Script", cursive;
    font-weight: 700;
}

.footer-logo {
    width: 60px;
    height: 60px;
    position: relative;
    top: -11px;
    /* margin-top: -12px; */
    margin-bottom: 11px;
    object-fit: cover;
    left: 0px;
}

.footer-text {
    position: relative;
    top: -15px;
    font-size: 40px;
    font-family: "Dancing Script", cursive;
    font-weight: 700;

}


@media screen and (max-width: 575.98px) {

    .logo-img {
        /* width: 100px;
        height: 100px;
        position: relative;
        top: 10px;
        object-fit: cover; */
        left: 5px;
    }

    .header-text {
        color: var(--dark);
        position: relative;
        top: 10px;
        left: 3px;
        font-size: 30px;
    }
}


@media (max-width: 768px) {
    .page-header {
        border: none !important;
        border-radius: 0 !important;
    }
}


@media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar .navbar-nav {
        border-top: 1px solid #EEEEEE;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Header ***/
.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: rgba(15, 66, 41, .6);
    z-index: 1;
}

.carousel-control-prev,
.carousel-control-next {
    width: 15%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 3rem;
    background-color: var(--primary);
    border: 10px solid var(--primary);
}

@media (max-width: 768px) {
    #header-carousel .carousel-item {
        position: relative;
        min-height: 450px;
    }

    #header-carousel .carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

.page-header {
    background: linear-gradient(rgba(15, 66, 41, .6), rgba(15, 66, 41, .6)), url(../img/service/prodect-2.webp) no-repeat center 10%;
    background-size: cover;
    border: 6px solid #348E38;
    border-radius: 18px;
}

.page-header .breadcrumb-item+.breadcrumb-item::before {
    color: var(--light);
}

.page-header .breadcrumb-item,
.page-header .breadcrumb-item a {
    font-size: 18px;
    color: var(--light);
}


/*** Top Feature ***/
@media (min-width: 991.98px) {
    .top-feature {
        position: relative;
        margin-top: -80px;
        z-index: 1;
    }
}


/*** Facts & Quote ***/
.facts,
.quote {
    background: rgba(15, 66, 41, .6);
}


/*** Service ***/
.service-item {
    position: relative;
    text-align: center;
}

.service-item .service-img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
    z-index: -1;
}

.service-item .service-img img {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    object-fit: cover;
    transform: scale(1.2);
    transition: .3s;
    z-index: -1;
}

.service-item:hover .service-img img {
    transform: scale(1);
}

.service-item .service-text {
    background: #FFFFFF;
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
    transition: .3s;
}

.service-item:hover .service-text {
    background: rgba(15, 66, 41, .6);
}

.service-item .service-text h4,
.service-item .service-text p {
    transition: .3;
}

.service-item:hover .service-text h4 {
    color: #FFFFFF;
}

.service-item:hover .service-text p {
    color: var(--light);
}

.service-item .service-text .btn-square {
    width: 100px;
    height: 100px;
    background: transparent;
    transition: .5s;
}

.service-item:hover .service-text .btn-square {
    background: var(--light);
}

.service-item .service-text .btn {
    width: 31px;
    height: 31px;
    display: inline-flex;
    align-items: center;
    color: var(--dark);
    background: var(--light);
    white-space: nowrap;
    overflow: hidden;
    transition: .3s;
}

.service-item:hover .service-text .btn {
    width: 112px;
}


/*** Project Portfolio ***/
#portfolio-flters {
    display: inline-block;
    background: var(--light);
    padding: 10px 15px;
}

#portfolio-flters li {
    display: inline-block;
    font-weight: 500;
    color: var(--primary);
    cursor: pointer;
    transition: .5s;
    border-bottom: 2px solid transparent;
}

#portfolio-flters li:hover,
#portfolio-flters li.active {
    color: var(--dark);
    border-color: var(--dark);
}

.portfolio-inner {
    position: relative;
    overflow: hidden;
}

.portfolio-inner::before,
.portfolio-inner::after {
    position: absolute;
    content: "";
    width: 0;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(15, 66, 41, .6);
    transition: .5s;
}

.portfolio-inner::after {
    left: auto;
    right: 0;
}

.portfolio-inner:hover::before,
.portfolio-inner:hover::after {
    width: 50%;
}

.portfolio-inner .portfolio-text {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: .5s;
    z-index: 3;
    opacity: 0;
}

.portfolio-inner:hover .portfolio-text {
    transition-delay: .3s;
    opacity: 1;
}

.portfolio-inner .portfolio-text .btn {
    background: var(--light);
    color: var(--primary);
}

.portfolio-inner .portfolio-text .btn:hover {
    background: var(--primary);
    color: var(--light);
}


/*** Team ***/
.team-item {
    position: relative;
    overflow: hidden;
}

.team-item .team-text {
    position: absolute;
    width: calc(100% - 45px);
    left: -100%;
    bottom: 45px;
    padding: 1.5rem;
    background: #FFFFFF;
    border-radius: 0 4px 4px 0;
    opacity: 0;
    transition: .5s;
}

.team-item:hover .team-text {
    left: 0;
    opacity: 1;
}

.team-item .team-social .btn {
    background: var(--light);
    color: var(--primary);
}

.team-item .team-social .btn:hover {
    background: var(--primary);
    color: var(--light);
}

.team-item .team-img .team-social {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .5s;
    z-index: 3;
    opacity: 0;
}

.team-item:hover .team-img .team-social {
    transition-delay: .3s;
    opacity: 1;
}


/*** Testimonial ***/

.testimonial-carousel .owl-item img {
    width: 100px;
    height: 100px;
}

.testimonial-carousel .owl-nav {
    margin-top: 30px;
    display: flex;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    margin-right: 15px;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    background: var(--light);
    border-radius: 4px;
    font-size: 22px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    background: var(--primary);
    color: var(--light);
}


/*** Footer ***/
.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: var(--light);
    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 {
    color: var(--primary);
    letter-spacing: 1px;
    box-shadow: none;
}

.copyright {
    color: var(--light);
    background: #072A19;
}

.copyright a {
    color: #FFFFFF;
}

.copyright a:hover {
    color: var(--primary);
}


/* Custom CSS Starter */


.service-img {
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 10px;
    /* keep your rounded style */
}

.service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* makes the image cover the entire box */
    border-radius: 10px;
}



/* Awareness Section */
.awareness-section {
    background: #f8fff9;
    /* light green tint */
    padding: 60px 20px;
    display: flex;
    justify-content: center;
    font-family: Arial, sans-serif;
}

.awareness-container {
    max-width: 800px;
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 8px 20px rgba(0, 100, 0, 0.1);
    text-align: center;
    border: 2px solid #2e7d32;
    /* Fresh green */
}

.awareness-title {
    font-size: 2rem;
    color: #2e7d32;
    margin-bottom: 15px;
    font-weight: bold;
}

.awareness-subtitle {
    font-size: 1.1rem;
    color: #444;
    margin-bottom: 25px;
    font-style: italic;
}

.tips-card {
    background: #e8f5e9;
    /* soft green box */
    padding: 20px;
    border-radius: 15px;
    border-left: 5px solid #2e7d32;
    text-align: left;
}

.tips-title {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: #2e7d32;
}

.tips-title span {
    color: #1b5e20;
    font-weight: bold;
}

.tips-list {
    list-style: none;
    padding: 0;
}

.tips-list li {
    font-size: 1rem;
    padding: 8px 0;
    color: #333;
}

.awareness-footer {
    margin-top: 30px;
    font-size: 1.1rem;
    font-weight: bold;
    color: #1b5e20;
}


.scroll-content {
    display: flex;
    flex-shrink: 0;
    color: white;
    font-weight: 600;
    padding-top: 0.6rem;
    padding-bottom: 0.5rem;
}

.infinite-scroll-container {
    display: flex;
    width: max-content;
    white-space: nowrap;
    text-wrap: nowrap;
    animation: infiniteScroll 25s linear infinite;
}

@keyframes infiniteScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.infinite-scroll-container:hover {
    animation-play-state: paused;
}

@media (max-width: 768px) {
    .me-16 {
        margin-right: 2.5rem;
    }

    .scroll-content {
        font-size: 0.9rem;
    }

    .infinite-scroll-container {
        animation: infiniteScroll 40s linear infinite;
    }
}




/* Features Section */
.features {
    padding: 100px 0;
    background: var(--light-bg);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.feature-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--card-shadow);
    transition: all 0.3s ease;
    border-bottom: 4px solid transparent;
    text-align: justify;
    transition: opacity 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
}

.feature-card i {
    font-size: 2.8rem;
    color: var(--primary);
    margin-bottom: 25px;
}

.feature-card h3 {
    margin-bottom: 15px;
    color: var(--text-dark);
    font-size: 1.4rem;
}

.feature-card p {
    color: var(--text-light);
}

/* Features Section */
.features {
    padding: 100px 0;
    background: var(--light-bg);
    overflow: hidden;
}

/* Feature Card */
.feature-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--card-shadow);
    transition: all 0.4s ease;
    border-bottom: 4px solid transparent;
    opacity: 0;
    transform: translateY(40px);
    animation: fadeUp 0.8s forwards;
}

.feature-card:nth-child(1) {
    animation-delay: 0.2s;
}

.feature-card:nth-child(2) {
    animation-delay: 0.4s;
}

.feature-card:nth-child(3) {
    animation-delay: 0.6s;
}

.feature-card:nth-child(4) {
    animation-delay: 0.8s;
}

.feature-card:nth-child(5) {
    animation-delay: 1s;
}

.feature-card:nth-child(6) {
    animation-delay: 1.2s;
}

.feature-card:hover {
    transform: translateY(-12px) scale(1.03);
    border-color: var(--primary);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

/* Icon Animation */
.feature-card i {
    font-size: 2.8rem;
    color: var(--primary);
    margin-bottom: 25px;
    transition: transform 0.4s ease, color 0.3s ease;
    animation: floatIcon 3s ease-in-out infinite;
}

.feature-card:hover i {
    transform: rotate(8deg) scale(1.1);
    color: var(--primary-dark);
}


.feature-card h3 {
    margin-bottom: 15px;
    color: var(--text-dark);
    font-size: 1.4rem;
    transition: color 0.3s ease;
}

.feature-card:hover h3 {
    color: var(--primary);
}

.feature-card p {
    color: var(--text-light);
    transition: opacity 0.3s ease;
}

.feature-card:hover p {
    opacity: 0.95;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

@media (min-width: 1440px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}



/* Animations */
@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes floatIcon {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}


#portfolio-flters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    padding: 10px 20px;
    background: #f8f9fa;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

#portfolio-flters li {
    cursor: pointer;
    padding: 10px 20px;
    font-weight: 500;
    border-radius: 30px;
    transition: all 0.3s ease;
    background: #ffffff;
    border: 1px solid #ddd;
    color: #333;
    white-space: nowrap;
    position: relative;
}

#portfolio-flters li::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -5px;
    width: 0;
    height: 3px;
    background: #4CAF50;
    border-radius: 2px;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

#portfolio-flters li:hover::after,
#portfolio-flters li.active::after {
    width: 60%;
}

#portfolio-flters li:hover {
    background: #4CAF50;
    color: #fff;
    border-color: #4CAF50;
    transform: translateY(-3px);
    box-shadow: 0 4px 10px rgba(76, 175, 80, 0.3);
}

#portfolio-flters li.active {
    background: #4CAF50;
    color: #fff;
    border-color: #4CAF50;
    font-weight: 600;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    #portfolio-flters {
        gap: 10px;
        padding: 8px 10px;
    }

    #portfolio-flters li {
        padding: 8px 12px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    #portfolio-flters li {
        flex: 1 1 100%;
        text-align: center;
        padding: 10px 0;
    }
}

.portfolio-item {
    transition: all 0.5s ease;
}




.custom-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Herbal Section */
.herbal-section {
    background: linear-gradient(135deg, #F1F8E9 0%, #E8F5E9 50%, #FFFFFF 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.herbal-section::before {
    content: "";
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cpath fill='%234CAF50' fill-opacity='0.1' d='M50,0 C77.614,0 100,22.386 100,50 C100,77.614 77.614,100 50,100 C22.386,100 0,77.614 0,50 C0,22.386 22.386,0 50,0 Z'%3E%3C/path%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    z-index: 0;
}

.herbal-section::after {
    content: "";
    position: absolute;
    bottom: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cpath fill='%238BC34A' fill-opacity='0.1' d='M50,0 C77.614,0 100,22.386 100,50 C100,77.614 77.614,100 50,100 C22.386,100 0,77.614 0,50 C0,22.386 22.386,0 50,0 Z'%3E%3C/path%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    z-index: 0;
}

/* Layout */
.section-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.image-column {
    flex: 1;
    min-width: 300px;
    position: relative;
}

.content-column {
    flex: 2;
    min-width: 300px;
}

.benefits-column {
    flex: 1;
    min-width: 250px;
}

/* Image Styles */
.product-image {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: all 0.5s ease;
    transform: perspective(1000px) rotateY(0deg);
    cursor: pointer;
}

.product-image:hover {
    transform: perspective(1000px) rotateY(10deg) scale(1.03);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Typography */
.year-number {
    font-size: 80px;
    font-weight: 800;
    color: #4CAF50;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.1);
    position: relative;
    display: inline-block;
    line-height: 1;
}

.year-number::after {
    content: "+";
    position: absolute;
    top: -10px;
    right: -30px;
    font-size: 2rem;
    color: #FF9800;
}

.year-text {
    color: #4CAF50;
    font-weight: 500;
    margin-bottom: 20px;
}

.main-heading {
    color: #1B5E20;
    font-size: 32px;
    font-weight: 700;
    line-height: 1.3;
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 20px;
}

.main-heading::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, #4CAF50, #8BC34A);
    border-radius: 2px;
}

.description {
    margin-bottom: 30px;
    font-size: 16px;
}

/* Button */
.primary-button {
    display: inline-block;
    background: linear-gradient(135deg, #4CAF50 0%, #8BC34A 100%);
    color: white;
    border: none;
    padding: 15px 35px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.4s;
    box-shadow: 0 5px 15px rgba(76, 175, 80, 0.3);
    position: relative;
    overflow: hidden;
    z-index: 1;
    text-decoration: none;
    font-size: 16px;
}

.primary-button::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #8BC34A 0%, #4CAF50 100%);
    transition: all 0.4s;
    z-index: -1;
}

.primary-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(76, 175, 80, 0.4);
    color: white;
}

.primary-button:hover::before {
    left: 0;
}

/* Benefit Boxes */
.benefit-box {
    transition: all 0.4s ease;
    cursor: pointer;
    padding: 20px 15px;
    border-radius: 12px;
    margin-bottom: 20px;
    border-left: 4px solid #4CAF50;
    padding-left: 20px;
}

.benefit-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    background-color: white;
}

.benefit-icon {
    background: linear-gradient(135deg, #4CAF50, #8BC34A);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: all 0.3s ease;
    font-size: 28px;
    margin-bottom: 15px;
}

.benefit-box:hover .benefit-icon {
    transform: scale(1.2);
}

.benefit-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #1B5E20;
}

.benefit-description {
    font-size: 14px;
}

/* Floating Elements */
.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

.floating-element {
    position: absolute;
    width: 30px;
    height: 30px;
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.3;
}

.floating-element:nth-child(1) {
    top: 20%;
    left: 5%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cpath fill='%234CAF50' d='M50,0 C77.614,0 100,22.386 100,50 C100,77.614 77.614,100 50,100 C22.386,100 0,77.614 0,50 C0,22.386 22.386,0 50,0 Z'%3E%3C/path%3E%3C/svg%3E");
    animation: float 15s ease-in-out infinite;
}

.floating-element:nth-child(2) {
    top: 60%;
    right: 10%;
    width: 40px;
    height: 40px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cpolygon fill='%238BC34A' points='50,0 100,50 50,100 0,50'%3E%3C/polygon%3E%3C/svg%3E");
    animation: float 12s ease-in-out infinite 1s;
}

.floating-element:nth-child(3) {
    bottom: 20%;
    left: 15%;
    width: 25px;
    height: 25px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cpath fill='%23FF9800' d='M50,0 L100,50 L50,100 L0,50 Z'%3E%3C/path%3E%3C/svg%3E");
    animation: float 18s ease-in-out infinite 0.5s;
}

@keyframes float {
    0% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(10deg);
    }

    100% {
        transform: translateY(0) rotate(0deg);
    }
}

/* Benefits Section */
.benefits-container {
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    margin-top: 40px;
}

.benefits-heading {
    text-align: center;
    color: #1B5E20;
    font-size: 24px;
    margin-bottom: 30px;
    font-weight: 600;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    padding: 12px 15px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    background-color: rgba(76, 175, 80, 0.05);
    transform: translateX(5px);
}

.benefit-item-icon {
    color: #4CAF50;
    font-size: 18px;
    margin-right: 15px;
    min-width: 24px;
}

.benefit-item-text {
    font-weight: 500;
    color: #333;
}

.herb-tag {
    display: inline-block;
    background: linear-gradient(135deg, #4CAF50, #8BC34A);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    margin: 5px 5px 5px 0;
    box-shadow: 0 3px 10px rgba(76, 175, 80, 0.2);
}

/* Badges */
.product-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    background: linear-gradient(135deg, #FF9800, #FF5722);
    color: white;
    font-weight: 700;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
    box-shadow: 0 5px 15px rgba(255, 152, 0, 0.3);
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

/* Responsive Design */
@media (max-width: 992px) {
    .herbal-section {
        padding: 60px 0;
    }

    .year-number {
        font-size: 70px;
    }

    .main-heading {
        font-size: 28px;
    }
}

@media (max-width: 768px) {

    .herbal-section::before,
    .herbal-section::after {
        display: none;
    }

    .year-number {
        font-size: 60px;
    }

    .main-heading {
        font-size: 24px;
    }

    .benefits-container {
        padding: 15px;
    }

    .section-layout {
        flex-direction: column;
    }

    .image-column,
    .content-column,
    .benefits-column {
        width: 100%;
    }
}


.product-card {
    background: #fff;
    border-radius: 15px;
    border: 1px solid #eee;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.icon-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #f0f8ff;
    display: flex;
    align-items: center;
    justify-content: center;
}



.main-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Site Header Styles */
.site-header {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.brand-logo {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 600;
    color: var(--primary-color);
    display: flex;
    align-items: center;
}

.brand-icon {
    margin-right: 10px;
    font-size: 28px;
}

.main-nav ul {
    display: flex;
    list-style: none;
}

.main-nav ul li {
    margin-left: 30px;
}

.main-nav ul li a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: color 0.3s;
}

.main-nav ul li a:hover {
    color: var(--primary-color);
}

/* Intro Section */
.intro-section {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--secondary-color) 0%, white 100%);
}

.intro-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.intro-text {
    flex: 1;
    padding-right: 40px;
}

.intro-headline {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    color: var(--dark-color);
    margin-bottom: 20px;
    line-height: 1.2;
}

.intro-tagline {
    font-size: 18px;
    margin-bottom: 30px;
    color: #555;
}

.primary-button {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
}

.primary-button:hover {
    background-color: var(--dark-color);
    transform: translateY(-2px);
}

.intro-visual {
    flex: 1;
    text-align: center;
}

.intro-visual img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Product Display */
.product-display {
    padding: 80px 0;
}

.section-heading {
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    color: var(--dark-color);
    margin-bottom: 50px;
    position: relative;
}

.section-heading:after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: var(--accent-color);
    margin: 15px auto;
}

.product-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.product-media {
    flex: 1;
    min-width: 300px;
}

.main-product-image {
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    margin-bottom: 20px;
}

.main-product-image img {
    width: 100%;
    display: block;
    transition: transform 0.5s;
}

.main-product-image img:hover {
    transform: scale(1.02);
}

.thumbnail-gallery {
    display: flex;
    gap: 10px;
}

.thumbnail-item {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    opacity: 0.7;
    transition: all 0.3s;
}

.thumbnail-item:hover,
.thumbnail-item.current {
    opacity: 1;
    transform: translateY(-3px);
}

.thumbnail-item img {
    width: 100%;
    display: block;
}

.product-details {
    flex: 1;
    min-width: 300px;
}

.product-name {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.product-cost {
    font-size: 24px;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 20px;
}

.product-info {
    margin-bottom: 30px;
    line-height: 1.8;
}

.product-features {
    margin-bottom: 30px;
}

.feature-listing {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.feature-icon {
    color: var(--primary-color);
    margin-right: 15px;
    font-size: 20px;
}

/* .call-to-action-group {
    display: flex;
    gap: 15px;
} */

.secondary-button {
    background-color: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.secondary-button:hover {
    background-color: var(--primary-color);
    color: white;
}

/* Advantages Section */
.advantages-section {
    padding: 80px 0;
    background-color: var(--secondary-color);
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.advantage-card {
    background-color: white;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
}

.advantage-card:hover {
    transform: translateY(-5px);
}

.advantage-icon {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.advantage-title {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--dark-color);
}

/* Usage Guide */
.usage-guide {
    padding: 80px 0;
}

.usage-steps-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.usage-step {
    flex: 1;
    min-width: 250px;
    max-width: 350px;
    text-align: center;
    padding: 30px;
}

.step-indicator {
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 24px;
    font-weight: 600;
}

/* Feedback Section */
.feedback-section {
    padding: 80px 0;
    background-color: var(--secondary-color);
}

.feedback-slider {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.feedback-card {
    background-color: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    display: none;
}

.feedback-card.is-active {
    display: block;
}

.feedback-text {
    font-style: italic;
    margin-bottom: 20px;
    font-size: 18px;
}

.feedback-author {
    font-weight: 600;
    color: var(--dark-color);
}

.feedback-controls {
    display: flex;
    justify-content: center;
    margin-top: 30px;
    gap: 10px;
}

.control-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ccc;
    cursor: pointer;
    transition: background-color 0.3s;
}

.control-dot.is-active {
    background-color: var(--primary-color);
}

/* FAQ Area */
.faq-area {
    padding: 80px 0;
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.accordion-panel {
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.accordion-toggle {
    background-color: white;
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 500;
}

.accordion-content {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s, padding 0.3s;
    background-color: white;
}

.accordion-content.is-expanded {
    padding: 20px;
    max-height: 300px;
}

/* Site Footer */
.site-footer {
    background-color: var(--dark-color);
    color: white;
    padding: 60px 0 30px;
}

.footer-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section {
    flex: 1;
    min-width: 200px;
}

.footer-heading {
    font-size: 18px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-heading:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 2px;
    background-color: var(--accent-color);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a,
.footer-links li {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: white;
}

.copyright-text {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #ccc;
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .intro-content {
        flex-direction: column;
    }

    .intro-text {
        padding-right: 0;
        margin-bottom: 40px;
        text-align: center;
    }

    .intro-headline {
        font-size: 36px;
    }

    .product-layout {
        flex-direction: column;
    }

    .main-product-image img {
        max-width: 100%;
        height: auto;
        position: relative;
        left: -12px;
    }

    .thumbnail-gallery {
        position: relative;
        left: -8px;
    }

    i .main-nav ul {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }
}


/* Navbar Hover */
.navbar .nav-link {
    position: relative;
    transition: color 0.3s ease;
}

.navbar .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #4CAF50;
    transition: width 0.3s;
}

.navbar .nav-link:hover::after {
    width: 100%;
}

/* Hero Section */
.intro-section {
    background: linear-gradient(to right, #e8f5e9, #ffffff);
    padding: 80px 20px;
}

.intro-headline {
    font-size: 2.8rem;
    font-weight: 700;
    animation: fadeUp 1s ease forwards;
}

.primary-button {
    background: #4CAF50;
    color: #fff;
    padding: 12px 30px;
    border-radius: 50px;
    transition: transform 0.3s ease;
}

.primary-button:hover {
    background: #388E3C;
    transform: scale(1.05);
}

/* Product Thumbnails */
.thumbnail-item {
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.thumbnail-item.current {
    border: 2px solid #4CAF50;
    transform: scale(1.05);
}

/* Advantage Cards */
.advantage-card {
    background: #fff;
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

.advantage-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

/* Testimonials */
.feedback-card {
    background: #fff;
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    text-align: center;
}

.feedback-card.is-active {
    border: 2px solid #4CAF50;
}

.control-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ccc;
    margin: 5px;
    transition: background 0.3s;
}

.control-dot.is-active {
    background: #4CAF50;
}

/* FAQ Accordion */
.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
}

.accordion-content.is-expanded {
    max-height: 300px;
    padding-top: 10px;
}

.accordion-toggle {
    cursor: pointer;
    font-weight: 600;
    transition: color 0.3s;
}

.accordion-toggle:hover {
    color: #4CAF50;
}

/* Animations */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}




.nav-list {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    font-size: 1.1rem;
}

.nav-link:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: var(--primary);
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--primary);
}

.nav-link:hover:after {
    width: 100%;
}

.nav-actions {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.nav-icon {
    font-size: 1.3rem;
    color: var(--text-dark);
    transition: var(--transition);
    cursor: pointer;
}

.nav-icon:hover {
    color: var(--primary);
}

.mobile-menu {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero-section {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, rgba(46, 139, 87, 0.05) 0%, rgba(127, 205, 145, 0.1) 100%);
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: var(--secondary-light);
    top: -150px;
    right: -150px;
    opacity: 0.5;
    z-index: 0;
}

.hero-section::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: var(--primary-light);
    bottom: -100px;
    left: -100px;
    opacity: 0.3;
    z-index: 0;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.1;
}

.hero-text p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    max-width: 90%;
}


.hero-image {
    position: relative;
    text-align: center;
}

.hero-img {
    width: 100%;
    max-width: 500px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transform: rotate(3deg);
    transition: var(--transition);
}

.hero-img:hover {
    transform: rotate(0deg);
}

.floating-card {
    position: absolute;
    background: var(--white);
    padding: 1.5rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    animation: float 4s ease-in-out infinite;
    display: flex;
    align-items: center;
    gap: 1rem;
    max-width: 250px;
}

.floating-card i {
    font-size: 2rem;
    color: var(--primary);
}

.floating-card:nth-child(2) {
    top: 20%;
    right: 0;
    background: var(--primary);
    color: white;
    animation-delay: 0.5s;
}

.floating-card:nth-child(2) i {
    color: white;
}

.floating-card:nth-child(3) {
    bottom: 20%;
    left: 0;
    animation-delay: 1s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) translateX(0);
    }

    50% {
        transform: translateY(-10px) translateX(5px);
    }
}

/* Benefits Section */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
    padding: 0 1rem;
}

.section-header h2 {
    font-size: 2.8rem;
    color: var(--primary-dark);
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.section-header h2:after {
    content: '';
    position: absolute;
    width: 60%;
    height: 4px;
    background: var(--secondary);
    bottom: -15px;
    left: 20%;
    border-radius: 2px;
}

.section-header p {
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.2rem;
}

.section {
    padding: 6rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;

}

.benefit-card {
    background-color: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.benefit-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 0;
    background: var(--gradient);
    transition: var(--transition);
    z-index: 1;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.benefit-card:hover:before {
    height: 100%;
}

.benefit-image {
    height: 220px;
    background: linear-gradient(45deg, var(--primary-light), var(--primary));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 3.5rem;
    position: relative;
    overflow: hidden;
}

.benefit-image:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100' width='100' height='100'%3E%3Cpath fill='rgba(255,255,255,0.1)' d='M0 0h100v100H0z'/%3E%3Cpath d='M0 0l100 100' stroke='rgba(255,255,255,0.2)' stroke-width='1'/%3E%3Cpath d='M100 0L0 100' stroke='rgba(255,255,255,0.2)' stroke-width='1'/%3E%3C/svg%3E");
    opacity: 0.5;
}

.benefit-content {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.benefit-content h3 {
    color: var(--primary);
    margin-bottom: 1rem;
    font-size: 1.6rem;
}

/* Ingredients Section */
.ingredients-section {
    background-color: var(--gray-light);
    position: relative;
    overflow: hidden;
}

.ingredients-section:before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 200%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect width="100" height="100" fill="none"/><path d="M25,25 L75,75" stroke="%232E8B57" stroke-width="2" stroke-opacity="0.1"/><path d="M75,25 L25,75" stroke="%232E8B57" stroke-width="2" stroke-opacity="0.1"/></svg>');
    opacity: 0.1;
    z-index: 0;
}

.ingredients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
    position: relative;
    z-index: 1;
}

.ingredient-card {
    text-align: center;
    padding: 2.5rem 2rem;
    background-color: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.ingredient-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient);
    opacity: 0;
    transition: var(--transition);
}

.ingredient-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.ingredient-card:hover:before {
    opacity: 1;
}

.ingredient-card i {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
    background: var(--primary-light);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.ingredient-card h3 {
    color: var(--primary-dark);
    margin: 1rem 0;
    font-size: 1.5rem;
}

/* How to Use Section */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    counter-reset: step-counter;
}

.step-card {
    position: relative;
    padding: 2.5rem 2rem 2rem 5rem;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.step-card:hover {
    background: var(--primary-light);
    color: white;
}

.step-card:hover h3 {
    color: white;
}

.step-card:before {
    counter-increment: step-counter;
    content: counter(step-counter);
    position: absolute;
    left: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    background: var(--gradient);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: bold;
    font-family: 'Montserrat', sans-serif;
}

/* Testimonials */
.testimonials-section {
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.testimonials-section:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100' width='100' height='100'%3E%3Cpath fill='rgba(255,255,255,0.1)' d='M0 0h100v100H0z'/%3E%3Cpath d='M0 0l100 100' stroke='rgba(255,255,255,0.2)' stroke-width='1'/%3E%3Cpath d='M100 0L0 100' stroke='rgba(255,255,255,0.2)' stroke-width='1'/%3E%3C/svg%3E");
    opacity: 0.2;
}

.testimonials-section .section-header h2 {
    color: white;
}

.testimonials-section .section-header p {
    color: rgba(255, 255, 255, 0.9);
}

.testimonials-section .section-header h2:after {
    background: var(--secondary);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    position: relative;
    z-index: 1;
}

.testimonial-card {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 2.5rem;
    border-radius: var(--radius);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    background-color: rgba(255, 255, 255, 0.15);
}

.testimonial-card:before {
    content: '"';
    position: absolute;
    top: 10px;
    left: 20px;
    font-size: 5rem;
    color: rgba(255, 255, 255, 0.2);
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.testimonial-author:before {
    content: '';
    display: block;
    width: 30px;
    height: 2px;
    background: var(--secondary);
}

/* FAQ Section */
.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1.5rem;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.faq-item:hover {
    box-shadow: var(--shadow-hover);
}

.faq-question {
    padding: 1.8rem;
    background: var(--white);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.1rem;
}

.faq-answer {
    padding: 0 1.8rem;
    max-height: 0;
    overflow: hidden;
    background: var(--gray-light);
    transition: max-height 0.5s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 1.8rem;
}

/* Footer */
.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
}

.footer-column h3 {
    font-size: 1.5rem;
    margin-bottom: 1.8rem;
    position: relative;
    display: inline-block;
}

.footer-column h3:after {
    content: '';
    position: absolute;
    width: 50%;
    height: 2px;
    background: var(--secondary);
    bottom: -10px;
    left: 0;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 1rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
    display: inline-block;
}

.footer-links a:hover {
    color: var(--secondary);
    transform: translateX(5px);
}

.social-links {
    display: flex;
    gap: 1.2rem;
    margin-top: 1.5rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    transition: var(--transition);
    font-size: 1.2rem;
}

.social-links a:hover {
    background: var(--secondary);
    transform: translateY(-3px);
}


/* Responsive Design */
@media (max-width: 1100px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }

    .hero-text h1 {
        font-size: 3rem;
    }

    .floating-card {
        display: none;
    }
}

@media (max-width: 768px) {

    .nav-list,
    .nav-actions {
        display: none;
    }

    .mobile-menu {
        display: block;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .section-header h2 {
        font-size: 2.2rem;
    }

    .hero-section {
        padding: 4rem 1.5rem;
    }

    .section {
        padding: 4rem 1.5rem;
    }
}

/* Animation utilities */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}



.layers-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.layers-list li {
    display: flex;
    align-items: flex-start;
    background: #f8f9fa;
    border-radius: 8px;
    margin-bottom: 10px;
    padding: 12px 16px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
    transition: background 0.2s;
}

.layers-list li:hover {
    background: #e3fcec;
}

.layer-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #4caf50;
    color: #fff;
    font-weight: bold;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    margin-right: 16px;
    font-size: 1.1rem;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(76, 175, 80, 0.08);
}

.layer-title {
    font-weight: 600;
    margin-right: 8px;
    color: #222;
    min-width: 120px;
}

.layer-desc {
    color: #666;
    font-size: 0.97em;
    margin-left: 8px;
}

@media (max-width: 600px) {
    .layers-list li {
        flex-direction: column;
        align-items: flex-start;
        padding: 10px 12px;
    }

    .layer-title,
    .layer-desc {
        margin: 2px 0 0 0;
    }

    .layer-number {
        margin-bottom: 6px;
        margin-right: 0;
    }
}

.quantity-control {
    height: 58px;
    /* Match form-floating height */
}

.quantity-btn {
    width: 40px;
    height: 100%;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.2s;
}

.quantity-btn:hover {
    background: #e9ecef;
}

.quantity-input {
    width: 70px;
    height: 100%;
    text-align: center;
    margin: 0;
    background: #f8f9fa;
}

.form-floating>.form-control:focus~label,
.form-floating>.form-control:not(:placeholder-shown)~label {
    opacity: 1;
    transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
}


.comparison-section {
    background-color: #f6fff6;
    padding: 80px 0;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 30px;
    box-shadow: 0 5px 15px rgba(0, 128, 0, 0.05);
    border-radius: 10px;
    overflow: hidden;
}

.comparison-table th {
    background-color: #2e7d32;
    color: white;
    padding: 20px;
    text-align: center;
    font-size: 18px;
}

.comparison-table td {
    padding: 15px 20px;
    border-bottom: 1px solid #eaeaea;
}

.comparison-table tr:nth-child(even) {
    background-color: #e8fbe8;
}

.feature-check {
    color: #388e3c;
    font-weight: bold;
}

.feature-cross {
    color: #dc3545;
    font-weight: bold;
}

.comparison-highlight {
    background-color: #d0f5d0;
    font-weight: 600;
}

.benefit-icon {
    font-size: 24px;
    margin-right: 10px;
    color: #388e3c;
}

.usage-scenarios {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 40px;
}

.scenario-card {
    flex: 0 0 48%;
    background: white;
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 3px 10px rgba(56, 142, 60, 0.08);
    border-left: 4px solid #388e3c;
}

@media (max-width: 768px) {
    .scenario-card {
        flex: 0 0 100%;
    }
}

.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 70px;
    /* distance from bottom */
    right: 15px;
    /* distance from right side */
    background-color: #348E38;
    color: white;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    text-decoration: none;
    color: white;
}

/* Cart Floating Button */
.cart-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 145px;
    right: 15px;
    background-color: #348E38;
    color: #FFFFFF;
    border-radius: 50%;
    text-align: center;
    font-size: 24px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    z-index: 10;
    display: flex !important;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    opacity: 1 !important;
    visibility: visible !important;
}

.cart-float:hover {
    background-color: #0a7a32;
    transform: scale(1.15);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
}

/* Cart Badge */
.cart-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #ff4444;
    color: white;
    border-radius: 50%;
    width: 22px;
    height: 22px;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    border: 2px solid white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

.eco-badge {
    background-color: #28a745;
    color: white;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    display: inline-block;
    margin-bottom: 10px;
}

.environment-section {
    background-color: #f8fff8;
    padding: 60px 0;
    margin-top: 40px;
}

.decomposition-timeline {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
}

.timeline-item {
    text-align: center;
    flex: 1;
    padding: 0 15px;
}

.timeline-icon {
    font-size: 2rem;
    margin-bottom: 10px;
}

.timeline-duration {
    font-weight: bold;
    color: #28a745;
}


/* Collection Images */
.collection-img {
    border-radius: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    /* background: linear-gradient(90deg, #0e3d01, #3cff00); */
    box-shadow: 0 2px 6px rgba(20, 58, 2, 0.821);
    height: 270px;
}

.card {
    border-radius: 15px;
    box-shadow: 3px 10px 8px rgba(34, 83, 14, 0.6);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Collection - Page Animations */


/* Default Card Style */
.stack-card {
    position: relative;
    margin-bottom: 20px;
    border-radius: 12px;
    padding: 18px;
    background: #f7fff3;
    box-shadow: 0 8px 18px rgba(41, 69, 2, 0.833);
    transform-style: preserve-3d;
}

.cardbox {
    height: 500px !important;
    font-size: 13px !important;

}

.herbal-benefits-container {
    padding: 2rem 0;
}

.herbal-benefits-cards {
    position: relative;
}

.herbal-card {
    position: sticky;
    margin: 0 auto 2rem;
    max-width: 700px;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    background: #f7fff3;
}

.herbal-card:nth-child(1) {
    top: 100px;
    z-index: 1;
}

.herbal-card:nth-child(2) {
    top: 120px;
    z-index: 2;
}

.herbal-card:nth-child(3) {
    top: 140px;
    z-index: 3;
}

.herbal-card:nth-child(4) {
    top: 160px;
    z-index: 4;
}