@font-face {
   
    /* This is the name you will use later */
    src: url('../fonts/GlacialIndifference-Regular.otf') format('opentype');
    /* Path to the file */
    font-weight: normal;
    font-style: normal;
    font-display: swap;
    /* Shows a fallback font until Norwester loads */
}


@font-face {
    font-family: 'Norwester';
    /* This is the name you will use later */
    src: url('../fonts/norwester.otf') format('opentype');
    /* Path to the file */
    font-weight: normal;
    font-style: normal;
    font-display: swap;
    /* Shows a fallback font until Norwester loads */
}

@font-face {
    font-family: '29LT Zawi';
    /* This is the name you will use later */
    src: url('../fonts/29lt-zawi-regular.otf') format('opentype');
    /* Path to the file */
    font-weight: normal;
    font-style: normal;
    font-display: swap;
    /* Shows a fallback font until Norwester loads */
}

@font-face {
    font-family: 'Poppins';
    /* This is the name you will use later */
    src: url('../fonts/poppins.regular.ttf') format('opentype');
    /* Path to the file */
    font-weight: normal;
    font-style: normal;
    font-display: swap;
    /* Shows a fallback font until Norwester loads */
}

.zw-header {
    width: 100%;
    background: #000;
    padding: 25px 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.zw-container {
    max-width: 1400px;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}


/* ===========================
   Logo Design
=========================== */

.zw-logo {
    font-size: 42px;
    letter-spacing: 6px;
    font-weight: 700;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 6px;
    color: #f5f5f5;
    position: relative;
}


/* Leaf / Icon Style */

.zw-icon {
    font-size: 28px;
    color: #7CFF5B;
    display: inline-block;
    transform: translateY(-2px);
}


/* Subtle Glow Effect */

.zw-logo::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -8px;
    width: 60%;
    height: 2px;

    transform: translateX(-50%);
    opacity: 0.7;
}


/* ===========================
   Responsive Design
=========================== */

/* Tablet */

@media (max-width: 991px) {

    .zw-logo {
        font-size: 34px;
        letter-spacing: 4px;
    }

    .zw-icon {
        font-size: 24px;
    }

}


/* Mobile */

@media (max-width: 576px) {

    .zw-header {
        padding: 18px 10px;
    }

    .zw-logo {
        font-size: 26px;
        letter-spacing: 2px;
    }

    .zw-icon {
        font-size: 20px;
    }

}

/* ===== SECTION BACKGROUND ===== */
.why-bamboo-section {
    position: relative;
    padding: 100px 0;
    background: url('../images/bamboo.png') center/cover no-repeat;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}



.why-bamboo-container {
    position: relative;
    z-index: 2;
}

.why-text h5 {
    color: black;
    font-size: 22px;
   
    font-weight: 700;
    line-height: 30.80px;
    word-wrap: break-word
}

.why-text p {
    color: black;
    font-size: 18px;
   
    font-weight: 400;
    line-height: 22.40px;
    word-wrap: break-word
}

/* ===== HEADING ===== */
.why-title {
    font-size: 38px;
   
    font-weight: 700;
    line-height: 50.40px;
    word-wrap: break-word
}

.why-title span {
    color: #7A9B34;
}

.why-subtitle {
    color: rgba(0, 0, 0, 0.50);
    font-size: 20px;
   
    font-weight: 400;
    line-height: 27.20px;
}

/* ===== CARD STYLE ===== */
.why-card {
    width: 100%;
    position: relative;
    border-radius: 32px;
    background-color: #fff;
    border: 1px solid #7a9b34;
    box-sizing: border-box;
    display: flex;
    align-items: flex-start;
    padding: 31px;
    gap: 24px;
    text-align: left;
    font-size: 22px;
    color: #000;
   

    .why-icon {
        width: 60px;
        height: 60px;
        background: #e3e8d5;
        border-radius: 15px;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }

    .why-icon img {
        width: 61px;

    }

}

.why-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.why-card h5 {
    text-align: left;
    font-size: 22px;
   
    font-weight: 700;
    line-height: 30.80px;
    word-wrap: break-word
}

.why-card p {
    text-align: left;
    font-size: 18px;
   
    font-weight: 400;
    line-height: 22.40px;
    word-wrap: break-word
}

/* ===== GREEN CARD ===== */
.why-highlight {
    height: 100%;
    flex: 1;
    width: 100%;
    position: relative;
    border-radius: 40px;
    background-color: #7a9b34;
    border: 1px solid #fff;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 24px;
    gap: 4px;
    text-align: left;
}

.why-highlight h5 {
    color: white;
    font-size: 22px;
   
    font-weight: 700;
    line-height: 30.80px;
    word-wrap: break-word
}

.why-highlight p {
    font-size: 18px;
   
    font-weight: 400;
    line-height: 22.40px;
    word-wrap: break-word
}

/* ===== WHITE BOTTOM CARD ===== */
.why-white-card {
    height: 100%;
    flex: 1;
    width: 100%;
    position: relative;
    border-radius: 40px;
    background-color: #fff;
    border: 1px solid #fff;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 24px;
    text-align: left;
    font-size: 22px;
}

.why-white-card h5 {
    color: black;
    font-size: 22px;
   
    font-weight: 700;
    line-height: 30.80px;
    word-wrap: break-word
}

.why-white-card p {
    color: black;
    font-size: 18px;
   
    font-weight: 400;
    line-height: 22.40px;
    word-wrap: break-word
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
    .why-title {
        font-size: 32px;
    }

}

@media (max-width: 576px) {
    .why-title {
        font-size: 26px;
    }

    .why-card h5 {
        font-size: 18px;
    }

    .why-card p {
        font-size: 16px;
    }

    .why-card,
    .why-highlight,
    .why-white-card {
        padding: 20px;
    }
}



/* Section Container */
.why-zero-section {
    padding: 80px 0;
    background-color: #ffffff;
}

/* Heading Styles */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}



.section-title .highlight {
    color: var(--primary-green);
}

.section-subtitle {
    font-size: 16px;
    color: var(--text-gray);
    font-weight: 400;
    max-width: 600px;
    margin: 0 auto;
}

/* Cards Container */
.cards-wrapper {
    margin-bottom: 60px;
}

/* Individual Card */
.new-feature-card {
    border: 1px solid #ECDFCB;
    background: linear-gradient(179deg, rgba(255, 253, 228, 1) 0%, rgba(236, 223, 203, 1) 100%);
    border-radius: 20px;
    padding: 40px 30px;
    height: 100%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.new-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

/* Card Icon - Changed to new-card-icon */
.new-card-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 35px;
}

.new-card-icon svg {
    width: 100%;
    height: 100%;
    stroke: var(--primary-green);
    fill: none;
    stroke-width: 1.5;
}

/* Card Title */
.card-title {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 20px;
}

/* Card List */
.card-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.card-list li img {
    padding-right: 12px;
    height: 8px;
    color: rgba(0, 0, 0, 0.80);
    font-size: 16px;
    font-family: Roboto;
    font-weight: 400;
    line-height: 27.20px;
    word-wrap: break-word
}

.card-list li {
    font-size: 15px;
    color: var(--text-dark);
    margin-bottom: 10px;

    position: relative;
    font-weight: 400;
}

.card-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    background-color: var(--primary-green);
    border-radius: 50%;
}

/* Card Description */
.card-description {
    color: rgba(0, 0, 0, 0.40);
    font-size: 16px;
    font-family: Roboto;
    font-style: italic;
    font-weight: 400;
    line-height: 27.20px;
    word-wrap: break-word
}

/* Stats Bar */
.stats-bar {

    padding-top: 40px;
}

.stat-item {
    border-right: 1px solid #7A9B34;
    text-align: center;
    padding: 0 15px;
}

.stat-value {


    display: block;
    margin-bottom: 8px;
    color: #7A8E6F;
    font-size: 28px;
   
    font-weight: 700;
    line-height: 39.20px;
    word-wrap: break-word
}

.stat-label {
    color: rgba(26, 26, 26, 0.60);
    font-size: 16px;
   
    font-weight: 400;
    text-transform: uppercase;
    line-height: 27.20px;
    letter-spacing: 0.80px;
    word-wrap: break-word
}

/* Divider between stats */
.stat-divider {
    width: 1px;
    height: 50px;
    background-color: #e5e5e5;
    margin: 0 auto;
}

.for-remove {
    border: none !important;
}

