html {
    scroll-behavior: smooth;
}

/* --- COLORS & FONTS --- */
:root {
    --primary: #82d23f; /* Your brand green */
    --dark: #1a1a1a;
    --light: #fdfdfd;
    --shadow: 0 10px 30px rgba(0,0,0,0.08);
}

* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Poppins', sans-serif; }
body { background: var(--light); color: var(--dark); line-height: 1.6; }

/* --- LOGO STYLING (Montserrat to match logo image) --- */
.brand-name {
    font-family: 'Montserrat', sans-serif;
    font-weight: 300; /* Light weight as seen in logo */
    font-size: 1.3rem;
    letter-spacing: 4px;
    color: #82d23f;
    margin-left: 10px;
}

.logo-container { display: flex; align-items: center; }
.brand-logo { height: 80px; width: auto; }

/* --- NAVIGATION --- */
.glass-nav {
    position: fixed; top: 0; width: 100%;
    background: rgba(255, 255, 255, 0.5); backdrop-filter: blur(6px);
    padding: 15px 5%; z-index: 1000; box-shadow: var(--shadow);
}
nav { display: flex; justify-content: space-between; align-items: center; max-width: 1200px; margin: 0 auto; }
.nav-links { display: flex; list-style: none; gap: 20px; align-items: center; }
.nav-links a { text-decoration: none; color: var(--dark); font-weight: 500; font-size: 1.3rem; transition: 0.3s; }
.nav-links a:hover { color: var(--primary); }
.nav-btn { background: var(--primary); color: white !important; padding: 8px 18px; border-radius: 5px; }

/* --- HERO SECTION --- */
.hero { height: 100vh; display: flex; align-items: center; padding: 0 10%; gap: 50px; }
.hero-content { flex: 1; }
.hero h1 { font-size: 3.8rem; line-height: 1.1; margin-bottom: 20px; font-weight: 800; }

.hero-content p {
    /* Making it larger to match the bold Hero heading */
    font-size: 1.2rem; 
    
    /* Extra line height prevents the text from looking crowded */
    line-height: 1.7; 
    
    /* A slightly lighter color than black makes it look modern */
    color: #555; 
    
    /* Space between the text and the buttons below it */
    margin-bottom: 25px; 
    
    /* Using Montserrat (Light) if you want it to match your logo style */
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    
    /* Limits the width so the text doesn't stretch too far across the screen */
    max-width: 600px; 
}

/* For Mobile: Shrink it slightly so it doesn't take up the whole screen */
@media (max-width: 768px) {
    .hero-content p {
        font-size: 1.1rem;
        margin-bottom: 25px;
    }
}

.highlight { color: var(--primary); }
.hero-visual { flex: 1; display: flex; justify-content: center; }

.hero-video-file {
    width: 100%;
    height: 100%;
    object-fit: cover; /* This ensures the video fills the tall container perfectly */
    border-radius: 20px; /* Matches the rounded corners of your site design */
}

/* Optional: Add a slight shadow to make the video "pop" */
.hero-img {
    box-shadow: 0 20px 50px rgba(130, 210, 63, 0.2);
    border: none; /* Removing the dashed border now that we have real content */
}

/* --- IMAGE PLACEHOLDERS --- */
.img-placeholder {
    background: #e9e9e9;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #ddd;
    width: 100%;
}
.hero-img { height: 550px; }
.img-placeholder img { width: 100%; height: 100%; object-fit: cover; }

/* --- PRODUCT DETAILS --- */

.details-text h1 {
    color: #82d23f; 
    font-size: 3.1rem; 
    margin-bottom: 0px;
    font-weight: 600; 
}
.details-text h2 {
    color: #333; 
    font-size: 2.5rem; 
    margin-bottom: 0px;
    font-weight: 600; 
}


