/* ---------- RESET & BASE ---------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Outfit', sans-serif;
    color: #1C1C1C;
    background: #F9F7F4;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}
a {
    text-decoration: none;
    color: inherit;
}

html {
    scroll-behavior: smooth;
}

.skip-link {
    position: absolute;
    top: -100%;
    left: 0;
    background: var(--green);
    color: white;
    padding: 8px 16px;
    z-index: 10000;
    font-weight: 600;
}
.skip-link:focus {
    top: 0;
}

:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 2px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ---------- COLORS ---------- */
:root {
    --green: #1A4D3E;
    --gold: #C4A335;
    --light-bg: #F9F7F4;
    --dark: #1C1C1C;
    --grey: #4A4A4A;
    --light-grey: #8A8A8A;
    --white: #FFFFFF;
}

/* ---------- BUTTONS ---------- */
.btn {
    display: inline-block;
    padding: 14px 36px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.25s ease;
    cursor: pointer;
    border: none;
    text-align: center;
}
.btn:active {
    transform: scale(0.97);
}
.btn-primary {
    background: var(--gold);
    color: var(--white);
}
.btn-primary:hover {
    background: #b38f2e;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(196, 163, 53, 0.3);
}
.btn-primary:active {
    background: #a07e28;
}
.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}
.btn-secondary:hover {
    background: var(--white);
    color: var(--green);
}
.btn-secondary:active {
    background: rgba(255,255,255,0.85);
}
.btn-green {
    background: var(--green);
    color: var(--white);
}
.btn-green:hover {
    background: #12382d;
    transform: translateY(-1px);
}
.btn-green:active {
    background: #0e2c21;
}

/* ---------- HEADER ---------- */
header {
    background: rgba(255, 255, 255, 0.97);
    box-shadow: 0 2px 18px rgba(0,0,0,0.06);
    position: sticky;
    top: 0;
    z-index: 999;
    padding: 5px 0;
    backdrop-filter: blur(12px);
    border-bottom: 1px solid #f0eee6;
    display: flex;
    align-items: center;
}
.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    width: 100%;
}
.quote{
    display: flex;
    align-items: center;
    margin-left: auto;
}

.quote a{
    left: 0;    
}


.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.8rem;
    color: var(--green);
    letter-spacing: 0.01em;
    white-space: nowrap;
}
.logo-image {
    height: 56px;
    width: auto;
    display: block;
    object-fit: contain;
}
.logo-text span {
    color: var(--gold);
}
.logo-text {
    /* Your existing styles for the whole text */
}

.logo-text span {           /* This targets the inner <span>Project</span> */
    color: var(--gold);
}

/* Magical effect styles */
.project-text {
    display: inline-flex;
    position: relative;
}

.project-text span {
    display: inline-block;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
}

/* Default state - exactly like before */
.project-text span {
    color: var(--gold);        /* Keeps original color */
    transform: none;
    text-shadow: none;
}
nav ul {
    list-style: none;
    display: flex; 
    gap: 4px;
    align-items: center;
    flex-wrap: wrap;
    justify-content: flex-end;
    margin-left: auto;
}
nav ul li {
    position: relative;
}
nav a {
    font-weight: 500;
    color: var(--dark);
    transition: color 0.2s ease, background-color 0.2s ease, transform 0.2s ease;
    font-size: 0.92rem;
    letter-spacing: 0.01em;
    padding: 10px 12px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    position: relative;
}
nav a:active {
    transform: scale(0.96);
}
nav a:hover {
    color: var(--green);
    background: #f7f3e5;
    transform: translateY(-1px);
}

#indicator{
    background: #f7f3e5;
}

/* #navMenu{
align-items: center;
display:inline-flex;
} */

.dropdown > a::after {
    content: " ▾";
    font-size: 0.68rem;
    margin-left: 5px;
    opacity: 0.75;
}
.dropdown-content {
    display: none;
    position: absolute;
    background: var(--white);
    min-width: 210px;
    box-shadow: 0 14px 28px rgba(0,0,0,0.1);
    border-radius: 12px;
    padding: 10px 0;
    top: calc(100% + 8px);
    left: 0;
    z-index: 10;
    border: 1px solid #eef0e8;
    overflow: hidden;
}
.dropdown-content a {
    display: block;
    padding: 10px 18px;
    color: var(--dark);
    font-weight: 500;
}
.dropdown-content a:hover {
    background: var(--light-bg);
    color: var(--gold);
}
.dropdown:hover .dropdown-content {
    display: block;
}
.nav-cta {
    background: var(--gold);
    color: var(--white);
    padding: 10px 18px;
    border-radius: 50px;
    font-weight: 700;
    box-shadow: 0 6px 18px rgba(212, 175, 55, 0.22);
    margin-left: 6px;
}
.nav-cta:hover {
    background: #b8932e;
    color: var(--white);
}
.hamburger {
    display: none;
    font-size: 1.6rem;
    cursor: pointer;
    color: var(--green);
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.2s ease, color 0.2s ease;
}
.hamburger:hover {
    background: #f5f1e7;
}

