* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    /* background: #f6f2eb; */
    background-color: #fff;
    color: #1e2c1f;
}



/* Info banner */
.info-bar {
    background: #285c2b;
    color: #fff;
    text-align: center;
    padding: 10px;
    font-size: 14px;
}

/* Hero Section */
.hero {
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 50px 80px;
    gap: 40px;
    background: #f6f2eb;

}

.hero-text {
    flex: 1;
}

.hero-text h1 {
    font-size: 46px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-text p {
    font-size: 18px;
    color: #4b654c;
    margin-bottom: 30px;
}

.hero-text button {
    background: #2e5b2f;
    color: #fff;
    border: none;
    padding: 14px 25px;
    font-size: 16px;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s;
}

.hero-text button:hover {
    background: #214421;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.hero-image img {
    width: 100%;
    max-width: 650px;
    border-radius: 12px;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.15);
}

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

@media (max-width: 992px) {
    .hero {
    padding: 40px 40px;
    gap: 30px;
    }

    .hero-text h1 {
    font-size: 36px;
    }

    .hero-text p {
    font-size: 16px;
    }
}

@media (max-width: 768px) {


    .hero {
    flex-direction: column;
    text-align: center;
    padding: 40px 20px;
    }

    .hero-text h1 {
    font-size: 30px;
    }

    .hero-text p {
    font-size: 15px;
    }

    .hero-text button {
    padding: 12px 20px;
    font-size: 14px;
    }
}

@media (max-width: 480px) {
    .info-bar {
    font-size: 12px;
    padding: 8px;
    }

    .hero-text h1 {
    font-size: 24px;
    }

    .hero-text p {
    font-size: 14px;
    }

    .nav-links a {
    font-size: 14px;
    }
}


/* PAGE2 */
.page2 {
    max-width: 1200px;
    margin: 0 auto;
}

/* Title styling */
h1 {
    text-align: center;
    color: #4CAF50;
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    margin-bottom: 3rem;
    margin-top: 50px;
}

.page2 img{
    width: 100%;
    height: 100%;
}

/* Badges container */
.badges {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 50px;
}





.badges p {
    color: #4CAF50;
    font-size: 1.2rem;
    font-weight: 500;
}

/* Media queries for responsiveness */
@media (max-width: 768px) {
    .badges {
        flex-direction: row;
        justify-content: space-around;
    }
}

@media (max-width: 480px) {
    .badges {
        flex-direction: column;
        align-items: center;
    }
    .badge-item {
        max-width: 150px;
        min-width: 100px;
    }
}



/* PAGE3 */
:root {
    --primary-green: #4D7C0F;
    --light-bg: #F8F4F0;
    --text-dark: #333333;
    --text-light: #888888;
    --card-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
}


.page3 {
    /* max-width: 1200px; */
    margin: 0 auto; 
    background-color: var(--light-bg);
    width: 100%;
    height: 100%;
}

/* Header Styles */
.header {
    text-align: center;
    margin-bottom: 3rem;
    padding-top: 2.2rem;
}

.header h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem); /* Responsive font size */
    font-weight: 700;
    text-transform: uppercase;
    color: var(--primary-green);
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
}

.header p {
    font-size: 1.125rem;
    color: var(--text-light);
    font-style: italic;
}

/* Products Grid (Flexbox for Responsiveness) */
.products-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem; /* Spacing between cards */
    justify-content: center;
    margin: 0px 50px 0px 50px;
    padding-bottom: 50px;
}

/* Product Card */
.product-card {
    background-color: #fff;
    border-radius: 0.75rem;
    box-shadow: var(--card-shadow);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-sizing: border-box; /* Include padding and border in the element's total width and height */
    /* Mobile default: full width, controlled by max-width */
    width: 100%;
    max-width: 350px; 
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
}

/* Image Container */
.product-image-container {
    width: 80%;
    max-width: 200px;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background-color: #fff;
    border-radius: 0.5rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
}

