/*---------------------------------HOME PAGE FULL CSS-----------------------------------------*/

/* General Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: #2d2d2d;
    line-height: 1.6;
    background-color: #f5fdf6;
}

/* Container */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Colors */
:root {
    --green: #3b7d4c;
    --light-green: #e3f9e5;
    --dark-green: #275e37;
    --white: #ffffff;
    --gray: #888;
    --glass-bg: rgba(255, 255, 255, 0.15);
    --glass-border: rgba(255, 255, 255, 0.2);
}

/* Logo */
.logo img {
    height: 50px;
    width: 90px;
    vertical-align: middle;
    border-radius: 5px;
}


/* NAVIGATION + HERO */
.full-hero {
    position: relative;
    padding-bottom: 3rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.full-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../assets/images/bg-hero.jpg') no-repeat center center/cover;
    z-index: 0;
    filter: brightness(0.5);
}

.full-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.4); /* dark transparent overlay */
    z-index: 1;
}

.full-hero > * {
    position: relative;
    z-index: 2;
}

.nav-hero-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

nav ul li a {
    text-decoration: none;
    color: white;
    font-weight: 500;
    transition: color 0.3s;
}

nav ul li a:hover,
nav ul li a.active {
    color: #f0f0f0;
    border-bottom: 2px solid white;
}

.nav-icons .icon {
    margin-left: 1rem;
    font-size: 1.2rem;
    color: white;
}

/*---------------------------------UPDATED HERO STRUCTURE-----------------------------------------*/

.hero-structure {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
    padding: 4rem 0 2rem;
}

/* Left Content Card with Glassmorphism */
.hero-left {
    flex: 1 1 500px;
    background: var(--glass-bg);
    backdrop-filter: blur(16px) saturate(160%);
    -webkit-backdrop-filter: blur(16px) saturate(160%);
    border-radius: 16px;
    border: 1px solid var(--glass-border);
    padding: 2rem;
    color: white;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease-in-out;
    margin-bottom: 120px;
    margin-top: 60px;
}

.hero-left h1 {
    font-size: 2.4rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
}

.hero-left h1 span {
    color: #b4ffcf;
}

.hero-left p {
    font-size: 1rem;
    color: #e0e0e0;
    margin-bottom: 2rem;
    max-width: 500px;
}

/* Hero Buttons */
.hero-left .hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-left .btn {
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    color: white;
    background-color: var(--green);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.hero-left .btn.green-btn {
    background-color: var(--green);
    border: none;
}

.hero-left .btn.outline-btn {
    border: 2px solid var(--white);
    color: white;
    background: transparent;
}

.hero-left .btn:hover {
    background-color: var(--dark-green);
    color: #fff;
    border-color: var(--dark-green);
}

/* Right Image */
.hero-right {
    flex: 1 1 400px;
    text-align: center;
    position: relative;
}

.hero-right img {
    max-width: 70%;
    height: auto;
    margin-left: 20%;
    margin-bottom: 70px;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.hero-right h3,
.product-label {
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #fff;
    padding: 6px 14px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    color: var(--green);
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.1);
}


/*---------------------------------FEATURE HIGHLIGHTS-----------------------------------------*/

.hero-features-wrapper {
    position: relative;
    height: 0;
    z-index: 5;
}

.hero-features {
    position: absolute;
    top: -80px; /* Half overlap: adjust value for depth */
    left: 45%;
    transform: translateX(-50%);
    background: #fff;
    border-radius: 16px;
    padding: 2rem 3rem;
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid #e0e0e0;
    z-index: 10;
}


.feature-box {
    flex: 1 1 220px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1rem 0.5rem;
    min-width: 160px;
    position: relative;
}

.feature-box img {
    height: 40px;
    margin-bottom: 0.75rem;
}

.feature-box p {
    font-size: 1rem;
    font-weight: 500;
    color: #2d2d2d;
}

/* Add vertical divider after all but the last feature box */
.feature-box:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 25%;
    height: 50%;
    width: 1px;
    background-color: #dcdcdc;
}



/*-----------------------------------BACKGROUND IMAGE TILL CIRCLE TO CALL TO ACTION--------------------------*/
.background-wrapper {
    background-image: url('../assets/images/Nature BG.png'); /* Replace with your actual image path */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed; /* Optional: for parallax effect */
}


/*--------------------------------------CIRCLE BENEFITS SECTION------------------------------------------------------*/
.circle-benefits {
    position: relative;
    padding: 5rem 1rem;
    overflow: hidden;
    text-align: center;
    font-family: 'Poppins', sans-serif;
}

