 :root {
            --primary-green: #1a8d3e; /* Main background green */
            --light-green: #c0fccf;   /* Bottom strip background */
            --dark-green-text: #0e4620; /* Bottom strip text */
        }

        body {
            font-family: 'Poppins', sans-serif;
            background-color: var(--primary-green);
            color: white;
            overflow-x: hidden !important;
        }

        /* Navbar Styling */
        .navbar {
            background-color: var(--primary-green);
            padding-top: 20px;
            padding-bottom: 20px;
        }

        .navbar-brand {
            display: flex;
            align-items: center;
            font-weight: 700;
            font-size: 1.5rem;
        }

        .brand-logo-icon {
            font-size: 2rem;
            margin-right: 10px;
        }

        .brand-text-sub {
            display: block;
            font-size: 0.7rem;
            font-weight: 400;
            font-style: italic;
        }

        .nav-link {
            color: white !important;
            font-size: 1.1rem;
            margin: 0 10px;
            border-right: 1px solid rgba(255,255,255,0.3);
            line-height: 1;
        }
        
        .nav-item:last-child .nav-link {
            border-right: none;
        }

/* Hero Section Styling */
        .hero-section {
            padding: 20px 0;
            min-height: 70vh; /* Ensures it takes up good screen space */
            display: flex;
            align-items: center;
        }

        .hero-heading {
            color: white;
            font-size: 3.5rem;
            font-weight: 700;
            line-height: 1.1;
            margin-bottom: 25px;
        }

        .hero-text {
            color: #ffffff;
            font-size: 1.15rem;
            line-height: 1.6;
            margin-bottom: 35px;
            max-width: 90%;
        }

        .btn-custom {
            background-color: white;
            color: var(--primary-green);
            font-weight: 600;
            padding: 15px 40px;
            border-radius: 50px; /* Modern pill shape */
            font-size: 1.1rem;
            border: 2px solid var(--primary-green);
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(45, 106, 79, 0.3);
        }

        .btn-custom:hover {
            transform: translateY(-3px);
            background-color: white;
            color: var(--primary-green);
            box-shadow: 0 6px 20px rgba(45, 106, 79, 0.4);
        }

        /* Image Styling - Removed the gray placeholder box for a cleaner look */
        .image-wrapper {
            position: relative;
            padding: 20px;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        /* This creates a subtle backdrop behind the machine image */
        .image-wrapper::before {
            content: '';
            position: absolute;
            width: 90%;
            height: 90%;
            /* background-color: white; */
            z-index: -1;
            opacity: 0.6;
        }

        .image-wrapper img {
            max-height: 500px;
            width: auto;
            filter: drop-shadow(0 10px 20px rgba(0,0,0,0.15));
            transition: transform 0.3s;
        }
        
        .image-wrapper img:hover {
            transform: scale(1.02);
        }

        /* Infinity Scrolling Marquee Styling */
        .marquee-container {
            background-color: var(--light-green);
            padding: 25px 0;
            overflow: hidden;
            width: 100vw; /* Ensures full width */
            margin-left: calc(-50vw + 50%); /* Centers it perfectly if inside a container, or use w-100 */
        }

        .marquee-content {
            display: flex;
            width: max-content; /* Critical: allows content to be wider than screen */
            animation: scroll 25s linear infinite;
        }

        .marquee-item {
            color: var(--dark-green-text);
            font-size: 2.5rem; /* Slightly smaller for better fit */
            font-weight: 800;
            text-transform: uppercase;
            padding-right: 80px; /* Space between repeats */
            display: flex;
            align-items: center;
        }
        
        /* Add a dot or separator if needed */
        .marquee-item::after {
            content: "•";
            color: var(--accent-color);
            margin-left: 80px;
        }

        @keyframes scroll {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }

        /* Mobile Responsiveness Tweaks */
        @media (max-width: 991px) {
            .hero-section {
                text-align: center;
                padding: 40px 0;
            }
            
            .hero-heading {
                font-size: 2.5rem;
            }
            
            .hero-text {
                margin: 0 auto 30px auto;
            }

            .image-wrapper img {
                max-height: 300px;
                margin-top: 30px;
            }
            
            .marquee-item {
                font-size: 1.2rem;
                padding-right: 40px;
            }
            
            .marquee-item::after {
                margin-left: 40px;
            }
        }

        /* About Section Styling */
.about-section {
    padding: 80px 0;
    background-color: #ffffff; /* White background for contrast */
    color: #333;
}

.section-title {
    color: var(--primary-green);
    font-weight: 700;
    font-size: 2.5rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
}

/* Underline effect for title */
.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background-color: var(--primary-green);
    margin: 10px auto 0;
    border-radius: 2px;
}

