

        :root {
            --primary: #236b3c;
            --secondary: #8baa45;
            --dark: #173b25;
            --light: #f4f8ef;
            --cream: #fafcf6;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: Arial, Helvetica, sans-serif;
            color: #333;
            background: #fff;
            overflow-x: hidden;
        }

        a {
            text-decoration: none;
        }

        /* =========================
           TOP BAR
        ========================= */

        .top-bar {
            background: var(--dark);
            color: #fff;
            padding: 9px 0;
            font-size: 14px;
        }

        .top-bar a {
            color: #fff;
            margin-left: 20px;
        }

        /* =========================
           NAVBAR
        ========================= */

        .navbar {
            background: #fff;
            padding: 15px 0;
            box-shadow: 0 3px 18px rgba(0,0,0,.08);
            position: sticky;
            top: 0;
            z-index: 999;
        }

        .navbar-brand {
            color: var(--primary) !important;
            font-weight: 800;
            font-size: 22px;
            line-height: 1.1;
        }

        .navbar-brand span {
            display: block;
            color: #777;
            font-size: 11px;
            letter-spacing: 2px;
            font-weight: 500;
            margin-top: 4px;
        }

        .navbar-nav .nav-link {
            color: #333;
            font-weight: 600;
            margin-left: 18px;
            transition: .3s;
        }

        .navbar-nav .nav-link:hover {
            color: var(--primary);
        }

        .nav-btn {
            background: var(--primary);
            color: #fff !important;
            padding: 10px 18px !important;
            border-radius: 30px;
        }

        /* =========================
           HERO
        ========================= */

        .hero {
            min-height: 650px;
            display: flex;
            align-items: center;
            position: relative;
            background:
                linear-gradient(90deg,
                    rgba(16,59,32,.95) 0%,
                    rgba(16,59,32,.78) 45%,
                    rgba(16,59,32,.25) 100%),
                url("https://images.unsplash.com/photo-1515586000433-45406d8e6662?auto=format&fit=crop&w=1800&q=85")
                center/cover no-repeat;
        }

        .hero-content {
            color: #fff;
            max-width: 750px;
        }

        .hero-tag {
            display: inline-block;
            padding: 8px 17px;
            background: rgba(255,255,255,.15);
            border: 1px solid rgba(255,255,255,.35);
            border-radius: 30px;
            margin-bottom: 22px;
            font-size: 14px;
        }

        .hero h1 {
            font-size: 58px;
            line-height: 1.08;
            font-weight: 800;
            margin-bottom: 22px;
        }

        .hero h1 span {
            color: #c7df7d;
        }

        .hero p {
            font-size: 19px;
            line-height: 1.7;
            max-width: 680px;
            color: #f2f7ef;
            margin-bottom: 30px;
        }

        .btn-main {
            background: #b1cc62;
            color: #163c24;
            padding: 14px 27px;
            border-radius: 30px;
            font-weight: 700;
            display: inline-block;
            margin-right: 10px;
            transition: .3s;
        }

        .btn-main:hover {
            background: #fff;
            color: var(--primary);
            transform: translateY(-2px);
        }

        .btn-outline-light-custom {
            border: 1px solid #fff;
            color: #fff;
            padding: 13px 27px;
            border-radius: 30px;
            font-weight: 700;
            display: inline-block;
        }

        .btn-outline-light-custom:hover {
            background: #fff;
            color: var(--primary);
        }

        /* =========================
           COMMON
        ========================= */

        section {
            padding: 85px 0;
        }

        .section-title {
            text-align: center;
            margin-bottom: 50px;
        }

        .section-title small {
            color: var(--secondary);
            font-weight: 800;
            letter-spacing: 2px;
            text-transform: uppercase;
        }

        .section-title h2 {
            font-size: 40px;
            color: var(--dark);
            font-weight: 800;
            margin-top: 10px;
        }

        .section-title p {
            max-width: 700px;
            margin: 15px auto 0;
            color: #666;
            line-height: 1.7;
        }

        /* =========================
           ABOUT
        ========================= */

        .about-section {
            background: var(--cream);
        }

        .about-img {
            height: 480px;
            border-radius: 25px;
            overflow: hidden;
        }

        .about-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .about-content {
            padding-left: 30px;
        }

        .about-content h2 {
            color: var(--dark);
            font-size: 40px;
            font-weight: 800;
            margin-bottom: 20px;
        }

        .about-content p {
            color: #666;
            line-height: 1.8;
            margin-bottom: 16px;
        }

        .about-list {
            list-style: none;
            padding: 0;
            margin-top: 25px;
        }

        .about-list li {
            margin-bottom: 13px;
            font-weight: 600;
        }

        .about-list i {
            color: var(--primary);
            margin-right: 10px;
        }

        /* =========================
           STATS
        ========================= */

        .stats {
            background: var(--primary);
            color: #fff;
            padding: 50px 0;
        }

        .stat-box {
            text-align: center;
            padding: 15px;
        }

        .stat-box i {
            font-size: 35px;
            color: #c5db79;
            margin-bottom: 15px;
        }

        .stat-box h3 {
            font-size: 34px;
            font-weight: 800;
        }

        .stat-box p {
            margin: 0;
            opacity: .85;
        }

        /* =========================
           WHY CHOOSE
        ========================= */

        .why-card {
            background: #fff;
            padding: 35px 28px;
            border-radius: 18px;
            border: 1px solid #e8eee2;
            height: 100%;
            transition: .3s;
        }

        .why-card:hover {
            transform: translateY(-7px);
            box-shadow: 0 15px 40px rgba(0,0,0,.09);
        }

        .why-icon {
            width: 65px;
            height: 65px;
            border-radius: 50%;
            background: var(--light);
            color: var(--primary);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 27px;
            margin-bottom: 20px;
        }

        .why-card h4 {
            color: var(--dark);
            font-weight: 700;
            margin-bottom: 12px;
        }

        .why-card p {
            color: #666;
            line-height: 1.7;
            margin: 0;
        }

        /* =========================================
   PRODUCTS SECTION
========================================= */