/* Responsive Styles */
@media (max-width: 991px) {
    .section-title {
        font-size: 36px;
    }

    .new-feature-card {
        margin-bottom: 20px;
    }

    .stat-item {
        margin-bottom: 30px;
    }

    .stat-divider {
        display: none;
    }
}

@media (max-width: 767px) {
    .why-zero-section {
        padding: 50px 0;
    }

    .for-trees {
        border: none !important;
    }

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

    .section-header {
        margin-bottom: 35px;
    }

    .cards-wrapper {
        margin-bottom: 40px;
    }

    .new-feature-card {
        padding: 30px 25px;
    }

    .card-title {
        font-size: 22px;
    }

    .stat-value {
        font-size: 28px;
    }

    .stats-bar {
        padding-top: 30px;
    }
}

@media (max-width: 576px) {
    .section-title {
        font-size: 28px;
    }

    .section-subtitle {
        font-size: 14px;
    }

    .stat-value {
        font-size: 24px;
    }

    .stat-label {
        font-size: 11px;
    }
}

/* bamboo */


/* ===== SECTION BACKGROUND ===== */
.life-section {
    position: relative;
    padding: 100px 0;
    background: url('images/section-bg.jpg') center/cover no-repeat;
}

/* Overlay */
.life-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255);
}

.life-container {
    position: relative;
    z-index: 2;
}

/* ===== TITLE ===== */
.life-title {
    font-weight: 700;
    font-size: 38px;
}



.life-subtitle {
    color: rgba(0, 0, 0, 0.50);
    font-size: 20px;
   
    font-weight: 400;
    line-height: 27.20px;
    word-wrap: break-word
}

/* ===== IMAGE CARD ===== */
.life-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.life-image img {
    width: 100%;
    display: block;
}

/* ===== CONTENT ===== */
.life-content h3 {
    color: black;
    font-size: 34px;
   
    font-weight: 700;
    line-height: 30.80px;
    word-wrap: break-word
}

.life-content p {
    color: black;
    font-size: 20px;
   
    font-weight: 400;
    line-height: 28px;
    word-wrap: break-word
}

.perfect-box {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 20px;
}

.perfect-label {
    color: #7A9B34;
    font-size: 16px;
    font-family: Roboto;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 27.20px;
    letter-spacing: 0.80px;
    word-wrap: break-word
}

.perfect-text {
    color: black;
    font-size: 20px;
   
    font-weight: 400;
    line-height: 22.40px;
    word-wrap: break-word
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .life-section {
        padding: 70px 0;
    }

    .life-title {
        font-size: 38px;
       
        font-weight: 700;
        line-height: 50.40px;
        word-wrap: break-word
    }

    .life-content {
        margin-top: 40px;
        text-align: center;
    }

    .perfect-box {
        justify-content: center;
    }
}

/* Main Section */
.eco-section-main {
    width: 100%;
    padding: 80px 0;
    background: url("..//images/ii1.png") no-repeat center center/cover;
    position: relative;
    overflow: hidden;
}

/* Overlay */
.eco-section-overlay {
    position: absolute;
    inset: 0;

    z-index: 1;
}

/* Content Wrapper */
.eco-section-content {
    position: relative;
    z-index: 2;
}

/* Left Image */
.eco-left-img {
    width: 100%;
    max-width: 18px;
    margin: auto;
    display: block;
}

/* Center Text */
.eco-center-box {

    color: #fff;
    padding: 20px;
}

.eco-center-box h3 {
    color: white;
    font-size: 30px;
   
    font-weight: 700;
    line-height: 42px;
  padding-bottom: 24px;
    word-wrap: break-word
}


/* Button */
.eco-buy-btn {
    padding: 10px 217px;
    border-radius: 50px;
    font-size: 18px;
   
    background: #ffffff;
    color: #7A9B34;
    font-weight: 700;
    line-height: 28px;
    border: 1px solid #7A9B34;
    word-wrap: break-word
}


/* Right Image */
.eco-right-img {
    width: 100%;
    max-width: 250px;
    margin: auto;
    display: block;
}


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

    .eco-section-main {
        padding: 50px 0;
    }

    .eco-center-box h3 {
        font-size: 22px;
    }

    .eco-left-img {
        max-width: 9px;
        margin-bottom: 20px;
    }

    .eco-right-img {
        max-width: 177px;
        margin-bottom: 20px;
    }


}


/* big */
/* Trust & Transparency Section */
.trust-transparency-section {
    background: url('../images/bbg.png');
    padding: 80px;
    position: relative;
    overflow: hidden;
}

.trust-transparency-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    pointer-events: none;
}

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

/* Section Header */
.section-title {
    color: black;
    font-size: 38px;
   
    font-weight: 700;
    line-height: 50.40px;
    word-wrap: break-word
}

.section-title .highlight {
    color: #7A9B34;
    font-weight: 700;
}

.section-subtitle {
    color: rgba(0, 0, 0, 0.50);
    font-size: 20px;
   
    font-weight: 400;
    line-height: 27.20px;
    word-wrap: break-word
}

/* Feature Cards */
.feature-card {
    background: #86c00a24;
    backdrop-filter: blur(10px);
    border: 2px solid #7a9b346b;
    border-radius: 16px;
    padding: 28px 24px;
    height: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

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

}

.icon-wrapper {
    width: 48px;
    height: 48px;


    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;

    transition: all 0.3s ease;
}

.feature-card:hover .icon-wrapper {
    transform: scale(1.1);
}

.card-title {

    color: black;
    font-size: 28px;
    font-family: Roboto;
    font-weight: 500;
    line-height: 36.40px;
    word-wrap: break-word
}

.card-text {
    color: black;
    font-size: 14px;
   
    font-weight: 400;
    line-height: 22.40px;
    word-wrap: break-word
}

/* Detail Card Styling */
.detail-card {
    background-color: #FFFDE4;
    border-radius: 32px;
    padding: 30px 25px;
    height: 100%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.detail-heading {
    color: #7A9B34;
    font-size: 16px;
    font-family: Roboto;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 27.20px;
    letter-spacing: 3.20px;
    word-wrap: break-word;
    margin-bottom: 8px;
}

.detail-title {
    color: #2c3e3a;
    font-size: 20px;
    font-family: Roboto;
    font-weight: 500;
    line-height: 28px;
    word-wrap: break-word;
    margin-bottom: 20px;
}

.detail-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.detail-list li {
    margin-bottom: 24px;
    position: relative;
    padding-left: 20px;
}

.detail-list li:last-child {
    margin-bottom: 0;
}

.detail-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    top: 0;
    color: #6ba86b;
    font-size: 1.2rem;
    font-weight: 700;
}

.detail-list strong {
    color: black;
    font-size: 16px;
    font-family: Roboto;
    font-weight: 600;
    line-height: 27.20px;
    word-wrap: break-word;
    display: block;
    margin-bottom: 4px;
}

.detail-list p {
    color: rgba(0, 0, 0, 0.70);
    font-size: 16px;
   
    font-weight: 400;
    line-height: 22.40px;
    word-wrap: break-word;
    margin: 0;
}

/* Bottom Badges */
.badge-item {
    padding: 30px 20px;
    transition: all 0.3s ease;
}

.badge-item:hover {
    transform: translateY(-3px);
}

.badge-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.6);

    border-radius: 18%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    color: #6ba86b;
    transition: all 0.3s ease;
}

.badge-item:hover .badge-icon {
    background: rgba(255, 255, 255, 0.9);
    border-color: #6ba86b;
    transform: rotate(5deg) scale(1.05);
}

.badge-text {
    color: #1A1A1A;
    font-size: 16px;
    font-family: Roboto;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 27.20px;
    letter-spacing: 1.60px;
    word-wrap: break-word
}

/* Responsive Design */
@media (max-width: 1199px) {
    .section-title {
        font-size: 2.2rem;
    }

    .feature-card {
        padding: 24px 20px;
    }
}

@media (max-width: 991px) {
    .trust-transparency-section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 2rem;
    }

    .detail-title {
        font-size: 1.3rem;
    }

    .detail-section {
        margin-bottom: 30px;
    }
}