/* ---------- HERO ---------- */
.hero {
    /* background: linear-gradient(rgba(26, 77, 62, 0.72), rgba(26, 77, 62, 0.82)), url('https://images.unsplash.com/photo-1605000797499-95a51c5269ae?ixlib=rb-4.0.3&auto=format&fit=crop&w=1600&q=80') center/cover no-repeat; */
    color: var(--white);
    padding: 125px 0 110px;
    text-align: center;
}

.about-hero {
    background: linear-gradient(135deg, rgba(26, 77, 62, 0.95), rgba(26, 77, 62, 0.78)), url('/img/Cassava Chips.jpeg') center/cover no-repeat;
    padding: 120px 0 90px;
}

.about-hero-content {
    max-width: 760px;
    margin: 0 auto;
}

.about-hero .eyebrow {
    display: inline-block;
    margin-bottom: 18px;
    font-size: 0.9rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.82);
}

.about-hero h1 {
    font-size: 3rem;
    margin-bottom: 16px;
}

.about-section {
    padding: 80px 0;
}

.about-section--alt {
    background: #f5f2ea;
}

.about-card,
.mvv-card,
.value-card,
.about-office-card,
.acre-item {
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.about-card {
    padding: 40px;
}

.section-heading {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 24px;
}

.section-heading h2,
.four-acre-copy h2 {
    font-family: 'Playfair Display', serif;
    color: var(--green);
    font-size: 2rem;
}

.section-icon,
.mvv-icon,
.value-icon {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--green), var(--gold));
    color: var(--white);
    font-size: 1.2rem;
}

.about-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 28px;
    align-items: start;
}

.about-copy p {
    margin-bottom: 16px;
    color: var(--grey);
}

.about-office-card {
    padding: 24px;
    background: linear-gradient(135deg, rgba(26, 77, 62, 0.96), rgba(212, 175, 55, 0.9));
    color: var(--white);
}

.about-office-card h3 {
    margin-bottom: 12px;
    font-size: 1.25rem;
}

.about-office-card p {
    margin-bottom: 6px;
}

.section-title {
    text-align: center;
    margin-bottom: 34px;
    color: var(--green);
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    text-wrap: balance;
}

.mvv-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    margin-bottom: 36px;
}

.mvv-card {
    padding: 30px;
    text-align: center;
}

.mvv-card h3 {
    margin: 16px 0 10px;
    color: var(--green);
}

.mvv-card p,
.value-card p,
.four-acre-copy p,
.acre-item p {
    color: var(--grey);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.value-card {
    padding: 24px;
    text-align: center;
}

.value-card h4 {
    margin: 14px 0 8px;
    color: var(--green);
}

.four-acre-layout {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 32px;
    align-items: center;
}

.acre-breakdown {
    display: grid;
    gap: 16px;
    margin-top: 22px;
}

.acre-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 18px 20px;
}

.acre-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--gold);
    min-width: 42px;
}

.about-visual {
    padding: 24px;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(26, 77, 62, 0.06), rgba(212, 175, 55, 0.08));
    text-align: center;
}

.about-visual svg {
    width: min(100%, 420px);
    height: auto;
}

@media (max-width: 900px) {
    .about-grid,
    .four-acre-layout,
    .mvv-grid,
    .values-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .about-card {
        padding: 24px;
    }

    .about-section {
        padding: 60px 0;
    }

    .about-hero h1 {
        font-size: 2.3rem;
    }
}
.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.8rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
    text-wrap: balance;
}
.hero h1 span {
    color: var(--gold);
}
.hero p {
    font-size: 1.18rem;
    max-width: 65ch;
    margin: 0 auto 40px;
    opacity: 0.92;
    line-height: 1.75;
    text-wrap: pretty;
}
.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.quote-hero {
    /* background: linear-gradient(rgba(26, 77, 62, 0.82), rgba(26, 77, 62, 0.9)), url('https://images.unsplash.com/photo-1518780664697-55e3ad937233?ixlib=rb-4.0.3&auto=format&fit=crop&w=1600&q=80') center/cover no-repeat; */
    color: var(--white);
    padding: 100px 0 80px;
    text-align: center;
}

.quote-hero-copy {
    max-width: 840px;
    margin: 0 auto;
}

