/* ─── RESET & BASE ───────────────────────────────────────────── */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none;
}

body {
    font-family: 'Urbanist', sans-serif;
    background: #ffffff;
    color: #1a2e1a;
    overflow-x: hidden;
}

/* ─── PAGE LOAD ENTRANCE ─────────────────────────────────────── */
@keyframes fadeSlideUp {
    from {
        opacity: 0;
        transform: translateY(32px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes floatCard {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    33% {
        transform: translateY(-10px) rotate(0.6deg);
    }

    66% {
        transform: translateY(-5px) rotate(-0.4deg);
    }
}

@keyframes floatCard2 {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    33% {
        transform: translateY(-8px) rotate(-0.5deg);
    }

    66% {
        transform: translateY(-14px) rotate(0.4deg);
    }
}

@keyframes floatCard3 {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-12px) rotate(0.5deg);
    }
}

@keyframes blobPulse {

    0%,
    100% {
        transform: scale(1) rotate(0deg);
    }

    50% {
        transform: scale(1.1) rotate(15deg);
    }
}

@keyframes particleFloat {
    0% {
        transform: translateY(0) translateX(0);
        opacity: 0.4;
    }

    50% {
        transform: translateY(-30px) translateX(12px);
        opacity: 0.9;
    }

    100% {
        transform: translateY(0) translateX(0);
        opacity: 0.4;
    }
}

@keyframes shineSwipe {
    0% {
        left: -80px;
    }

    100% {
        left: 110%;
    }
}

@keyframes navSlideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes badgePop {
    0% {
        transform: scale(0.7);
        opacity: 0;
    }

    80% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes rippleOut {
    0% {
        transform: scale(0.8);
        opacity: 0.5;
    }

    100% {
        transform: scale(2.6);
        opacity: 0;
    }
}

#mainNav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 18px 0;
    background: transparent;
    transition: background 0.4s ease, box-shadow 0.4s ease, padding 0.3s ease, backdrop-filter 0.4s ease;
    animation: navSlideDown 0.7s ease both;
}

#mainNav.scrolled {
    background: linear-gradient(135deg, rgb(71 106 18) 0%, rgba(30, 49, 10, 0.863) 30%, rgba(30, 49, 10, 0.863) 70%, rgb(94 143 43) 100%);
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
    box-shadow: 0 4px 32px rgba(34, 100, 34, 0.10);
    padding: 10px 0;
}

#mainNav.scrolled .navbar-center li a:hover {
    color: rgb(121 164 68);
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.nav-brand img {
    max-width: 260px;
}

.header_bni {
    filter: brightness(0) invert(1);
    max-width: 100px;
    max-height: 90px;
    margin-bottom: 25px;
}

.header_bni {
    filter: brightness(0) invert(1);
    max-width: 260px;
    max-height: 80px;
}

.scrolled .nav-brand img {
    padding: 15px;
    border-radius: 15px;
    max-width: 260px;
}

.navbar-center {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.navbar-center li a {
    position: relative;
    font-size: 18px;
    font-weight: 600;
    color: rgb(255, 255, 255);
    text-decoration: none;
    padding: 8px 14px;
    border-radius: 8px;
    transition: color 0.3s ease, transform 0.25s ease;
    display: block;
    letter-spacing: 0.2px;
}

.navbar-center li a::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #79a444, #79a444);
    border-radius: 2px;
    transform: translateX(-50%);
    transition: width 0.3s ease;
}

.navbar-center li a:hover {
    color: rgb(121 164 68);
}

.navbar-center li a:hover::after,
.navbar-center li a.active::after {
    width: 60%;
}

.navbar-center li a.active {
    color: rgb(121 164 68);
}

.submenu {
    position: absolute;
    top: 120%;
    left: 0;
    min-width: 220px;
    background: #fff;
    border-radius: 8px;
    padding: 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: 0.35s ease;
    z-index: 999;
}

.submenu li {
    list-style: none;
    position: relative;
}

.submenu li a {
    padding: 12px 20px;
    display: block;
    color: #222;
    font-size: 16px;
    line-height: 26px;
    font-weight: 500;
    transition: 0.3s;
    white-space: nowrap;
}

.submenu li a:hover {
    background: #79a444;
    color: #fff !important;
}

.submenu li a:after {
    display: none;
}

.dropdown:hover>.submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.submenu .submenu {
    top: 0;
    left: 100%;
    margin-left: 5px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(10px);
}

.submenu li:hover>.submenu {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.dropdown>a i {
    transition: transform 0.3s ease;
}

.dropdown:hover>a>.fa-chevron-down {
    transform: rotate(180deg);
}

.dropdown i {
    font-size: 12px;
    transition: 0.3s;
}

.submenu .dropdown>a i {
    margin-left: 5px;
}

.btn-default {
    position: relative;
    display: inline-block;
    font-size: 16px;
    font-weight: 700;
    line-height: 1em;
    text-transform: capitalize;
    color: #fff;
    z-index: 0;
    background: #79a444;
    border-radius: 10px;
    border: none;
    padding: 17px 20px;
    transition: 0.5s ease-in-out;
    overflow: hidden;
    text-decoration: none;
}

.btn-default i {
    margin-left: 10px;
}

.btn-default.btn-highlighted::after {
    background: #fff;
}

#mainNav.scrolled .btn-default.btn-highlighted::after {
    background: #ffffff;
    color: #79a444;
}

form .btn-default{
    margin-top: 20px;
}
.scroll-to{
    cursor: pointer;
}
.btn-default::after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: -15%;
    right: 0;
    width: 0;
    height: 106%;
    transform: skew(45deg);
    z-index: -1;
    background: #2c4112;
    transition: 0.4s ease-in-out;
}

.btn-default:hover:after {
    width: 100%;
    transform: skew(0deg);
    left: 0;
}

.btn-default.btn-highlighted:hover {
    color: #79a444;
}

.navbar-toggler {
    border: none;
    outline: none;
    box-shadow: none;
    background: rgba(46, 204, 113, 0.12);
    border-radius: 10px;
    padding: 8px 12px;
    color: #27ae60;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.header-contact-btn,
.bv-oc-footer {
    gap: 12px;
}

/* ============================================================
   OFFCANVAS — REDESIGNED, FIXED
   ============================================================ */

/* Overlay */
.bv-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .55);
    z-index: 1040;
    opacity: 0;
    transition: opacity .35s ease;
}

.bv-overlay.active {
    opacity: 1;
}

/* Drawer */
.bv-offcanvas {
    position: fixed;
    top: 0;
    right: 0;
    width: min(320px, 88vw);
    height: 100dvh;
    z-index: 1050;
    background: #1a2e10;
    display: flex;
    flex-direction: column;
    transform: translateX(110%);
    transition: transform .4s cubic-bezier(.4, 0, .2, 1);
    overflow: hidden;
}

.bv-offcanvas.open {
    transform: translateX(0);
}

/* Header */
.bv-offcanvas-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
    flex-shrink: 0;
}

.bv-offcanvas-header .bv-offcanvas-logo img {
    height: 38px;
    width: auto;
    filter: brightness(0) invert(1);
}

.bv-offcanvas-header .header_bni {
    height: 32px;
    width: auto;
    filter: brightness(0) invert(1);
    max-width: 80px;
}

.bv-close-btn {
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, .08);
    border: none;
    border-radius: 8px;
    color: #fff;
    font-size: 1rem;
    cursor: pointer;
    transition: background .2s;
    flex-shrink: 0;
}

.bv-close-btn:hover {
    background: rgba(255, 255, 255, .18);
}

/* Body */
.bv-offcanvas-body {
    flex: 1;
    overflow-y: auto;
    padding: 12px 10px;
    -webkit-overflow-scrolling: touch;
}

/* Nav list inside offcanvas — RESET desktop styles */
.bv-offcanvas-body .navbar-center {
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    width: 100%;
}

.bv-offcanvas-body .navbar-center li {
    position: relative;
    width: 100%;
}

/* top-level links & toggle buttons */
.bv-offcanvas-body .navbar-center>li>a,
.bv-offcanvas-body .navbar-center>li>button.oc-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 11px 14px;
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    background: none;
    border: none;
    border-radius: 9px;
    cursor: pointer;
    transition: background .2s, color .2s;
}

.bv-offcanvas-body .navbar-center>li>a:hover,
.bv-offcanvas-body .navbar-center>li>button.oc-toggle:hover {
    background: rgba(255, 255, 255, .08);
    color: #fff;
}

/* hide desktop underline pseudo in offcanvas */
.bv-offcanvas-body .navbar-center li a::after {
    display: none !important;
}

/* toggle icon */
.oc-icon {
    font-size: .72rem;
    color: rgba(255, 255, 255, .5);
    transition: transform .3s ease;
    flex-shrink: 0;
}

.bv-offcanvas-body li.oc-open>button.oc-toggle .oc-icon {
    transform: rotate(180deg);
}

/* submenu inside offcanvas — FULLY RESET desktop absolute styles */
.bv-offcanvas-body .submenu {
    position: unset !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    box-shadow: none !important;
    background: unset !important;
    border-radius: 8px !important;
    max-height: 0;
    overflow: hidden;
    transition: max-height .38s ease !important;
    min-width: unset !important;
    width: 100%;
}

.bv-offcanvas-body li.oc-open>.submenu {
    max-height: 600px !important;
    display: block !important;
}

/* submenu links */
.bv-offcanvas-body .submenu li a,
.bv-offcanvas-body .submenu li button.oc-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 9px 14px;
    font-size: .9rem;
    font-weight: 500;
    color: rgba(255, 255, 255, .7) !important;
    text-decoration: none;
    background: none;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background .2s, color .2s;
    white-space: normal;
}

.bv-offcanvas-body .submenu li a:hover,
.bv-offcanvas-body .submenu li button.oc-toggle:hover {
    background: rgba(255, 255, 255, .07) !important;
    color: #fff !important;
}

.bv-oc-divider {
    height: 1px;
    background: rgba(255, 255, 255, .08);
    margin: 8px 0;
}

/* Footer */
.bv-oc-footer {
    padding: 14px 16px 20px;
    border-top: 1px solid rgba(255, 255, 255, .1);
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
}

.bv-oc-footer .btn-default {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 14px 20px;
    font-size: 1rem;
}

/* ─── HERO SECTION ───────────────────────────────────────────── */
.hero-section {
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    height: 100vh;
    background-image: url(../images/same_bnner2.webp);
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center 0px;
}

.hero_row {
    padding-top: 120px;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, rgb(42 64 15 / 75%) 0%, rgba(4, 4, 4, 0.623) 50%, rgb(84 119 41 / 81%) 100%);
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.90;
}

/* Background blobs */
.hero-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    pointer-events: none;
    z-index: 1;
}

.hero-blob-1 {
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, rgba(46, 204, 113, 0.18) 0%, rgba(46, 204, 113, 0) 70%);
    top: -80px;
    left: -120px;
    animation: blobPulse 8s ease-in-out infinite;
}

.hero-blob-2 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(39, 174, 96, 0.14) 0%, rgba(39, 174, 96, 0) 70%);
    bottom: 0;
    right: -60px;
    animation: blobPulse 10s ease-in-out infinite reverse;
}

.hero-blob-3 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(162, 236, 195, 0.25) 0%, rgba(162, 236, 195, 0) 70%);
    top: 50%;
    left: 40%;
    animation: blobPulse 7s ease-in-out infinite 2s;
}

/* Particles */
.particle {
    position: absolute;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(46, 204, 113, 0.35);
    pointer-events: none;
    z-index: 0;
}

.p1 {
    top: 18%;
    left: 8%;
    animation: particleFloat 5s ease-in-out infinite;
}

.p2 {
    top: 60%;
    left: 15%;
    animation: particleFloat 6s ease-in-out infinite 1s;
    width: 5px;
    height: 5px;
}

.p3 {
    top: 30%;
    left: 52%;
    animation: particleFloat 7s ease-in-out infinite 2s;
    background: rgba(46, 204, 113, 0.2);
    width: 9px;
    height: 9px;
}

.p4 {
    top: 75%;
    right: 20%;
    animation: particleFloat 5.5s ease-in-out infinite 0.5s;
}

.p5 {
    top: 12%;
    right: 30%;
    animation: particleFloat 6.5s ease-in-out infinite 3s;
    width: 5px;
    height: 5px;
}

/* Left column */
.hero-left {
    position: relative;
    z-index: 2;
    animation: fadeSlideUp 0.9s ease 0.2s both;
}

/* Welcome badge */
.welcome-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 16px 7px 10px;
    border-radius: 50px;
    background: rgb(121 164 68 / 31%);
    border: 1.5px solid rgb(121 164 38 / 31%);
    font-size: 12px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    margin-bottom: 22px;
    animation: badgePop 0.6s ease 0.5s both;
}

.welcome-badge i {
    font-size: 14px;
    color: #fff;
}

/* Heading */
.hero-heading {
    font-size: 58px;
    font-weight: 900;
    line-height: 68px;
    color: #fff;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
    animation: fadeSlideUp 0.9s ease 0.35s both;
}

.hero-heading .accent {
    color: #79a444;
}

/* Para */
.hero-para {
    font-size: 20px;
    font-weight: 400;
    color: #fff;
    line-height: 30px;
    letter-spacing: 0.5px;
    max-width: 100%;
    margin-bottom: 32px;
    animation: fadeSlideUp 0.9s ease 0.5s both;
}

/* Review row */
.review-row {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 32px;
    animation: fadeSlideUp 0.9s ease 0.65s both;
}

.review-avatars {
    display: flex;
    align-items: center;
}

.review-avatars .av {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 3px solid #fff;
    overflow: hidden;
    margin-right: -12px;
    background: linear-gradient(135deg, #a8e6c0, #27ae60);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    color: #fff;
    font-weight: 700;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.12);
    flex-shrink: 0;
}

.review-avatars .av:nth-child(1) {
    background: linear-gradient(135deg, #74b9b5, #2ecc71);
    z-index: 3;
}

.review-avatars .av:nth-child(2) {
    background: linear-gradient(135deg, #a29bfe, #6c5ce7);
    z-index: 2;
}

.review-avatars .av:nth-child(3) {
    background: linear-gradient(135deg, #fdcb6e, #e17055);
    z-index: 1;
}

.review-avatars {
    margin-right: 14px;
    padding-right: 12px;
}

.review-text {
    display: flex;
    flex-direction: column;
}

.review-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 2px;
}

.review-stars i {
    font-size: 12px;
    color: #f1c40f;
}

.review-count {
    font-size: 13px;
    font-weight: 700;
    color: #1a2e1a;
}

.review-count span {
    color: #888;
    font-weight: 400;
    font-size: 12px;
}

/* CTA Button */
.btn-cta {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 32px;
    border-radius: 50px;
    background: transparent;
    color: #1e8449;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.3px;
    text-decoration: none;
    border: 2.5px solid #27ae60;
    cursor: pointer;
    overflow: hidden;
    transition: color 0.4s ease, border-color 0.4s ease, transform 0.3s ease, box-shadow 0.3s ease;
    animation: fadeSlideUp 0.9s ease 0.75s both;
}

.btn-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #2ecc71, #27ae60);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 0;
    border-radius: inherit;
}

.btn-cta .btn-cta-ripple {
    position: absolute;
    inset: -4px;
    border-radius: 50px;
    border: 2px solid rgba(46, 204, 113, 0.4);
    opacity: 0;
    pointer-events: none;
}

.btn-cta:hover::before {
    transform: scaleX(1);
}

.btn-cta:hover {
    color: #fff;
    border-color: transparent;
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(46, 204, 113, 0.4);
}

.btn-cta:hover .btn-cta-ripple {
    animation: rippleOut 0.55s ease forwards;
}

.btn-cta:hover .cta-arrow {
    transform: translateX(5px);
}

.btn-cta span,
.btn-cta i {
    position: relative;
    z-index: 1;
}

.cta-arrow {
    transition: transform 0.3s ease;
    font-size: 13px;
}

/* ─── RIGHT SIDE CARDS ───────────────────────────────────────── */
.hero-right {
    position: relative;
    z-index: 2;
    width: 100%;
}

.pagination-dots {

    justify-content: center;
    gap: 6px;
    margin-top: 10px;
}

.pagination-dots {
    display: none;
}

/* hidden by default */
.pagination-dots.visible {
    display: flex;
}

/* shown only when overflowing */
 .dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #ccc;
    transition: background 0.3s, transform 0.3s;
    cursor: pointer;
}

.dot.active {
    background: #222;
    transform: scale(1.25);
}


/* FULL WIDTH CARDS */
.product-card {
    position: relative;
    width: 100%;
    max-width: 100%;
    display: block;
    margin-bottom: 25px;
}

/* REMOVE ABSOLUTE POSITIONING */
.card-1,
.card-2,
.card-3 {
    position: relative;
    top: auto;
    bottom: auto;
    left: auto;
    right: auto;
    transform: none !important;
}

/* Card base */
.product-card {

    border-radius: 22px;
    background: rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1.5px solid rgba(255, 255, 255, 0.9);
    box-shadow:
        0 8px 32px rgba(39, 174, 96, 0.12),
        0 2px 8px rgba(0, 0, 0, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    padding: 10px;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.4s ease;
    overflow: hidden;
}

/* Glass reflection */
.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.55) 0%, rgba(255, 255, 255, 0) 100%);
    border-radius: 22px 22px 0 0;
    pointer-events: none;
    z-index: 1;
}

.product-card:hover {
    box-shadow:
        0 20px 56px rgba(39, 174, 96, 0.2),
        0 4px 16px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}




.product-buttons {
    row-gap: 15px;
    margin-top: 20px;
}

.sm-btn{
    max-width: 50%;
    margin: 0 auto;
}

.product-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 18px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    transition: all .3s ease;
}


.product-btn.pdf-btn{
    display: none;
}


.product-btn i {
    transition: 0.3s;
    margin-left: 0;
}

.product-btn:hover i {
    transform: translateX(3px);
}






