* {
    margin: 0;
    padding: 0;
}

:root {
    /* Primary Brand Colors */
    --green-main: #22b55c;
    --green-dark: #1a9e50;
    --green-light: #d9f7e6;

    /* Accent Colors */
    --orange-main: #f97b22;
    --orange-light: #fde6d0;

    --yellow-main: #ffd34e;
    --yellow-light: #fff4c4;

    /* Natural Tones */
    --brown-main: #7a4f2a;
    --cream-bg: #fafaf3;
    --bagni-bg: #9333ed;
    --halka-bg: #8a84e6;

    /* Cool Neutrals */
    --blue-main: #2d8cff;
    --blue-light: #d8efff;

    /* Text Colors */
    --text-dark: #222222;
    --text-light: #444444;
    --text-muted: #888888;

    /* Basic Colors */
    --white: #ffffff;
    --black: #000000;

    /* Shadows */
    --shadow-soft: 0 4px 10px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 6px 15px rgba(0, 0, 0, 0.15);
}

body {
    font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    overflow-x: hidden;
}


.navbar-brand {
    font-weight: 700;
    color: #057a36 !important;
}

.nav-link {
    position: relative;
    padding-bottom: 4px;
    font-weight: 500;
    color: #505050;
    transition: 0.3s;
    text-decoration: none;
    margin: 0px 15px;
    font-size: 1rem;
}

.nav-link:hover {
    color: #0a8f44;
}


.nav-link.active {
    color: #0a8f44 !important;
}

.nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0px;
    width: 0%;
    height: 2px;
    background: #0a8f44;
    transition: 0.3s;
    border-radius: 3px;
}

.nav-item-link.active::after {
    width: 100%;
}

.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #ffffff;
    transform: translateY(-100%);
    transition: 0.35s ease;
    z-index: 9999;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.mobile-menu.open {
    transform: translateY(0);
}

.mobile-link {
    padding: 12px 10px;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
}

.mobile-link a {
    text-decoration: none;
    color: #222;
}

.mobile-link.active {
    background: #e9f9ee;
    color: #0a8f44;
    font-weight: 600;
}

.mobile-link:hover {
    background: #f5f5f5;
}

@media(max-width:992px) {

    .cus-lg-btn {
        display: none;
    }

}

/* hero section */

.hero-section {
    background: linear-gradient(to right, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.2)), url('img/bg-hero.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    color: #222;
    margin-top: 0px;
    padding: 45px 60px;
}



.main-heading {
    font-family: Playfair Display, serif;
}

@media(min-width:992px) {
    .hero-section .main-heading {
        width: 470px;
    }
}

.hero-section .main-heading {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1;
}

.hero-section h1 .green {
    color: #1a9e50;
}

.hero-section h1 .orange {
    color: #f97b22;
}

.hero-section p {
    font-family: Lato, sans-serif;
    color: #444;
    font-size: 1.1rem;
    margin-top: 1rem;
}


.btn-main {
    background-color: #22b55c;
    color: #fff !important;
    font-weight: 600;
    padding: 15px 25px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: none;
    transition: 0.3s;
    text-decoration: none;
}

.btn-main:hover {
    background-color: #1a9e50;
}

.btn-outline {
    border: 2px solid #22b55c;
    color: #22b55c !important;
    font-weight: 600;
    padding: 14px 30px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: 0.3s;
    text-decoration: none;
}

.btn-outline:hover {
    background-color: #22b55c;
    color: #fff !important;
}

.btn-outline:hover i {
    color: #fff;
}

@media (max-width: 576px) {
    .hero-btn {
        width: 100%;
        justify-content: center;
    }

    .nav-btn.hero-btn {
        width: auto;
    }
}

.features {
    margin-top: 3rem;
}

.feature-item {
    text-align: center;
}

.feature-item p {
    font-weight: 600;
    color: #222;
    font-size: 0.9rem;
}

.feature-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    font-size: 20px;
}

.feature-icon.green {
    background-color: #d9f7e6;
    color: #1a9e50;
}

.feature-icon.orange {
    background-color: #fde6d0;
    color: #f97b22;
}

.feature-icon.blue {
    background-color: #d8efff;
    color: #007bff;
}