.quote-hero .eyebrow {
    display: inline-block;
    margin-bottom: 18px;
    font-size: 0.95rem;
    letter-spacing: 0.18em;
    color: rgba(255,255,255,0.85);
    text-transform: uppercase;
}

.quote-hero h1 {
    font-size: 3.1rem;
    line-height: 1.05;
    margin-bottom: 18px;
    text-wrap: balance;
}

.quote-hero p {
    max-width: 760px;
    margin: 0 auto;
    font-size: 1.08rem;
    opacity: 0.92;
}

.quote-page {
    padding: 90px 0 110px;
}

.quote-grid {
    display: grid;
    grid-template-columns: 1.65fr 1fr;
    gap: 32px;
    align-items: start;
}

.quote-form-card,
.quote-sidebar .sidebar-card {
    background: var(--white);
    border-radius: 24px;
    padding: 34px;
    box-shadow: 0 18px 40px rgba(0,0,0,0.05);
    border: 1px solid #eef0e8;
}

.quote-form-card {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.section-header h2 {
    font-size: 2.4rem;
    margin-bottom: 12px;
}

.section-header p {
    color: var(--grey);
    max-width: 720px;
    line-height: 1.8;
}

.inquiry-form {
    display: grid;
    gap: 22px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    font-weight: 600;
    color: var(--dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border-radius: 14px;
    border: 1px solid #d9d6c9;
    background: #faf7f0;
    color: var(--dark);
    font-size: 1rem;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.12);
}

.inquiry-form hr {
    border: none;
    border-top: 1px solid #edeae2;
    margin: 0;
}

.form-consent {
    grid-column: 1 / -1;
}

.form-consent label {
    font-size: 0.95rem;
    color: var(--grey);
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.form-submit {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.form-submit .btn {
    padding: 14px 34px;
}

.form-note {
    color: var(--light-grey);
    font-size: 0.95rem;
    max-width: 320px;
}

    .form-message {
        margin-top: 14px;
        padding: 16px 20px;
        background: #eff9f4;
        border: 1px solid #b8e3cc;
        color: #1c5d40;
        border-radius: 14px;
        font-weight: 600;
        display: none;
    }

    .form-message--visible {
        display: block;
    }
.contact-details {
    list-style: none;
    margin: 24px 0 0;
    padding: 0;
    display: grid;
    gap: 14px;
}

.contact-details li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--dark);
    font-weight: 600;
}

.sidebar-highlight {
    background: #f6f3eb;
}

.sidebar-highlight ul {
    list-style: none;
    margin: 16px 0 0;
    padding: 0;
    display: grid;
    gap: 12px;
}

.sidebar-highlight li {
    color: var(--grey);
    line-height: 1.8;
}

.trust-signals .trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 18px 0;
}

.trust-badges span {
    background: rgba(26, 77, 62, 0.08);
    color: var(--green);
    font-weight: 700;
    padding: 10px 14px;
    border-radius: 999px;
    font-size: 0.92rem;
}

.trust-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: 18px;
}

.trust-stats div {
    background: #fff7e6;
    padding: 16px;
    border-radius: 16px;
    text-align: center;
}

.trust-stats strong {
    display: block;
    font-size: 1.3rem;
    margin-bottom: 6px;
    color: var(--dark);
}

.trust-stats span {
    display: block;
    font-size: 0.92rem;
    color: var(--grey);
}

@media (max-width: 980px) {
    .quote-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 780px) {
    .quote-hero {
        padding: 82px 0 64px;
    }
    .quote-hero h1 {
        font-size: 2.4rem;
    }
    .quote-page {
        padding: 60px 0 70px;
    }
    .form-row {
        grid-template-columns: 1fr;
    }
    .form-submit {
        flex-direction: column;
        align-items: stretch;
    }
    .trust-stats {
        grid-template-columns: 1fr;
    }
}

/* ---------- TRUST BAR ---------- */
.trust-bar {
    background: var(--white);
    padding: 36px 0;
    border-bottom: 1px solid #eee;
}
.trust-logos {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}
.trust-logos img {
    max-height: 48px;
    filter: grayscale(100%);
    opacity: 0.62;
    transition: all 0.3s;
}
.trust-logos img:hover {
    filter: grayscale(0);
    opacity: 1;
    transform: translateY(-1px);
}

/* ---------- SECTION TITLES ---------- */
.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.6rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--green);
    letter-spacing: -0.02em;
    text-wrap: balance;
}
.section-sub {
    font-size: 1.08rem;
    color: var(--grey);
    max-width: 65ch;
    margin: 0 auto 50px;
    text-align: center;
    line-height: 1.75;
    text-wrap: pretty;
}