.details-text p {
    /* Standard is usually 16px. Let's bump it up to 1.2rem (approx 19px) */
    font-size: 1.2rem; 
    
    /* This adds breathing room between lines of text */
    line-height: 1.8; 
    
    /* A soft dark grey is often easier to read than pure black */
    color: #555; 
    
    /* Adds space between this paragraph and the next element */
    margin-bottom: 25px; 
    font-weight: 300; /* Keeps it clean and modern like the logo font */

    /* This automatically scales between 1rem and 1.25rem based on screen width */
    font-size: clamp(1rem, 2vw, 1.25rem); 
}


.details-section {
    padding: 80px 10%;
    background: white;
    overflow: hidden; /* This prevents anything from physically going "out of bounds" */
}

.details-grid {
    display: grid;
    /* This gives the text 1.2 parts of space and the video 1 part, keeping it balanced */
    grid-template-columns: 1.2fr 1fr; 
    gap: 50px;
    align-items: center; /* This keeps the text centered vertically next to the video */
}

.img-placeholder {
    background: #e9e9e9;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    /* This stops the video from becoming infinitely tall and breaking the layout */
    max-height: 500px; 
    box-shadow: var(--shadow);
}

.img-placeholder video, 
.img-placeholder img {
    width: 100%;
    height: 100%;
    /* 'cover' ensures it fills the box nicely, 'contain' ensures you see the whole thing */
    object-fit: cover; 
}

/* Responsive fix: If the screen is small (like a phone), stack them vertically */
@media (max-width: 900px) {
    .details-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .img-placeholder {
        max-height: 400px; /* Shorter on mobile so users don't have to scroll forever */
    }
}
/* --- HOW TO USE STEPS --- */
.how-to-use { padding: 20px 10%; background: #fafafa; }
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-top: 50px; }
.step-card { background: white; padding: 40px; border-radius: 20px; box-shadow: var(--shadow); position: relative; }
.step-num { position: absolute; top: -20px; left: 30px; background: var(--primary); color: white; width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 800; }
 
.instructions-section {
    padding: 20px 20px;
    background: linear-gradient(to bottom, #ffffff, #f4f9f0);
}

.section-header {
    text-align: center;
    margin-bottom: 20px;
}

.sub-tag {
    color: #82d23f;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: bold;
    font-size: 0.9rem;
}

.divider {
    width: 60px;
    height: 4px;
    background: #82d23f;
    margin: 15px auto;
    border-radius: 2px;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.step-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    padding: 40px 30px;
    border-radius: 24px;
    border: 1px solid rgba(0,0,0,0.05);
    box-shadow: 0 15px 35px rgba(0,0,0,0.03);
    position: relative;
    transition: all 0.4s ease;
}

.step-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(130, 210, 63, 0.15);
    border-color: #82d23f;
}

.step-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: rgba(130, 210, 63, 0.2);
    position: absolute;
    top: 20px;
    right: 30px;
}

.step-card h3 {
    margin-bottom: 20px;
    font-size: 1.25rem;
    color: #1a1a1a;
}

.step-card .am {
    font-family: 'Noto Sans Ethiopic', sans-serif;
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 12px;
}

.step-card .en {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
}

/* Technical highlight for pH and App */
.tech-card {
    background: #ffffff;
    border-top: 6px solid #82d23f;
}

