﻿/* General Reset */
body {
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
    background-color: #f9f9f9;
}

/* Hero Section */
.about-hero {
    background-image: url('Images/aboutbc.jpg');
    background-size: cover;
    background-position: center;
    height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

    .about-hero .overlay {
        background-color: rgba(0, 0, 0, 0.5);
        padding: 2rem;
        border-radius: 10px;
        color: #fff;
        text-align: center;
    }

.hero-heading {
    font-size: 2.5rem;
    animation: fadeInDown 1.5s ease-in-out;
}

/* About Section */
.about-section {
    padding: 4rem 2rem;
    background: linear-gradient(120deg, #fdfbfb 0%, #ebedee 100%);
}

.about-content-wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 2rem;
    justify-content: center;
}

.about-image {
    flex: 1 1 40%;
    text-align: center;
}

    .about-image img {
        width: 100%;
        max-width: 500px;
        border-radius: 20px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    }

.about-text {
    flex: 1 1 50%;
}

    .about-text h2 {
        color: #2c3e50;
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .about-text p {
        font-size: 1rem;
        line-height: 1.6;
        color: #34495e;
        margin-bottom: 1rem;
    }

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animated {
    opacity: 0;
    animation-duration: 1s;
    animation-fill-mode: forwards;
}

.fadeInLeft {
    animation-name: fadeInLeft;
}

.fadeInRight {
    animation-name: fadeInRight;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.seeds-section {
    padding: 80px 20px;
    color: #fff;
    position: relative;
    background-attachment: fixed;
    background-repeat: no-repeat;
}

    .seeds-section .container {
        max-width: 1200px;
        margin: 0 auto;
        text-align: center;
    }

    .seeds-section .title {
        font-size: 40px;
        font-weight: bold;
        margin-bottom: 50px;
        text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
        animation: fadeInDown 1s ease-out;
    }

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
}

.card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 20px;
    backdrop-filter: blur(6px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
    transition: transform 0.4s ease, box-shadow 0.3s;
    cursor: pointer;
    opacity: 0;
    animation: fadeUp 1s forwards;
}

    .card img {
        width: 100%;
        height: 160px;
        object-fit: cover;
        border-radius: 10px;
        margin-bottom: 15px;
    }

    .card h3 {
        font-size: 18px;
        font-weight: 600;
        line-height: 1.4;
    }

    .card:hover {
        transform: translateY(-10px) scale(1.02);
        box-shadow: 0 12px 24px rgba(0,0,0,0.5);
    }

/* Animation Delays */
.delay-0 {
    animation-delay: 0.2s;
}

.delay-1 {
    animation-delay: 0.4s;
}

.delay-2 {
    animation-delay: 0.6s;
}

.delay-3 {
    animation-delay: 0.8s;
}

/* Animations */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* ---------- base ---------- */
:root {
    --green: #2e7d32;
    --dark: #222;
    --muted: #666;
    --bg: #f7f8fa;
    --glass: rgba(255,255,255,0.65);
}

* {
    box-sizing: border-box
}

body {
    margin: 0;
    font-family: "Segoe UI", Roboto, Arial, sans-serif;
    background: var(--bg);
    color: var(--dark);
    -webkit-font-smoothing: antialiased
}

/* ---------- hero ---------- */
.nbcc-hero {
    position: relative;
    overflow: hidden;
    min-height: 48vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nbcc-hero__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: saturate(0.95) contrast(0.95);
    transform: scale(1.02);
}

.nbcc-hero__inner {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 48px 20px;
    backdrop-filter: blur(2px);
    color: #fff;
    max-width: 1100px;
}

.nbcc-title {
    font-size: 2.6rem;
    margin: 0 0 10px;
    font-weight: 700;
    text-shadow: 0 6px 22px rgba(0,0,0,0.45)
}

.nbcc-subtitle {
    font-size: 1.05rem;
    margin: 0 0 18px;
    opacity: 0.95
}

.btn-primary {
    display: inline-block;
    padding: 12px 26px;
    background: linear-gradient(135deg,var(--green),#66bb6a);
    color: #fff;
    border-radius: 28px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 8px 20px rgba(46,125,50,0.18)
}

/* ---------- about ---------- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px
}

.nbcc-about {
    display: flex;
    gap: 32px;
    align-items: center;
    flex-wrap: wrap;
    background: linear-gradient(180deg,#fff,#fafafa);
    border-radius: 14px;
    padding: 28px
}

.nbcc-about__media {
    flex: 0 0 420px
}

    .nbcc-about__media img {
        width: 100%;
        height: 100%;
        max-height: 360px;
        object-fit: cover;
        border-radius: 12px;
        box-shadow: 0 12px 40px rgba(0,0,0,0.08)
    }

.nbcc-about__content {
    flex: 1;
    min-width: 260px
}

    .nbcc-about__content h2 {
        font-size: 1.6rem;
        color: var(--green);
        margin-top: 0
    }

    .nbcc-about__content h3 {
        margin: 14px 0 6px;
        font-size: 1.05rem;
        color: var(--dark)
    }

    .nbcc-about__content p {
        color: var(--muted);
        line-height: 1.7
    }

/* ---------- products ---------- */
.nbcc-products {
    padding: 28px 0
}

.section-heading {
    text-align: center;
    font-size: 1.6rem;
    color: var(--dark);
    margin-bottom: 20px
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(230px,1fr));
    gap: 20px
}

.product-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(13,13,13,0.06);
    transition: transform .35s, box-shadow .35s
}

    .product-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 18px 40px rgba(13,13,13,0.10)
    }