.animated-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: 400% 400%;
    animation: bgAnim 15s ease infinite;
    z-index: 0;
}

@keyframes bgAnim {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.container {
    position: relative;
    z-index: 2;
}

.benefit-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #2d2d2d;
    margin-bottom: 0.5rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.benefit-title span {
    color: #3b7d4c;
}

.benefit-subtitle {
    font-size: 1.1rem;
    color: #444;
    max-width: 600px;
    margin: 0 auto 2rem auto;
    line-height: 1.6;
}

.benefit-visual-wrapper {
    position: relative;
    width: 500px;
    height: 500px;
    margin: 0 auto;
    animation: fadeInUp 1.5s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.benefit-background {
    position: relative;
    width: 100%;
    height: 100%;
}

.rotating-circle {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 0 6px rgba(91, 197, 122, 0.2));
}

.rotating-wrapper {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    animation: rotateCircle 30s linear infinite;
}

@keyframes rotateCircle {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.center-image {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    background: #ffffff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    box-shadow: 0 6px 20px rgba(91, 197, 122, 0.25);
}

.center-image img {
    width: 100%;
    height: auto;
    transition: transform 1s ease, opacity 1s ease;
}

.benefit-label {
    position: absolute;
    width: 120px;
    text-align: center;
    font-size: 1.05rem;
    font-weight: 500;
    color: #2d2d2d;
    line-height: 1.4;
    text-shadow: 0 1px 1px #fff;
    transform: rotate(-360deg);
    animation: counterRotate 30s linear infinite, fadeInUp 1.5s ease;
}

.benefit-label strong {
    color: #3b7d4c;
    font-weight: 600;
}

.benefit-label.top {
    top: 5%;
    left: 50%;
    transform: translate(-50%, 0) rotate(-360deg);
}

.benefit-label.right {
    top: 50%;
    left: 85%;
    transform: translate(-50%, -50%) rotate(-360deg);
}

.benefit-label.bottom {
    bottom: 5%;
    left: 50%;
    transform: translate(-50%, 0) rotate(-360deg);
}

.benefit-label.left {
    top: 50%;
    left: -5%;
    transform: translate(-50%, -50%) rotate(-360deg);
}

@keyframes counterRotate {
    from { transform: rotate(-0deg); }
    to { transform: rotate(-360deg); }
}

/* Floating Leaves */
.leaf {
    position: absolute;
    width: 40px;
    height: 40px;
    background-image: url('../assets/images/leaf-icon.svg');
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.8;
    animation: floatLeaf 12s linear infinite;
}

.leaf1 { top: -20px; left: 10%; animation-delay: 0s; }
.leaf2 { top: -40px; left: 70%; animation-delay: 3s; }
.leaf3 { top: -30px; left: 40%; animation-delay: 6s; }

@keyframes floatLeaf {
    0% { transform: translateY(0) rotate(0deg); opacity: 0.4; }
    50% { transform: translateY(400px) rotate(180deg); opacity: 0.2; }
    100% { transform: translateY(800px) rotate(360deg); opacity: 0; }
}

/*-----------------------------------PRODUCTS SECTION--------------------------------------------------------------------*/
/* Layout */
.container {
    max-width: 100%;
    margin: auto;
    padding: 2rem;
}

.section-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #2f5e4e;
}

.product-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 5rem;
}

/* Card Styling Inspired by Uiverse + Ayurvedic Theme */
.product-card {
    position: relative;
    width: 250px;
    height: 320px;
    border-radius: 16px;
    z-index: 1;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    box-shadow: 20px 20px 60px #a2b2a2, -20px -20px 60px #ffffff;
    color: #2e4d3d;
    background-color: transparent;
    text-align: center;
    backdrop-filter: blur(12px);
    font-family: 'Segoe UI', sans-serif;
}

.product-card img {
    width: 100px;
    height: 100px;
    object-fit: contain;
    z-index: 3;
    margin-bottom: 0.5rem;
}

.product-card h3 {
    font-size: 1.1rem;
    margin: 0.5rem 0 0.3rem;
    z-index: 3;
    font-weight: 600;
}

.product-card p {
    font-size: 0.9rem;
    z-index: 3;
}

/* Background Glass */
.product-card .bg {
    position: absolute;
    top: 5px;
    left: 5px;
    width: 240px;
    height: 310px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(24px);
    border-radius: 14px;
    z-index: 2;
    /*outline: 2px solid #2f5e4e;*/
}

