/* ===============================
   RESET & BASE
================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ===============================
   COLOR VARIABLES
================================ */
:root {
    --primary-green: #1dbf73;
    --dark-green: #0e7c4b;
    --light-green: #e9f8f1;
    --accent: #ffcc66;
    --text-dark: #2b2b2b;
    --white: #ffffff;
}

/* ===============================
   BODY
================================ */
body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    line-height: 1.7;

    /* Mint background for entire website */
    background:
        linear-gradient(
            rgba(17, 143, 72, 0.88),
            rgba(255, 255, 255, 0.986)
        ),
        url("../images/mint-bg.jpg");

    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}


/* ===============================
   HEADER
================================ */
.header {
    background: var(--white);
    padding: 16px 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #020e07;
    position: sticky;
    top: 0;
    z-index: 1000;
}

/* LOGO */
.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo img {
    height: 80px;
    width: auto;
    display: block;
}

.logo span {
    font-family: 'Playfair Display', serif;
    font-size: 40px;
    font-weight: 600;
    color: var(--primary-green);
}


/* ===============================
   NAVIGATION
================================ */
.nav-menu {
    list-style: none;
    display: flex;
}

.nav-menu li {
    margin-left: 30px;
    position: relative;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
}

.nav-menu a:hover {
    color: var(--primary-green);
}

/* DROPDOWN */
.dropdown-menu {
    display: none;
    position: absolute;
    top: 38px;
    left: 0;
    background: var(--white);
    min-width: 200px;
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.dropdown-menu a {
    padding: 12px 18px;
    display: block;
    color: #333;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

/* ===============================
   HERO SECTION
================================ */
/* ===============================
   HERO VIDEO BACKGROUND
================================ */

.hero-video {
    position: relative;
    height: 90vh;
    min-height: 600px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Video Styling */
.hero-bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 1;
}

/* Dark overlay for readability */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        rgba(0, 0, 0, 0.45),
        rgba(0, 0, 0, 0.45)
    );
    z-index: 2;
}

/* Text above video */
.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: #ffffff;
    max-width: 900px;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 600;
}

.hero-content p {
    font-size: 18px;
    margin-top: 12px;
}

/* Mobile Optimization */
@media (max-width: 768px) {
    .hero-video {
        height: 70vh;
    }

    .hero-content h1 {
        font-size: 32px;
    }
}


/* ===============================
   COMMON SECTIONS
================================ */
section {
    padding: 85px 90px;
   
}

section h2 {
    font-size: 32px;
    margin-bottom: 25px;
    color: var(--dark-green);
}

/* ===============================
   BUTTON
================================ */
.btn {
    margin-top: 25px;
    padding: 14px 36px;
    background: var(--accent);
    color: #333;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    border-radius: 30px;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn:hover {
    background: #ffb703;
}

/* ===============================
   PRODUCT CARDS (HOME)
================================ */
.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.card {
    background: var(--white);
    padding: 50px 35px;
    border-radius: 18px;
    text-align: center;
    box-shadow: 0 22px 55px rgba(0,0,0,0.08);
    border-bottom: 6px solid var(--primary-green);
    transition: all 0.35s ease;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 32px 65px rgba(0,0,0,0.14);
}

/* ===============================
   WHY US
================================ */
.why-us {
    background: var(--light-green);
    border-radius: 20px;
}

.why-us li {
    margin-bottom: 12px;
}

/* ===============================
   PRODUCT LIST (CATEGORY PAGE)
================================ */
.product-list ul {
    margin-top: 30px;
    columns: 2;
    column-gap: 60px;
}

.product-list li {
    margin-bottom: 12px;
    font-size: 16px;
}

.product-list a {
    color: var(--dark-green);
    font-weight: 500;
    text-decoration: none;
}

.product-list a:hover {
    text-decoration: underline;
}

/* ===============================
   PRODUCT DETAIL PAGE
================================ */
.product-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-top: 40px;
}

.product-image img {
    width: 100%;
    max-width: 420px;
    border-radius: 12px;
}