/* Card image */
.card-img-wrap {
    width: 100%;
    border-radius: 14px;
    overflow: hidden;
    margin-bottom: 14px;
    background: linear-gradient(135deg, #e8f8ee 0%, #c8f0d8 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.card-img-wrap img {
    width: 100%;
    height: 260px;
    object-fit: cover;
}

.card-img-wrap i.card-product-icon {
    font-size: 52px;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.card-1 .card-img-wrap {
    background: linear-gradient(135deg, #d4f1e4 0%, #a8e6c0 100%);
}

.card-1 .card-img-wrap i {
    color: #1e8449;
}

.card-2 .card-img-wrap {
    background: linear-gradient(135deg, #dff7f0 0%, #a0ddd0 100%);
}

.card-2 .card-img-wrap i {
    color: #16a085;
}

.card-3 .card-img-wrap {
    background: linear-gradient(135deg, #fdf6e3 0%, #f9e4a0 100%);
}

.card-3 .card-img-wrap i {
    color: #d4ac0d;
}

.product-card:hover .card-product-icon {
    transform: scale(1.15) rotate(-6deg);
}

/* Card badge */
.card-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 3;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.card-badge.eco {
    background: linear-gradient(135deg, #2ecc71, #27ae60);
    color: #fff;
}

.card-badge.water {
    background: linear-gradient(135deg, #00b894, #00cec9);
    color: #fff;
}

.card-badge.solar {
    background: linear-gradient(135deg, #fdcb6e, #e17055);
    color: #fff;
}

/* Card info row */
.card-info {
    position: relative;
    z-index: 2;
}

.card-title {
    font-size: 16px;
    line-height: 26px;
    font-weight: 800;
    color: #0d2414;
    margin-bottom: 4px;
    letter-spacing: 0.5px;
    text-align: center;
}

.card-price {
    font-size: 13px;
    font-weight: 700;
    color: #27ae60;
}

.card-price span {
    color: #aaa;
    font-weight: 400;
    font-size: 11px;
    text-decoration: line-through;
    margin-left: 4px;
}

/* Card footer actions */
.card-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 12px;
    position: relative;
    z-index: 2;
}

.card-stars {
    display: flex;
    gap: 2px;
    align-items: center;
}

.card-stars i {
    font-size: 10px;
    color: #f1c40f;
}

.card-stars span {
    font-size: 11px;
    font-weight: 600;
    color: #666;
    margin-left: 4px;
}

.card-cart-btn {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: none;
    background: linear-gradient(135deg, #2ecc71, #27ae60);
    color: #fff;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 3px 12px rgba(46, 204, 113, 0.35);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-cart-btn:hover {
    transform: scale(1.15);
    box-shadow: 0 6px 18px rgba(46, 204, 113, 0.5);
}

/* Center connector glow */
.hero-center-glow {
    position: absolute;
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, rgba(46, 204, 113, 0.12) 0%, rgba(46, 204, 113, 0) 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
    animation: blobPulse 6s ease-in-out infinite;
}




/************************************/
/*** 	    About Us css          ***/
/************************************/

.about-us {
    padding: 100px 20px;
    position: relative;
    background-color: rgba(128, 159, 71, 0.03);
    overflow: hidden;
}

.about-us::before {
    content: "";
    position: absolute;
    background-image: linear-gradient(rgba(34, 90, 50, 0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(34, 90, 50, 0.04) 1px, transparent 1px);
    background-size: 48px 48px;
    pointer-events: none;
    inset: 0px;
    opacity: 0.7;
}

.image-anime {
    position: relative;
    overflow: hidden;
}


.image-anime:after {
    content: "";
    position: absolute;
    width: 200%;
    height: 0%;
    left: 50%;
    top: 50%;
    background-color: rgba(255, 255, 255, .3);
    transform: translate(-50%, -50%) rotate(-45deg);
    z-index: 1;
}

.image-anime:hover:after {
    height: 250%;
    transition: all 600ms linear;
    background-color: transparent;
}

.section-title h2 {
    font-size: 46px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 56px;
    letter-spacing: 0.5px;
    text-transform: capitalize;
}


.section-title h3.subtitle {
    display: inline-block;
    position: relative;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.5em;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--primary-color);
    background: url(../images/icon-sub-heading.svg) no-repeat;
    background-position: left center;
    background-size: 24px auto;
    padding-left: 34px;
    margin-bottom: 15px;
}

.about_para {
    font-size: 18px;
    line-height: 28px;
    letter-spacing: 0.5px;
    font-weight: 500;
}

.about-images {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.about-img-1,
.about-img-2 {
    width: calc(50% - 15px);
}

.about-img-1 figure,
.about-img-2 figure {
    display: block;
    border-radius: 999px;
}

.about-img-1 img,
.about-img-2 img {
    width: 100%;
    aspect-ratio: 1 / 1.9;
    object-fit: cover;
    border-radius: 999px;
}

.about-img-2 {
    margin-top: 70px;
}

.years-experience-box {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 160px;
    height: 160px;
    z-index: 99;
    align-content: center;
    text-align: center;
    background: #79a444;
    border: 10px solid #fff;
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.years-experience-box::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #263811;
    border-radius: 50%;
    height: 100%;
    width: 100%;
    transform: scale(0);
    transition: all 0.4s ease-in-out;
    z-index: 0;
}

.about-images:hover .years-experience-box::before {
    transform: scale(1);
}

.years-experience-box h2,
.years-experience-box p {
    position: relative;
    z-index: 1;
}

.years-experience-box h2 {
    font-size: 46px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 2px;
}

.years-experience-box p {
    line-height: normal;
    color: #fff;
    margin-bottom: 0;
    letter-spacing: 0.5px;
    font-size: 16px;
}

.about-us-content {
    margin-left: 20px;
}

.about-us-body {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.about-body-item {
    width: calc(50% - 15px);
    display: flex;
    align-items: center;
    background: #fff;
    border: 1px solid #03221b1a;
    border-radius: 20px;
    padding: 20px;
}

.about-body-item .icon-box {
    position: relative;
    width: 60px;
    height: 60px;
    background: #79a444;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
}

.about-body-item .icon-box::before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    left: 0;
    background: #263811;
    border-radius: 50%;
    width: 100%;
    height: 100%;
    transform: scale(0);
    transition: all 0.4s ease-in-out;
}

.about-body-item:hover .icon-box::before {
    transform: scale(1);
}

.about-body-item .icon-box img {
    position: relative;
    width: 100%;
    max-width: 36px;
    z-index: 1;
}

.about-body-item-title {
    position: relative;
    width: calc(100% - 70px);
    z-index: 1;
}

.about-body-item-title h3 {
    font-size: 20px;
    text-transform: capitalize;
    line-height: 30px;
    letter-spacing: 0.5px;
}

.about-us-footer {
    margin-top: 40px;
}

.about-us-footer {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px 50px;
    margin-top: 40px;
}

.about-author-box {
    display: flex;
    align-items: center;
}

.about-author-box .author-image {
    display: block;
    border-radius: 50%;
}

.about-author-box .author-image figure {
    display: block;
    border-radius: 50%;
}

.about-author-box .author-image img {
    width: 100%;
    max-width: 60px;
    border-radius: 50%;
}

.about-author-box .author-info h3 {
    font-size: 22px;
    margin-bottom: 5px;
}

.about-author-box .author-info p {
    margin-bottom: 0;
}




/************************************/
/*** 	   What We Do css          ***/
/************************************/
/* ── SECTION ── */
.what_we_do_section {
    display: none;
    padding: 100px 0 100px;
    position: relative;
    overflow: hidden;
    /* background: linear-gradient(135deg, rgb(71 106 18) 0%, rgba(30, 49, 10, 0.863) 30%, rgba(30, 49, 10, 0.863) 70%, rgb(94 143 43) 100%); */
    background-color: #809f4708;
}

/* subtle grid watermark */
.what_we_do_section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(34, 90, 50, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(34, 90, 50, 0.04) 1px, transparent 1px);
    background-size: 48px 48px;
    pointer-events: none;
}

.what_we_do_section .subtitle {
    color: #000 !important;
}

.what_we_do_section h2.text-anime-style-3 {
    color: #000;
}

/* ── PILL LABEL ── */
.section-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #79a444;
    color: #a8e6ba;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    padding: 7px 18px;
    border-radius: 100px;
    margin-bottom: 22px;
}

.section-pill span.dot {
    width: 6px;
    height: 6px;
    background: #79a444;
    border-radius: 50%;
    display: inline-block;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.4;
        transform: scale(1.4);
    }
}

/* ── HEADING ── */
.section-headline {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 700;
    color: #0e2b18;
    line-height: 1.15;
    margin-bottom: 16px;
}

.section-headline em {
    font-style: italic;
    color: #79a444;
}

.section-subtext {
    color: #4a6657;
    font-size: 16px;
    font-weight: 300;
    max-width: 460px;
    line-height: 1.75;
    margin-bottom: 0;
}

/* ── DIVIDER LINE ── */
.heading-rule {
    width: 56px;
    height: 3px;
    background: linear-gradient(90deg, #79a444, #79a444);
    border-radius: 4px;
    margin: 24px 0;
}

/* ── CARDS WRAPPER ── */
.what_we_do_section .cards-row {
    margin-top: 15px;
}

/* ── CARD ── */
.wwd-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    transition: transform 0.35s cubic-bezier(.22, .68, 0, 1.2), box-shadow 0.35s ease;
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.wwd-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 24px 56px rgba(26, 92, 46, 0.16);
}

/* accent stripe on top */
.wwd-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #79a444, #79a444);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.wwd-card:hover::before {
    transform: scaleX(1);
}

/* ── CARD IMAGE PANEL ── */
.card-img-panel {
    width: 100%;
    height: 220px;
    background: linear-gradient(140deg, #eaf6ed 0%, #c8ecd4 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
    position: relative;
    padding: 20px;
}

.card-img-panel img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.5s ease;
}

.wwd-card:hover .card-img-panel img {
    transform: scale(1.06);
}

/* fallback SVG illustration fill */
.card-img-panel svg {
    width: 140px;
    height: 140px;
}

/* ── CARD BODY ── */
.card-body-inner {
    padding: 30px 28px 32px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.card-tag {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #79a444;
    margin-bottom: 10px;
}

.card-title-text {
    font-size: 22px;
    font-weight: 700;
    color: #0e2b18;
    line-height: 1.3;
    margin-bottom: 14px;
}

.card-desc {
    font-size: 16px;
    color: #414141;
    line-height: 1.8;
    font-weight: 400;
    flex: 1;
    letter-spacing: 0.5px;
}

/* ── CARD FOOTER LINK ── */
.card-link-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 22px;
    color: #79a444;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    width: fit-content;
    transition: gap 0.25s ease;
}

.card-link-row:hover {
    gap: 14px;
    color: #0e2b18;
}

.card-link-row .arrow-circle {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1.5px solid #79a444;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.25s, border-color 0.25s;
}

.card-link-row:hover .arrow-circle {
    background: #79a444;
    border-color: #79a444;
}

.card-link-row:hover .arrow-circle svg path {
    stroke: #fff;
}

/* ── FEATURED (first) CARD ── */
.wwd-card.is-featured {
    background: linear-gradient(160deg, #0e2b18 0%, #79a444 100%);
    color: #fff;
}

.wwd-card.is-featured .card-img-panel {
    background: linear-gradient(140deg, #79a444 0%, #0e2b18 100%);
}

.wwd-card.is-featured .card-tag {
    color: #79a444;
}

.wwd-card.is-featured .card-title-text {
    color: #ffffff;
}

.wwd-card.is-featured .card-desc {
    color: rgba(255, 255, 255, 0.7);
}

.wwd-card.is-featured .card-link-row {
    color: #79a444;
}

.wwd-card.is-featured .card-link-row .arrow-circle {
    border-color: #79a444;
}

.wwd-card.is-featured:hover .arrow-circle {
    background: #79a444;
    border-color: #79a444;
}

.wwd-card.is-featured:hover .arrow-circle svg path {
    stroke: #0e2b18;
}

.wwd-card.is-featured::before {
    background: linear-gradient(90deg, #79a444, #a8e6ba);
}

.wwd-card.is-featured .card-number {
    color: rgba(255, 255, 255, 0.08);
}

/* ── STATS STRIP ── */
/* .stats-strip {
    margin-top: 72px;
    background: #79a444;
    border-radius: 20px;
    padding: 36px 48px;
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 24px;
}

.stat-item {
    text-align: center;
}

.stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 38px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1;
}

.stat-num span {
    color: #79a444;
}

.stat-label {
    font-size: 12px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
    margin-top: 6px;
    font-weight: 500;
}

.stat-divider {
    width: 1px;
    height: 48px;
    background: rgba(255, 255, 255, 0.15);
} */

/************************************/
/*** 	   Why Choose Us css          ***/
/************************************/

.why-choose-us {
    padding: 100px 0 100px;
}

.why-choose-content .section-title p {
    font-size: 18px;
    line-height: 28px;
    letter-spacing: 0.5px;
    font-weight: 500;
}

.reveal img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    transform-origin: left center;
}

figure {
    margin: 0;
}


.why-choose-images {
    display: flex;
    flex-wrap: wrap;
    align-items: start;
    gap: 30px;
    margin-left: 15px;
    position: relative;
}

.leaf_first {
    animation: motion-fold 3000ms 1ms linear infinite;
    position: absolute;
    top: 0;
    right: 0;
    transform: translateX(0px) translateY(-30%) scaleX(1) scaleY(1) rotate(16deg) skewX(0deg) skewY(0deg);
}

.leaf_second {
    animation: glowMove 4s linear infinite;
    position: absolute;
    bottom: 0;
    left: 0;
    transform: translateX(0px) translateY(0%) scaleX(1) scaleY(1) rotate(70deg) skewX(0deg) skewY(0deg);
}


@keyframes glowMove {

    0% {
        transform: translate(-20px, -10px);
        opacity: .5;
    }

    50% {
        transform: translate(20px, 10px);
        opacity: 1;
    }

    100% {
        transform: translate(-20px, -10px);
        opacity: .5;
    }
}


@keyframes motion-fold {
    0% {
        transform:
            translateY(0px) rotate(0deg) scale(1);
    }

    25% {
        transform:
            translateY(-15px) rotate(2deg) scale(1.02);
    }

    50% {
        transform:
            translateY(-25px) rotate(-2deg) scale(1.04);
    }

    75% {
        transform:
            translateY(-10px) rotate(1deg) scale(1.02);
    }

    100% {
        transform:
            translateY(0px) rotate(0deg) scale(1);
    }
}


.why-choose-image-box-1 {
    width: calc(48% - 15px);
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.why-choose-image-box-2 {
    width: calc(52% - 15px);
    margin-top: 100px;
}

.why-choose-image {
    width: 100%;
}

.why-choose-image figure {
    display: block;
    border-radius: 20px;
}

.why-choose-image img {
    width: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.why-choose-image.why-img-1 {
    aspect-ratio: 1 / 1.065;
}

.why-choose-image.why-img-2 img {
    aspect-ratio: 1 / 0.78;
}

.why-choose-image.why-img-3 img {
    aspect-ratio: 1 / 1.692;
}


/************************************/
/*** 	  Our Product css         ***/
/************************************/
.our-products.dark-section {
    padding: 100px 20px;
    background-color: #f3ecec;
    background-image: url(../images/dark-section-bg-image.webp);
    background-repeat: no-repeat;
    background-position: top center;
    background-size: cover;
    margin: 0 30px;
    border-radius: 10px;
}

.our-products .subtitle {
    color: #000 !important;
}

.our-products h2.text-anime-style-3 {
    color: #000 !important;
}

.our-products .section-btn {
    text-align: end;
}

.section-row {
    margin-bottom: 50px;
}

.products-item-body-silver {
    padding: 0 10px 30px;
    text-align: center;
}

.products-item-silver {
    background-color: #fff;
    border-radius: 14px;
    height: calc(100% - 30px);
    margin-bottom: 30px;
    padding: 10px;
}

.products-item-image-silver a {
    display: block;
    border-radius: 14px;
    overflow: hidden;
}

.products-item-image-silver img {
    width: 100%;
    aspect-ratio: 1 / 0.667;
    object-fit: cover;
    transition: all 0.6s ease-in-out;
}

.products-item-body-silver .icon-box {
    position: relative;
    height: 60px;
    width: 60px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background-color: #79a444;
    border: 2px solid #ffffff;
    border-radius: 50%;
    overflow: hidden;
    margin-top: -30px;
    margin-bottom: 30px;
    z-index: 1;
    text-align: center;
    margin-inline:auto;
}



.products-item-silver:hover .products-item-image-silver img {
    transform: scale(1.06);
}



.products-item-body-silver .icon-box::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    background: #2c4112;
    border-radius: 50%;
    width: 100%;
    height: 100%;
    transform: scale(0);
    transition: all 0.4s ease-in-out;
    z-index: 0;
}

.products-item-silver:hover .products-item-body-silver .icon-box::before {
    transform: scale(1);
}

.products-item-body-silver .icon-box img {
    position: relative;
    width: 100%;
    max-width: 30px;
    transition: all 0.4s ease-in-out;
    z-index: 1;
}

.products-item-silver:hover .products-item-body-silver .icon-box img {
    filter: brightness(0) invert(1);
}


.products-item-silver .products-item-body-silver .icon-box img {
    filter: brightness(0) invert(1);
}

.products-item-content-silver h2 {
    font-size: 24px;
    line-height: 34px;
    letter-spacing: 0.5px;
    font-weight: 600;

}

.products-item-content-silver h2 a {
    color: inherit;
}

.products-item-content-silver p {
    margin: 10px 0 0;
    font-size: 16px;
    letter-spacing: 0.5px;
    line-height: 26px;
    font-weight: 500;
}


/************************************/
/*** 	  Partners css      ***/
/************************************/

.major-partners {
    padding: 100px 20px;
}

.partner-marquee {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    overflow: hidden;
}

.partner-marquee .partner-marquee-layout {
    flex: none;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    animation: partner-marquee 50s linear infinite;
}

@keyframes partner-marquee {
    0% {
        -webkit-transform: translateX(0%);
        transform: translateX(0%);
    }

    100% {
        -webkit-transform: translateX(-100%);
        transform: translateX(-100%);
    }
}

.partner-marquee .partner-marquee-layout .partner-1 {
    width: 200px;
    flex: none;
    margin-right: 30px;
}

.partner-1 {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 25px 30px;
    max-width: 202px;
    height: 119px;
    width: 100%;
    background-color: #1d2e0a21;
    border-radius: 8px;
}

.partner-1 img {
    max-width: 100%;
    object-fit: contain;
    width: 100%;
    height: 100%;
}

.major-partners .p-t-60 {
    padding-top: 30px;
}


/************************************/
/*** 	  Contact Section css      ***/
/************************************/

.contact_section {
    padding: 100px 20px;
    /* background: linear-gradient(135deg, rgb(71 106 18) 0%, rgba(30, 49, 10, 0.863) 30%, rgba(30, 49, 10, 0.863) 70%, rgb(94 143 43) 100%); */
    /*background-color: #fbfcf9;*/
    background-repeat: no-repeat;
    background-position: bottom left;
    background-size: 100% auto;
    position: relative;
}

.contact_section h3 {
    color: #000 !important;
}

.contact_section h2 {
    color: #000 !important;
}

.contact_section .container {
    z-index: 9;
    position: relative;
}

.contact_section::before {
    content: '';
    position: absolute;
    /*background: url(../images/section-bg-3.png);*/
    background-repeat: no-repeat;
    background-position: bottom left;
    background-size: 100% auto;
    top: 0;
    height: 100%;
    width: 100%;
    opacity: 0.2;
}


.video-slider {
    margin: 0 40px 0 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.video-slider video {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    border: 2px solid #000;
}

.video-content h4 {
    margin: 0 0 8px;
    font-size: 22px;
    font-weight: 700;
    color: #111;
}

.video-content p {
    margin: 0;
    color: #666;
    line-height: 1.6;
}

/* Slick Arrows */
.slick-prev,
.slick-next {
    width: 45px;
    height: 45px;
    background: #79a444 !important;
    border-radius: 50%;
    z-index: 9;
}

.slick-prev:before,
.slick-next:before {
    font-size: 20px;
    opacity: 1;
}

.slick-prev {
    left: -15px;
}

.slick-next {
    right: -15px;
}

/* Dots */
.slick-dots li button:before {
    font-size: 12px;
    color: #111;
}


.contact_section form {
    background: #fff;
    padding: 35px 25px;
    border-radius: 10px;
    box-shadow: 0 4px 32px rgb(121 164 68 / 19%);
}

.contact-form-box {
    color: #fff;
    padding: 18px 18px;
    border-radius: 30px;
    font-size: 14px;
    margin-bottom: 15px;
}

.form-heading h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 15px;
    color: #111;
}

.form-heading p {
    color: #666;
    margin-bottom: 30px;
    line-height: 1.7;
}

.custom-input {
    border-radius: 14px;
    border: 1px solid #ddd;
    padding: 12px 18px;
    box-shadow: none !important;
    transition: 0.3s ease;
}

.custom-input:focus {
    border-color: #111;
}

.custom-textarea {
    height: auto;
    resize: none;
    padding-top: 15px;
}

.submit-btn {
    width: 100%;
    height: 58px;
    border: none;
    border-radius: 14px;
    background: #111;
    color: #fff;
    font-size: 17px;
    font-weight: 600;
    transition: 0.3s ease;
}

.submit-btn:hover {
    background: #333;
}

/************************************/
/*** 	  Quote Section css      ***/
/************************************/

.quote-section {
    background: #f4fbf7;
    padding: 80px 0;
    border-top: 1px solid #c9ead9;
    border-bottom: 1px solid #c9ead9;
}

.about-intro .row {
    margin-bottom: 30px;
}


.featured-quote {
    text-align: center;
    padding: 48px 60px;
    background: #4c7323;
    border-radius: 16px;
    position: relative;
    overflow: hidden;
}


.featured-quote::before {
    content: '"';
    position: absolute;
    font-size: 200px;
    color: rgba(255, 255, 255, 0.06);
    font-family: Georgia, serif;
    top: -40px;
    left: 20px;
    line-height: 1;
}

.featured-quote-text {
    font-size: 22px;
    line-height: 1.65;
    color: #e1f5ee;
    font-style: italic;
    font-family: Georgia, serif;
    margin-bottom: 28px;
    position: relative;
}

.featured-quote-leaf {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 16px;
}

.leaf-line {
    width: 40px;
    height: 1px;
    background: #36501b;
}

.leaf-icon {
    color: #36501b;
}

.featured-author {
    font-size: 16px;
    line-height: 26px;
    font-weight: 500;
    color: #fff;
    letter-spacing: 0.5px;
    margin: 0;
}


/************************************/
/*** 	  Footer Section css      ***/
/************************************/

.main-footer {
    position: relative;
    background: url('../images/footer-bg.jpg') no-repeat;
    background-position: center center;
    background-size: cover;
    padding: 100px 0px 0px;
}

.main-footer .container {
    z-index: 1;
    position: relative;
}

.main-footer:after {
    content: '';
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: #162405;
    opacity: 97%;
}

.main-footer-box {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    border-bottom: 1px solid #ffffff25;
    margin-bottom: 60px;
    padding-bottom: 60px;
}

.footer-logo {
    width: 20%;
}

.footer-logo img {
    width: 100%;
    max-width: 260px;
}

.footer-contact-details {
    width: 80%;
    display: flex;
    flex-wrap: wrap;
    justify-content: end;
    gap: 20px 40px;
}

.footer-contact-item {
    display: flex;
    align-items: center;
}

.footer-contact-item.address_details {
    max-width: 45%;
    width: 100%;
}

.footer-contact-item .icon-box {
    position: relative;
    width: 60px;
    height: 60px;
    background-color: #79a444;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
}

.footer-contact-item .icon-box:before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--accent-secondary-color);
    border-radius: 50%;
    height: 100%;
    width: 100%;
    transform: scale(0);
    transition: all 0.4s ease-in-out;
    z-index: 0;
}

.footer-contact-item:hover .icon-box::before {
    transform: scale(1);
}

.footer-contact-item .icon-box img {
    position: relative;
    width: 100%;
    max-width: 30px;
    z-index: 1;
}

.footer-contact-item-content {
    width: calc(100% - 80px);
}

.footer-contact-item-content h3 {
    color: #fff;
    font-size: 22px;
    line-height: 32px;
    text-transform: capitalize;
    margin-bottom: 3px;
    letter-spacing: 0.5px;
}

.footer-contact-item-content p {
    color: #fff;
    margin: 0;
    letter-spacing: 0.5px;
    font-size: 16px;
    line-height: 26px;
}

.footer-contact-item-content p a {
    color: inherit;
    transition: all 0.3s ease-in-out;
}

.footer-contact-item-content p a:hover {
    color: var(--accent-secondary-color);
}

.about-footer {
    padding-right: 60px;
}

.footer-links p {
    color: #fff;
    margin: 0;
    font-size: 16px;
    line-height: 26px;
    letter-spacing: 0.5px;
}

.footer-social-links {
    margin-top: 40px;
}

.footer-social-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-social-links ul li {
    display: inline-block;
    border-radius: 50%;
    margin-right: 10px;
}

.footer-social-links ul li:last-child {
    margin-right: 0;
}

.footer-social-links ul li a {
    background: #79a444;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease-in-out;
}

.footer-social-links ul li:hover a {
    background: #fff;
}

.footer-social-links ul li:hover a i {
    color: #79a444;
}

.footer-social-links ul li a i {
    color: #fff;
    font-size: 18px;
}

.footer-links h3 {
    color: #fff;
    font-size: 22px;
    line-height: 32px;
    text-transform: capitalize;
    margin-bottom: 30px;
    letter-spacing: 0.5px;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links ul li {
    color: #fff;
    line-height: normal;
    text-transform: capitalize;
    margin-bottom: 15px;
    transition: all 0.3s ease-in-out;
}

.footer-links ul li:last-child {
    margin-bottom: 0;
}

.footer-links ul li:hover {
    color: #79a444;
}

.footer-links ul li a {
    color: inherit;
    display: inline-block;
    letter-spacing: 0.5px;
    font-size: 16px;
    line-height: 26px;
}

/* WHATSAPP BUTTON */
.floating-whatsapp {
    position: fixed;
    right: 25px;
    bottom: 90px;

    width: 45px;
    height: 45px;

    border-radius: 50%;
    background: #25D366;
    color: #fff;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 24px;
    text-decoration: none;

    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.35);

    z-index: 999;
    overflow: hidden;

    transition: all 0.4s ease;
}



.floating-whatsapp i {
    position: relative;
    z-index: 2;
}

.floating-whatsapp:hover {
    transform: translateY(-6px);
    color: #fff;
}

/* SCROLL TOP BUTTON */
.scroll-top-btn {
    position: fixed;
    right: 25px;
    bottom: 25px;

    width: 45px;
    height: 45px;

    border: none;
    border-radius: 50%;

    background: #7dbb31;
    color: #fff;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 20px;
    cursor: pointer;

    box-shadow: 0 10px 30px rgba(44, 65, 18, 0.3);

    opacity: 0;
    visibility: hidden;

    transform: translateY(20px);

    transition: all 0.4s ease;

    z-index: 999;
    overflow: hidden;
}

.scroll-top-btn::before {
    content: '';
    position: absolute;
    inset: 0;

    background: #2c4112;

    border-radius: 50%;

    transform: scale(0);
    transition: all 0.4s ease;

    z-index: 0;
}

.scroll-top-btn:hover::before {
    transform: scale(1);
}

.scroll-top-btn i {
    position: relative;
    z-index: 2;
}

.scroll-top-btn:hover {
    transform: translateY(-6px);
}

.scroll-top-btn.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.newsletter-form {
    padding-left: 50px;
}

.newsletter-form p {
    margin-bottom: 30px;
}

.newsletter-form .form-group {
    display: flex;
}

.newsletter-form .form-group .form-control {
    width: 68%;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.4em;
    color: #fff;
    background-color: transparent;
    border: 1px solid #ffffff25;
    border-right: none;
    border-radius: 10px 0 0 10px;
    outline: none;
    box-shadow: none;
    padding: 12px 20px;
}

.newsletter-form .form-group .form-control::placeholder {
    color: var(--text-color);
}

.newsletter-form .form-group .btn-default.btn-highlighted {
    width: 32%;
    background-color: #79a444;
    color: #fff;
    border-radius: 0 10px 10px 0;
    padding: 17px 12px;
    line-height: 1em;
}

.newsletter-form .form-group .btn-default.btn-highlighted:hover {
    color: #79a444;
}

.newsletter-form .form-group .btn-default::before {
    display: none;
}

.footer-copyright {
    position: relative;
    border-top: 1px solid #ffffff25;
    padding: 20px 0;
    margin-top: 60px;
    z-index: 1;
}

.footer-copyright-text p {
    color: #fff;
    margin-bottom: 0;
}

.footer-privacy-policy {
    text-align: right;
}

.footer-privacy-policy ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-privacy-policy ul li {
    position: relative;
    display: inline-block;
    color: #fff;
    text-transform: capitalize;
    line-height: 1.6em;
    margin-right: 30px;
    transition: all 0.3s ease-in-out;
}

.footer-privacy-policy ul li:hover {
    color: #79a444;
}

.footer-privacy-policy ul li:last-child {
    margin-right: 0;
}

.footer-privacy-policy ul li:before {
    content: '/';
    position: absolute;
    top: 0;
    bottom: 0;
    right: -18px;
    color: #fff;
}

.footer-privacy-policy ul li:last-child::before {
    display: none;
}

.footer-privacy-policy ul li a {
    color: inherit;
}

.mobile-slick {
    display: none;
}


/***Case Study Section css***/
.college-case-section {
    padding: 100px 20px;
    overflow: hidden;
}

.college-case-section .section-title h2 {
    margin-bottom: 60px;
}

/* SWIPER */
.college_case_slider {
    overflow: hidden;
    padding-bottom: 60px;
}

.college_case_slider .swiper-slide {
    display: flex;
    justify-content: center;
}


.college_case_slider .swiper-wrapper {
    display: flex;
}

.college_case_track {
    display: flex;
    width: max-content;
    animation: college_scroll 25s linear infinite;
}

.college_case_track .college-item {
    flex: 0 0 auto;
}

.college_case_track .college-item:nth-child(even) {
    margin-top: 90px;
}

@keyframes college_scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* HEXAGON */
.college-item {
    position: relative;
    display: inline-flex;
    width: 180px;
    height: 180px;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    overflow: hidden;
    transition: all 0.35s ease;
    background: #79a444;

    clip-path: polygon(50% 0%,
            95% 25%,
            95% 75%,
            50% 100%,
            5% 75%,
            5% 25%);
}

/* INNER WHITE */
.college-item::before {
    content: "";
    position: absolute;
    inset: 2px;
    background: #ffffff;
    z-index: 1;

    clip-path: polygon(50% 0%,
            95% 25%,
            95% 75%,
            50% 100%,
            5% 75%,
            5% 25%);
}

/* IMAGE */
.college-item img {
    position: relative;
    z-index: 2;
    width: 100px;
    height: 100px;
    object-fit: contain;
    transition: all 0.35s ease;

}

.college-item:hover {
    transform: translateY(-8px);
}

.college-item:hover img {
    transform: scale(1.08);
}

/* SECOND ROW OFFSET */
.college_case_slider .swiper-slide:nth-child(even) {
    margin-top: 90px;
}

/* PAGINATION */
.college_case_pagination {
    text-align: center;
    margin-top: 50px;
}

.college_case_pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: #79a444;
    opacity: 0.4;
}

.college_case_pagination .swiper-pagination-bullet-active {
    opacity: 1;
}

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

    .college-item {
        width: 130px;
        height: 130px;
    }

    .college_case_slider .swiper-slide:nth-child(even) {
        margin-top: 65px;
    }
}


/**** Contact-Us page css ***/


.breadcrumb-section {
    position: relative;
    padding: 140px 0 90px;
    overflow: hidden;
    background-image: url(../images/same_banner4.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center;
}

.breadcrumb-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            rgb(42 64 15 / 75%) 0%,
            rgba(4, 4, 4, 0.623) 50%,
            rgb(84 119 41 / 81%) 100%);
    z-index: 1;
    opacity: 0.9;
}

.breadcrumb-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.breadcrumb-title {
    font-size: 48px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
}

.breadcrumb-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.breadcrumb-links li {
    color: #fff;
    font-size: 16px;
}

.breadcrumb-links li a {
    color: #fff;
    text-decoration: none;
    transition: 0.3s ease;
}

.breadcrumb-links li a:hover {
    color: #c5ff7a;
}

.breadcrumb-links li:not(:last-child)::after {
    content: "/";
    margin-left: 10px;
    color: #fff;
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-top: 60px;
}

.contact-info-item {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;

    padding: 25px;
    border: 1px solid #e5e5e5;
    border-radius: 20px;

    background: #fff;
    overflow: hidden;

    transition: all 0.4s ease-in-out;
    max-width: 90%;
}

.contact-info-item:hover {
    transform: translateY(-5px);
    border-color: #2c4112;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.contact-text a p {
    cursor: pointer;
}

.contact-icon {
    position: relative;

    width: 70px;
    height: 70px;
    min-width: 70px;

    border-radius: 50%;
    background-color: #79a444;
    border: 2px solid #ffffff;

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;
    z-index: 1;
}

.contact-icon::before {
    content: '';
    position: absolute;
    inset: 0;

    background: #2c4112;
    border-radius: 50%;

    width: 100%;
    height: 100%;

    transform: scale(0);
    transition: all 0.4s ease-in-out;

    z-index: 0;
}

.contact-info-item:hover .contact-icon::before {
    transform: scale(1);
}

.contact-icon i {
    position: relative;
    z-index: 2;

    font-size: 24px;
    color: #fff;

    transition: all 0.4s ease-in-out;
}

.contact-info-item:hover .contact-icon i {
    color: #fff;
}

.contact-text h4 {
    font-size: 22px;
    margin-bottom: 8px;
    color: #111;

    transition: all 0.4s ease;
}

.contact-text p {
    margin: 0;
    font-size: 16px;
    color: #666;
    line-height: 1.7;

    transition: all 0.4s ease;
}

.contact-info-item:hover .contact-text h4,
.contact-info-item:hover .contact-text p {
    color: #111;
}

.map_section {
    padding: 80px 0;
    background: #f4fbf7;

}

.map-responsive iframe {
    width: 100%;
    height: 520px;
    border-radius: 20px;
}



/************************************/
/*** 	  Responsive css      ***/
/************************************/


@media screen and (min-width: 1200px) and (max-width: 1366px) {
    .scrolled .nav-brand img {
        max-width: 200px;
        padding: 10px;
    }

    .nav-brand img {
        max-width: 190px;
    }

    .card-img-wrap img {
        height: 130px;
    }


    .hero-heading {
        font-size: 50px;
        font-weight: 900;
        line-height: 60px;
    }

    .about-us-body {
        gap: 25px;
    }

    .about-body-item-title h3 {
        font-size: 16px;
        text-transform: capitalize;
        line-height: 26px;
    }

    .about-body-item {
        padding: 15px;
    }

    .section-title h2 {
        font-size: 36px;
        line-height: 46px;
    }

    .contact_section form {
        padding: 25px 25px;
    }

    textarea.form-control {
        min-height: unset;
        max-height: 97px;
        height: 100%;
    }

    .footer-contact-item.address_details {
        max-width: 39%;
        width: 100%;
    }

}

@media (max-width: 1199px) {
    .composting-machine-hero h1 {
        font-size: 48px;
        line-height: 58px;
    }

    .case-study-single-cover h1 {
        font-size: 48px;
        line-height: 58px;
    }

    .case-study-single-cover-grid,
    .case-study-single-chapter-split,
    .case-study-single-contact-panel {
        grid-template-columns: 1fr;
    }

    .case-study-single-results-row {
        grid-template-columns: 260px minmax(0, 1fr);
    }

    .kk-hero-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .kk-portrait-stage::before {
        width: 350px;
        height: 350px;
    }

    .kk-portrait-stage::after {
        width: 360px;
        height: 360px;
    }

    .kk-portrait {
        width: 330px;
        height: 390px;
    }

    .kk-intro-grid,
    .kk-story-grid {
        grid-template-columns: 1fr !important;
        gap: 55px;
    }

    .kk-meta {
        position: relative;
        top: auto;
    }

    .kk-story-copy {
        order: 2;
    }

    .kk-visual {
        order: 1;
        max-width: 680px;
    }
}


@media screen and (max-width: 1024px) {
    .nav-brand img {
        max-width: 170px;
        padding-right: 10px;
    }


    .hero-heading {
        font-size: 42px;
        font-weight: 900;
        line-height: 52px;
    }

    .hero_row {
        padding-top: 90px;
    }



    .hero-section {
        height: 100vh;
    }

    .header-contact-btn .btn-default {
        padding: 17px 15px 17px 15px;
    }

    .navbar-center li a {
        padding: 11px 10px  !important;
        font-size: 14px !important;
    }

    .section-title h2 {
        font-size: 42px;
        line-height: 52px;
    }

    .about-body-item-title h3 {
        margin-bottom: 0;
        font-size: 18px;
        line-height: 28px;

    }

    .about-body-item {
        width: calc(100% - 15px);
    }

    .about-us-body {
        gap: 15px;
    }

    .scrolled .nav-brand img {
        padding: 12px;
        border-radius: 15px;
        max-width: 165px;
    }

    .what_we_do_section .cards-row .col-lg-3 {
        width: 50%;
    }

    .our-products .col-md-6 {
        width: 33.33%;
    }

    .products-item-content-silver h2 {
        font-size: 20px;
        line-height: 34px;
    }

    .products-item-body-silver {
        padding: 0 0px 30px;
    }

    .section_padding {
        padding: 70px 0px !important;
    }

    textarea.form-control {
        min-height: unset;
        max-height: 97px;
        height: 100%;
    }

    .contact_section form {
        padding: 25px 25px;
    }

    .products-item-body-silver .icon-box {
        margin-bottom: 10px;
    }

    .footer-logo {
        width: 100%;
    }

    .footer-contact-details {
        justify-content: flex-start;
        width: 100%;
        margin-top: 60px;
    }

    .footer-contact-item.address_details {
        max-width: 45%;
        width: 100%;
    }

    .footer-contact-item {
        max-width: 23%;
        width: 100%;
    }

    .main-footer .col-md-6 {
        width: 50%;
        margin-top: 30px;
    }

    .newsletter-form {
        padding-left: 0;
    }

    .footer-links h3 {
        font-size: 28px;
        line-height: 38px;
        margin-bottom: 20px;
    }

    .footer-copyright .col-md-6 {
        width: 50%;
        margin-top: 0px;
    }

    .main-footer {
        padding: 70px 0px 0px;
    }

    .college-case-grid-1 {
        grid-template-columns: repeat(3, 140px);
    }

    .college-case-grid {
        grid-template-columns: repeat(4, 140px);
    }

    .college-item {
        width: 140px;
        height: 140px;
    }

    .college-item img {
        max-width: 140px;
    }

    .composting-machine-hero h1 {
        font-size: 42px !important;
        font-weight: 900 !important;
        line-height: 52px !important;
    }

    .case-study-single-report {
        overflow: hidden;
    }

    .full_width_sri_coating {
        margin-top: 20px !important;
    }

    .bv-offcanvas-body .submenu li button.oc-toggle {
        text-align: left;
    }
}

@media screen and (max-width: 991px) {


    .about-images {
        max-width: 80%;
        width: 100%;
        margin: 0 auto;
    }

    .about-section .section-title h2{
        text-align: center;
    }

     .about_para_left{
        text-align: center;
    }


    .why-choose-images {
        margin-top: 30px;
        margin-left: 0;
    }

    .contact_section .row {
        gap: 30px;
    }

    .contact_section form .row {
        gap: 0px;
    }

    .video-slider {
        margin: 0;
    }

    .contact_section::before {
        width: unset;
    }

    .footer-contact-details {
        gap: 20px 0px;
    }

    .footer-contact-item {
        max-width: 50%;
    }

    .footer-contact-item.address_details {
        max-width: 100%;
        width: 100%;
    }

    .our-products .col-md-6 {
        width: 50%;
    }

    .about-body-item {
        width: calc(50% - 15px);
    }

    .college-case-grid-1 {
        grid-template-columns: repeat(3, 120px);
    }

    .college-case-grid {
        grid-template-columns: repeat(4, 120px);
    }

    .college-item {
        width: 120px;
        height: 120px;
    }

    .college-item img {
        max-width: 120px;
    }

    .about-intro .row {
        justify-content: center;
    }

    .about-intro .row .col-md-4 {
        width: 50%;
    }

    .impact-section .row {
        justify-content: center;
    }

    .impact-section .row .col-md-4 {
        width: 50%;
    }

    .composting-machine-hero {
        min-height: auto;
        padding: 72px 0;
    }

    .composting-machine-hero-product-card {
        margin-top: 34px;
    }

    .composting-machine-section-padding {
        padding: 72px 0;
    }

    .case-study-single-cover-grid,
    .case-study-single-chapter-split,
    .case-study-single-contact-panel {
        grid-template-columns: 1fr !important;
    }

    .case-study-single-cover-grid {
        gap: 15px !important;
    }

    .case-study-single-cover h1 {
        font-size: 50px;
        line-height: 58px;
    }

    .case-study-single-ribbon-grid {
        grid-template-columns: 1fr !important;
    }

    .case-study-single-ribbon-grid div {
        min-height: auto !important;
        border-right: 0 !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.14) !important;
    }

    .case-study-single-file-nav {
        position: static;
        margin-bottom: 20px;
    }

    .case-study-single-results-row {
        grid-template-columns: 1fr;
    }

    .composting-machine-feature-card img {
        height: 320px;
    }

      .social-grid {
    grid-template-columns: repeat(2, 1fr)  !important;
  }

  .link-list {
    grid-template-columns: 1fr !important;
  }

  .contact-banner {
    align-items: flex-start !important;
    flex-direction: column !important;
  }

  .mobile-only-actions {
    display: block !important;
  }

  .linktree-section {
    padding: 75px 0 85px !important;
  }
}

@media screen and (max-width: 768px) {
    .hero-section {
        height: 100vh;
    }

    .breadcrumb-title{
        font-size: 42px;
    }

    .about-body-item {
        width: calc(50% - 15px);
    }

    .card-img-wrap img {
        height: 200px;
    }

    .acousticenclosure-section .composting-machine-solution-card img {
        height: 240px;
        object-fit: cover;
    }


    .post-entry table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }

    .post-entry table th,
    .post-entry table td {
        min-width: 180px;
    }


}

@media screen and (max-width: 600px) {
    .hero-section {
        height: unset;
        padding: 70px 0px !important;
    }

    .hero_row {
        padding-top: 0px;
    }

    .what_we_do_section .cards-row .col-12 {
        width: 100%;
    }

    .our-products .col-md-6 {
        width: 100%;
    }

    .footer-contact-item-content p a {
        word-break: break-all;
    }

    .main-footer {
        padding: 70px 15px 0px;
    }

    .product-card {
        width: 165px;
    }

    .card-1 {
        transform: unset !important;
        top: 0;
        left: 0;
    }

    .card-2 {
        transform: unset !important;
        top: 0;
        right: 0;
        left: unset;
    }

    .card-3 {
        transform: unset !important;
        top: 20%;
        right: 0;
    }

    .card-img-wrap {
        max-width: 100%;
        max-height: 210px;
        border-radius: 14px;
        background: transparent;
    }

    .hero-left {
        margin-top: 40px;
    }

    .hero-right {
        display: block;
        height: unset;
    }


    .hero-right a {
        display: block;
        position: static;
        width: 100%;
        margin-block: 20px;
        max-width: 100%;
        margin: 0 auto 20px;
    }

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

    .about-us-content {
        margin-left: 0px;
    }

    .section-title h2 {
        font-size: 28px;
        line-height: 38px;
    }

    .about-body-item {
        width: calc(100% - 15px);
    }

    .our-products .section-title {
        text-align: center;
    }

    .our-products .section-btn {
        text-align: center;
    }

    .our-products.dark-section {
        margin: 0;
    }

    .partner-1 {
        max-width: 170px;
        height: 90px;
    }

    .partner-marquee .partner-marquee-layout .partner-1 {
        width: 100%;
    }

    .college-case-section {
        padding: 70px 0px;
    }

    .major-partners .p-t-60 {
        padding-top: 10px;
    }

    .footer-contact-item {
        max-width: 100%;
    }

    .main-footer .col-md-6 {
        width: 100%;
        margin-top: 30px;
    }

    .footer-copyright .col-md-6 {
        width: 100%;
        margin-top: 0px;
    }

    .footer-copyright-text p {
        text-align: center;
    }

    .footer-privacy-policy ul {
        text-align: center;
        margin-top: 15px;
    }

    .main-footer .row>.col-md-6:first-of-type {
        margin-top: 0 !important;
    }

    .years-experience-box h2 {
        font-size: 24px;
    }

    .years-experience-box p {
        font-size: 14px;
    }

    .years-experience-box {
        width: 120px;
        height: 120px;
    }

    .hero-right {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 15px;
        padding-bottom: 10px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .hero-right::-webkit-scrollbar {
        display: none;
    }

    .product-card {
        flex: 0 0 85%;
        scroll-snap-align: center;
    }

    .hero-heading {
        font-size: 28px;
        font-weight: 900;
        line-height: 38px;
    }

    .hero-para {
        margin-bottom: 10px;
    }

    .scrolled .nav-brand img.header_bni {
        max-width: 100px;
        max-height: 90px;
    }

    .bv-offcanvas-logo img {
        max-height: 35px;
    }

    .college-case-grid-1 {
        grid-template-columns: repeat(3, 60px);
    }

    .college-case-grid {
        grid-template-columns: repeat(4, 60px);
    }

    .college-item {
        width: 110px;
        height: 110px;
    }

    .college-item img {
        max-width: 70px;
        height: 70px;
    }

    .contact-info-item {
        flex-direction: column;
        text-align: center !important;
        width: 100%;
    }

    .contact-info-list {
        justify-content: center;
        align-items: center;
    }

    .social-card{
        flex-direction: column;
        align-items: flex-start !important;
    }


    .contact_section .section-title {
        text-align: center;
    }

    .college-item {
        margin-bottom: -10px;
    }

    .main-footer-box {
        margin-bottom: 10px;
    }

    .post-entry h2 {
        font-size: 22px !important;
        line-height: 32px !important;
    }

    .post-entry h3 {
        font-size: 20px !important;
        line-height: 30px !important;
        font-weight: 600;
        letter-spacing: 0.5px;
    }

    .bubble-tl {
        width: 150px !important;
        height: 150px !important;
        top: 0 !important;
        left: 30px !important;
    }

    .bubble-tr {
        width: 150px !important;
        height: 150px !important;
        top: 0px !important;
        right: 10px !important;
    }

    .bubble-bl {
        width: 150px !important;
        height: 150px !important;
        top: 145px !important;
        left: 20px !important;
    }

    .bubble-br {
        width: 150px !important;
        height: 150px !important;
        top: 145px !important;
        right: 25px !important;
    }

    .bubble-cluster {
        height: 350px !important;
        width: 340px !important;
    }

    .about-intro .row .col-md-4 {
        width: 100%;
    }

    .impact-section .row .col-md-4 {
        width: 100%;
    }

    .blob {
        display: none;
    }

    .composting-machine-hero {
        padding: 126px 0 58px;
    }

    .composting-machine-hero h1 {
        font-size: 31px;
        line-height: 40px;
    }

    .breadcrumb-item,
    .breadcrumb-item a,
    .breadcrumb-item.active {
        font-size: 13px;
        line-height: 20px;
    }

    .composting-machine-hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .composting-machine-hero-actions a,
    .composting-machine-hero-actions .composting-machine-btn {
        width: 100%;
    }

    .composting-machine-pill-list span {
        width: 100%;
        border-radius: 12px;
    }

    .composting-machine-model-card h3 {
        font-size: 23px;
        line-height: 32px;
    }

    .composting-machine-hero h1 {
        font-size: 37px;
        line-height: 46px;
    }

    .composting-machine-hero h2 {
        font-size: 20px;
        line-height: 28px;
    }

    .composting-machine-hero p,
    .composting-machine-lead-text,
    .composting-machine-premium-card p,
    .composting-machine-contact-section p {
        font-size: 17px;
        line-height: 29px;
    }

    .composting-machine-hero-product-card,
    .composting-machine-premium-card,
    .composting-machine-contact-form {
        padding: 24px;
        border-radius: 20px;
    }

    .composting-machine-hero-product-card img {
        height: 250px;
    }

    .composting-machine-hero-stat-grid {
        grid-template-columns: 1fr;
    }

    .composting-machine-section-title h2 {
        font-size: 32px;
        line-height: 42px;
    }

    .composting-machine-image-showcase,
    .composting-machine-image-showcase img {
        min-height: 300px;
        height: 300px;
    }

    .composting-machine-impact-image img,
    .composting-machine-tech-machine img {
        height: 280px;
    }

    .composting-machine-spec-row {
        align-items: flex-start !important;
        flex-direction: column;
        gap: 5px !important;
    }

    .composting-machine-spec-row strong {
        text-align: left;
    }

    .composting-machine-impact-section .row,
    .composting-machine-tech-section .row,
    .composting-machine-accessories-section .row {
        margin-left: 0;
        margin-right: 0;
    }

    .composting-machine-impact-section .row>*,
    .composting-machine-tech-section .row>*,
    .composting-machine-accessories-section .row>* {
        padding-left: 0;
        padding-right: 0;
    }

    .composting-machine-hero h1 {
        font-size: 28px !important;
        font-weight: 900 !important;
        line-height: 38px !important;
    }

    .composting-machine-hero-product-card img {
        width: 100%;
        height: 225px;
        object-fit: contain;
        background: transparent;
    }

    .composting-machine-premium-card {
        padding: 20px !important;
    }

    .case-study-single-cover h1 {
        font-size: 42px;
        line-height: 50px;
    }

    .case-study-single-chapter h2,
    .case-study-single-results-board h2,
    .case-study-single-conclusion h2,
    .case-study-single-contact-panel h2 {
        font-size: 34px;
        line-height: 42px;
    }

    .case-study-single-page .row {
        margin-left: 0;
        margin-right: 0;
    }

    .case-study-single-page .row>* {
        padding-left: 0;
        padding-right: 0;
    }

    .case-study-single-cover {
        padding-top: 34px;
    }

    .case-study-single-cover-grid,
    .case-study-single-chapter-split,
    .case-study-single-journey-stack div,
    .case-study-single-results-row,
    .case-study-single-contact-panel {
        grid-template-columns: 1fr !important;
    }

    .case-study-single-journey-stack div {
        gap: 15px !important;
        padding: 18px !important;
    }

    .case-study-single-breadcrumb-wrap {
        margin-bottom: 34px;
    }

    .case-study-single-cover h1 {
        font-size: 34px;
        line-height: 42px;
    }

    .case-study-single-cover-copy p,
    .case-study-single-chapter p,
    .case-study-single-conclusion p,
    .case-study-single-journey-stack p,
    .case-study-single-contact-list p,
    .case-study-single-contact-list a {
        font-size: 16px;
        line-height: 26px;
    }

    .case-study-single-cover-image,
    .case-study-single-wide-media {
        height: 280px;
    }

    .case-study-single-ribbon-grid {
        grid-template-columns: 1fr !important;
    }

    .case-study-single-ribbon-grid div {
        min-height: auto;
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.14);
        padding: 20px 8px !important;
    }

    .case-study-single-report,
    .case-study-single-contact-section {
        padding: 58px 0;
    }

    .case-study-single-file-nav {
        position: static;
        padding: 18px 18px !important;
    }

    .case-study-single-chapter h2,
    .case-study-single-results-board h2,
    .case-study-single-conclusion h2,
    .case-study-single-contact-panel h2 {
        font-size: 30px;
        line-height: 38px;
    }

    .case-study-single-challenge-panel,
    .case-study-single-results-board,
    .case-study-single-conclusion {
        padding: 18px !important;
    }

    .case-study-single-chapter blockquote,
    .case-study-single-conclusion blockquote {
        font-size: 22px;
        line-height: 32px;
        padding: 22px;
    }

    .case-study-single-article {
        gap: 40px !important;
    }

    .case-study-single-results-board {
        padding: 18px !important;
    }

    .case-study-single-conclusion {
        padding: 18px !important;
    }

    .breadcrumb-title {
        font-size: 32px;
    }

    .breadcrumb-section {
        padding: 100px 0 50px;
    }

    .featured-quote {
        padding: 35px 15px;
    }

    .featured-quote-text {
        font-size: 20px;
        line-height: 1.65;
    }

    .case-study-single-chapter blockquote,
    .case-study-single-conclusion blockquote {
        padding: 28px 20px !important;
        font-size: 20px !important;
        line-height: 30px !important;
    }

    .case-study-single-report {
        padding: 70px 0px !important;
    }

    .case-study-single-contact-section {
        padding: 70px 8px !important;
    }

    .quote-section {
        padding: 70px 0px !important;
    }

    .case-study-single-chapter-split {
        gap: 0px !important;
    }

    .case-study-single-challenge-panel li {
        font-size: 16px !important;
        line-height: 26px !important;
    }

    .composting-machine-feature-item {
        grid-template-columns: 44px 1fr !important;
        padding: 16px;
    }

    .composting-machine-feature-item span {
        width: 44px;
        height: 44px;
        font-size: 17px;
    }

    .composting-machine-feature-item h3 {
        font-size: 18px !important;
        line-height: 25px !important;
    }

    .composting-machine-feature-card {
        padding: 18px;
        border-radius: 20px;
    }

    .composting-machine-feature-card img {
        height: 250px !important;
    }

    .composting-machine-feature-badge-row {
        grid-template-columns: 1fr !important;
    }

    .samkiti-qr-card {
        grid-template-columns: 1fr !important;
    }

    .samkiti-qr-image {
        max-width: 190px !important;
    }

    .samkiti-qr-content h3 {
        font-size: 22px !important;
        line-height: 30px !important;
    }

    .composting-machine-contact-form1 {
        margin-right: 0 !important;
    }

    .composting-machine-hero-actions a {
        width: max-content;
        margin-right: auto;
    }

    .biofuel-section {
        padding: 60px 0 !important;
    }

    table.biofuel-table thead th {
        background-color: #5c8a2f;
        color: #ffffff;
        font-weight: 700;
        font-size: 14px !important;
        letter-spacing: 0.5px !important;
        line-height: 24px !important;
        padding: 18px 16px;
        border: none;
        text-align: center;
        vertical-align: middle;
    }

    .acousticenclosure-section .composting-machine-solution-card img {
        height: 300px !important;
        object-fit: cover !important;
    }


    .kk-container {
        width: min(100% - 28px, 1160px) !important;
    }

    .kk-hero {
        min-height: 820px !important;
    }

    .kk-hero-grid {
        grid-template-columns: 1fr !important;
        gap: 38px !important;
        min-height: 820px !important;
        padding: 130px 0 70px !important;
        text-align: center !important;
    }

    .kk-eyebrow {
        justify-content: center !important;
    }

    .kk-hero h1 {
        font-size: 55px !important;
        letter-spacing: -2px !important;
    }

    .kk-role {
        font-size: 18px !important;
    }

    .kk-actions {
        justify-content: center !important;
    }

    .kk-portrait-stage::before {
        width: 285px !important;
        height: 285px !important;
    }

    .kk-portrait-stage::after {
        width: 300px !important;
        height: 300px !important;
    }

    .kk-portrait {
        width: 275px !important;
        height: 320px !important;
    }

    .kk-profile-tag {
        right: 8px !important;
    }

    .kk-hero::after,
    .kk-glow,
    .kk-scroll-cue {
        display: none !important;
    }

    .kk-section {
        padding: 72px 0 !important;
    }

    .kk-intro-grid,
    .kk-story-grid {
        gap: 42px !important;
    }

    .kk-meta {
        padding: 28px !important;
    }

    .kk-title {
        font-size: 38px !important;
    }

    .kk-lead {
        font-size: 18px !important;
    }

    .kk-visual {
        padding: 0 18px 18px 0 !important;
    }

    .kk-visual::before {
        inset: 18px 0 0 18px !important;
    }

    .kk-visual img {
        height: 390px !important;
    }

    .kk-visual-note {
        padding: 17px 18px !important;
    }



  .social-hub,
  .important-wrap {
    padding: 23px 17px;
    border-radius: 22px;
  }

  .hub-head {
    align-items: flex-start;
  }

  .hub-badge {
    display: none !important;
  }

  .social-grid {
    grid-template-columns: 1fr 1fr;
    gap: 9px;
  }

  .social-card {
    min-height: 68px;
    padding: 11px;
    gap: 9px;
  }

  .social-icon {
    width: 37px;
    height: 37px;
    border-radius: 11px;
  }

  .social-card strong {
    font-size: 13px;
  }

  .social-card small {
    display: none;
  }

  .product-link {
    grid-template-columns: 45px 1fr 30px;
    min-height: 80px;
    padding: 13px 12px;
    gap: 11px;
  }

  .product-icon {
    width: 45px;
    height: 45px;
  }

  .product-link strong {
    font-size: 15px;
  }

  .product-link small {
    font-size: 11px;
  }

  .contact-banner {
    padding: 27px 23px;
  }

  .contact-actions {
    width: 100%;
    flex-direction: column;
  }

  .contact-actions .btn-default {
    justify-content: center;
  }

  .linktree-intro {
    margin-bottom: 38px;
  }

  .linktree-intro p {
    font-size: 16px;
  }

    .legal-page {
    padding: 55px 0 70px;
  }

  .legal-lead {
    padding: 17px 18px;
  }

  .legal-lead .about_para,
  .legal-block .about_para,
  .legal-block li {
    font-size: 15px;
  }

  .legal-block {
    padding: 24px 0;
  }

  .legal-block h2 {
    font-size: 21px;
  }
}


        @media (prefers-reduced-motion: reduce) {
            .kk-page *,
            .kk-page *::before,
            .kk-page *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
            .js .kk-reveal { opacity: 1; transform: none; }
            .kk-glow,
            .kk-scroll-cue { display: none; }
        }


@keyframes navSlideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}