.product-media img {
    width: 100%;
    height: 190px;
    object-fit: cover;
    display: block
}

.product-body {
    padding: 14px
}

    .product-body h3 {
        margin: 0 0 8px;
        font-size: 1.05rem;
        color: var(--green)
    }

    .product-body p {
        margin: 0;
        color: var(--muted);
        font-size: 0.95rem
    }

/* ---------- market ---------- */
.nbcc-market {
    display: flex;
    gap: 28px;
    align-items: center;
    flex-wrap: wrap;
    padding: 28px 0
}

.market-counters {
    display: flex;
    gap: 18px;
    flex-wrap: wrap
}

.counter {
    background: linear-gradient(180deg,#fff,#fbfbfb);
    padding: 16px 20px;
    border-radius: 12px;
    min-width: 120px;
    text-align: center;
    box-shadow: 0 8px 24px rgba(0,0,0,0.05)
}

    .counter .num {
        display: block;
        font-size: 1.6rem;
        font-weight: 700;
        color: var(--green)
    }

    .counter p {
        margin: 6px 0 0;
        color: var(--muted);
        font-size: 0.95rem
    }

.market-text {
    flex: 1
}

/* ---------- vision & cta ---------- */
.nbcc-vision {
    padding: 28px 0
}

.vision-cards {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
    margin-bottom: 18px
}

.vision {
    background: #fff;
    padding: 18px;
    border-radius: 12px;
    flex: 1;
    min-width: 200px;
    text-align: center;
    box-shadow: 0 8px 24px rgba(0,0,0,0.05)
}

    .vision img {
        width: 64px;
        height: 64px;
        display: block;
        margin: 0 auto 10px
    }

    .vision h4 {
        margin: 0 0 8px;
        color: var(--green)
    }

    .vision p {
        margin: 0;
        color: var(--muted);
        font-size: 0.95rem
    }

.nbcc-vision .cta {
    display: flex;
    gap: 12px;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 16px
}

    .nbcc-vision .cta p {
        margin: 0;
        color: var(--muted)
    }

.btn-outline {
    display: inline-block;
    padding: 10px 18px;
    border-radius: 24px;
    border: 1px solid var(--green);
    color: var(--green);
    text-decoration: none;
    font-weight: 600
}

/* ---------- responsive ---------- */
@media (max-width:900px) {
    .nbcc-about {
        padding: 18px
    }

    .nbcc-about__media {
        flex: 1 1 100%
    }

    .nbcc-about__content {
        flex: 1 1 100%
    }

    .nbcc-hero__inner {
        padding: 26px
    }

    .nbcc-title {
        font-size: 1.9rem
    }
}

/* ---------- reveal animation helper (class-based) ---------- */
.reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity .7s ease, transform .7s ease;
}

    .reveal.show {
        opacity: 1;
        transform: translateY(0)
    }