.product-info h2 {
    margin-bottom: 15px;
}

.product-info ul {
    margin-left: 20px;
}

/* ===============================
   CTA
================================ */
.cta {
    background: linear-gradient(
        135deg,
        var(--primary-green),
        var(--dark-green)
    );
    color: var(--white);
    text-align: center;
    border-radius: 20px;
}

.cta h2 {
    color: var(--white);
}

/* ===============================
   FOOTER
================================ */
footer {
    background: #0b0b0b;
    color: #dcdcdc;
    text-align: center;
    padding: 22px;
    font-size: 13px;
}

/* ===============================
   WHATSAPP BUTTON
================================ */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background: var(--primary-green);
    color: var(--white);
    width: 58px;
    height: 58px;
    border-radius: 50%;
    text-align: center;
    font-size: 26px;
    line-height: 58px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
    z-index: 999;
}

/* ===============================
   RESPONSIVE (MOBILE)
================================ */
@media (max-width: 768px) {

    .header {
        flex-direction: column;
        align-items: flex-start;
        padding: 15px 25px;
    }

    .nav-menu {
        flex-direction: column;
        width: 100%;
        margin-top: 10px;
    }

    .nav-menu li {
        margin: 10px 0;
    }

    section {
        padding: 60px 25px;
    }

    .hero h1 {
        font-size: 32px;
    }

    .product-detail {
        grid-template-columns: 1fr;
    }
}
/* ===============================
   INDUSTRIES WE SERVE (HOME)
================================ */

/* ===============================
   INDUSTRIES SECTION – REFINED
================================ */

.industries-section {
    background: linear-gradient(135deg, #f7fcfa, #ffffff);
    padding: 110px 90px;
}

.industries-section h2 {
    text-align: center;
    font-size: 34px;
    color: #0e7c4b;
    margin-bottom: 15px;
}

.industries-intro {
    max-width: 780px;
    margin: 0 auto 55px;
    text-align: center;
    font-size: 16.5px;
    color: #3e5f4d;
    line-height: 1.8;
}

/* GRID */
.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 34px;
}

/* CARD */
.industry-box {
    background: #ffffff;
    border-radius: 22px;
    padding: 18px;
    text-align: center;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.06);
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}

/* IMAGE */
.industry-box img {
    width: 100%;
    height: 210px;
    object-fit: cover;
    border-radius: 16px;
    transition: transform 0.45s ease;
}

/* TITLE */
.industry-box h3 {
    margin-top: 20px;
    font-size: 19px;
    font-weight: 600;
    color: #0e7c4b;
}

/* DESCRIPTION */
.industry-desc {
    margin-top: 10px;
    font-size: 14.8px;
    line-height: 1.7;
    color: #4a6b5b;
}

/* HOVER EFFECT */
.industry-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 35px 70px rgba(0, 0, 0, 0.14);
}

.industry-box:hover img {
    transform: scale(1.05);
}

/* SUBTLE ACCENT LINE */
.industry-box::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(
        90deg,
        #1dbf73,
        #0e7c4b
    );
    opacity: 0;
    transition: opacity 0.3s ease;
}

.industry-box:hover::after {
    opacity: 1;
}

/* ===============================
   RESPONSIVE
================================ */

@media (max-width: 768px) {
    .industries-section {
        padding: 70px 25px;
    }

    .industry-box img {
        height: 180px;
    }
}


/* Hidden description */
.industry-desc {
    font-size: 14px;
    color: #ffffff;
    line-height: 1.6;
    padding: 20px;
    background: rgba(14, 124, 75, 0.95);
    border-radius: 14px;

    position: absolute;
    inset: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;

    opacity: 0;
    transition: opacity 0.3s ease;
}

/* Show description on hover */
.industry-box:hover .industry-desc {
    opacity: 1;
}

/* Hover effect */
.industry-box:hover {
    transform: translateY(-4px);
}
/* ===============================
   KEY PRODUCTS – HOME
================================ */

/* ===============================
   KEY PRODUCTS (WITH IMAGES)
================================ */