@media (max-width: 767px) {
    .trust-transparency-section {
        padding: 50px 0;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .section-subtitle {
        font-size: 0.95rem;
    }

    .feature-card {
        padding: 22px 18px;
        margin-bottom: 15px;
    }

    .card-title {
        font-size: 1rem;
    }

    .card-text {
        font-size: 0.85rem;
    }

    .detail-section {
        padding: 0;
        margin-bottom: 40px;
    }

    .badge-icon {
        width: 60px;
        height: 60px;
    }

    .badge-icon svg {
        width: 35px;
        height: 35px;
    }
}

@media (max-width: 575px) {
    .section-title {
        font-size: 1.5rem;
    }

    .section-subtitle {
        font-size: 0.9rem;
    }

    .feature-card {
        padding: 20px 16px;
    }

    .icon-wrapper {
        width: 42px;
        height: 42px;
    }

    .icon-wrapper svg {
        width: 20px;
        height: 20px;
    }

    .detail-title {
        font-size: 1.2rem;
    }

    .badge-item {
        padding: 20px 10px;
    }

    .badge-icon {
        width: 55px;
        height: 55px;
    }
}

/* Animation on Scroll (Optional Enhancement) */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

.feature-card,
.detail-section,
.badge-item {
    animation: fadeInUp 0.6s ease-out;
}


/*  */
.eco-packaging-section {
    padding: 80px 20px;
    background-color: #fafaf8;
}

.eco-packaging-section * {
    box-sizing: border-box;
}

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

/* Top Section */
.eco-top-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
    align-items: start;
}

.eco-left-content {
    padding-top: 10px;
}

.eco-section-title {
    color: black;
    font-size: 38px;
   
    font-weight: 700;
    line-height: 50.40px;
    word-wrap: break-word
}

.eco-section-title .eco-highlight {
    color: #7A9B34;
    font-size: 38px;
   
    font-weight: 700;
    line-height: 50.40px;
    word-wrap: break-word
}

.eco-section-subtitle {
    padding-bottom: 17px;
    color: rgba(0, 0, 0, 0.50);
    font-size: 20px;
   
    font-weight: 400;
    line-height: 27.20px;
    word-wrap: break-word
}

.eco-quote-box {
    background-color: #dddddd;
    padding: 3px 25px;
    border-radius: 10px;
    border: 1px solid #a8aba199;

}

.eco-quote-text {
    color: black;
    font-size: 16px;
    font-weight: 400;
    line-height: 22.40px;
    padding: 5px;
    margin: 0 !important;
      word-wrap: break-word
}

.eco-right-image {
    position: relative;
}

/* .eco-image-wrapper {
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    background-color: #e8e8e8;
} */

.eco-image-wrapper img {
    border-radius: 23px;
    width: 94%;
    height: 360px;
    object-fit: cover;
    display: block;
}

/* Feature Cards */
.eco-cards-grid.eco-grid-4 {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
}
.eco-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 70px;
}

.eco-card {
    background: linear-gradient(to bottom, #eef2e6, #e5ebda);
    border-radius: 36px;
    padding: 34px 30px 0;
    border: 1px solid #43581C;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;

    /* ADD THESE TWO LINES */
    display: flex;
    flex-direction: column;
}
.eco-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

/* Icon */
.eco-card-icon {
    width: 46px;
    height: 46px;
    background-color: #DCE8C3;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.eco-card-icon svg {
    width: 24px;
    height: 24px;
}

/* Heading */
.eco-card-heading {
    color: #000;
    font-size: 20px;
   
    font-weight: 700;
    line-height: 28px;
    margin-bottom: 10px;
}

/* Text */
.eco-card-text {
    color: #000;
   
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 22.4px;
    /* 140% */
    margin-bottom: 24px;
}

/* Footer (Dark Part) */
.eco-card-footer {
    background: #dfe8c4;
    padding: 18px 30px 20px;
    border-top: 1px solid #cbd6a8;
    margin-left: -30px;
    margin-right: -30px;
    border-bottom-left-radius: 36px;
    border-bottom-right-radius: 36px;

    /* ADD THIS LINE */
    margin-top: auto;
}

/* Footer Label */
.eco-card-label {
    color: #43581C;
    font-family: Roboto;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 22.4px;
    /* 140% */
    letter-spacing: 0.8px;
    text-transform: uppercase;
    margin-bottom: 6px;
}

/* Footer Value */
.eco-card-value {
    color: #7A9B34;
   
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 22.4px;
    /* 140% */
    margin: 0;
}


/* Lifecycle Section */
.eco-lifecycle-wrapper {
    margin-top: 30px;
}

.eco-lifecycle-heading {

    margin-bottom: 50px;

    color: #1A1A1A;
    text-align: center;
   
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 28px;
    /* 140% */
}

.eco-lifecycle-grid {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 30px;
    position: relative;
}

.eco-lifecycle-item {
    flex: 0 0 180px;
    text-align: center;
    position: relative;
}

.eco-lifecycle-item:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 86px;
    right: -80px;
    width: 49px;
    height: 2px;
    background-color: #d0d0d0;
}

.eco-step-box {
    display: flex;
    width: 80px;
    height: 80px;
    justify-content: center;
    align-items: center;
    border-radius: 16px;
    background: linear-gradient(180deg, #5A6E4F 0%, #3A4E2F 100%);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.10), 0 8px 10px -6px rgba(0, 0, 0, 0.10);

    margin: 0 auto 20px;

}

.eco-step-num {
    color: #FFF;
    text-align: center;
    font-family: Roboto;
    font-size: 30px;
    font-style: normal;
    font-weight: 900;
    line-height: 36px;
    /* 120% */
}

.eco-step-label {
    color: #1A1A1A;
    text-align: center;
   
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
    /* 150% */
}

.eco-step-detail {
    color: #000;
    text-align: center;
   
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 22.4px;
    /* 140% */
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .eco-top-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .eco-section-title {
        font-size: 38px;
    }

    .eco-image-wrapper img {
        height: 320px;
    }

    .eco-lifecycle-grid {
        gap: 25px;
    }

    .eco-lifecycle-item {
        flex: 0 0 160px;
    }

    .eco-lifecycle-item:not(:last-child)::after {
        right: -25px;
        width: 25px;
    }
}

@media (max-width: 768px) {
    .eco-packaging-section {
        padding: 60px 18px;
    }

    .eco-section-title {
        font-size: 32px;
    }

    .eco-section-subtitle {
        font-size: 13px;
    }

    .eco-cards-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 60px;
    }

    .eco-image-wrapper img {
        height: 280px;
    }

    .eco-lifecycle-grid {
        flex-wrap: wrap;
        gap: 35px;
    }

    .eco-lifecycle-item {
        flex: 0 0 calc(50% - 18px);
    }

    .eco-lifecycle-item:nth-child(2n)::after {
        display: none;
    }

    .eco-lifecycle-item:nth-child(odd):not(:nth-last-child(-n+2))::after {
        content: '';
        position: absolute;
        top: 27px;
        right: -30px;
        width: 30px;
        height: 2px;
        background-color: #d0d0d0;
    }
}

@media (max-width: 576px) {
    .eco-packaging-section {
        padding: 50px 16px;
    }

    .eco-section-title {
        font-size: 28px;
    }

    .eco-quote-box {
        padding: 20px 24px;
    }

    .eco-card {
        padding: 30px 26px;
    }

    .eco-lifecycle-item {
        flex: 0 0 100%;
    }

    .eco-lifecycle-item::after {
        display: none !important;
    }

    .eco-step-box {
        width: 52px;
        height: 52px;
    }

    .eco-step-num {
        font-size: 24px;
    }
}



/*  */
.circular-hero-section {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: url('../images/immg.png') center center no-repeat;
    background-size: contain;
    overflow: hidden;
}

.circular-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 80% 50%, rgba(144, 169, 121, 0.3) 0%, transparent 60%);
    pointer-events: none;
    z-index: 1;
}

.circular-content-wrapper {
    position: relative;
    z-index: 2;

    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.circular-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin: 0 -15px;
}

.circular-col-left {
    flex: 0 0 50%;
    max-width: 50%;
    padding: 0 15px;
}

.circular-col-right {
    flex: 0 0 50%;
    max-width: 50%;
    padding: 0 15px;
}

.circular-hero-text-container {
    animation: fadeInLeft 1.2s ease-out;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

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

.circular-hero-title {
    color: white;
    font-size: 20px;
   
    font-weight: 700;
    line-height: 53.20px;
    word-wrap: break-word
}

.circular-hero-subtitle {
    font-size: 1.125rem;
    color: #f0f4f0;
    line-height: 1.8;
    margin-bottom: 2rem;
    max-width: 500px;
    font-weight: 400;
    text-shadow: 1px 2px 8px rgba(0, 0, 0, 0.25);
}

.circular-cta-button {
    display: inline-block;
    padding: 15px 190px;
    background-color: #ffffff;
    color: #4a6647;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    border: none;
    white-space: nowrap;
}

.circular-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.25);
    color: #3a5637;
    text-decoration: none;
}