/* ---- ABOUT INTRO ---- */
.about-intro {
    padding: 90px 0;
    background: #FFFFFF;
}

.our_story_box{
    background: #FFFFFF;
    border: 1.5px solid #E8EDE9;
    border-radius: 16px;
    padding: 36px 28px;
    transition: transform 0.28s, box-shadow 0.28s, border-color 0.28s;
}


.our_story_box:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(44, 110, 73, 0.12);
    border-color: #4DA167;
}

.about-intro .feature-card {
    background: #FFFFFF;
    border: 1.5px solid #E8EDE9;
    border-radius: 16px;
    padding: 36px 28px;
    height: 100%;
    transition: transform 0.28s, box-shadow 0.28s, border-color 0.28s;
}

.about-intro .feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(44, 110, 73, 0.12);
    border-color: #4DA167;
}

.about-intro .feature-icon-wrap {
    width: 60px;
    height: 60px;
    background: #EAF4EE;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: background 0.25s;
}

.about-intro .feature-card:hover .feature-icon-wrap {
    background: #2C6E49;
}

.about-intro .feature-icon-wrap i {
    font-size: 26px;
    color: #2C6E49;
    transition: color 0.25s;
}

.about-intro .feature-card:hover .feature-icon-wrap i {
    color: #FFFFFF;
}

