:root {
    --white: #ffffff;
    --black: #000000;
    --black2: #0f0f0f;
    --black3: #404040;
    --black4: #4a5565;
    --black6: #667085;
    --green: #21562B;
    --orange: #F79520;
    --red: #D31F26;
    --red2: #E3000D;
    --light-green: #ABD037;
    --grey: #f1f2f6;
    --grey2: #D9D9D9;
    --grey-bg: #F4F6F0;
    --grey-bg-2: #F5F5F5;
    --text-80: 5rem;
    --text-75: 4.688rem;
    --text-65: 4.063rem;
    --text-60: 3.75rem;
    --text-45: 2.813rem;
    --text-40: 2.5rem;
    --text-34: 2.125rem;
    --text-32: 2rem;
    --text-30: 1.875rem;
    --text-28: 1.75rem;
    --text-26: 1.65rem;
    --text-24: 1.5rem;
    --text-22: 1.375rem;
    --text-20: 1.25rem;
    --text-18: 1.125rem;
    --text-16: 0.938rem;
    --text-14: 0.875rem;

    --spacing-100: 120px;
}

/* Mobile first (<=767px) */
@media (max-width: 767px) {
    :root {
        --text-80: 3rem;
        --text-75: 2.75rem;
        --text-65: 2.4rem;
        --text-60: 2.2rem;
        --text-45: 1.9rem;
        --text-40: 1.7rem;
        --text-34: 1.5rem;
        --text-32: 1.4rem;
        --text-30: 1.3rem;
        --text-28: 1.2rem;
        --text-26: 1.1rem;
        --text-24: 1rem;
        --text-22: 0.95rem;
        --text-20: 0.9rem;
        --text-18: 0.85rem;
        --text-16: 0.8rem;
        --text-14: 0.75rem;
    }
}

/* Tablet (768pxÃ¢â‚¬â€œ991px) */
@media (min-width: 768px) and (max-width: 991px) {
    :root {
        --text-80: 4rem;
        --text-75: 3.6rem;
        --text-65: 3.1rem;
        --text-60: 2.8rem;
        --text-45: 2.2rem;
        --text-40: 2rem;
        --text-34: 1.75rem;
        --text-32: 1.6rem;
        --text-30: 1.5rem;
        --text-28: 1.4rem;
        --text-26: 1.3rem;
        --text-24: 1.2rem;
        --text-22: 1.15rem;
        --text-20: 1.1rem;
        --text-18: 1rem;
        --text-16: 0.9rem;
        --text-14: 0.8rem;
    }
}

/* Small desktop (992pxÃ¢â‚¬â€œ1199px) */
@media (min-width: 992px) and (max-width: 1200px) {
    :root {
        --text-80: 4.5rem;
        --text-75: 4.2rem;
        --text-65: 3.6rem;
        --text-60: 2.8rem;
        --text-45: 2.5rem;
        --text-40: 2.25rem;
        --text-34: 1.95rem;
        --text-32: 1.85rem;
        --text-30: 1.7rem;
        --text-28: 1.6rem;
        --text-26: 1.5rem;
        --text-24: 1.4rem;
        --text-22: 1.3rem;
        --text-20: 1.2rem;
        --text-18: 1.05rem;
        --text-16: 0.9rem;
        --text-14: 0.85rem;
    }
}


.white {
    color: var(--white);
}

.black {
    color: var(--black);
}

.green {
    color: var(--green);
}

.orange {
    color: var(--orange);
}

.red {
    color: var(--red);
}

.light-green {
    color: var(--light-green);
}

.bg-green {
    background: var(--green);
}

.bg-orange {
    background: var(--orange);
}

.bg-red {
    background: var(--red);
}

.bg-light-green {
    background: var(--light-green);
}

.badge {
    font-size: var(--text-14);
    font-weight: 600;
    border-radius: 4px;
}

/*font sizes*/
.text-80 {
    font-size: var(--text-80);
}

.text-75 {
    font-size: var(--text-75);
}

.text-65 {
    font-size: var(--text-65);
}

.text-60 {
    font-size: var(--text-60);
}

.text-28 {
    font-size: var(--text-28);
}

.text-45 {
    font-size: var(--text-45);
}

.text-40 {
    font-size: var(--text-40);
}

.text-34 {
    font-size: var(--text-34);
}

.text-32 {
    font-size: var(--text-32);
}

.text-30 {
    font-size: var(--text-30);
}

.text-26 {
    font-size: var(--text-26);
}

.text-24 {
    font-size: var(--text-24);
}

.text-22 {
    font-size: var(--text-22);
}

.text-20 {
    font-size: var(--text-20);
}

.text-16 {
    font-size: var(--text-16);
}

.text-14 {
    font-size: var(--text-14);
}

.text-18 {
    font-size: var(--text-18);
}

.fw-bold {
    font-weight: 700 !important;
}

.fw-normal {
    font-weight: 400 !important;
}

.fw-medium {
    font-weight: 500 !important;
}

.fw-semibold {
    font-weight: 600 !important;
}

.italic {
    font-style: italic;
}

.leading-140 {
    line-height: 140% !important;
}

.leading-120 {
    line-height: 120% !important;
}

.leading-100 {
    line-height: 100% !important;
}

/*colors*/

.black {
    color: var(--black);
}

.black2 {
    color: var(--black2);
}

.black3 {
    color: var(--black3);
}

.black4 {
    color: var(--black4);
}

.black5 {
    color: var(--bg-black-russian);
}

.black6 {
    color: var(--black6);
}

.opacity-60 {
    opacity: 0.6;
}

.wrap-balance {
    text-wrap: balance;
}

.radius-8 {
    border-radius: 8px;
}

.stretched-link::after {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
    content: "";
}

.form-container select.form-control {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    /* SVG arrow as background */
    background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23000' stroke-width='1.5'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='m19.5 8.25-7.5 7.5-7.5-7.5' /%3E%3C/svg%3E") no-repeat right 12px center;
    background-size: 16px;
    /* adjust size */
    /* Adjust size of your arrow */
    padding-right: 40px;
    /* Give space for arrow */
}

/* For IE 10/11 hide default arrow */
select.form-control::-ms-expand {
    display: none;
}

.font-lora {
    font-family: "Lora", sans-serif;
}

.font-manrope {
    font-family: "Manrope", sans-serif;
}

html {
    overflow-x: clip;
}

body {
    font-family: "Manrope", sans-serif;
    font-size: var(--text-16);
    color: var(--black);
    overflow-x: clip;
    font-weight: 400;
    text-rendering: optimizeSpeed;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 1205px;
    margin: 0 auto;
}

.skip-link {
    position: absolute;
    left: -9999px;
    top: -9999px;
    z-index: 99999;
    background: #000;
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
}

.skip-link:focus {
    left: 0;
    top: 0;
}

.header-wrap {
    position: fixed;
    top: 40px;
    width: 100%;
    z-index: 1031;
    transition: all 0.3s ease;
    height: 75px;
}

header.header-wrap.sticky {
    top: 20px;
}

