html,
body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

body {
    font-family: 'Montserrat', Arial, sans-serif;
    margin: 0;
    background: #f8f8f8;
    color: #222;
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 300;
    line-height: 1.3;
    color: #222;
    background: #f8f8f8;
    overflow-x: hidden;
    overflow-y: auto;
    position: relative;
}

    body::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: radial-gradient(circle at 20% 80%, rgba(46, 125, 50, 0.05) 0%, transparent 50%), radial-gradient(circle at 80% 20%, rgba(232, 245, 233, 0.08) 0%, transparent 50%), radial-gradient(circle at 40% 40%, rgba(46, 125, 50, 0.03) 0%, transparent 50%);
        pointer-events: none;
        z-index: -1;
    }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: #fff;
    box-shadow: 0 2px 8px rgba(46,125,50,0.07);
    color: #2e7d32;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 4.5rem;
    font-weight: 700;
    font-family: 'Montserrat', Arial, sans-serif;
    color: #2e7d32;
    letter-spacing: -0.5px;
    text-align: left;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

    .logo img {
        height: 122px;
        width: auto;
        max-width: 200px;
    }

.nav-links {
    display: flex;
    list-style: none;
    gap: 3rem;
}

    .nav-links a {
        color: #2e7d32;
        text-decoration: none;
        transition: all 0.3s ease;
        font-weight: 600;
        font-size: 0.95rem;
        position: relative;
    }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: #2e7d32;
            transition: width 0.3s ease;
        }

        .nav-links a:hover {
            color: #1b5e20;
            transform: translateY(-2px);
        }

            .nav-links a:hover::after {
                width: 100%;
            }

/* Hero Section */
.hero {
    background: linear-gradient(120deg, #e8f5e9 0%, #fff 100%);
    color: #222;
    padding: 120px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(46,125,50,0.07);
}

    .hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: radial-gradient(circle at 30% 20%, rgba(46, 125, 50, 0.05) 0%, transparent 50%), radial-gradient(circle at 70% 80%, rgba(232, 245, 233, 0.08) 0%, transparent 50%);
    }

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 2.2rem;
    margin-bottom: 1.2rem;
    font-family: 'Playfair Display', serif;
    color: #2e7d32;
    font-weight: 600;
    letter-spacing: -0.5px;
    line-height: 1.1;
}

.hero p {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    color: #444;
    line-height: 1.6;
    font-weight: 400;
}

.cta-button {
    display: inline-block;
    background: #2e7d32;
    color: white;
    padding: 18px 50px;
    text-decoration: none;
    border-radius: 24px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(46,125,50,0.08);
    font-size: 1.1rem;
    position: relative;
    overflow: hidden;
}

    .cta-button::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
        transition: left 0.5s;
    }

    .cta-button:hover::before {
        left: 100%;
    }

    .cta-button:hover {
        background: #1b5e20;
        transform: translateY(-2px);
    }

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 3rem;
}

.cta-secondary {
    background: #fff;
    color: #2e7d32;
    padding: 18px 50px;
    text-decoration: none;
    border-radius: 24px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 1px solid #2e7d32;
    font-size: 1.1rem;
}

    .cta-secondary:hover {
        background: #2e7d32;
        color: #fff;
        transform: translateY(-2px);
    }

