﻿.bannerbg {
    background: linear-gradient(90deg, rgba(28, 102, 59, 1) 0%, rgba(111, 193, 86, 1) 100%);
    background-image: url(../img/background-image.png) !important;
    overflow-y: auto;
    padding: 3rem 1rem;
    height: 100%;
    min-height: 230px;
    background-size: cover;
    background-position: top;
    background-repeat: no-repeat;
    background-color: #099e2a;
    color: white;
}

    .bannerbg p {
        line-height: 30px;
        font-size: 20px;
        color: #e9f6e7;
        text-shadow: 1px 1px 3px rgb(0 0 0 / 79%);
    }

    .bannerbg h1 {
        font-size: 3.2em;
        color: rgb(255, 255, 255);
    }

@media(max-width:768px) {
    .bannerbg h1 {
        font-size: 2em !important;
        color: rgb(255, 255, 255);
    }

    .bannerbg {
        padding: 5rem 1rem;
    }
}

/*==================================================
                HEADER
==================================================*/

.header-area {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    background: #0f2318;
}

  /*  .header-area .container {
        max-width: 1450px;
    }*/

.navbar {
    padding: 18px 0;
}

.logo {
    width: 165px;
    transition: .3s;
}

    .logo:hover {
        transform: scale(1.04);
    }

/*================ MENU ================*/

.navbar-nav {
    gap: 18px;
}

    .navbar-nav .nav-link {
        color: #fff !important;
        font-size: 14px;
        font-weight: 500;
        padding: 10px 0 !important;
        position: relative;
        transition: .35s;
    }

        .navbar-nav .nav-link:hover {
            color: #d8b36a !important;
        }

        .navbar-nav .nav-link.active {
            color: #d8b36a !important;
        }

        /* underline */

        .navbar-nav .nav-link::after {
            content: "";
            position: absolute;
            left: 0;
            bottom: -4px;
            width: 0;
            height: 2px;
            background: #d8b36a;
            transition: .35s;
        }

        .navbar-nav .nav-link:hover::after {
            width: 100%;
        }

        .navbar-nav .nav-link.active::after {
            width: 100%;
        }


/*================ Dropdown ================*/

.dropdown-menu {
    border: none;
    border-radius: 16px;
    padding: 14px;
    margin-top: 20px;
    min-width: 220px;
    background: #0f2318;
    box-shadow: 0 20px 40px rgba(0,0,0,.30);
}

.dropdown-item {
    color: #fff;
    padding: 12px 16px;
    border-radius: 10px;
    transition: .3s;
}

    .dropdown-item:hover {
        background: #183626;
        color: #d8b36a;
    }


/*================ Buttons ================*/

.btn-login {
    min-width: 105px;
    height: 46px;
    border-radius: 12px;
    border: 1px solid #d8b36a;
    color: #d8b36a;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-weight: 600;
    transition: .35s;
}

    .btn-login:hover {
        background: #d8b36a;
        color: #081b11;
    }