.about-intro .feature-title {
    font-size: 20px;
    font-weight: 700;
    color: #1E2A22;
    margin-bottom: 10px;
}

.about-intro .feature-desc {
    color: #4a4a4a;
    font-size: 16px;
    line-height: 26px;
    letter-spacing: 0.5px;
    font-weight: 500;
}


/* ── SECTION ── */
.about-section {
    background-color: #eaf2f4;
    padding-top: 70px;
    padding-bottom: 70px;
}

/* ── BUBBLE CLUSTER ── */
.bubble-cluster {
    position: relative;
    width: 480px;
    height: 480px;
    margin: 0 auto;
}

.bubble {
    position: absolute;
    border-radius: 50%;
    overflow: hidden;
    border: 6px solid #ffffff;
    box-shadow: 0 8px 32px rgba(80, 160, 140, 0.15);
    z-index: 3;
}

.bubble img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bubble-center {
    width: 200px;
    height: 200px;
    top: 140px;
    left: 140px;
    z-index: 4;
    background: #d4ede7;
    display: flex;
    align-items: center;
    justify-content: center;
}


.bubble-tl {
    width: 230px;
    height: 230px;
    top: 28px;
    left: 18px;
}

.bubble-tr {
    width: 230px;
    height: 230px;
    top: 0px;
    right: 10px;
}