.circular-cta-button:active {
    transform: translateY(-1px);
}

.circular-product-image-container {
    position: relative;
    text-align: center;
    animation: fadeInRight 1.2s ease-out;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

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

.circular-product-image {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
}

.circular-decorative-circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    pointer-events: none;
    z-index: 1;
}

.circular-circle-1 {
    width: 250px;
    height: 250px;
    top: 10%;
    right: 5%;
}

.circular-circle-2 {
    width: 180px;
    height: 180px;
    bottom: 15%;
    left: 5%;
}

/* Large Desktop (1400px and up) */
@media (min-width: 1400px) {
    .circular-hero-section {
        background-size: contain;
    }

    .circular-hero-title {
        font-size: 2.5rem;
    }

    .circular-hero-subtitle {
        font-size: 1.25rem;
    }
}

/* Desktop (1200px to 1399px) */
@media (min-width: 1200px) and (max-width: 1399px) {
    .circular-hero-section {
        background-size: contain;
    }

    .circular-hero-title {
        font-size: 3.5rem;
    }
}

/* Tablet Landscape (992px to 1199px) */
@media (min-width: 992px) and (max-width: 1199px) {
    .circular-hero-section {
        background-size: cover;
    }

    .circular-hero-title {
        font-size: 3rem;
    }

    .circular-hero-subtitle {
        font-size: 1.05rem;
    }

    .circular-circle-1 {
        width: 200px;
        height: 200px;
    }

    .circular-circle-2 {
        width: 150px;
        height: 150px;
    }
}

/* Tablet Portrait (768px to 991px) */
@media (max-width: 991px) {
    .circular-hero-section {
        min-height: 28vh;
        background-size: cover;
    }

    .circular-hero-title {
        font-size: 2.75rem;
    }

    .circular-hero-subtitle {
        font-size: 1rem;
    }

    .circular-circle-1 {
        width: 180px;
        height: 180px;
    }

    .circular-circle-2 {
        width: 140px;
        height: 140px;
    }
}

/* Mobile Landscape & Portrait (768px and below) */
@media (max-width: 767px) {
    .circular-hero-section {
        min-height: auto;
        padding: 50px 0;
        background-size: cover;
        background-position: center;
    }

    .circular-content-wrapper {
        padding: 40px 20px;
    }

    .circular-row {
        flex-direction: column;
        margin: 0;
    }

    .circular-col-left,
    .circular-col-right {
        flex: 0 0 100%;
        max-width: 100%;
        padding: 0;
    }

    .circular-col-right {
        margin-top: 3rem;
    }

    .circular-hero-title {
        font-size: 2.25rem;
        margin-bottom: 1.2rem;
    }

    .circular-hero-subtitle {
        font-size: 0.95rem;
        margin-bottom: 1.8rem;
        max-width: 100%;
    }

    .circular-cta-button {
        padding: 14px 40px;
        font-size: 0.95rem;
        width: 100%;
        max-width: 300px;
        display: block;
        text-align: center;
    }

    .circular-product-image {
        max-width: 80%;
    }

    .circular-circle-1 {
        width: 120px;
        height: 120px;
        top: 5%;
        right: -20px;
    }

    .circular-circle-2 {
        width: 100px;
        height: 100px;
        bottom: 10%;
        left: -20px;
    }
}

/* Small Mobile (576px and below) */
@media (max-width: 575px) {
    .circular-hero-section {
        padding: 40px 0;
        background-size: cover;
    }

    .circular-hero-title {
        font-size: 1.85rem;
        line-height: 1.3;
    }

    .circular-hero-subtitle {
        font-size: 0.88rem;
        line-height: 1.6;
    }

    .circular-content-wrapper {
        padding: 30px 15px;
    }

    .circular-cta-button {
        padding: 12px 35px;
        font-size: 0.9rem;
        max-width: 100%;
    }

    .circular-circle-1 {
        width: 100px;
        height: 100px;
        right: -30px;
    }

    .circular-circle-2 {
        width: 80px;
        height: 80px;
        left: -30px;
    }
}

/* Extra Small Mobile (400px and below) */
@media (max-width: 400px) {
    .circular-hero-title {
        font-size: 1.65rem;
        text-align: center;
    }

    .circular-hero-subtitle {
        font-size: 0.85rem;
        text-align: center;
    }

    .circular-cta-button {
        padding: 11px 30px;
        font-size: 0.85rem;
    }

}

/* Prevent any overflow issues */
.circular-hero-section * {
    box-sizing: border-box;
}

/* Fix for very wide screens */
@media (min-width: 1920px) {
    .circular-hero-section {
        background-size: contain;
        background-position: center center;
    }
}

/*  */
.zerowipe-sustainable-section {
    padding: 80px 0;
    background-color: #ffffff;
    position: relative;
    font-family: 'Inter', sans-serif;
}

.zerowipe-sustainable-section * {
    box-sizing: border-box;
}

.zerowipe-section-header {
    text-align: center;
    margin-bottom: 60px;
}

.zerowipe-section-title {
    color: black;
    text-align: center;
   
    font-size: 38px;
    font-style: normal;
    font-weight: 700;
    line-height: 50.4px;
    /* 132.632% */
    letter-spacing: -1.28px;
}

.zerowipe-section-title .zerowipe-highlight {
    color: #7FAD39;
}

.zerowipe-section-subtitle {
    color: rgba(0, 0, 0, 0.50);
    text-align: center;
   
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 27.2px;
    /* 136% */
}

/* Product Card */
.zerowipe-product-card-wrapper {
    position: relative;
    margin-bottom: 30px;
}

.zerowipe-product-card {

    border-radius: 24px;

    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.zerowipe-product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
}