/* Troubleshooting Style */
.troubleshoot-container {
    margin-top: 80px;
    background: #1a1a1a;
    color: white;
    padding: 40px;
    border-radius: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.troubleshoot-header h4 {
    font-size: 1.5rem;
    margin: 10px 0;
}

/* Mobile Responsiveness */
@media (max-width: 992px) {
    .steps-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 650px) {
    .steps-grid { grid-template-columns: 1fr; }
}

/* --- JOURNEY --- */
.journey-section { padding: 100px 10%; background: white; }
.comparison-container { display: flex; justify-content: center; gap: 40px; margin-top: 50px; }
.growth-card { background: var(--light); padding: 30px; border-radius: 20px; width: 350px; text-align: center; }
.growth-card.featured { border: 2px solid var(--primary); }
.journey-img { height: 250px; margin-bottom: 20px; }
.badge { background: var(--dark); color: white; padding: 4px 12px; border-radius: 20px; font-size: 0.7rem; display: inline-block; margin-bottom: 15px; }
.scroll-container {
    display: flex;
    overflow-x: auto;
    gap: 25px;
    padding: 20px 50px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
}
.scroll-container::-webkit-scrollbar { display: none; }

.scroll-item {
    flex: 0 0 300px;
    scroll-snap-align: center;
    background: white;
    border-radius: 20px;
    padding: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
    cursor: zoom-in;
}
.scroll-item:hover { transform: translateY(-10px); }

.scroll-item img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
}

.day-label {
    background: #82d23f;
    color: white;
    padding: 5px 12px;
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: bold;
    display: inline-block;
    margin-bottom: 10px;
}

