﻿        .swiper-slide {
            display: flex;
            align-items: center;
        }

        .custom-hero h2 {
            font-size: 48px !important;
            line-height: 1.2 !important;
            position: relative !important;
            margin: 10px 0 !important;
        }

        .custom-hero h4 {
            font-size: 20px;
            margin-bottom: 10px;
        }

        .custom-hero p {
            font-size: 18px;
            margin-top: 10px;
        }

        .custom-hero * {
            position: relative; /* reset broken absolute styles */
        }

        .container-fluid {
            margin-bottom: 15px;
            padding-right:0px;
        }

        .img-fluid {
            border-radius: 10px;
        }

        .about-modern {
            padding: 100px 0;
            background: linear-gradient(135deg,#061b11,#0f2f1d);
            color: #fff;
            border-radius: 20px;
        }

        .about-modern {
            padding: 120px 0;
            background: background: radial-gradient(circle at top right, rgba(95,185,95,.25), transparent 40%);
            color: #fff;
            border-radius: 20px;
            position: relative;
            overflow: hidden;
        }
        .image-fade {
        position: relative;
        overflow: hidden;
        border-radius: 10px;
    }

    /* FADE EFFECT */
    .image-fade img {
        width: 100%;
        height: auto;

        mask-image: linear-gradient(
            to left,
            rgba(0,0,0,1) 90%,
            rgba(0,0,0,0) 100%
        );

        -webkit-mask-image: linear-gradient(
            to left,
            rgba(0,0,0,1) 90%,
            rgba(0,0,0,0) 100%
        );
    }

            /* glowing effect */
            .about-modern::before {
                content: "";
                position: absolute;
                width: 400px;
                height: 400px;
                background: rgba(34, 197, 94, 0.25);
                filter: blur(150px);
                top: -100px;
                right: -100px;
            }

        .about-content {
            max-width: 550px;
        }

        /* tagline */
        .about-modern .tagline {
            color: #38bdf8;
            font-size: 14px;
            letter-spacing: 3px;
            margin-bottom: 15px;
        }

        /* heading */
        .about-modern h2 {
            font-size: 48px;
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 20px;
        }

            .about-modern h2 span {
                color: #22c55e;
            }

        /* paragraph */
        .about-modern p {
            font-size: 17px;
            color: #cbd5e1;
            line-height: 1.8;
        }

        /* image */
        .about-img {
            width: 100%;
            max-height: 400px;
            object-fit: cover;
            border-radius: 15px;
            box-shadow: 0 20px 60px rgba(0,0,0,0.5);
        }

        .pattern-box {
            position: relative;
            background: #ffffff;
            overflow: hidden;
        }

            /* PATTERN LAYER */
            .pattern-box::before {
                content: "";
                position: absolute;
                inset: 0;
                background-image: url('/Content/assets/img/background_pettern.webp');
                background-repeat: repeat;
                background-size: 350px;
                background-position: top;
                /* smooth fade */
                mask-image: linear-gradient(to bottom, black 45%, transparent 70%);
                -webkit-mask-image: linear-gradient(to bottom, black 45%, transparent 70%);
                opacity: 0.5; /* make it soft */
            }

            /* CONTENT ABOVE PATTERN */
            .pattern-box > * {
                position: relative;
                z-index: 2;
            }

            .pattern-box1 {
            position: relative;
            background: #ffffff;
            overflow: hidden;
        }

            /* PATTERN LAYER */
            .pattern-box1::before {
                content: "";
                position: absolute;
                inset: 0;
                background-image: url('/Content/assets/img/background_pettern.webp');
                background-repeat: repeat;
                background-size: 200px;
                background-position: top;
                /* smooth fade */
                mask-image: linear-gradient(to bottom, black 45%, transparent 70%);
                -webkit-mask-image: linear-gradient(to bottom, black 45%, transparent 70%);
                opacity: 0.5; /* make it soft */
            }

            /* CONTENT ABOVE PATTERN */
            .pattern-box1 > * {
                position: relative;
                z-index: 2;
            }

            .header {
    background: #ffffff;
    height: 125px;
}
        .focus-header {
            margin-bottom: 60px;
        }

            /* Title */
            .focus-header h2 {
                font-size: 42px;
                font-weight: 700;
                color: #0f172a;
                position: relative;
                display: inline-block;
                margin-top: 15px;
            }

                /* underline accent */
                .focus-header h2::after {
                    content: "";
                    width: 60px;
                    height: 4px;
                    background: #22c55e;
                    display: block;
                    margin: 10px auto 0;
                    border-radius: 2px;
                }

            /* subtitle */
            .focus-header p {
                font-size: 18px;
                color: #64748b;
                margin-top: 10px;
            }

        .sustainability-card {
            position: relative;
            overflow: hidden;
            border-radius: 20px;
            height: 400px;
            cursor: pointer;
        }

            /* background image */
            .sustainability-card img {
                width: 100%;
                height: 100%;
                object-fit: cover;
                transition: 0.5s ease;
            }

        /* dark overlay */
        .overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
            color: #fff;
            padding: 30px;
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            transition: 0.4s ease;
        }

            /* title default */
            .overlay h3 {
                font-size: 28px;
                transition: 0.4s ease;
            }

        /* hidden content */
        .content {
            opacity: 0;
            transform: translateY(20px);
            transition: 0.4s ease;
        }

        .read-more {
            display: inline-block;
            margin-top: 10px;
            color: #22c55e;
            font-weight: 600;
            text-decoration: none;
        }
        /* zoom image */
        .sustainability-card:hover img {
            transform: scale(1.1);
        }

        /* move content up */
        .sustainability-card:hover .overlay {
            justify-content: flex-start;
        }

        /* push title up */
        .sustainability-card:hover h3 {
            margin-bottom: 10px;
        }

        /* show text */
        .sustainability-card:hover .content {
            opacity: 1;
            transform: translateY(0);
        }

        .sustainability-card:hover {
            box-shadow: 0 20px 60px rgba(0,0,0,0.4);
        }

        h3 {
            color: #ddfff0bd;
        }

        .stat-box {
            transition: 0.3s ease;
        }

            .stat-box:hover {
                transform: translateY(-5px);
                box-shadow: 0 20px 40px rgba(0,0,0,0.2);
            }

        .stats-section {
            position: relative;
            height: auto;
            max-height :1150px;
            overflow: hidden;
            background-color: white;
            margin-top: 3%;
        }

        /* BACKGROUND SLIDER */
        .image-slider {
    position: absolute;
    top: 35%;
    margin-top:105px;
    left: 42%;
    transform: translate(-50%, -50%);
    width: 43%;
    height: 800px;
    z-index: 1;
    border-radius: 15px;
    overflow: hidden;
}
        .stats-wrapper {
        min-height:800px;
        max-height:1150px;
        }

        .slide {
            position: absolute;
            inset: 0;
            background-size: cover;
            background-position: center;
            opacity: 0;
            transition: opacity 1s ease;
        }

            .slide.active {
                opacity: 1;
            }

        /* DARK OVERLAY (for readability) */
        .stats-section::after {
            content: "";
            position: absolute;
            inset: 0;
            z-index: 2;
        }

        /* CONTENT ABOVE IMAGE */
        .container {
            position: relative;
            z-index: 3;
        }

        /* GRID POSITION */
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            width: 38%;
            /*height:650px;*/
            margin-left: 44.5%;
            position: relative;
            z-index: 3;
            margin-top: 90px;
            margin-right: 80px; /* adjust overlap */
        }

        /* BOXES */
        .stat-box {
            font-family: 'Poppins', Helvetica, Arial, Lucida, sans-serif;
            padding: 40px;
            color: #fff;
        }

        .blue {
            background: #2b4c7e;
        }

        .LIGHTGREEN {
            background: #39AB45 ;
        }

        .MIDGREEN {
            background: #0C9244 ;
        }


        .darkgreen {
            background: #09503D ;
        }

        .stat-box h2 {
            font-size: 48px;
        }

        .stat-box p {
            font-size: 18px;
        }

        /* FULL WIDTH */
        .full {
            grid-column: span 2;
        }

        .pattern-box1 {
            position: relative;
            background: #ffffff;
            overflow: hidden;
        }

            /* PATTERN LAYER */
            .pattern-box1::before {
                content: "";
                position: absolute;
                inset: 0;
                background-image: url('/Content/assets/img/background_pettern.webp');
                background-repeat: repeat;
                background-size: 200px;
                background-position: top;
                /* 🔥 smoother gradient */
                mask-image: linear-gradient( to bottom, rgba(0,0,0,1) 0%, rgba(0,0,0,0.9) 40%, rgba(0,0,0,0.6) 60%, rgba(0,0,0,0.2) 80%, rgba(0,0,0,0) 100% );
                -webkit-mask-image: linear-gradient( to bottom, rgba(0,0,0,1) 0%, rgba(0,0,0,0.9) 40%, rgba(0,0,0,0.6) 60%, rgba(0,0,0,0.2) 80%, rgba(0,0,0,0) 100% );
                opacity: 0.5;
            }

            /* CONTENT ABOVE PATTERN */
            .pattern-box1 > * {
                position: relative;
                z-index: 2;
            }

        .bg-logo {
            position: absolute;
            bottom: 20px;
            left: 20px;
            z-index: 1;
            opacity: 0.08; /* subtle watermark */
        }

            .bg-logo img {
                width: 250px;
            }
            .cert-section {
    padding: 80px 0;
    background: #f9fafb;
}

            /* reverse slider (optional) */
