:root {
    --green: #14532d;
    --green2: #1f7a45;
    --light: #f3f8f2;
    --gold: #d7a928;
    --dark: #102318;
    --muted: #66756b;
}
body {
    font-family: Inter, Arial, sans-serif;
    color: var(--dark);
    background: #fff;
}
.navbar {
    background: rgba(10, 45, 25, 0.97) !important;
}
.navbar-brand {
    font-weight: 800;
    letter-spacing: 0.5px;
}
.nav-link {
    color: #fff !important;
    font-weight: 600;
    margin-left: 12px;
}
.nav-link:hover {
    color: #d8efc9 !important;
}
.btn-brand {
    background: var(--green2);
    color: #fff;
    border: 0;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 700;
}
.btn-brand:hover {
    background: #155d34;
    color: #fff;
}
.btn-outline-brand {
    border: 1px solid var(--green2);
    color: var(--green2);
    padding: 11px 22px;
    border-radius: 8px;
    font-weight: 700;
}
.hero {
    min-height: 680px;
    background:
        linear-gradient(90deg, rgba(6, 35, 18, 0.9), rgba(6, 35, 18, 0.45), rgba(6, 35, 18, 0.15)),
        url("https://images.unsplash.com/photo-1596040033229-a9821ebd058d?auto=format&fit=crop&w=1800&q=85")
            center/cover;
    display: flex;
    align-items: center;
}
.hero h1 {
    font-size: clamp(2.6rem, 6vw, 5rem);
    font-weight: 900;
    color: #fff;
    line-height: 1.03;
}
.hero p {
    color: #e7f2e9;
    font-size: 1.15rem;
    max-width: 650px;
}
.badge-soft {
    background: #e4f1e5;
    color: var(--green);
    padding: 8px 13px;
    border-radius: 30px;
    font-weight: 700;
}
.section {
    padding: 85px 0;
}
.section-title {
    font-weight: 900;
    font-size: 2.3rem;
}
.section-sub {
    color: var(--muted);
    max-width: 700px;
}
.product-card {
    border: 0;
    border-radius: 18px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 10px 30px rgba(20, 83, 45, 0.09);
    height: 100%;
    transition: 0.25s;
}
.product-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 18px 40px rgba(20, 83, 45, 0.15);
}
.product-card img {
    height: 220px;
    object-fit: cover;
}
.product-card .body {
    padding: 22px;
}
.product-card h5 {
    font-weight: 800;
}
.icon-box {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: #e4f1e5;
    color: var(--green);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 25px;
}
.feature {
    background: var(--light);
    border-radius: 18px;
    padding: 28px;
    height: 100%;
}
.cta {
    background: linear-gradient(135deg, #14532d, #1f7a45);
    border-radius: 28px;
    padding: 55px;
    color: #fff;
}
footer {
    background: #0b2114;
    color: #c9d8cd;
}
.footer-title {
    color: #fff;
    font-weight: 800;
}
.footer-link {
    color: #c9d8cd;
    text-decoration: none;
    display: block;
    margin: 8px 0;
}
.footer-link:hover {
    color: #fff;
}
.page-hero {
    padding: 50px 0 80px;
    background:
        linear-gradient(90deg, rgba(8, 48, 25, 0.92), rgba(8, 48, 25, 0.55)),
        url("https://images.unsplash.com/photo-1596040033229-a9821ebd058d?auto=format&fit=crop&w=1800&q=85")
            center/cover;
    color: #fff;
}
.form-control,
.form-select {
    padding: 13px;
    border-radius: 9px;
    border: 1px solid #d7e0d9;
}
.form-control:focus,
.form-select:focus {
    border-color: #5a9b70;
    box-shadow: 0 0 0 0.2rem rgba(31, 122, 69, 0.12);
}
.accordion-button:not(.collapsed) {
    background: #eaf5ec;
    color: var(--green);
    box-shadow: none;
}
.accordion-button {
    font-weight: 700;
}
.stats {
    background: #f6faf6;
}
.stat strong {
    font-size: 2.2rem;
    color: var(--green);
    display: block;
}
@media (max-width: 991px) {
    .hero {
        min-height: 620px;
    }
    .navbar-collapse {
        padding: 15px 0;
    }
    .section {
        padding: 65px 0;
    }
}



/* start counter section */
/* =========================
   PREMIUM STATS SECTION
========================= */

.stats {
    background: #f5faf7;
    padding: 70px 0;
}

.stat {
    position: relative;
    height: 100%;
    padding: 32px 20px;
    background: #ffffff;
    border: 1px solid rgba(27, 94, 57, 0.08);
    border-radius: 22px;

    box-shadow:
        0 8px 25px rgba(20, 75, 45, 0.07),
        0 2px 8px rgba(20, 75, 45, 0.04);

    transition: all 0.35s ease;
    overflow: hidden;
}

/* Top green line */

.stat::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: 0;
    height: 4px;
    background: #198754;
    transform: translateX(-50%);
    transition: width 0.35s ease;
}

/* Hover */

.stat:hover {
    transform: translateY(-8px);
    border-color: rgba(25, 135, 84, 0.18);

    box-shadow:
        0 18px 45px rgba(20, 75, 45, 0.13),
        0 5px 15px rgba(20, 75, 45, 0.07);
}

.stat:hover::before {
    width: 70%;
}


/* Icon */

.stat-icon {
    width: 58px;
    height: 58px;
    margin: 0 auto 18px;

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

    background: #e8f5ed;
    color: #198754;

    border-radius: 16px;
    font-size: 25px;

    transition: all 0.35s ease;
}

.stat:hover .stat-icon {
    background: #198754;
    color: #ffffff;
    transform: rotate(-5deg) scale(1.08);
}


/* Number */

.stat strong {
    display: block;
    font-size: 32px;
    line-height: 1.2;
    font-weight: 800;
    color: #174b32;
    margin-bottom: 7px;
}


/* Text */

.stat span {
    display: block;
    color: #68786f;
    font-size: 14px;
    font-weight: 600;
}


/* Mobile */

@media (max-width: 575px) {

    .stats {
        padding: 50px 0;
    }

    .stat {
        padding: 25px 12px;
        border-radius: 18px;
    }

    .stat strong {
        font-size: 27px;
    }

    .stat span {
        font-size: 12px;
    }

    .stat-icon {
        width: 50px;
        height: 50px;
        font-size: 21px;
    }
}
/* end counter section */



/* start why choose us section */
/* WHY CHOOSE US */
.why-section {
    position: relative;
    background: #f8faf9;
    overflow: hidden;
}

.why-section::before {
    content: "";
    position: absolute;
    width: 350px;
    height: 350px;
    background: rgba(40, 120, 70, 0.05);
    border-radius: 50%;
    top: -150px;
    left: -150px;
}

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

.badge-soft {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 15px;
    border-radius: 30px;
    background: rgba(40, 120, 70, 0.08);
    color: #287846;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
}

.badge-soft i {
    font-size: 13px;
}

.section-title {
    font-size: 42px;
    line-height: 1.15;
    font-weight: 700;
    color: #17251c;
}

.section-title span {
    color: #287846;
}

.why-text {
    font-size: 16px;
    line-height: 1.8;
    margin-top: 20px;
    max-width: 500px;
}


/* HIGHLIGHT BOX */
.why-highlight {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 30px;
    padding: 17px 20px;
    background: #ffffff;
    border: 1px solid #e6eee8;
    border-radius: 14px;
    max-width: 370px;
    box-shadow: 0 10px 30px rgba(20, 50, 30, 0.06);
}

.why-highlight > i {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: #287846;
    color: #fff;
    font-size: 20px;
}

.why-highlight strong {
    display: block;
    color: #17251c;
    font-size: 15px;
}

.why-highlight small {
    display: block;
    margin-top: 3px;
    color: #777;
    font-size: 12px;
}


/* FEATURE CARD */
.feature-card {
    position: relative;
    height: 100%;
    padding: 28px;
    background: #ffffff;
    border: 1px solid #e7eee9;
    border-radius: 18px;
    transition: all 0.3s ease;
    overflow: hidden;
}

.feature-card::after {
    content: "";
    position: absolute;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: rgba(40, 120, 70, 0.05);
    right: -35px;
    bottom: -35px;
    transition: 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-7px);
    border-color: rgba(40, 120, 70, 0.25);
    box-shadow: 0 18px 40px rgba(20, 60, 35, 0.10);
}

.feature-card:hover::after {
    transform: scale(1.5);
}


/* ICON */
.icon-box {
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: #287846;
    color: #ffffff;
    font-size: 21px;
    box-shadow: 0 8px 18px rgba(40, 120, 70, 0.20);
}

.feature-card h5 {
    margin-top: 20px;
    margin-bottom: 10px;
    font-size: 18px;
    font-weight: 700;
    color: #17251c;
}

