/* 1. Reset & Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    color: #333;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 2. Navbar Desktop Styles (Default) */
.navbar {
    background-color: #fef8d3;
    padding: 10px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 55px;
    display: block;
}

/* FIX: Desktop Flex for links */
.nav-links {
    display: flex;
    /* Horizontal on desktop */
    align-items: center;
    gap: 25px;
}

.nav-links a {
    text-decoration: none;
    color: #265a34;
    font-weight: 600;
    font-size: 15px;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #000;
}

.menu-toggle {
    display: none;
    /* Hidden on desktop */
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #265a34;
    cursor: pointer;
}

.mobile-cta {
    display: none;
    /* Hidden on desktop */
}

.btn-primary {
    background-color: #265a34;
    color: #fff !important;
    padding: 10px 22px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
}

/* 3. Mobile Logic (Max-width 992px) */
@media (max-width: 992px) {
    .menu-toggle {
        display: block;
    }

    .nav-cta {
        display: none;
        /* Hide desktop button */
    }

    .nav-links {
        display: flex;
        flex-direction: column;
        /* Vertical on mobile */
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #fef8d3;
        text-align: center;

        /* Hide state */
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        transition: all 0.4s ease-in-out;
        padding: 0;
        gap: 0;
        /* Remove gap for vertical stacking */
    }

    /* Active class triggered by JS */
    .nav-links.active {
        max-height: 600px;
        opacity: 1;
        padding: 20px 0;
        border-top: 1px solid rgba(0, 0, 0, 0.05);
    }

    .nav-links a,
    .dropdown-item {
        padding: 15px 0;
        width: 100%;
        display: block;
    }

    .mobile-cta {
        display: block;
        margin-top: 10px;
    }
}
/* About Header - Pale Yellow */
.about-header {
    background-color: #fef8d3;
    /* Exact pale yellow match */
    padding: 60px 0;
    text-align: center;
}

.about-header h1 {
    color: #265a34;
    /* Brand Green */
    font-size: 48px;
    font-weight: 800;
}

/* Content Layout */
.about-content-section {
    padding: 100px ;
    background-color: #ffffff;
}

.about-wrapper {
    display: flex;
    align-items: center;
    gap: 60px;
}

.about-image,
.about-text {
    flex: 1;
}

/* Image with Pill-Shape Corners */
.pill-rounded-img {
    width: 100%;
    max-width: 550px;
    border-radius: 80px;
    /* Large radius for that pill-like organic look */
    display: block;
    object-fit: cover;
   
}
.document-container{
    padding:15px;
    margin: 20px;
}



/* Text Styling */
.sub-label {
    display: inline-block;
    color: #888;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    border-bottom: 1px solid #888;
    margin-bottom: 20px;
    padding-bottom: 2px;
}

.about-headline {
    color: #265a34;
    font-size: 36px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 25px;
}

.about-description p {
    color: #555;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 20px;
}

/* Responsive Perfection */
@media (max-width: 992px) {
    .about-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .about-header h1 {
        font-size: 36px;
    }

    .pill-rounded-img {
        border-radius: 40px;
        /* Slightly less on mobile */
        margin: 0 auto;
    }

    .sub-label {
        margin-left: auto;
        margin-right: auto;
    }
}
/* Section Background and Alignment */
.working-towards-section {
    padding: 80px 0;
    background-color: black;
    text-align: center;
}

.main-heading {
    color: #265a34;
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 60px;
}

/* Grid Layout */
.features-grid {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 30px;
}

.feature-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Circular Icon Wrapper - Matching the Screenshot Blobs */
.icon-circle {
    width: 200px;
    height: 200px;
    background-color: #f9f7f2;
    /* Pale beige/grey blob */
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 25px;
    position: relative;
}

.icon-circle i {
    font-size: 50px;
    color: #265a34;
    /* Brand Green */
}

/* Specific styling for the Fork/Spoon and Heart icons */
.fa-utensils {
    color: #d4e117 !important;
    /* Yellow-green accent for the utensils */
}

.heart-medical {
    position: relative;
}