.header-wrap .navbar {
    box-shadow: 0px 3px 4.4px 3px rgba(0, 0, 0, 0.07);
    border-radius: 20px;
    background-color: var(--white);
    padding: 0 20px 0px 30px;
}

.header-wrap .navbar-nav .nav-link {
    color: var(--black);
    font-size: var(--text-16);
    padding-left: 0px;
    padding-right: 0px;
}

.header-wrap .navbar-nav .nav-link:hover,
.header-wrap .navbar-nav .nav-link:focus {
    color: var(--green);
}

.header-wrap .navbar-nav li.nav-item {
    display: flex;
    align-items: center;
}



.navbar-toggler {
    background: var(--grey-bg);
    display: flex;
    padding: 8px 14px;
    align-items: center;
    gap: 8px;
    font-size: var(--text-para);
    border-radius: 8px;
    border: none;
    color: var(--black);
    box-shadow: none !important;
    height: 40px;
    justify-content: center;
}

.navbar-toggler svg {
    color: var(--mid-blue);
}

.navbar-toggler:focus {
    border: 1px solid var(--grey3);
    box-shadow: 0 2px 1px rgb(0 0 0 / 5%);
    background: var(--grey-bg);
}

.noneblock {
    display: none !important;
}

.activeblock {
    display: block !important;
}

.opened .noneblock {
    display: block !important;
}

.opened .activeblock {
    display: none !important;
}

@media screen and (min-width: 992px) {
    .header-wrap .navbar-nav .nav-item+.nav-item::before {
        content: "•";
        color: var(--black);
        font-size: var(--text-20);
        display: flex;
        align-items: center;
        margin: 0 20px;
    }
}

@media screen and (max-width: 991.5px) {
    .header-wrap {
        top: 20px;
    }

    .navbar-toggler {
        width: 44px;
        height: 44px;
        border-radius: 50%;
    }

    .header-wrap .navbar {
        padding: 0 14px;
        gap: 10px;
    }

    .header-wrap .navbar .navbar-brand {
        width: 60px;
    }

    /* Overlay – covers the rest of the screen behind the drawer */
    .nav-overlay {
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.35);
        z-index: 1030;
        opacity: 0;
        transition: opacity 0.35s ease;
    }

    .nav-overlay.active {
        display: block;
        opacity: .5;
    }

    .navbar-collapse {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        width: 75%;
        background: white !important;
        height: 100dvh !important;
        overflow-y: auto;
        z-index: 1031;
        padding: 24px;
        padding-bottom: 10%;
        box-shadow: -5px 0px 20px 0px rgba(0, 0, 0, 0.12);
        /* slide-out by default */
        transform: translateX(100%);
        transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .navbar-collapse.show {
        transform: translateX(0);
    }

    /* Close button inside the drawer — same style as the hamburger toggler */
    .drawer-close-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 48px;
        height: 48px;
        border-radius: 50%;
        border: none;
        background: var(--grey-bg);
        color: var(--black);
        cursor: pointer;
        margin-bottom: 16px;
        margin-left: auto;
        flex-shrink: 0;
        transition: background 0.2s ease;
    }

    .drawer-close-btn:hover,
    .drawer-close-btn:focus {
        background: #e2e4df;
        outline: none;
    }

    .header-wrap .navbar-nav .nav-link {
        font-size: var(--text-22);
    }
}

/* Hide close button on desktop */
@media (min-width: 992px) {
    .drawer-close-btn {
        display: none;
    }
}

.btn {
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 30px;
    gap: 12px;
    min-width: 167px;
    font-family: 'Manrope', sans-serif;
    font-size: var(--text-16);
    justify-content: space-between;
    padding: 2px 5px 2px 25px;
    transition: all 0.3s ease;
}

.btn span:first-child {
    flex-grow: 1;
}

.btn .svg-icon svg {
    transition: all 0.3s ease;
}

.btn:hover .svg-icon svg,
.btn:focus .svg-icon svg,
.btn:active .svg-icon svg {
    transform: translate(20%, -45%);
}

.btn-black {
    background: var(--black);
    color: var(--white);

}

.btn .svg-icon {
    background: var(--white);
    border-radius: 9999px;
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-black:hover,
.btn-black:focus,
.btn-black:active,
.btn-white-hero:hover,
.btn-white-hero:focus,
.btn-white-hero:active {
    background: var(--red) !important;
    color: var(--white) !important;
}

/* CTA Button — white pill, same shape as .btn-black in header */
.btn-white-hero {
    background: var(--white);
    color: var(--black);
    border: 1px solid var(--black);
}

.btn-white-hero .svg-icon {
    background: var(--black);
    border-radius: 9999px;
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-white-hero .svg-icon svg path {
    fill: var(--white);
}

.btn-white-hero:hover .svg-icon,
.btn-white-hero:focus .svg-icon,
.btn-white-hero:active .svg-icon {
    background: var(--white) !important;
}

.btn-white-hero:hover .svg-icon svg path,
.btn-white-hero:focus .svg-icon svg path,
.btn-white-hero:active .svg-icon svg path {
    fill: var(--black) !important;
}

.partners-section .btn-black:hover,
.partners-section .btn-black:focus,
.partners-section .btn-black:active {
    background: var(--white) !important;
    color: var(--black) !important;
}

.partners-section .btn-black:hover .svg-icon,
.partners-section .btn-black:focus .svg-icon,
.partners-section .btn-black:active .svg-icon {
    background: var(--red) !important;
}

.partners-section .btn-black:hover .svg-icon svg path,
.partners-section .btn-black:focus .svg-icon svg path,
.partners-section .btn-black:active .svg-icon svg path {
    fill: var(--white) !important;
}

.spacing-y-2 {
    padding-top: var(--spacing-100);
    padding-bottom: var(--spacing-100);
}

.spacing-b-2 {
    padding-bottom: var(--spacing-100);
}

.spacing-t-2 {
    padding-top: var(--spacing-100);
}

@media screen and (max-width: 991.5px) {
    .btn {
        height: 44px;
        min-width: 150px;
    }

    .btn .svg-icon {
        width: 36px;
        height: 36px;
    }

    .spacing-y-2 {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .spacing-b-2 {
        padding-bottom: 40px;
    }

    .spacing-t-2 {
        padding-top: 40px;
    }
}


/* =====================
   HERO SECTION
   ===================== */
.hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 560px;
    overflow: hidden;
    display: flex;
    align-items: center;
}

/* Video fills the entire section */
.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
}

/* Gradient overlay — lighter on left so text pops, fades right */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right,
            rgba(0, 0, 0, 0.55) 0%,
            rgba(0, 0, 0, 0.25) 60%,
            rgba(0, 0, 0, 0.05) 100%);
    z-index: 1;
}

/* Content sits above video + overlay */
.hero-content {
    position: relative;
    z-index: 2;
    padding-top: 150px;
    /* clears fixed header */
    padding-bottom: 60px;
}

/* Heading */
.hero-heading {
    font-family: 'Lora', serif;
    font-weight: 400;
    line-height: 1.1;
    color: var(--white);
    margin-bottom: 2rem;
}