.feature-card p {
    margin: 0;
    color: #727a75;
    font-size: 14px;
    line-height: 1.7;
    padding-right: 10px;
}

.feature-arrow {
    margin-top: 20px;
    color: #287846;
    font-size: 16px;
    transition: 0.3s ease;
}

.feature-card:hover .feature-arrow {
    transform: translateX(6px);
}


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

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

    .feature-card {
        padding: 23px;
    }

    .why-highlight {
        max-width: 100%;
    }
} 
/* end why choose us section */


/* start faq section */
.faq-section {
    background: #f7faf8;
    position: relative;
    overflow: hidden;
}

.faq-section::before {
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    background: rgba(40, 120, 70, 0.045);
    border-radius: 50%;
    top: -180px;
    right: -150px;
}

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

.faq-heading p {
    max-width: 600px;
    margin: 15px auto 0;
    font-size: 15px;
}

.faq-heading .section-title span {
    color: #287846;
}


/* FAQ WRAPPER */

.faq-wrapper {
    max-width: 900px;
}


/* FAQ ITEM */

.faq-item {
    background: #ffffff;
    border: 1px solid #e5ece7;
    border-radius: 16px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(40, 120, 70, 0.25);
    box-shadow: 0 12px 30px rgba(30, 70, 45, 0.07);
}


/* QUESTION */

.faq-question {
    width: 100%;
    border: 0;
    outline: none;
    background: transparent;
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 21px 24px;
    text-align: left;
    cursor: pointer;
}


/* NUMBER */

.faq-number {
    min-width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 11px;
    background: #edf6f0;
    color: #287846;
    font-size: 12px;
    font-weight: 700;
}


/* TITLE */

.faq-title {
    flex: 1;
    font-size: 16px;
    font-weight: 600;
    color: #17251c;
}


/* ICON */

.faq-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #f1f6f2;
    color: #287846;
    transition: all 0.3s ease;
}

.faq-question:not(.collapsed) .faq-icon {
    background: #287846;
    color: #ffffff;
    transform: rotate(45deg);
}


/* ANSWER */

.faq-answer {
    padding: 0 80px 23px 84px;
    color: #707872;
    font-size: 14px;
    line-height: 1.8;
}

.faq-answer strong {
    color: #287846;
}


/* OPEN ITEM */

.faq-item:has(.faq-question:not(.collapsed)) {
    border-color: rgba(40, 120, 70, 0.25);
    box-shadow: 0 12px 30px rgba(30, 70, 45, 0.06);
}


/* MOBILE */

@media (max-width: 575px) {

    .faq-question {
        padding: 17px;
        gap: 12px;
    }

    .faq-number {
        min-width: 36px;
        height: 36px;
        font-size: 11px;
    }

    .faq-title {
        font-size: 14px;
        line-height: 1.4;
    }

    .faq-icon {
        width: 32px;
        height: 32px;
        min-width: 32px;
    }

    .faq-answer {
        padding: 0 20px 20px 65px;
        font-size: 13px;
    }
} 
/* end faq section */



/* start before footer section */
.cta-section {
    padding-top: 40px;
    padding-bottom: 80px;
}

.cta-box {
    position: relative;
    overflow: hidden;
    padding: 70px 30px;
    border-radius: 28px;
    background: linear-gradient(135deg, #1f633b, #287846, #174d2e);
    box-shadow: 0 25px 60px rgba(25, 80, 45, 0.18);
}

.cta-content {
    position: relative;
    z-index: 5;
    max-width: 760px;
    margin: auto;
}

.cta-icon {
    width: 62px;
    height: 62px;
    margin: 0 auto 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.22);
    color: #ffffff;
    font-size: 25px;
}

.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 7px 14px;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.10);
    color: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.15);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.2px;
}

.cta-badge i {
    font-size: 12px;
}

.cta-box h2 {
    margin-top: 22px;
    margin-bottom: 15px;
    color: #ffffff;
    font-size: 42px;
    line-height: 1.2;
    font-weight: 700;
}

.cta-box h2 span {
    color: #dcefdc;
}

.cta-box p {
    max-width: 650px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.78);
    font-size: 15px;
    line-height: 1.8;
}


/* BUTTONS */

.cta-buttons {
    margin-top: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 13px 24px;
    background: #ffffff;
    color: #1f633b;
    border-radius: 9px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.cta-btn i {
    transition: transform 0.3s ease;
}

.cta-btn:hover {
    color: #1f633b;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.18);
}

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

.cta-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    padding-bottom: 3px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
}

.cta-link:hover {
    color: #ffffff;
    border-color: #ffffff;
}


/* DECORATIVE CIRCLES */

.cta-decoration {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.cta-d1 {
    width: 280px;
    height: 280px;
    top: -150px;
    left: -80px;
}

.cta-d2 {
    width: 360px;
    height: 360px;
    right: -170px;
    bottom: -220px;
}

.cta-dots {
    position: absolute;
    width: 100px;
    height: 70px;
    right: 45px;
    top: 35px;
    opacity: 0.2;
    background-image: radial-gradient(
        rgba(255,255,255,0.8) 1px,
        transparent 1px
    );
    background-size: 12px 12px;
}


/* MOBILE */

@media (max-width: 575px) {

    .cta-box {
        padding: 50px 20px;
        border-radius: 22px;
    }

    .cta-box h2 {
        font-size: 29px;
    }

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

    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .cta-btn {
        width: 100%;
        justify-content: center;
    }

    .cta-link {
        margin-top: 3px;
    }
}
/* end before footer section */


/* start footer section */
.footer-section {
    position: relative;
    background: #12251a;
    color: rgba(255, 255, 255, 0.72);
    padding: 50px 0 0;
    overflow: hidden;
}

.footer-section::before {
    content: "";
    position: absolute;
    width: 450px;
    height: 450px;
    border-radius: 50%;
    background: rgba(45, 130, 75, 0.08);
    top: -250px;
    right: -150px;
}

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


/* BRAND */

.footer-brand {
    display: flex;
    align-items: center;
    gap: 13px;
    margin-bottom: 20px;
}

.footer-logo-icon {
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: #287846;
    color: #fff;
    font-size: 19px;
}

.footer-brand h4 {
    margin: 0;
    color: #ffffff;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.footer-brand h4 span {
    color: #78b98c;
}

.footer-about {
    max-width: 400px;
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 22px;
}


/* GST */

.gst-box {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 10px;
    background: rgba(255,255,255,0.04);
}

.gst-box > i {
    color: #70b983;
    font-size: 18px;
}

.gst-box small {
    display: block;
    font-size: 10px;
    color: rgba(255,255,255,0.5);
    margin-bottom: 2px;
}

.gst-box strong {
    color: #ffffff;
    font-size: 12px;
}


/* HEADINGS */

.footer-heading {
    color: #ffffff;
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 22px;
    position: relative;
    padding-bottom: 10px;
}

.footer-heading::after {
    content: "";
    position: absolute;
    width: 32px;
    height: 2px;
    background: #4d9965;
    left: 0;
    bottom: 0;
}


/* LINKS */

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

.footer-links li {
    margin-bottom: 13px;
}

.footer-links a {
    color: rgba(255,255,255,0.65);
    text-decoration: none;
    font-size: 13px;
    transition: 0.3s ease;
}

.footer-links a i {
    color: #70b983;
    margin-right: 7px;
    transition: 0.3s ease;
}

.footer-links a:hover {
    color: #ffffff;
}

.footer-links a:hover i {
    margin-right: 11px;
}


/* CONTACT */

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
}

.contact-item > span {
    min-width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(70, 150, 90, 0.12);
    color: #70b983;
    border-radius: 8px;
}

.contact-item p,
.contact-item a {
    margin: 0;
    padding-top: 4px;
    color: rgba(255,255,255,0.65);
    text-decoration: none;
    font-size: 12px;
    line-height: 1.6;
}

.contact-item a:hover {
    color: #ffffff;
}


/* NEWSLETTER */