/* Supply Chain Scaling */
.supply-chain-scaling {
    padding: 60px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.scaling-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.scaling-card {
    background: linear-gradient(135deg, #fff 0%, #f8fafc 100%);
    padding: 1.8rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(46,125,50,0.08), 0 2px 4px rgba(46,125,50,0.04);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 2px solid #c8e6c9;
    transform: translateY(0);
}

    .scaling-card:hover {
        transform: translateY(-3px) scale(1.02);
        box-shadow: 0 8px 24px rgba(46,125,50,0.15), 0 4px 8px rgba(46,125,50,0.08);
        border-color: #2e7d32;
    }

.scaling-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.2rem;
    background: #2e7d32;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 3px 10px rgba(46,125,50,0.12);
}

/* Product Categories */
.categories {
    padding: 60px 0;
    background: linear-gradient(120deg, #fff8f0 0%, #fef7ed 50%, #fff 100%);
    color: #222;
    position: relative;
    overflow: hidden;
}

    .categories::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: radial-gradient(circle at 20% 80%, rgba(255, 152, 0, 0.03) 0%, transparent 50%), radial-gradient(circle at 80% 20%, rgba(46, 125, 50, 0.02) 0%, transparent 50%);
        pointer-events: none;
    }

.section-title {
    text-align: center;
    font-size: 2.1rem;
    margin-bottom: 1.2rem;
    font-family: 'Playfair Display', serif;
    color: #2e7d32;
    font-weight: 600;
    letter-spacing: -0.3px;
    line-height: 1.2;
}

.section-subtitle {
    text-align: center;
    color: #444;
    margin-bottom: 3rem;
    font-size: 1.1rem;
    font-weight: 300;
    line-height: 1.5;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.category-card {
    background: linear-gradient(145deg, #ffffff 0%, #f8fafc 50%, #f1f5f9 100%);
    backdrop-filter: blur(25px);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(46,125,50,0.12), 0 4px 16px rgba(46,125,50,0.08), inset 0 1px 0 rgba(255,255,255,0.8);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border: 1px solid rgba(200, 230, 201, 0.4);
    cursor: pointer;
    transform: scaleY(0.8) translateZ(0);
    transform-origin: top;
}

    .category-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, #2e7d32, #4caf50, #66bb6a);
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .category-card:hover {
        transform: translateY(-8px) scale(1.02) translateZ(0);
        box-shadow: 0 20px 60px rgba(46,125,50,0.25), 0 12px 24px rgba(46,125,50,0.15), inset 0 1px 0 rgba(255,255,255,0.9);
        border-color: #2e7d32;
    }

        .category-card:hover::before {
            opacity: 1;
        }

    .category-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(46, 125, 50, 0.1), transparent);
        transition: left 0.6s;
        z-index: 1;
    }

    .category-card:hover::before {
        left: 100%;
    }

.category-header {
    background: linear-gradient(135deg, rgba(46, 125, 50, 0.08) 0%, rgba(232, 245, 233, 0.6) 100%);
    color: #2e7d32;
    padding: 2.5rem 2rem 1.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid rgba(200, 230, 201, 0.3);
}

    .category-header::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 60px;
        height: 3px;
        background: linear-gradient(90deg, #2e7d32, #4caf50);
        border-radius: 2px;
    }

.category-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .category-icon img {
        width: 311px;
        height: 185px;
        object-fit: cover;
        border-radius: 16px;
        box-shadow: 0 8px 24px rgba(46, 125, 50, 0.15);
        border: 3px solid rgba(200, 230, 201, 0.3);
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        filter: brightness(1.05) contrast(1.1);
    }

    .category-icon:hover img {
        transform: scale(1.05);
        box-shadow: 0 12px 32px rgba(46, 125, 50, 0.25);
        border-color: #2e7d32;
    }

.category-content {
    padding: 2rem;
    position: relative;
    z-index: 2;
    background: linear-gradient(180deg, rgba(255,255,255,0.9) 0%, rgba(248,250,252,0.95) 100%);
}

.business-metrics {
    display: flex;
    justify-content: space-around;
    margin: 1.5rem 0;
    padding: 1rem;
    background: rgba(46, 125, 50, 0.05);
    border-radius: 12px;
}

.metric {
    text-align: center;
    flex: 1;
}

.metric-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2e7d32;
    display: block;
}

.metric-label {
    font-size: 0.85rem;
    color: #666;
    margin-top: 0.25rem;
}