.bubble-bl {
    width: 230px;
    height: 230px;
    bottom: -2px;
    left: 0;
}

.bubble-br {
    width: 230px;
    height: 230px;
    bottom: 28px;
    right: 25px;
}


/* blobs */
.blob {
    position: absolute;
    border-radius: 50%;
    background: rgba(160, 215, 210, 0.28);
    z-index: 1;
}

.blob-1 {
    width: 280px;
    height: 280px;
    top: 80px;
    left: 80px;
}

.blob-2 {
    width: 200px;
    height: 200px;
    top: 180px;
    right: 55px;
}

.blob-3 {
    width: 160px;
    height: 160px;
    bottom: 60px;
    left: 95px;
}

/* dot grid */
.dots-grid {
    position: absolute;
    top: 8px;
    left: 8px;
    display: grid;
    grid-template-columns: repeat(5, 6px);
    grid-template-rows: repeat(3, 6px);
    gap: 5px;
    z-index: 0;
}

.dots-grid span {
    display: block;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #7db8aa;
    opacity: 0.55;
}

/* deco rings */
.deco-ring {
    position: absolute;
    border-radius: 50%;
    border: 2.5px solid #4a9e8a;
    z-index: 2;
}

.deco-ring-1 {
    width: 28px;
    height: 28px;
    bottom: 118px;
    right: 18px;
}

.deco-ring-2 {
    width: 20px;
    height: 20px;
    bottom: 78px;
    right: 58px;
    border-color: #a0d7d2;
}

/* floating leaves */
.leaf {
    position: absolute;
    z-index: 5;
}

.leaf-1 {
    top: 78px;
    left: 198px;
}

.leaf-2 {
    top: 218px;
    right: 55px;
}

.recycle-icon {
    width: 110px;
    height: 110px;
}

/* ── RIGHT TEXT ── */
.eyebrow {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 4px;
    color: #4a9e6a;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 22px;
}

.eyebrow::after {
    content: '';
    display: block;
    width: 54px;
    height: 2.5px;
    background: #4a9e6a;
    border-radius: 2px;
}

.headline {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.13;
    color: #0f2435;
    margin-bottom: 22px;
}

.divider-bar {
    width: 38px;
    height: 3.5px;
    background: #4a9e6a;
    border-radius: 2px;
    margin-bottom: 28px;
}

.body-text {
    font-size: 16px;
    line-height: 1.9;
    color: #3a4a50;
}



/* ---- IMPACT / STATS ---- */
.impact-section {
    padding: 90px 0;
    background: linear-gradient(135deg, rgb(42 48 32) 0%, rgb(28 34 21 / 86%) 30%, rgba(30, 49, 10, 0.863) 70%, rgb(44 48 38) 100%);
    position: relative;
    overflow: hidden;
}

.impact-section .section-title h3.subtitle {
    color: #fff;
}

.impact-section .section-title h2 {
    color: #fff;
}

.impact-section .about_para {
    color: #fff;
}

.impact-section::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: rgba(44, 110, 73, 0.15);
    pointer-events: none;
}

.impact-title {
    font-family: 'Manrope', sans-serif;
    font-size: 36px;
    font-weight: 800;
    color: #FFFFFF;
    line-height: 1.2;
    margin-bottom: 12px;
}

.impact-lead {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0;
}

.stat-card {
    background: rgb(255 255 255 / 2%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 36px 28px;
    height: 100%;
    transition: background 0.28s, border-color 0.28s, transform 0.28s;
}

.stat-card:hover {
    background: rgba(44, 110, 73, 0.2);
    border-color: #4DA167;
    transform: translateY(-4px);
}

.stat-num {
    font-size: 52px;
    font-weight: 800;
    color: #fff;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-unit {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    vertical-align: top;
    margin-top: 8px;
    display: inline-block;
}

.stat-desc {
    font-size: 16px;
    line-height: 26px;
    color: #fff;
    margin: 0;
    letter-spacing: 0.5px;
}

.stat-icon {
    width: 44px;
    height: 44px;
    background: rgba(127, 212, 160, 0.15);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.stat-icon i {
    font-size: 20px;
    color: #7FD4A0;
}

/* ---- Why Us ---- */
.why_us_section {
    padding: 100px 10px;
}

.text-col .accordion {
    border-radius: 18px;
}

.text-col .accordion-item {
    border: 0;
    margin-bottom: 14px;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgb(121 164 68 / 4%);
}

.text-col .accordion-button {
    background: #f6fbf1;
    color: #2f421d;
    font-weight: 600;
    padding: 18px 22px;
    border: 1px solid rgba(121, 164, 68, 0.25);
    border-radius: 14px !important;
    box-shadow: none;
    font-size: 18px;
    letter-spacing: 0.5px;
}

.text-col .accordion-button:not(.collapsed) {
    background: #79a444;
    color: #fff;
    font-size: 18px;
    letter-spacing: 0.5px;
}

.text-col .accordion-button:focus {
    box-shadow: 0 0 0 0.25rem rgba(121, 164, 68, 0.25);
}

.text-col .accordion-button::after {
    filter: invert(44%) sepia(19%) saturate(1005%) hue-rotate(46deg);
}

.text-col .accordion-button:not(.collapsed)::after {
    filter: brightness(0) invert(1);
}

.text-col .accordion-body {
    background: #ffffff;
    color: #4d4d4d;
    padding: 20px 24px;
    line-height: 1.7;
    border: 1px solid rgba(121, 164, 68, 0.18);
    border-top: 0;
    font-size: 16px;
    border-radius: 0 0 14px 14px;
    letter-spacing: 0.5px;
}


/* ---- DIRECTORS ---- */
.directors-section {
    padding: 90px 0;
    background: #EAF4EE;
}

.directors-section .row {
    margin-bottom: 30px !important;
}

.director-card {
    background: #FFFFFF;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(44, 110, 73, 0.08);
    transition: transform 0.28s, box-shadow 0.28s;
    height: 100%;
}

.director-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(44, 110, 73, 0.14);
}

.director-img-wrap {
    height: 280px;
    background: linear-gradient(135deg, #2C6E49, #4DA167);
    position: relative;
    overflow: hidden;
}

.director-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    opacity: 0.85;
    transition: opacity 0.3s;
}

.director-card:hover .director-img-wrap img {
    opacity: 1;
}

.director-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 55%, rgba(30, 42, 34, 0.35) 100%);
}

.director-body {
    padding: 28px;
}

.director-name {
    font-size: 22px;
    font-weight: 800;
    color: #1E2A22;
    margin-bottom: 4px;
}

.director-role {
    font-size: 14px;
    font-weight: 600;
    color: #4DA167;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.director-bio {
    font-size: 16px;
    color: #000;
    line-height: 1.7;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.director-socials {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.social-btn {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: #EAF4EE;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2C6E49;
    font-size: 16px;
    transition: background 0.2s, color 0.2s;
}

.social-btn:hover {
    background: #2C6E49;
    color: #FFFFFF;
}

.director-readmore {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.2s;
    letter-spacing: 0.5px;
}

.director-readmore:hover {
    gap: 10px;
}


.blog_section {
    padding: 90px 0;
    background: #fff;
}

.blog_card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    height: 100%;
}

.blog_card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.14);
}

.blog_card_img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

.blog_card_body {
    padding: 24px;
}

.blog_card_body .btn-default {
    background: unset;
    padding: unset;
    color: #88b04b;
}

.blog_card_body .btn-default:hover:after {
    content: unset;
}

.blog_card_cat {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #88b04b;
    margin-bottom: 10px;
}

.blog_card_title {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
    line-height: 28px;
}

.blog_card_title a {
    color: #1a1a1a;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.blog_card_excerpt {
    font-size: 14px;
    color: #000;
    line-height: 1.7;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.blog_card_meta {
    font-size: 13px;
    color: #375426;
    display: flex;
    align-items: center;
    gap: 16px;
    letter-spacing: 0.5px;
}

.blog_card_read_btn {
    font-size: 13px;
    font-weight: 600;
    color: #2e5f2e;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.2s;
}

.blog_card_read_btn:hover {
    gap: 10px;
    color: #2e5f2e;
}



/************************************/
/*** 	  Single Blog Page Css 	  ***/
/************************************/
.single-post-page {
    padding: 100px 15px;
}

.post-single-meta {
    margin-top: 10px;
}

.post-single-meta ol li {
    font-size: 18px;
    color: #fff;
    margin-right: 15px;
}

.post-single-meta ol li i {
    font-size: 18px;
    color: #fff;
    margin-right: 5px;
}

.post-image {
    position: relative;
    margin-bottom: 30px;
}

.post-image figure {
    display: block;
    border-radius: 14px;
    overflow: hidden;
}

.post-image img {
    width: 100%;
    aspect-ratio: 1 / 0.50;
    object-fit: cover;
    border-radius: 14px;
}

.post-content {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
}

.post-entry {
    /* border-bottom: 1px solid #0f0e2d1a; */
    /* padding-bottom: 30px;
    margin-bottom: 30px; */
}
.post-entry a{
color: #79a444 !important;
}

.post-entry table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
    border: 1px solid #e5e5e5;
    background: #fff;
}

.post-entry table th,
.post-entry table td {
    padding: 14px 18px;
    text-align: left;
    border: 1px solid #e5e5e5;
    vertical-align: top;
}

.post-entry table th {
    background: #1a2e1a;
    color: #fff;
    font-weight: 600;
    font-size: 16px;
}

.post-entry table td {
    color: #555;
    font-size: 15px;
    line-height: 1.7;
}

.post-entry table tbody tr:nth-child(even) {
    background: #f8f8f8;
}

.post-entry table tbody tr:hover {
    background: #eef7ef;
}



.post-entry p {
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 26px;
    letter-spacing: 0.5px;
    font-weight: 500;
}

.post-entry blockquote {
    background: #fdf8ef url(../images/icon-blockquote.svg);
    background-repeat: no-repeat;
    background-position: 30px 30px;
    background-size: 45px;
    border-radius: 14px;
    padding: 30px 30px 30px 90px;
    margin-bottom: 30px;
}

.post-entry blockquote p:last-child {
    margin-bottom: 0;
}

.post-entry blockquote p {
    font-size: 20px;
    font-weight: 600;
    line-height: 30px;
    letter-spacing: 0.5px;
    color: #0d2240;
}

.post-entry h2 {
    font-size: 30px;
    line-height: 40px;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
    font-weight: 700;
    color: #79a444;
    text-decoration: underline;

}

.post-entry h3 {
    font-size: 21px;
    line-height: 31px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.blog-faqs{
    margin-bottom: 30px;
}

.post-entry ul {
    margin-top: 0px;
}
.post-entry ul li ul{
        margin: 10px 0;

}


.post-entry img{
    margin-bottom: 25px;
}

.post-entry ol li,
.post-entry ul li {
    position: relative;
    font-size: 16px;
    font-weight: 500;
    line-height: 26px;
    color: #212529;
    padding: 5px 0;
}

.tag-links {
    font-size: 22px;
    font-weight: 600;
    text-transform: capitalize;
    color: #0d2240;
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.post-tags .tag-links span {
    display: inline-block;
    font-size: 16px;
    font-weight: 600;
    text-transform: capitalize;
    line-height: 1em;
    background: #c89b4b;
    color: #0d2240;
    border-radius: 100px;
    padding: 12px 20px;
    transition: all 0.4s ease-in-out;
}

.post-social-sharing {
    text-align: right;
}

.post-social-sharing ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.post-social-sharing ul li {
    display: inline-block;
    margin-right: 10px;
}

.post-social-sharing ul li a {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: #c89b4b;
    color: #0d2240;
    border-radius: 100px;
    width: 40px;
    height: 40px;
    transition: all 0.4s ease-in-out;
}

.post-tags .tag-links span:hover {
    background: #0d2240;
    color: #fff;
}

.post-social-sharing ul li:hover a {
    background: #0d2240;
    color: #fff;
}


/* RIGHT SIDE FULL WIDTH */


/*Our Product Page Css */

.our-products-page {
    padding: 90px 0;
}

.products_item {
    padding: 12px;
    border: 1px solid #2c4112;
    border-radius: 12px;
      display: flex;
    flex-direction: column;
}



.products-item-body-silver {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.products-item-content-silver {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}


.product_body {
    padding: 0 !important;
}

.case_study {
    padding: 90px 0;
}

.case_study .row {
    row-gap: 25px;
}

.case_study_item {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border: 1px solid #0e2b18;
    height: 100%;
}

.case_study_item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.case_study_img {
    overflow: hidden;
}

.case_study_img img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: all 0.5s ease;
    display: block;
}

.case_study_item:hover .case_study_img img {
    transform: scale(1.08);
}

.case_study_body {
    padding: 25px;
}

.case_study_content p {
    margin-bottom: 10px;
    font-size: 16px;
    line-height: 20px;
    color: #666;
}

.case_study_content p b {
    color: #000;
    font-weight: 600;
}

.case_study_content h2 {
    margin-bottom: 20px;
    font-size: 24px;
    color: #000;
    line-height: 30px;

    display: -webkit-box;
    -webkit-line-clamp: 3;
    /* Show only 3 lines */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    min-height: 90px;

}

.case_study_content h2 a {
    text-decoration: none;
    color: #222;
    font-size: 24px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.case_study_content h2 a:hover {
    color: #2c4112;
}

.case_stusy_buttons {
    margin-top: 20px;
}


.case_study_btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 18px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    transition: all .3s ease;
}


/*  */
.composting-machine-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 800;
    line-height: 16px;
    text-transform: capitalize;
    color: #ffffff;
    z-index: 0;
    background: #79a444;
    border-radius: 10px;
    border: none;
    padding: 17px 20px;
    transition: 0.5s ease-in-out;
    overflow: hidden;
}

.composting-machine-btn::after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: -15%;
    width: 0;
    height: 106%;
    transform: skew(45deg);
    z-index: -1;
    background: #2c4112;
    transition: 0.4s ease-in-out;
}