.btn-register {
    min-width: 120px;
    height: 46px;
    border-radius: 12px;
    background: linear-gradient(#f0d08f,#d8b36a);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #111;
    font-weight: 700;
    transition: .35s;
}

    .btn-register:hover {
        transform: translateY(-2px);
    }


/*================ Mobile ================*/

.navbar-toggler {
    border: none;
    color: #fff;
}

    .navbar-toggler:focus {
        box-shadow: none;
    }

@media(max-width:1199px) {

    .navbar-collapse {
        margin-top: 20px;
        padding: 20px;
        background: #081b11;
        border-radius: 18px;
    }

    .navbar-nav {
        gap: 5px;
    }

    .header-area {
        background: #081b11;
        position: relative;
    }
}



/*==========================
        FOOTER
===========================*/

.footer-section {
    background: #081b11;
    color: #fff;
    padding: 70px 0 25px;
}

.footer-logo {
    width: 170px;
}

.footer-text {
    color: #d6d6d6;
    font-size: 15px;
}

.footer-section h5 {
    color: #f4c35a;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .footer-section ul li {
        margin-bottom: 12px;
    }

        .footer-section ul li a {
            color: #d7d7d7;
            text-decoration: none;
            transition: .3s;
        }

            .footer-section ul li a:hover {
                color: #f4c35a;
                padding-left: 6px;
            }

.contact-list li {
    color: #d7d7d7;
}

.contact-list i {
    color: #f4c35a;
    margin-right: 8px;
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

    .social-links a {
        width: 42px;
        height: 42px;
        border-radius: 50%;
        background: #133323;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        transition: .3s;
    }

        .social-links a:hover {
            background: #f4c35a;
            color: #000;
        }

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding-top: 15px;
}

    .footer-bottom p {
        margin: 0;
        color: #cfcfcf;
    }

.footer-section hr {
    border-color: rgba(255,255,255,.12);
    margin: 40px 0 20px;
}

@media(max-width:768px) {

    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
}
/*=========================================
                HERO
==========================================*/

.hero-section {
    background: linear-gradient(90deg, #021506, #021406, #021408);
    min-height: 820px;
    padding-top: 140px;
    padding-bottom: 40px;
    color: #fff;
    overflow: hidden;
}

.hero-badge {
    display: inline-block;
    background: rgba(216,179,106,.15);
    color: #d8b36a;
    border: 1px solid rgba(216,179,106,.35);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 13px;
    margin-bottom: 28px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-title {
    font-family: "Cormorant Garamond", serif;
    font-size: 72px;
    line-height: 1.05;
    font-weight: 700;
    margin-bottom: 28px;
}

    .hero-title span {
        color: #d8b36a;
    }

.hero-text {
    color: #d9d9d9;
    font-size: 18px;
    line-height: 1.8;
    max-width: 520px;
    margin-bottom: 35px;
}

.hero-btns {
    display: flex;
    gap: 18px;
    margin-bottom: 55px;
}

.btn-gold {
    background: #d8b36a;
    color: #111;
    padding: 15px 30px;
    border-radius: 12px;
    font-weight: 600;
}

    .btn-gold:hover {
        background: #efca84;
        color:black;
    }
.btn-transparent {
    background:transparent;
    color: white;
    padding: 15px 30px;
    border-radius: 12px;
    font-weight: 600;
    border:1px solid white;
}

    .btn-transparent:hover {
        background: #efca84;
        color:black;
    }

.hero-features {
    display: flex;
/*    gap: 40px;
*/    flex-wrap: wrap;
}

.feature-box {
    text-align: center;
}

    .feature-box i {
        color: #d8b36a;
        font-size: 28px;
        display: block;
        margin-bottom: 12px;
    }

    .feature-box span {
        color: #fff;
        font-size: 14px;
    }

.hero-image {
    width: 100%;
    max-width: 760px;
    animation: float 5s ease-in-out infinite;
    border-radius:20px;
}

@keyframes float {

    50% {
        transform: translateY(-12px);
    }
}

@media(max-width:992px) {

    .hero-section {
        padding-top: 120px;
        text-align: center;
        min-height: auto;
        padding-bottom: 80px;
    }

    .hero-title {
        font-size: 48px;
    }

    .hero-btns {
        justify-content: center;
    }

    .hero-features {
        justify-content: center;
        margin-top: 40px;
    }

    .hero-image {
        margin-top: 60px;
    }
}

/*=================================
            ABOUT
==================================*/

.about-section {
    background: #fff;
    padding: 90px 0;
}

.section-tag {
    display: inline-block;
    color: #c79b42;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 18px;
    text-transform: uppercase;
}

.about-title {
    font-family: 'Cormorant Garamond',serif;
    font-size: 60px;
    font-weight: 700;
    color: #143322;
    line-height: 1.1;
    margin-bottom: 25px;
}

.about-text {
    font-size: 17px;
    color: #666;
    line-height: 1.9;
    margin-bottom: 35px;
}

.btn-darkgreen {
    background: #0d2b18;
    color: #fff;
    padding: 14px 28px;
    border-radius: 12px;
    font-weight: 600;
}

    .btn-darkgreen:hover {
        background: #143d25;
        color: #fff;
    }

/*.about-image-box {
    background: #fff6ea;
    border-radius: 35px;
    padding: 18px;
    box-shadow: 0 15px 45px rgba(0,0,0,.08);
}*/

.about-image {
    width: 100%;
    border-radius: 28px;
    display: block;
}

@media(max-width:992px) {

    .about-section {
        text-align: center;
    }

    .about-title {
        font-size: 42px;
    }

    .about-image-box {
        margin-top: 50px;
    }
}
/*========================================
            COUNTER
========================================*/

.counter-section {
    background: #fff;
    padding: 40px 0;
    border-top: 1px solid #ececec;
    border-bottom: 1px solid #ececec;
}

.counter-box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
}

    .counter-box i {
        font-size: 42px;
        color: #c89b48;
    }

    .counter-box h2 {
        font-family: 'Cormorant Garamond',serif;
        font-size: 52px;
        font-weight: 700;
        color: #173825;
        margin: 0;
        line-height: 1;
    }

    .counter-box p {
        margin: 4px 0 0;
        font-size: 15px;
        color: #666;
    }

@media(max-width:768px) {

    .counter-box {
        justify-content: flex-start;
        padding-left: 20px;
    }
}
/*===================================
        PRODUCT SECTION
====================================*/

.product-section {
    background: #082012;
    padding: 90px 0;
}

.product-heading {
    font-family: 'Cormorant Garamond',serif;
    font-size: 56px;
    font-weight: 700;
    color: #fff;
    margin-top: 10px;
}

.product-subtitle {
    color: #d9d9d9;
    font-size: 17px;
    margin-top: 12px;
}

.product-card {
    padding: 35px;
    border-radius: 22px;
    text-align: center;
    transition: .4s;
    height: 100%;
}

    .product-card img {
        width: 100%;
        max-width: 250px;
        margin: auto;
        display: block;
        margin-bottom: 25px;
    }

    .product-card h3 {
        font-size: 30px;
        font-family: 'Cormorant Garamond',serif;
        font-weight: 700;
        color: #173825;
        margin-bottom: 15px;
    }

    .product-card p {
        font-size: 15px;
        color: #555;
        line-height: 1.8;
        min-height: 70px;
    }

.card-green {
    background: #edf6e5;
}

.card-gold {
    background: #fdf3dc;
}

.card-pink {
    background: #f7eef7;
}

.product-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 50px rgba(0,0,0,.15);
}

.product-btn {
    background: #fff;
    border-radius: 50px;
    padding: 12px 28px;
    border: 1px solid #ddd;
    font-weight: 600;
    margin-top: 15px;
}

    .product-btn:hover {
        background: #d8b36a;
        color: #111;
    }

.view-btn {
    background: transparent;
    border: 1px solid #d8b36a;
    color: #fff;
    padding: 14px 34px;
    border-radius: 50px;
    font-weight: 600;
}

    .view-btn:hover {
        background: #d8b36a;
        color: #111;
    }

/*=========================================
 BUSINESS SECTION
=========================================*/

.business-section {
    padding: 90px 0;
    background: #fff;
}

.section-tag {
    color: #caa04d;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
}

.business-section h2 {
    font-family: 'Cormorant Garamond',serif;
    font-size: 52px;
    font-weight: 700;
    color: #0b2b18;
    margin: 15px 0 20px;
}

.business-section p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 35px;
}

.btn-start {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #0b2b18;
    color: #fff;
    text-decoration: none;
    padding: 15px 30px;
    border-radius: 12px;
    transition: .35s;
}

    .btn-start:hover {
        background: #caa04d;
        color: #000;
    }

.business-steps {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.step-item {
    text-align: center;
}

.step-icon {
    width: 82px;
    height: 82px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid #ececec;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: #caa04d;
    box-shadow: 0 8px 30px rgba(0,0,0,.08);
    margin: auto;
}

.step-item h6 {
    margin-top: 18px;
    font-size: 15px;
    color: #222;
    line-height: 1.5;
}

.arrow {
    color: #b88a36;
    font-size: 22px;
}

@media(max-width:991px) {

    .business-section {
        text-align: center;
    }

    .business-steps {
        margin-top: 50px;
        gap: 30px;
        justify-content: center;
    }

    .arrow {
        display: none;
    }

    .step-item {
        width: 150px;
    }
}
/*==================================
WHY CHOOSE
===================================*/

.why-section {
    background: #082113;
    padding: 90px 0;
    position: relative;
    overflow: hidden;
}

    .why-section::before {
        content: '';
        position: absolute;
        inset: 0;
        background: url('../assets/img/leaves-bg.png') center/cover;
        opacity: .08;
    }

    .why-section .container {
        position: relative;
        z-index: 2;
    }

    .why-section .section-tag {
        display: block;
        text-align: center;
        color: #cda24e;
        font-size: 13px;
        font-weight: 600;
        letter-spacing: 1px;
        margin-bottom: 10px;
    }

    .why-section h2 {
        text-align: center;
        color: #fff;
        font-family: 'Cormorant Garamond',serif;
        font-size: 54px;
        margin-bottom: 50px;
    }

.why-card {
    background: rgba(255,255,255,.03);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 16px;
    text-align: center;
    padding: 35px 15px;
    transition: .35s;
    height: 100%;
}

    .why-card:hover {
        transform: translateY(-8px);
        border-color: #d7b062;
        background: #0d2c1d;
    }

    .why-card i {
        font-size: 40px;
        color: #d7b062;
        display: block;
        margin-bottom: 20px;
    }

    .why-card h6 {
        color: #fff;
        font-size: 16px;
        line-height: 1.6;
        margin: 0;
    }



/*=========================================
            SUPPORT HERO
=========================================*/

/*=====================================
 SUPPORT HERO
======================================*/

.support-hero {
    background: #07160b url('../img/support-bg.jpg') center center/cover no-repeat;
    padding: 70px 0 150px;
    position: relative;
    overflow: hidden;
}

    .support-hero:before {
        content: '';
        position: absolute;
        inset: 0;
        background: rgba(0,0,0,.55);
    }

    .support-hero .container {
        position: relative;
        z-index: 2;
    }

.support-breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 22px;
    font-size: 15px;
}

    .support-breadcrumb a {
        color: #fff;
        text-decoration: none;
    }

    .support-breadcrumb i {
        color: #b7d641;
        font-size: 13px;
    }

    .support-breadcrumb span {
        color: #b7d641;
    }