.partnership-badge {
    display: inline-block;
    background: linear-gradient(135deg, #2e7d32, #4caf50);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin: 0.5rem 0.25rem 0 0;
    box-shadow: 0 2px 8px rgba(46,125,50,0.2);
}

.category-items {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.category-tag {
    background: linear-gradient(45deg, #f3f4f6, #e5e7eb);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    color: #374151;
    border: 1px solid #d1d5db;
}

.export-specs {
    background: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 1rem;
    margin: 1rem 0;
    border-radius: 5px;
    font-size: 0.9rem;
}

    .export-specs strong {
        color: #856404;
    }


/* Testimonials */
.testimonials {
    padding: 80px 0;
    background: white;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 2rem;
    border-radius: 18px;
    box-shadow: 0 2px 8px rgba(46,125,50,0.07);
    position: relative;
    border: 4px solid #c8e6c9;
}

.testimonial-quote {
    font-style: italic;
    margin-bottom: 1rem;
    color: #374151;
}

.testimonial-author {
    font-weight: bold;
    color: #2e7d32;
}

.testimonial-company {
    color: #64748b;
    font-size: 0.9rem;
}

/* Why Choose Us */
.why-choose {
    padding: 60px 0;
    background: linear-gradient(120deg, #f8f6ff 0%, #f0eefa 50%, #fff 100%);
    color: #222;
    position: relative;
    overflow: hidden;
}

    .why-choose::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: radial-gradient(circle at 30% 70%, rgba(156, 39, 176, 0.03) 0%, transparent 50%), radial-gradient(circle at 70% 30%, rgba(46, 125, 50, 0.02) 0%, transparent 50%);
        pointer-events: none;
    }

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: linear-gradient(135deg, rgba(46, 125, 50, 0.05) 0%, rgba(46, 125, 50, 0.02) 100%);
    padding: 1.5rem;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(46, 125, 50, 0.1);
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(46,125,50,0.06);
}

    .feature-card:hover {
        background: linear-gradient(135deg, rgba(46, 125, 50, 0.08) 0%, rgba(46, 125, 50, 0.04) 100%);
        transform: translateY(-3px);
        box-shadow: 0 6px 16px rgba(46,125,50,0.12);
    }

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2e7d32;
}

/* Coming Soon */
.coming-soon {
    background: linear-gradient(135deg, #e8f5e9 0%, #f8f8f8 100%);
    text-align: center;
    padding: 2rem;
    border-radius: 15px;
    border: 2px dashed #2e7d32;
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #e8f5e9 0%, #f1f8e9 50%, #fff 100%);
    position: relative;
    overflow: hidden;
}

    .contact-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: radial-gradient(circle at 25% 75%, rgba(46, 125, 50, 0.08) 0%, transparent 60%), radial-gradient(circle at 75% 25%, rgba(76, 175, 80, 0.06) 0%, transparent 60%), radial-gradient(circle at 50% 50%, rgba(129, 199, 132, 0.04) 0%, transparent 80%);
        pointer-events: none;
    }

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.contact-info {
    padding: 3rem;
    background: linear-gradient(145deg, rgba(255,255,255,0.95) 0%, rgba(248,250,252,0.9) 100%);
    border-radius: 24px;
    box-shadow: 0 12px 40px rgba(46,125,50,0.15), 0 6px 20px rgba(46,125,50,0.1);
    backdrop-filter: blur(25px);
    border: 1px solid rgba(200, 230, 201, 0.3);
}

    .contact-info h3 {
        color: #2e7d32;
        font-size: 2.2rem;
        margin-bottom: 1.5rem;
        font-weight: 600;
    }

.contact-detail {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(46, 125, 50, 0.05);
    border-radius: 12px;
    transition: all 0.3s ease;
}

    .contact-detail:hover {
        background: rgba(46, 125, 50, 0.08);
        transform: translateX(5px);
    }

    .contact-detail i {
        font-size: 1.5rem;
        color: #2e7d32;
        margin-right: 1rem;
        width: 40px;
        text-align: center;
    }

.contact-form-wrapper {
    padding: 3rem;
    background: linear-gradient(145deg, rgba(255,255,255,0.98) 0%, rgba(250,250,250,0.95) 100%);
    border-radius: 24px;
    box-shadow: 0 12px 40px rgba(46,125,50,0.15), 0 6px 20px rgba(46,125,50,0.1);
    backdrop-filter: blur(25px);
    border: 1px solid rgba(200, 230, 201, 0.4);
}

.form-group {
    margin-bottom: 1rem;
    text-align: left;
}

    .form-group label {
        display: block;
        margin-bottom: 0.5rem;
        font-weight: bold;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        width: 100%;
        padding: 1rem;
        border: 2px solid rgba(200, 230, 201, 0.3);
        border-radius: 12px;
        font-size: 1rem;
        background: rgba(255, 255, 255, 0.8);
        backdrop-filter: blur(10px);
        transition: all 0.3s ease;
        color: #333;
    }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #2e7d32;
            box-shadow: 0 0 0 3px rgba(46, 125, 50, 0.1);
            background: rgba(255, 255, 255, 0.95);
        }

    .form-group textarea {
        height: 100px;
        resize: vertical;
    }