.logo-slider.reverse .logo-track {
    animation: scrollRight 25s linear infinite;
}
.slider-title {
    text-align: center;
    margin-bottom: 20px;
    font-weight: 600;
}

/* slider box */
.logo-slider {
    overflow: hidden;
    width: 100%;
    position: relative;
}

/* track */
.logo-track {
    display: flex;
    align-items: center;
    width: fit-content;
    min-width: 200%;
    animation: scrollLeft 35s linear infinite;
}


/* images */
.logo-track img {
    width: 150px;
    height: 100px;
    object-fit: cover;
    margin: 0 20px;
    flex-shrink: 0;
}

.section-header {
    text-align: center;
    margin: 40px;
}

.section-header h2 {
    font-size: 32px;
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: "";
    width: 60%;
    height: 3px;
    background: #16a34a;
    position: absolute;
    left: 20%;
    bottom: -8px;
    border-radius: 10px;
}

/* 🔥 SMOOTH CONTINUOUS ANIMATION */
@keyframes scrollLeft {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@keyframes scrollRight {
    0% {
        transform: translateX(-50%);
    }
    100% {
        transform: translateX(0);
    }
}
    @media (max-width: 768px) {

    .stats-section {
        padding: 40px 15px;
    }

    /*.image-slider {
        position: relative;
        width: 100%;
        height: 220px;
        margin-bottom: 20px;
        transform: none;
        left: auto;
        top: auto;
    }*/

    .stats-grid {
        width: 100%;
        margin: 0;
        grid-template-columns: 1fr;
        gap: 0;
    }

    .stat-box {
        padding: 25px;
        text-align: center;
        width: 100%;
    }

    .full {
        grid-column: span 1;
    }

    /* 🔥 LOGO FIX */
    .bg-logo {
        bottom: 10px;
        left: 10px;
        z-index: 2;
    }

    .bg-logo img {
        width: 120px;
        opacity: 0.15;
    }
}
    #certifications {
    padding-top:100px;
        /*padding: 60px 20px;*/
    text-align: center;
}