.support-hero h1 {
    color: #fff;
    font-size: 64px;
    font-weight: 700;
    line-height: 1.12;
    margin-bottom: 25px;
    font-family: 'Playfair Display',serif;
}

    .support-hero h1 span {
        color: #b8d83b;
    }

.hero-leaf {
    width: 42px;
    margin-left: 10px;
    margin-top: -8px;
}

.support-hero p {
    color: #d7d7d7;
    width: 430px;
    font-size: 19px;
    line-height: 34px;
}

.hero-img {
    max-height: 420px;
}
/*=====================================
 SUPPORT CONTACT CARDS
======================================*/

.support-contact-cards {
    margin-top: -80px;
    position: relative;
    z-index: 50;
}

.contact-wrapper {
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 15px 45px rgba(0,0,0,.12);
}

.support-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 38px 32px;
    border-right: 1px solid #ececec;
    min-height: 170px;
    transition: .35s;
}

    .support-card:hover {
        background: #fcfdf8;
    }

.support-icon {
    width: 52px;
    height: 52px;
    background: #f3f7ec;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

    .support-icon i {
        font-size: 28px;
        color: #2d6b1f;
    }

.support-card h5 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #132d15;
}

.support-card p {
    color: #666;
    font-size: 12px;
}

.support-card small {
    display: block;
    color: #666;
    margin-bottom: 14px;
    font-size: 15px;
}

.support-card h4 {
    color: #2b6e22;
    font-size: 15px;
    font-weight: 700;
}

.support-card a {
    color: #2f6d23;
    text-decoration: none;
    font-weight: 600;
    font-size: 12px;
}

    .support-card a i {
        margin-left: 6px;
        transition: .3s;
    }

.support-card:hover a i {
    margin-left: 12px;
}

@media(max-width:991px) {

    .support-contact-cards {
        margin-top: 40px;
    }

    .support-card {
        border-right: 0;
        border-bottom: 1px solid #eee;
    }
}
/*=====================================
FAQ + CONTACT
======================================*/

.support-help-section {
    padding: 70px 0;
    background: #f8f8f5;
}

.support-box {
    background: #fff;
    border-radius: 22px;
    padding: 35px;
    box-shadow: 0 10px 30px rgba(0,0,0,.06);
    height: 100%;
}

.section-title {
    font-size: 38px;
    font-family: 'Playfair Display',serif;
    color: #1d4b24;
    font-weight: 700;
}

.title-line {
    width: 90px;
    height: 3px;
    background: #b7d641;
    border-radius: 50px;
    margin: 18px 0 28px;
}

.custom-faq .accordion-item {
    border: 1px solid #ececec;
    margin-bottom: 14px;
    border-radius: 12px;
    overflow: hidden;
}

.custom-faq .accordion-button {
    background: #fff;
    font-weight: 600;
    padding: 18px 22px;
    box-shadow: none;
}

    .custom-faq .accordion-button:not(.collapsed) {
        background: #f6f8ed;
        color: #275d1e;
    }

.custom-faq .accordion-body {
    line-height: 30px;
    color: #666;
}

.form-control,
.form-select {
    height: 54px;
    border-radius: 10px;
    box-shadow: none;
}

textarea.form-control {
    height: auto;
}

.theme-btn {
    background: #2d6b1f;
    color: #fff;
    border: none;
    padding: 14px 34px;
    border-radius: 8px;
    text-decoration: none;
    display: inline-block;
    transition: .3s;
}

    .theme-btn:hover {
        background: #1e4f15;
        color: #fff;
    }

.working-box {
    background: #f5f8ef;
    border-radius: 18px;
    padding: 30px;
    text-align: left;
    height: 100%;
}

.clock-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2d6b1f;
    font-size: 32px;
    margin-bottom: 25px;
}

.working-box h5 {
    color: #234b20;
    font-weight: 700;
}

.working-box strong {
    color: #2d6b1f;
}
.heading-divider {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 18px 0 30px;
}

    .heading-divider span {
        height: 2px;
        width: 70px;
        background: #d4e2c8;
        display: block;
    }

    .heading-divider i {
        color: #7e9d33;
        font-size: 15px;
    }

.corner-leaf {
    position: absolute;
   
    width: 70px;
    height: 70px;
    background: #eef5e7;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: .9;
}

    .corner-leaf i {
        font-size: 36px;
        color: #7ca63a;
    }


/*====================================
        PRODUCTS HERO
=====================================*/
/*==========================================
        PRODUCTS HERO
==========================================*/

.products-hero {
    position: relative;
    overflow: hidden;
    background: #f8f6ec;
    min-height: 640px;
    padding: 60px 0 120px;
    display: flex;
    align-items: center;
}

    .products-hero::before {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background: url("../assets/img/products-bg.png") center center/cover no-repeat;
        opacity: .08;
        pointer-events: none;
    }

    .products-hero .container {
        position: relative;
        z-index: 5;
    }

    .products-hero .row {
        align-items: center;
    }

/*-----------------------------------
LEFT
-----------------------------------*/

.hero-small-title {
    display: inline-block;
    color: #8ba93a;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .8px;
    margin-bottom: 18px;
}

.hero-heading {
    font-family: "Cormorant Garamond",serif;
    font-size: 66px;
    font-weight: 700;
    color: #17361d;
    line-height: 1.05;
    margin-bottom: 18px;
}

.hero-divider {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 30px;
}

    .hero-divider span {
        width: 70px;
        height: 2px;
        background: #d6dfca;
    }

    .hero-divider i {
        color: #7ca136;
        font-size: 16px;
    }

.hero-text {
    font-size: 17px;
    color: #565656;
    line-height: 34px;
    max-width: 450px;
    margin-bottom: 45px;
}