/* ===============================
   KEY PRODUCTS SECTION (IMPROVED)
================================ */

.key-products {
    margin-top: 90px;
    padding-top: 80px;
    border-top: 1px solid #e0efe8;
}

.key-products h2 {
    font-size: 32px;
    color: var(--dark-green);
    margin-bottom: 15px;
}

.key-products-intro {
    max-width: 760px;
    margin-bottom: 45px;
    font-size: 16px;
    color: #444;
}

/* Grid */
.key-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 35px;
}

/* Card */
.key-product-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 22px;
    text-align: center;
    text-decoration: none;
    box-shadow: 0 18px 40px rgba(0,0,0,0.06);
    transition: all 0.35s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Hover */
.key-product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 32px 65px rgba(0,0,0,0.12);
}

/* Image container */
.key-product-card img {
    width: 100%;
    height: 180px;
    object-fit: contain;   /* IMPORTANT: full image visible */
    margin-bottom: 18px;
}

/* Product name */
.key-product-card span {
    font-size: 15.5px;
    font-weight: 500;
    color: var(--dark-green);
    line-height: 1.4;
}

/* Mobile */
@media (max-width: 768px) {
    .key-products {
        margin-top: 60px;
        padding-top: 60px;
    }

    .key-product-card img {
        height: 150px;
    }
}

/* ===============================
   TRUST SECTION
================================ */


/* ===============================
   TRUST SECTION (IMPROVED)
================================ */

.trust-section {
    background: linear-gradient(
        180deg,
        #eefaf4 0%,
        #e4f5ec 100%
    );
    border-radius: 24px;
    margin: 80px 0;
    padding: 80px 60px;
    text-align: center;
}

/* Section heading */
.trust-section h2 {
    font-size: 34px;
    color: var(--dark-green);
    margin-bottom: 18px;
    font-weight: 600;
}

/* Intro text */
.trust-intro {
    max-width: 820px;
    margin: 0 auto 55px;
    font-size: 16.5px;
    line-height: 1.8;
    color: #444;
}

/* Grid */
.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 32px;
}

/* Individual card */
.trust-box {
    background: #ffffff;
    padding: 34px 28px;
    border-radius: 18px;
    box-shadow: 0 18px 40px rgba(0,0,0,0.06);
    text-align: left;
    transition: all 0.35s ease;
    border-top: 4px solid var(--primary-green);
}

/* Hover effect */
.trust-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 65px rgba(0,0,0,0.12);
}

/* Card heading */
.trust-box h3 {
    font-size: 18px;
    color: var(--dark-green);
    margin-bottom: 12px;
    font-weight: 600;
}

/* Card text */
.trust-box p {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
}

/* Mobile tuning */
@media (max-width: 768px) {

    .trust-section {
        padding: 60px 25px;
    }

    .trust-section h2 {
        font-size: 28px;
    }

    .trust-intro {
        font-size: 15.5px;
        margin-bottom: 40px;
    }
}
/* ===============================
   QUALITY & COMPLIANCE STRIP
================================ */

.quality-strip {
    margin-top: 100px;
    padding: 80px 90px;
    background: linear-gradient(
        135deg,
        #eaf7f0,
        #f6fcf9
    );
    border-radius: 28px;
}

.quality-strip h2 {
    text-align: center;
    font-size: 32px;
    color: var(--dark-green);
    margin-bottom: 15px;
}

.quality-intro {
    max-width: 760px;
    margin: 0 auto 50px;
    text-align: center;
    font-size: 16px;
    color: #444;
}

.quality-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 35px;
}

.quality-box {
    background: #ffffff;
    padding: 35px 28px;
    border-radius: 18px;
    box-shadow: 0 20px 45px rgba(0,0,0,0.08);
    transition: all 0.35s ease;
}

.quality-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 65px rgba(0,0,0,0.12);
}

.quality-box h3 {
    font-size: 18px;
    color: var(--primary-green);
    margin-bottom: 12px;
}

.quality-box p {
    font-size: 14.5px;
    color: #555;
    line-height: 1.6;
}