.cert-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap; /* responsive */
    gap: 30px;
    margin-top: 30px;
}

/* images */
.cert-logos img {
    height: 150px;
    width: auto;
    object-fit: contain;

    filter: grayscale(100%);
    opacity: 0.7;
    transition: 0.3s ease;
}

/* hover effect */
.cert-logos img:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.1);
}
.content-box {
    padding: 40px;
}

.tagline {
    font-size: 12px;
    letter-spacing: 2px;
    color: #999;
    text-transform: uppercase;
}

.main-heading {
    font-size: 36px;
    font-weight: 700;
    margin: 15px 0;
}

.highlight {
    color: #c59d5f; /* gold tone */
}

.descs {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.btn-custom {
    background: #000;
    color: #fff;
    padding: 10px 20px;
    border-radius: 30px;
    transition: 0.3s;
}

.btn-custom:hover {
    background: #c59d5f;
}

.eco-box {
    padding: 40px;
}

.highlight-green {
    color: #2e7d32;
}

.eco-list {
    margin: 15px 0;
    padding-left: 0;
    list-style: none;
}

.eco-list li {
    margin-bottom: 10px;
    font-size: 18px;
    position: relative;
    padding-left: 25px;
}

.eco-list li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #2e7d32;
    font-weight: bold;
}
.custom-hero {
    position: relative;
    padding-bottom: 60px;
}

.swiper {
    width: 100%;
    overflow: hidden;
}

.swiper-wrapper {
    display: flex;
}

.swiper-slide {
    flex-shrink: 0;
    width: 100%;
}

.custom-hero .swiper-pagination {
    bottom: 10px !important;
}

.custom-hero .swiper-pagination-bullet {
    width: 14px;
    height: 14px;
    background: #999;
    opacity: 1;
    transition: 0.3s;
}

.custom-hero .swiper-pagination-bullet-active {
    background: #000;
    width: 35px;
    border-radius: 20px;
}
@media (max-width: 768px) {

    .stats-section {
        max-height: none;
        overflow: visible;
        padding: 30px 15px;
    }

    .stats-wrapper {
        min-height: auto;
        max-height: none;
    }

    #certifications {
        /*padding-top: 230px;*/
    text-align: center;
    }
    .image-slider {
        position: relative;
        width: 100%;
        height: 250px;
        left: 0;
        top: 0;
        transform: none;
        margin: 0 auto 20px;
        border-radius: 15px;
    }

    .stats-grid {
        width: 100%;
        margin: 0;
        grid-template-columns: 1fr;
        gap: 0;
    }

    .stat-box {
        padding: 35px 20px;
        text-align: center;
    }

    .full {
        grid-column: span 1;
    }
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    /*gap: 25px;*/
}