/*-----------------------------------
FEATURES
-----------------------------------*/

.hero-features {
    display: flex;
    align-items: flex-start;
    margin-top: 20px;
}

.hero-feature {
    width: 25%;
    text-align: center;
    border-right: 1px solid #dedede;
    padding: 0 20px;
}

    .hero-feature:last-child {
        border-right: 0;
    }

    .hero-feature i {
        font-size: 34px;
        color: #2f6d24;
        display: block;
        margin-bottom: 16px;
    }

    .hero-feature h6 {
        margin: 0;
        font-size: 16px;
        line-height: 27px;
        color: #243c25;
        font-weight: 500;
    }

/*-----------------------------------
RIGHT IMAGE
-----------------------------------*/

.products-hero-right {
    position: relative;
    height: 100%;
}

.products-hero-img {
    width: 920px;
    max-width: none;
    position: absolute;
    right: -130px;
    bottom: -35px;
}

/*-----------------------------------
RESPONSIVE
-----------------------------------*/

@media(max-width:1400px) {

    .products-hero-img {
        width: 820px;
        right: -90px;
    }
}

@media(max-width:1200px) {

    .hero-heading {
        font-size: 58px;
    }

    .products-hero-img {
        width: 700px;
        right: -70px;
    }
}

@media(max-width:991px) {

    .products-hero {
        padding: 70px 0;
        min-height: auto;
    }

    .hero-heading {
        font-size: 48px;
    }

    .hero-text {
        max-width: 100%;
    }

    .products-hero-right {
        margin-top: 40px;
        text-align: center;
    }

    .products-hero-img {
        position: relative;
        right: 0;
        bottom: 0;
        width: 100%;
        max-width: 650px;
    }

    .hero-features {
        flex-wrap: wrap;
        gap: 25px; 
    }

    .hero-feature {
        width: 50%;
        border-right: 0;
        padding: 10px;
    }
}

@media(max-width:576px) {

    .hero-heading {
        font-size: 40px;
    }

    .hero-feature {
        width: 100%;
    }
}
/*=========================================
SHOP CATEGORY
==========================================*/

.product-category-section {
    margin-top: -65px;
    position: relative;
    z-index: 20;
}

.product-category-box {
    background: #fff;
    border-radius: 22px;
    padding: 35px 30px;
    box-shadow: 0 15px 45px rgba(0,0,0,.08);
}

.product-category-title {
    text-align: center;
    font-size: 38px;
    font-family: 'Cormorant Garamond',serif;
    color: #17361d;
    font-weight: 700;
    margin-bottom: 8px;
}

.product-category-divider {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-bottom: 35px;
}

    .product-category-divider span {
        width: 60px;
        height: 2px;
        background: #d8dfcf;
    }

    .product-category-divider i {
        color: #7ea238;
        font-size: 15px;
    }

.product-category-item {
    display: block;
    text-align: center;
    text-decoration: none;
    color: #1f2e20;
    position: relative;
    padding-bottom: 18px;
}

.product-category-icon {
    width: 82px;
    height: 82px;
    background: #f2f7ee;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    transition: .35s;
}

    .product-category-icon i {
        font-size: 30px;
        color: #2f6d24;
    }

.product-category-item h6 {
    font-size: 16px;
    font-weight: 500;
    margin: 0;
}

.product-category-item.active::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    width: 110px;
    height: 4px;
    background: #255f22;
    border-radius: 50px;
}

.product-category-item:hover .product-category-icon {
    background: #2f6d24;
}

    .product-category-item:hover .product-category-icon i {
        color: #fff;
    }

@media(max-width:991px) {

    .product-category-section {
        margin-top: 40px;
    }

    .product-category-box {
        padding: 25px;
    }

    .product-category-item {
        margin-bottom: 30px;
    }
}
/*=========================================
OUR PRODUCTS
==========================================*/

.prod-section {
    padding: 70px 0 80px;
}

.prod-title {
    text-align: center;
    font-family: 'Cormorant Garamond',serif;
    font-size: 42px;
    font-weight: 700;
    color: #17361d;
}

.prod-divider {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin: 12px 0 40px;
}

    .prod-divider span {
        width: 60px;
        height: 2px;
        background: #d8dfcf;
    }

    .prod-divider i {
        color: #7ea238;
    }

.prod-card {
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 18px;
    overflow: hidden;
    transition: .35s;
    height: 100%;
}

    .prod-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 18px 40px rgba(0,0,0,.10);
    }

.prod-image {
    height: 260px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

    .prod-image img {
        max-height: 220px;
        transition: .4s;
    }

.prod-card:hover img {
    transform: scale(1.05);
}

.prod-body {
    padding: 22px;
    text-align: center;
}

    .prod-body h4 {
        font-size: 24px;
        font-family: 'Cormorant Garamond',serif;
        color: #17361d;
        margin-bottom: 10px;
    }

    .prod-body p {
        color: #666;
        line-height: 28px;
        font-size: 15px;
        min-height: 78px;
    }

    .prod-body h3 {
        color: #1f5b1d;
        font-size: 34px;
        font-weight: 700;
        margin-bottom: 20px;
    }

.prod-btn {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    background: #184c20;
    color: #fff;
    text-decoration: none;
    padding: 13px;
    border-radius: 8px;
    transition: .3s;
}

    .prod-btn:hover {
        background: #0f3916;
        color: #fff;
    }

.prod-view-all {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 2px solid #2e6d25;
    color: #2e6d25;
    padding: 14px 35px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: .3s;
}

    .prod-view-all:hover {
        background: #2e6d25;
        color: #fff;
    }

/*=========================================
WHY CHOOSE US
==========================================*/

/*.why-sections {
    padding: 20px 0 70px;
}*/

.why-wrappers {
    background: #062714;
    border-radius: 18px;
    overflow: hidden;
    padding: 25px;
}

.why-tag {890pouj []
    color: #9fc45b;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
}

.why-title {
    font-family: 'Cormorant Garamond',serif;
    color: #fff;
    font-size: 50px;
    margin: 18px 0;
    line-height: 1.1;
}

    .why-title i {
        color: #8eb74b;
        font-size: 28px;
    }

.why-text {
    color: #d6e4d7;
    line-height: 32px;
    margin-bottom: 30px;
}

.why-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #9fc45b;
    color: #062714;
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
}

    .why-btn:hover {
        background: #b2d56d;
        color: #062714;
    }

.why-feature {
    text-align: center;
    border-right: 1px solid rgba(255,255,255,.12);
    padding: 0 22px;
}

.why-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 18px;
    border-radius: 50%;
    background: rgba(159,196,91,.12);
    display: flex;
    align-items: center;
    justify-content: center;
}

    .why-icon i {
        color: #a8cb63;
        font-size: 32px;
    }