.lead-text {
    font-size: 1.2rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 50px;
}

/* Cards for Goal & Vision */
.about-card {
    background: #f9f9f9;
    border: none;
    border-radius: 15px;
    padding: 30px;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-left: 5px solid var(--primary-green); /* Green accent line */
}

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

.card-icon {
    font-size: 2.5rem;
    color: var(--primary-green);
    margin-bottom: 20px;
}

.card-heading {
    font-weight: 700;
    color: #0e4620;
    margin-bottom: 15px;
}

/* Mission List Styling */
.mission-box {
    background-color: #0e4620; /* Dark green background */
    color: white;
    border-radius: 15px;
    padding: 40px;
    height: 100%;
}

.mission-heading {
    font-weight: 700;
    margin-bottom: 25px;
    border-bottom: 1px solid rgba(255,255,255,0.2);
    padding-bottom: 15px;
}

.mission-list {
    list-style: none;
    padding-left: 0;
}

.mission-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: start;
    font-size: 1.05rem;
}

.mission-list i {
    color: var(--light-green); /* Checkmark color */
    margin-right: 15px;
    margin-top: 5px;
}

/* Product Section Styling */
.product-section {
    padding: 80px 0;
    background-color: #f4fcf6; /* Very light green background */
}
/* Container Styling */
.product-image-box {
    /* border-radius: 20px; */
    height: 580px; /* Keeps your specific height */
    width: 100%;
    
    /* Flexbox: Centers the image perfectly */
    display: flex; 
    align-items: center;
    justify-content: center;
    
    /* Ensures the image doesn't bleed outside the rounded corners */
    overflow: hidden; 
    position: relative;
    
    /* Adds a soft premium shadow */
    /* box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05); */
    /* border: 1px solid rgba(0,0,0,0.02); */
}

/* Image Styling */
.product-image-box img {
    max-height: 90%; /* Ensures image doesn't touch the edges */
    max-width: 90%;
    object-fit: contain; /* CRITICAL: Prevents the machine from stretching/squishing */
    transition: transform 0.4s ease; /* Smooth animation */
    filter: drop-shadow(0 10px 15px rgba(0,0,0,0.1)); /* Shadow specifically for the PNG cutout */
}

/* Hover Effect */
.product-image-box:hover img {
    transform: scale(1.05); /* Slight zoom on hover */
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .product-image-box {
        height: 350px; /* Reduce height on phones so it's not too tall */
        margin-bottom: 20px;
    }
}

/* Specification Cards */
.spec-card {
    background: white;
    padding: 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    margin-bottom: 20px;
    transition: transform 0.2s;
    height: 100%;
}

.spec-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(26, 141, 62, 0.15); /* Greenish shadow */
}

.spec-icon-box {
    background-color: var(--light-green);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
}

.spec-icon-box i {
    color: var(--primary-green);
    font-size: 1.5rem;
}

.spec-content h5 {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.spec-content p {
    margin: 0;
    color: #0e4620; /* Dark green text */
    font-weight: 700;
    font-size: 1.1rem;
}

.badge-custom {
    background-color: var(--primary-green);
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 0.8rem;
    margin-right: 5px;
}

/* How It Works Section Styling */
.process-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.process-card {
    text-align: center;
    padding: 30px 20px;
    border: 1px solid #eee;
    border-radius: 15px;
    background: white;
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.process-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(26, 141, 62, 0.1);
    border-color: var(--light-green);
}

/* The number badge (1, 2, 3...) */
.step-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: #eefdf2;
    color: var(--primary-green);
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    border: 1px solid var(--light-green);
}

.process-icon {
    font-size: 3rem;
    color: var(--primary-green);
    margin-bottom: 25px;
    display: inline-block;
}

.process-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #333;
}

.process-text {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
}

/* Arrow connector for large screens (optional visual flair) */
.process-wrapper {
    position: relative;
}
/* Why Choose Us Section */
.choose-section {
    padding: 80px 0;
    background-color: #f8fdf9; /* Soft mint background */
}

/* Feature Box (Square) */
.feature-box {
    background: white;
    padding: 25px 15px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    height: 100%;
    transition: transform 0.3s ease;
    border-bottom: 3px solid transparent;
}