/* Paragraph */
.hero-para {
    font-family: 'Manrope', sans-serif;
    font-size: var(--text-16);
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.7;
    max-width: 380px;
    margin-bottom: 3rem;
}


/* --- Responsive --- */
@media (max-width: 767.5px) {
    .hero-section {
        height: 100dvh;
        min-height: 480px;
        align-items: flex-end;
    }

    .hero-content {
        padding-top: 100px;
        padding-bottom: 48px;
    }

    .hero-heading {
        margin-bottom: 1.5rem;
    }

    .hero-para {
        max-width: 100%;
        margin-bottom: 2rem;
    }

    .hero-overlay {
        background: linear-gradient(to top,
                rgba(0, 0, 0, 0.65) 0%,
                rgba(0, 0, 0, 0.3) 60%,
                rgba(0, 0, 0, 0.05) 100%);
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .hero-content {
        padding-top: 120px;
    }
}

/* =====================
   PARTNERS / SECTORS SECTION
   ===================== */
.partners-section {
    background-color: var(--red);
}

.partners-heading {
    font-family: 'Lora', serif;
    font-size: var(--text-65);
    font-weight: 400;
    line-height: 1.1;
    color: var(--white);
    margin-bottom: 1.15rem;
}

.partners-para {
    font-family: 'Manrope', sans-serif;
    font-size: var(--text-24);
    color: var(--white);
    line-height: 1.5;
    margin-bottom: 2.5rem;
}

/* Cards */
.partner-card {
    background-color: var(--white);
    border-radius: 16px;
    padding: 24px 15% 24px 40px;
    height: 100%;
}

.partner-card-title {
    font-family: 'Lora', serif;
    font-size: var(--text-28);
    font-weight: 600;
    color: var(--green);
    margin-bottom: 0.75rem;
    line-height: 1.2;
}

.partner-card-desc {
    font-family: 'Manrope', sans-serif;
    font-size: var(--text-16);
    color: var(--black);
    line-height: 1.5;
    margin-bottom: 0;
}

.partnerimgae {
    height: 15vw;
}

.partnerimgae img {
    height: 100%;
    object-fit: cover;
    object-position: bottom;
}

/* Responsive */
@media (max-width: 991px) {
    .partners-para {
        max-width: 100%;
    }
}

@media (max-width: 767px) {

    .partner-card {
        padding: 20px;
    }

    .partner-card-title {
        font-size: var(--text-18);
    }
}

/* =====================
   SCALE BACKED BY EXPERIENCE / STATS SECTION
   ===================== */
.stats-section {
    background-color: var(--white);
}

.stats-heading {
    font-family: 'Lora', serif;
    font-weight: 400;
    line-height: 1.1;
    color: var(--green);
    margin-bottom: 2rem;
}

.stats-para {
    font-family: 'Manrope', sans-serif;
    font-size: var(--text-24);
    color: var(--black);
    line-height: 1.5;
    max-width: 90%;
    margin-bottom: 0px;
}

/* Grid: two side-by-side columns */
.stats-grid {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.stats-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* Right column starts lower — creates the stagger */
.stats-col--offset {
    margin-top: 20%;
}

/* Base card */
.stat-card {
    border-radius: 16px;
    padding: 36px 25px 36px 25px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 320px;
    text-wrap: balance;
}

.stat-card--light-green {
    background-color: var(--light-green);
}

.stat-card--green {
    background-color: var(--green);
}

.stat-card--red {
    background-color: var(--red);
}

.stat-card--orange {
    background-color: var(--orange);
}

.stat-number {
    font-size: var(--text-75);
    font-weight: 600;
    color: var(--white);
    line-height: 1;
    display: block;
    margin-bottom: 1rem;
}

/* Light-green card has darker number for contrast */
.stat-card--light-green .stat-number {
    color: var(--white);
}

.stat-label {
    font-family: 'Manrope', sans-serif;
    font-size: var(--text-24);
    color: var(--white);
    line-height: 1.5;
    margin-bottom: 0;
}

/* Responsive */
@media (max-width: 991px) {
    .stats-para {
        max-width: 100%;
    }

    .stats-col--offset {
        margin-top: 40px;
    }

    .stat-card {
        height: 200px;
        padding: 28px 24px;
        text-wrap: inherit;
    }
}

@media (max-width: 767px) {
    .stats-grid {
        gap: 12px;
    }

    .stats-col--offset {
        margin-top: 30px;
    }

    .stat-card {
        height: 200px;
        padding: 22px 20px;
        border-radius: 12px;

    }
}

/* =====================
   ABOUT / LEGACY SECTION
   ===================== */
.about-section {
    background-color: var(--white);
}

.about-img-wrap {
    border-radius: 25px;
    overflow: hidden;
    height: 100%;
}

.image-scale-hover {
    overflow: hidden;
    transition: all 0.3s ease;
    border-radius: 25px;
}

.image-scale-hover img {
    transition: all 0.3s ease;
}

.image-scale-hover:hover img {
    transform: scale(1.05);
}

.about-img-wrap img {
    transition: all 0.3s ease;
}

.about-img-wrap:hover .about-img {
    transform: scale(1.05);
}

.about-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    border-radius: 24px;
}

.about-heading {
    font-family: 'Lora', serif;
    font-weight: 400;
    line-height: 1.2;
    color: var(--green);
    margin-bottom: 1.45rem;
}

.about-para {
    font-family: 'Manrope', sans-serif;
    font-size: var(--text-16);
    color: var(--black);
    line-height: 1.5;
    margin-bottom: 1.25rem;
    max-width: 520px;
}


.about-para:last-of-type {
    margin-bottom: 2rem;
}

.about-para:last-child {
    margin-bottom: 0;
}

@media (min-width: 1200px) {
    :not(.inner-hero-section)~.about-section .row>*:first-child {
        width: calc(652px + 5rem);
    }

    :not(.inner-hero-section)~.about-section .row>*:last-child {
        width: auto;
        flex: 1;
    }

    .about-section .row>*:first-child {
        width: calc(652px + 3rem);
    }

    .about-section .row>*:last-child {
        width: auto;
        flex: 1;
    }

}

@media (min-width: 992px) {
    :not(.inner-hero-section)~.about-section .container>.row {
        --bs-gutter-y: 5rem;
        --bs-gutter-x: 5rem;
    }

    .about-para,
    .about-section .custom-content-wrapper {
        max-width: 420px;
    }

    .family-message-content {
        max-width: 420px;
    }

}

/* Responsive */
@media (max-width: 991px) {
    .about-img-wrap {
        max-height: 380px;
    }

    .about-para {
        max-width: 100%;
    }

    .about-para:last-child {
        margin-bottom: 0;
    }
}

@media (max-width: 767px) {

    .about-img-wrap {
        max-height: 300px;
        border-radius: 18px;
    }

    .about-img {
        border-radius: 18px;
    }
}

/* =====================
   FROM FARM TO MARKET / CAPABILITIES SECTION
   ===================== */
.capabilities-section {
    background-color: var(--white);
}

.capabilities-heading {
    font-family: 'Lora', serif;
    font-weight: 400;
    line-height: 1.1;
    color: var(--green);
    margin-bottom: 1.25rem;
}

.capabilities-para {
    font-family: 'Manrope', sans-serif;
    font-size: var(--text-24);
    color: var(--black);
    line-height: 1.5;
    margin-bottom: 2rem;
    max-width: 500px;
}

/* Capability Cards */
.capability-card {
    border-radius: 16px;
    padding: 5% 9%;
}

.capability-card--green {
    background-color: var(--green);
}

.capability-card--orange {
    background-color: var(--orange);
}

.capability-card--red {
    background-color: var(--red);
}

.capability-card-title {
    font-family: 'Lora', serif;
    font-size: var(--text-22);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.capability-card-desc {
    font-family: 'Manrope', sans-serif;
    font-size: var(--text-16);
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.55;
    margin-bottom: 0;
}

/* Responsive */
@media (max-width: 991px) {
    .capabilities-para {
        max-width: 100%;
    }
}

@media (max-width: 991px) {
    .capability-card {
        padding: 20px 24px;
    }
}

/* =====================
   WHY BUSINESSES CHOOSE KAF SECTION
   ===================== */
.why-kaf-section {
    position: relative;
    overflow: hidden;
}

/* Shared background image — absolutely fills entire section */
.why-kaf-bg-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
    display: block;
}

/* --- Top Panel --- */
.why-kaf-top {
    position: relative;
    z-index: 1;
    min-height: 340px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.why-kaf-overlay {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.why-kaf-overlay--green {
    background-color: #21562BD9;
}

.why-kaf-overlay--red {
    background-color: #D31F26ED;
}

.why-kaf-top-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding-top: 80px;
    padding-bottom: 80px;
}

.why-kaf-heading {
    font-family: 'Lora', serif;
    font-weight: 400;
    line-height: 1.1;
    color: var(--white);
    margin-bottom: 1.25rem;
    max-width: 600px;
    margin: 1rem auto;
}

.why-kaf-intro {
    font-family: 'Manrope', sans-serif;
    font-size: var(--text-24);
    color: var(--white);
    line-height: 1.5;
    max-width: 550px;
    margin: 0 auto;
    font-weight: 400;
}

/* --- Bottom Panel --- */
.why-kaf-bottom {
    position: relative;
    z-index: 1;
    padding: 50px 0;
    padding-bottom: 120px;
}

.why-kaf-bottom-content {
    position: relative;
    z-index: 1;
}

.why-kaf-features {
    display: flex;
    align-items: flex-start;
    gap: 0;
}

.why-kaf-feature {
    flex: 1;
    text-align: center;
    padding: 0 40px;
}

.why-kaf-divider {
    width: 1px;
    align-self: stretch;
    background-color: var(--white);
    flex-shrink: 0;
}

.why-kaf-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.why-kaf-feature-title {
    font-family: 'Lora', serif;
    font-size: var(--text-32);
    font-weight: 400;
    color: var(--white);
    margin-bottom: 1rem;
    line-height: 1.2;
    max-width: 240px;
    margin-left: auto;
    margin-right: auto;
}

.why-kaf-feature-desc {
    font-family: 'Manrope', sans-serif;
    font-size: var(--text-16);
    color: var(--white);
    line-height: 1.5;
    margin-bottom: 0;
    max-width: 84%;
    margin: 0 auto;
}

/* Responsive */
@media (max-width: 991px) {
    .why-kaf-feature {
        padding: 0 24px;
    }
}

@media (max-width: 767px) {
    .why-kaf-top {
        min-height: 260px;
    }

    .why-kaf-top-content {
        padding-top: 56px;
        padding-bottom: 56px;
    }

    .why-kaf-bottom {
        padding: 48px 0;
    }

    .why-kaf-features {
        flex-direction: column;
        gap: 40px;
    }

    .why-kaf-divider {
        width: 80%;
        height: 1px;
        align-self: center;
    }

    .why-kaf-feature {
        padding: 0 30px;
        margin: 0 auto;
    }

    .why-kaf-feature-desc {
        max-width: 100%;
    }
}

.footer {
    background-color: var(--red2);
    color: var(--white);
    padding: 60px 0 60px;
    border-top-left-radius: 50px;
    border-top-right-radius: 50px;
    position: relative;
    overflow: hidden;
}

@media (min-width: 992px) {
    .footer .footer-top>.col-lg-2 {
        width: 12%;
    }

    .footer .footer-top>.col-lg-3 {
        width: 34.3333%;
    }

    .footer-bottom .footer-social {
        justify-content: flex-start !important;
        padding-left: 9.333333%;
        gap: 3rem !important;
    }

    .footer-address {
        margin-top: 33px;
        width: 73%;
        margin-left: auto;
    }
}

/* Watermark "Kaf" text in background */
.footer::before {
    content: url(../images/kaf-footer.svg);
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    line-height: 1;
    user-select: none;
    opacity: .75;
}

/* --- Logo --- */
/* .footer-logo-img {
    filter: brightness(0) invert(1);
} */

/* --- Tagline --- */
.footer-tagline {
    font-family: 'Lora', serif;
    font-size: var(--text-65);
    font-weight: 400;
    line-height: 1.1;
    color: var(--white);
    margin-bottom: 1rem;
}

/* --- Description --- */
.footer-desc {
    font-family: 'Manrope', sans-serif;
    font-size: var(--text-16);
    color: var(--white);
    line-height: 1.5;
    max-width: 100%;
}

/* --- Nav Links --- */
.footer-top {
    padding-bottom: 48px;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin: 0px;
    margin-top: 1.5rem;
}

.footer-nav li a {
    font-family: 'Manrope', sans-serif;
    font-size: var(--text-16);
    color: var(--white);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-nav li a:hover,
.footer-nav li a:focus {
    color: var(--white);
    text-decoration: underline;
}

/* --- Contact Info --- */
.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 14px;
    text-align: right;
    margin: 0;
    margin-top: 1.5rem;
}

.footer-contact li a {
    font-family: 'Manrope', sans-serif;
    font-size: var(--text-16);
    color: var(--white);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-contact li a:hover,
.footer-contact li a:focus {
    color: var(--white);
    text-decoration: underline;
}

.footer-phones {
    line-height: 1.8;
}

.footer-address {
    font-family: 'Manrope', sans-serif;
    font-size: var(--text-16);
    color: var(--white);
    line-height: 1.5;
}

/* --- Footer Bottom --- */
.footer-bottom {
    /* border-top: 1px solid rgba(255, 255, 255, 0.25); */
    padding-top: 0px;
    row-gap: 16px;
}

.footer-copy {
    font-family: 'Manrope', sans-serif;
    font-size: var(--text-16);
    color: var(--white);
}

/* --- Social Icons --- */
.footer-social a {
    color: var(--white);
    transition: color 0.2s ease, transform 0.2s ease;
    display: inline-flex;
    align-items: center;
}

.footer-social a:hover,
.footer-social a:focus {
    color: var(--white);
    transform: translateY(-2px);
}

/* --- Legal Links --- */
.footer-legal a {
    font-family: 'Manrope', sans-serif;
    font-size: var(--text-16);
    color: var(--white);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-legal a:hover,
.footer-legal a:focus {
    color: var(--white);
    text-decoration: underline;
}

/* --- Responsive Adjustments --- */
@media (max-width: 767px) {
    .footer-logo-img {
        width: 100px;
    }

    .footer::before {
        display: none;
    }

    .footer {
        padding: 40px 0 32px;
        border-top-left-radius: 30px;
        border-top-right-radius: 30px;
    }

    .footer-top {
        padding-bottom: 20px;
    }

    .footer-contact {
        text-align: left;
    }

    .footer-bottom {
        text-align: center;
    }

    .footer-legal,
    .footer-social {
        justify-content: center !important;
    }

    .footer-desc {
        max-width: 100%;
    }
}

/* =====================
   FRESHNESS IN SEASON / CAROUSEL SECTION
   ===================== */
.freshness-section {
    background-color: var(--orange);
    overflow: hidden;
}

.freshness-heading {
    font-family: 'Lora', serif;
    font-weight: 400;
    line-height: 1.1;
    color: var(--white);
    margin-bottom: 0px;
}

.freshness-sub {
    font-family: 'Manrope', sans-serif;
    font-size: var(--text-24);
    color: var(--white);
    line-height: 1.7;
    max-width: 550px;
    margin: 0 auto;
}

.freshness-inner .freshness-carousel-wrap {
    margin-top: 2.5rem;
}

/* Carousel wrapper — positions arrows on the sides */
.freshness-carousel-wrap {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0px;
    margin: 0 auto;
    padding: 0;
}

/* The actual slick track container */
.freshness-carousel {
    flex: 1;
    min-width: 0;
    border-radius: 20px;
    overflow: hidden;
}

/* Outer slide padding (slick clones need it) */


/* White product card */
.freshness-card {
    background: var(--white);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 40px 48px 40px 48px;
    gap: 32px;
    min-height: 260px;
    overflow: hidden;
}

.freshness-card-text {
    flex: 0 0 auto;
    max-width: 44%;
    padding: 0 2px 0px 30px;
}

.freshness-card-title {
    font-family: 'Lora', serif;
    font-size: var(--text-60);
    font-weight: 600;
    color: var(--black);
    line-height: 1.1;
    margin-bottom: 1rem;
    max-width: 70%;
}

.freshness-card-desc {
    font-family: 'Manrope', sans-serif;
    font-size: var(--text-24);
    color: var(--black);
    line-height: 1.4;
    margin-bottom: 0;
}

.freshness-card-img {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    height: 367px;
    overflow: visible;
}

.freshness-card-img img {
    height: 100%;
    width: auto;
    object-fit: contain;
    display: block;
}

/* Custom arrow buttons */
.freshness-arrow {
    flex-shrink: 0;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
    z-index: 2;
    padding: 0px;
}



/* Explore button sits below the carousel */
.freshness-section .btn-white-hero {
    margin-top: 1.5rem;
}

/* Responsive */
@media (max-width: 991px) {
    .freshness-carousel-wrap {
        max-width: 100%;
        padding: 0;
        gap: 0;
    }

    .freshness-card {
        padding: 32px 28px;
        gap: 20px;
    }

    .freshness-card-title {
        font-size: var(--text-34);
    }
}

@media (max-width: 767px) {
    .freshness-card {
        flex-direction: column;
        align-items: flex-start;
        padding: 24px 20px;
        gap: 16px;
        min-height: auto;
    }

    .freshness-card-text {
        max-width: 100%;
        padding: 0px;
    }

    .freshness-card-img {
        justify-content: center;
        width: 100%;
        max-height: 180px;
    }

    .freshness-card-img img {
        max-height: 180px;
    }

    .freshness-arrow {
        width: 35px;
        height: 35px;
        background: transparent;
    }

    .freshness-arrow svg {
        width: 100%;
        height: 100%;
    }

}

/* =====================
   OUR GROUP COMPANIES SECTION
   ===================== */
.group-section {
    background-color: var(--white);
}

.group-cards-row {
    justify-content: center;
}

.group-intro {
    margin-bottom: 3rem;
}

.group-heading {
    font-family: 'Lora', serif;
    font-weight: 400;
    line-height: 1.1;
    color: var(--green);
    margin-bottom: 2rem;
}

.group-sub {
    font-family: 'Manrope', sans-serif;
    font-size: var(--text-24);
    color: var(--black);
    line-height: 1.5;
    max-width: 80%;
    margin: 0 auto;
}

/* Logo card tile */
.group-card {
    border: 1px solid #CDCCCC;
    border-radius: 25px;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 28px 24px;
    height: 120px;
    margin-bottom: 2.5rem;
    transition: box-shadow 0.2s ease;
}

.group-card:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.group-card-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    max-height: 80px;
}

.group-card-logo img {
    max-height: 80px;
    width: 90%;
    object-fit: contain;
    display: block;
}

.group-card-desc {
    font-family: 'Manrope', sans-serif;
    font-size: var(--text-16);
    color: var(--black);
    line-height: 1.6;
    margin-bottom: 0;
    padding-right: 10px;
}

/* Responsive */
@media (max-width: 767px) {
    .group-card {
        padding: 20px 16px;
        min-height: 90px;
        height: 90px;
        margin-bottom: 1.5rem;
    }

    .group-card-logo img {
        max-height: 60px;
    }

    .group-sub {
        max-width: 100%;
    }
}

/* =====================
   INNER HERO / CONTACT BANNER
   ===================== */
.inner-hero-section {
    position: relative;
    width: 100%;
    height: 542px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Banner image — fills the section like a background */
.contact-banner-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
    display: block;
}

/* Yellow / orange overlay */
.contact-banner-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(247, 149, 32, 0.82);
    /* --orange at ~82% */
    z-index: 1;
}

/* Green overlay for division banner */
.division-banner-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(33, 86, 43, 0.87);
    /* --green (#21562B) at 87% */
    z-index: 1;
}

.secctor-banner-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(213, 46, 52, 0.77);
    z-index: 1;
}