.newsletter-text {
    font-size: 12px;
    line-height: 1.7;
    margin-bottom: 16px;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.newsletter-input {
    position: relative;
}

.newsletter-input i {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: #70b983;
}

.newsletter-input input {
    width: 100%;
    height: 46px;
    padding: 0 15px 0 40px;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 9px;
    outline: none;
    background: rgba(255,255,255,0.06);
    color: #ffffff;
    font-size: 12px;
}

.newsletter-input input::placeholder {
    color: rgba(255,255,255,0.4);
}

.newsletter-input input:focus {
    border-color: #4d9965;
}

.newsletter-form button {
    height: 44px;
    border: 0;
    border-radius: 9px;
    background: #287846;
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s ease;
}

.newsletter-form button i {
    margin-left: 8px;
    transition: 0.3s ease;
}

.newsletter-form button:hover {
    background: #349054;
    transform: translateY(-2px);
}

.newsletter-form button:hover i {
    margin-left: 13px;
}


/* BOTTOM */

.footer-bottom {
    margin-top: 55px;
    padding: 20px 0;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.copyright {
    color: rgba(255,255,255,0.45);
    font-size: 11px;
}


/* SOCIAL */

.footer-social {
    display: flex;
    justify-content: flex-start;
    gap: 8px;
}

.footer-social a {
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: rgba(255,255,255,0.06);
    color: rgba(255,255,255,0.65);
    text-decoration: none;
    font-size: 13px;
    transition: 0.3s ease;
}

.footer-social a:hover {
    background: #287846;
    color: #ffffff;
    transform: translateY(-3px);
}


/* MOBILE */

@media (max-width: 767px) {

    .footer-section {
        padding-top: 50px;
    }

    .footer-social {
        justify-content: flex-start;
    }

    .footer-bottom {
        margin-top: 35px;
    }
}
/* end footer section */


/* start header section */
/* =========================================
   TOP HEADER
========================================= */

.top-header {
    background: #000;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.75);
    position: relative;
    z-index: 1031;
}

.top-header-inner {
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.top-contact {
    display: flex;
    align-items: center;
    gap: 25px;
}

.top-contact a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.72);
    text-decoration: none;
    font-size: 11px;
    transition: 0.3s ease;
}

.top-contact a i {
    color: #8bc69b;
    font-size: 12px;
}

.top-contact a:hover {
    color: #ffffff;
}


/* =========================================
   SOCIAL MEDIA
========================================= */

.top-social {
    display: flex;
    align-items: center;
    gap: 7px;
}

.top-social span {
    margin-right: 5px;
    font-size: 10px;
    color: rgba(255,255,255,0.5);
}

.top-social a {
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    color: #ffffff;
    font-size: 11px;
    transition: all 0.3s ease;
}

/* Actual Social Colors */

.social-facebook {
    background: #1877F2;
}

.social-instagram {
    background: linear-gradient(
        45deg,
        #f09433,
        #e6683c,
        #dc2743,
        #cc2366,
        #bc1888
    );
}

.social-linkedin {
    background: #0A66C2;
}

.social-whatsapp {
    background: #25D366;
}

.top-social a:hover {
    transform: translateY(-2px);
    color: #ffffff;
    box-shadow: 0 5px 12px rgba(0,0,0,0.2);
}


/* =========================================
   MAIN NAVBAR
========================================= */

.custom-navbar {
    position: sticky;
    top: 0;
    z-index: 1030;

    padding: 0px 0;

    background: rgba(20, 53, 33, 0.97);

    border-bottom: 1px solid rgba(255,255,255,0.08);

    box-shadow: 0 5px 20px rgba(0,0,0,0.08);

    transition: all 0.3s ease;
}


/* =========================================
   BRAND
========================================= */

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

.brand-icon {
    width: 42px;
    height: 42px;

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

    border-radius: 11px;

    background: #287846;
    color: #ffffff;

    font-size: 18px;

    box-shadow: 0 6px 18px rgba(40,120,70,0.28);
}

.brand-text {
    color: #ffffff;
    font-size: 18px;
    font-weight: 800;
    letter-spacing: 0.6px;
}

.brand-text span {
    color: #bfe3a9;
    font-weight: 600;
}


/* =========================================
   NAV LINKS
========================================= */

.custom-navbar .nav-item {
    margin-left: 5px;
}

.custom-navbar .nav-link {
    position: relative;

    padding: 9px 15px !important;

    color: rgba(255,255,255,0.72) !important;

    font-size: 13px;
    font-weight: 500;

    transition: all 0.3s ease;
}

.custom-navbar .nav-link::after {
    content: "";

    position: absolute;

    width: 0;
    height: 2px;

    left: 50%;
    bottom: 2px;

    background: #8bc69b;

    border-radius: 5px;

    transform: translateX(-50%);

    transition: width 0.3s ease;
}

.custom-navbar .nav-link:hover {
    color: #ffffff !important;
}

.custom-navbar .nav-link:hover::after,
.custom-navbar .nav-link.active::after {
    width: 22px;
}

.custom-navbar .nav-link.active {
    color: #ffffff !important;
}


/* =========================================
   GET QUOTE BUTTON
========================================= */

.quote-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    padding: 11px 21px;

    border-radius: 30px;

    background: #ffffff;
    color: #205d37;

    text-decoration: none;

    font-size: 13px;
    font-weight: 700;

    box-shadow: 0 7px 20px rgba(0,0,0,0.12);

    transition: all 0.3s ease;
}

.quote-btn i {
    transition: transform 0.3s ease;
}

.quote-btn:hover {
    color: #205d37;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.18);
}

.quote-btn:hover i {
    transform: translateX(5px);
}


/* =========================================
   MOBILE TOGGLER
========================================= */

.custom-toggler {
    width: 42px;
    height: 42px;

    padding: 0;

    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 10px;

    color: #ffffff;

    background: rgba(255,255,255,0.06);
}

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

.custom-toggler i {
    font-size: 18px;
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 991px) {

    .top-header-inner {
        min-height: 38px;
    }

    .top-contact {
        gap: 15px;
    }

    .top-contact a {
        font-size: 10px;
    }

    .top-social span {
        display: none;
    }

    .custom-navbar {
        padding: 10px 0;
    }

    .navbar-collapse {
        margin-top: 14px;
        padding: 12px;

        background: #10251a;

        border: 1px solid rgba(255,255,255,0.08);
        border-radius: 14px;
    }

    .custom-navbar .nav-item {
        margin-left: 0;
    }

    .custom-navbar .nav-link {
        padding: 11px 13px !important;
    }

    .custom-navbar .nav-link::after {
        display: none;
    }

    .quote-btn {
        width: 100%;
    }
}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 575px) {

    .top-header-inner {
        justify-content: center;
    }

    .top-contact {
        gap: 12px;
    }

    .top-contact a {
        font-size: 9px;
    }

    .top-contact a i {
        font-size: 10px;
    }

    .top-social {
        display: none;
    }

    .brand-text {
        font-size: 15px;
    }

    .brand-icon {
        width: 38px;
        height: 38px;
        font-size: 16px;
    }
}
/* end header section */

/* start about page section */
.about-intro {
    position: relative;
    overflow: hidden;
    background: #ffffff;
}


/* =========================================
   IMAGE
========================================= */

.about-image-wrap {
    position: relative;
    padding: 15px;
}

.about-main-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 24px;
    display: block;
    position: relative;
    z-index: 2;
    box-shadow: 0 25px 55px rgba(20, 60, 35, 0.14);
}


/* Decorative Border */

.about-image-wrap::before {
    content: "";
    position: absolute;
    width: 90%;
    height: 90%;
    left: 0;
    bottom: 0;
    border: 2px solid rgba(40, 120, 70, 0.14);
    border-radius: 25px;
    z-index: 1;
}


/* Decorative Circle */

.about-circle {
    position: absolute;
    width: 110px;
    height: 110px;
    background: rgba(40, 120, 70, 0.08);
    border-radius: 50%;
    right: -20px;
    top: -20px;
    z-index: 0;
}


/* =========================================
   FLOATING CARD
========================================= */

.about-floating-card {
    position: absolute;
    left: -5px;
    bottom: 45px;
    z-index: 5;

    display: flex;
    align-items: center;
    gap: 12px;

    padding: 14px 18px;

    background: #ffffff;
    border: 1px solid #e5eee8;
    border-radius: 14px;

    box-shadow: 0 15px 35px rgba(20, 60, 35, 0.13);
}

.floating-icon {
    width: 45px;
    height: 45px;

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

    border-radius: 11px;

    background: #287846;
    color: #ffffff;

    font-size: 18px;
}

.about-floating-card strong {
    display: block;
    color: #17251c;
    font-size: 13px;
}

.about-floating-card span {
    display: block;
    color: #7a837d;
    font-size: 10px;
    margin-top: 2px;
}


/* =========================================
   CONTENT
========================================= */

.about-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.about-badge i {
    font-size: 12px;
}

.about-intro .section-title {
    font-size: 42px;
    font-weight: 700;
    color: #17251c;
}

.about-intro .section-title span {
    color: #287846;
}

.about-lead {
    color: #287846;
    font-size: 18px;
    line-height: 1.6;
    font-weight: 600;
    margin-bottom: 18px;
}

.about-intro p.text-secondary {
    font-size: 14px;
    line-height: 1.8;
}


/* =========================================
   INFO CARDS
========================================= */

.about-info-card {
    height: 100%;

    display: flex;
    align-items: center;
    gap: 13px;

    padding: 16px;

    background: #f7faf8;

    border: 1px solid #e5eee8;
    border-radius: 13px;

    transition: all 0.3s ease;
}

.about-info-card:hover {
    transform: translateY(-4px);
    background: #ffffff;
    border-color: rgba(40, 120, 70, 0.25);
    box-shadow: 0 10px 25px rgba(20, 60, 35, 0.07);
}