/* Mobile */
@media (max-width: 768px) {
    .quality-strip {
        padding: 60px 25px;
        margin-top: 70px;
    }
}
/* ===============================
   GLOBAL PRESENCE
================================ */

.global-presence {
    margin-top: 100px;
    padding: 85px 90px;
    background: #ffffff;
    border-radius: 28px;
}

.global-presence h2 {
    text-align: center;
    font-size: 32px;
    color: var(--dark-green);
    margin-bottom: 15px;
}

.global-intro {
    max-width: 760px;
    margin: 0 auto 50px;
    text-align: center;
    font-size: 16px;
    color: #444;
}

.global-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.global-box {
    background: linear-gradient(
        135deg,
        #eaf7f0,
        #f7fcfa
    );
    padding: 40px 35px;
    border-radius: 20px;
    box-shadow: 0 18px 45px rgba(0,0,0,0.08);
}

.global-box h3 {
    font-size: 22px;
    color: var(--primary-green);
    margin-bottom: 15px;
}

.global-box p {
    font-size: 15.5px;
    color: #555;
    line-height: 1.7;
}

.country-list {
    list-style: none;
    padding-left: 0;
}

.country-list li {
    font-size: 15.5px;
    color: #444;
    padding: 8px 0;
    border-bottom: 1px solid #dff1e8;
}

.country-list li:last-child {
    border-bottom: none;
}

/* Mobile */
@media (max-width: 768px) {
    .global-presence {
        padding: 60px 25px;
        margin-top: 70px;
    }
}
/* ===============================
   FLAGS & COUNTRY LIST
================================ */

.flag-icon {
    width: 34px;
    height: auto;
    margin-right: 10px;
    vertical-align: middle;
}

.with-flags li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15.5px;
    color: #444;
    padding: 10px 0;
    border-bottom: 1px solid #dff1e8;
}

.with-flags li img {
    width: 36px;
    height: auto;
    border-radius: 4px;
}

.with-flags li:last-child {
    border-bottom: none;
}
/* ===============================
   EXPORT DOCUMENTATION
================================ */

.export-docs {
    margin-top: 100px;
    padding: 85px 90px;
    background: linear-gradient(
        135deg,
        #f0faf5,
        #ffffff
    );
    border-radius: 28px;
    text-align: center;
}

.export-docs h2 {
    font-size: 32px;
    color: var(--dark-green);
    margin-bottom: 15px;
}

.export-intro {
    max-width: 780px;
    margin: 0 auto 50px;
    font-size: 16px;
    color: #444;
}

.export-docs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 30px;
}

/* Badge */
.doc-badge {
    background: #ffffff;
    border-radius: 18px;
    padding: 30px 20px;
    box-shadow: 0 18px 45px rgba(0,0,0,0.08);
    transition: all 0.35s ease;
}

.doc-badge:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 65px rgba(0,0,0,0.12);
}

/* Badge label */
.doc-badge span {
    display: inline-block;
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 8px;
    letter-spacing: 1px;
}

/* Badge text */
.doc-badge p {
    font-size: 14px;
    color: #555;
}

/* Mobile */
@media (max-width: 768px) {
    .export-docs {
        padding: 60px 25px;
        margin-top: 70px;
    }
}
/* ===============================
   FLOATING CONTACT ICONS
================================ */

.contact-float {
    position: fixed;
    right: 18px;
    bottom: 120px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    z-index: 9999;
}

/* Common button */
.contact-btn {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 22px;
    box-shadow: 0 12px 28px rgba(0,0,0,0.25);
    transition: all 0.3s ease;
    text-decoration: none;
}

/* Hover */
.contact-btn:hover {
    transform: scale(1.08);
}

/* Individual colors */
.contact-btn.call {
    background: #1e88e5;
}

.contact-btn.email {
    background: #ff9800;
}

.contact-btn.whatsapp {
    background: #25d366;
}