.why-feature h5 {
    color: #fff;
    font-size: 20px;
    line-height: 30px;
    margin-bottom: 12px;
    font-family: 'Cormorant Garamond',serif;
}

.why-feature p {
    color: #d0d9d0;
    font-size: 15px;
    line-height: 28px;
}
/*=========================================
SERVICE FEATURES
==========================================*/

.product-service-section {
    padding: 40px 0;
    background: #fff;
}

.product-service-box {
    display: flex;
    align-items: center;
    gap: 18px;
}

.product-service-icon {
    width: 64px;
    height: 64px;
    background: #f3f8ef;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

    .product-service-icon i {
        color: #2d6a22;
        font-size: 28px;
    }

.product-service-box h5 {
    font-size: 19px;
    color: #17361d;
    margin-bottom: 5px;
    font-weight: 600;
}

.product-service-box p {
    color: #666;
    margin: 0;
    font-size: 15px;
}

/*=========================================
MEDIA HERO
==========================================*/

.media-hero-section {
    padding: 25px 0 90px;
    background: #f8f7ef;
}

.media-hero-box {
    background: #04170d;
    overflow: hidden;
    padding: 45px 55px;
    position: relative;
}

    .media-hero-box::before {
        content: "";
        position: absolute;
        inset: 0;
        background: url("../main_website/assets/img/media-bg.png") center/cover no-repeat;
        opacity: .08;
    }

    .media-hero-box .row {
        position: relative;
        z-index: 2;
    }

.media-breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 25px;
    font-size: 15px;
}

    .media-breadcrumb a {
        color: #fff;
        text-decoration: none;
    }

    .media-breadcrumb i {
        color: #7ca63d;
        font-size: 13px;
    }

    .media-breadcrumb span {
        color: #9dc54c;
    }

.media-hero-title {
    font-family: 'Cormorant Garamond',serif;
    color: #fff;
    font-size: 72px;
    line-height: 1;
    margin-bottom: 18px;
    font-weight: 700;
}

    .media-hero-title span {
        color: #8cb63d;
    }

.media-title-divider {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 28px;
}

    .media-title-divider span {
        width: 60px;
        height: 2px;
        background: #3a523b;
    }

    .media-title-divider i {
        color: #8cb63d;
        font-size: 14px;
    }

.media-hero-text {
    color: #e6ece5;
    font-size: 20px;
    line-height: 38px;
    max-width: 460px;
}

.media-banner-image {
    max-width: 760px;
    margin-right: -40px;
    margin-top: -15px;
}
/*=========================================
MEDIA FILTER
==========================================*/

.media-filter-section {
    margin-top: -65px;
    position: relative;
    z-index: 30;
}

.media-filter-box {
    background: #fff;
    border-radius: 22px;
    box-shadow: 0 12px 40px rgba(0,0,0,.08);
    overflow: hidden;
}

.media-filter-item {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 28px 32px;
    text-decoration: none;
    position: relative;
    transition: .35s;
}

    .media-filter-item:hover {
        background: #fafdf8;
    }

.media-filter-icon {
    width: 62px;
    height: 62px;
    background: #f4f8ef;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

    .media-filter-icon i {
        color: #2f6c22;
        font-size: 28px;
    }

.media-filter-item h5 {
    margin: 0;
    color: #17361d;
    font-size: 28px;
    font-family: 'Cormorant Garamond',serif;
    font-weight: 700;
}

.media-filter-item p {
    margin: 3px 0 0;
    color: #666;
    font-size: 15px;
}

.media-filter-item.active::after {
    content: "";
    position: absolute;
    left: 32px;
    right: 32px;
    bottom: 0;
    height: 4px;
    border-radius: 10px;
    background: #2d6b22;
}

.media-filter-item.active h5 {
    color: #2d6b22;
}

@media(max-width:991px) {

    .media-filter-section {
        margin-top: 35px;
    }

    .media-filter-item {
        padding: 22px;
        margin-bottom: 15px;
    }
}
/*=========================================
LATEST UPDATES
==========================================*/

.media-update-section {
    padding: 65px 0;
}

.media-update-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 35px;
}

.media-update-title {
    font-family: 'Cormorant Garamond',serif;
    font-size: 46px;
    color: #17361d;
    font-weight: 700;
}

    .media-update-title i {
        color: #7ea238;
        font-size: 18px;
    }

.media-update-divider {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
}

    .media-update-divider span {
        width: 60px;
        height: 2px;
        background: #d7ddce;
    }

    .media-update-divider i {
        color: #7ea238;
    }

.media-update-filter {
    width: 190px;
    height: 48px;
    border-radius: 10px;
}

.media-update-card {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,.06);
    transition: .35s;
    height: 100%;
}

    .media-update-card:hover {
        transform: translateY(-8px);
    }

.media-update-image {
    position: relative;
}

    .media-update-image img {
        width: 100%;
        height: 210px;
        object-fit: cover;
    }

.media-update-badge {
    position: absolute;
    left: 18px;
    top: 18px;
    padding: 6px 14px;
    border-radius: 30px;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
}

.badge-news {
    background: #2d7c2d;
}

.badge-event {
    background: #946400;
}

.badge-video {
    background: #0b7b62;
}

.badge-gallery {
    background: #4f4f4f;
}