.info-icon {
    width: 42px;
    height: 42px;

    min-width: 42px;

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

    border-radius: 10px;

    background: #e9f4ec;
    color: #287846;

    font-size: 16px;
}

.about-info-card small {
    display: block;
    color: #7a837d;
    font-size: 10px;
    margin-bottom: 3px;
}

.about-info-card strong {
    display: block;
    color: #17251c;
    font-size: 13px;
}


/* =========================================
   HIGHLIGHT
========================================= */

.about-highlight {
    display: flex;
    align-items: flex-start;
    gap: 12px;

    margin-top: 22px;
    padding: 15px 18px;

    background: rgba(40, 120, 70, 0.06);

    border-left: 3px solid #287846;
    border-radius: 8px;
}

.about-highlight > i {
    color: #287846;
    font-size: 18px;
    margin-top: 2px;
}

.about-highlight strong {
    display: block;
    color: #245b37;
    font-size: 13px;
}

.about-highlight small {
    display: block;
    color: #707872;
    font-size: 11px;
    line-height: 1.5;
    margin-top: 3px;
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 991px) {

    .about-main-image {
        height: 430px;
    }

    .about-intro .section-title {
        font-size: 36px;
    }

}

@media (max-width: 575px) {

    .about-image-wrap {
        padding: 8px;
    }

    .about-main-image {
        height: 350px;
        border-radius: 18px;
    }

    .about-floating-card {
        left: 0;
        bottom: 25px;
        padding: 11px 13px;
    }

    .floating-icon {
        width: 38px;
        height: 38px;
    }

    .about-intro .section-title {
        font-size: 30px;
    }

    .about-lead {
        font-size: 16px;
    }

}
/* end about page section */

/* start misssion vision section */
.values-section {
    background: #f7faf8;
    position: relative;
    overflow: hidden;
}

.values-section::before {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: rgba(40, 120, 70, 0.045);
    left: -220px;
    bottom: -220px;
}

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


/* HEADING */

.values-heading {
    max-width: 650px;
    margin: 0 auto;
}

.values-heading .badge-soft {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.values-heading .section-title span {
    color: #287846;
}

.values-heading p {
    margin-top: 12px;
    font-size: 14px;
}


/* CARD */

.value-card {
    position: relative;
    height: 100%;
    padding: 30px;

    background: #ffffff;

    border: 1px solid #e4ece7;
    border-radius: 20px;

    box-shadow: 0 8px 25px rgba(20, 60, 35, 0.04);

    transition: all 0.35s ease;

    overflow: hidden;
}

.value-card::after {
    content: "";
    position: absolute;

    width: 130px;
    height: 130px;

    right: -65px;
    bottom: -65px;

    border-radius: 50%;

    background: rgba(40, 120, 70, 0.05);

    transition: all 0.35s ease;
}

.value-card:hover {
    transform: translateY(-8px);

    border-color: rgba(40, 120, 70, 0.25);

    box-shadow: 0 20px 45px rgba(20, 60, 35, 0.10);
}

.value-card:hover::after {
    transform: scale(1.5);
}


/* FEATURED */

.value-card.featured {
    border-color: rgba(40, 120, 70, 0.25);
    box-shadow: 0 15px 40px rgba(40, 120, 70, 0.08);
}


/* TOP */

.value-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 25px;
}

.value-number {
    color: #a7b2aa;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
}

.value-icon {
    width: 55px;
    height: 55px;

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

    border-radius: 15px;

    background: #eaf5ed;
    color: #287846;

    font-size: 21px;

    transition: all 0.3s ease;
}

.value-card:hover .value-icon {
    background: #287846;
    color: #ffffff;

    transform: rotate(-5deg);
}


/* CONTENT */

.value-card h4 {
    color: #17251c;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}

.value-card p {
    color: #707872;
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 22px;
    max-width: 330px;
}


/* LINE */

.value-line {
    width: 40px;
    height: 2px;
    background: #287846;
    margin-bottom: 15px;
    transition: width 0.3s ease;
}

.value-card:hover .value-line {
    width: 65px;
}


/* LABEL */

.value-label {
    position: relative;
    z-index: 2;

    display: inline-flex;
    align-items: center;
    gap: 7px;

    color: #287846;

    font-size: 11px;
    font-weight: 700;
}

.value-label i {
    font-size: 13px;
}


/* MOBILE */

@media (max-width: 767px) {

    .value-card {
        padding: 25px;
    }

    .value-card h4 {
        font-size: 18px;
    }

    .value-card p {
        font-size: 13px;
    }

}
/* end mission vision section */


/* start products section */
.products-section {
    background: #f8faf8;
    position: relative;
    overflow: hidden;
}

.products-section::before {
    content: "";
    position: absolute;
    width: 450px;
    height: 450px;
    border-radius: 50%;
    background: rgba(40, 120, 70, 0.04);
    top: -250px;
    right: -200px;
}

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


/* HEADING */

.products-heading {
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

.products-heading .badge-soft {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.products-heading .section-title span {
    color: #287846;
}

.section-sub {
    max-width: 650px;
    color: #707872;
    font-size: 14px;
    line-height: 1.8;
    margin-top: 12px;
}


/* PRODUCT CARD */

.product-card {
    height: 100%;
    background: #ffffff;
    border: 1px solid #e4ece7;
    border-radius: 20px;
    overflow: hidden;

    box-shadow: 0 8px 25px rgba(20, 60, 35, 0.04);

    transition: all 0.35s ease;
}

.product-card:hover {
    transform: translateY(-8px);
    border-color: rgba(40, 120, 70, 0.25);
    box-shadow: 0 20px 45px rgba(20, 60, 35, 0.11);
}


/* IMAGE */

.product-image {
    height: 245px;
    position: relative;
    overflow: hidden;
    background: #edf3ee;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;

    transition: transform 0.6s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.08);
}


/* DARK OVERLAY */

.product-image::after {
    content: "";
    position: absolute;
    inset: 0;

    background: linear-gradient(
        to top,
        rgba(0,0,0,0.38),
        transparent 55%
    );

    pointer-events: none;
}


/* NUMBER */

.product-number {
    position: absolute;
    top: 15px;
    left: 15px;
    z-index: 3;

    width: 36px;
    height: 36px;

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

    border-radius: 50%;

    background: rgba(255,255,255,0.92);
    color: #287846;

    font-size: 11px;
    font-weight: 800;

    box-shadow: 0 5px 15px rgba(0,0,0,0.12);
}


/* PRODUCT TAG */

.product-tag {
    position: absolute;
    bottom: 15px;
    left: 15px;
    z-index: 3;

    display: inline-flex;
    align-items: center;
    gap: 7px;

    padding: 7px 12px;

    background: rgba(255,255,255,0.95);
    color: #205d37;

    border-radius: 30px;

    font-size: 11px;
    font-weight: 700;

    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.product-tag i {
    font-size: 10px;
}


/* BODY */

.product-body {
    padding: 24px;
}

.product-body h5 {
    color: #17251c;
    font-size: 19px;
    font-weight: 700;
    margin-bottom: 10px;
}

.product-body p {
    min-height: 48px;
    color: #707872;
    font-size: 13px;
    line-height: 1.7;
    margin-bottom: 20px;
}


/* BOTTOM */

.product-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;

    padding-top: 17px;

    border-top: 1px solid #edf1ee;
}

.product-type {
    color: #6d766f;
    font-size: 10px;
    font-weight: 600;
}

.product-type i {
    color: #287846;
    margin-right: 4px;
}


/* QUOTE BUTTON */

.product-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    padding: 9px 14px;

    background: #287846;
    color: #ffffff;

    border-radius: 8px;

    text-decoration: none;

    font-size: 11px;
    font-weight: 700;

    transition: all 0.3s ease;
}

.product-btn i {
    transition: transform 0.3s ease;
}

.product-btn:hover {
    background: #205f38;
    color: #ffffff;
    transform: translateY(-2px);
}

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


/* MOBILE */

@media (max-width: 575px) {

    .product-image {
        height: 220px;
    }

    .product-body {
        padding: 20px;
    }

    .product-body h5 {
        font-size: 17px;
    }

    .product-body p {
        min-height: auto;
    }

}
/* end products section */


/* start contact section */
/* =========================================
   ATTRACTIVE CONTACT SECTION
========================================= */

.contact-section {
    background: #f7faf8;
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: "";
    position: absolute;

    width: 400px;
    height: 400px;

    border-radius: 50%;

    background: rgba(40, 120, 70, 0.04);

    top: -200px;
    left: -200px;
}

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


/* HEADING */

.contact-description {
    max-width: 480px;

    font-size: 14px;
    line-height: 1.8;

    margin-bottom: 25px;
}

.section-title span {
    color: #287846;
}


/* =========================================
   CONTACT CARDS
========================================= */

.contact-card {
    display: flex;
    align-items: flex-start;

    gap: 16px;

    padding: 18px;

    margin-bottom: 14px;

    background: #ffffff;

    border: 1px solid #e5ece7;

    border-radius: 15px;

    transition: all 0.35s ease;
}

.contact-card:hover {
    transform: translateX(6px);

    border-color: rgba(40, 120, 70, 0.25);

    box-shadow:
        0 12px 30px rgba(20, 60, 35, 0.08);
}


/* ICON */

.contact-card-icon {
    width: 48px;
    height: 48px;

    min-width: 48px;

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

    border-radius: 12px;

    background: #eaf5ed;

    color: #287846;

    font-size: 17px;

    transition: all 0.3s ease;
}

.contact-card:hover .contact-card-icon {
    background: #287846;
    color: #ffffff;
}


/* CONTENT */

.contact-card-content span {
    display: block;

    color: #7b877f;

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 1px;

    margin-bottom: 4px;
}

.contact-card-content h6 {
    color: #18271e;

    font-size: 14px;

    font-weight: 700;

    margin-bottom: 5px;
}

.contact-card-content p {
    color: #727b75;

    font-size: 11px;

    line-height: 1.6;

    margin: 0;
}


/* =========================================
   GST STRIP
========================================= */

.gst-strip {
    display: flex;
    align-items: center;

    gap: 12px;

    padding: 14px 17px;

    margin-top: 18px;

    background: #eaf5ed;

    border-radius: 11px;

    border-left: 3px solid #287846;
}

.gst-icon {
    color: #287846;

    font-size: 19px;
}

.gst-strip span {
    display: block;

    color: #6d786f;

    font-size: 8px;

    font-weight: 800;

    letter-spacing: .8px;
}

.gst-strip strong {
    display: block;

    color: #245d37;

    font-size: 12px;

    margin-top: 2px;
}


/* =========================================
   QUOTE BOX
========================================= */

.quote-box {
    height: 100%;

    padding: 34px;

    background: #ffffff;

    border: 1px solid #e2ebe5;

    border-radius: 22px;

    box-shadow:
        0 18px 50px rgba(20, 60, 35, 0.08);
}


/* HEADER */

.quote-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;

    gap: 20px;

    margin-bottom: 25px;
}

