:root {
    /* Design System - CEALEA GREENS */
    --color-primary: #2E7D32;
    /* Deep Green */
    --color-secondary: #F1F8E9;
    /* Light Green/White */
    --color-accent: #1565C0;
    /* Water Blue */
    --color-text-dark: #333333;
    --color-text-light: #FFFFFF;
    --font-main: 'Inter', sans-serif;

    --spacing-container: 1200px;
    --spacing-section: 4rem;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-main);
    color: var(--color-text-dark);
    line-height: 1.6;
    background-color: #FAFAFA;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* Utilities */
.container {
    max-width: var(--spacing-container);
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: var(--spacing-section) 0;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--color-primary);
    color: var(--color-text-light);
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.btn:hover {
    background-color: transparent;
    border-color: var(--color-primary);
    color: var(--color-primary);
}

.btn-secondary {
    background-color: transparent;
    border: 2px solid var(--color-text-light);
}

.btn-secondary:hover {
    background-color: var(--color-text-light);
    color: var(--color-primary);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: linear-gradient(90deg, #FFFFFF 0%, #FFFFFF 25%, #0d3b14 40%, #0d3b14 100%);
    /* Zoned: Solid White (0-25%) -> Transition -> Solid Dark Green (40-100%) */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    height: 90px;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    width: 100%;
    /* Full width */
    max-width: none;
    /* remove container constraint */
    padding: 0 1.5cm;
    /* Safe padding approx 1.5cm */
}

.logo a {
    display: flex;
    align-items: center;
    padding: 0;
    /* Align strictly to container padding */
}

.logo img.logo-icon {
    height: 74px;
    /* Zoomed 20-25% */
    width: auto;
}

.nav-menu {
    display: flex;
    gap: 40px;
    align-items: center;
}

.nav-menu a {
    font-weight: 500;
    font-size: 16px;
    color: white;
    /* White text */
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.nav-menu a:hover {
    color: #FFD700;
    /* Gold hover */
}

.nav-menu a.active {
    color: #FFD700;
    /* Gold active */
}

.mobile-menu-btn {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: white;
    padding-right: 20px;
}

/* Hero Section */
.hero {
    position: relative;
    height: 380px !important;
    /* Strict Pixel Height Increased */
    min-height: 0 !important;
    max-height: 380px !important;
    padding: 0 !important;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    color: white;
    background: black;
    margin-top: 90px;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

/* Hero Overlay - Cinematic Gradient */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right,
            rgba(138, 107, 79, 0.6),
            /* Light Coffee Brown 60% */
            rgba(11, 61, 46, 0.4)
            /* Deep Forest Green 40% */
        );
    z-index: 1;
    pointer-events: none;
}

/* Overlay removed as per strict requirement */
.hero-overlay {
    display: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding-left: 5%;
    /* Slight left alignment */
}

.hero-text-layer {
    position: relative;
    display: block;
}

.hero-text-layer.background-text {
    font-family: 'Great Vibes', cursive;
    font-size: 10rem;
    color: rgba(255, 255, 255, 0.1);
    /* Faint opacity */
    position: absolute;
    top: -80px;
    left: -20px;
    white-space: nowrap;
    pointer-events: none;
    z-index: -1;
}

.hero-text-layer.main-text {
    font-family: 'Playball', cursive;
    font-size: 6rem;
    color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Welcome Section */
.welcome-section {
    position: relative;
    background-image: url('Images/Welcome.png');
    background-size: cover;
    background-position: center;
    height: 300px !important;
    /* Strict Pixel Height Increased */
    min-height: 0 !important;
    max-height: 300px !important;
    padding: 0 !important;
    overflow: hidden;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.welcome-section::before {
    display: none;
    /* No overlay */
}

.welcome-container {
    position: relative;
    /* No Z-index needed without overlay */
    max-width: 1200px;
    width: 80%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    gap: 24px;
    padding-left: 0;
    text-align: center;
}

.welcome-heading {
    font-size: 1.75rem;
    /* Matches Why Choose Us */
    font-weight: 700;
    color: #0d3b14;
    /* Dark Green */
    margin: 0;
    font-family: var(--font-main);
}

.welcome-desc {
    font-size: 0.95rem;
    /* Matches hygiene text */
    font-weight: 400;
    color: #0d3b14;
    /* Dark Green */
    margin: 0;
    line-height: 1.6;
    max-width: 100%;
    text-align: center;
    letter-spacing: normal;
}

.welcome-btn {
    margin-top: 10px;
    padding: 12px 30px;
    background-color: #0d3b14;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.welcome-btn:hover {
    background-color: #092b0f;
}

/* Why Choose Us Section */

.why-choose-us {
    background-color: #0d3b14;
    /* Deep Forest Green - Matches Header */
    padding: 20px 0;
    /* Reduced height */
    color: white;
}

.why-choose-container {
    width: 100%;
    padding: 0 1cm;
    /* Exactly 1cm left and right padding */
    margin: 0;
}

.why-choose-us h2 {
    font-family: 'Inter', sans-serif;
    font-size: 1.75rem;
    /* Slightly larger than 16px (approx 28px) */
    font-weight: 500;
    /* Match Nav Menu Weight (500) */
    color: #FFFFFF;
    text-align: center;
    margin-bottom: 40px;
    /* Clean spacing gap */
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    /* 1x4 fixed equal widths */
    gap: 0;
    /* No visible gap, invisible table feel */
    width: 100%;
    /* Default align-items is stretch, which we want for equal height columns */
}

.why-item {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    /* Same as nav */
    font-size: 16px;
    color: #FFFFFF;
    text-align: center;
    padding: 0 15px;
    /* Internal padding */
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: auto;
    /* Allow natural height */
}

/* Responsive Behavior */
@media (max-width: 1024px) {
    .why-choose-grid {
        grid-template-columns: repeat(2, 1fr);
        /* 2x2 Layout */
        row-gap: 30px;
        /* Add gap for stacked items */
    }
}

@media (max-width: 640px) {
    .why-choose-grid {
        grid-template-columns: 1fr;
        /* Single column stack */
    }
}

/* Our Process Section */
.our-process-section {
    background-color: #0d3b14;
    /* Match Header Dark Green */
    padding: 20px 0;
    /* Minimal vertical padding */
    color: white;
}

.process-container {
    width: 100%;
    padding: 0 1cm;
    /* Match padding consistency */
    margin: 0;
}

.our-process-section h2 {
    font-family: 'Inter', sans-serif;
    font-size: 1.75rem;
    font-weight: 500;
    color: #FFFFFF;
    text-align: center;
    margin-bottom: 20px;
    /* Clean spacing */
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    /* 1x4 Layout */
    gap: 15px;
    /* Spacing between boxes */
    width: 100%;
}

.process-box {
    border: 1px solid white;
    /* Thin white border */
    border-radius: 12px;
    /* Rounded corners */
    padding: 30px 20px;
    /* Plenty of inner padding */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 180px;
    /* Ensure equal height visual */
    background-color: #0d3b14;
    /* Same background */
}

.process-box p {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    /* Match Why Choose Us */
    font-weight: 500;
    color: white;
    margin: 0;
    line-height: 1.5;
}

/* Responsive Process */
@media (max-width: 1024px) {
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
        /* 2x2 on tablet */
    }
}

@media (max-width: 640px) {
    .process-grid {
        grid-template-columns: 1fr;
        /* Stack on mobile */
    }
}

/* Quote Strip Section */
.quote-strip-section {
    height: 2cm;
    /* Strict Height */
    width: 100%;
    background-image: url('Images/About us/Welcome.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
    overflow: hidden;
}

.quote-content {
    text-align: center;
    color: #0d3b14;
    /* Dark Green */
    font-family: 'Inter', sans-serif;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.quote-text {
    font-style: italic;
    font-weight: 500;
    font-size: 1.1rem;
    margin: 0;
}

.quote-author {
    font-size: 0.95rem;
    font-weight: 400;
    margin: 0;
    opacity: 0.9;
}

/* Specific Quote Strip with Welcome.png (No Overlay) */
.quote-strip-welcome {
    height: 2cm;
    /* Strict Height */
    width: 100%;
    background-image: url('Images/Welcome.png');
    /* Root Welcome.png per request */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
    overflow: hidden;
}

/* Innovation Statement Section */
.innovation-section {
    background-color: #0d3b14;
    /* Solid Dark Green */
    color: white;
    padding: 3rem 0;
    /* Balanced vertical padding */
    text-align: center;
}

.innovation-container {
    max-width: 1000px;
    /* Match about-intro-container */
    margin: 0 auto;
    padding: 0 1.5cm;
}

.innovation-section h2 {
    font-family: 'Inter', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    /* Bold */
    margin-bottom: 20px;
    color: white;
}

.innovation-text {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    /* Comfortable readability */
    opacity: 0.9;
    margin-bottom: 20px;
    text-align: left;
}

.innovation-text:last-child {
    margin-bottom: 0;
}

/* Products Banner Section moved to end of file to match About Us */

/* Our Products Section */
/* Our Products Section */
/* Our Products Section */
.our-products-section {
    background-image: url('Images/Welcome.png');
    background-size: cover;
    background-position: center;
    padding: 10px 0;
    /* Reduced vertical padding */
    text-align: center;
    color: #333;
}

.products-full-container {
    width: 100%;
    padding: 0 1.5cm;
    /* Safe margin left/right */
    margin: 0;
}

.our-products-section h2 {
    font-size: 2rem;
    color: #0d3b14;
    /* Dark Green */
    font-family: var(--font-main);
    margin-bottom: 20px;
    font-weight: 700;
}

.product-grid {
    display: flex;
    justify-content: space-between;
    /* Anchors first/last to edges */
    gap: 0;
    /* Auto spacing */
    margin-bottom: 30px;
    flex-wrap: nowrap;
    /* Force single line on desktop */
    width: 100%;
}

/* Specific Dimension Tile */
.product-tile {
    width: 302px;
    /* 8cm */
    height: 189px;
    /* 5cm */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
    text-decoration: none;
    /* Ensure no underline for anchor links */
    color: inherit;
    /* Inherit color */
}

/* Coffee Brown Overlay 60% opacity */
.product-tile::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(138, 107, 79, 0.6);
    /* Light Coffee Brown 60% */
    z-index: 1;
}

/* Text inside tile */
.product-tile h3 {
    position: relative;
    z-index: 2;
    color: white;
    font-size: 1.8rem;
    font-family: 'Playball', cursive;
    font-weight: 400;
    margin: 0;
    text-shadow: none;
    /* Removed as requested */
}

.products-btn-wrapper {
    margin-bottom: 40px;
}

.products-btn {
    background-color: #0d3b14;
    /* Same as header */
    color: white;
    padding: 10px 25px;
    border-radius: 4px;
    /* Clean corporate */
    font-size: 0.9rem;
    font-weight: 600;
    border: none;
    box-shadow: none;
}

.products-btn:hover {
    background-color: #1b5e20;
    color: white;
    border: none;
}

/* Product Info Block */
/* Product Info Block */
.product-info-block {
    max-width: 1000px;
    /* Increased for single line */
    margin: 0 auto 20px;
    color: #0d3b14;
}

.product-info-block h3 {
    font-family: var(--font-main);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: #0d3b14;
    white-space: nowrap;
    /* Force single line */
}

.product-subheading {
    font-family: var(--font-main);
    font-size: 1.5rem;
    font-weight: 700;
    color: #D4AF37;
    /* Gold Badge Color */
    margin-top: 0;
    margin-bottom: 10px;
    text-align: center;
}

/* Premium Ribbon Section */
.premium-ribbon {
    background-color: #0d3b14;
    /* Solid Dark Green */
    /* Same as header */
    width: 100%;
    height: 3cm;
    /* Fixed height 3cm */
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
}

.ribbon-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    height: 100%;
}

/* Mini Footer */
.mini-footer {
    height: 1.5cm;
    background-color: #0d3b14;
    /* Dark Green */
    color: white;
    display: flex;
    width: 100%;
    margin: 0;
    padding: 0;
    /* Removing container padding */
    max-width: none;
    box-sizing: border-box;
}

.footer-left {
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-left: 1.5cm;
    height: 100%;
    box-sizing: border-box;
}

.footer-right {
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 1.5cm;
    height: 100%;
    box-sizing: border-box;
}

.mini-footer p {
    margin: 0;
}

.social-icons {
    display: flex;
    gap: 15px;
    align-items: center;
}

.social-icons i {
    color: white;
    font-size: 1rem;
    cursor: pointer;
}

.ribbon-image {
    height: 70%;
    /* approx 2.1cm */
    width: auto;
    object-fit: contain;
    background: transparent;
}

.ribbon-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
    font-family: var(--font-main);
}

.ribbon-title {
    font-size: 1.1rem;
    /* Compact */
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 2px;
}

.ribbon-desc {
    font-size: 0.85rem;
    /* Compact */
    font-weight: 400;
    opacity: 0.95;
    line-height: 1.1;
}

/* Responsive Ribbon */
@media (max-width: 640px) {
    .premium-ribbon {
        height: auto;
        padding: 5px 0;
    }

    .ribbon-content {
        flex-direction: row;
        /* Try to keep horizontally aligned on mobile for compact strip */
        flex-wrap: wrap;
        justify-content: center;
        text-align: left;
        gap: 10px;
        padding: 0 10px;
    }

    .ribbon-text {
        align-items: flex-start;
        text-align: left;
    }

    .ribbon-image {
        height: 30px;
        /* Reduced for mobile */
    }
}



.product-info-block p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 15px;
    color: #0d3b14;
    /* Dark Green */
    text-align: center;
}

