:root {
    --primary: #0b7a3b;      /* fresh green */
    --primary-dark: #064d25;
    --accent: #f6a623;       /* warm orange */
    --accent-soft: #ffe6b8;
    --bg: #f5f7f6;
    --bg-alt: #ffffff;
    --text: #243435;
    --muted: #6b7b7c;
    --border: #e0e7e5;
    --shadow-soft: 0 12px 30px rgba(0, 0, 0, 0.06);
    --radius-lg: 18px;
    --radius-pill: 999px;
}
html {
    scroll-padding-top: 90px; 
    scroll-behavior: smooth; /* optional */
  }

/* Global reset */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
}

/* Layout helpers */
.container {
    width: min(1120px, 92vw);
    margin: 0 auto;
}

/* Top bar */
.top-bar {
    background: var(--primary-dark);
    color: #ecf7f0;
    font-size: 0.85rem;
    padding: 0.4rem 0;
}

.top-bar-inner {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.top-bar i {
    margin-right: 0.35rem;
}

/* Header & navigation */
.main-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}

.logo img{
    width: 185px;
}
.cert-card.wouticon .cert-icon{
    display: none;
}
.cert-card img{
    width: 50px;
}
.hero1{

}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.8rem 0;
    gap: 1.5rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.7rem;
}

.logo-mark {
    width: 40px;
    height: 40px;
    border-radius: 14px;
    background: radial-gradient(circle at 20% 20%, #85d06b, var(--primary));
    color: #fff;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    box-shadow: 0 6px 18px rgba(11, 122, 59, 0.35);
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-name {
    font-weight: 600;
    font-size: 1.1rem;
    letter-spacing: 0.03em;
}

.logo-tagline {
    font-size: 0.8rem;
    color: var(--muted);
}

.nav {
    display: flex;
    gap: 1.2rem;
    font-size: 0.92rem;
}

.nav a {
    text-decoration: none;
    color: var(--muted);
    font-weight: 500;
    position: relative;
    padding-bottom: 0.1rem;
    transition: color 0.2s ease;
}

.nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -0.2rem;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    border-radius: 999px;
    transition: width 0.2s ease;
}

.nav a:hover {
    color: var(--primary-dark);
}

.nav a:hover::after {
    width: 100%;
}

/* Hero section */
.hero {
    padding: 3.5rem 0 3rem;
    background: radial-gradient(circle at top left, #e9f7ef 0, #f9f9f9 46%, #ffffff 100%);
}

.hero-inner {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
    gap: 2.5rem;
    align-items: center;
}

.hero-text h1 {
    font-size: clamp(2.2rem, 3vw, 2.7rem);
    line-height: 1.15;
    margin-bottom: 1rem;
    color: #193128;
}

.hero-text p {
    font-size: 0.97rem;
    color: var(--muted);
    margin-bottom: 1rem;
    max-width: 32rem;
}

.since-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.25rem 0.7rem;
    border-radius: var(--radius-pill);
    background: rgba(11, 122, 59, 0.06);
    color: var(--primary-dark);
    font-size: 0.8rem;
    font-weight: 500;
    margin-bottom: 0.8rem;
    border: 1px solid rgba(11, 122, 59, 0.22);
}

.hero-highlights {
    list-style: none;
    font-size: 0.9rem;
    color: var(--text);
    margin-bottom: 1.4rem;
}

.hero-highlights li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.hero-highlights li + li {
    margin-top: 0.25rem;
}

.hero-highlights i {
    color: var(--primary);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.55rem 1.4rem;
    border-radius: var(--radius-pill);
    font-size: 0.9rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.18s ease-out;
    gap: 0.4rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), #0ea54a);
    color: #fff;
    box-shadow: 0 12px 25px rgba(11, 122, 59, 0.35);
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 16px 30px rgba(11, 122, 59, 0.45);
}

.btn-outline {
    border: 1px solid rgba(11, 122, 59, 0.4);
    color: var(--primary-dark);
    background: #ffffff;
}

.btn-outline:hover {
    background: rgba(11, 122, 59, 0.04);
}

.btn-light {
    background: #ffffff;
    color: var(--primary-dark);
    border: none;
    box-shadow: var(--shadow-soft);
}

.btn-light:hover {
    background: #fdf7ec;
}

.btn-block {
    width: 100%;
}

.hero-actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

/* Hero slider */
.hero-slider {
    position: relative;
    border-radius: 26px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.14);
    background: #000;
    min-height: 260px;
}

.slide-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slider .slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.6s ease-in-out, transform 0.6s ease-in-out;
    transform: scale(1.02);
    height: 260px;
}

.hero-slider .slide.active {
    opacity: 1;
    transform: scale(1);
}

.slider-dots {
    position: absolute;
    inset-inline: 0;
    bottom: 10px;
    display: flex;
    justify-content: center;
    gap: 0.4rem;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.8);
    background: rgba(0, 0, 0, 0.25);
    cursor: pointer;
    transition: all 0.2s ease-out;
}

.dot.active {
    width: 18px;
    background: #fff;
}

/* Section basics */
.section {
    padding: 3rem 0;
}

.section-alt {
    background: #f3f7f4;
}