.composting-machine-btn:hover {
    color: #ffffff;
}

.composting-machine-btn:hover::after {
    width: 100%;
    transform: skew(0deg);
    left: 0;
}

.composting-machine-btn.composting-machine-btn-highlighted::after {
    background: #ffffff;
}

.composting-machine-btn.composting-machine-btn-highlighted:hover {
    color: #79a444;
}

.composting-machine-hero {
    position: relative;
    padding: 150px 0 90px;
    background-image: url(../images/single_product_hero_bg.webp);
    background-position: center;
    background-size: cover;
    overflow: hidden;
}

.composting-machine-hero-overlay {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: linear-gradient(135deg, rgba(19, 41, 13, 0.92) 0%, rgba(5, 14, 6, 0.76) 52%, rgba(91, 130, 43, 0.86) 100%);
}

.composting-machine-hero::after {
    content: "";
    position: absolute;
    width: 440px;
    height: 440px;
    border-radius: 50%;
    background: rgba(121, 164, 68, 0.25);
    filter: blur(70px);
    right: -120px;
    top: 150px;
}

.composting-machine-hero-row {
    position: relative;
    z-index: 2;
}

.composting-machine-breadcrumb-wrap {
    margin-bottom: 24px;
}

.breadcrumb {
    margin: 0;
}

.breadcrumb-item,
.breadcrumb-item a,
.breadcrumb-item.active {
    color: rgba(255, 255, 255, 0.86);
    font-size: 15px;
    font-weight: 700;
}

.breadcrumb-item+.breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.58);
}

.composting-machine-badge {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    border-radius: 50px;
    background: rgba(121, 164, 68, 0.34);
    border: 1px solid rgba(121, 164, 68, 0.38);
    color: #ffffff;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.composting-machine-hero h1 {
    color: #ffffff;
    font-size: 58px;
    line-height: 68px;
    font-weight: 900;
    margin-bottom: 14px;
}

.composting-machine-hero h2 {
    color: #79a444;
    font-size: 24px;
    line-height: 34px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 18px;
}

.composting-machine-hero p {
    color: #ffffff;
    font-size: 19px;
    line-height: 31px;
    font-weight: 500;
    max-width: 680px;
    margin-bottom: 32px;
}

.composting-machine-hero-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.composting-machine-outline-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.55);
    border-radius: 10px;
    padding: 16px 20px;
    font-size: 16px;
    line-height: 16px;
    font-weight: 800;
    transition: 0.3s ease;
}

.composting-machine-outline-btn:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.12);
    border-color: #79a444;
}

.composting-machine-transparent-media {
    background: transparent;
}

.composting-machine-hero-product-card {
    border-radius: 28px;
    padding: 34px;
    background: #fff;
    border: 1px solid rgba(255, 255, 255, 0.52);
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.25);
}

.composting-machine-hero-product-card img {
    width: 100%;
    height: 355px;
    object-fit: contain;
    background: transparent;
}

.composting-machine-hero-stat-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 24px;
}

.composting-machine-hero-stat-grid div {
    background: #f7fbf3;
    border: 1px solid rgba(121, 164, 68, 0.24);
    border-radius: 14px;
    padding: 18px;
}

.composting-machine-hero-stat-grid strong {
    display: block;
    color: #213412;
    font-size: 25px;
    line-height: 31px;
    font-weight: 900;
}

.composting-machine-hero-stat-grid span {
    display: block;
    color: #4d5e45;
    font-size: 14px;
    line-height: 22px;
    font-weight: 700;
}

.composting-machine-section-padding {
    padding: 92px 0;
}

.composting-machine-section-title {
    margin-bottom: 28px;
}

.composting-machine-section-title h3 {
    color: #79a444;
    font-size: 14px;
    line-height: 20px;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.composting-machine-section-title h2 {
    color: #10210f;
    font-size: 42px;
    line-height: 52px;
    font-weight: 900;
    margin: 0;
}

.composting-machine-section-title.text-center {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.text-white h2,
.text-white h3 {
    color: #ffffff;
}

.composting-machine-lead-text {
    color: #3e4d39;
    font-size: 18px;
    line-height: 31px;
    font-weight: 500;
    margin-bottom: 26px;
}

.composting-machine-image-showcase {
    border-radius: 26px;
    overflow: hidden;
    min-height: 430px;
    box-shadow: 0 18px 56px rgba(29, 67, 22, 0.12);
}

.composting-machine-image-showcase img {
    width: 100%;
    height: 580px;
    object-fit: cover;
    background: transparent;
}

.composting-machine-quick-facts {
    display: grid;
    gap: 14px;
}

.composting-machine-quick-facts div,
.composting-machine-impact-grid div,
.composting-machine-tech-card,
.composting-machine-feature-card,
.composting-machine-premium-card,
.composting-machine-model-card,
.composting-machine-solution-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.composting-machine-quick-facts div {
    display: flex;
    align-items: center;
    gap: 14px;
    color: #203616;
    background: #f7fbf3;
    border: 1px solid rgba(121, 164, 68, 0.20);
    border-radius: 14px;
    padding: 17px 19px;
    font-size: 16px;
    line-height: 25px;
    font-weight: 600;
}

.composting-machine-quick-facts span,
.composting-machine-impact-grid span,
.composting-machine-tech-card span,
.composting-machine-feature-card span {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 42px;
    border-radius: 12px;
    background: #79a444;
    color: #ffffff;
    font-size: 18px;
    font-weight: 900;
}

.composting-machine-live-icon {
    width: 24px;
    height: 24px;
    flex: 0 0 24px;
    object-fit: contain;
    background: transparent;
}

.composting-machine-light-section {
    background: #f7fbf3;
}

.composting-machine-premium-card {
    background: #ffffff;
    border: 1px solid rgba(121, 164, 68, 0.18);
    border-radius: 24px;
    padding: 38px;
    box-shadow: 0 14px 44px rgba(29, 67, 22, 0.08);
}

.composting-machine-premium-card:hover,
.composting-machine-solution-card:hover,
.composting-machine-model-card:hover,
.composting-machine-feature-card:hover,
.composting-machine-tech-card:hover {
    transform: translateY(-3px);
}

.composting-machine-full-height {
    height: 100%;
}

.composting-machine-premium-card p {
    color: #3e4d39;
    font-size: 18px;
    line-height: 31px;
    font-weight: 600;
}

.composting-machine-dark-premium {
    background: linear-gradient(135deg, rgb(42, 48, 32) 0%, rgba(30, 49, 10, 0.95) 70%, rgb(44, 48, 38) 100%);
}

.composting-machine-dark-premium p {
    color: rgba(255, 255, 255, 0.86);
}

.composting-machine-pill-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 12px;
}

.composting-machine-pill-list span {
    display: inline-flex;
    align-items: center;
    background: #f7fbf3;
    border: 1px solid rgba(121, 164, 68, 0.22);
    color: #203616;
    border-radius: 100px;
    padding: 13px 17px;
    font-size: 16px;
    line-height: 22px;
    font-weight: 600;
}

.composting-machine-white-pills span {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.14);
}

.composting-machine-solution-card {
    height: 100%;
    background: #ffffff;
    border: 1px solid rgba(121, 164, 68, 0.18);
    border-radius: 20px;
    padding: 18px;
    box-shadow: 0 12px 34px rgba(29, 67, 22, 0.08);
}

.composting-machine-solution-card img {
    width: 100%;
    height: 190px;
    object-fit: cover;
    border-radius: 16px;
    margin-bottom: 18px;
    background: transparent;
}

.composting-machine-solution-card h3 {
    color: #10210f;
    font-size: 18px;
    line-height: 28px;
    font-weight: 600;
    margin: 0;
}

.composting-machine-impact-section {
    background: linear-gradient(135deg, rgb(42, 48, 32) 0%, rgba(30, 49, 10, 0.96) 70%, rgb(70, 101, 32) 100%);
    color: #ffffff;
}

.composting-machine-impact-image {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 18px 58px rgba(0, 0, 0, 0.20);
}

.composting-machine-impact-image img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    background: transparent;
}

.composting-machine-impact-grid {
    display: grid;
    gap: 15px;
}

.composting-machine-impact-grid div {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 16px;
    padding: 18px 20px;
    color: #ffffff;
    font-size: 17px;
    line-height: 26px;
    font-weight: 600;
}

.composting-machine-model-card {
    height: 100%;
    background: #ffffff;
    border: 1px solid rgba(121, 164, 68, 0.18);
    border-radius: 24px;
    padding: 30px;
}

.composting-machine-model-featured {
    border-color: rgba(121, 164, 68, 0.45);
}

.composting-machine-model-image {
    min-height: 230px;
    margin-bottom: 24px;
}

.composting-machine-model-image img {
    width: 100%;
    height: 230px;
    object-fit: contain;
    background: transparent;
}

.composting-machine-model-card h3 {
    color: #10210f;
    font-size: 26px;
    line-height: 36px;
    font-weight: 700;
    margin-bottom: 18px;
}

.composting-machine-spec-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    border-top: 1px solid rgba(121, 164, 68, 0.18);
    padding: 15px 0;
}

.composting-machine-spec-row span {
    color: #55614d;
    font-size: 16px;
    line-height: 24px;
    font-weight: 600;
}

.composting-machine-spec-row strong {
    color: #243913;
    font-size: 16px;
    line-height: 24px;
    font-weight: 600;
    text-align: right;
}

.composting-machine-model-table-wrap {
    margin-top: 34px;
    border-radius: 18px;
    overflow-x: auto;
    overflow-y: hidden;
    border: 1px solid rgba(121, 164, 68, 0.20);
    box-shadow: 0 14px 40px rgba(29, 67, 22, 0.08);
}

.composting-machine-model-table {
    margin: 0;
}

.composting-machine-model-table th {
    background: #2c4112;
    color: #ffffff;
    padding: 18px;
    font-size: 16px;
    line-height: 26px;
    font-weight: 600;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.composting-machine-model-table td {
    color: #33432b;
    padding: 18px;
    font-size: 16px;
    line-height: 24px;
    font-weight: 500;
    vertical-align: middle;
}

.composting-machine-feature-card {
    height: 100%;
    background: #ffffff;
    border: 1px solid rgba(121, 164, 68, 0.18);
    border-radius: 20px;
    padding: 28px;
    box-shadow: 0 12px 34px rgba(29, 67, 22, 0.08);
}

.composting-machine-feature-card span {
    margin-bottom: 20px;
}

.composting-machine-feature-card h3 {
    color: #10210f;
    font-size: 18px;
    line-height: 28px;
    font-weight: 600;
    margin: 0;
    letter-spacing: 0.5px;
}

.composting-machine-tech-section {
    background: #ffffff;
}

.composting-machine-tech-machine {
    border-radius: 26px;
    padding: 26px;
    box-shadow: 0 18px 56px rgba(29, 67, 22, 0.10);
}

.composting-machine-tech-machine img {
    width: 100%;
    height: 390px;
    object-fit: contain;
    background: transparent;
}

.composting-machine-tech-card {
    background: #f7fbf3;
    border: 1px solid rgba(121, 164, 68, 0.18);
    border-radius: 18px;
    padding: 24px;
    margin-bottom: 16px;
}

.composting-machine-tech-card h3 {
    color: #10210f;
    font-size: 22px;
    line-height: 30px;
    font-weight: 900;
    margin: 16px 0 8px;
}

.composting-machine-tech-card p {
    color: #3e4d39;
    font-size: 16px;
    line-height: 27px;
    font-weight: 600;
    margin: 0;
}

.composting-machine-accessories-section {
    background: #f7fbf3;
}

.composting-machine-contact-section {
    background: linear-gradient(135deg, rgb(42, 48, 32) 0%, rgba(30, 49, 10, 0.96) 70%, rgb(44, 48, 38) 100%);
}

.composting-machine-contact-section p {
    color: rgba(255, 255, 255, 0.84);
    font-size: 18px;
    line-height: 30px;
    font-weight: 600;
    margin-bottom: 24px;
}

.composting-machine-contact-lines {
    display: grid;
    gap: 12px;
}

.composting-machine-contact-lines a {
    color: #ffffff;
    font-size: 18px;
    line-height: 28px;
    font-weight: 800;
}

.composting-machine-contact-form {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 22px;
    padding: 32px;
}

.composting-machine-custom-input {
    height: 54px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: #ffffff;
    color: #10210f;
    font-size: 16px;
    line-height: 24px;
    font-weight: 700;
    padding: 13px 16px;
    box-shadow: none;
}

.composting-machine-custom-textarea {
    height: auto;
    resize: vertical;
}

.composting-machine-custom-input:focus {
    border-color: #79a444;
    box-shadow: 0 0 0 4px rgba(121, 164, 68, 0.18);
}

.composting-machine-floating-whatsapp {
    position: fixed;
    right: 22px;
    bottom: 22px;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #25d366;
    color: #ffffff;
    font-size: 15px;
    line-height: 15px;
    font-weight: 900;
    z-index: 900;
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.36);
}

.composting-machine-floating-whatsapp:hover {
    color: #ffffff;
    background: #1ebe5d;
}


/*  */


.case-study-single-page a {
    text-decoration: none;
}

.case-study-single-page img {
    max-width: 100%;
    display: block;
}

.case-study-single-cover {
    background: #f3f7ef;
    padding: 48px 0 0;
}

.case-study-single-breadcrumb-wrap {
    margin-bottom: 56px;
}

.case-study-single-breadcrumb-wrap .breadcrumb {
    margin: 0;
}

.case-study-single-breadcrumb-wrap .breadcrumb-item,
.case-study-single-breadcrumb-wrap .breadcrumb-item a,
.case-study-single-breadcrumb-wrap .breadcrumb-item.active {
    color: #47603a;
    font-size: 15px;
    line-height: 23px;
    font-weight: 800;
}

.case-study-single-cover-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 58px;
    align-items: end;
    padding-bottom: 54px;
}

.case-study-single-kicker {
    display: inline-block;
    color: #79a444;
    border-bottom: 3px solid #79a444;
    padding-bottom: 8px;
    font-size: 14px;
    line-height: 18px;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 26px;
}

.case-study-single-cover h1 {
    color: #212529;
    font-size: 58px;
    line-height: 68px;
    font-weight: 900;
    margin-bottom: 14px;
    letter-spacing: 0.5px;
    max-width: 1020px;
    margin-bottom: 24px;
}

.case-study-single-cover-copy p {
    color: #2d4325;
    font-size: 26px;
    line-height: 38px;
    font-weight: 800;
    max-width: 780px;
}

.case-study-single-cover-meta {
    background: #10210f;
    color: #ffffff;
    padding: 32px;
    border-radius: 0;
    border-left: 8px solid #79a444;
}

.case-study-single-cover-meta .section-title h2 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 36px;
}