.product-banner-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(245, 157, 52, 0.87);
    z-index: 1;
}

.about-banner-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(171, 208, 55, 0.95);
    z-index: 1;
}

/* Content sits above the overlay */
.common-banner-content {
    position: relative;
    z-index: 2;
    padding-top: 160px;
    /* clears the fixed navbar */
    padding-bottom: 80px;
    /* width: 69%; */
}

.common-banner-content.text-center {
    width: 69%;
    margin: 0 auto;
}

@media (max-width: 1199px) {
    .common-banner-content.text-center {
        width: 100%;
    }
}


/* Heading */
.common-banner-heading {
    font-weight: 400;
    line-height: 1.1;
    color: var(--white);
    margin-bottom: 1.15rem;
}

/* Paragraph */
.common-banner-para {
    font-size: var(--text-16);
    color: rgba(255, 255, 255, 0.92);
    line-height: 1.7;
    max-width: 80%;
    margin: 0 auto;
}

.about-banner-overlay~.common-banner-content .common-banner-para {
    max-width: 800px;
}

.contact-banner-overlay~.common-banner-content .common-banner-para {
    max-width: 810px;
}

.secctor-banner-overlay~.common-banner-content .common-banner-para {
    max-width: 615px;
}

.division-banner-overlay~.common-banner-content .common-banner-para {
    max-width: 830px;
}