.quote-label {
    display: block;

    color: #287846;

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 1.4px;

    margin-bottom: 6px;
}

.quote-header h3 {
    color: #17251c;

    font-size: 25px;

    font-weight: 750;

    margin-bottom: 6px;
}

.quote-header p {
    color: #7a837d;

    font-size: 12px;

    margin: 0;

    line-height: 1.6;
}


/* QUOTE ICON */

.quote-icon {
    width: 52px;
    height: 52px;

    min-width: 52px;

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

    border-radius: 14px;

    background: #eaf5ed;

    color: #287846;

    font-size: 19px;
}


/* =========================================
   FORM
========================================= */

.form-label {
    color: #344139;

    font-size: 11px;

    font-weight: 700;

    margin-bottom: 7px;
}

.input-icon {
    position: relative;
}

.input-icon > i {
    position: absolute;

    left: 14px;
    top: 50%;

    transform: translateY(-50%);

    color: #76917f;

    font-size: 12px;

    z-index: 2;
}

.input-icon .form-control,
.input-icon .form-select {
    height: 46px;

    padding-left: 39px;

    border: 1px solid #dfe8e2;

    border-radius: 9px;

    color: #344139;

    font-size: 12px;

    box-shadow: none;

    transition: all .25s ease;
}

.input-icon .form-control::placeholder {
    color: #a1aaa4;
}

.input-icon .form-control:focus,
.input-icon .form-select:focus,
.quote-box textarea:focus {
    border-color: #6ea47c;

    box-shadow:
        0 0 0 3px rgba(40, 120, 70, 0.08);
}


/* TEXTAREA */

.quote-box textarea {
    width: 100%;

    border: 1px solid #dfe8e2;

    border-radius: 9px;

    padding: 13px;

    color: #344139;

    font-size: 12px;

    resize: vertical;

    outline: none;

    transition: all .25s ease;
}

.quote-box textarea::placeholder {
    color: #a1aaa4;
}


/* =========================================
   SEND BUTTON
========================================= */

.send-enquiry {
    width: 100%;

    height: 48px;

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

    gap: 12px;

    border: 0;

    border-radius: 9px;

    background: #287846;

    color: #ffffff;

    font-size: 12px;

    font-weight: 700;

    cursor: pointer;

    transition: all .3s ease;
}

.send-enquiry:hover {
    background: #205f38;

    transform: translateY(-2px);

    box-shadow:
        0 10px 25px rgba(40, 120, 70, 0.18);
}

.send-enquiry i {
    transition: transform .3s ease;
}

.send-enquiry:hover i {
    transform: translateX(5px);
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 991px) {

    .quote-box {
        padding: 28px;
    }

}

@media (max-width: 575px) {

    .contact-card {
        padding: 15px;
    }

    .contact-card-icon {
        width: 42px;
        height: 42px;

        min-width: 42px;
    }

    .quote-box {
        padding: 22px;

        border-radius: 17px;
    }

    .quote-header h3 {
        font-size: 22px;
    }

    .quote-icon {
        width: 45px;
        height: 45px;

        min-width: 45px;
    }

} 
/* end contact section */

/* start first whatsapp section */
/*Estilos generales del boton whatsapp*/

.whatsapp-btn {
    position: fixed;
    bottom: 20px;
    right: 90px;
    z-index: 9999;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 5px rgb(0 0 0 / 30%);
    animation: breathe 2s ease-in-out infinite;
  }
  
  /*Estilos solo al icono whatsapp*/
  .whatsapp-btn i {
    color: #fff;
    font-size: 24px;
    animation: beat 2s ease-in-out infinite;
    text-decoration: none;
  }
  
  /*Estilos con animation contorno respirando*/
  @keyframes breathe {
    0% {
      box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
    }
    70% {
      box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
      box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
    }
  }
  
  /*Estilos de animacion del icono latiendo*/
  @keyframes beat {
    0% {
      transform: scale(1);
    }
    50% {
      transform: scale(1.2);
    }
    100% {
      transform: scale(1);
    }
  }
/* end first whatsaap section **/

/* start modal section */
/* =========================================
   QUOTE MODAL
========================================= */

.quote-modal {
    border: 0;
    border-radius: 20px;

    overflow: hidden;

    background: #ffffff;

    box-shadow:
        0 25px 70px rgba(10, 40, 20, 0.20);
}


/* HEADER */

.quote-modal .modal-header {
    padding: 22px 25px;

    border-bottom: 1px solid #e7eee9;

    background: #f8fbf9;
}

.quote-modal-heading {
    display: flex;
    align-items: center;

    gap: 13px;
}

.quote-modal-icon {
    width: 46px;
    height: 46px;

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

    border-radius: 12px;

    background: #e7f3ea;

    color: #287846;

    font-size: 17px;
}

.quote-modal-heading span {
    display: block;

    color: #287846;

    font-size: 8px;

    font-weight: 800;

    letter-spacing: 1.3px;

    margin-bottom: 3px;
}

.quote-modal-heading h5 {
    margin: 0;

    color: #17251c;

    font-size: 20px;

    font-weight: 750;
}


/* CLOSE BUTTON */

.quote-modal .btn-close {
    font-size: 11px;

    box-shadow: none;

    opacity: .55;
}


/* BODY */

.quote-modal .modal-body {
    padding: 28px;
}


/* LABEL */

.quote-form-label {
    display: block;

    color: #344139;

    font-size: 11px;

    font-weight: 700;

    margin-bottom: 7px;
}


/* INPUT */

.quote-input {
    position: relative;
}

.quote-input > i {
    position: absolute;

    left: 14px;
    top: 50%;

    transform: translateY(-50%);

    color: #789280;

    font-size: 12px;

    z-index: 2;
}

.quote-input .form-control {
    height: 46px;

    padding-left: 39px;

    border: 1px solid #dce7df;

    border-radius: 9px;

    color: #26362c;

    font-size: 12px;

    box-shadow: none;

    transition: all .25s ease;
}

.quote-input .form-control::placeholder {
    color: #a1aaa4;
}

.quote-input .form-control:focus,
.quote-modal textarea:focus {
    border-color: #6da17a;

    box-shadow:
        0 0 0 3px rgba(40,120,70,.08);
}


/* SELECTED PRODUCT */

.selected-product {
    height: 46px;

    display: flex;
    align-items: center;

    gap: 10px;

    padding: 0 14px;

    border-radius: 9px;

    background: #eef6f0;

    border: 1px solid #dce9df;

    color: #287846;

    font-size: 12px;

    font-weight: 700;
}

.selected-product i {
    font-size: 12px;
}


/* TEXTAREA */