/* Gold Badge */
.gold-badge {
    color: #D4AF37;
    font-size: 1.8rem;
    font-weight: 700;
    text-transform: uppercase;
    font-family: 'Georgia', serif;
    /* Clean serif or premium sans */
    letter-spacing: 1px;
    margin-top: 20px;
}

/* Responsive */
@media (max-width: 1024px) {
    .product-grid {
        flex-wrap: wrap;
        /* Allow wrap */
        justify-content: center;
    }
}

@media (max-width: 640px) {
    .product-grid {
        grid-template-columns: 1fr;
        /* 1x1 */
    }

    .our-products-section h2 {
        font-size: 2rem;
    }
}

.center-btn {
    margin-top: 40px;
}

/* Highlight Section */
.highlight-section {
    padding: 0;
    background-color: var(--color-primary);
    color: white;
    overflow: hidden;
}

.highlight-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.text-block {
    flex: 1;
    padding: 80px 40px 80px 0;
    min-width: 400px;
}

.text-block h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.text-block p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
    max-width: 600px;
}

.text-block .btn {
    background-color: white;
    color: var(--color-primary);
}

.text-block .btn:hover {
    background-color: var(--color-secondary);
}

.img-block {
    flex: 1;
    height: 500px;
    background: url('hero_background.png') no-repeat center center/cover;
    /* Re-use hero for now or generate another */
    min-width: 400px;
    clip-path: polygon(10% 0, 100% 0, 100% 100%, 0% 100%);
}