.stat-box {
    position: relative;
    padding: 45px 30px;
    /*border-radius: 28px;*/
    overflow: hidden;
    transition: 0.4s ease;
    color: white;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

.stat-box:hover {
    transform: translateY(-8px);
}

/* COLORS */
.blue {
    background: linear-gradient(135deg, #09503D, #0C9244);
}

.LIGHTGREEN {
    background: linear-gradient(135deg, #39AB45, #0C9244);
}

.MIDGREEN {
    background: linear-gradient(135deg, #0C9244, #09503D);
}

.darkgreen {
    background: linear-gradient(135deg, #06392b, #09503D);
}

.full {
    grid-column: span 2;
}

/* ===== STATS GRID ===== */

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    /*gap: 20px;*/

    width: 30%;
    margin-left: 48.5%;
    margin-top: 70px;

    position: relative;
    z-index: 5;
}

/* ===== BOX ===== */

.stat-box {
    position: relative;
    padding: 30px 25px;
    /*border-radius: 24px;*/
    overflow: hidden;
    transition: 0.4s ease;
    color: white;
    min-height: 230px;

    display: flex;
    flex-direction: column;
    justify-content: center;

    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

.stat-box:hover {
    transform: translateY(-6px);
}

/* COLORS */

.blue {
    background: linear-gradient(135deg, #09503D, #0C9244);
}

.LIGHTGREEN {
    background: linear-gradient(135deg, #39AB45, #0C9244);
}

.MIDGREEN {
    background: linear-gradient(135deg, #0C9244, #09503D);
}

.darkgreen {
    background: linear-gradient(135deg, #06392b, #09503D);
}

/* FULL WIDTH */

.full {
    grid-column: span 2;
    min-height: 230px;
}

/* ICON */

.stat-icon {
    width: 65px;
    height: 65px;
    border-radius: 18px;
    background: rgba(255,255,255,0.15);

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 20px;
}

.stat-icon i {
    font-size: 28px;
    color: white;
}

/* NUMBER */

.stat-box h2 {
    font-size: 58px;
    font-weight: 800;
    line-height: 1;
    margin: 0;
    color: white;
    display: inline-block;
}

/* PLUS */

.stat-box span {
    font-size: 28px;
    font-weight: 700;
    margin-left: 5px;
    color: rgba(255,255,255,0.9);
}

/* TEXT */

.stat-box p {
    font-size: 18px;
    margin-top: 12px;
    margin-bottom: 0;
    color: rgba(255,255,255,0.92);
}

/* ===== MOBILE ===== */

@media(max-width:768px) {

    .stats-section {
        padding: 40px 15px;
        overflow: hidden;
    }

    .image-slider {
        position: relative;
        width: 100%;
        height: 240px;
        left: 0;
        top: 0;
        transform: none;
        margin-bottom: 25px;
    }

    .stats-grid {
        width: 100%;
        margin: 0;
        grid-template-columns: 1fr;
        /*gap: 18px;*/
    }

    .full {
        grid-column: span 1;
    }

    .stat-box {
        min-height: 230px;
        padding: 30px 20px;
        text-align: center;
        align-items: center;
    }

    .stat-box h2 {
        font-size: 46px;
    }

    .stat-box p {
        font-size: 16px;
    }

    .stat-icon {
        margin-bottom: 18px;
    }
}
.custom-hero .swiper-slide {
    overflow: hidden;
}

.custom-hero .image-fade {
    padding: 0;
}

.custom-hero .hero-img {
    width: 100%;
    height: 750px;
    object-fit: cover;
    display: block;
    border-radius: 20px;
}

@media (max-width:768px) {

    .custom-hero .hero-img{
        height: 320px;
    }

    .eco-box {
        padding-top:0px;
    height: 415px;
}


    .stats-section {
        padding: 30px 15px;
        overflow: hidden;
        max-height: none;
    }

    .stats-wrapper {
        display: flex;
        flex-direction: column;
        gap: 20px;
        min-height: auto;
        max-height: none;
    }

    .image-slider {
        position: relative !important;
        width: 100% !important;
        height: 260px !important;

        left: 0 !important;
        top: 0 !important;
        transform: none !important;

        margin: 0 auto !important;
        border-radius: 20px;
    }

    .stats-grid {
        width: 100% !important;
        margin: 0 !important;

        display: grid;
        grid-template-columns: 1fr !important;
    }

    .stat-box {
        min-height: auto;
        padding: 35px 25px;
        text-align: center;

        align-items: center;
        justify-content: center;
    }

    .full {
        grid-column: span 1 !important;
    }

    .stat-box h2 {
        font-size: 42px;
    }

    .stat-box p {
        font-size: 16px;
    }

    .stat-icon {
        margin-bottom: 15px;
    }

    .bg-logo {
        display: none;
    }
}