/* Responsive */
@media (max-width: 767px) {
    .inner-hero-section {
        min-height: 280px;
    }

    .contact-banner-content {
        padding-top: 120px;
        padding-bottom: 56px;
    }

}

@media (min-width: 768px) and (max-width: 991px) {
    .contact-banner-content {
        padding-top: 140px;
        padding-bottom: 64px;
    }
}

@media(max-width: 1199px) {
    .common-banner-content {
        width: 100%;
    }
}

/* =====================
   FAMILY MESSAGE SECTION
   ===================== */
.family-message-section {
    background-color: var(--white);
}

.family-message-heading {
    margin-bottom: 1.75rem;
}

.family-message-content p {
    margin-bottom: 0px;
}

.family-author-img {
    border-radius: 25px;
    width: 100%;
}

@media (max-width: 991px) {

    .family-message-heading {
        margin-bottom: 1.5rem;
    }
}

/* =====================
   NURTURING SECTION
   ===================== */
.nurturing-section {
    background-color: var(--red2);
    padding-top: var(--spacing-100);
    padding-bottom: 0;
}

.nurturing-img-overlap {
    margin-bottom: -13%;
    margin-top: 3rem;
}

.nurturing-heading {
    margin-bottom: 1.5rem;
    max-width: 98%;
}