.products-section {
    padding: 90px 0;
    background: #f7faf4;
}

.products-section .section-title {
    text-align: center;
    max-width: 750px;
    margin: 0 auto 50px;
}

.products-section .section-title small {
    display: inline-block;
    color: #236b3c;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.products-section .section-title h2 {
    font-size: 42px;
    font-weight: 700;
    color: #173b25;
    margin-bottom: 15px;
}

.products-section .section-title p {
    color: #66736a;
    font-size: 16px;
    line-height: 1.7;
}


/* PRODUCT CARD */

.product-card {
    height: 100%;
    background: #ffffff;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid #e5ebdf;
    box-shadow: 0 8px 25px rgba(35, 107, 60, 0.08);
    transition: all 0.35s ease;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 40px rgba(35, 107, 60, 0.16);
}


/* PRODUCT IMAGE */

.product-image {
    position: relative;
    width: 100%;
    height: 240px;
    overflow: hidden;
    background: #eef4e9;
}

.product-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.08);
}


/* NUMBER */

.product-number {
    position: absolute;
    z-index: 2;
    top: 15px;
    left: 15px;

    width: 45px;
    height: 45px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #236b3c;
    color: #ffffff;

    border-radius: 50%;

    font-size: 14px;
    font-weight: 700;

    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}


/* PRODUCT BODY */

.product-body {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.product-body h5 {
    color: #173b25;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.35;
    margin-bottom: 10px;
}

.product-spec {
    color: #68756c;
    font-size: 14px;
    line-height: 1.6;
    min-height: 45px;
    margin-bottom: 15px;
}


/* PRICE */

.price {
    color: #236b3c;
    font-size: 21px;
    font-weight: 700;
    margin-bottom: 18px;
}


/* ENQUIRY BUTTON */

.enquiry-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 100%;

    padding: 12px 18px;

    background: #236b3c;
    color: #ffffff;

    border-radius: 8px;

    font-size: 14px;
    font-weight: 600;

    text-decoration: none;

    transition: all 0.3s ease;
}