.case-study-single-cover-meta span {
    display: block;
    color: #9fca68;
    font-size: 13px;
    line-height: 18px;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.case-study-single-cover-meta strong {
    display: block;
    color: #ffffff;
    font-size: 28px;
    line-height: 36px;
    font-weight: 900;
    margin-bottom: 20px;
}

.case-study-single-text-link {
    color: #ffffff;
    border-bottom: 2px solid #79a444;
    font-size: 16px;
    line-height: 24px;
    font-weight: 900;
}

.case-study-single-text-link:hover {
    color: #9fca68;
}

.case-study-single-cover-image {
    width: 100%;
    height: 470px;
    overflow: hidden;
    border-top: 1px solid rgba(16, 33, 15, 0.12);
    border-bottom: 1px solid rgba(16, 33, 15, 0.12);
}

.case-study-single-cover-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.case-study-single-ribbon {
    background: #10210f;
    padding: 0;
}

.case-study-single-ribbon-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.case-study-single-ribbon-grid div {
    min-height: 190px;
    border-right: 1px solid rgba(255, 255, 255, 0.14);
    padding: 34px 0px;
}

.case-study-single-ribbon-grid div:nth-child(1) {
    padding: 34px 32px 34px 0;
}

.case-study-single-ribbon-grid div:nth-child(2) {
    padding: 34px 0px;
}

.case-study-single-ribbon-grid div:nth-child(3) {
    padding: 34px 0px;
}

.case-study-single-ribbon-grid div:last-child {
    border-right: 0;
}

.case-study-single-ribbon-grid span {
    display: block;
    color: #79a444;
    font-size: 40px;
    line-height: 42px;
    font-weight: 900;
    margin-bottom: 18px;
}

.case-study-single-ribbon-grid h2 {
    color: #ffffff;
    font-size: 24px;
    line-height: 32px;
    font-weight: 900;
    margin: 0;
}

.case-study-single-report {
    padding: 94px 0;
    background: #ffffff;
}

.case-study-single-file-nav {
    position: sticky;
    top: 110px;
    background: #f3f7ef;
    border: 1px solid rgba(121, 164, 68, 0.22);
    border-left: 7px solid #79a444;
    padding: 28px 26px;
}

.case-study-single-file-nav span {
    display: block;
    color: #79a444;
    font-size: 13px;
    line-height: 18px;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.case-study-single-file-nav h2 {
    color: #10210f;
    font-size: 26px;
    line-height: 34px;
    font-weight: 900;
    margin-bottom: 24px;
}

.case-study-single-file-nav a {
    display: block;
    color: #42563b;
    border-top: 1px solid rgba(16, 33, 15, 0.12);
    padding: 13px 0;
    font-size: 15px;
    line-height: 22px;
    font-weight: 800;
}

.case-study-single-file-nav a:hover {
    color: #79a444;
}

.case-study-single-article {
    display: grid;
    gap: 70px;
}

.case-study-single-chapter {
    border-top: 1px solid rgba(16, 33, 15, 0.12);
    padding-top: 38px;
}

.case-study-single-chapter-label {
    color: #79a444;
    font-size: 13px;
    line-height: 18px;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 14px;
}


.case-study-single-challenge-panel {
    background: linear-gradient(135deg, rgb(71 106 18) 0%, rgba(30, 49, 10, 0.863) 30%, rgba(30, 49, 10, 0.863) 70%, rgb(94 143 43) 100%);
    ;
    color: #ffffff;
    padding: 34px;
    margin-top: 34px;
}

.case-study-single-challenge-panel h3 {
    color: #ffffff;
    font-size: 28px;
    line-height: 36px;
    font-weight: 900;
    margin-bottom: 20px;
}

.case-study-single-challenge-panel ol {
    margin: 0;
    padding-left: 24px;
}

.case-study-single-challenge-panel li {
    color: rgba(255, 255, 255, 0.88);
    font-size: 17px;
    line-height: 30px;
    font-weight: 700;
    margin-bottom: 12px;
}

.case-study-single-wide-media {
    margin: 0;
    height: 440px;
    overflow: hidden;
    border-radius: 0;
    box-shadow: 0 18px 52px rgba(16, 33, 15, 0.16);
}

.case-study-single-wide-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.case-study-single-chapter-split {
    display: grid;
    grid-template-columns: 280px minmax(0, 1fr);
    gap: 46px;
}

.case-study-single-chapter blockquote,
.case-study-single-conclusion blockquote {
    color: #10210f;
    background: #f3f7ef;
    border-left: 7px solid #79a444;
    padding: 28px 30px;
    font-size: 24px;
    line-height: 34px;
    font-weight: 600;
    margin: 30px 0;
}

.case-study-single-journey-stack {
    display: grid;
    gap: 18px;
}

.case-study-single-journey-stack div {
    display: grid;
    gap: 28px;
    align-items: start;
}

.case-study-single-journey-stack span {
    color: #79a444;
    font-size: 16px;
    line-height: 24px;
    font-weight: 700;
    text-transform: uppercase;
}

.case-study-single-journey-stack p {
    margin: 0;
}

.case-study-single-results-board {
    background: linear-gradient(135deg, rgb(71 106 18) 0%, rgba(30, 49, 10, 0.863) 30%, rgba(30, 49, 10, 0.863) 70%, rgb(94 143 43) 100%);
    color: #ffffff;
    padding: 44px;
}

.case-study-single-results-board .case-study-single-chapter-label,
.case-study-single-results-board h2 {
    color: #ffffff;
}

.case-study-single-results-table {
    border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.case-study-single-results-row {
    display: grid;
    grid-template-columns: 310px minmax(0, 1fr);
    gap: 34px;
    padding: 30px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.case-study-single-results-row h3 {
    color: #ffffff;
    font-size: 24px;
    line-height: 32px;
    font-weight: 900;
    margin: 0;
}

.case-study-single-results-row ul {
    margin: 0;
    padding-left: 20px;
}

.case-study-single-results-row li {
    color: rgba(255, 255, 255, 0.88);
    font-size: 17px;
    line-height: 29px;
    font-weight: 700;
    margin-bottom: 9px;
}

.case-study-single-conclusion {
    background: #f3f7ef;
    padding: 44px;
    border: 1px solid rgba(121, 164, 68, 0.20);
}

.case-study-single-contact-section {
    background: #10210f;
    padding: 82px 0;
}

.case-study-single-contact-panel {
    display: grid;
    grid-template-columns: 360px minmax(0, 1fr);
    gap: 54px;
    align-items: start;
    color: #ffffff;
    align-items: center;
}

.case-study-single-contact-panel span {
    display: block;
    color: #79a444;
    font-size: 13px;
    line-height: 18px;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.case-study-single-contact-panel h2 {
    color: #ffffff;
}

.case-study-single-contact-list {
    display: grid;
    gap: 5px;
}

.case-study-single-contact-list p,
.case-study-single-contact-list a {
    color: #ffffff;
    font-size: 18px;
    line-height: 28px;
    font-weight: 600;
    margin: 0;
}


.faq-section {
    padding: 60px 0;
}

.faq-item {
    border: 1px solid #79a444;
    border-radius: 10px;
    margin-bottom: 10px;
    overflow: hidden;
}

.faq-q {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 20px;
    cursor: pointer;
    font-weight: 500;
    gap: 12px;
}

.faq-q h3 {
    font-size: 18px;
    line-height: 28px;
    margin: 0;
    color: #000;
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 20px;
}


.composting-machine-contact-form1 {
    border: 1px solid #79a444;
    padding: 20px;
    border-radius: 12px;
    margin-right: 30px;
}

.composting-machine-contact-form1 .composting-machine-custom-input {
    border: 1px solid #79a444;
}

.faq-a p {
    font-size: 16px;
    color: #000;
    line-height: 26px;
    margin: 0;
}

.faq-item.open .faq-a {
    max-height: 300px;
    padding: 10px 20px;
    background: #79a44414;
}

.faq-item.open .faq-q {
    border-bottom: 1px solid #79a444;
}

.faq-icon {
    transition: transform 0.25s;
}

.faq-item.open .faq-icon {
    transform: rotate(45deg);
}



.faq-tab {
    padding: 7px 16px;
    border-radius: 20px;
    font-size: 14px;
    border: 1px solid #2c4112;
    background: #fff;
    color: #000;
    cursor: pointer;
    transition: all 0.15s;
}

.faq-tab.active,
.faq-tab:hover {
    background: #79a44414;
    color: #000;
    border-color: #2c4112;
}

.faq-cta {
    background: #f9fafb;
    border-radius: 10px;
    border: 1px solid #e5e7eb;
}



/* Features */

.composting-machine-feature-showcase {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(120deg, rgba(247, 251, 243, 0.96) 0%, rgba(255, 255, 255, 1) 48%, rgba(229, 241, 217, 0.86) 100%);
}

.composting-machine-feature-showcase::before {
    content: "";
    position: absolute;
    inset: auto -10% -46% 48%;
    background: radial-gradient(circle, rgba(121, 164, 68, 0.28), rgba(121, 164, 68, 0));
    pointer-events: none;
}

.composting-machine-feature-copy,
.composting-machine-feature-media {
    position: relative;
    z-index: 1;
}

.composting-machine-feature-list {
    display: grid;
    gap: 16px;
    margin-top: 28px;
}

.composting-machine-feature-item {
    display: grid;
    grid-template-columns: 52px 1fr;
    align-items: center;
    gap: 16px;
    padding: 18px 20px;
    background: #ffffff;
    border: 1px solid rgba(121, 164, 68, 0.22);
    border-radius: 16px;
    box-shadow: 0 18px 46px rgba(33, 52, 18, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.composting-machine-feature-item:hover {
    transform: translateY(-4px);
    border-color: rgba(121, 164, 68, 0.48);
    box-shadow: 0 24px 60px rgba(33, 52, 18, 0.13);
}

.composting-machine-feature-item span {
    width: 52px;
    height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #213412;
    background: #eaf4df;
    border: 1px solid rgba(121, 164, 68, 0.34);
    font-size: 20px;
}

.composting-machine-feature-item h3 {
    margin: 0;
    color: #17270d;
    font-size: 20px;
    line-height: 30px;
    font-weight: 600;
}

.composting-machine-feature-card {
    position: relative;
    padding: 26px;
    border-radius: 28px;
    background: #9cc676;
    border: 1px solid rgba(121, 164, 68, 0.28);
    box-shadow: 0 26px 80px rgba(33, 52, 18, 0.2);
    overflow: hidden;
}

.composting-machine-feature-card::before {
    content: "";
    position: absolute;
    inset: 18px;
    border-radius: 22px;
    border: 1px solid rgba(255, 255, 255, 0.38);
    pointer-events: none;
}

.composting-machine-feature-card img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 390px;
    object-fit: contain;
    mix-blend-mode: multiply;
    filter: drop-shadow(0 26px 26px rgba(23, 39, 13, 0.22));
}

.composting-machine-feature-badge-row {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 18px;
}

.composting-machine-feature-badge-row div {
    padding: 14px 16px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.9);
    color: #213412;
    font-size: 14px;
    line-height: 20px;
    font-weight: 900;
    text-align: center;
}


/* Contact QR Section */

.samkiti-contact-extra {
    margin-top: 28px;
}

.samkiti-social-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.samkiti-social-row a {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #213412;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(121, 164, 68, 0.28);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.12);
    transition: 0.3s ease;
}

.samkiti-social-row a:hover {
    color: #ffffff;
    background: #79a444;
    transform: translateY(-4px);
}

.samkiti-qr-card {
    display: grid;
    grid-template-columns: 1fr 170px;
    gap: 22px;
    align-items: center;
    padding: 24px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(121, 164, 68, 0.28);
    box-shadow: 0 22px 60px rgba(20, 48, 14, 0.16);
    backdrop-filter: blur(8px);
}

.samkiti-qr-label {
    display: inline-flex;
    margin-bottom: 10px;
    padding: 7px 13px;
    border-radius: 50px;
    color: #213412;
    background: #eaf4df;
    font-size: 13px;
    font-weight: 800;
}

.samkiti-qr-content h3 {
    margin: 0 0 8px;
    color: #17270d;
    font-size: 26px;
    line-height: 34px;
    font-weight: 900;
}

.samkiti-qr-content p {
    margin: 0;
    color: #4d5e45;
    font-size: 16px;
    line-height: 24px;
    font-weight: 600;
}

.samkiti-qr-image {
    padding: 12px;
    border-radius: 18px;
    background: #ffffff;
    border: 1px solid rgba(121, 164, 68, 0.25);
}

.samkiti-qr-image img {
    width: 100%;
    display: block;
    border-radius: 10px;
}


.temprature_img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    max-height: 400px;
    object-position: left;
}

.full_width_sri_coating {
    margin: 0;
}

/* biofuel-section */
.biofuel-section {
    background: #f7fbf3;
    padding: 60px 20px;
    margin: 0 auto;
}

.biofuel-title {
    color: #6ea639;
    font-weight: 800;
    font-size: 34px;
    letter-spacing: 0.5px;
    margin-bottom: 22px;
    text-transform: uppercase;
}

.biofuel-intro {
    font-size: 16px;
    color: #3a4a36;
    margin-bottom: 14px;
}

.biofuel-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 36px;
}

.biofuel-list li {
    position: relative;
    padding-left: 34px;
    margin-bottom: 12px;
    font-size: 15px;
    color: #3a4a36;
    line-height: 1.5;
}

.biofuel-list li::before {
    content: "\2713";
    position: absolute;
    left: 0;
    top: 0;
    width: 22px;
    height: 22px;
    background-color: #6ea639;
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.biofuel-list li strong {
    color: #1f2a1f;
}

.biofuel-table-wrapper {
    background-color: #ffffff;
    border-radius: 14px;
    box-shadow: 0 6px 24px rgba(70, 100, 40, 0.12);
    overflow: hidden;
    border: 1px solid #e1ead6;
}

.table-responsive {
    margin: 0;
}

table.biofuel-table {
    margin-bottom: 0;
    min-width: 960px;
}

table.biofuel-table thead th {
    background-color: #5c8a2f;
    color: #ffffff;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 0.5px;
    line-height: 26px;
    padding: 18px 16px;
    border: none;
    text-align: center;
    vertical-align: middle;
}

table.biofuel-table thead th:first-child {
    text-align: left;
    border-top-left-radius: 0;
}

table.biofuel-table tbody td {
    padding: 16px;
    font-size: 14px;
    text-align: center;
    color: #2c3b28;
    border-color: #eef3e8;
    vertical-align: middle;
    white-space: nowrap;
    letter-spacing: 0.5px;
    font-weight: 500;
}

table.biofuel-table tbody td:first-child {
    text-align: left;
    font-weight: 700;
    color: #4a6b28;
}

table.biofuel-table tbody tr:nth-child(odd) {
    background-color: #eef6e3;
}

table.biofuel-table tbody tr:nth-child(even) {
    background-color: #ffffff;
}

table.biofuel-table tbody tr:hover {
    background-color: #dcecc9;
    transition: background-color 0.2s ease;
}

.badge-model {
    display: inline-block;
    background-color: #dcecc9;
    color: #4a6b28;
    padding: 6px 14px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 13px;
}

.biofuel-section .about_para {
    margin-bottom: 10px;
}


.segments-section .composting-machine-solution-card h3 {
    color: rgb(16, 33, 15);
    font-size: 22px;
    line-height: 32px;
    font-weight: 800;
}


.diesel-set-page-models {
    background-color: #fff;
}

.acousticenclosure-section .composting-machine-solution-card img {
    height: 440px;
    object-fit: cover;
}

.acousticenclosure_application {
    display: grid;
    gap: 14px;
}

.acousticenclosure_application div {
    font-size: 16px;
    line-height: 25px;
    font-weight: 600;
    color: #203616;
    gap: 14px;
    display: flex;
    align-items: center;
}

.composting-machine-feature-showcase .composting-machine-quick-facts p {
    margin: 0;
}


:root {
    --kk-ink: #1a2e1a;
    --kk-forest: #0d2c1e;
    --kk-forest-2: #174b32;
    --kk-leaf: #79a444;
    --kk-leaf-light: #b5d188;
    --kk-mist: #eef5f1;
    --kk-white: #fff;
    --kk-muted: #617064;
    --kk-shadow: 0 28px 80px rgba(9, 42, 27, .17);
}

.kk-page,
.kk-page * {
    box-sizing: border-box;
}

.kk-page {
    overflow: hidden;
    color: var(--kk-ink);
}

.kk-container {
    width: min(1160px, calc(100% - 40px));
    margin-inline: auto;
}

.kk-progress {
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    transform: scaleX(0);
    transform-origin: left;
    background: linear-gradient(90deg, var(--kk-leaf), var(--kk-leaf-light));
    box-shadow: 0 0 14px rgba(181, 209, 136, .75);
    pointer-events: none;
}

/* Premium profile hero */
.kk-hero {
    position: relative;
    min-height: 690px;
    overflow: hidden;
    color: var(--kk-white);
    background:
        linear-gradient(105deg, rgba(7, 36, 21, .98), rgba(13, 55, 32, .93) 52%, rgba(25, 79, 43, .78)),
        url('<?php echo SITE_URL; ?>/assets/images/same_banner4.png') center / cover;
}

.kk-hero::after {
    content: '';
    position: absolute;
    width: 570px;
    height: 570px;
    right: -210px;
    top: 130px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 50%;
    box-shadow: 0 0 0 70px rgba(255, 255, 255, .025), 0 0 0 140px rgba(255, 255, 255, .018);
}

.kk-glow {
    position: absolute;
    z-index: 1;
    left: 0;
    top: 0;
    width: 520px;
    height: 520px;
    border-radius: 50%;
    opacity: .3;
    filter: blur(25px);
    transform: translate3d(calc(var(--mx, 50vw) - 260px), calc(var(--my, 40vh) - 260px), 0);
    background: radial-gradient(circle, rgba(181, 209, 136, .55), rgba(121, 164, 68, .1) 45%, transparent 70%);
    transition: transform .18s ease-out;
    pointer-events: none;
}

.kk-orb {
    position: absolute;
    z-index: 1;
    border: 1px solid rgba(181, 209, 136, .3);
    border-radius: 50%;
    pointer-events: none;
}

.kk-orb-1 {
    right: 6%;
    top: 28%;
    width: 24px;
    height: 24px;
    animation: kkDrift 6s ease-in-out infinite;
}

.kk-orb-2 {
    left: 45%;
    bottom: 13%;
    width: 13px;
    height: 13px;
    background: rgba(181, 209, 136, .34);
    animation: kkDrift 5s ease-in-out 1s infinite reverse;
}

.kk-orb-3 {
    left: 4%;
    top: 31%;
    width: 18px;
    height: 18px;
    animation: kkDrift 7s ease-in-out 2s infinite;
}

.kk-hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.04fr .96fr;
    align-items: center;
    gap: 75px;
    min-height: 690px;
    padding: 120px 0 65px;
}

.kk-eyebrow,
.kk-section-label {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0 0 17px;
    color: var(--kk-leaf-light);
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.kk-eyebrow::before,
.kk-section-label::before {
    content: '';
    width: 38px;
    height: 2px;
    background: var(--kk-leaf);
}

.kk-hero h1 {
    margin: 0;
    color: var(--kk-white);
    font-size: clamp(58px, 6.3vw, 88px);
    font-weight: 700;
    line-height: .98;
    letter-spacing: -3.5px;
}

.kk-hero h1 span {
    color: var(--kk-leaf-light);
}

.kk-role {
    margin: 23px 0 30px;
    color: rgba(255, 255, 255, .78);
    font-size: 20px;
}

.kk-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.kk-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-height: 49px;
    overflow: hidden;
    padding: 0 22px;
    border: 1px solid transparent;
    border-radius: 10px;
    background: var(--kk-leaf);
    color: var(--kk-white) !important;
    font-weight: 700;
    text-decoration: none !important;
    transition: transform .2s, background .2s;
}

.kk-btn::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -80%;
    width: 55%;
    height: 200%;
    transform: rotate(20deg);
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .28), transparent);
    transition: left .6s;
}

.kk-btn:hover {
    transform: translateY(-2px);
    background: #688f3d;
}

.kk-btn:hover::after {
    left: 135%;
}

.kk-btn-outline {
    background: rgba(255, 255, 255, .07);
    border-color: rgba(255, 255, 255, .38);
    backdrop-filter: blur(8px);
}

.kk-portrait-stage {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: kkPortraitIn 1.05s .2s cubic-bezier(.16, 1, .3, 1) both;
}

.kk-portrait-stage::before,
.kk-portrait-stage::after {
    content: '';
    position: absolute;
    width: 430px;
    height: 430px;
    border-radius: 46% 54% 49% 51%;
}