.nurturing-para {
    max-width: 490px;
    margin-left: auto;
    margin-bottom: 0px;
}


/* =====================
   VALUES SECTION
   ===================== */
.values-section {
    padding-top: 19%;
    background-color: var(--white);
    padding-bottom: var(--spacing-100);
}

.values-heading {
    margin-bottom: 4.5rem;
}

.values-section .row {
    --bs-gutter-y: 6rem;
    --bs-gutter-x: 1rem;
}

.value-card {
    text-align: center;
}

.value-icon {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
    height: 70px;
}

.value-icon svg {
    height: 100%;
    width: auto;
}

.value-title {
    font-family: 'Lora', sans-serif;
    font-size: var(--text-26);
    font-weight: 700;
    color: var(--black);
    margin-bottom: 0.75rem;
}

.value-desc {
    font-family: 'Manrope', sans-serif;
    font-size: var(--text-16);
    color: var(--black);
    line-height: 1.5;
    max-width: 97%;
    margin: 0 auto;
    text-align: center;
    text-wrap: balance;
}

@media (max-width: 991px) {
    .nurturing-section {
        padding-top: 40px;
    }

    .values-section .row {
        --bs-gutter-y: 3rem;
        --bs-gutter-x: 1rem;
    }

    .nurturing-para {
        margin-left: 0;
        margin-bottom: 0rem;
    }

    .nurturing-img-overlap {
        bottom: -100px;
    }

    .values-section {
        padding-bottom: 40px;
        padding-top: 22%;
    }

    .values-heading {
        margin-bottom: 3rem;
    }
}

/* =====================
   DIFFERENT SECTION
   ===================== */
.different-section {
    background-color: var(--white);
    padding-top: var(--spacing-100);
    padding-bottom: 350px;
}

.different-heading-wrap h2 {
    max-width: 550px;
    margin: 0 auto;
}

.different-heading-wrap {
    margin-bottom: 4rem;
}

.different-para {
    max-width: 550px;
    margin: 0 auto;
}

.different-card {
    border: 1px solid var(--light-green);
    border-radius: 25px;
    padding: 50px 20px;
    text-align: center;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.different-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(171, 208, 55, 0.2);
}

.different-icon {
    margin-bottom: 1.5rem;
    height: 80px;
    display: flex;
    justify-content: center;
}

.different-icon img {
    height: 100%;
    width: auto;
}

.different-title {
    font-family: 'Lora', serif;
    font-size: var(--text-32);
    color: var(--green);
    margin-bottom: 0;
    line-height: 1.3;
    width: 75%;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
}

/* =====================
   SUSTAINABILITY SECTION
   ===================== */
.sustainability-section {
    background-color: var(--orange);
    padding-top: 0;
    padding-bottom: var(--spacing-100);
}

.sustainability-heading {
    margin-bottom: 1.5rem;
    line-height: 140% !important;
}

.sustainability-para {
    max-width: 510px;
    margin-left: auto;
}

.sustainability-img-overlap img {
    margin-bottom: 3rem;
    margin-top: -19%;
}

@media (max-width: 991px) {
    .different-section {
        padding-top: 40px;
        padding-bottom: 22%;
    }

    .different-heading-wrap {
        margin-bottom: 2.5rem;
    }

    .different-card {
        padding: 40px 20px;
    }

    .different-icon {
        margin-bottom: 2rem;
    }

    .sustainability-section {
        padding-top: 30px;
        padding-bottom: 40px;
    }

    .sustainability-para {
        margin-left: 0;
        margin-top: 1.5rem;
    }
}

/* =====================


   CONTACT FORM SECTION
   ===================== */
.contact-section {
    background-color: var(--white);
}

.contact-form-heading {
    font-family: 'Lora', serif;
    font-weight: 400;
    line-height: 1.1;
    color: var(--green);
    margin-bottom: 2.5rem;
}

/* Info grid — 2 columns */
.contact-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem 1rem;
}

.contact-info-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.contact-info-label {
    font-family: 'Lora', serif;
    font-size: var(--text-26);
    font-weight: 700;
    color: var(--black);
    margin-bottom: 0.1rem;
}

.contact-info-value {
    font-family: 'Manrope', sans-serif;
    font-size: var(--text-16);
    color: var(--black);
    text-decoration: none;
    line-height: 1.3;
    transition: color 0.2s ease;
}

a.contact-info-value:hover,
a.contact-info-value:focus {
    color: var(--green);
    text-decoration: underline;
}

/* Social icons row */
.contact-social-icons {
    display: flex;
    align-items: center;
    gap: 1.75rem;
    margin-top: 0.25rem;
}

.contact-social-link {
    color: var(--black);
    display: inline-flex;
    align-items: center;
    transition: color 0.2s ease, transform 0.2s ease;
}

.contact-social-link:hover,
.contact-social-link:focus {
    color: var(--green);
    transform: translateY(-2px);
}

/* Contact form */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-form-field {
    width: 100%;
}

.contact-form-input {
    width: 100%;
    background-color: var(--grey-bg-2);
    border: none;
    border-radius: 11px;
    padding: 14px 18px;
    font-family: 'Manrope', sans-serif;
    font-size: var(--text-16);
    color: var(--black);
    outline: none;
    transition: background 0.2s ease, box-shadow 0.2s ease;
    resize: none;
}