/* flot-btn */
.talk-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #22b55c;
    color: #fff;
    font-weight: 600;
    border-radius: 20px;
    padding: 10px 15px;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    text-decoration: none;
    transition: all 0.3s ease;
    z-index: 999;
}

.talk-btn:hover {
    background-color: #1a9e50;
    transform: translateY(-2px);
    color: #fff;
}

.talk-btn i {
    font-size: 1.3rem;
    color: #fff;
    font-weight: 500;
}

/* section 2 */

.section-2 {
    background: #f7fbf1;
    padding: 31px 0;
}

.sectionHeading {
    font-family: Playfair Display, serif;
    font-weight: 600;
    text-align: center;
}

.sectionHeading span {
    color: #1a9e50;
}

.sectionPara {
    color: #444;
    font-size: 1.25rem;
    margin-top: 1rem;
    text-align: center;
    line-height: 1.75rem;
    font-family: Lato, sans-serif;
    /* width: 70%; */
}

.sectionPara span {
    font-weight: bold;
}

.product-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 331px;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.product-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.product-card:hover img {
    transform: scale(1.05);
}

.overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 25px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0));
    color: #fff;
    border-radius: 15px;
}

.overlay h5 {
    font-weight: 700;
    margin-bottom: 5px;
    font-family: Playfair Display, serif;
}

.overlay p {
    margin: 0;
    font-size: 0.95rem;
    color: #e5e5e5;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}

.pin-icon {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgb(0 0 0 / 49%);
    color: #ffffff;
    border-radius: 50%;
    padding: 5px;
    font-size: 1.25rem;
    backdrop-filter: blur(10px);
    width: 45px;
    height: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 30px;
    background: #fff;
    color: #22b55c;
    font-weight: 500;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    position: relative;
    top: 25px;
    text-align: center;
}

.footer-badge i {
    color: #22b55c;
}

@media(max-width:992px) {
    .sectionHeading {
        font-size: 2.3rem;
    }

    .sectionPara br {
        display: none;
    }

    .sectionPara {
        font-size: 1rem;
    }

    .product-card {
        height: 200px;
    }

    .products-section2 {
        padding: 0 10px !important;
    }

}

/* section 3 */

.cert-section {
    background: #eef8f2;
    padding: 26px 40px;
}

@media(max-width:992px) {
    .cert-section {
        padding: 26px 20px;
    }
}

.cert-title {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
}

.cert-subtitle {
    font-size: 16px;
    color: #555;
    max-width: 700px;
    margin: 10px auto 5px;
}

.para-card-new {
    max-width: 70%;
}

.cert-card {
    background: #ffffff;
    border-radius: 14px;
    padding: 25px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
    height: 100%;
    transition: 0.3s;

}

.cert-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.cert-card i {
    font-size: 22px;
    /* color: #1a9e50; */
    background: #e8f7ee;
    padding: 10px;
    border-radius: 10px;
    margin-bottom: 10px;
}

.cert-heading {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
}

.cert-text {
    font-size: 14px;
    color: #444;
    margin-bottom: 15px;
}

.text-b {
    font-weight: 500;
}

.orange {
    color: var(--orange-main);
}

.text-bagni {
    color: var(--bagni-bg);
}

.text-halka {
    color: var(--halka-bg);
}

.trust-box {
    background: #ffffff;
    border-radius: 20px;
    padding: 60px 30px;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
}

.trust-icon {
    width: 80px;
    height: 80px;
    background: #e4faef;
    color: #22b55c;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 35px;
    margin: 0 auto 20px;
}

.tick-list i {
    color: #22b55c;
    font-size: 16px;
}

/* section-4 */

.sectoin-4 {
    background: #fff;
    padding: 40px 60px;
}

@media(max-width:992px) {
    .sectoin-4 {
        padding: 40px 24px;
    }

}


.product-section4-card {
    background: #fff;
    border-radius: 15px;
    position: relative;
    border-radius: 10px;
    box-shadow: 0px -8px 18px rgba(149, 157, 165, 0.20);
}

.product-section4-card h5 {
    font-family: Playfair Display, serif;
}

.product-section4-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
    border-radius: 10px;
}