.media-video-play {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .media-video-play i {
        width: 72px;
        height: 72px;
        border-radius: 50%;
        background: rgba(255,255,255,.9);
        color: #0d5b2b;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 34px;
    }

.media-update-body {
    padding: 22px;
}

    .media-update-body small {
        color: #8d8d8d;
    }

    .media-update-body h4 {
        margin: 15px 0;
        font-size: 24px;
        font-family: 'Cormorant Garamond',serif;
        color: #17361d;
    }

    .media-update-body p {
        color: #666;
        line-height: 28px;
        min-height: 72px;
    }

    .media-update-body a {
        color: #2f6d22;
        text-decoration: none;
        font-weight: 600;
    }
/*=========================================
NEWSLETTER
==========================================*/

.media-newsletter-section {
    padding: 20px 0 55px;
}

.media-newsletter-box {
    background: #f7f8ef;
    border-radius: 18px;
    padding: 28px 35px;
    position: relative;
    overflow: hidden;
}

.media-newsletter-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.media-newsletter-icon {
    width: 78px;
    height: 78px;
    background: #0c2b15;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

    .media-newsletter-icon i {
        color: #fff;
        font-size: 34px;
    }

.media-newsletter-left h3 {
    font-family: 'Cormorant Garamond',serif;
    color: #17361d;
    font-size: 40px;
    margin-bottom: 6px;
    font-weight: 700;
}

.media-newsletter-left p {
    margin: 0;
    color: #555;
    font-size: 16px;
}

.media-newsletter-form {
    display: flex;
    justify-content: flex-end;
    gap: 15px;
}

.media-newsletter-input {
    height: 56px;
    border-radius: 10px;
    border: 1px solid #e3e3e3;
    padding: 0 20px;
}

.media-newsletter-btn {
    min-width: 170px;
    height: 56px;
    border: none;
    background: #215d23;
    color: #fff;
    border-radius: 10px;
    font-weight: 600;
    transition: .35s;
}

    .media-newsletter-btn:hover {
        background: #173f18;
    }

.media-newsletter-leaf {
    position: absolute;
    right: 20px;
    bottom: 0;
    width: 90px;
    opacity: .9;
}

@media(max-width:991px) {

    .media-newsletter-form {
        margin-top: 25px;
        flex-direction: column;
    }

    .media-newsletter-btn {
        width: 100%;
    }
}
/*=========================================
ABOUT HERO
==========================================*/

.about-hero-section {
    background: #f8f7ef;
    padding: 20px 0 90px;
}

.about-hero-wrapper {
    background: #04170d;
    border-radius: 28px;
    overflow: hidden;
    position: relative;
    padding: 50px 55px;
}

    .about-hero-wrapper::before {
        content: "";
        position: absolute;
        inset: 0;
        background: url("../main_website/assets/img/about-bg.png") center/cover no-repeat;
        opacity: .08;
    }

    .about-hero-wrapper .row {
        position: relative;
        z-index: 2;
    }

.about-breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 22px;
}

    .about-breadcrumb a {
        color: #fff;
        text-decoration: none;
        font-size: 15px;
    }

    .about-breadcrumb i {
        color: #8dbb44;
        font-size: 12px;
    }

    .about-breadcrumb span {
        color: #d4b16d;
        font-size: 15px;
    }

.about-hero-title {
    font-family: 'Cormorant Garamond',serif;
    color: #fff;
    font-size: 74px;
    line-height: 1.05;
    font-weight: 700;
    margin-bottom: 18px;
}

    .about-hero-title span {
        display: block;
        color: #d4b16d;
    }

.about-hero-divider {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 30px;
}

    .about-hero-divider span {
        width: 58px;
        height: 2px;
        background: #56624e;
    }

    .about-hero-divider i {
        color: #d4b16d;
        font-size: 14px;
    }

.about-hero-text {
    color: #eef3ec;
    font-size: 19px;
    line-height: 36px;
    max-width: 470px;
}

.about-hero-image {
    max-width: 780px;
    margin-right: -40px;
    margin-top: -10px;
}

@media(max-width:991px) {

    .about-hero-wrapper {
        padding: 40px 30px;
    }

    .about-hero-title {
        font-size: 52px;
    }

    .about-hero-image {
        margin-top: 40px;
        margin-right: 0;
    }
}
/*=========================================
ABOUT STORY
==========================================*/

.about-story-section {
    padding: 90px 0 40px;
    background: #faf9f2;
}

.about-story-tag {
    color: #b48b43;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 18px;
}

.about-story-title {
    font-family: 'Cormorant Garamond',serif;
    font-size: 64px;
    line-height: 1.05;
    color: #17361d;
    margin-bottom: 28px;
    font-weight: 700;
}

.about-story-text {
    color: #5c5c5c;
    font-size: 18px;
    line-height: 34px;
    margin-bottom: 20px;
}

.about-story-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 15px;
    padding: 16px 34px;
    background: #0b3a1d;
    color: #fff;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: .3s;
}

    .about-story-btn:hover {
        background: #14552d;
        color: #fff;
    }

.about-story-image-box {
    position: relative;
    text-align: right;
}

.about-story-image {
    width: 100%;
    max-width: 720px;
}

.about-story-leaf {
    position: absolute;
    left: -30px;
    bottom: -30px;
    width: 90px;
}

@media(max-width:991px) {

    .about-story-section {
        padding-top: 60px;
    }

    .about-story-title {
        font-size: 46px;
    }

    .about-story-image-box {
        margin-top: 40px;
        text-align: center;
    }

    .about-story-leaf {
        display: none;
    }
}
/*=========================================
MISSION | VISION | VALUES
==========================================*/

.about-mvv-section {
    padding: 15px 0 55px;
}

.about-mvv-card {
    background: #062b18;
    border-radius: 18px;
    padding: 38px 34px;
    height: 100%;
    display: flex;
    gap: 22px;
    transition: .35s;
    display: flex;
    align-items: center;
}

    .about-mvv-card:hover {
        transform: translateY(-8px);
    }

.about-mvv-icon {
    width: 78px;
    height: 78px;
    min-width: 78px;
    border-radius: 50%;
    border: 2px solid rgba(210,173,93,.45);
    display: flex;
    align-items: center;
    justify-content: center;
}

    .about-mvv-icon i {
        font-size: 36px;
        color: #d5b46b;
    }

.about-mvv-card h3 {
    color: #fff;
    font-size: 28px;
    font-family: 'Cormorant Garamond',serif;
    margin-bottom: 18px;
}

.about-mvv-card p {
    color: #d7e2d7;
    line-height: 32px;
    margin: 0;
    font-size: 16px;
}

.about-mvv-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

    .about-mvv-list li {
        color: #d7e2d7;
        margin-bottom: 12px;
        position: relative;
        padding-left: 22px;
        font-size: 16px;
    }

        .about-mvv-list li::before {
            content: "✓";
            position: absolute;
            left: 0;
            color: #d5b46b;
            font-weight: bold;
        }
/*=========================================
ABOUT COUNTER
==========================================*/

.about-counter-section {
    padding: 30px 0 80px;
}

.about-counter-wrapper {
    background: #ffffff;
    border-radius: 22px;
    box-shadow: 0 18px 45px rgba(0,0,0,.08);
    overflow: hidden;
}

.about-counter-item {
    padding: 45px 25px;
    border-right: 1px solid #ececec;
    transition: .35s;
}

    .about-counter-item:last-child {
        border-right: 0;
    }

    .about-counter-item:hover {
        background: #fafcf7;
    }

    .about-counter-item h2 {
        font-family: 'Cormorant Garamond',serif;
        font-size: 62px;
        font-weight: 700;
        color: #0b3b1f;
        margin-bottom: 12px;
    }

    .about-counter-item h6 {
        color: #b68b43;
        font-size: 18px;
        font-weight: 600;
        margin-bottom: 18px;
    }

    .about-counter-item p {
        color: #666;
        font-size: 15px;
        line-height: 28px;
        margin: 0;
    }

@media(max-width:991px) {

    .about-counter-item {
        border-right: 0;
        border-bottom: 1px solid #ececec;
    }

        .about-counter-item:last-child {
            border-bottom: 0;
        }
}
/*=========================================
WHY CHOOSE US
==========================================*/