/* Contact Section */
.contact-section {
    background-image: url('Images/Welcome.png');
    background-size: cover;
    background-position: center;
    padding: 20px 0;
    /* Minimal vertical padding */
    color: #333;
    height: 8.5cm;
    /* Fixed height ~320px */
    box-sizing: border-box;
    display: flex;
    align-items: center;
    /* Vertically center content */
}

.contact-container {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    gap: 40px;
    /* Reduced gap */
    width: 100%;
    align-items: center;
    /* Center items */
}

/* Left Column */
.contact-info {
    flex: 1;
    text-align: left;
}

.contact-info h2 {
    font-family: var(--font-main);
    /* Match Premium Quality font */
    font-size: 2rem;
    /* Reduced from 3rem */
    color: #0d3b14;
    margin-bottom: 5px;
    font-weight: 700;
}

.contact-subtext {
    font-size: 0.9rem;
    /* Reduced from 1.1rem */
    color: #555;
    margin-bottom: 20px;
    /* Reduced from 40px */
}

.contact-details-list {
    margin-bottom: 20px;
    /* Reduced */
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    /* Reduced */
    font-size: 0.85rem;
    /* Reduced */
    color: #0d3b14;
    /* Updated to Dark Green */
}

.contact-item i {
    color: #0d3b14;
    font-size: 1rem;
    /* Reduced */
    width: 20px;
    text-align: center;
}