/* ---------- PRODUCT CARDS ---------- */
.products {
    padding: 90px 0;
    background:
        radial-gradient(circle at top, rgba(212, 175, 55, 0.05), transparent 18%),
        var(--light-bg);
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
}
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 28px;
    margin-top: 40px;
}
.product-card {
    background: var(--white);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(26, 77, 62, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    text-align: center;
    padding-bottom: 26px;
    display: flex;
    flex-direction: column;
    border: 1px solid #eef0e8;
}
.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 36px rgba(26, 77, 62, 0.12);
}
.product-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    object-position: center;
    transform: scale(1.03);
    background: #f0ede8;
    display: block;
}
.product-card .badge {
    display: inline-block;
    background: linear-gradient(90deg, var(--gold), #f1c655);
    color: var(--white);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 999px;
    margin-top: 14px;
}
.product-card h3 {
    font-size: 1.4rem;
    margin: 12px 0 6px;
    color: var(--green);
    letter-spacing: 0.02em;
}
.product-card .sub {
    color: var(--grey);
    font-size: 0.92rem;
    padding: 0 18px;
    margin-bottom: 8px;
    line-height: 1.5;
}
.product-card .specs {
    font-size: 0.9rem;
    color: var(--light-grey);
    margin: 10px 0 6px;
}
.product-card .btn {
    margin-top: 14px;
    padding: 12px 24px;
}
.product-card .nutrition {
    background: #f7f5ef;
    padding: 12px 14px;
    margin: 12px 16px;
    border-radius: 10px;
    font-size: 0.85rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5px 16px;
    text-align: left;
}
.product-card .nutrition span {
    color: var(--grey);
}

.product-detail {
    margin-top: 50px;
    background: var(--white);
    border-radius: 24px;
    padding: 36px;
    box-shadow: 0 18px 40px rgba(0,0,0,0.06);
    border: 1px solid #eef0e8;
}
.detail-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 34px;
    align-items: center;
}
.detail-image-wrapper {
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 18px 40px rgba(26, 77, 62, 0.08);
}
.detail-image-wrapper img {
    width: 100%;
    height: 100%;
    max-height: 500px;
    object-fit: cover;
    display: block;
}
.detail-copy {
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.detail-copy .badge {
    margin-top: 0;
}
.detail-copy h3 {
    font-size: 2rem;
    margin: 0;
}
.detail-copy p {
    color: var(--grey);
    font-size: 1rem;
    line-height: 1.8;
}
.detail-specs {
    color: var(--dark);
    font-weight: 600;
}
.feature-list {
    list-style: none;
    display: grid;
    gap: 10px;
    padding-left: 0;
    margin: 0;
}
.feature-list li {
    color: var(--grey);
    font-size: 0.96rem;
    padding-left: 20px;
    position: relative;
}
.feature-list li::before {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--gold);
}
.detail-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

@media (max-width: 992px) {
    .detail-grid {
        grid-template-columns: 1fr;
    }
    .detail-image-wrapper img {
        max-height: 420px;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .detail-actions {
        flex-direction: column;
        align-items: stretch;
    }
    .product-detail {
        padding: 28px 20px;
    }
    .detail-copy h3 {
        font-size: 1.8rem;
    }
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .header-inner {
        gap: 10px;
    }

    .logo {
        gap: 8px;
        font-size: 1.3rem;
        line-height: 1.1;
    }

    .logo-image {
        height: 42px;
    }

    nav ul {
        display: none;
        flex-direction: column;
        background: var(--white);
        position: absolute;
        top: 70px;
        left: 0px;
        width: 100%;
        padding: 18px 18px 24px;
        box-shadow: 0 12px 24px rgba(0,0,0,0.08);
        z-index: 999;
        align-items: flex-start;
    }

    nav ul.open {
        display: flex;
    }

    nav ul li {
        width: 100%;
    }

    nav ul li a {
        display: block;
        width: 100%;
        padding: 8px 0;
    }

    .dropdown-content {
        position: static;
        box-shadow: none;
        padding-left: 12px;
        padding-top: 6px;
        width: 100%;
    }

    .hamburger {
        display: block;
        margin-left: auto;
    }

    .hero h1 {
        font-size: 2.4rem;
        line-height: 1.2;
    }

    .hero p {
        font-size: 1rem;
        line-height: 1.65;
    }

    .hero {
        padding: 82px 0 68px;
    }

    .section-title {
        font-size: 2rem;
    }

    .section-sub {
        font-size: 1rem;
        padding: 0 8px;
    }

    .product-grid {
        gap: 22px;
    }

    .product-card img {
        height: 220px;
    }

    .product-card .btn {
        width: calc(100% - 32px);
        padding: 12px 16px;
    }
}



.hero {
    position: relative;
    min-height: 50vh;           
    display: flex;
    align-items: center;
    color: white;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-background img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
}

.hero-background img.active {
    opacity: 1;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.45);
    z-index: -1;
}