.about-why-section {
    padding: 90px 0;
    background: #072314;
}

.about-why-wrapper {
    position: relative;
}

.about-why-image {
    width: 100%;
    max-width: 520px;
}

.about-why-tag {
    display: block;
    color: #c6a05a;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 18px;
}

.about-why-title {
    font-family: 'Cormorant Garamond',serif;
    color: #fff;
    font-size: 60px;
    line-height: 1.05;
    margin-bottom: 25px;
}

.about-why-text {
    color: #d9e5db;
    font-size: 18px;
    line-height: 34px;
    margin-bottom: 35px;
}

.about-why-feature {
    display: flex;
    gap: 18px;
    align-items: flex-start;
}

.about-why-icon {
    width: 70px;
    height: 70px;
    min-width: 70px;
    border-radius: 50%;
    background: rgba(198,160,90,.12);
    border: 1px solid rgba(198,160,90,.35);
    display: flex;
    align-items: center;
    justify-content: center;
}

    .about-why-icon i {
        font-size: 30px;
        color: #c6a05a;
    }

.about-why-feature h5 {
    color: #fff;
    font-size: 24px;
    font-family: 'Cormorant Garamond',serif;
    margin-bottom: 10px;
}

.about-why-feature p {
    color: #d9e5db;
    margin: 0;
    line-height: 30px;
}
/*=========================================
ABOUT GALLERY
==========================================*/

.about-gallery-section {
    padding: 75px 0 55px;
    background: #fff;
}

.about-gallery-tag {
    color: #4d4d4d;
    font-size: 20px;
    display: block;
    margin-bottom: 6px;
}

.about-gallery-title {
    font-family: 'Cormorant Garamond',serif;
    font-size: 58px;
    color: #17361d;
    line-height: 1.05;
    margin-bottom: 22px;
    font-weight: 700;
}

.about-gallery-text {
    color: #666;
    font-size: 17px;
    line-height: 31px;
    margin-bottom: 30px;
}

.about-gallery-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 15px 32px;
    background: #123d21;
    color: #fff;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
}

    .about-gallery-btn:hover {
        background: #1d5b33;
        color: #fff;
    }

.about-gallery-card {
    text-align: center;
}

    .about-gallery-card img {
        width: 100%;
        height: 235px;
        object-fit: cover;
        border-radius: 18px;
        transition: .35s;
    }

    .about-gallery-card:hover img {
        transform: translateY(-8px);
    }

    .about-gallery-card h6 {
        margin-top: 18px;
        font-size: 20px;
        color: #17361d;
        font-family: 'Cormorant Garamond',serif;
        font-weight: 700;
    }

/*=========================================
BUSINESS HERO
==========================================*/

.business-hero-section {
    background: #052613;
    padding: 70px 0 0;
}

.business-hero-wrapper {
    min-height: 560px;
    display: flex;
    align-items: center;
}

.business-breadcrumb {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 30px;
}

    .business-breadcrumb a {
        color: #fff;
        text-decoration: none;
        opacity: .8;
    }

    .business-breadcrumb span {
        color: #c9a35c;
    }

    .business-breadcrumb i {
        color: #c9a35c;
        font-size: 13px;
    }

.business-hero-title {
    font-family: 'Cormorant Garamond',serif;
    font-size: 76px;
    line-height: 1.05;
    color: #fff;
    font-weight: 700;
}

    .business-hero-title span {
        color: #d8b36a;
    }

.business-divider {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 28px 0;
}

    .business-divider span {
        width: 55px;
        height: 2px;
        background: rgba(255,255,255,.25);
    }

    .business-divider i {
        color: #d8b36a;
    }

.business-hero-text {
    color: #d8e4d9;
    font-size: 18px;
    line-height: 34px;
    max-width: 520px;
    margin-bottom: 35px;
}

.business-btns {
    display: flex;
    gap: 18px;
}

.business-btn-primary {
    background: #d8b36a;
    color: #062613;
    padding: 15px 34px;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
}

    .business-btn-primary:hover {
        color: #062613;
    }

.business-btn-outline {
    border: 1px solid rgba(216,179,106,.45);
    color: #fff;
    padding: 15px 34px;
    border-radius: 10px;
    text-decoration: none;
}

    .business-btn-outline:hover {
        background: #d8b36a;
        color: #062613;
    }

.business-hero-image {
    max-height: 600px;
}
/*=========================================
BUSINESS FEATURES
==========================================*/

.business-feature-section {
    padding: 90px 0;
    background: #fbfaf5;
}

.business-small-heading {
    color: #b78c43;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 1px;
}

.business-main-heading {
    font-family: 'Cormorant Garamond',serif;
    font-size: 56px;
    color: #17361d;
    margin-top: 12px;
    font-weight: 700;
}

.business-heading-divider {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 14px;
    margin-top: 18px;
}

    .business-heading-divider span {
        width: 60px;
        height: 2px;
        background: #d8d8d8;
    }

    .business-heading-divider i {
        color: #b78c43;
    }

.business-feature-card {
    background: #fff;
    border-radius: 18px;
    padding: 40px 30px;
    text-align: center;
    height: 100%;
    box-shadow: 0 10px 35px rgba(0,0,0,.08);
    transition: .35s;
}

    .business-feature-card:hover {
        transform: translateY(-10px);
    }