.feature-box:hover {
    transform: translateY(-5px);
    border-bottom: 3px solid var(--primary-green);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--primary-green);
    margin-bottom: 15px;
}

.feature-title {
    font-size: 1rem;
    font-weight: 700;
    color: #333;
    margin: 0;
}

/* Advantage Bar (Horizontal) */
.advantage-wrapper {
    margin-top: 50px;
}

.advantage-card {
    background: white;
    border-left: 5px solid var(--primary-green);
    padding: 20px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    transition: margin-left 0.3s ease;
}

.advantage-card:hover {
    margin-left: 10px;
    background-color: #eefdf2;
}

.advantage-icon-circle {
    background-color: var(--primary-green);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.advantage-text {
    font-weight: 700;
    color: #0e4620;
    font-size: 1.1rem;
    margin: 0;
}

/* Business Opportunities Section */
.biz-section {
    padding: 80px 0;
    background-color: #ffffff;
}

/* Part 1: Partner Circles */
.partner-item {
    text-align: center;
    padding: 20px;
    transition: transform 0.3s ease;
}

.partner-item:hover {
    transform: translateY(-5px);
}

.partner-icon-box {
    width: 90px;
    height: 90px;
    background-color: #f4fcf6;
    border: 2px solid var(--light-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    transition: all 0.3s ease;
}

.partner-item:hover .partner-icon-box {
    background-color: var(--primary-green);
    box-shadow: 0 5px 15px rgba(26, 141, 62, 0.3);
}

.partner-item:hover .partner-icon-box i {
    color: white;
}

.partner-icon-box i {
    font-size: 2rem;
    color: var(--primary-green);
    transition: color 0.3s ease;
}

.partner-name {
    font-weight: 600;
    color: #333;
    font-size: 1rem;
}

/* Part 2: Engagement Models */
.model-wrapper {
    margin-top: 60px;
}

.model-card {
    background-color: #0e4620; /* Deep Green */
    color: white;
    border-radius: 20px;
    padding: 40px;
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
    border: 1px solid rgba(255,255,255,0.1);
}

.model-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(14, 70, 32, 0.4);
}

/* Background decoration for the card */
.model-card::after {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
}

.model-icon {
    font-size: 3rem;
    color: var(--light-green);
    margin-bottom: 20px;
}

.model-title {
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.model-desc {
    color: #cfd8d2;
    font-size: 1.1rem;
    margin-bottom: 25px;
}

.btn-outline-custom {
    border: 2px solid white;
    color: white;
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    transition: all 0.3s;
    background: transparent;
}

.btn-outline-custom:hover {
    background: white;
    color: var(--primary-green);
}











/* Footer Section */
.footer-section {
    background-color: #0e4620; /* Dark Green to anchor the bottom */
    color: white;
    padding-top: 70px;
    padding-bottom: 30px;
    font-size: 0.95rem;
}

.footer-brand {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    display: block;
    color: white;
    text-decoration: none;
}

.footer-about {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 30px;
    line-height: 1.8;
}

.footer-heading {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--light-green); /* Accent color for headers */
}

/* Footer Links */
.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--light-green);
    transform: translateX(5px);
}

/* Contact Info Items */
.contact-item {
    display: flex;
    margin-bottom: 20px;
}

.contact-icon {
    color: var(--light-green);
    font-size: 1.2rem;
    margin-right: 15px;
    margin-top: 3px; /* Align with first line of text */
}

.contact-text {
    color: rgba(255, 255, 255, 0.9);
}

.contact-label {
    display: block;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 2px;
}

/* Copyright Bar */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 50px;
    padding-top: 25px;
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
}

/* Contact Form Section */
.form-section {
    padding: 80px 0;
    background-color: #f4fcf6; /* Matches the product section light green */
}

.contact-form-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border-top: 5px solid var(--primary-green);
}

/* Customizing Bootstrap Form Fields */
.form-floating > .form-control:focus,
.form-floating > .form-select:focus {
    border-color: var(--primary-green);
    box-shadow: 0 0 0 0.25rem rgba(26, 141, 62, 0.25);
}

.form-floating > label {
    color: #888;
}

.form-control, .form-select {
    border-radius: 10px;
    border: 1px solid #e0e0e0;
}

/* Submit Button */
.btn-submit {
    background-color: var(--primary-green);
    color: white;
    font-weight: 700;
    padding: 15px 40px;
    border-radius: 10px;
    border: none;
    width: 100%;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background-color: #0e4620; /* Darker Green */
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(26, 141, 62, 0.3);
}