/* Glowing Blob */
.product-card .blob {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background-color: #2f5e4e; /* Dark green */
    opacity: 0.5;
    filter: blur(18px);
    animation: blob-bounce 6s infinite ease-in-out;
    z-index: 1;
}

/* Animation */
@keyframes blob-bounce {
    0% {
        transform: translate(-100%, -100%) translate3d(0, 0, 0);
    }
    25% {
        transform: translate(-100%, -100%) translate3d(100%, 0, 0);
    }
    50% {
        transform: translate(-100%, -100%) translate3d(100%, 100%, 0);
    }
    75% {
        transform: translate(-100%, -100%) translate3d(0, 100%, 0);
    }
    100% {
        transform: translate(-100%, -100%) translate3d(0, 0, 0);
    }
}

/*---------------------------------BENEFITS SECTION----------------------------------------------------------*/
/* Benefits Section Styling */
.benefits-section {
    margin-top: 100px;
    padding: 4rem 1rem;
    font-family: 'Poppins', sans-serif;
    /*background: linear-gradient(135deg, #e0f7e9, #f2f9f6); !* soft premium background *!*/
}

.benefits-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    align-items: flex-start;
}

.left-section {
    flex: 1 1 45%;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.benefits-text h2 {
    font-size: 2rem;
    color: #222;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.benefits-text h2 span {
    color: #76aa48;
    font-weight: 700;
}

.benefits-text p {
    color: #444;
    font-size: 1rem;
    line-height: 1.7;
}

.right-grid {
    flex: 1 1 50%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 200px;
    gap: 1rem;
}

.benefit-card {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    backdrop-filter: blur(15px) saturate(150%);
    -webkit-backdrop-filter: blur(15px) saturate(150%);
    background-color: rgba(255, 255, 255, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.25);
}

.benefit-card.short {
    grid-row: span 1;
}

.benefit-card.wide {
    width: 100%;
    height: 250px;
}

.benefit-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
    filter: brightness(0.9);
    transition: filter 0.3s ease;
}

.benefit-card:hover img {
    filter: brightness(1);
}

.benefit-card .label {
    position: absolute;
    bottom: 12px;
    left: 12px;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    padding: 0.5rem 1rem;
    font-size: 1rem;
    border-radius: 8px;
    font-weight: 600;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}



/*---------------------------CTA SECTION------------------------------------------------------*/
.cta {
    padding: 4rem 1rem;
    background: linear-gradient(to right, #3b7d4c, #275e37);
    color: #fff;
    text-align: center;
    border-radius: 16px;
    margin: 4rem 1rem;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}

.cta h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #e0f4e4;
}

.cta .btn {
    padding: 0.8rem 2rem;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 8px;
    background-color: #ffffff;
    color: var(--green);
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 4px 16px rgba(255, 255, 255, 0.2);
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
}

.cta .btn:hover {
    background-color: #e3f9e5;
    color: var(--dark-green);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}


/* Premium Footer Style */
.footer {
    background: #e3f9e5;
    color: var(--dark-green);
    border-top: 1px solid #ccebd7;
    box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.03);
    font-weight: 500;
    letter-spacing: 0.3px;
    padding: 2rem 1rem 1rem;
    font-size: 0.95rem;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto 1rem;
    gap: 2rem;
}

.footer-left,
.footer-right {
    flex: 1 1 45%;
    min-width: 280px;
}

.footer-left h4,
.footer-right h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: #1b4332;
}

.footer-left p,
.footer-right p {
    margin: 0.3rem 0;
    line-height: 1.5;
}

.footer-left i,
.footer-right i {
    color: #1b4332;
    margin-right: 0.5rem;
}

.footer-left a,
.footer-right a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-left a:hover,
.footer-right a:hover {
    color: #2d6a4f;
    text-decoration: underline;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid #ccebd7;
    padding-top: 1rem;
    font-size: 0.85rem;
    color: #2f5f3a;
}
/*========================================================================*/

/* Responsive Hamburger Menu */
.hamburger {
    display: none;
    font-size: 28px;
    color: #fff;
    cursor: pointer;
    position: relative;
    top: 20px;
    right: 20px;
    z-index: 1100;
}

/* Mobile Menu Overlay */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.95);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 1099;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
}

.mobile-menu li {
    margin: 20px 0;
}