.enquiry-btn:hover {
    background: #173b25;
    color: #ffffff;
    transform: translateY(-2px);
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {

    .products-section {
        padding: 70px 0;
    }

    .products-section .section-title h2 {
        font-size: 36px;
    }

    .product-image {
        height: 220px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 575px) {

    .products-section {
        padding: 55px 0;
    }

    .products-section .section-title {
        margin-bottom: 35px;
    }

    .products-section .section-title h2 {
        font-size: 30px;
    }

    .products-section .section-title p {
        font-size: 14px;
    }

    .product-image {
        height: 220px;
    }

    .product-body {
        padding: 20px;
    }

    .product-body h5 {
        font-size: 18px;
    }

    .price {
        font-size: 19px;
    }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 400px) {

    .product-image {
        height: 200px;
    }

    .product-body {
        padding: 18px;
    }

    .product-number {
        width: 40px;
        height: 40px;
        font-size: 12px;
    }

}
  
        /* =========================
           INDUSTRIES
        ========================= */

        .industry-section {
            background: var(--cream);
        }

        .industry-box {
            text-align: center;
            padding: 30px 20px;
            background: #fff;
            border-radius: 15px;
            height: 100%;
            border: 1px solid #e7ebdf;
        }

        .industry-box i {
            font-size: 35px;
            color: var(--primary);
            margin-bottom: 15px;
        }

        .industry-box h5 {
            color: var(--dark);
            font-weight: 700;
        }

        /* =========================
           BUSINESS INFO
        ========================= */

        .business-section {
            background: var(--dark);
            color: #fff;
        }

        .business-section .section-title h2 {
            color: #fff;
        }

        .business-section .section-title p {
            color: #cbd6ce;
        }

        .info-box {
            background: rgba(255,255,255,.08);
            padding: 25px;
            border-radius: 15px;
            height: 100%;
            border: 1px solid rgba(255,255,255,.1);
        }

        .info-box i {
            color: #c3dc75;
            font-size: 25px;
            margin-bottom: 15px;
        }

        .info-box h5 {
            color: #fff;
            font-weight: 700;
        }

        .info-box p {
            margin: 0;
            color: #cdd8d0;
            line-height: 1.7;
        }

        /* =========================
           CONTACT
        ========================= */

        .contact-section {
            background: #f7faf3;
        }

        .contact-card {
            background: #fff;
            padding: 35px;
            border-radius: 20px;
            box-shadow: 0 10px 35px rgba(0,0,0,.06);
        }

        .contact-item {
            display: flex;
            gap: 15px;
            margin-bottom: 25px;
        }

        .contact-icon {
            width: 48px;
            height: 48px;
            min-width: 48px;
            background: var(--light);
            color: var(--primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .contact-item h6 {
            font-weight: 700;
            color: var(--dark);
            margin-bottom: 5px;
        }

        .contact-item p {
            margin: 0;
            color: #666;
        }

        .form-control {
            min-height: 52px;
            border-radius: 10px;
            border: 1px solid #ddd;
        }

        textarea.form-control {
            min-height: 130px;
        }

        .submit-btn {
            width: 100%;
            border: none;
            background: var(--primary);
            color: #fff;
            padding: 15px;
            border-radius: 10px;
            font-weight: 700;
            font-size: 16px;
        }

        .submit-btn:hover {
            background: var(--dark);
        }

        /* =========================
           FOOTER
        ========================= */

        footer {
            background: #102b1b;
            color: #bfcac1;
            padding: 45px 0 20px;
        }

        footer h4 {
            color: #fff;
            font-weight: 800;
            margin-bottom: 15px;
        }

        footer p {
            line-height: 1.7;
        }

        footer a {
            color: #bfcac1;
        }

        footer a:hover {
            color: #c6df78;
        }

        .footer-bottom {
            border-top: 1px solid rgba(255,255,255,.1);
            margin-top: 30px;
            padding-top: 20px;
            text-align: center;
            font-size: 14px;
        }

        /* =========================
           WHATSAPP
        ========================= */

        .whatsapp {
            position: fixed;
            right: 20px;
            bottom: 20px;
            width: 58px;
            height: 58px;
            background: #25d366;
            color: #fff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 30px;
            z-index: 9999;
            box-shadow: 0 5px 20px rgba(0,0,0,.2);
        }

        .whatsapp:hover {
            color: #fff;
            transform: scale(1.08);
        }

        /* =========================
           RESPONSIVE
        ========================= */

        @media (max-width: 991px) {

            .hero {
                min-height: 600px;
            }

            .hero h1 {
                font-size: 45px;
            }

            .about-content {
                padding-left: 0;
                margin-top: 35px;
            }

            .navbar-nav {
                padding-top: 15px;
            }

            .navbar-nav .nav-link {
                margin-left: 0;
                padding: 10px 0;
            }

            .nav-btn {
                display: inline-block;
                width: fit-content;
                margin-top: 8px;
            }
        }

        @media (max-width: 767px) {

            .top-bar {
                text-align: center;
                font-size: 12px;
            }

            .top-bar .text-end {
                text-align: center !important;
                margin-top: 5px;
            }

            .top-bar a {
                margin: 0 7px;
            }

            .navbar {
                padding: 12px 0;
            }

            .navbar-brand {
                font-size: 18px;
            }

            .hero {
                min-height: 600px;
                background-position: 60% center;
            }

            .hero-content {
                text-align: center;
            }

            .hero h1 {
                font-size: 37px;
            }

            .hero p {
                font-size: 16px;
            }

            .btn-main,
            .btn-outline-light-custom {
                display: block;
                width: 100%;
                margin: 8px 0;
            }

            section {
                padding: 60px 0;
            }

            .section-title {
                margin-bottom: 35px;
            }

            .section-title h2 {
                font-size: 31px;
            }

            .about-img {
                height: 320px;
            }

            .about-content h2 {
                font-size: 31px;
            }

            .stat-box {
                margin-bottom: 20px;
            }

            .stat-box h3 {
                font-size: 28px;
            }

            .product-body h5 {
                min-height: auto;
            }

            .product-spec {
                min-height: auto;
            }

            .contact-card {
                padding: 25px 20px;
            }

            .whatsapp {
                width: 52px;
                height: 52px;
                right: 15px;
                bottom: 15px;
                font-size: 26px;
            }
        }

        @media (max-width: 480px) {

            .hero {
                min-height: 620px;
            }

            .hero h1 {
                font-size: 32px;
            }

            .hero-tag {
                font-size: 12px;
            }

            .section-title h2 {
                font-size: 28px;
            }

            .about-img {
                height: 270px;
            }

            .why-card {
                padding: 25px 20px;
            }

            .product-body {
                padding: 20px;
            }
        }

  /* =========================================
   GALLERY SECTION
========================================= */

.gallery-section {
    padding: 90px 0;
    background: #f7faf4;
}

.gallery-section .section-title {
    max-width: 750px;
    margin: 0 auto 50px;
    text-align: center;
}

.gallery-section .section-title small {
    display: inline-block;
    margin-bottom: 10px;

    color: #236b3c;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
}

.gallery-section .section-title h2 {
    margin-bottom: 15px;

    color: #173b25;
    font-size: 42px;
    font-weight: 700;
}

.gallery-section .section-title p {
    margin: 0;

    color: #66736a;
    font-size: 16px;
    line-height: 1.7;
}


/* =========================================
   GALLERY ITEM
========================================= */

.gallery-item {
    position: relative;

    height: 300px;

    overflow: hidden;

    border-radius: 18px;

    background: #e9f0e5;

    box-shadow: 0 8px 25px rgba(35, 107, 60, 0.10);

    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition: transform 0.6s ease;
}

.gallery-item:hover img {
    transform: scale(1.10);
}


/* =========================================
   OVERLAY
========================================= */

.gallery-overlay {
    position: absolute;

    left: 0;
    right: 0;
    bottom: 0;

    padding: 22px;

    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    min-height: 45%;

    background: linear-gradient(
        to top,
        rgba(10, 35, 20, 0.92),
        rgba(10, 35, 20, 0.35),
        transparent
    );

    color: #ffffff;

    opacity: 0;

    transform: translateY(15px);

    transition: all 0.35s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
    transform: translateY(0);
}


/* NUMBER */

.gallery-overlay span {
    display: inline-block;

    margin-bottom: 5px;

    color: #b8d47a;

    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
}


/* TITLE */

.gallery-overlay h5 {
    margin: 0 0 5px;

    color: #ffffff;

    font-size: 17px;
    font-weight: 700;
}

.gallery-overlay p {
    margin: 0;

    color: rgba(255, 255, 255, 0.8);

    font-size: 12px;
}


/* =========================================
   VIEW BUTTON
========================================= */

.gallery-view {
    width: 42px;
    height: 42px;

    flex: 0 0 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #ffffff;

    color: #236b3c;

    text-decoration: none;

    transition: all 0.3s ease;
}

.gallery-view:hover {
    background: #236b3c;
    color: #ffffff;

    transform: rotate(10deg);
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {

    .gallery-section {
        padding: 70px 0;
    }

    .gallery-section .section-title h2 {
        font-size: 36px;
    }

    .gallery-item {
        height: 260px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 575px) {

    .gallery-section {
        padding: 55px 0;
    }

    .gallery-section .section-title {
        margin-bottom: 30px;
    }

    .gallery-section .section-title h2 {
        font-size: 29px;
    }

    .gallery-section .section-title p {
        font-size: 14px;
    }

    .gallery-item {
        height: 220px;
        border-radius: 14px;
    }

    .gallery-overlay {
        padding: 15px;

        min-height: 55%;

        opacity: 1;
        transform: translateY(0);
    }

    .gallery-overlay h5 {
        font-size: 14px;
    }

    .gallery-overlay p {
        font-size: 10px;
    }

    .gallery-view {
        width: 34px;
        height: 34px;

        flex-basis: 34px;

        font-size: 12px;
    }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 400px) {

    .gallery-item {
        height: 190px;
    }

    .gallery-overlay {
        padding: 12px;
    }

    .gallery-overlay h5 {
        font-size: 12px;
    }

    .gallery-overlay p {
        display: none;
    }

}
.navbar-brand {
    display: flex;
    align-items: center;
}

.brand-logo {
    height: 60px;
    width: auto;
    display: block;
}

@media (max-width: 576px) {
    .brand-logo {
        height: 60px;
    }
}