/* Footer */
.footer {
    background: #2e7d32;
    color: white;
    padding: 60px 0 40px;
    text-align: center;
}


 /* Mobile Responsiveness */
@media (max-width: 900px) {
    .logo img {
        height: 40px;
        max-width: 120px;
    }

    .nav {
        flex-wrap: wrap;
    }

    .nav-links {
        gap: 1rem;
    }

        .nav-links a {
            font-size: 0.8rem;
        }

    .scaling-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
    }

    .category-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 1.5rem;
    }

    .contact-section {
        padding: 50px 0;
    }

    .contact-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }

    .contact-info, .contact-form-wrapper {
        padding: 1.5rem;
    }
}

@media (max-width: 768px) {
    .header {
        padding: 1rem 0;
    }

    .nav-links {
        display: none;
    }

    .nav {
        justify-content: center;
    }

    .logo img {
        height: 40px;
        max-width: 120px;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .category-grid {
        grid-template-columns: 1fr;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .calculator-inputs {
        grid-template-columns: 1fr;
    }

    .contact-section {
        padding: 40px 0;
    }

    .contact-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }

    .contact-info, .contact-form-wrapper {
        padding: 1.5rem;
    }

        .contact-info h3, .contact-form-wrapper h3 {
            font-size: 1.8rem;
        }
}

@media (max-width: 1024px) {
    .logo img {
        height: 45px;
        max-width: 140px;
    }

    .nav-links {
        gap: 1.5rem;
    }

        .nav-links a {
            font-size: 0.85rem;
        }

    .contact-container {
        gap: 2.5rem;
        padding: 0 1.5rem;
    }
}

@media (max-width: 600px) {
    .header {
        padding: 0.5rem 0;
    }

    .logo img {
        height: 35px;
        max-width: 100px;
    }

    .section-title {
        font-size: 2rem;
    }

    .hero h1 {
        font-size: 1.8rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .cta-button {
        font-size: 0.95rem;
        padding: 12px 30px;
    }

    .scaling-card, .category-card, .testimonial-card {
        padding: 1.5rem;
    }

    .scaling-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .category-icon img {
        width: 100px;
        height: 100px;
    }

    .contact-section {
        padding: 30px 0;
    }

    .contact-container {
        gap: 1rem;
        padding: 0 1rem;
    }

    .contact-info, .contact-form-wrapper {
        padding: 1.5rem;
    }

    .contact-detail {
        flex-direction: column;
        text-align: center;
        padding: 1rem 0.5rem;
    }

        .contact-detail i {
            margin-right: 0;
            margin-bottom: 0.5rem;
        }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


.fade-in {
    animation: fadeInUp 0.6s ease-out;
}

/* Scroll animations */
.scroll-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

    .scroll-animate.visible {
        opacity: 1;
        transform: translateY(0);
    }



/* Certifications */
.certifications {
    padding: 80px 0;
    background: white;
    color: #222;
}

.cert-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.cert-card {
    background: rgba(46, 125, 50, 0.05);
    padding: 2rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(46, 125, 50, 0.1);
    transition: all 0.3s;
    text-align: center;
    position: relative;
    overflow: hidden;
}

    .cert-card:hover {
        background: rgba(46, 125, 50, 0.1);
        transform: translateY(-5px);
    }

.cert-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #2e7d32;
}

.cert-card h3 {
    margin-bottom: 1rem;
    color: #2e7d32;
}

.cert-card p {
    margin-bottom: 1.5rem;
    color: #444;
}

.cert-button {
    display: inline-block;
    background: #2e7d32;
    color: white;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

    .cert-button:hover {
        background: #1b5e20;
        transform: translateY(-2px);
    }

/* Add responsiveness */
@media (max-width: 768px) {
    .cert-grid {
        grid-template-columns: 1fr;
    }
}

/* --------------------------------  Certifications --------------------------------  */