.zerowipe-product-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(127, 173, 57, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.zerowipe-product-image {
    width: 100%;
    height: auto;
    border-radius: 16px;
    position: relative;
    z-index: 2;
    display: block;
}

/* Product Navigation */
.zerowipe-product-nav {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 25px;
}

.zerowipe-product-nav-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.zerowipe-product-nav-item.zerowipe-active {
    background: linear-gradient(135deg, #D4E7B5 0%, #C8E0A6 100%);
    color: #4A6B2E;
    box-shadow: 0 4px 12px rgba(127, 173, 57, 0.2);
}

.correct-tissue {
    color: #000;
   
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 28px;
    /* 155.556% */
}

.zerowipe-product-nav-item.zerowipe-inactive {
    background: #ffffff;
    color: #333333;
    border: 1.5px solid #e0e0e0;
}

.zerowipe-product-nav-item.zerowipe-inactive:hover {
    border-color: #7FAD39;
    transform: translateX(5px);
}

.zerowipe-product-nav-item.zerowipe-disabled {
    background: #f9f9f9;
    color: #999999;
    border: 1.5px solid #eeeeee;
    cursor: not-allowed;
}

.zerowipe-disabled img {
    height: 18px;
}

.last {
    display: block !important;
    border-radius: 8px !important;
}

.last-nav-content {
    display: flex;
    justify-content: space-between;
}

.looZero {
    color: #000;
   
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 22.4px;
    /* 140% */
}

.zerowipe-product-nav-badge {
    padding: 4px 14px;
    border-radius: 20px;

    color: #FFF;
   
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 22.4px;
    /* 140% */
    letter-spacing: 0.6px;
    text-transform: uppercase;
}

.zerowipe-badge-active {
    background: #3A4E2F;
    color: #ffffff;
}

.zerowipe-badge-inactive {
    background: #68964E;
    color: #ffffff;
}

.zerowipe-badge-disabled {

    color: #000;
   
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 16px;
    /* 133.333% */
    letter-spacing: 0.6px;
    text-transform: uppercase;
}

/* Vision Section */
.zerowipe-vision-section {
    padding-top: 75px;
    padding-left: 30px;
}

.zerowipe-vision-title {
    color: #000;
   
    font-size: 38px;
    font-style: normal;
    font-weight: 700;
    line-height: 53.2px;
    /* 140% */
    letter-spacing: -1.28px;
}

.zerowipe-vision-description {
    font-size: 0.95rem;
    color: #666666;
    line-height: 1.7;
    margin-bottom: 35px;
}

/* Feature Cards */
.zerowipe-feature-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.zerowipe-feature-card {
    background: linear-gradient(135deg, #F8FBF4 0%, #F2F7ED 100%);
    border-radius: 16px;
    padding: 22px 24px;
    display: flex;
    align-items: flex-start;
    gap: 18px;
    transition: all 0.3s ease;
    border: 1px solid rgba(127, 173, 57, 0.1);
}

.zerowipe-feature-card:hover {
    transform: translateX(5px);
    box-shadow: 0 6px 20px rgba(127, 173, 57, 0.15);
    border-color: rgba(127, 173, 57, 0.3);
}



.zerowipe-feature-icon svg {
    width: 22px;
    height: 22px;
    stroke: #ffffff;
    stroke-width: 2;
    fill: none;
}

.zerowipe-feature-content {
    flex: 1;
}

.zerowipe-feature-heading {
    color: #000;
    font-family: Roboto;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
    /* 150% */
}

.zerowipe-feature-text {
    color: rgba(0, 0, 0, 0.70);
   
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 22.4px;
    /* 140% */
}

/* Responsive Design */
@media (max-width: 991px) {
    .zerowipe-vision-section {
        padding-left: 0;
        margin-top: 50px;
    }

    .zerowipe-section-title {
        font-size: 2rem;
    }

    .zerowipe-vision-title {
        font-size: 1.75rem;
    }
}

@media (max-width: 767px) {
    .zerowipe-sustainable-section {
        padding: 60px 0;
    }

    .zerowipe-section-header {
        margin-bottom: 40px;
    }

    .zerowipe-section-title {
        font-size: 1.75rem;
    }

    .zerowipe-section-subtitle {
        font-size: 0.9rem;
    }

    .zerowipe-product-card {
        padding: 30px 20px;
    }

    .zerowipe-vision-title {
        font-size: 1.5rem;
    }

    .zerowipe-vision-description {
        font-size: 0.9rem;
    }

    .zerowipe-feature-card {
        padding: 18px 20px;
    }

    .zerowipe-feature-heading {
        font-size: 1rem;
    }

    .zerowipe-feature-text {
        font-size: 0.85rem;
    }

    .zerowipe-product-nav-item {
        font-size: 0.9rem !important;
        padding: 12px 18px;
    }

}

@media (max-width: 575px) {
    .zerowipe-section-title {
        font-size: 1.5rem;
    }

    .zerowipe-vision-title {
        font-size: 1.35rem;
    }

    .zerowipe-product-card {
        padding: 25px 15px;
    }

    .zerowipe-feature-icon {
        width: 38px;
        height: 38px;
    }

    .zerowipe-feature-icon svg {
        width: 18px;
        height: 18px;
    }
}

/*  */


.eco-cta-section {
    padding: 80px 0;
    background-color: #f8f9fa;
    position: relative;
    font-family: 'Poppins', sans-serif;
}

.eco-cta-section * {
    box-sizing: border-box;
}

.eco-cta-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.eco-cta-card {
    background-image: url('../images/banner.png');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(127, 173, 57, 0.2);
    position: relative;
    min-height: 500px;
    display: grid;
    align-items: center;
}

/* Gradient overlay for better text readability */
.eco-cta-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    pointer-events: none;
}

.eco-content-wrapper {
    position: relative;
    z-index: 2;
    padding: 60px 50px;
    width: 100%;
}

.eco-content {
    max-width: 550px;
}

.eco-heading {
    color: #1a1a1a;
    margin-bottom: 20px;
   
    font-size: 46px;
    font-style: normal;
    font-weight: 700;
    line-height: 59.4px;
    /* 129.13% */
    letter-spacing: -1.28px;
}

.eco-description {
    color: #000;
   
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
    /* 140% */
}

.eco-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 30px;
}

.eco-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    white-space: nowrap;
    cursor: pointer;
}

.eco-btn-primary {
    background: #3A4E2F;
    color: #ffffff;
    height: 56px;
    padding: 18px 24px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    flex: 1 0 0;
}



.eco-btn-secondary {
    background: white;
    color: #7A9B34;
    border: 2px solid #7A9B34;
    height: 56px;
    padding: 18px 24px;

    align-items: center;

}



.eco-btn-icon {
    font-size: 1.1rem;
}

.eco-footer-text {
    color: rgba(0, 0, 0, 0.60);
    text-align: center;
   
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
    /* 155.556% */
}

/* Large Desktop (1400px and up) */
@media (min-width: 1400px) {
    .eco-cta-card {
        min-height: 550px;
    }

    .eco-heading {
        font-size: 3.5rem;
    }

    .eco-description {
        font-size: 1.1rem;
    }
}

/* Desktop (1200px to 1399px) */
@media (min-width: 1200px) and (max-width: 1399px) {
    .eco-heading {
        font-size: 2.8rem;
    }
}

/* Tablet Landscape (992px to 1199px) */
@media (max-width: 1199px) {
    .eco-heading {
        font-size: 2.5rem;
    }

    .eco-content-wrapper {
        padding: 50px 40px;
    }


}

/* Tablet Portrait (768px to 991px) */
@media (max-width: 991px) {
    .eco-cta-card {
        min-height: 450px;
    }

    .eco-heading {
        font-size: 2.2rem;
    }

    .eco-description {
        font-size: 1rem;
    }

    .eco-content-wrapper {
        padding: 40px 35px;
    }


}

/* Mobile (768px and below) */
@media (max-width: 767px) {
    .eco-cta-section {
        padding: 60px 0;
    }

    .eco-cta-card {
        min-height: 600px;
        border-radius: 24px;
        background-position: center top;
    }



    .eco-content-wrapper {
        padding: 30px;
        text-align: center;
        display: flex;
        align-items: flex-end;
        min-height: 600px;
    }

    .eco-content {
        max-width: 100%;
        width: 100%;
    }

    .eco-heading {
        font-size: 2rem;
        margin-bottom: 18px;
    }

    .eco-description {
        font-size: 0.95rem;
        margin-bottom: 28px;
        max-width: 100%;
    }

    .eco-buttons {
        flex-direction: column;
        gap: 12px;
        align-items: center;
    }

    .eco-btn {
        width: 100%;
        max-width: 320px;
        padding: 14px 28px;
    }

    .eco-footer-text {
        font-size: 0.85rem;
        max-width: 100%;
        text-align: center;
    }
}

/* Small Mobile (576px and below) */
@media (max-width: 575px) {
    .eco-cta-section {
        padding: 50px 0;
    }

    .eco-cta-card {
        border-radius: 20px;
        min-height: 550px;
    }

    .eco-heading {
        font-size: 1.75rem;
    }

    .eco-description {
        font-size: 0.9rem;
    }

    .eco-content-wrapper {
        padding: 25px 20px;
        min-height: 550px;
    }

    .eco-btn {
        padding: 13px 24px;
        font-size: 0.95rem;
    }

    .eco-footer-text {
        font-size: 0.8rem;
    }
}

/* Extra Small Mobile (400px and below) */
@media (max-width: 400px) {
    .eco-heading {
        font-size: 1.6rem;
    }

    .eco-btn {
        padding: 12px 22px;
        font-size: 0.9rem;
    }

    .eco-cta-card {
        min-height: 520px;
    }

    .eco-content-wrapper {
        padding: 20px 15px;
        min-height: 520px;
    }
}

/* Prevent overflow */
.eco-cta-section {
    overflow: hidden;
}


/*  */
.coffee-banner-section {
    padding: 0;
    position: relative;
    overflow: hidden;
    font-family: 'Poppins', sans-serif;
}

.coffee-banner-section * {
    box-sizing: border-box;
}

.coffee-banner-container {
    position: relative;
    width: 100%;
    min-height: 300px;
    background-image: url('..//images/footer.png');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    overflow: hidden;
}

/* Dark overlay for better text contrast */
.coffee-banner-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.15);
    z-index: 1;
    pointer-events: none;
}

.coffee-content-wrapper {
    position: relative;
    z-index: 2;
    padding: 60px 50px;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

.coffee-text-content {
    max-width: 600px;
}

.coffee-main-text {
    color: white;
    font-size: 48px;
   
    font-weight: 700;
    line-height: 67.20px;
    word-wrap: break-word
}

.coffee-sub-text {
    color: white;
    font-size: 48px;
    font-family: Helvetica Neue;
    font-style: italic;
    font-weight: 300;
    line-height: 67.20px;
    word-wrap: break-word
}

/* Highlight effect on text */
.coffee-highlight {
    position: relative;
    display: inline-block;
}

coffee-main-text .coffee-highlight::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.3);
    z-index: -1;
}