/* Right Column: Minimal Form */
.contact-form-wrapper {
    flex: 1;
}

.minimal-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
    /* Reduced gap between rows */
}

.form-row {
    display: flex;
    gap: 20px;
}

.form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.minimal-form label {
    font-size: 0.8rem;
    /* Reduced */
    color: #0d3b14;
    font-weight: 600;
    margin-bottom: 2px;
}

.minimal-form input,
.minimal-form textarea {
    border: none;
    border-bottom: 1px solid #0d3b14;
    background: transparent;
    padding: 5px 0;
    /* Compact padding */
    font-size: 0.9rem;
    /* Reduced */
    color: #333;
    outline: none;
    width: 100%;
    font-family: var(--font-main);
}

.minimal-form input:focus,
.minimal-form textarea:focus {
    border-bottom-width: 2px;
}

.submit-btn {
    background-color: #0d3b14;
    color: white;
    border: none;
    padding: 8px 30px;
    /* Compact padding */
    border-radius: 30px;
    font-size: 0.9rem;
    /* Reduced */
    font-weight: 600;
    align-self: flex-start;
    margin-top: 5px;
    cursor: pointer;
}

.submit-btn:hover {
    background-color: #1b5e20;
}

/* Mini Footer */
.mini-footer {
    height: 1.5cm;
    background-color: #0d3b14;
    /* Dark Green */
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0.8rem;
    font-family: var(--font-main);
    width: 100%;
}