.kk-portrait-stage::before {
    background: linear-gradient(145deg, var(--kk-leaf), #a8ca73);
    animation: kkOrganic 13s linear infinite;
}

.kk-portrait-stage::after {
    width: 440px;
    height: 440px;
    border: 1px solid rgba(255, 255, 255, .22);
    animation: kkOrganic 17s linear infinite reverse;
}

.kk-portrait {
    position: relative;
    z-index: 1;
    width: 398px;
    height: 455px;
    border: 8px solid rgba(255, 255, 255, .94);
    border-radius: 46% 54% 49% 51% / 42% 45% 55% 58%;
    object-fit: cover;
    object-position: 51% 34%;
    box-shadow: var(--kk-shadow);
    animation: kkPortraitFloat 5s 1.25s ease-in-out infinite;
}

.kk-profile-tag {
    position: absolute;
    z-index: 3;
    right: 0;
    bottom: 25px;
    padding: 15px 20px;
    border: 1px solid rgba(255, 255, 255, .25);
    border-radius: 12px;
    background: rgba(7, 39, 24, .82);
    box-shadow: 0 16px 36px rgba(0, 0, 0, .2);
    backdrop-filter: blur(14px);
    animation: kkTagIn .75s .95s cubic-bezier(.16, 1, .3, 1) both, kkTagFloat 4.2s 1.7s ease-in-out infinite;
}

.kk-profile-tag strong,
.kk-profile-tag span {
    display: block;
}

.kk-profile-tag strong {
    color: #fff;
    font-size: 17px;
}

.kk-profile-tag span {
    color: var(--kk-leaf-light);
    font-size: 13px;
}

.kk-scroll-cue {
    position: absolute;
    z-index: 3;
    left: 50%;
    bottom: 19px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, .6);
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.kk-scroll-cue i {
    position: relative;
    width: 22px;
    height: 35px;
    border: 1px solid rgba(255, 255, 255, .4);
    border-radius: 20px;
}

.kk-scroll-cue i::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 7px;
    width: 3px;
    height: 7px;
    border-radius: 5px;
    background: var(--kk-leaf-light);
    transform: translateX(-50%);
    animation: kkScrollDot 1.8s ease-in-out infinite;
}

/* The original page has two primary profile content sections. */
.kk-section {
    padding: 105px 0;
}

.kk-intro {
    position: relative;
    background: linear-gradient(180deg, #f4f8f5, #fff);
}

.kk-intro::before {
    content: '';
    position: absolute;
    inset: 0 auto 0 0;
    width: 43%;
    background: linear-gradient(135deg, rgba(121, 164, 68, .11), transparent 72%);
    clip-path: polygon(0 0, 100% 0, 72% 100%, 0 100%);
}

.kk-intro-grid {
    position: relative;
    display: grid;
    grid-template-columns: .72fr 1.28fr;
    align-items: start;
    gap: 86px;
}

.kk-meta {
    position: sticky;
    top: 35px;
    padding: 38px;
    border: 1px solid rgba(121, 164, 68, .22);
    border-radius: 22px;
    background: rgba(255, 255, 255, .86);
    box-shadow: 0 20px 60px rgba(17, 63, 39, .09);
    backdrop-filter: blur(12px);
}

.kk-monogram {
    width: 76px;
    height: 76px;
    display: grid;
    place-items: center;
    margin-bottom: 24px;
    border-radius: 20px;
    background: var(--kk-forest);
    color: var(--kk-leaf-light);
    font-size: 25px;
    font-weight: 800;
}

.kk-meta h3 {
    margin: 0;
    color: var(--kk-ink);
    font-size: 24px;
}

.kk-meta>p {
    margin: 5px 0 0;
    color: var(--kk-muted);
}

.kk-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 28px;
}

.kk-stat {
    padding: 15px 8px;
    border-radius: 12px;
    background: #eef5ea;
    text-align: center;
    transition: transform .28s, box-shadow .28s;
}

.kk-stat:hover {
    transform: translateY(-6px);
    box-shadow: 0 13px 25px rgba(13, 44, 30, .12);
}

.kk-stat strong {
    display: block;
    color: var(--kk-forest);
    font-size: 23px;
    line-height: 1;
}

.kk-stat span {
    display: block;
    margin-top: 6px;
    color: var(--kk-muted);
    font-size: 10px;
    line-height: 1.35;
    text-transform: uppercase;
}

.kk-intro .kk-section-label {
    color: var(--kk-leaf);
}

.kk-title {
    font-size: 46px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 56px;
    letter-spacing: 0.5px;
    text-transform: capitalize;
}

.kk-lead {
    margin: 0;
    color: #344a3a;
    font-size: 20px;
    line-height: 1.75;
}

.kk-quote {
    display: block;
    height: 50px;
    margin-bottom: 12px;
    color: rgba(121, 164, 68, .25);
    font-family: Georgia, serif;
    font-size: 88px;
    line-height: 1;
}

.kk-story {
    position: relative;
    overflow: hidden;
    color: #fff;
    background: var(--kk-forest);
}

.kk-story::before {
    content: '';
    position: absolute;
    inset: 0;
        background: linear-gradient(135deg, rgb(42 48 32) 0%, rgb(28 34 21 / 86%) 30%, rgba(30, 49, 10, 0.863) 70%, rgb(44 48 38) 100%);
}

.kk-story-grid {
    position: relative;
    display: grid;
    grid-template-columns: 1.08fr .92fr;
    align-items: center;
    gap: 86px;
}

.kk-story .kk-title {
    color: #fff;
}

.kk-story-copy p:not(.kk-section-label) {
    margin: 0 0 22px;
    color: rgba(255, 255, 255, .76);
    font-size: 17px;
    line-height: 1.65;
}

.kk-story-copy p:last-child {
    margin-bottom: 0;
}

.kk-visual {
    position: relative;
    padding: 0 30px 30px 0;
}

.kk-visual::before {
    content: '';
    position: absolute;
    inset: 30px 0 0 30px;
    border-radius: 22px;
    background: var(--kk-leaf);
}

.kk-visual img {
    position: relative;
    width: 100%;
    height: 570px;
    border-radius: 22px;
    object-fit: cover;
    box-shadow: 0 30px 70px rgba(0, 0, 0, .3);
    transition: transform .18s linear;
}

.kk-visual-note {
    position: absolute;
    right: 0;
    bottom: 0;
    max-width: 260px;
    padding: 23px 24px;
    border-radius: 16px;
    background: #fff;
    color: var(--kk-forest);
    box-shadow: 0 18px 50px rgba(0, 0, 0, .25);
    animation: kkNotePulse 3.5s ease-in-out infinite;
}

.kk-visual-note strong {
    display: block;
    font-size: 19px;
}

.kk-visual-note span {
    display: block;
    margin-top: 5px;
    color: var(--kk-muted);
    font-size: 13px;
    line-height: 23px;
}

.js .kk-reveal {
    opacity: 0;
    transform: translateY(42px);
    transition: opacity .8s cubic-bezier(.2, .75, .2, 1), transform .8s cubic-bezier(.2, .75, .2, 1);
}

.js .kk-reveal.kk-left {
    transform: translateX(-52px);
}

.js .kk-reveal.kk-right {
    transform: translateX(52px);
}

.js .kk-reveal.is-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

.kk-copy>* {
    animation: kkHeroUp .85s cubic-bezier(.2, .75, .2, 1) both;
}

.kk-copy .kk-eyebrow {
    animation-delay: .12s;
}

.kk-copy h1 {
    animation-delay: .22s;
}

.kk-copy .kk-role {
    animation-delay: .34s;
}

.kk-copy .kk-actions {
    animation-delay: .46s;
}

@keyframes kkHeroUp {
    from {
        opacity: 0;
        transform: translateY(35px);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

@keyframes kkPortraitIn {
    from {
        opacity: 0;
        transform: translateX(60px) scale(.88);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

@keyframes kkPortraitFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-13px);
    }
}

@keyframes kkTagIn {
    from {
        opacity: 0;
        transform: translateX(45px);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

@keyframes kkTagFloat {

    0%,
    100% {
        margin-bottom: 0;
    }

    50% {
        margin-bottom: 7px;
    }
}

@keyframes kkOrganic {
    to {
        transform: rotate(360deg);
    }
}

@keyframes kkDrift {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(18px, -25px) scale(1.25);
    }
}

@keyframes kkScrollDot {
    0% {
        opacity: 0;
        transform: translate(-50%, 0);
    }

    35% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        transform: translate(-50%, 13px);
    }
}

@keyframes kkNotePulse {

    0%,
    100% {
        box-shadow: 0 18px 50px rgba(0, 0, 0, .25);
    }

    50% {
        box-shadow: 0 20px 58px rgba(121, 164, 68, .34);
    }
}


:root {
  --sk-dark: #1c2d16;
  --sk-green: #5f7f27;
  --sk-lime: #a7c66b;
  --sk-soft: #f4f7ef;
  --sk-text: #24321e;
  --sk-muted: #66705f;
}


.linktree-section {
  position: relative;
  padding: 105px 0 115px;
  overflow: hidden;
  background: linear-gradient(180deg, #fff 0, #f5f8f1 100%);
}

.linktree-section::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  left: -250px;
  top: 130px;
  border: 70px solid rgba(124, 157, 60, .07);
  border-radius: 50%;
}

.linktree-section::after {
  content: "";
  position: absolute;
  width: 340px;
  height: 340px;
  right: -170px;
  bottom: 70px;
  background: radial-gradient(circle, rgba(167, 198, 107, .15), transparent 68%);
  border-radius: 50%;
}

.linktree-shell {
  position: relative;
  z-index: 1;
  max-width: 1060px;
  margin: auto;
}

.linktree-intro {
  max-width: 720px;
  margin: 0 auto 55px;
  text-align: center;
}

.linktree-intro .subtitle {
  display: inline-block;
  margin-bottom: 13px;
  color: #78953d;
  font-size: 16px;
  font-weight: 700;
}

.linktree-intro h2 {
  margin: 0 0 18px;
  font-size: clamp(39px, 5vw, 60px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -1.7px;
}

.linktree-intro h2 span {
  color: #78953d;
}

.linktree-intro p {
  max-width: 640px;
  margin: auto;
  color: var(--sk-muted);
  font-size: 18px;
  line-height: 1.7;
}

.social-hub {
  position: relative;
  padding: 34px;
  border: 1px solid #e1e9d8;
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 24px 65px rgba(35, 61, 22, .09);
}

.hub-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 25px;
}

.hub-head h3 {
  margin: 0;
  font-size: 27px;
  font-weight: 800;
}

.hub-head p {
  margin: 4px 0 0;
  color: var(--sk-muted);
}

.hub-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  border-radius: 30px;
  background: #eef4e6;
  color: #678633;
  font-size: 13px;
  font-weight: 700;
}

.hub-badge i {
  font-size: 9px;
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.social-card {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 76px;
  padding: 15px;
  border: 1px solid #e3eadc;
  border-radius: 16px;
  background: #fbfcfa;
  transition: .25s ease;
}

.social-card:hover {
  border-color: #91ad5c;
  background: #f1f6eb;
  box-shadow: 0 12px 26px rgba(50, 80, 29, .09);
  transform: translateY(-4px);
}

.social-icon {
  width: 43px;
  height: 43px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 13px;
  background: var(--sk-dark);
  color: #fff;
  font-size: 18px;
}

.social-card strong {
  display: block;
  font-size: 15px;
  color: #000;
}

.social-card small {
  color: #7b8575;
  font-size: 11px;
}

.important-wrap {
  position: relative;
  margin-top: 28px;
  padding: 38px;
  border-radius: 30px;
  background: linear-gradient(145deg, #243719, #172612);
  box-shadow: 0 28px 70px rgba(20, 42, 13, .19);
  overflow: hidden;
}

.important-wrap::after {
  content: "";
  position: absolute;
  width: 330px;
  height: 330px;
  right: -170px;
  top: -170px;
  border: 55px solid rgba(255, 255, 255, .035);
  border-radius: 50%;
}

.important-wrap .hub-head {
  position: relative;
  z-index: 1;
  color: #fff;
}

.important-wrap .hub-head p {
  color: rgba(255, 255, 255, .58);
}

.important-wrap .hub-badge {
  background: rgba(167, 198, 107, .13);
  color: #bdd98a;
}

.link-list {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.product-link {
  display: grid;
  grid-template-columns: 52px 1fr 36px;
  align-items: center;
  gap: 15px;
  min-height: 91px;
  padding: 16px 17px;
  border: 1px solid rgba(255, 255, 255, .11);
  border-radius: 17px;
  background: rgba(255, 255, 255, .055);
  color: #fff;
  backdrop-filter: blur(8px);
  transition: .25s;
}

.product-link:hover {
  border-color: rgba(187, 217, 136, .55);
  background: rgba(255, 255, 255, .1);
  color: #fff;
  transform: translateY(-3px);
}

.product-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  background: #76983a;
  color: #fff;
  font-size: 20px;
}

.product-link strong {
  display: block;
  font-size: 17px;
  font-weight: 700;
}

.product-link small {
  display: block;
  margin-top: 3px;
  color: rgba(255, 255, 255, .55);
  font-size: 12px;
}

.product-arrow {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, .09);
  color: #c3dd94;
  transition: .25s;
}

.product-link:hover .product-arrow {
  background: #85a84a;
  color: #fff;
  transform: rotate(-35deg);
}

.contact-banner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 28px;
  padding: 34px 38px;
  border: 1px solid #dce6d2;
  border-radius: 25px;
  background: #fff;
  box-shadow: 0 20px 55px rgba(35, 61, 22, .08);
  overflow: hidden;
}

.contact-banner::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 7px;
  background: #77983e;
}

.contact-banner h3 {
  margin: 0 0 6px;
  font-size: 27px;
  font-weight: 800;
}

.contact-banner p {
  margin: 0;
  color: var(--sk-muted);
}

.contact-actions {
  display: flex;
  gap: 10px;
  flex: 0 0 auto;
}

.contact-actions .btn-default {
  white-space: nowrap;
}

.breadcrumb-title {
  letter-spacing: -1px;
}

.main-footer .footer-logo img {
  width: 210px;
}

.mobile-only-actions {
  display: none;
}




:root {
  --legal-green: #78983e;
  --legal-text: #35402f;
  --legal-muted: #687262;
  --legal-line: #e2e8dc;
}

.legal-page {
  padding: 80px 0 95px;
  background: #fff;
}

.legal-shell {
  max-width: 920px;
  margin: 0 auto;
}

.legal-aside {
  display: none;
}

.legal-content {
  width: 100%;
}

.legal-lead {
  margin-bottom: 35px;
  padding: 20px 24px;
  border-left: 4px solid var(--legal-green);
  background: #f6f8f3;
}

.legal-lead .about_para {
  margin: 0;
  color: var(--legal-text);
  font-size: 17px;
  line-height: 1.8;
}

.legal-block {
  scroll-margin-top: 110px;
  padding: 30px 0;
  border-bottom: 1px solid var(--legal-line);
}

.legal-block:first-of-type {
  padding-top: 0;
}

.legal-block:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.legal-block h2 {
  margin: 0 0 15px;
  color: #26351f;
  font-size: 24px;
  font-weight: 700;
}

.legal-block h2 i {
  display: none;
}

.legal-block .about_para {
  margin: 0 0 14px;
  color: var(--legal-text);
  font-size: 16px;
  line-height: 1.8;
}

.legal-block .about_para:last-child {
  margin-bottom: 0;
}

.legal-block ul {
  margin: 15px 0 20px;
  padding-left: 22px;
}

.legal-block li {
  margin-bottom: 8px;
  color: var(--legal-text);
  line-height: 1.7;
}

.legal-block a,
.legal-lead a {
  color: #688936;
  font-weight: 600;
  text-decoration: underline;
}

.legal-updated {
  display: none;
}


.composting-machine-model-slider .slick-slide {
    margin: 0 15px;
}

.composting-machine-model-slider .slick-list {
    margin: 0 -15px;
}


.quote-intro {
    margin-bottom: 35px;
}


.quote-intro-content {
    max-height: 100px;
    overflow: hidden;
    transition: max-height 0.5s ease;
    line-height: 1.8;
}

.quote-intro-content.expanded {
    max-height: 1000px; /* Large enough for full content */
}

.quote-intro-content p {
font-size: 18px;
    line-height: 24px;
    font-weight: 500;
}


.quote-intro .btn-default{
    margin-top: 24px

}

 .bv-offcanvas .mobile-menu-row {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
    }

    .bv-offcanvas .mobile-menu-row > a {
        flex: 1;
        min-width: 0;
    }

    .bv-offcanvas .mobile-menu-row .oc-toggle {
        width: 45px;
        min-width: 45px;
        height: 45px;
        padding: 0;
        border: 0;
        background: transparent;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
    }

    .bv-offcanvas .submenu {
        display: none;
    }

    .bv-offcanvas .submenu .submenu {
        padding-left: 15px;
    }

    .bv-offcanvas .oc-icon {
        transition: transform 0.3s ease;
    }


    .blog-faq-question h3{
        font-size: 20px;
        line-height: 14px;
    }



    .models{
        padding-bottom: 92px;
    }



    .mission-card {
    color: #fff;
}

.mission-card .stat-num {
    margin-bottom: 20px;
}

.mission-card .stat-num h3 {
    color: #fff;
    margin-bottom: 0;
}

.mission-card .stat-desc {
    color: #fff;
    margin-bottom: 24px;
    line-height: 1.8;
}

.mission-card h4 {
    color: #fff;
    margin-bottom: 15px;
}

.mission-card ul {
    margin: 0;
    padding-left: 22px;
}

.mission-card ul li {
    color: #fff;
    margin-bottom: 10px;
    line-height: 1.7;
}

.mission-card ul li:last-child {
    margin-bottom: 0;
}


.what-we-do-box {
    height: 100%;
    padding: 30px;
    border-radius: 15px;
    background: #79a444;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
}

.what-we-do-box h3 {
    color: #fff;
    margin-bottom: 20px;
}

.what-we-do-box p {
    color: #fff;
    margin-bottom: 15px;
    line-height: 1.7;
}

.what-we-do-box p:last-child {
    margin-bottom: 0;
}


.founder-section {
    position: relative;
    overflow: hidden;
    margin-top: 40px;
}

.founder-quote-card {
    position: relative;
    background: #fff;
    padding: 45px 50px;
    border-radius: 20px;
    box-shadow: 0 12px 40px rgba(30, 80, 48, 0.08);
    border: 1px solid rgba(77, 161, 103, 0.12);
    overflow: hidden;
}

/* Green decorative line */
.quote-line {
    width: 55px;
    height: 4px;
    background: #4DA167;
    border-radius: 10px;
    margin-bottom: 25px;
}

.founder_quote {
    position: relative;
    padding-right: 55px;
}

.founder_quote p {
    margin: 0;
    font-size: 26px;
    line-height: 1.55;
    font-weight: 500;
    color: #25372B;
    position: relative;
    z-index: 2;
}


.founder-info {
    position: relative;
    z-index: 2;
    padding-top: 20px;
    border-top: 1px solid rgba(77, 161, 103, 0.15);
}

.founder-info h5 {
    font-size: 18px;
    font-weight: 700;
    color: #25372B;
}

.founder-info span {
    font-size: 14px;
    color: #6F8075;
}