.quote-modal textarea {
    width: 100%;

    border: 1px solid #dce7df;

    border-radius: 9px;

    padding: 13px;

    color: #26362c;

    font-size: 12px;

    resize: vertical;

    outline: none;

    box-shadow: none;

    transition: all .25s ease;
}

.quote-modal textarea::placeholder {
    color: #a1aaa4;
}


/* SUBMIT BUTTON */

.quote-submit-btn {
    width: 100%;

    height: 48px;

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

    gap: 12px;

    border: 0;

    border-radius: 9px;

    background: #287846;

    color: #ffffff;

    font-size: 12px;

    font-weight: 700;

    cursor: pointer;

    transition: all .3s ease;
}

.quote-submit-btn:hover {
    background: #205f38;

    transform: translateY(-2px);

    box-shadow:
        0 10px 25px rgba(40,120,70,.18);
}

.quote-submit-btn i {
    transition: transform .3s ease;
}

.quote-submit-btn:hover i {
    transform: translateX(5px);
}


/* MOBILE */

@media (max-width: 575px) {

    .quote-modal .modal-body {
        padding: 20px;
    }

    .quote-modal .modal-header {
        padding: 18px 20px;
    }

    .quote-modal-heading h5 {
        font-size: 18px;
    }

    .quote-modal-icon {
        width: 40px;
        height: 40px;
    }

}
/* end modal section */

/* start gallery section */
.gallery-section {
    background: #fff;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 18px;
    height: 250px;
    background: #f5f5f5;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.gallery-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

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


/* =========================
   LIGHTBOX
========================= */

.image-lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.88);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    z-index: 99999;

    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.image-lightbox.active {
    opacity: 1;
    visibility: visible;
}

.image-lightbox img {
    max-width: 90%;
    max-height: 88vh;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);

    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.image-lightbox.active img {
    transform: scale(1);
}


/* Close Button */

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;

    width: 45px;
    height: 45px;

    border: none;
    border-radius: 50%;

    background: rgba(255, 255, 255, 0.15);
    color: #fff;

    font-size: 32px;
    line-height: 40px;

    cursor: pointer;
    transition: 0.3s;
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}


/* Mobile */

@media (max-width: 767px) {

    .gallery-item {
        height: 200px;
        border-radius: 14px;
    }

    .image-lightbox {
        padding: 20px;
    }

    .image-lightbox img {
        max-width: 95%;
        max-height: 80vh;
    }

    .lightbox-close {
        top: 15px;
        right: 15px;
    }
}
/* end gallery section */

/* start product detail section */
/* =========================
   PRODUCT HERO
========================= */

.product-detail-hero {
    padding: 80px 0;
    background: #f8faf5;
}

.product-detail-image {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 15px 45px rgba(0,0,0,.10);
}

.product-detail-image img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    display: block;
}

.detail-badge {
    position: absolute;
    left: 20px;
    bottom: 20px;
    padding: 10px 18px;
    background: #fff;
    border-radius: 30px;
    font-weight: 600;
    box-shadow: 0 5px 20px rgba(0,0,0,.12);
}

.product-detail-title {
    font-size: 54px;
    font-weight: 800;
    line-height: 1.1;
    margin: 20px 0;
}

.product-detail-title span,
.section-title span {
    color: #8b8b00;
}

.product-detail-intro {
    font-size: 18px;
    line-height: 1.8;
    color: #666;
}

.product-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin: 30px 0;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
}

.highlight-item i {
    color: #8b8b00;
}

.product-detail-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}


/* =========================
   OVERVIEW
========================= */

.product-overview {
    padding: 90px 0;
}

.product-overview p {
    color: #666;
    line-height: 1.8;
}

.product-info-card {
    padding: 30px;
    background: #f8f8f4;
    border-radius: 20px;
}

.product-info-card h4 {
    margin-bottom: 20px;
    font-weight: 700;
}

.info-row {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 15px 0;
    border-bottom: 1px solid #ddd;
}

.info-row:last-child {
    border-bottom: 0;
}

.info-row span {
    color: #777;
}


/* =========================
   FEATURES
========================= */

.product-features {
    padding: 80px 0;
    background: #f8faf5;
}

.feature-card {
    height: 100%;
    padding: 30px;
    background: #fff;
    border-radius: 18px;
    text-align: center;
    transition: .3s;
}

.feature-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 15px 35px rgba(0,0,0,.08);
}

.feature-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f0f0dc;
    color: #8b8b00;
    font-size: 24px;
}

.feature-card p {
    color: #777;
    line-height: 1.7;
}


/* =========================
   APPLICATIONS
========================= */

.applications-section {
    padding: 90px 0;
}

.application-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.application-item {
    padding: 18px;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    font-weight: 600;
}

.application-item i {
    color: #8b8b00;
    margin-right: 8px;
}


/* =========================
   CTA
========================= */

.product-cta {
    padding: 65px 0;
    background: #8b8b00;
    color: #fff;
}

.product-cta h2 {
    font-size: 38px;
    font-weight: 800;
    margin: 15px 0 10px;
}

.product-cta p {
    margin: 0;
    opacity: .9;
}

.product-cta .badge-soft {
    background: rgba(255,255,255,.15);
    color: #fff;
}

.product-cta .btn-light {
    padding: 13px 25px;
    border-radius: 8px;
    font-weight: 600;
}


/* =========================
   MOBILE
========================= */

@media (max-width: 767px) {

    .product-detail-hero {
        padding: 50px 0;
    }

    .product-detail-image img {
        height: 350px;
    }

    .product-detail-title {
        font-size: 38px;
    }

    .product-highlights {
        grid-template-columns: 1fr;
    }

    .product-overview,
    .applications-section {
        padding: 60px 0;
    }

    .application-list {
        grid-template-columns: 1fr;
    }

    .product-cta h2 {
        font-size: 30px;
    }

}


/* =====================================
   PRODUCT DETAIL HERO
===================================== */

.product-detail-hero {
    position: relative;
    overflow: hidden;
    padding: 90px 0;
    background:
        radial-gradient(
            circle at 8% 20%,
            rgba(139,139,0,.10),
            transparent 32%
        ),
        linear-gradient(
            135deg,
            #fbfcf7 0%,
            #f4f6e9 100%
        );
}


/* =====================================
   PRODUCT IMAGE AREA
===================================== */

.product-visual {
    position: relative;
    max-width: 570px;
    margin: auto;
}

.product-glow {
    position: absolute;
    width: 350px;
    height: 350px;
    background: rgba(139,139,0,.14);
    border-radius: 50%;
    filter: blur(50px);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.product-detail-image {
    position: relative;
    z-index: 2;
    overflow: hidden;
    padding: 12px;
    border-radius: 30px;
    background: rgba(255,255,255,.75);
    border: 1px solid rgba(139,139,0,.15);
    box-shadow:
        0 25px 60px rgba(0,0,0,.12),
        0 5px 20px rgba(139,139,0,.08);
}

.product-detail-image img {
    width: 100%;
    height: 500px;
    display: block;
    object-fit: cover;
    border-radius: 22px;
    transition: transform .6s ease;
}

.product-detail-image:hover img {
    transform: scale(1.04);
}


/* =====================================
   QUALITY BADGE
===================================== */

.image-quality-badge {
    position: absolute;
    left: 30px;
    bottom: 30px;
    z-index: 3;

    display: flex;
    align-items: center;
    gap: 12px;

    padding: 12px 18px;
    border-radius: 15px;

    background: rgba(255,255,255,.94);
    backdrop-filter: blur(10px);

    box-shadow: 0 10px 30px rgba(0,0,0,.15);
}

.badge-icon {
    width: 42px;
    height: 42px;

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

    border-radius: 12px;

    background: #8b8b00;
    color: #fff;
}

.image-quality-badge strong {
    display: block;
    font-size: 14px;
}

.image-quality-badge small {
    display: block;
    margin-top: 2px;
    color: #777;
    font-size: 11px;
}


/* =====================================
   FLOATING LEAVES
===================================== */

.floating-leaf {
    position: absolute;
    z-index: 4;

    width: 48px;
    height: 48px;

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

    border-radius: 50%;

    background: #fff;
    color: #8b8b00;

    box-shadow: 0 10px 25px rgba(0,0,0,.12);

    animation: floatingLeaf 3s ease-in-out infinite;
}

.leaf-one {
    top: 40px;
    right: -20px;
    transform: rotate(25deg);
}

.leaf-two {
    bottom: 70px;
    left: -20px;
    transform: rotate(-25deg);
    animation-delay: 1s;
}

@keyframes floatingLeaf {

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

    50% {
        transform: translateY(-10px) rotate(25deg);
    }

}


/* =====================================
   PRODUCT CONTENT
===================================== */

.product-content {
    padding-left: 20px;
}

.product-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    padding: 8px 14px;

    border-radius: 30px;

    background: rgba(139,139,0,.10);
    color: #777700;

    font-size: 12px;
    font-weight: 700;
    letter-spacing: .8px;
}