.business-feature-icon {
    width: 85px;
    height: 85px;
    margin: auto;
    border-radius: 50%;
    background: #eef6ee;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

    .business-feature-icon i {
        font-size: 38px;
        color: #1d5a34;
    }

.business-feature-card h4 {
    font-size: 28px;
    font-family: 'Cormorant Garamond',serif;
    color: #17361d;
    margin-bottom: 18px;
}

.business-feature-card p {
    color: #666;
    line-height: 30px;
    margin: 0;
}
/*=========================================
BUSINESS PROCESS
==========================================*/

.business-process-section {
    padding: 90px 0;
    background: #ffffff;
}

.business-process-tag {
    color: #b78c43;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 1px;
}

.business-process-title {
    font-family: 'Cormorant Garamond',serif;
    font-size: 56px;
    color: #17361d;
    margin: 15px 0;
    font-weight: 700;
}

.business-process-divider {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 14px;
}

    .business-process-divider span {
        width: 55px;
        height: 2px;
        background: #d7d7d7;
    }

    .business-process-divider i {
        color: #b78c43;
    }

.business-process-box {
    position: relative;
    background: #fff;
    border-radius: 20px;
    padding: 35px 20px;
    text-align: center;
    box-shadow: 0 12px 35px rgba(0,0,0,.08);
    transition: .35s;
}

    .business-process-box:hover {
        transform: translateY(-10px);
    }

.business-process-number {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #d8b36a;
    color: #fff;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.business-process-icon {
    width: 80px;
    height: 80px;
    margin: auto;
    border-radius: 50%;
    background: #eef6ef;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
}

    .business-process-icon i {
        font-size: 34px;
        color: #1b5d34;
    }

.business-process-box h5 {
    font-size: 22px;
    font-family: 'Cormorant Garamond',serif;
    color: #17361d;
    margin: 0;
}
/*=========================================
INCOME HERO
==========================================*/

.income-hero-section {
    background: #062514;
    padding: 70px 0;
}

.income-breadcrumb {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-bottom: 28px;
}

    .income-breadcrumb a {
        color: #fff;
        text-decoration: none;
    }

    .income-breadcrumb span {
        color: #d8b36a;
    }

    .income-breadcrumb i {
        color: #d8b36a;
    }

.income-hero-title {
    font-family: 'Cormorant Garamond',serif;
    font-size: 72px;
    color: #fff;
    line-height: 1.05;
    font-weight: 700;
}

    .income-hero-title span {
        display: block;
        color: #d8b36a;
    }

.income-divider {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 28px 0;
}

    .income-divider span {
        width: 55px;
        height: 2px;
        background: rgba(255,255,255,.2);
    }

    .income-divider i {
        color: #d8b36a;
    }

.income-hero-text {
    color: #d9e4da;
    font-size: 18px;
    line-height: 34px;
    margin-bottom: 35px;
}

.income-btn-group {
    display: flex;
    gap: 18px;
}

.income-btn-primary {
    background: #d8b36a;
    color: #062514;
    padding: 15px 35px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
}

    .income-btn-primary:hover {
        color: #062514;
    }

.income-btn-outline {
    border: 1px solid rgba(216,179,106,.45);
    color: #fff;
    padding: 15px 35px;
    border-radius: 8px;
    text-decoration: none;
}

    .income-btn-outline:hover {
        background: #d8b36a;
        color: #062514;
    }

.income-hero-image {
    max-height: 560px;
}
/*=========================================
INCOME FLOW
==========================================*/

.income-flow-section {
    padding: 90px 0;
    background: #ffffff;
}

.income-flow-tag {
    color: #b78c43;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 1px;
}

.income-flow-title {
    font-family: 'Cormorant Garamond',serif;
    font-size: 56px;
    color: #17361d;
    margin: 12px 0;
    font-weight: 700;
}

.income-flow-divider {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
}

    .income-flow-divider span {
        width: 60px;
        height: 2px;
        background: #d9d9d9;
    }

    .income-flow-divider i {
        color: #b78c43;
    }

.income-flow-box {
    background: #fff;
    border-radius: 18px;
    text-align: center;
    padding: 30px 20px;
    height: 100%;
    box-shadow: 0 12px 35px rgba(0,0,0,.08);
    transition: .35s;
}

    .income-flow-box:hover {
        transform: translateY(-8px);
    }

.income-flow-active {
    background: #123d21;
}

    .income-flow-active h5,
    .income-flow-active p {
        color: #fff;
    }

    .income-flow-active .income-flow-icon {
        background: #d8b36a;
    }

        .income-flow-active .income-flow-icon i {
            color: #123d21;
        }

.income-flow-icon {
    width: 80px;
    height: 80px;
    margin: auto;
    border-radius: 50%;
    background: #eef7ef;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 22px;
}

    .income-flow-icon i {
        font-size: 34px;
        color: #1c5d35;
    }

.income-flow-box h5 {
    font-family: 'Cormorant Garamond',serif;
    font-size: 26px;
    color: #17361d;
    margin-bottom: 8px;
}

.income-flow-box p {
    color: #666;
    margin: 0;
}

.income-arrow {
    justify-content: center;
    align-items: center;
    color: #b78c43;
    font-size: 28px;
}
/*=========================================
INCOME CALCULATOR
==========================================*/

.income-calculator-section {
    padding: 90px 0;
    background: #f8f8f2;
}

.income-calculator-tag {
    color: #b68c45;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 1px;
}

.income-calculator-title {
    font-family: 'Cormorant Garamond',serif;
    font-size: 58px;
    color: #17361d;
    margin: 15px 0;
}

.income-calculator-divider {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 22px 0;
}

    .income-calculator-divider span {
        width: 55px;
        height: 2px;
        background: #d8d8d8;
    }

    .income-calculator-divider i {
        color: #b68c45;
    }

.income-calculator-text {
    color: #666;
    line-height: 32px;
    font-size: 17px;
}

.income-calculator-card {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,.08);
}

    .income-calculator-card label {
        display: block;
        margin-bottom: 8px;
        color: #17361d;
        font-weight: 600;
    }

.income-input {
    height: 55px;
    border-radius: 10px;
}

.income-result {
    height: 55px;
    border-radius: 10px;
    background: #eef6ef;
    font-weight: 700;
    color: #1b5d34;
}

.income-calculate-btn {
    margin-top: 30px;
    width: 100%;
    height: 58px;
    border: none;
    border-radius: 10px;
    background: #17361d;
    color: #fff;
    font-size: 17px;
    font-weight: 600;
    transition: .3s;
}

    .income-calculate-btn:hover {
        background: #24552f;
    }
/*=========================================
REWARDS HERO
==========================================*/

.reward-hero-section {
    background: #062614;
    padding: 70px 0;
}

.reward-breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 28px;
}

    .reward-breadcrumb a {
        color: #fff;
        text-decoration: none;
    }

    .reward-breadcrumb span {
        color: #d8b36a;
    }

    .reward-breadcrumb i {
        color: #d8b36a;
    }

.reward-hero-title {
    font-family: 'Cormorant Garamond',serif;
    font-size: 74px;
    color: #fff;
    line-height: 1.05;
    font-weight: 700;
}

    .reward-hero-title span {
        display: block;
        color: #d8b36a;
    }

.reward-divider {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 25px 0;
}

    .reward-divider span {
        width: 60px;
        height: 2px;
        background: rgba(255,255,255,.25);
    }

    .reward-divider i {
        color: #d8b36a;
    }

.reward-hero-text {
    color: #d8e3d8;
    line-height: 34px;
    font-size: 18px;
    margin-bottom: 35px;
}

.reward-btn-group {
    display: flex;
    gap: 18px;
}

.reward-btn-primary {
    background: #d8b36a;
    color: #062614;
    padding: 15px 35px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
}

.reward-btn-outline {
    border: 1px solid rgba(216,179,106,.45);
    color: #fff;
    padding: 15px 35px;
    border-radius: 8px;
    text-decoration: none;
}

    .reward-btn-outline:hover {
        background: #d8b36a;
        color: #062614;
    }

.reward-hero-image {
    max-height: 560px;
}