/* Animation for text appearance */
@keyframes coffeeSlideIn {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

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

.coffee-animate {
    animation: coffeeSlideIn 1s ease-out;
    background: #00000033;
    border: 1px solid white;
    border-radius: 19px ;
    padding:23px !important

}

/* Large Desktop (1400px and up) */
@media (min-width: 1400px) {
    .coffee-banner-container {
        min-height: 350px;
    }

    .coffee-main-text {
        font-size: 4rem;
    }

    .coffee-sub-text {
        font-size: 3rem;
    }
}

/* Desktop (1200px to 1399px) */
@media (min-width: 1200px) and (max-width: 1399px) {
    .coffee-banner-container {
        min-height: 320px;
    }

    .coffee-main-text {
        font-size: 3.2rem;
    }

    .coffee-sub-text {
        font-size: 2.3rem;
    }
}

/* Tablet Landscape (992px to 1199px) */
@media (max-width: 1199px) {
    .coffee-banner-container {
        min-height: 280px;
    }

    .coffee-content-wrapper {
        padding: 50px 40px;
    }

    .coffee-main-text {
        font-size: 2.8rem;
    }

    .coffee-sub-text {
        font-size: 2rem;
    }
}

/* Tablet Portrait (768px to 991px) */
@media (max-width: 991px) {
    .coffee-banner-container {
        min-height: 250px;
        background-position: 60% center;
    }

    .coffee-content-wrapper {
        padding: 40px 35px;
    }

    .coffee-main-text {
        font-size: 2.4rem;
    }

    .coffee-sub-text {
        font-size: 1.7rem;
    }


}

/* Mobile (768px and below) */
@media (max-width: 767px) {
    .coffee-banner-container {
        min-height: 220px;
        background-position: 70% center;
    }

    .coffee-content-wrapper {
        padding: 35px 25px;
        text-align: center;
    }

    .coffee-text-content {
        max-width: 59%;
    }

    .coffee-main-text {
        font-size: 2rem;
        margin-bottom: 12px;
        line-height: 23px;
    }

    .coffee-sub-text {
        font-size: 1.4rem;
    }

    .coffee-highlight::after {
        height: 6px;
    }

    .correct-tissue {
        font-size: 14px;
    }

    .zerowipe-product-nav-badge {
        font-size: 10px !important;
    }

    .looZero {
        font-size: 12px !important;
    }
}

/* Small Mobile (576px and below) */
@media (max-width: 575px) {
    .coffee-banner-container {
        min-height: 200px;
    }

    .coffee-content-wrapper {
        padding: 30px 20px;
    }

    .coffee-main-text {
        font-size: 1.6rem;
        letter-spacing: 0.5px;
    }

    .coffee-sub-text {
        font-size: 1.2rem;
    }

    .coffee-highlight::after {
        height: 5px;
        bottom: -3px;
    }
}

/* Extra Small Mobile (400px and below) */
@media (max-width: 400px) {
    .coffee-banner-container {
        min-height: 180px;
    }

    .coffee-content-wrapper {
        padding: 25px 15px;
    }

    .coffee-main-text {
        font-size: 1.4rem;
    }

    .coffee-sub-text {
        font-size: 1.1rem;
        line-height: 24.2px;
    }
}

/* banner css */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* Soft light shaft from top */
.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 30% 60% at 55% 0%, rgba(160, 200, 100, 0.13) 0%, transparent 65%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 10;
    width: 100%;
}

/* ── Product Image Card ─────────────────────────────── */
.product-image-card {
    border-radius: 24px;
    -webkit-backdrop-filter: blur(12px);
    position: relative;
    overflow: visible;
    /* Changed from hidden to visible for badge */
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.product-image-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}


@keyframes rotateBadge {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* Product Frame - Green Border */
.product-frame {
    width: 100%;
    max-width: 445px;
    background: url(../images/create.png) no-repeat center;
    background-size: contain;
    /* Changed from cover to contain */
    padding: 60px;
    margin: auto;
    position: relative;
    min-height: 491px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Main product image */

.product-main-img {
    width: 100%;
    height: auto;
    max-height: 350px;
    object-fit: contain;
    filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.3));
    transition: transform 0.4s ease, opacity 0.3s ease;
    /* Added opacity transition */
}

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

/* Thumbnails */
.thumb-strip {
    display: flex;
    gap: 8px;
    margin-top: 1.5rem;
    flex-wrap: nowrap;
    overflow-x: auto;
    scrollbar-width: none;
    padding-bottom: 4px;
    justify-content: center;
}

.thumb-strip::-webkit-scrollbar {
    display: none;
}

.thumb-item {
    flex: 0 0 54px;
    height: 54px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.08);
    border: 1.5px solid rgba(255, 255, 255, 0.15);
    overflow: hidden;
    cursor: pointer;
    transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}

.thumb-item:hover,
.thumb-item.active {
    border-color: #6B8E23;
    /* Olive green color */
    transform: scale(1.08);
    box-shadow: 0 4px 12px rgba(107, 142, 35, 0.3);
}

.thumb-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.75;
    transition: opacity 0.25s;
}

.thumb-item:hover img,
.thumb-item.active img {
    opacity: 1;
}
.gz-product-card {
    background: rgba(255, 255, 255, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    backdrop-filter: blur(5px);
}

.gz-main-image {
    
    filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.1));
}
.gz-product-card {
    width: 100%;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow:hidden;
    position: relative;
}

.gz-main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    flex-shrink: 0;
}

.gz-thumb {
    width: 60px;
    height: 60px;
    border: 2px solid #ddd;
    border-radius: 5px;
    cursor: pointer;
}
.gz-thumb img{
    border-radius: 5px;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;

}

.gz-thumb.active {
    border: 2px solid #000;
}
.gz-main-image-side {
    position: absolute;
    top: -7px;
    left: -30px;
    
    /* Optional: Ensure the image fits the container height */

    
    /* Optional: If you want to prevent clicks on the image 
       so you can still click buttons behind it */
    pointer-events: none;
    
    /* Ensures it stays on top of the background image */
    z-index: 2; 
}
/* Responsive adjustments */
@media (max-width: 768px) {
    .product-frame {
        padding: 40px;
        min-height: 300px;
    }

    .bamboo-badge {
        width: 80px;
        height: 80px;
        top: -5px;
        left: 10px;
    }

    .product-main-img {
        max-height: 250px;
    }
}

/* ── Right Panel – Product Info ─────────────────────── */
.product-title {
    color: white;
    font-size: 46px;
   
    font-weight: 700;
    line-height: 59.40px;
    word-wrap: break-word
}

/* Attribute Pills */
.attr-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.804);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    padding: 6px 14px;
    color: black;
    transition: background 0.25s, border-color 0.25s;
    cursor: pointer;
    white-space: nowrap;
    font-size: 18px;
   
    font-weight: 700;
    line-height: 27.20px;
    word-wrap: break-word;
}

.attr-pill:hover {
    background: rgba(74, 140, 80, 0.2);
    border-color: var(--green-light);
}

.attr-pill span.label {
    color: #121212;
    font-size: 14px;
   
    font-weight: 400;
    line-height: 24px;
    word-wrap: break-word
}

/* ── Pricing + ZSS Card ─────────────────────────────── */
.pricing-zss-row {
    display: flex;
    gap: 0px;
    align-items: stretch;
}

.pricing-box {
    margin-right: -297px;
    background: rgb(128 118 118 / 0%);
    border: 1px solid #FFFDE4;
    border-radius: 16px;
    padding: 1.25rem 1.5rem;
    flex: 1;
    min-width: 0;
}

.price-main {
    color: var(--cream);
    font-size: 42px;
   
    font-weight: 700;
    line-height: 58.80px;
    letter-spacing: 0.60px;
    word-wrap: break-word
}

.price-per {
    color: var(--text-muted);
    font-size: 16px;
   
    font-weight: 400;
    line-height: 27.20px;
    word-wrap: break-word
}

/* Pack buttons */
.pack-btn {
    background: white;
    border: 1.5px solid rgba(255, 255, 255, 0.25);
    border-radius: 8px;
    color: var(--text-dark);
    font-size: 0.82rem;
    font-weight: 600;
    padding: 7px 14px;
    cursor: pointer;
    transition: all 0.25s;
    font-family: 'DM Sans', sans-serif;
    letter-spacing: 0.5px;
}