.product-detail-title {
    margin: 18px 0 18px;

    font-size: clamp(42px, 5vw, 64px);
    line-height: 1.05;
    font-weight: 800;
    letter-spacing: -1.5px;
    color: #222;
}

.product-detail-title span {
    display: block;
    color: #8b8b00;
}

.product-detail-intro {
    max-width: 620px;

    margin-bottom: 28px;

    color: #666;
    font-size: 17px;
    line-height: 1.8;
}


/* =====================================
   HIGHLIGHTS
===================================== */

.product-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 25px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 12px;

    padding: 14px;

    background: rgba(255,255,255,.72);
    border: 1px solid rgba(0,0,0,.06);
    border-radius: 13px;

    transition: .3s ease;
}

.highlight-item:hover {
    transform: translateY(-3px);
    border-color: rgba(139,139,0,.25);
    box-shadow: 0 8px 20px rgba(0,0,0,.06);
}

.highlight-icon {
    flex-shrink: 0;

    width: 38px;
    height: 38px;

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

    border-radius: 10px;

    background: #f0f1dc;
    color: #8b8b00;
}

.highlight-item strong {
    display: block;
    font-size: 13px;
}

.highlight-item small {
    display: block;
    margin-top: 2px;
    color: #888;
    font-size: 11px;
}


/* =====================================
   QUICK INFO
===================================== */

.quick-product-info {
    display: flex;
    flex-wrap: wrap;

    margin-bottom: 28px;

    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
}

.quick-product-info > div {
    flex: 1;
    min-width: 120px;

    padding: 15px 18px;

    border-right: 1px solid #ddd;
}

.quick-product-info > div:first-child {
    padding-left: 0;
}

.quick-product-info > div:last-child {
    border-right: 0;
}

.quick-product-info span {
    display: block;

    margin-bottom: 4px;

    color: #888;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .5px;
}

.quick-product-info strong {
    font-size: 14px;
    color: #222;
}


/* =====================================
   BUTTONS
===================================== */

.product-detail-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.product-quote-btn {
    padding: 13px 24px;

    border-radius: 9px;

    background: #8b8b00;
    color: #fff;

    font-weight: 600;

    box-shadow: 0 8px 20px rgba(139,139,0,.25);

    transition: .3s ease;
}

.product-quote-btn:hover {
    background: #747400;
    color: #fff;
    transform: translateY(-2px);
}

.product-quote-btn i {
    margin-left: 8px;
}

.product-contact-btn {
    padding: 13px 24px;

    border: 1px solid #222;
    border-radius: 9px;

    color: #222;
    font-weight: 600;

    transition: .3s ease;
}

.product-contact-btn:hover {
    background: #222;
    color: #fff;
}


/* =====================================
   BUSINESS NOTE
===================================== */

.business-note {
    margin-top: 18px;

    display: flex;
    align-items: center;
    gap: 7px;

    color: #777;
    font-size: 12px;
}

.business-note i {
    color: #8b8b00;
}


/* =====================================
   RESPONSIVE
===================================== */

@media (max-width: 991px) {

    .product-detail-hero {
        padding: 65px 0;
    }

    .product-content {
        padding-left: 0;
    }

    .product-detail-image img {
        height: 450px;
    }

    .floating-leaf {
        display: none;
    }

}


@media (max-width: 575px) {

    .product-detail-hero {
        padding: 45px 0;
    }

    .product-detail-image img {
        height: 340px;
    }

    .image-quality-badge {
        left: 22px;
        bottom: 22px;
    }

    .product-highlights {
        grid-template-columns: 1fr;
    }

    .quick-product-info {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .quick-product-info > div {
        border-right: 0;
        border-bottom: 1px solid #ddd;
    }

    .quick-product-info > div:first-child {
        padding-left: 18px;
    }

    .product-detail-buttons .btn {
        width: 100%;
        text-align: center;
    }

}

/* =====================================
   PRODUCT OVERVIEW
===================================== */

.product-overview {
    position: relative;
    padding: 90px 0;
    background: #fff;
}


/* =====================================
   LABEL
===================================== */

.overview-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    padding: 8px 15px;

    background: rgba(139,139,0,.10);
    color: #7c7c00;

    border-radius: 30px;

    font-size: 12px;
    font-weight: 700;
    letter-spacing: .7px;
}

.overview-label i {
    font-size: 13px;
}


/* =====================================
   HEADING
===================================== */

.overview-content .section-title {
    max-width: 700px;

    font-size: 42px;
    line-height: 1.2;
    font-weight: 800;
    color: #222;
}

.overview-content .section-title span {
    color: #8b8b00;
}


/* =====================================
   TEXT
===================================== */

.overview-intro {
    margin-top: 22px;

    max-width: 680px;

    font-size: 17px;
    line-height: 1.85;

    color: #666;
}

.overview-content > p:last-child {
    margin-top: 22px;

    color: #777;
    line-height: 1.8;
}


/* =====================================
   POINTS
===================================== */

.overview-points {
    display: grid;
    grid-template-columns: 1fr 1fr;

    gap: 18px;

    margin: 30px 0;
}

.overview-point {
    display: flex;
    gap: 13px;

    padding: 18px;

    border-radius: 15px;

    background: #f8f9f2;

    border: 1px solid #eef0df;

    transition: .3s ease;
}

.overview-point:hover {
    transform: translateY(-4px);

    box-shadow: 0 12px 28px rgba(0,0,0,.07);

    border-color: rgba(139,139,0,.25);
}

.point-icon {
    flex-shrink: 0;

    width: 40px;
    height: 40px;

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

    border-radius: 11px;

    background: #8b8b00;
    color: #fff;
}

.overview-point h5 {
    margin: 0 0 5px;

    font-size: 14px;
    font-weight: 700;
}

.overview-point p {
    margin: 0;

    font-size: 12px;
    line-height: 1.6;

    color: #777;
}


/* =====================================
   INFO CARD
===================================== */

.modern-info-card {
    position: relative;

    overflow: hidden;

    padding: 28px;

    border-radius: 24px;

    background:
        linear-gradient(
            145deg,
            #f8f9f1,
            #ffffff
        );

    border: 1px solid #e6e8d5;

    box-shadow:
        0 20px 50px rgba(0,0,0,.08);
}

.modern-info-card::before {
    content: "";

    position: absolute;

    top: -80px;
    right: -80px;

    width: 180px;
    height: 180px;

    border-radius: 50%;

    background: rgba(139,139,0,.08);
}


/* =====================================
   CARD HEADER
===================================== */

.info-card-header {
    position: relative;
    z-index: 2;

    display: flex;
    align-items: center;
    gap: 14px;

    padding-bottom: 22px;

    border-bottom: 1px solid #e1e3d5;
}

.info-card-icon {
    width: 50px;
    height: 50px;

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

    border-radius: 14px;

    background: #8b8b00;
    color: #fff;

    font-size: 20px;

    box-shadow: 0 8px 20px rgba(139,139,0,.20);
}

.info-card-header span {
    display: block;

    margin-bottom: 3px;

    color: #8b8b00;

    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
}

.info-card-header h4 {
    margin: 0;

    font-size: 20px;
    font-weight: 800;
}


/* =====================================
   INFO LIST
===================================== */

.info-list {
    position: relative;
    z-index: 2;

    padding-top: 8px;
}

.modern-info-row {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 15px;

    padding: 16px 0;

    border-bottom: 1px dashed #ddd;
}

.modern-info-row:last-child {
    border-bottom: 0;
}

.info-label {
    display: flex;
    align-items: center;
    gap: 9px;

    color: #777;

    font-size: 13px;
}

.info-label i {
    width: 25px;

    color: #8b8b00;

    text-align: center;
}

.modern-info-row strong {
    color: #222;

    font-size: 13px;

    text-align: right;
}


/* =====================================
   CARD FOOTER
===================================== */

.info-card-footer {
    position: relative;
    z-index: 2;

    display: flex;
    align-items: center;
    gap: 8px;

    margin-top: 15px;
    padding: 13px 15px;

    border-radius: 11px;

    background: #eff1df;

    color: #666;

    font-size: 11px;
    line-height: 1.5;
}

.info-card-footer i {
    color: #8b8b00;
    font-size: 15px;
}


/* =====================================
   RESPONSIVE
===================================== */

@media (max-width: 991px) {

    .product-overview {
        padding: 70px 0;
    }

    .overview-content .section-title {
        font-size: 36px;
    }

}


@media (max-width: 767px) {

    .product-overview {
        padding: 55px 0;
    }

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

    .overview-points {
        grid-template-columns: 1fr;
    }

    .modern-info-card {
        padding: 22px;
    }

}


@media (max-width: 480px) {

    .modern-info-row {
        padding: 14px 0;
    }

    .modern-info-row strong {
        font-size: 12px;
    }

}


/* =====================================
   FEATURES SECTION
===================================== */