.badge-top {
    background: #22b55c;
    color: #ffff;
    font-weight: 600;
    padding: 5px 15px;
    border-radius: 30px;
    display: inline-block;
    margin: 15px;
    font-size: 0.85rem;
    position: absolute;
    z-index: 1;
}

.product-section4-content {
    padding: 20px 25px;
    width: 100%;
    background: #ffff;
    border-radius: 0 0 10px 10px;
    transition: transform 0.4s ease;
    box-shadow: 0px 8px 24px rgba(149, 157, 165, 0.2);
}

.section-4-pera {
    color: #666;
}

@media(max-width:992px) {
    .section-4-pera {
        font-size: 15px;
    }

    .product-section4-card h5 {
        font-size: 1.2rem;
    }
}

.tag {
    font-size: 0.8rem;
    background: #e4faef;
    color: #22b55c;
    padding: 4px 10px;
    border-radius: 5px;
    margin-right: 5px;
    margin-bottom: 5px;
    display: inline-block;
}

.get-quote {
    color: #22b55c;
    font-weight: 600;
    text-decoration: none;
}

.natural-badge {
    color: #ff7b00;
    font-size: 0.9rem;
    font-weight: 500;
}

.btn-view-all {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: #22b55c;
    color: #fff;
    padding: 19px 31px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
}

.btn-view-all:hover {
    background: #1a9e50;
    color: #fff;
}

.section-scal-img {
    overflow: hidden;
    border-radius: 10px;
}

.section-scal-img:hover img {
    transform: scale(1.05);
}

/* section 5 */

.about-section {
    background: #f6fdf6;
    padding: 0px 60px;
}

@media(max-width:992px) {
    .about-section {
        padding: 40px 0px;
    }
}

.section5Heading {
    font-family: Playfair Display, serif;
    font-weight: 600;
    font-size: 2.5rem;
}


.btn-row {
    display: flex;
    /* flex-direction: column; */
    gap: 15px;
}

@media(max-width:992px) {

    .btn-outline-sec-5 {
        max-width: 70%;
    }
}

/* Solid Button */
.btn-solid {
    background: #1fa34a;
    color: #fff;
    padding: 12px 26px;
    border-radius: 8px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0, 128, 0, 0.25);
    transition: 0.3s;
}

.btn-solid:hover {
    background: #18893e;
}

/* Outline Button */
.btn-outline-sec-5 {
    border: 2px solid #1fa34a;
    color: #1fa34a;
    padding: 12px 26px;
    border-radius: 8px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    transition: 0.3s;
}

.btn-outline-sec-5:hover {
    background: #1fa34a;
    color: #fff;
}



.section4Para {
    color: #444;
    font-size: 1.1rem;
    margin-top: 1rem;
    line-height: 1.75rem;
    font-family: Lato, sans-serif;
}

.about-card {
    background: #ffffff;
    border: 1px solid #eef2ee;
    transition: all 0.3s ease;
}

.about-card h5 {
    font-family: "Playfair Display", serif;
}

.about-card:hover {
    transform: translateY(-4px);
    box-shadow: rgba(0, 0, 0, 0.07) 0px 8px 18px;
}

.icon-box {
    width: 50px;
    height: 50px;
    background: #e9f8ec;
    color: #25a559;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 23%;
    font-size: 18px;
}


.stats-box {
    background: #fff;
    padding: 36px 0px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    border-radius: 15px;
}

.stats-box h4 {
    font-size: 1.2rem;
}

.text-orange {
    color: var(--orange-main);
}

.text-purple {
    color: #8b3df5;
}

.sub-pera {
    color: #222;
}

.sub-pera span {
    color: #1a1a1a;
    font-weight: 500;
}