/* Mobile adjustment */
@media (max-width: 768px) {
    .contact-float {
        right: 12px;
        bottom: 90px;
    }

    .contact-btn {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
}

/* ===============================
   CONTACT PAGE
================================ */

.contact-section {
    padding: 90px;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 50px;
}

.contact-box {
    background: #ffffff;
    padding: 45px;
    border-radius: 20px;
    box-shadow: 0 20px 45px rgba(0,0,0,0.08);
}

.contact-box h2 {
    color: var(--dark-green);
    margin-bottom: 15px;
}

.contact-list {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.contact-list li {
    margin-bottom: 12px;
    font-size: 15.5px;
}

.contact-list i {
    color: var(--primary-green);
    margin-right: 10px;
}

.contact-note {
    margin-top: 25px;
    font-size: 14.5px;
    background: #f2faf6;
    padding: 15px;
    border-radius: 10px;
}

.form-note {
    font-size: 14.5px;
    margin-bottom: 20px;
    color: #555;
}

.contact-box input,
.contact-box textarea {
    width: 100%;
    padding: 12px 14px;
    margin-bottom: 14px;
    border-radius: 8px;
    border: 1px solid #ddd;
    font-family: 'Poppins', sans-serif;
}

.contact-box input:focus,
.contact-box textarea:focus {
    outline: none;
    border-color: var(--primary-green);
}
/* ===============================
   ABOUT SECTION HIGHLIGHT
================================ */

.about-highlight {
    background: linear-gradient(
        135deg,
        #e9f8f1,
        #f4fcf8
    );
    border-radius: 28px;
    margin: 80px auto;
    padding: 90px 0;
}

.about-container {
    max-width: 1000px;
    margin: auto;
    padding: 0 40px;
}

.about-highlight h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 30px;
    color: var(--dark-green);
}

.about-highlight p {
    font-size: 16.5px;
    line-height: 1.85;
    margin-bottom: 22px;
    color: #2b2b2b;
}

.about-lead {
    font-size: 18.5px;
    font-weight: 500;
    text-align: center;
    color: var(--primary-green);
    margin-bottom: 35px;
}

/* Responsive */
@media (max-width: 768px) {
    .about-highlight {
        padding: 65px 0;
        margin: 50px 15px;
    }

    .about-container {
        padding: 0 20px;
    }

    .about-highlight h2 {
        font-size: 28px;
    }

    .about-lead {
        font-size: 17px;
    }
}
/* ===============================
   CORE STRENGTHS SECTION
================================ */

.core-strengths {
    padding: 90px 90px;
    background: #ffffff;
    text-align: center;
}

.core-strengths h2 {
    font-size: 34px;
    color: var(--dark-green);
    margin-bottom: 55px;
}

.strengths-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 35px;
    max-width: 1100px;
    margin: auto;
}

.strength-card {
    background: #f7fdf9;
    border-radius: 18px;
    padding: 45px 30px;
    box-shadow: 0 18px 40px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
}

.strength-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 28px 55px rgba(0,0,0,0.12);
}

.strength-card i {
    font-size: 38px;
    color: var(--primary-green);
    margin-bottom: 20px;
}

.strength-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #1e1e1e;
}

.strength-card p {
    font-size: 15px;
    color: #444;
    line-height: 1.7;
}

/* Mobile */
@media (max-width: 768px) {
    .core-strengths {
        padding: 60px 25px;
    }
}
/* ===============================
   SUPPLY CHAIN SECTION
================================ */

.supply-chain {
    padding: 95px 90px;
    background: linear-gradient(135deg, #f4fcf8, #ffffff);
    text-align: center;
}

.supply-chain h2 {
    font-size: 34px;
    color: var(--dark-green);
    margin-bottom: 18px;
}

.supply-intro {
    max-width: 800px;
    margin: 0 auto 55px;
    font-size: 16.5px;
    color: #444;
    line-height: 1.8;
}

.supply-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 35px;
    max-width: 1200px;
    margin: auto;
}

.supply-step {
    background: #ffffff;
    border-radius: 20px;
    padding: 45px 30px;
    box-shadow: 0 18px 45px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
    position: relative;
}