.pack-btn:hover,
.pack-btn.active {
    background: var(--green-mid);
    border-color: var(--green-light);
    color: #fff;
    box-shadow: 0 0 16px rgba(74, 140, 80, 0.35);
}

/* ZSS Score */
.zss-box {
    background: var(--green-dark);
    border: 1px solid #7A9B34;
    border-radius: 16px;
    padding: 1.25rem 1.5rem;
    width: 297px;
    flex-shrink: 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.zss-box::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 0%, rgba(74, 140, 80, 0.25) 0%, transparent 60%);
    pointer-events: none;
}

.zss-label {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--green-light);
    text-transform: uppercase;
}

.zss-score-big {
    font-family: 'Playfair Display', serif;
    font-size: 3.4rem;
    font-weight: 700;
    color: var(--cream);
    line-height: 1;
    display: block;
}

.zssnew-box {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
}

/* Your existing style */
.zss-denom {
    color: #FFFDE4;
    font-size: 48px;
    font-family: Roboto;
    font-weight: 300;
    line-height: 67.20px;
    word-wrap: break-word;
}

/* Line under text */
.zss-line {
    width: 70px;
    /* adjust if needed */
    height: 3px;
    background: linear-gradient(to right, #FFFFFF, #FFFFFF33);
    margin-top: 5px;
    /* space between text & line */
    border-radius: 4px;
}


.zss-sub {
    color: #FFFDE4;
    font-size: 16px;
   
    font-weight: 400;
    line-height: 27.20px;
    word-wrap: break-word
}

/* ── CTA Buttons ────────────────────────────────────── */
.btn-add-cart {
    background: linear-gradient(135deg, var(--green-mid), var(--green-accent));
    border: none;
    border-radius: 12px;
    color: #fff;
    font-family: 'DM Sans', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 14px 28px;
    width: 100%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(45, 90, 53, 0.5);
    letter-spacing: 0.3px;
}

.btn-add-cart:hover {
    background: linear-gradient(135deg, #3a6e42, #5da564);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(45, 90, 53, 0.65);
}

.btn-add-cart:active {
    transform: translateY(0);
}

.btn-sustainability {
    background: transparent;
    border: 1.5px solid var(--green-light);
    border-radius: 12px;
    color: var(--green-light);
    font-family: 'DM Sans', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 13px 28px;
    width: 100%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
    letter-spacing: 0.3px;
}

.btn-sustainability:hover {
    background: rgba(123, 196, 127, 0.12);
    border-color: #a8daa9;
    color: #a8daa9;
    transform: translateY(-2px);
}

/* Perks row */
.perk-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--green-light);
    display: inline-block;
    flex-shrink: 0;
    margin-top: 2px;
}

.perk-text {
    font-size: 0.82rem;
    color: rgba(245, 240, 232, 0.7);
    font-weight: 500;
}

/* ── Responsive Tweaks ──────────────────────────────── */
@media (max-width: 991.98px) {
    .pricing-zss-row {
        flex-direction: column;
    }

        .zss-box {
        width: 100%;
        text-align: left;
        display: flex;
        flex-direction: column;
        gap: 0px;
        align-items: center;
    }

    .zss-score-big {
        font-size: 2.8rem;
    }
}

@media (max-width: 767.98px) {
    .hero-section {
        padding: 60px 0 40px;
    }

    .product-image-card {
        padding: 1.5rem 1.25rem;
    }




    .btn-add-cart,
    .btn-sustainability {
        padding: 13px 20px;
        font-size: 0.9rem;
    }
}

@media (max-width: 575.98px) {
    .product-title {
        font-size: 1.65rem;
    }

    .attr-pills-row {
        gap: 6px;
    }

    .attr-pill {
      font-size: 0.76rem;
      padding: 0.3rem 0.7rem !important;
    }
}

/* ── Entry Animations ───────────────────────────────── */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(28px);
    }

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

.anim-1 {
    animation: fadeUp 0.65s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.anim-2 {
    animation: fadeUp 0.65s cubic-bezier(0.22, 1, 0.36, 1) 0.1s both;
}

.anim-3 {
    animation: fadeUp 0.65s cubic-bezier(0.22, 1, 0.36, 1) 0.2s both;
}

.anim-4 {
    animation: fadeUp 0.65s cubic-bezier(0.22, 1, 0.36, 1) 0.32s both;
}

.anim-5 {
    animation: fadeUp 0.65s cubic-bezier(0.22, 1, 0.36, 1) 0.44s both;
}

.anim-6 {
    justify-content: center;
    animation: fadeUp 0.65s cubic-bezier(0.22, 1, 0.36, 1) 0.56s both;
}

/* Glow ring around ZSS score */
@keyframes pulse-glow {

    0%,
    100% {
        box-shadow: 0 0 16px rgba(74, 140, 80, 0.25), inset 0 0 8px rgba(74, 140, 80, 0.05);
    }

    50% {
        box-shadow: 0 0 32px rgba(74, 140, 80, 0.45), inset 0 0 16px rgba(74, 140, 80, 0.1);
    }
}

.zss-box {
    animation: pulse-glow 3.5s ease-in-out infinite;
}

/* Cart icon bounce */
.btn-add-cart:hover .cart-icon {
    animation: bounce-cart 0.45s ease;
}

@keyframes bounce-cart {

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

    40% {
        transform: translateY(-5px);
    }

    70% {
        transform: translateY(2px);
    }
}

/* End */
/* Video Section css */
/* ========== VIDEO BACKGROUND FIX ========== */
.hero-section {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
}

.video-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    z-index: 1;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
}

/* ========== PRODUCT CARD STYLES ========== */
/* .product-image-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    position: relative;
} */


@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

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

.thumb-strip {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-top: 1.5rem;
}

.thumb-item {
    width: 54px;
    height: 54px;
    cursor: pointer;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.thumb-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.thumb-item.active {
    border-color: #3d7045;
    box-shadow: 0 0 0 3px rgba(61, 112, 69, 0.2);
}

/* ========== PRODUCT DETAILS STYLES ========== */
.product-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #f5f0e8;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.attr-pills-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.attr-pill {
    background: #FFFDE4;
    padding: 0.3rem 2.9rem;
    border-radius: 20px;
    font-size: 0.9rem;
}

.attr-pill .label {
    color: #666;
    margin-right: 0.25rem;
}

.attr-pill strong {
    color: BLACK;
    font-size: 14px;
   
    font-weight: 700;
    line-height: 27.20px;
    word-wrap: break-word
}

.pricing-zss-row {
    display: grid;
    grid-template-columns: 1fr 1fr;

}

@media (max-width: 768px) {
    .pricing-zss-row {
        grid-template-columns: 1fr;
    }
}