.mobile-menu a {
    color: white;
    font-size: 22px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.mobile-menu a:hover {
    color: #76aa48;
}

.close-button {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 36px;
    color: #fff;
    cursor: pointer;
    z-index: 1101;
}

/* Ensure hero content is under menu */
.hero-left {
    position: relative;
    z-index: 1;
}

@media (max-width: 768px) {
    .hamburger {
        display: block;
    }

    nav,
    .nav-icons {
        display: none;
    }
}


/*======================== RESPONSIVE ADJUSTMENTS ========================*/
@media (max-width: 1200px) {
    /* General Adjustments */

    /* Hero Section */
    .hero-left {
        flex-basis: 400px;
        margin-bottom: 80px;
        margin-top: 40px;
    }

    .hero-left h1 {
        font-size: 2rem;
    }

    .hero-right img {
        max-width: 80%;
        margin-left: 15%;
    }

    /* Features */
    .hero-features {
        display: flex;
        justify-content: center;
        align-items: center;
        /*padding: 1.5rem 2rem;*/
        /*top: -60px;*/
        /*text-align: center;*/
        /*margin-left: 20px;*/
    }

    .feature-box {
        flex-basis: 180px;
    }
}

@media (max-width: 992px) {
    /* Navigation */
    .logo img {
        height: 35px;
        width: 100px;
    }

    /* Hero Section */
    .hero-structure {
        padding: 3rem 0 1rem;
    }

    .hero-left {
        flex-basis: 350px;
        padding: 1.5rem;
    }

    .hero-left h1 {
        font-size: 1.8rem;
    }

    .hero-right img {
        max-width: 85%;
    }

    /* Circle Benefits */
    .benefit-visual-wrapper {
        width: 400px;
        height: 400px;
    }

    .center-image {
        width: 160px;
        height: 160px;
    }

    .benefit-label {
        width: 100px;
        font-size: 0.9rem;
    }
}

@media (max-width: 767px) {
    /* General Adjustments */
    body {
        font-size: 14px;
    }

    /* Hero Section */
    .hero-left {
        flex-basis: 100%;
        margin-bottom: 40px;
        margin-top: 20px;
    }

    .hero-right {
        flex-basis: 100%;
    }

    .hero-right img {
        max-width: 60%;
        margin-left: 20%;
        margin-bottom: 40px;
    }

    /* Features */
    .hero-features {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        overflow-x: visible;
        position: relative;
        top: 0;
        left: 49.9%;
        transform: translateX(-50%);
        margin-top: -40px;
        padding: 1rem;
        width: 100%;
        height: 100px;
        /*gap: 1rem;*/
    }

    .feature-box p {
        font-size: 0.65rem;
        line-height: 1.1;
        margin: 0;
        word-break: break-word;
    }

    .feature-box {
        flex: 1 1 45%;
        max-width: 180px;
        min-width: auto;
        padding: 0.5rem;
    }

    .feature-box img {
        height: 15px;
    }

    /* Circle Benefits */
    .benefit-visual-wrapper {
        width: 300px;
        height: 300px;
    }

    .center-image {
        width: 120px;
        height: 120px;
    }

    .benefit-label {
        font-size: 0.8rem;
        width: 80px;
    }

    .benefit-label.right {
        left: 80%;
    }

    .benefit-label.left {
        left: -10%;
    }

    /* Products */
    .product-cards {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 2rem;
    }

    .product-card {
        width: calc(50% - 1rem);
        height: 320px;
        max-width: 240px;
    }

    .product-card .bg {
        width: 100%;
        height: 310px;
    }

    /* Benefits Grid */
    .right-grid {
        grid-template-columns: 1fr;
    }

    .benefit-paragraph{
        margin-bottom: 40px;
    }

    /* CTA */
    .cta {
        margin: 2rem 0.5rem;
        padding: 2rem 0.5rem;
    }

    .cta h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    /* Hero Section */
    .hero-left h1 {
        font-size: 1.6rem;
    }

    .hero-right img {
        max-width: 75%;
        margin-left: 12%;
    }

    /* Features */
    .hero-features {
        width: 100%;
        border-radius: 8px;
    }

    .feature-box {
        flex: 1 1 100%;
        max-width: 100%;
    }

    /* Circle Benefits */
    .benefit-visual-wrapper {
        width: 260px;
        height: 260px;
    }

    .benefit-label {
        font-size: 0.7rem;
        width: 70px;
    }

    /* Products */
    .product-card {
        width: 100%;
        max-width: 240px;
    }

    /* Footer */
    .footer-container {
        flex-direction: column;
    }
}

/* Desktop Default – Force 4 feature boxes in a single row */
.hero-features {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 1rem;
}

.feature-box {
    flex: 1 1 25%;
    min-width: 150px;
    scroll-snap-align: start;
}