.tech-card { border: 2px dashed #82d23f; }
.tech-label { background: #1a1a1a !important; }

/* Lightbox UI */
.lightbox {
    display: none;
    position: fixed;
    z-index: 1000;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.95);
    align-items: center; justify-content: center;
}

.lightbox-wrapper {
    max-width: 500px;
    width: 90%;
    animation: fadeIn 0.4s ease;
}

.lightbox-content {
    width: 100%;
    border-radius: 15px 15px 0 0;
}

.caption-box {
    background: white;
    padding: 25px;
    border-radius: 0 0 15px 15px;
    text-align: center;
}

.caption-box strong { color: #82d23f; font-size: 1.2rem; display: block; margin-bottom: 8px; }

.close-btn {
    position: absolute;
    top: 30px; right: 30px;
    color: white; font-size: 40px; cursor: pointer;
}

@keyframes fadeIn { from { opacity: 0; transform: scale(0.9); } to { opacity: 1; transform: scale(1); } }

/* --- CALCULATOR --- */
.calc-section { padding: 100px 10%; display: flex; justify-content: center; }
.calc-card { background: white; padding: 50px; border-radius: 30px; width: 100%; max-width: 500px; box-shadow: var(--shadow); text-align: center; }
select { width: 100%; padding: 15px; margin: 25px 0; border: 1px solid #ddd; border-radius: 10px; font-size: 1rem; }
.calc-results { background: #f0f7ea; padding: 25px; border-radius: 15px; text-align: left; }
.tip { font-size: 0.8rem; color: #666; font-style: italic; margin-top: 15px; border-top: 1px solid #ddd; padding-top: 10px; }

/* --- BUTTONS & ANIMATIONS --- */
.btn-primary { background: var(--primary); color: white; padding: 14px 30px; border-radius: 5px; text-decoration: none; font-weight: 600; margin-right: 15px; display: inline-block; }
.btn-secondary { border: 2px solid var(--primary); color: var(--primary); padding: 12px 30px; border-radius: 5px; text-decoration: none; font-weight: 600; display: inline-block; }

.reveal { opacity: 0; transform: translateY(40px); transition: 1s ease-out; }
.show { opacity: 1; transform: translateY(0); }
.center-text { text-align: center; }

footer { padding: 40px; background: var(--dark); color: #888; text-align: center; font-size: 0.8rem; }

@media (max-width: 900px) {
    .hero, .details-grid, .steps-grid, .comparison-container { grid-template-columns: 1fr; flex-direction: column; text-align: center; }
    .hero h1 { font-size: 2.5rem; }
    .hero-img { height: 400px; }
}


/* style.css - Paste this at the very bottom */

/* This targets the container holding the buttons */
.hero-content div:last-child {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}


/* This targets any link that looks like a button in your hero section
For the button size adjustment */
.hero-content a {
    display: inline-block;
    padding: 18px 40px; /* This makes the buttons bigger */
    font-size: 1.2rem;   /* Bigger text */
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: transform 0.2s ease;
}

/* The first button (Green) */
.hero-content a:first-child {
    background-color: #82d23f;
    color: white;
    box-shadow: 0 10px 20px rgba(130, 210, 63, 0.3);
}

/* The second button (Outline) */
.hero-content a:last-child {
    border: 2px solid #82d23f;
    color: #333;
}

/* Cool hover effect for both */
.hero-content a:hover {
    transform: scale(1.1); /* Makes it pop out when you hover */
}

@media (max-width: 768px) {
    .hero-content div:last-child {
        flex-direction: column; /* Stacks the buttons on top of each other */
        align-items: center;
    }
    
    .hero-content a {
        width: 80%; /* Makes them wider on phone screens */
        text-align: center;
    }
}

.btn-link {
    display: inline-block;
    margin-top: 20px;
    color: #82d23f; /* Your brand green */
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    border-bottom: 2px solid #82d23f;
    transition: 0.3s;
}

.btn-link:hover {
    color: #333;
    border-color: #333;
}

/* Comparison Page Specific Styles */
.comparison-body {
    background-color: #fcfcfc;
    color: #2d3436;
}

.comp-header {
    text-align: center;
    padding: 80px 20px;
    background: linear-gradient(rgba(255,255,255,0.9), rgba(255,255,255,0.9)), url('your-image-path.jpg');
    background-size: cover;
}

.comp-header h1 span {
    color: #82d23f;
    font-size: 1.5rem;
    display: block;
    margin-top: 10px;
}

.stats-bar {
    display: flex;
    justify-content: space-around;
    background: #1a1a1a;
    color: white;
    padding: 40px;
    text-align: center;
}

.stat-item h2 {
    color: #82d23f;
    font-size: 3rem;
    margin-bottom: 5px;
}

.detailed-content {
    max-width: 1100px;
    margin: 0 auto;
    padding: 60px 20px;
}

.detail-row {
    margin-bottom: 80px;
    padding: 40px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.text-block h3 {
    font-size: 1.8rem;
    color: #82d23f;
    margin-bottom: 25px;
    border-bottom: 2px solid #eee;
    padding-bottom: 10px;
}

.text-block p {
    margin-bottom: 20px;
    line-height: 1.8;
}

/* Premium Table Styles */
.premium-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 10px;
}

.premium-table th {
    padding: 20px;
    text-align: left;
    background: #f8f9fa;
}

.premium-table td {
    padding: 20px;
    background: white;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.green-head {
    background: #82d23f !important;
    color: white;
    border-radius: 10px 10px 0 0;
}

.highlight-column {
    border: 2px solid #82d23f !important;
    font-weight: bold;
}
.floating-call {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #82d23f;
    width: 60px;
    height: 60px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    z-index: 1001;
    transition: all 0.3s ease;
    text-decoration: none;
}

.floating-call:hover {
    width: 150px; /* Expands on hover */
}

.call-text {
    color: white;
    font-weight: bold;
    display: none;
    margin-right: 10px;
}

.floating-call:hover .call-text {
    display: inline;
}

/* For small screens, keep it simple */
@media (max-width: 768px) {
    .floating-call:hover { width: 60px; }
    .call-text { display: none !important; }
}

/* GLOBAL MOBILE FIXES */

/* 1. Prevent horizontal scrolling on mobile */
html, body {
    overflow-x: hidden;
    width: 100%;
    margin: 0;
    padding: 0;
}

/* 2. Make all images responsive so they don't "poke out" of the screen */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* 3. Fix the Navigation for Mobile */
.shop-nav, nav {
    flex-wrap: wrap; /* Allows menu items to drop to the next line if they don't fit */
    padding: 15px 5% !important;
}

/* 4. Responsive Logo - Scales down on phones */
.logo-container img, .logo img {
    height: 60px !important; /* Smaller for phones */
    width: auto;
}

@media (min-width: 768px) {
    .logo-container img, .logo img {
        height: 100px !important; /* Back to full size for MacBook/Desktop */
    }
}

/* 5. Fix Text Overlapping on Images (like your "Clean. Efficient. Vertical." section) */
.hero-text, .overlay-text {
    font-size: 1.8rem !important; /* Shrinks large titles so they fit on one screen */
    padding: 20px;
}
/* Add this to your style.css */
@media (max-width: 600px) {
    .system-section, .hero-section {
        display: flex;
        flex-direction: column; /* Stacks the image and text on top of each other */
        text-align: center;
    }
}

/* --- MOBILE-ONLY NAVIGATION REPAIR --- */
@media (max-width: 768px) {
    /* 1. Force the navigation bar to be taller so it doesn't overlap content */
    nav, .shop-nav {
        height: auto !important;
        min-height: 100px;
        flex-direction: column !important; /* Stacks logo and links vertically */
        padding: 15px 0 !important;
        gap: 10px;
    }

    /* 2. Shrink the logo so it doesn't take up the whole screen */
    .logo-container img, .logo img {
        height: 60px !important; 
        width: auto;
    }

    /* 3. Give the links (The System, How to Use, etc.) their own row */
    .nav-links, .shop-nav div {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
        width: 100%;
    }

    /* 4. Push the main website content down so it doesn't hide behind the nav */
    body {
        padding-top: 120px !important; 
    }

    /* 5. Fix the "Clean. Efficient. Vertical." text size for mobile */
    .hero-text, h1 {
        font-size: 1.8rem !important; 
        line-height: 1.2;
        text-align: center;
    }
}

/* --- FIXING THE CRAMPED COMPARISON TEXT --- */
.comparison-container, .black-bg-text {
    background-color: rgba(0, 0, 0, 0.85) !important; /* Slightly softer than pure black */
    color: white !important;
    
    /* Add the missing space here */
    padding: 20px 25px !important; 
    margin: 20px auto !important;
    
    /* Rounded corners to match your plant tower design */
    border-radius: 15px !important;
    
    /* Center the text and make it readable */
    text-align: center;
    line-height: 1.6;
    max-width: 90%; /* Keeps it from touching the edges of the phone */
    
    /* Subtle shadow to give it depth */
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

/* Fix for the specific Comparison Heading */
.comparison-container h2, .comparison-container h3 {
    margin-bottom: 15px;
    color: #82d23f; /* Using your brand green for the title */
    font-size: 1.4rem;
}


/* --- MOBILE-ONLY OVERLAP REPAIR --- */
@media screen and (max-width: 768px) {
    /* 1. Push the main content down so it's not hidden behind the nav */
    /* This fixes the overlapping on your video and first title */
    body {
        padding-top: 140px !important; 
    }

    /* 2. Fix the Navigation Bar specifically for the Ershaye Layout */
    nav, .shop-nav {
        position: fixed !important;
        top: 0;
        left: 0;
        width: 100%;
        height: auto !important;
        background: rgba(255, 255, 255, 0.98) !important; /* Slight transparency for a premium feel */
        backdrop-filter: blur(10px);
        display: flex !important;
        flex-direction: column !important; /* Logo on top, links below */
        padding: 10px 0 !important;
        z-index: 10000;
        box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    }

    /* 3. Scale the logo so it leaves room for text */
    .logo img, .logo-container img {
        height: 50px !important;
        margin-bottom: 5px;
    }

    /* 4. Organize the Links (The System, How to Use, etc.) */
    /* This prevents them from overlapping each other */
    .nav-links, .nav-menu, nav div {
        display: flex !important;
        flex-wrap: wrap !important;
        justify-content: center !important;
        gap: 8px !important;
        width: 95%;
    }

    /* 5. Shrink the fonts so they fit on one line or wrap neatly */
    nav a, .nav-links a {
        font-size: 12px !important;
        padding: 4px 8px !important;
        background: #f4f4f4;
        border-radius: 4px;
        color: #333 !important;
    }

    /* 6. Fix the "Go to Shop" Button in the Mobile Nav */
    .nav-button, .shop-link {
        background: #82d23f !important;
        color: white !important;
        font-weight: bold;
    }
}
/* HAMBURGER STYLES */
.hamburger {
    display: none; /* Hidden on Desktop */
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    z-index: 1001;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: #333;
    transition: 0.3s;
}

/* MOBILE VIEW (Phone) */
@media screen and (max-width: 768px) {
    .hamburger { display: flex; }

    .nav-links {
        position: fixed;
        right: -100%; /* Hidden off-screen */
        top: 0;
        flex-direction: column;
        background: rgba(255, 255, 255, 0.98);
        width: 70%;
        height: 100vh;
        padding-top: 100px;
        transition: 0.4s;
        box-shadow: -5px 0 15px rgba(0,0,0,0.1);
        z-index: 1000;
    }

    .nav-links.active {
        right: 0; /* Slide in */
    }

    /* Animation for the Hamburger to X */
    .hamburger.active .bar:nth-child(2) { opacity: 0; }
    .hamburger.active .bar:nth-child(1) { transform: translateY(8px) rotate(45deg); }
    .hamburger.active .bar:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

    /* Fix the Overlap Issue */
    .hero {
        padding-top: 20px !important;
    }
}

/* Shop Button Style inside Nav */
.shop-link-btn {
    background: #82d23f;
    color: white !important;
    padding: 8px 15px;
    border-radius: 5px;
    font-weight: bold;
}

/* --- FIX FOR TEXT OVERLAPPING IMAGE --- */
@media screen and (max-width: 768px) {
    
    /* 1. Force the container to stack items vertically */
    .hero, .hero-content, .hero-visual {
        display: flex !important;
        flex-direction: column !important;
        height: auto !important;
        align-items: center !important;
    }

    /* 2. Stop the text from floating over the image */
    .hero-text, .reveal, h1.reveal {
        position: relative !important; /* This pulls it out of "float" mode */
        top: 0 !important;
        left: 0 !important;
        transform: none !important;
        margin-bottom: 20px !important;
        text-align: center !important;
        width: 100% !important;
    }

    /* 3. Adjust the image/video container */
    .hero-visual, .img-placeholder, .hero-img {
        position: relative !important;
        width: 100% !important;
        margin-top: 10px !important;
    }

    /* 4. Shrink the text size so it doesn't take up the whole screen */
    .hero h1 {
        font-size: 1.8rem !important;
        padding: 0 10px !important;
    }
}

/* --- COMPARISON PAGE "BLACK BOX" GRID FIX --- */
@media screen and (max-width: 768px) {
    /* 1. Target the main container - change it from a wide 'bar' to a neat 'grid' */
    .stats-bar {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important; /* 2 clean columns per row */
        gap: 25px 15px !important; /* Internal spacing between stats */
        padding: 40px 20px !important; /* Safety buffer around text */
        background-color: #1a1a1a !important; /* Dark grey for better readability */
        border-radius: 20px !important;
        width: 90% !important;
        margin: 20px auto !important;
    }

    /* 2. Style the new "Stat Cards" */
    .stat-card {
        display: flex !important;
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 0 !important;
        margin: 0 !important;
    }

    /* Big Green Stats Numbers (90%, 3x, etc.) */
    .stat-card h2 {
        font-size: 2.2rem !important; /* Large, bold stats */
        color: #82d23f !important; /* Ershaye Green */
        margin-bottom: 5px !important;
    }

    /* Style the labels (Less Water, Organic, etc.) */
    .stat-card p {
        font-size: 0.9rem !important;
        color: white !important;
        line-height: 1.3 !important;
        white-space: normal !important; /* Allows Amharic text to wrap if too long */
    }
}

@media screen and (max-width: 768px) {
    .hamburger {
        background: #f4f4f4;
        padding: 10px;
        border-radius: 8px;
        display: flex !important;
        flex-direction: column;
        gap: 4px;
    }

    .bar {
        width: 22px;
        height: 2px;
        background: #333;
        border-radius: 2px;
    }
}

@media screen and (max-width: 768px) {


    /* Align Logo and Menu on one horizontal line */
    nav, .nav-container {
        display: flex !important;
        flex-direction: row !important; 
        justify-content: space-between !important; 
        align-items: center !important;
        width: 100% !important;
        padding: 10px 20px !important;
    }

    /* Keep the logo and 'እርሻዬ' together */
    .logo-container {
        display: flex !important;
        align-items: center !important;
        gap: 10px !important;
        margin: 0 !important;
    }

    /* Shrink logo slightly to fit better on mobile */
    .brand-logo {
        height: 35px !important;
    }
    /* Target the 'Go to Shop' link specifically */
    .nav-links a[href="shop.html"] {
        background-color: #82d23f !important; /* Your brand green */
        color: white !important;
        padding: 12px 24px !important;
        border-radius: 50px !important; /* Rounded pill shape looks more clickable */
        font-weight: bold !important;
        display: inline-block;
        animation: pulse-green 2s infinite; /* The heartbeat effect */
        box-shadow: 0 0 0 0 rgba(130, 210, 63, 0.7);
    }

    @keyframes pulse-green {
        0% {
            transform: scale(0.95);
            box-shadow: 0 0 0 0 rgba(130, 210, 63, 0.7);
        }
        70% {
            transform: scale(1);
            box-shadow: 0 0 0 10px rgba(130, 210, 63, 0);
        }
        100% {
            transform: scale(0.95);
            box-shadow: 0 0 0 0 rgba(130, 210, 63, 0);
        }
    }
    /* Align Logo, Title, and Hamburger on one line */
.nav-container, nav {
    display: flex !important;
    flex-direction: row !important; /* Forces side-by-side layout */
    justify-content: space-between !important; /* Puts logo on left, menu on right */
    align-items: center !important;
    padding: 10px 15px !important;
    width: 100% !important;
}

/* Ensure the logo container behaves as a single unit */
.logo-container {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important; /* Space between the leaf icon and 'እርሻዬ' */
}

/* Fix the Hamburger Menu color and size */
.hamburger {
    display: flex !important;
    flex-direction: column;
    gap: 5px;
    background: transparent !important;
    border: none;
    padding: 5px;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: #333 !important; /* Change this to #82d23f if you want it green */
    border-radius: 2px;
}

}

@media screen and (max-width: 768px) {
    .nav-links a[href="shop.html"] {
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2) !important;
        border: 2px solid rgba(255, 255, 255, 0.3); /* Subtle inner border for a premium feel */
    }
}

@media screen and (max-width: 768px) {
    /* Force the Go to Shop button to be Green and stand out */
    .nav-links a[href="shop.html"], 
    .nav-links a.shop-btn {
        background-color: #82d23f !important; /* Ershaye Green */
        color: white !important;
        padding: 12px 20px !important;
        border-radius: 50px !important; /* Premium pill shape */
        font-weight: bold !important;
        display: inline-block !important;
        box-shadow: 0 4px 10px rgba(130, 210, 63, 0.3) !important;
    }
}

@media screen and (max-width: 768px) {
    /* Targets the specific class from your index.html */
    .nav-links li a.shop-link-btn {
        background-color: #82d23f !important; /* Ershaye Green */
        color: white !important;
        padding: 12px 20px !important;
        border-radius: 50px !important;
        font-weight: bold !important;
        display: inline-block !important;
        text-align: center;
        margin-bottom: 10px;
    }
}