.product-image-container img {
    width: 100%;
    height: auto;
    border-radius: 0.5rem;
}

/* Product Details */
.product-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-green);
    margin-bottom: 0.75rem;
}

.product-card .description {
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
    flex-grow: 1; /* Key for equal card height */
}

/* Key Benefits List */
.benefits-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
    text-align: left;
    width: 100%;
    align-self: flex-start;
}

.benefits-list li {
    font-size: 0.875rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
}

/* Custom green dot icon using pseudo-element */
.benefits-list li::before {
    content: '•';
    color: var(--primary-green);
    font-size: 1.25rem;
    line-height: 1;
    margin-right: 0.5rem;
}

/* Button Style */
.view-product-btn {
    width: 100%;
    padding: 0.75rem 1.5rem;
    background-color: var(--primary-green);
    color: #ffffff;
    font-weight: 500;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    text-decoration: none;
    transition: background-color 0.2s ease;
    margin-top: auto; /* Pushes the button to the bottom */
}

.view-product-btn:hover {
    background-color: #38620b;
}


/* --- Media Queries for Responsiveness --- */

/* Tablet Layout (2 columns) */
@media (min-width: 640px) {
    .product-card {
        /* Calculates the width for two cards per row, accounting for the 2rem (32px) gap */
        width: calc(50% - 1rem); 
        max-width: none; /* Remove max-width restriction for grid calculations */
    }
}

/* Desktop Layout (3 columns) */
@media (min-width: 1024px) {
    .product-card {
        /* Calculates the width for three cards per row, accounting for the 2rem (32px) gaps */
        width: calc(33.333% - 1.333rem); 
    }
}


/* WHY CHOSE US */

/* CSS Variables for easy color management */
:root {
    --primary-green: #4CAF50; /* Green used in text and icons */
    --light-green-bg: #F4FAF2; /* Light background for icons */
    --text-dark: #333333;
    --text-light: #888888;
}

.why-chose-us {
    max-width: 1000px;
    margin: 0 auto;
}

/* Header Styles */
.header {
    margin-bottom: 3rem;
}

.header h2 {
    font-size: clamp(2rem, 5vw, 2.5rem);
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 0.5rem;
}

.header p {
    font-size: 1.125rem;
    color: var(--text-light);
    /* Vaidya Amrit Ayurved */
}

/* Features Grid (Flexbox for Responsiveness) */
.features-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 4rem;
}

/* Individual Feature Item */
.feature-item {
    text-align: center;
    flex-basis: 300px; /* Base width for each item */
    flex-grow: 1;      /* Allows items to grow slightly */
    max-width: 300px;  /* Keeps them from getting too wide on large screens */
    padding: 1rem;
}

.feature-item .icon-wrapper {
    width: 70px;
    height: 70px;
    background-color: var(--light-green-bg);
    border-radius: 50%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1rem;
    border: 1px solid var(--primary-green);
}

.feature-item .icon-wrapper svg {
    width: 32px;
    height: 32px;
    color: var(--primary-green);
}

.feature-item h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.feature-item p {
    font-size: 0.9rem;
    color: var(--text-dark);
    line-height: 1.5;
    padding: 0 1rem;
}

/* Bottom Tagline and Badges */
.bottom-section p {
    font-size: 1rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    text-align: center;
}

.badges {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.badge-item {
    padding: 0.75rem 1.25rem;
    background-color: var(--light-green-bg);
    color: var(--text-dark);
    font-size: 0.9rem;
    border-radius: 9999px; /* Pill shape */
    border: 1px solid rgba(0, 0, 0, 0.05);
    font-weight: 500;
}

/* --- Media Queries for Responsiveness --- */

/* Mobile layout: The default flex-wrap handles this naturally, but we can refine spacing. */
@media (max-width: 600px) {
    .feature-item {
        flex-basis: 100%; /* Stack vertically on small screens */
        max-width: 100%;
        padding: 1rem 0;
    }
    .feature-item p {
        padding: 0;
    }
}


















/* product page */