.contact-form-input::placeholder {
    color: var(--black6);
}

.contact-form-input:focus {
    background-color: #eaedf2;
    box-shadow: 0 0 0 2px rgba(33, 86, 43, 0.25);
}

.contact-form-textarea {
    min-height: 140px;
}

/* Submit button — pill style matching design */
.contact-form-footer,
.contact-form p .btn {
    margin-top: 1.5rem;
}


/* Contact form (Normal & CF7 support) */
.contact-form,
.wpcf7-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-form-field,
.wpcf7-form p {
    width: 100%;
    margin-bottom: 0;
}

.contact-form-input,
.wpcf7-form-control.wpcf7-text,
.wpcf7-form-control.wpcf7-email,
.wpcf7-form-control.wpcf7-tel,
.wpcf7-form-control.wpcf7-textarea {
    width: 100%;
    background-color: var(--grey-bg-2);
    border: none;
    border-radius: 11px;
    padding: 14px 18px;
    font-family: 'Manrope', sans-serif;
    font-size: var(--text-16);
    color: var(--black);
    outline: none;
    transition: background 0.2s ease, box-shadow 0.2s ease;
    resize: none;
}

.contact-form-input::placeholder,
.wpcf7-form-control::placeholder {
    color: var(--black6);
}

.contact-form-input:focus,
.wpcf7-form-control:focus {
    background-color: #eaedf2;
    box-shadow: 0 0 0 2px rgba(33, 86, 43, 0.25);
}

.contact-form-textarea,
.wpcf7-form-control.wpcf7-textarea {
    min-height: 140px;
}


.iframe-container {
    height: 495px;
    border-radius: 35px;
    overflow: hidden;
}


/* Responsive */
@media (max-width: 767px) {
    .contact-info-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem 1rem;
    }

    .contact-form-heading {
        margin-bottom: 1.75rem;
    }

    .iframe-container {
        height: 300px;
    }

    .contact-form-footer,
    .contact-form p .btn {
        margin-top: 1.25rem;
    }
}

.section-wd-para {
    max-width: 550px;
}

.qa-features-list>.row {
    padding-top: 40px;
    padding-bottom: 40px;
}

.qa-features-list>.row:not(:first-child) {
    border-top: 1px solid var(--grey2);
}

.qa-features-list>.row:first-child {
    padding-bottom: 55px;
}

.qa-features-list>.row:last-child {
    border-bottom: 1px solid var(--grey2);
    padding-bottom: 50px;
}

.qa-features-list .col-md-7 p {
    max-width: 510px;
}

.qa-features-list>.row:first-child {
    padding-top: 0px;
}


@media (max-width: 991px) {
    .qa-features-list .col-md-7 p {
        max-width: 100%;
    }

    .qa-features-list>.row {
        padding-top: 20px !important;
        padding-bottom: 20px !important;
    }
}

/* =====================
   SECTOR DETAIL SECTIONS
   ===================== */

.sector-detail-section.bg-orange {
    background-color: var(--orange);
}

.sector-detail-section.bg-red {
    background-color: #E20613;
    /* A brighter red as per design image */
}

.sector-heading {
    margin-bottom: 60px;
}

.sector-heading.green {
    color: var(--green);
}

.sector-heading.white {
    color: var(--white);
}

.sector-card-text {
    border-radius: 25px;
    padding: 11%;
    margin-bottom: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.sector-card-list {
    border-radius: 25px;
    padding: 20px 40px;
}

/* Themes */
.sector-detail-section .sector-card-text.bg-theme,
.sector-detail-section .sector-card-list.bg-theme {
    background-color: #21562B;
    color: var(--white);
}

.sector-detail-section .sector-card-text.bg-white,
.sector-detail-section .sector-card-list.bg-white {
    background-color: var(--white);
    color: var(--black);
}

.sector-detail-section .sector-card-text p {
    font-family: 'Manrope', sans-serif;
    font-size: var(--text-16);
    line-height: 1.5;
    margin-bottom: 0;
}

/* List details */
.sector-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sector-list-item {
    display: flex;
    gap: 30px;
    padding: 15px 0;
    align-items: flex-start;
}

.sector-list-item:first-child {
    padding-top: 0px;
}



.sector-detail-section:nth-child(odd) .sector-list-item:not(:last-child) {
    border-bottom: 1px solid rgba(0, 0, 0, 0.2) !important;
}

.sector-detail-section:nth-child(even) .sector-list-item:not(:last-child) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.5) !important;
}

.sector-list-number {
    font-family: 'Manrope', sans-serif;
    font-size: var(--text-16);
    font-weight: 400;
    padding-top: 4px;
    min-width: 25px;
}

.sector-list-text {
    font-family: 'Manrope', sans-serif;
    font-size: var(--text-16);
    line-height: 1.5;
    margin-bottom: 0;
    max-width: 310px;
}

.sector-detail-section.bg-orange .sector-list-text {
    max-width: 350px;
}

/* Image scaling */
.sector-img-wrap {
    border-radius: 25px;
    overflow: hidden;
}