.cta-box {
    margin-top: 30px;
    background: linear-gradient(90deg, #0fa34b, #148f41);
    border-radius: 18px;
}

.cta-box h3 {
    font-family: Playfair Display, serif;
}

.cta-btn {
    font-size: 15px;
    border-radius: 10px !important;
    color: #00a500;
    background: #fff;
    padding: 12px 31px;
    text-align: center;
    text-decoration: none;
    font-weight: 500;
}

.cta-btn2 {
    text-decoration: none;
    color: #fff;
    font-weight: 500;
    text-align: center;
    border: 2px solid;
    padding: 10px 20px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.cta-btn2:hover {
    background: #fff;
    color: #00a500;
}

@media(max-width:992px) {
    .sectoin-6 {
        padding: 40px 0px 20px 0px;
    }
}

.product-section6-card {
    background: #fff;
    position: relative;
    border-radius: 10px;
    box-shadow: 0px -8px 18px rgba(149, 157, 165, 0.20);
}

.product-section6-card h5 {
    font-family: Playfair Display, serif;
}

.product-section6-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
    border-radius: 10px;
}

.product-section6-content {
    padding: 19px 14px;

    width: 100%;
    background: #ffff;
    border-radius: 0 0 10px 10px;
    transition: transform 0.4s ease;
    box-shadow: 0px 8px 24px rgba(149, 157, 165, 0.2);
}

.recommend-para {
    font-weight: 500;
}

.pin-icon-sec6 {
    position: absolute;
    top: 14px;
    left: 14px;
    background: #fff;
    color: #0db751;
    border-radius: 50%;
    padding: 5px;
    font-size: 1.25rem;
    backdrop-filter: blur(10px);
    width: 45px;
    height: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 5;
}


/* section 7 */

.section7 {
    padding: 40px 60px;
}

@media(max-width:992px) {
    .section7 {
        padding: 0px 0px 40px 0px;
    }
}

.testimonial-card {
    background: #ffffff;
    border: 1px solid #f1f1f1;
    transition: .3s ease;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: rgba(0, 0, 0, 0.08) 0px 8px 20px;
}

.stars {
    font-size: 18px;
}

.happy-badge {
    position: relative;
    gap: 64px;
}

.happy-badge img {
    border: 2px solid #fff;
}



.demoImg2 {
    position: absolute;
    top: 16px;
    left: 44px;
}

.demoImg3 {
    position: absolute;
    top: 17px;
    left: 65px;
}

.demoImg4 {
    position: absolute;
    top: 17px;
    left: 86px;
}

/* faq section */

.faq-section {
    background: #fff;
    padding: 40px 40px;
    border-bottom: 1px solid #e0e0e0;
}

@media(max-width:992px) {
    .faq-section {
        padding: 10px 0px 40px 0px;
    }
}

.faq-item {
    border: 1px solid #d9d9d9;
    border-radius: 6px;
    margin-bottom: 10px;
    overflow: hidden;
    background: #fff;
}

.faq-btn {
    width: 100%;
    padding: 14px 18px;
    font-size: 15px;
    font-weight: 600;
    border: none;
    background: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-btn .icon,
.icon-mins {
    font-size: 20px;
    font-weight: bold;
    transition: 0.3s;
}

.faq-content {
    display: none;
    padding: 15px 18px;
    border-top: 1px solid #eee;
    background: #f8f9fa;
}

.faq-item.active .faq-content {
    display: block;
}

.faq-item .icon-mins {
    display: none;
}

.faq-item.active .icon {
    display: none;
}

.faq-item.active .icon-mins {
    display: block;
    color: #00a500;
}

.cta-box-2 {
    margin-top: 30px;
    background: linear-gradient(90deg, #e9f9ef, #fff6ec);
    border-radius: 18px;
}

.cta-box-2 h3 {
    font-family: Playfair Display, serif;
    color: #000000;
}

.cta-box-2 p {
    color: #222;
}

.faq-cta-btn {
    font-size: 15px;
    border-radius: 10px !important;
    color: #fff;
    background: #16a34a;
    padding: 12px 31px;
    text-align: center;
    text-decoration: none;
    font-weight: 500;
}

.faq-cta-btn2 {
    text-decoration: none;
    color: #16a34a;
    font-weight: 500;
    text-align: center;
    border: 1px solid #16a34a;
    padding: 10px 20px;
    border-radius: 10px;
    transition: all 0.3s ease;
}


.faq-cta-btn3 {
    text-decoration: none;
    color: #fff;
    background: #22c55e;
    font-weight: 500;
    text-align: center;
    border: 2px solid;
    padding: 10px 20px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

@media(max-width:922px) {
    .faq-cbtn {
        max-width: 100%;
    }
}

/* footer section */

.footer-section {
    background: #f9fafb;
    color: #333;
    font-size: 15px;
    padding: 52px 52px;
}

@media(max-width:992px) {
    .footer-section {
        padding: 52px 20px;
    }

}

.footer-social i {
    font-size: 17px;
    cursor: pointer;
    filter: grayscale(1);

    transition: 0.3s ease;
}

.footer-social .fa-envelope,
.ri-phone-line,
.fa-whatsapp {
    color: #0fa34b;
}

.footer-social .fa-facebook {
    color: #007bff;
}

.footer-social .fa-instagram {
    color: #d62976;
}

.footer-social .fa-linkedin {
    color: #005bbd;
}

.footer-social .fa-x-twitter {
    color: var(--blue-main);
}

.footer-social .fa-youtube {
    color: red;
}

.footer-social i:hover {
    filter: none;
}

.footer-links {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    text-decoration: none;
    color: #333;
    transition: 0.3s ease;
}

.footer-links a:hover {
    color: #2e7d32;
}

.footer-border {
    width: 100%;
    height: 1px;
    background-color: #e0e0e0;
}

/* About section */

.about-hero-section {
    background: linear-gradient(180deg, #eafbf0, #fff7ed);
    padding: 50px 0px 57px 0px;
}


.main-sectionHeading {
    font-family: Playfair Display, serif;
    font-weight: 600;
    text-align: center;
    font-size: 3rem;
    padding-top: 10px;
}

.main-sectionHeading span {
    color: #1a9e50;
}

.about-title {
    font-size: 42px;
    font-weight: 700;
    color: #111;
}

.about-title span {
    color: #2e8b57;
}

.about-subtext {
    max-width: 750px;
    margin: 0 auto;
    font-size: 18px;
    color: #333;
    line-height: 1.7;
}

/* about section 2 */
.mission-img {
    border-radius: 18px;
}

.mission-title {
    font-size: 34px;
    color: #0b2c3d;
    font-family: Playfair Display, serif;
}

@media (max-width: 768px) {
    .mission-title {
        font-size: 26px;
        text-align: center;
    }

    .mission-vision-section {
        text-align: center;
    }
}

/* about section - 3 */

.about-feature-section {
    background: #f9fafb;
}

.feature-card {
    background: #ffffff;
    border-radius: 18px;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.06);
}

.feature-icon-box {
    width: 55px;
    height: 55px;
    background: #e8f9ef;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.2rem;
}

.feature-icon-box i {
    font-size: 24px;
    color: #2db36c;
}

.about-card-heading {
    font-family: Playfair Display, serif;
}

.about-feature-section h4 {
    font-size: 20px;
    color: #1d2a39;
}

/* about - teamSection */
.team-img {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
}

.team-role {
    color: #2db36c;
    font-weight: 600;
}


/* about b2b section */

.b2b-section {
    background: #0e8c43;
    color: #fff;
    padding: 80px 20px;
}

.b2b-title {
    font-size: 36px;
    font-family: Playfair Display, serif;
}

.b2b-subtext {
    font-size: 20px;
    max-width: 750px;
    margin: 0 auto;
    font-family: Lato, sans-serif;
}

.b2b-icon-box {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.b2b-icon-box i {
    font-size: 28px;
    color: #fff;
}

.b2b-btn {
    background: #ff7723;
    color: #fff;
    padding: 14px 35px;
    font-size: 17px;
    border-radius: 10px;
    font-weight: 600;
    transition: 0.3s;
}

.b2b-btn:hover {
    background: #e86f22;
    color: #fff;
}

/* about-ex */

.about-ex {
    border-bottom: 1px solid #e0e0e0;
}

/* Product page section 1 */

.productbtn {
    border-bottom: 1px solid #e0e0e0;
}

/* FILTER BUTTONS */
.filter-pill {
    padding: 10px 22px;
    border-radius: 30px;
    border: 1px solid #ddd;
    background: #fff;
    cursor: pointer;
    font-size: 15px;
    font-weight: 500;
    color: #333;
    transition: 0.3s;
}

.filter-pill:hover {
    background: #f3f3f3;
}

.filter-pill.selected {
    background: #0f8d44;
    color: #fff;
    border: none;
}

.pin-icon-products {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #ffffff;
    color: #00a500;
    border-radius: 50%;
    padding: 5px;
    font-size: 1.25rem;
    backdrop-filter: blur(10px);
    width: 45px;
    height: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 5;
}


.product-page-card {
    background: #fff;
    border-radius: 15px;
    position: relative;
    border-radius: 10px;
    margin-bottom: 0px;
    box-shadow: 0px -8px 18px rgba(149, 157, 165, 0.20);
}

.product-page-card h5 {
    font-family: Playfair Display, serif;
}

.product-page-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
    border-radius: 10px;
}

.product-page-content {
    padding: 20px 40px;
    position: absolute;
    top: 210px;
    left: 0;
    width: 100%;
    background: #ffff;
    border-radius: 0 0 10px 10px;
    transition: transform 0.4s ease;
    box-shadow: 0px 8px 24px rgba(149, 157, 165, 0.2);
}

.btn-main-3 {
    background-color: #fff;
    color: #22b55c !important;
    font-weight: 600;
    padding: 10px 50px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: none;
    transition: 0.3s;
    text-decoration: none;
}


.btn-outline-3 {
    border: 2px solid #fff;
    color: #fff !important;
    font-weight: 600;
    padding: 10px 30px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: 0.3s;
    text-decoration: none;
}

.btn-outline-3:hover {
    background-color: #fff;
    color: #22b55c !important;
}

/* contact section */

/* MAIN CARDS */
.contact-card {
    background: white;
    border-radius: 18px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.07);
    transition: 0.3s;
}

.contact-card:hover {
    transform: translateY(-5px);
}

/* ICON CIRCLE */
.icon-circle {
    width: 60px;
    height: 60px;
    background: #e8f9ef;
    /* light mint */
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.icon-circle i {
    font-size: 24px;
    color: #1d9b4f;
}

/* Contact Value */
.contact-value {
    color: #1d9b4f;
    text-decoration:none;
    font-weight: 600;
    margin-bottom: 4px;
}
.extra-box .fw-bold.mb-0{
    color:#000;
    text-decoration:none;
}
/* Contact now */
.contact-link {
    color: #1d9b4f;
    font-weight: 600;
    text-decoration: none;
}

/* Extra Contact Section */
.extra-contact {
    background: #f9f9f9;
    border-radius: 15px;
}

.extra-box {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 3px 18px rgba(0, 0, 0, 0.06);
}

/* contact-form-section */


/* Title */
.form-title span {
    color: #1d9b4f;
    /* green highlight */
}

/* Card */
.form-card {
    background: #fff;
    border-radius: 15px;
    max-width: 750px;
    box-shadow: 0 5px 28px rgba(0, 0, 0, 0.08);
}

/* Input fields */
.form-control,
.form-select {
    border-radius: 8px;
    padding: 10px 14px;
    font-size: 15px;
}

/* Submit button */
.btn-submit {
    background: #1d9b4f;
    color: #fff;
    padding: 12px 35px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    transition: 0.3s;
}

.btn-submit:hover {
    background: #168040;
}


/* location section */

.location-section {
    border-bottom: 1px solid #e0e0e0;
}

.iframe-border {
    border-radius: 20px;
}

.iframe-border iframe {
    border-radius: 20px;
}

@media(max-width:992px) {
    .flex-cbtn {
        flex-direction: column;
    }
}

@media(max-width:992px) {
    .hero-section {
        padding: 30px 0px 15px 0px;
    }

    .hero-section .main-heading {
        font-size: 2.5rem;
    }

    .btn-outline {
        background: #ffffff85;
    }

    .trust-box {
        padding-top: 30px;
    }

    .para-card-new {
        max-width: 100%;

    }
    .cta-btn2 {
        font-size: 13px;
        padding: 10px 10px;
    }
    .about-hero-section{
        padding: 25px 0px 25px 0px;
    }
    .b2b-section{
        padding: 30px 0px;
    }
    .btn-main-3{
        padding: 10px 5px;
        font-size: 12px;
    }
    .btn-outline-3{
        padding: 10px 5px;
        font-size: 12px;

    }
}