.product-features {
    position: relative;
    overflow: hidden;
    padding: 90px 0;

    background:
        radial-gradient(
            circle at 90% 20%,
            rgba(139,139,0,.10),
            transparent 28%
        ),
        #f7f8f1;
}


/* =====================================
   HEADING
===================================== */

.features-heading {
    max-width: 720px;
    margin: 0 auto;
}

.features-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    padding: 8px 16px;

    border-radius: 30px;

    background: rgba(139,139,0,.10);
    color: #7b7b00;

    font-size: 11px;
    font-weight: 700;
    letter-spacing: .8px;
}

.features-badge i {
    font-size: 12px;
}

.features-heading .section-title {
    font-size: 42px;
    line-height: 1.2;
    font-weight: 800;
}

.features-heading .section-title span {
    color: #8b8b00;
}

.features-heading > p {
    max-width: 620px;
    margin: 15px auto 0;

    color: #777;
    font-size: 15px;
    line-height: 1.7;
}


/* =====================================
   FEATURE CARD
===================================== */

.premium-feature-card {
    position: relative;
    height: 100%;
    overflow: hidden;

    padding: 32px 28px 25px;

    border-radius: 22px;

    background: #fff;

    border: 1px solid rgba(0,0,0,.06);

    box-shadow:
        0 12px 35px rgba(0,0,0,.06);

    transition:
        transform .35s ease,
        box-shadow .35s ease,
        border-color .35s ease;
}

.premium-feature-card::before {
    content: "";

    position: absolute;

    width: 150px;
    height: 150px;

    top: -75px;
    right: -75px;

    border-radius: 50%;

    background: rgba(139,139,0,.08);

    transition: .4s ease;
}

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

    border-color: rgba(139,139,0,.25);

    box-shadow:
        0 20px 45px rgba(0,0,0,.10);
}

.premium-feature-card:hover::before {
    transform: scale(1.5);
}


/* =====================================
   NUMBER
===================================== */

.feature-number {
    position: absolute;

    top: 22px;
    right: 24px;

    font-size: 12px;
    font-weight: 800;

    color: #d4d6c0;

    letter-spacing: 1px;
}


/* =====================================
   ICON
===================================== */

.feature-icon {
    position: relative;
    z-index: 2;

    width: 62px;
    height: 62px;

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

    margin-bottom: 25px;

    border-radius: 17px;

    background: #f0f1df;

    color: #8b8b00;

    font-size: 24px;

    transition: .35s ease;
}

.premium-feature-card:hover .feature-icon {
    background: #8b8b00;
    color: #fff;

    transform: rotate(-5deg) scale(1.05);
}


/* =====================================
   TITLE
===================================== */

.premium-feature-card h5 {
    position: relative;
    z-index: 2;

    margin-bottom: 10px;

    color: #222;

    font-size: 18px;
    font-weight: 800;
}


/* =====================================
   DESCRIPTION
===================================== */

.premium-feature-card p {
    position: relative;
    z-index: 2;

    min-height: 72px;

    margin-bottom: 20px;

    color: #777;

    font-size: 13px;
    line-height: 1.7;
}


/* =====================================
   LINE
===================================== */

.feature-line {
    width: 35px;
    height: 3px;

    margin-bottom: 15px;

    border-radius: 10px;

    background: #8b8b00;

    transition: width .35s ease;
}

.premium-feature-card:hover .feature-line {
    width: 65px;
}


/* =====================================
   BOTTOM TEXT
===================================== */

.feature-bottom {
    position: relative;
    z-index: 2;

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

    color: #555;

    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .5px;
}

.feature-bottom i {
    color: #8b8b00;
    font-size: 14px;

    transition: transform .3s ease;
}

.premium-feature-card:hover .feature-bottom i {
    transform: translateX(5px);
}


/* =====================================
   RESPONSIVE
===================================== */

@media (max-width: 991px) {

    .product-features {
        padding: 70px 0;
    }

    .features-heading .section-title {
        font-size: 36px;
    }

}


@media (max-width: 767px) {

    .product-features {
        padding: 55px 0;
    }

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

    .premium-feature-card {
        padding: 28px 24px 23px;
    }

}

/* =====================================
   APPLICATION SECTION
===================================== */

.applications-section {
    position: relative;
    overflow: hidden;

    padding: 90px 0;

    background:
        radial-gradient(
            circle at 0% 50%,
            rgba(139,139,0,.09),
            transparent 30%
        ),
        #fff;
}


/* =====================================
   LEFT CONTENT
===================================== */

.applications-content {
    padding-right: 25px;
}

.applications-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    padding: 8px 15px;

    border-radius: 30px;

    background: rgba(139,139,0,.10);
    color: #7c7c00;

    font-size: 11px;
    font-weight: 700;

    letter-spacing: .8px;
}

.applications-content .section-title {
    max-width: 520px;

    font-size: 44px;
    line-height: 1.15;

    font-weight: 800;

    color: #222;
}

.applications-content .section-title span {
    color: #8b8b00;
}

.applications-intro {
    max-width: 500px;

    margin: 20px 0 25px;

    color: #777;

    font-size: 16px;
    line-height: 1.8;
}


/* =====================================
   HIGHLIGHT
===================================== */

.application-highlight {
    display: flex;
    align-items: center;
    gap: 13px;

    max-width: 500px;

    padding: 17px;

    margin-bottom: 25px;

    border-radius: 15px;

    background: #f6f7ed;

    border: 1px solid #e8ead8;
}

.application-highlight-icon {
    flex-shrink: 0;

    width: 43px;
    height: 43px;

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

    border-radius: 12px;

    background: #8b8b00;
    color: #fff;

    font-size: 18px;
}

.application-highlight strong {
    display: block;

    margin-bottom: 3px;

    font-size: 13px;
}

.application-highlight span {
    display: block;

    color: #777;

    font-size: 11px;
    line-height: 1.5;
}


/* =====================================
   CTA
===================================== */

.application-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    padding: 13px 21px;

    border-radius: 9px;

    background: #8b8b00;
    color: #fff;

    font-size: 13px;
    font-weight: 600;

    text-decoration: none;

    box-shadow: 0 8px 22px rgba(139,139,0,.20);

    transition: .3s ease;
}

.application-cta:hover {
    color: #fff;

    background: #747400;

    transform: translateY(-2px);
}

.application-cta i {
    transition: .3s ease;
}

.application-cta:hover i {
    transform: translateX(5px);
}


/* =====================================
   APPLICATION GRID
===================================== */

.applications-grid {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 16px;
}


/* =====================================
   APPLICATION CARD
===================================== */

.application-card {
    position: relative;

    display: flex;
    align-items: flex-start;

    gap: 15px;

    min-height: 150px;

    padding: 24px;

    overflow: hidden;

    border-radius: 18px;

    background: #fafbf7;

    border: 1px solid #e8e9df;

    transition:
        transform .3s ease,
        box-shadow .3s ease,
        border-color .3s ease;
}

.application-card::after {
    content: "";

    position: absolute;

    width: 100px;
    height: 100px;

    right: -50px;
    bottom: -50px;

    border-radius: 50%;

    background: rgba(139,139,0,.07);

    transition: .4s ease;
}

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

    background: #fff;

    border-color: rgba(139,139,0,.25);

    box-shadow: 0 15px 35px rgba(0,0,0,.08);
}

.application-card:hover::after {
    transform: scale(1.5);
}


/* =====================================
   NUMBER
===================================== */

.application-number {
    position: absolute;

    top: 15px;
    right: 18px;

    color: #d3d5c2;

    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1px;
}


/* =====================================
   ICON
===================================== */

.application-icon {
    flex-shrink: 0;

    width: 50px;
    height: 50px;

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

    border-radius: 14px;

    background: #eef0dc;

    color: #8b8b00;

    font-size: 20px;

    transition: .3s ease;
}

.application-card:hover .application-icon {
    background: #8b8b00;
    color: #fff;

    transform: rotate(-5deg);
}


/* =====================================
   CARD TEXT
===================================== */

.application-card h5 {
    margin: 3px 0 7px;

    font-size: 15px;
    font-weight: 800;

    color: #222;
}

.application-card p {
    margin: 0;

    color: #777;

    font-size: 11px;
    line-height: 1.65;
}


/* =====================================
   RESPONSIVE
===================================== */

@media (max-width: 991px) {

    .applications-section {
        padding: 70px 0;
    }

    .applications-content {
        padding-right: 0;
    }

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

}


@media (max-width: 767px) {

    .applications-section {
        padding: 55px 0;
    }

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

    .applications-grid {
        grid-template-columns: 1fr;
    }

    .application-card {
        min-height: auto;
    }

}


@media (max-width: 480px) {

    .application-card {
        padding: 20px;
    }

}

.product-body h5 a
{
    color:#000 !important;
    text-decoration:none !important;
}


/* end product detail section */