.pricing-box,
.zss-box {
    background: rgb(128 118 118 / 0%);
    padding: 1.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.price-main {
    color: #FFFDE4;
    font-size: 42px;
   
    font-weight: 700;
    line-height: 58.80px;
    letter-spacing: 0.60px;
    word-wrap: break-word
}

.price-per {
    color: #FFFDE4;
    font-size: 16px;
   
    font-weight: 400;
    line-height: 27.20px;
    word-wrap: break-word
}

.gap-new {
    gap: 4rem !important;
}

.pack-btn {
    padding: 0.5rem 1rem;
    border: 2px solid #3d7045;
    background: white;
    color: #000000;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;

    height: 36px;

}

.pack-btn:hover {
    background: #000000;
    color: white;
}

.pack-btn.active {
    margin-top: 7px;
    width: 214px;
    background: #ffffff;
    color: rgb(0, 0, 0);
}

.zss-number {
    color: #FFFDE4;
    font-size: 128px;
    font-family: Roboto;
    font-weight: 900;
    line-height: 128px;
    word-wrap: break-word
}

.zss-label {
    color: #FFFDE4;
    font-size: 16px;
   
    font-weight: 700;
    text-transform: uppercase;
    line-height: 27.20px;
    letter-spacing: 2px;
    word-wrap: break-word
}

.zss-score-big {
    font-size: 2.5rem;
    font-weight: 700;
    color: #3d7045;
}

.zss-denom {
    color: #FFFDE4;
    font-size: 48px;
    font-family: Roboto;
    font-weight: 300;
    line-height: 67.20px;
    word-wrap: break-word
}

.zss-sub {
    color: #FFFDE4;
    font-size: 16px;
   
    font-weight: 400;
    line-height: 27.20px;
    word-wrap: break-word
}

.btn-add-cart,
.btn-sustainability {
    width: 90%;
    padding: 1rem;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-add-cart {
    padding: 5px;
    width: 98%;
    border-radius: 46px;
    background: #3d7045;
    color: white;
}

.btn-add-cart:hover {
    background: #2d5a35;
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(61, 112, 69, 0.3);
}

.btn-sustainability {
    padding: 5px;
    width: 84%;
    border-radius: 46px;
    background: rgba(255, 255, 255, 0.95);
    color: #7A9B34;
    border: 2px solid #3d7045;
}

.btn-sustainability:hover {
    background: #f5f0e8;
    transform: translateY(-2px);
}

.perk-dot {
    width: 8px;
    height: 8px;
    background: #ffffff;
    border-radius: 50%;
    display: inline-block;
}

.perk-text {
    color: #f5f0e8;
    font-weight: 500;
}

.anim-1 {
    animation: fadeInUp 0.6s ease forwards;
    animation-delay: 0.1s;
    opacity: 0;
}

.anim-2 {

    color: white;
    font-size: 46px;
    font-weight: 700;
    line-height: 59.40px;
    word-wrap: break-word
}

.anim-3 {
    animation: fadeInUp 0.6s ease forwards;
    animation-delay: 0.3s;
    opacity: 0;
}

.anim-4 {
    animation: fadeInUp 0.6s ease forwards;
    animation-delay: 0.4s;
    opacity: 0;
}

.anim-5 {
    animation: fadeInUp 0.6s ease forwards;
    animation-delay: 0.5s;
    opacity: 0;
}

.anim-6 {
    animation: fadeInUp 0.6s ease forwards;
    animation-delay: 0.6s;
    opacity: 0;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

/* End */
/* ===== STICKY HEADER ===== */
.header-sticky {
    position: sticky;
    top: 0;
    z-index: 1000;

    backdrop-filter: blur(10px);
    padding: 22px 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

.life-title {
    margin-top: 83px;
    color: black;
    text-align: center;
   
    font-size: 38px;
    font-style: normal;
    font-weight: 700;
    line-height: 50.4px;
    /* 132.632% */
    letter-spacing: -1.28px;
}

.life-title span {
    color: #7A9B34;
}

.life-subtitle {
    color: rgba(0, 0, 0, 0.50);
    text-align: center;
   
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 27.2px;
    /* 136% */
}

/* ===== WRAPPER ===== */
.life-wrapper {
    position: relative;
    background: #e8ecf1;
}

/* ===== STICKY LAYER SCROLL ===== */
.life-section {
    position: sticky;
    top: 140px;
    height: 100vh;
    display: flex;
    align-items: center;
}

/* Create scroll space between layers */
.life-section:not(:last-child) {
    margin-bottom: 100vh;
}

.life-section-inner {
    width: 100%;
    background: var(--bg-white);
    padding: 60px 0;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
}

/* Z-index stacking - higher numbers appear on top */
.life-section:nth-child(1) {
    z-index: 1;
}

.life-section:nth-child(2) {
    z-index: 2;
}

.life-section:nth-child(3) {
    z-index: 3;
}

.life-section:nth-child(4) {
    z-index: 4;
}

.life-section:nth-child(5) {
    z-index: 5;
}

/* ===== CONTAINER ===== */
.life-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 15px;
}

/* ===== IMAGE ===== */
.life-image {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.life-image img {
    width: 90%;
    height: auto;
    display: block;
}

/* ===== CONTENT ===== */
.life-content h3 {
    color: #000;
   
    font-size: 34px;
    font-style: normal;
    font-weight: 700;
    line-height: 30.8px;
    /* 90.588% */
}

.life-content p {
    color: #000;
   
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
    /* 140% */
}

/* ===== PERFECT BOX ===== */
.perfect-box {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 24px;

}

.perfect-box img {
    width: 65px;
    height: 65px;
    background: var(--primary-green);
    border-radius: 50%;
    padding: 12px;
    flex-shrink: 0;
}

.perfect-label {
    color: #7A9B34;
    font-family: Roboto;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 27.2px;
    /* 170% */
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.perfect-text {
    color: #000;
   
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 22.4px;
    /* 112% */
}

/*  */
/* ===== SCROLL PROGRESS ===== */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 4px;
    background: linear-gradient(90deg, #7A9B34, #9BC05A);
    z-index: 9999;
}

/*  */
.badge-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    padding: 24px 20px;
}

.badge-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.badge-icon {
    width: 72px;
    height: 72px;
    background: rgba(255, 255, 255, 0.75);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.badge-text {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: #3a3a3a;
    margin: 0;
    text-align: center;
}

/*  */
/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .header-sticky {
        padding: 30px 0;
    }

    .life-section {
        top: 120px;
    }

    .life-section:not(:last-child) {
        margin-bottom: 80vh;
    }

    .life-section-inner {
        padding: 50px 0;
    }

    .life-content {
        margin-top: 30px;
    }
}

@media (max-width: 768px) {
  .pricing-box,
.zss-box {
      padding: 0.5rem !important;
  margin-top: 5px;
  }
  .zss-label {
    font-size: 11px !important;
  }
  
    .zss-number {
        font-size: 90px !important;
    }
    .zss-sub {
        font-size: 17px !important;
    }
   
  
  .anim-2 {
    font-size: 30px;
    margin: 0;
    padding: 0;
    text-align: center;
  }
  .eco-buy-btn {
        padding: 12px 100px;
    }

    .badge-wrapper {

        flex-direction: column;
        gap: 24px;
    }

    .header-sticky {
        padding: 20px 0;
    }
.pricing-box{
  margin-right:unset;
  text-align: center;
  }
    .life-section {
        top: 100px;
    }

    .life-section:not(:last-child) {
        margin-bottom: 60vh;
    }

    .life-section-inner {
        padding: 40px 0;
    }

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

    .perfect-box {
        padding: 20px;
    }

    .perfect-box img {
        width: 40px;
        height: 40px;
    }
  .gz-main-image-side {
    position: absolute;
    top: -21px;
    left: 1px;
    width: 148px;
    pointer-events: none;
    z-index: 2;
}
}

/* ===== WRAPPER ===== */
.life-wrapper {
    position: relative;
    background: #e8ecf1;
}

/* ===== STICKY LAYER SCROLL ===== */
.life-section {
    position: sticky;
    top: 140px;
    height: 100vh;
    display: flex;
    align-items: center;
}

.life-section:not(:last-child) {
    margin-bottom: 100vh;
}

/* Z-index stacking */
.life-section:nth-child(1) { z-index: 1; }
.life-section:nth-child(2) { z-index: 2; }
.life-section:nth-child(3) { z-index: 3; }
.life-section:nth-child(4) { z-index: 4; }
.life-section:nth-child(5) { z-index: 5; }
.life-section:nth-child(6) { z-index: 6; }

.life-section-inner {
    width: 100%;
    background: #fff;
    padding: 60px 0;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
}

.life-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 15px;
}

.life-image {
    border-radius: 12px;
    overflow: hidden;
}

.life-image img {
    width: 90%;
    height: auto;
    display: block;
}

/* ===== MOBILE STACKING FIX ONLY ===== */
@media (max-width: 992px) {

    /* ✅ ONLY change: make stacking work on mobile */
    .life-section {
        position: relative !important;
        top: unset !important;
        height: auto !important;
        display: block !important;
        margin-bottom: 0 !important;
        z-index: unset !important;
    }

    .life-section:not(:last-child) {
        margin-bottom: 20px !important;
    }

    .life-section-inner {
        padding: 40px 0;
    }

    /* ✅ ONLY change: fix image always on top on mobile */
    .life-section .row {
        display: flex !important;
        flex-direction: column !important;
    }

    .life-section .col-lg-6 {
        width: 100% !important;
        max-width: 100% !important;
    }

    .life-section .col-lg-6:has(.life-image) {
        order: -1 !important;
    }

    .life-section .col-lg-6:has(.life-content) {
        order: 1 !important;
    }

    /* ✅ ONLY change: image full width on mobile */
    .life-image img {
        width: 100% !important;
    }

    .life-content {
        margin-top: 20px;
        text-align: center;
    }

    .perfect-box {
        justify-content: center;
    }
  .gz-product-card {
  height: 300px;
}
  .gz-thumb {
        width: 35px;
        height: 35px;

    }
}