.plus-icon {
    position: absolute;
    top: -5px;
    right: -10px;
    background: #d4e117;
    color: #265a34;
    border-radius: 50%;
    width: 25px;
    height: 25px;
    font-size: 18px;
    font-weight: 900;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Text Styling */
.feature-text {
    color: #265a34;
    font-size: 20px;
    font-weight: 800;
    max-width: 200px;
    line-height: 1.3;
}

.feature-sub-title {
    color: #265a34;
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 10px;
}

/* Order Area */
.price-action {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.price {
    font-size: 22px;
    font-weight: 800;
    color: #333;
}

.btn-order {
    background-color: #d4e117;
    color: #265a34;
    padding: 8px 25px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
}

/* Includes List Styling */
.includes-list {
    text-align: left;
    font-size: 14px;
    color: #555;
    max-width: 280px;
}

.includes-list ul {
    list-style: none;
    padding-left: 0;
}

.includes-list li {
    margin-bottom: 8px;
    position: relative;
    padding-left: 15px;
}

.includes-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #265a34;
}

/* Responsive */
@media (max-width: 992px) {
    .features-grid {
        flex-direction: column;
        align-items: center;
        gap: 60px;
    }
}




.working-towards {
    padding: 100px 0;
    background-color: #fff;
    text-align: center;
}

.section-title {
    color: #265a34;
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 80px;
}

.features-grid {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
}

.feature-card {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* The Blob/Circle backgrounds */
.blob-icon {
    width: 220px;
    height: 220px;
    background-color: #f8f6f0; /* Soft off-white blob */
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
    position: relative;
    color: #265a34;
    font-size: 55px;
}

/* Fork & Spoon Icon Color */
.fa-utensils {
    color: #d4e117;
}

/* Heart Plus Icon */
.heart-plus {
    position: relative;
}

.plus-symbol {
    position: absolute;
    top: -5px;
    right: -10px;
    background: #d4e117;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    border: 3px solid #f8f6f0;
}

/* Text Styling */
.feature-label {
    color: #265a34;
    font-size: 22px;
    font-weight: 800;
    line-height: 1.3;
    max-width: 250px;
}

.card-title {
    color: #265a34;
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 15px;
}

/* Price and Button Row */
.price-row {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.price-tag {
    font-size: 24px;
    font-weight: 800;
    color: #1a1a1a;
}

.order-btn {
    background-color: #d4e117;
    color: #265a34;
    padding: 10px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    transition: transform 0.2s;
}

.order-btn:hover {
    transform: scale(1.05);
}

/* List details */
.includes-box {
    text-align: left;
    max-width: 300px;
}

.includes-box h4 {
    color: #265a34;
    font-size: 16px;
    margin-bottom: 10px;
}

.includes-box ul {
    list-style: none;
    padding: 0;
}

.includes-box li {
    font-size: 14px;
    color: #555;
    margin-bottom: 8px;
    padding-left: 15px;
    position: relative;
}

.includes-box li::before {
    content: "•";
    color: #265a34;
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .features-grid {
        flex-direction: column;
        align-items: center;
        gap: 80px;
    }
}





/* Next */
:root {
    --bg-color: #fcfaf5;
    --wave-color: #f3f0e8;
    --green-main: #2d5a27;
    --green-light: #d9f2b1;
}


/* Unified Full-Width Page Canvas */
.page-canvas {
    width: 100%;
    min-height: 100vh;
    background-color: var(--bg-color);
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* Vertical Center */
    padding: 30px ;
    align-items: center;
    /* Horizontal Center */
    overflow: hidden;
}

/* The Shapes (Top and Bottom Waves) Fixed to the Page */
.page-canvas::before,
.page-canvas::after {
    content: "";
    position: absolute;
    padding: 30px;
    width: 140%;
    height: 120px;
    background-color: var(--wave-color);
    left: -20%;
    border-radius: 50%;
    z-index: 1;
}

.page-canvas::before {
    top: -60px;
    /* Arcs downward from top */
}

.page-canvas::after {
    bottom: -60px;
    /* Arcs upward from bottom */
}

/* Content Box - Maximum Width and Centered */
.content-container {
    width: 85%;
    max-width: 1200px;
    /* Makes it Wide */
    z-index: 2;
    padding: 100px 20px;
    /* Space for the top/bottom waves */
    display: flex;
    flex-direction: column;
    gap: 60px;
    /* Space between the two sections */
}

.section {
    width: 100%;
    text-align: justify;
}

/* Solution Section Styles */
.section.solution h2 {
    color: var(--green-main);
    text-align: center;
    font-size: 28px;
    margin-bottom: 30px;
}

.section p {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 20px;
}

.highlight {
    font-weight: bold;
    text-transform: uppercase;
}

.why-choose {
    text-align: center;
    margin-top: 50px;
    padding: 40px;
    background-color: var(--green-light);
    /* Integrated the green bg here */
    border-radius: 20px;
}

/* Mobile Perfection */
@media (max-width: 768px) {

    .page-canvas::before,
    .page-canvas::after {
        width: 200%;
        left: -50%;
    }

    .content-container {
        width: 90%;
        text-align: center;
    }

    .section {
        text-align: center;
    }

    .section p {
        font-size: 14px;
    }
}




/* NEXT TWO*/

/* Unified Full-Width Page Canvas */
.pagerr-canvas {
    width: 100%;
    max-width: 1200px;
    /* Wide format */
    min-height: 100vh;
    background-color: #fcfaf5;
    /* Background Color */
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    
    overflow: hidden;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
}

/* Fixed Shape at Top and Bottom of the entire page */
.page-canvas::before,
.page-canvas::after {
    content: "";
    position: absolute;
    width: 160%;
    height: 180px;
    background-color: #f3f0e8;
    /* Wave Color */
    left: -30%;
    border-radius: 50%;
    z-index: 1;
}

.page-canvas::before {
    top: -100px;
}

.page-canvas::after {
    bottom: -100px;
}

/* Centered Content Container */
.content-wrapper {
    width: 80%;
    z-index: 2;
    padding: 120px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 80px;
}

.section {
    width: 100%;
}

/* Problem Section Styling */
.problem-text {
    text-align: justify;
    font-size: 16px;
    line-height: 1.8;
    color: #333;
}

/* Solution Section Styling */
.solution-section {
    text-align: center;
}

.solution-section h1 {
    color: #2d5a27;
    /* Green Main */
    font-size: 36px;
    margin-bottom: 40px;
}

.solution-section p {
    text-align: justify;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 25px;
}

.highlight {
    font-weight: bold;
    text-transform: uppercase;
}

/* Why Choose Us - Footer Wave */
.footer-banner {
    margin-top: 60px;
    padding: 60px 40px;
    background-color: #d9f2b1;
    /* Green Light */
    border-radius: 40px;
    text-align: center;
}

.footer-banner h2 {
    color: #2d5a27;
    /* Green Main */
    font-size: 32px;
    margin-bottom: 20px;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .content-wrapper {
        width: 90%;
        padding: 80px 0;
    }

    .problem-text,
    .solution-section p {
        text-align: center;
        font-size: 14px;
    }

    .page-canvas::before,
    .page-canvas::after {
        width: 250%;
        left: -75%;
    }
}




















/* NEXT TWO*/



/* Universal Styles */
body {
    margin: 0;
    padding: 0;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    background-color: #fcfaf5;
    color: #333;
}

/* Service Grid Layout */
.services-container {
    max-width: 1200px;
    margin: 80px auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* Exactly 3 columns as per design */
    gap: 40px;
    padding: 0 40px;
}

/* Card Styling */
.card {
    background-color: #fff9e6;
    /* Light cream/yellowish tint */
    border-radius: 30px;
    overflow: hidden;
    text-align: left;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
}

.card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.card-content {
    padding: 25px;
}

.card-content h3 {
    color: #2d5a27;
    /* Forest Green */
    margin: 0 0 12px 0;
    font-size: 20px;
    font-weight: 700;
}

.card-content p {
    font-size: 14px;
    line-height: 1.6;
    color: #555;
    margin: 0;
}

/* Footer Section */
.footer {
    position: relative;
    background-color: #f3f0e8;
    padding: 120px 40px 40px 40px;
    margin-top: 150px;
    overflow: hidden;
}

/* The Curved Top Decoration */
.footer::before {
    content: "";
    position: absolute;
    top: -120px;
    left: -10%;
    width: 120%;
    height: 240px;
    background-color: #fcfaf5;
    /* Matches page background */
    border-radius: 50%;
    z-index: 1;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    gap: 30px;
}

.footer-column {
    flex: 1;
}

.footer-column h4 {
    color: #2d5a27;
    font-size: 18px;
    margin-bottom: 25px;
}

.footer-column p,
.footer-column li {
    font-size: 14px;
    color: #666;
    line-height: 1.8;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* Newsletter Styles */
.newsletter-input {
    width: 100%;
    padding: 14px 20px;
    border: 1px solid #ddd;
    border-radius: 30px;
    margin-bottom: 15px;
    box-sizing: border-box;
    outline: none;
}

.submit-btn {
    width: 100%;
    padding: 14px;
    background-color: #2d5a27;
    color: white;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    font-weight: bold;
    font-size: 16px;
    transition: background 0.3s;
}

.submit-btn:hover {
    background-color: #1e3d1a;
}

/* Mobile Perfection */
@media (max-width: 992px) {
    .services-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 650px) {
    .services-container {
        grid-template-columns: 1fr;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-column {
        margin-bottom: 40px;
    }
}