.sector-img-wrap img {
    border-radius: 25px;
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* Responsive */
@media (max-width: 991px) {

    .sector-card-text,
    .sector-card-list {
        padding: 30px;
    }

    .sector-detail-section .sector-card-text p {
        font-size: var(--text-18);
    }
}

@media (max-width: 767px) {
    .sector-heading {
        margin-bottom: 40px;
    }

    .sector-detail-section .row.flex-column-reverse-mobile {
        flex-direction: column-reverse !important;
    }
}

.sector-rightwrap {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.z-2 {
    z-index: 2;
}

.leading-160 {
    line-height: 1.6;
}

/* Become a Partner CTA Section */
.partner-cta-section {
    position: relative;
    height: 580px;
    display: flex;
    align-items: inherit;
    justify-content: center;
    overflow: hidden;
    margin-bottom: -82px;
    z-index: 0;
}

.partner-cta-section .division-banner-overlay {
    background-color: rgba(33, 86, 43, 0.76);
}

.partner-cta-section h2 {
    font-weight: 400 !important;
}

.partner-cta-section .container {
    padding-top: 95px;
}

.partner-cta-section p {
    max-width: 600px !important;
}


@media screen and (max-width: 991px) {
    .partner-cta-section {
        height: 500px;
        padding: 80px 0;
    }

    .partner-cta-section .container {
        padding-top: 0px;
    }

    .partner-cta-section p {
        max-width: 100% !important;
    }
}

/* =====================
   PRODUCT CATEGORIES SECTION
   ===================== */
.product-categories-section {
    padding-bottom: var(--spacing-100);
}

.product-row {
    margin-bottom: 60px;
}

.product-row:last-child {
    margin-bottom: 0;
}

.category-title {
    font-weight: 400;
    margin-bottom: 40px;
}

.category-title.green {
    color: var(--green);
}

.category-title.red {
    color: var(--red2);
}

/* Carousel Wrap */
.product-carousel-wrap {
    position: relative;
    /* Room for arrows on the right */
}

/* Product Item */
.product-item {
    padding: 10px;
}

.product-card {
    border-radius: 25px;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    aspect-ratio: 1 / 1;
    overflow: hidden;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-card img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

.product-name {
    font-family: 'Lora', serif;
    font-size: var(--text-26);
    font-weight: 700;
    color: var(--black);
    text-align: center;
    margin-bottom: 0px;
}

/* Custom Arrows */
.product-arrow {
    position: absolute;
    right: -13px;
    top: 45%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    z-index: 5;
    transition: background 0.2s ease;
    padding: 0px;
}

.product-arrow.prev {
    right: auto;
    left: -12px;
}

.product-arrow:hover {
    background-color: #1a4522;
}


/* Responsive */
@media (max-width: 767px) {

    .product-item {
        padding: 30px;
    }

    .category-title {
        margin-bottom: 0px;
    }

    .product-row {
        margin-bottom: 40px;
    }

    .product-arrow {
        right: 10px;
    }

    .product-arrow.prev {
        left: 10px;
    }

    .product-categories-section {
        padding-bottom: 40px;
    }
}

/* =====================
   INITIATIVES SECTION
   ===================== */
.initiatives-section {
    background-color: var(--white);
}

.initiative-card {
    width: 85%;
}

.initiative-title {
    font-family: 'Lora', serif;
    font-size: var(--text-32);
    color: var(--green);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    max-width: 90%;
    font-weight: 400;
}

.initiative-desc {
    font-family: 'Manrope', sans-serif;
    font-size: var(--text-16);
    color: var(--black);
    line-height: 1.7;
    margin-bottom: 0px;
    max-width: 280px;
}

[aria-labelledby='distribution-heading'] .col-md-4 p {
    max-width: 280px;
}

@media (max-width: 991px) {
    .initiative-title {
        max-width: 100%;
    }

    .initiative-card {
        width: 100%;
    }

    .initiative-desc,
    [aria-labelledby='distribution-heading'] .col-md-4 p {
        max-width: 100%;
    }
}

/* =====================
   JOURNEY SECTION
   ===================== */
.journey-scroll-track {
    position: relative;
    background-color: var(--green);
    /* Dynamic height will be set by JS */
}

.journey-sticky-wrapper {
    position: relative;
    top: 0;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.journey-section {
    position: relative;
    padding: 0;
    overflow: hidden;
    width: 100%;
}

.journey-slider-container {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.journey-main-slider {
    display: flex;
    height: 100%;
}

.journey-slide {
    background-color: var(--green);
    outline: none;
    cursor: default;
    flex: 0 0 100%;
    height: 100%;
    display: flex;
    align-items: center;
}

.journey-slide-info {
    padding-right: 2rem;
}

.year-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: inline-block;
    background-color: var(--light-green);
    /* box-shadow: 0 0 0 4px rgba(171, 208, 55, 0.3); */
    position: relative;
    margin-left: 6px;
}

.year-dot:before {
    content: "";
    border: 1px solid var(--light-green);
    width: calc(100% + 6px);
    height: calc(100% + 6px);
    position: absolute;
    top: -3px;
    left: -3px;
    border-radius: 50%;
}

.year-text {
    line-height: 1;
}

.journey-desc {
    max-width: 450px;
}

.journey-img-box {
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.journey-img-box img {
    border-radius: 25px;
    object-fit: cover;
    width: 100% !important;
    height: 50vw;
}

.journey-main-img {
    max-height: 100%;
    width: auto !important;
}

/* Arrows */
.journey-arrows {
    z-index: 10;
    display: flex;
    gap: 10px;
    justify-content: flex-end;
    margin-top: 1.5rem;
}

.journey-arrow {
    opacity: .5;
    border: 0;
    padding: 0;
}

/* Timeline */
.journey-timeline-container {
    position: relative;
    padding-top: 12px;
    margin-top: 0;
}

.journey-timeline-line {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-50%);
}

.journey-timeline-slider {
    position: relative;
    z-index: 2;
}

.timeline-nav-item {
    text-align: center;
    cursor: pointer;
    outline: none;
    padding: 20px 0;
    position: relative;
}

.timeline-year {
    display: block;
    color: var(--white);
    font-family: 'Lora', sans-serif;
    font-size: var(--text-16);
    margin-bottom: 60px;
    transition: color 0.3s ease;
    opacity: .5;
}

.timeline-dot {
    width: 10px;
    height: 10px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: inline-block;
    transition: all 0.3s ease;
    position: absolute;
    top: 45%;
    transform: translate(-50%, -50%);
    left: 46%;
    background-color: var(--light-green);
    /* box-shadow: 0 0 0 4px rgba(171, 208, 55, 0.3); */
}

.timeline-dot:before {
    content: "";
    border: 1px solid var(--light-green);
    width: calc(100% + 6px);
    height: calc(100% + 6px);
    position: absolute;
    top: -3px;
    left: -3px;
    border-radius: 50%;
}

.timeline-nav-item.slick-current .timeline-year {
    color: var(--white);
    font-weight: 700;
    opacity: 1;
}

.timeline-nav-item.slick-current .timeline-dot {
    background-color: var(--light-green);
    /* box-shadow: 0 0 0 4px rgba(171, 208, 55, 0.3); */
}

.journey-progress-line {
    position: absolute;
    top: 50%;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--light-green);
    transform: translateY(-50%);
    z-index: 1;
    transition: width 0.5s ease;
}

.journey-slider-container {
    margin-top: 3rem;
}

@media (min-width: 992px) {

    /* Desktop: lay out journey years in a horizontal row (no Slick needed) */
    .journey-timeline-slider {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }

    .journey-timeline-slider .timeline-nav-item {
        flex: 1 1 auto;
        text-align: start;
    }

    /* Highlight active year when JS adds .active (mirror slick-current styles) */
    .timeline-nav-item.active .timeline-year {
        color: var(--white);
        font-weight: 700;
        opacity: 1;
    }

    .timeline-nav-item.active .timeline-dot {
        background-color: var(--light-green);
        box-shadow: 0 0 0 4px rgba(171, 208, 55, 0.3);
    }

    .journey-timeline-slider .slick-track {
        transform: inherit !important;
        display: flex;
        width: 100% !important;
    }

    /* Slick wraps each nav item in .slick-slide — target that for even distribution */
    .journey-timeline-slider .slick-slide {
        flex: 0 0 19.3%;
        width: auto !important;
    }

    .timeline-nav-item {
        text-align: start;
    }

    .timeline-dot {
        left: 8px;
    }

    .different-heading-wrap~.g-4 {
        --bs-gutter-x: 4.5rem;
        --bs-gutter-y: 3.5rem;
    }

    .journey-img-box img {
        height: 320px;

    }

}

@media (max-width: 991px) {
    .journey-img-box {
        margin-top: 2rem;
    }

    .journey-slide-info {
        padding-right: 0;
    }


    .journey-section {
        padding-top: 40px;
        padding-bottom: 0px;
    }

    .values-section .row>*:last-child .value-card {
        margin-bottom: 0px;
    }
}

.about-section .custom-content-wrapper {
    margin-bottom: 30px;
}