.section-title {
    font-size: 1.6rem;
    margin-bottom: 0.6rem;
    text-align: center;
    color: #1b3326;
}

.section-subtitle {
    text-align: center;
    font-size: 0.95rem;
    color: var(--muted);
    margin-bottom: 2rem;
}

/* Two-column layout */
.two-column {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(0, 0.9fr);
    gap: 2rem;
    align-items: start;
}

.about-card {
    background: #ffffff;
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    box-shadow: var(--shadow-soft);
}

.about-card h3 {
    margin-bottom: 0.8rem;
    font-size: 1.05rem;
}

.about-card ul {
    list-style: none;
    font-size: 0.9rem;
}

.about-card li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.about-card li + li {
    margin-top: 0.4rem;
}

.about-card i {
    color: var(--primary);
}

.core-values h3 {
    margin: 1.4rem 0 0.6rem;
    font-size: 1rem;
}

.pill-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.pill-list span {
    padding: 0.25rem 0.8rem;
    border-radius: var(--radius-pill);
    background: #e6f3eb;
    color: var(--primary-dark);
    font-size: 0.8rem;
}

/* Certifications */
.cert-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
    gap: 1.2rem;
    margin-top: 1.5rem;
}

.cert-card {
    background: #ffffff;
    border-radius: var(--radius-lg);
    padding: 1.4rem 1.2rem;
    text-align: center;
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.02);
    transition: transform 0.18s ease-out, box-shadow 0.18s ease-out;
}

.cert-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.06);
}

.cert-icon {
    width: 44px;
    height: 44px;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--primary), #62c976);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    margin-bottom: 0.7rem;
    font-size: 1.2rem;
}

/* Products */
.products-grid {
    margin-top: 1.8rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
    gap: 1.5rem;
}

.product-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
    transition: transform 0.18s ease-out, box-shadow 0.18s ease-out;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 40px rgba(0, 0, 0, 0.08);
}

.product-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.product-content {
    padding: 1.1rem 1.2rem 1.2rem;
}

.product-content h3 {
    font-size: 1.05rem;
    margin-bottom: 0.4rem;
}

.product-desc {
    font-size: 0.9rem;
    color: var(--muted);
    margin-bottom: 0.55rem;
}

.spec-list {
    list-style: none;
    font-size: 0.86rem;
    color: #33413f;
}

.spec-list li + li {
    margin-top: 0.2rem;
}

/* Markets */
.markets-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
}

.market-card {
    background: #ffffff;
    border-radius: 999px; /* big pill */
    padding: 0.9rem 1.4rem;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.02);
}

.country-code {
    font-size: 0.8rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--muted);
}

.country-code img{
    width: 30px;
    margin-top: 8px;
}
.country-name {
    font-size: 0.95rem;
    font-weight: 600;
    color: #1e3430;
}


.market-card h3 {
    font-size: 0.95rem;
}

/* CTA section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    color: #ffffff;
}

.cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.cta-inner h2 {
    font-size: 1.5rem;
    margin-bottom: 0.3rem;
}

.cta-inner p {
    font-size: 0.93rem;
    max-width: 30rem;
}

/* Contact section */
.contact-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.1fr);
    gap: 2rem;
    align-items: start;
}

.contact-info p {
    margin-bottom: 1rem;
    color: var(--muted);
}

.contact-list {
    list-style: none;
    font-size: 0.9rem;
}

.contact-list li {
    display: flex;
    gap: 0.6rem;
    align-items: flex-start;
}

.contact-list li + li {
    margin-top: 0.4rem;
}

.contact-list i {
    color: var(--primary);
    margin-top: 0.2rem;
}

/* Form */
.contact-form-wrapper {
    background: #ffffff;
    border-radius: 20px;
    padding: 1.5rem 1.4rem;
    box-shadow: var(--shadow-soft);
}

.contact-form .form-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.9rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    margin-bottom: 0.7rem;
}

.form-group label {
    font-size: 0.82rem;
    font-weight: 500;
    color: #3b4948;
}

.form-group input,
.form-group textarea {
    padding: 0.5rem 0.65rem;
    border-radius: 10px;
    border: 1px solid var(--border);
    font: inherit;
    outline: none;
    transition: border-color 0.16s ease-out, box-shadow 0.16s ease-out;
    background: #fbfdfb;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 1px rgba(11, 122, 59, 0.18);
    background: #ffffff;
}

/* Footer */
.footer {
    background: #0f201b;
    color: #d4e5dd;
    padding: 1.4rem 0;
    font-size: 0.85rem;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

/* Responsive */
@media (max-width: 900px) {
    .container.top-bar-inner{
        text-align: center;
        display: flex;
        justify-content: center;
    }

    .hero-inner {
        grid-template-columns: minmax(0, 1fr);
    }

    .hero-slider {
        order: -1;
        max-width: 500px;
        margin: 0 auto 1.8rem;
        width: 100%;
    }

    .two-column,
    .contact-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .cta-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .nav {
        display: none; /* simple: hide nav on small screens, or you can later add a burger menu */
    }
}

@media (max-width: 600px) {
    .contact-form .form-row {
        grid-template-columns: minmax(0, 1fr);
    }

    .footer-inner {
        flex-direction: column;
        text-align: center;
    }
}