.container {
    position: relative;
    z-index: 2;
}













/* slideshows tyling for quote page */
.quote-hero {
    position: relative;
    padding: 100px 0 80px;
    text-align: center;
    color: var(--white);
    overflow: hidden;
    min-height: 70vh; /* Adjust as needed */
    display: flex;
    align-items: center;
}

.quote-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    
    /* Pure CSS slideshow animation */
    animation: quote-slideshow 28s infinite ease-in-out;
}

/* Slideshow keyframes - 4 beautiful cassava/agriculture images */
@keyframes quote-slideshow {
    0%   { 
        background-image: linear-gradient(rgba(26, 77, 62, 0.82), rgba(26, 77, 62, 0.9)), 
                          url('https://images.unsplash.com/photo-1518780664697-55e3ad937233?ixlib=rb-4.0.3&auto=format&fit=crop&w=1600&q=80'); 
    }
    25%  { 
        background-image: linear-gradient(rgba(26, 77, 62, 0.82), rgba(26, 77, 62, 0.9)), 
                          url('https://images.unsplash.com/photo-1625246333195-78d9c38ad449?ixlib=rb-4.0.3&auto=format&fit=crop&w=1600&q=80'); 
    }
    50%  { 
        background-image: linear-gradient(rgba(26, 77, 62, 0.82), rgba(26, 77, 62, 0.9)), 
                          url('https://images.unsplash.com/photo-1518780664697-55e3ad937233?ixlib=rb-4.0.3&auto=format&fit=crop&w=1600&q=80'); 
    }
    75%  { 
        background-image: linear-gradient(rgba(26, 77, 62, 0.82), rgba(26, 77, 62, 0.9)), 
                          url('https://images.unsplash.com/photo-1594736797933-d0501ba2fe65?ixlib=rb-4.0.3&auto=format&fit=crop&w=1600&q=80'); 
    }
}

/* Container on top */
.container {
    position: relative;
    z-index: 2;
}



.trust-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    padding: 40px 0;
    text-align: center;
}

.stat-item strong {
    font-size: 2.3rem;
    color: var(--gold);
    display: block;
}

.stat-item span {
    font-size: 1.1rem;
    color: #666;
}

/* ---------- TEAM SECTION ---------- */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
}
.team-card {
    background: var(--white);
    border-radius: 18px;
    padding: 32px 24px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    border: 1px solid #eef0e8;
}
.team-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--green), var(--gold));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    color: var(--white);
    font-size: 1.4rem;
}
.team-card h3 {
    font-size: 1.15rem;
    color: var(--green);
    margin-bottom: 4px;
}
.team-card .team-title {
    font-size: 0.85rem;
    color: var(--gold);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 12px;
}
.team-card p {
    color: var(--grey);
    font-size: 0.92rem;
    line-height: 1.6;
}

/* ---------- MILESTONES TIMELINE ---------- */
.milestones-timeline {
    position: relative;
    max-width: 720px;
    margin: 0 auto;
    padding-left: 40px;
}
.milestones-timeline::before {
    content: '';
    position: absolute;
    left: 14px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--gold), var(--green));
}
.milestone {
    position: relative;
    margin-bottom: 32px;
}
.milestone-dot {
    position: absolute;
    left: -28px;
    top: 6px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--gold);
    border: 3px solid var(--white);
    box-shadow: 0 0 0 2px var(--gold);
    z-index: 1;
}
.milestone-card {
    background: var(--white);
    border-radius: 14px;
    padding: 20px 24px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.06);
    border: 1px solid #eef0e8;
}
.milestone-year {
    display: inline-block;
    background: var(--green);
    color: var(--white);
    font-size: 0.78rem;
    font-weight: 700;
    padding: 3px 12px;
    border-radius: 999px;
    margin-bottom: 8px;
    letter-spacing: 0.04em;
}
.milestone-card h4 {
    color: var(--green);
    font-size: 1.1rem;
    margin-bottom: 6px;
}
.milestone-card p {
    color: var(--grey);
    font-size: 0.92rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .milestones-timeline {
        padding-left: 32px;
    }
    .milestone-dot {
        left: -23px;
        width: 12px;
        height: 12px;
    }
    .team-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 480px) {
    .team-grid {
        grid-template-columns: 1fr;
    }
}