.mini-footer p {
    margin: 0;
}

/* Responsive Overrides */
@media (max-width: 900px) {
    .highlight-content {
        flex-direction: column;
    }

    .img-block {
        width: 100%;
        height: 300px;
        clip-path: none;
    }

    .text-block {
        padding: 60px 20px;
        text-align: center;
    }

    .contact-container {
        flex-direction: column;
        gap: 40px;
    }

    .contact-info {
        text-align: center;
    }

    .contact-details-list {
        display: inline-block;
        text-align: left;
    }

    .certifications {
        justify-content: center;
    }

    .form-row {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: absolute;
        top: 90px;
        left: 0;
        width: 100%;
        background-color: #0d3b14;
        /* Match deep green */
        flex-direction: column;
        padding: 30px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        display: none;
    }

    .nav-menu.active {
        display: flex;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero-text-layer.background-text {
        font-size: 5rem;
        top: -40px;
    }

    .hero-text-layer.main-text {
        font-size: 3rem;
    }
}

/* About Us Page Styles */
.about-banner-section {
    width: 100%;
    height: 384px;
    /* Exact height */
    position: relative;
    background-image: url('Images/About us/About us banner.png');
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0;
}

.products-banner-section {
    width: 100%;
    height: 384px;
    /* Exact height match */
    position: relative;
    background-image: url('Images/Products/Banner.png');
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0;
    /* Matches About Us banner */
}

/* Common Hero Ribbon Overlay - Coffee Brown 60% */
.about-banner-section::before,
.products-banner-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(138, 107, 79, 0.6);
    /* #8A6B4F at 60% */
    z-index: 1;
}

/* Remove overlay specifically for Milestones page */
.milestones-banner::before {
    display: none;
}