.supply-step:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 65px rgba(0,0,0,0.12);
}

.supply-step span {
    display: inline-block;
    width: 55px;
    height: 55px;
    line-height: 55px;
    border-radius: 50%;
    background: var(--primary-green);
    color: #fff;
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 18px;
}

.supply-step h3 {
    font-size: 19px;
    margin-bottom: 12px;
    color: #1e1e1e;
}

.supply-step p {
    font-size: 15px;
    color: #555;
    line-height: 1.7;
}

/* Mobile */
@media (max-width: 768px) {
    .supply-chain {
        padding: 65px 25px;
    }
}
/* ===============================
   QUALITY & COMPLIANCE SECTION
================================ */

.quality-compliance {
    padding: 95px 90px;
    background: #ffffff;
}

.quality-compliance h2 {
    text-align: center;
    font-size: 34px;
    color: var(--dark-green);
    margin-bottom: 18px;
}

.quality-intro {
    max-width: 850px;
    margin: 0 auto 60px;
    text-align: center;
    font-size: 16.5px;
    color: #444;
    line-height: 1.85;
}

.quality-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 35px;
    max-width: 1200px;
    margin: auto;
}

.quality-card {
    background: #f7fdf9;
    border-left: 5px solid var(--primary-green);
    border-radius: 14px;
    padding: 35px 30px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
}

.quality-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 28px 60px rgba(0,0,0,0.12);
}

.quality-card h3 {
    font-size: 19px;
    margin-bottom: 12px;
    color: #1e1e1e;
}

.quality-card p {
    font-size: 15px;
    color: #555;
    line-height: 1.75;
}

/* Mobile */
@media (max-width: 768px) {
    .quality-compliance {
        padding: 65px 25px;
    }
}

/* ===============================
   MARKET PRESENCE SECTION
================================ */

.market-presence {
    padding: 95px 90px;
    background: linear-gradient(135deg, #f4fcf8, #ffffff);
    text-align: center;
}

.market-presence h2 {
    font-size: 34px;
    color: var(--dark-green);
    margin-bottom: 18px;
}

.market-intro {
    max-width: 850px;
    margin: 0 auto 60px;
    font-size: 16.5px;
    color: #444;
    line-height: 1.8;
}

.market-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 35px;
    max-width: 1200px;
    margin: auto;
}

.market-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 40px 30px;
    box-shadow: 0 18px 45px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
}

.market-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 65px rgba(0,0,0,0.12);
}

.market-card img {
    width: 60px;
    height: auto;
    margin-bottom: 18px;
}

.market-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #1e1e1e;
}

.market-card p {
    font-size: 15px;
    color: #555;
    line-height: 1.7;
}

/* Mobile */
@media (max-width: 768px) {
    .market-presence {
        padding: 65px 25px;
    }
}
/* ===============================
   SECTION DIVIDER
================================ */
.section-divider {
    width: 80px;
    height: 4px;
    background: var(--primary-green);
    margin: 45px auto 65px;
    border-radius: 10px;
    opacity: 0.85;
}
.about {
    background: rgba(255, 255, 255, 0.85);
    border-radius: 20px;
    padding: 60px 70px;
    max-width: 1100px;
    margin: 80px auto;
}
/* ===============================
   MOBILE HEADER FIX
================================ */
@media (max-width: 768px) {

    /* Header container */
    .header {
        padding: 10px 16px;
        flex-direction: column;
        align-items: flex-start;
    }

    /* Logo wrapper */
    .logo {
        gap: 10px;
        margin-bottom: 8px;
    }

    /* Logo image */
    .logo img {
        height: 48px;   /* REDUCE from 80px */
    }

    /* Logo text */
    .logo span {
        font-size: 22px;   /* REDUCE from 40px */
        line-height: 1.2;
    }

    /* Navigation menu */
    .nav-menu {
        width: 100%;
        margin-top: 6px;
    }

    .nav-menu li {
        margin: 6px 0;   /* Reduce spacing */
    }

    .nav-menu a {
        font-size: 15px;
    }
}