.banner-heading {
    font-family: 'Playball', cursive;
    /* Matches Hero Main Text */
    font-size: 5rem;
    /* Large and visible */
    color: white;
    text-align: center;
    position: relative;
    z-index: 2;
    margin: 0;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* About Intro Section */
.about-intro-section {
    background-image: url('Images/Welcome.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 60px 0;
    /* Minimal vertical spacing */
    color: #0d3b14;
}

.about-intro-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 1.5cm;
    text-align: center;
}

.about-intro-text {
    font-family: var(--font-main);
    font-size: 1rem;
    line-height: 1.8;
    color: #0d3b14;
    margin: 0;
    text-align: justify;
    font-weight: 400;
}

/* Products Intro Section */
.products-intro-section {
    background-color: #0d3b14;
    /* Deep Forest Green */
    color: white;
    padding: 30px 0;
    /* Compact vertical padding */
    text-align: center;
}

.products-intro-container {
    max-width: 1000px;
    /* Controlled readable width */
    margin: 0 auto;
    padding: 0 1.5cm;
    /* Safe side padding */
}

.products-intro-text {
    font-family: var(--font-main);
    font-size: 1rem;
    /* Standard body size */
    line-height: 1.6;
    color: white;
    margin: 0;
    text-align: left;
}

.products-intro-text .bold-text {
    font-weight: 700;
    display: block;
    /* Ensure it sits nicely */
    margin-top: 24px;
    /* Slight separation for the bold line */
    text-align: center;
}

/* Product Strip Section */
.product-strip-section {
    background-image: url('Images/Welcome.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 0;
    width: 100%;
}

.product-strip-container {
    width: 100%;
    padding: 0 1.5cm;
    margin: 0;
}

.product-strip-grid {
    display: flex;
    justify-content: space-between;
    gap: 0;
    width: 100%;
    padding: 0;
}

/* Ensure tiles are equal and fill the row */
.product-strip-tile {
    width: 25%;
    height: 189px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    border-radius: 0;
}

/* Coffee Brown Overlay 60% opacity */
.product-strip-tile::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(138, 107, 79, 0.6);
    /* Light Coffee Brown 60% */
    z-index: 1;
}

/* Text styling match Home page */
.product-strip-tile h3 {
    position: relative;
    z-index: 2;
    color: white;
    font-size: 1.8rem;
    font-family: 'Playball', cursive;
    font-weight: 400;
    margin: 0;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

/* Responsive */
@media (max-width: 1024px) {
    .product-strip-tile {
        width: 50%;
    }

    .product-strip-grid {
        flex-wrap: wrap;
    }
}

@media (max-width: 640px) {
    .product-strip-tile {
        width: 100%;
    }
}

/* Fodder Welcome Section - Refined Balanced Layout */
.fodder-welcome-section {
    position: relative;
    min-height: 10cm;
    /* Changed from height to min-height as requested */
    height: auto;
    width: 100%;
    /* overflow: hidden; Removed to allow natural expansion */
    color: #0d3b14;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 20px;
    /* Reduced to ~0.5cm as requested */
    padding-bottom: 20px;
    /* Reduced to ~0.5cm as requested */
    background-image: url('Images/Welcome.png');
    /* Moved from ::before */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    /* No overlay, no filter */
}

/* Overlay removed */
.fodder-welcome-section::before {
    display: none;
}

.fodder-welcome-container {
    max-width: 1400px;
    /* Increased to align with benefits grid */
    width: 100%;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 20px;
    /* Aligned with benefits grid padding */
}

.fodder-welcome-text {
    font-family: var(--font-main);
    font-size: 1rem;
    /* Increased from 0.85rem to match Body Text */
    line-height: 1.6;
    /* Matched Body Text line-height */
    margin-bottom: 22px;
    text-align: center;
    font-weight: 500;
    width: 100%;
    margin-top: 0;
    max-width: 100%;
    /* Ensure it can span the full container */
}

.fodder-highlight-text {
    font-family: var(--font-main);
    font-size: 1rem;
    /* Matched Body Text size */
    font-weight: 600;
    margin-bottom: 28px;
    color: #0d3b14;
    text-align: center;
    margin-top: 0;
}

.fodder-circle-images {
    display: flex;
    justify-content: center;
    gap: 30px;
    padding-bottom: 0;
    /* Space between circles and emoji */
    margin-top: 0;
}

.circle-item {
    position: relative;
    width: 130px;
    /* Increased size by ~45% */
    height: 130px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.circle-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

/* Decor icon inside circle removed per requirement */

.fodder-emoji-container {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-top: 0;
}

.fodder-emoji {
    width: 45px;
    /* Medium-small size */
    height: auto;
    display: block;
}

@media (max-width: 768px) {
    .fodder-welcome-section {
        height: auto;
        /* Allow auto height on mobile */
        padding-bottom: 30px;
        min-height: 10cm;
    }

    .fodder-welcome-container {
        width: 90%;
    }

    .fodder-circle-images {
        flex-direction: row;
        gap: 15px;
    }
}

/* Fodder Benefits Slider Section */
.fodder-benefits-section {
    background-color: #0d3b14;
    /* Dark Green header tone */
    padding: 40px 0;
    /* Generous top/bottom padding */
    color: white;
    text-align: center;
    position: relative;
    /* Height constraint approximate 3-3.5cm visually handled by padding */
}

.benefits-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.benefits-heading {
    font-family: var(--font-main);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: white;
}

.benefits-slider-wrapper {
    position: relative;
    width: 100%;
    max-width: 800px;
    display: flex;
    align-items: center;
    justify-content: center;
    /* Center slider content */
    margin-bottom: 20px;
}

.benefits-slider {
    width: 80%;
    /* 70-80% max width */
    overflow: hidden;
    position: relative;
    height: 80px;
    /* Fixed height for text stability, adjust as needed */
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide {
    display: none;
    font-size: 1.1rem;
    line-height: 1.5;
    text-align: center;
    width: 100%;
    animation: fadeEffect 0.5s;
}

.slide.active {
    display: block;
}

/* Keyframes for fade effect */
@keyframes fadeEffect {
    from {
        opacity: 0.4;
    }

    to {
        opacity: 1;
    }
}

.slider-arrow {
    cursor: pointer;
    font-size: 1.5rem;
    color: white;
    padding: 10px;
    transition: transform 0.2s;
    user-select: none;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.prev-arrow {
    left: 0;
}

.next-arrow {
    right: 0;
}

.slider-arrow:hover {
    transform: translateY(-50%) scale(1.1);
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.dot {
    cursor: pointer;
    height: 10px;
    width: 10px;
    margin: 0 2px;
    background-color: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.3s ease;
}

.dot.active,
.dot:hover {
    background-color: white;
}

@media (max-width: 768px) {
    .benefits-slider {
        height: 120px;
        /* More height for mobile text wrap */
    }

    .benefits-heading {
        font-size: 1.2rem;
    }
}

/* Fodder Key Benefits Section */
.fodder-key-benefits-section {
    position: relative;
    padding: 80px 0;
    color: #0d3b14;
    background-image: url('Images/Welcome.png');
    /* Applied directly */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    /* no opacity/overlay */
}

/* Background overlay removed */
.fodder-key-benefits-section::before {
    display: none;
}

.key-benefits-container {
    position: relative;
    z-index: 2;
    /* Bring content above background overlay */
    max-width: 1400px;
    /* Wider container for 5 cards */
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.key-benefits-heading {
    font-family: var(--font-main);
    font-size: 2rem;
    font-weight: 700;
    color: #0d3b14;
    margin-bottom: 50px;
    /* Generous spacing */
}

.key-benefits-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    /* 5 equal columns */
    gap: 20px;
    width: 100%;
}

.benefit-card {
    border: 1px solid #0d3b14;
    /* Thin dark green outline */
    background-color: rgba(245, 245, 220, 0.4);
    /* Semi-transparent beige */
    border-radius: 12px;
    padding: 25px 15px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    /* Equal height */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.benefit-title {
    font-family: var(--font-main);
    font-size: 1.1rem;
    font-weight: 700;
    color: #0d3b14;
    margin-bottom: 15px;
    line-height: 1.3;
}

.benefit-text {
    font-family: var(--font-main);
    font-size: 0.9rem;
    line-height: 1.5;
    color: #333;
    font-weight: 400;
    margin: 0;
}

/* Responsive */
@media (max-width: 1200px) {
    .key-benefits-grid {
        grid-template-columns: repeat(3, 1fr);
        /* 3 cols on smaller desktop */
    }
}

@media (max-width: 768px) {
    .key-benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        /* 2 cols on tablet */
    }

    .key-benefits-heading {
        font-size: 1.5rem;
    }
}

@media (max-width: 500px) {

    /* Root Vegetables & Microgreens Page Style */
    .root-vegetables-banner,
    .microgreens-banner {
        background-image: url('Images/Products/fodders/Vegtables/Rootvegetableribbon.png') !important;
        background-size: cover;
        background-position: center;
    }
}

/* Root Vegetables Layout Styles */
.root-veg-section {
    background-image: url('Images/Welcome.png');
    background-size: cover;
    background-position: center;
    padding: 80px 20px;
    /* Generous vertical padding */
}

.root-veg-container {
    max-width: 1400px;
    /* Matched Fodder page width */
    margin: 0 auto;
}

.root-veg-intro {
    text-align: left;
    /* Changed from center to Left */
    max-width: 100%;
    /* Spans full width like Fodder */
    padding: 0 20px;
    /* Ensure safe padding */
    margin: 0 auto 40px auto;
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    line-height: 1.7;
    color: #333;
}

.root-veg-closing {
    text-align: center;
    max-width: 100%;
    padding: 0 20px;
    margin: 0 auto 40px auto;
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    line-height: 1.7;
    color: #333;
}

/* Divider styles */
.root-veg-divider {
    width: 80px;
    height: 3px;
    background-color: #2E7D32;
    /* Deep green */
    margin: 0 auto 80px auto;
    border-radius: 2px;
}

.root-veg-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* Spans full width to match Fodder edges */
    gap: 80px;
    /* Adjusted gap since space-between handles distribution */
    margin-bottom: 60px;
}

.root-veg-row:last-child {
    margin-bottom: 0;
}

.root-veg-row.reverse {
    flex-direction: row-reverse;
}

.root-veg-img-wrapper {
    flex: 0 0 150px;
    /* Slightly larger than Fodder (130px) for balance */
    height: 150px;
    width: 150px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid white;
    /* Matches Fodder border thickness */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    /* Matches Fodder shadow */
    display: flex;
    justify-content: center;
    align-items: center;
}

.root-veg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.root-veg-text {
    flex: 1;
    max-width: none;
    /* Allow text to fill available space to edge */
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    line-height: 1.8;
    color: #333;
}

@media (max-width: 768px) {
    .root-veg-section {
        padding: 50px 20px;
    }

    .root-veg-row,
    .root-veg-row.reverse {
        flex-direction: column;
        text-align: center;
        gap: 40px;
        margin-bottom: 60px;
    }

    .root-veg-img-wrapper {
        width: 150px;
        /* Match desktop size or fit mobile */
        height: 150px;
        margin: 0 auto;
    }
}

/* Shop Welcome Section */
.shop-welcome-section {
    position: relative;
    min-height: auto;
    width: 100%;
    color: #0d3b14;
    /* Dark Green */
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 60px 0;
    /* Clean vertical padding */
    background-image: url('Images/Welcome.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    /* No overlay, no tint */
}

/* Ensure no overlay */
.shop-welcome-section::before {
    display: none;
}

.shop-welcome-container {
    max-width: 1400px;
    /* Same as Fodder */
    width: 100%;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 20px;
}

.shop-welcome-heading {
    font-family: var(--font-main);
    font-size: 1.75rem;
    /* Same as Welcome Heading */
    font-weight: 700;
    color: #0d3b14;
    margin-bottom: 24px;
    text-align: center;
}

.shop-welcome-text {
    font-family: var(--font-main);
    font-size: 1rem;
    /* Same as Fodder */
    line-height: 1.6;
    color: #0d3b14;
    margin-bottom: 0;
    text-align: center;
    max-width: 1000px;
    /* Controlled width for readability */
}

/* Shop Why Choose Section (Values) */
.shop-values-section {
    background-color: #0d3b14;
    /* Deep Dark Green */
    padding: 60px 0;
    color: white;
}

.shop-values-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.shop-values-heading {
    font-family: var(--font-main);
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 40px;
    color: white;
}

.shop-values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    text-align: center;
}

.shop-value-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.shop-value-title {
    font-family: var(--font-main);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: white;
}

.shop-value-desc {
    font-family: var(--font-main);
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

/* How to Shop Section */
.shop-steps-section {
    background-image: url('Images/Welcome.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 80px 0;
    position: relative;
}

/* Ensure no overlay */
.shop-steps-section::before {
    display: none;
}

.shop-steps-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.shop-steps-heading {
    font-family: var(--font-main);
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 50px;
    color: #0d3b14;
    /* Dark Green heading on light BG */
}

.shop-steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.shop-step-card {
    background-color: #0d3b14;
    /* Deep Dark Green */
    padding: 50px 30px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    height: 100%;
    transition: transform 0.3s ease;
}

.shop-step-card:hover {
    transform: translateY(-5px);
}

.shop-step-number {
    font-family: var(--font-main);
    font-size: 3rem;
    font-weight: 700;
    color: #D4AF37;
    /* Elegant Gold */
    line-height: 1;
    margin-bottom: 25px;
}

.shop-step-title {
    font-family: var(--font-main);
    font-size: 1.4rem;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
}

.shop-step-desc {
    font-family: var(--font-main);
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.shop-cta-wrapper {
    margin-top: 20px;
    display: flex;
    justify-content: center;
}

.shop-cta-btn {
    background-color: #0d3b14;
    color: white;
    padding: 15px 40px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.shop-cta-btn:hover {
    background-color: transparent;
    border-color: #0d3b14;
    color: #0d3b14;
}

@media (max-width: 992px) {

    .shop-steps-grid,
    .shop-values-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .shop-step-card {
        max-width: 500px;
        margin: 0 auto;
    }
}