.new-bg-light {
    background-color: #f6f7f5 !important;
}
a.whatsappbtn {
    z-index: 9;
}
a.callbtn {
    z-index: 9;
}
header {
    background: #ffffffc4;
}

.secoundry-title span {
    color: var(--color-primary);
}

.appointment .form input {
    box-shadow: none;
}

.appointment .form textarea {
    box-shadow: none;
}

/* .call-action .content .btn {
    background: var(--color-primary) !important;
} */
.section-eyebrow p {
    color: var(--color-accent) !important;
}

span.why-eyebrow {
    color: var(--color-accent) !important;
}

.quality-eyebrow {
    color: var(--color-accent) !important;
}

/* home page video background */
#block {
    position: relative;
    /* height: 700px; */
    width: 100%;
    overflow: hidden;
}

/* #block::before {
    background-color: #000;
    opacity: .5;
} */

#block::before {
    content: "";
    display: inline-block;
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 0;
    background-color: #00000052;
}

.watch-story-btn {
    position: absolute;
    top: 50%;
    right: -45%;
    transform: translateY(-50%);
}

#videobcg {
    position: absolute;
    top: 0;
    left: 0;
    min-width: 100%;
    min-height: 100%;
    height: auto;
    width: auto;
    z-index: -100;
}

/* about us section */
.about-sec-floating-box {
    width: 25%;
    height: 25%;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    bottom: -10%;
    left: -10%;
    /* transform: translateY(-50%); */
    z-index: 9;
    background: #00a99d;
    font-size: 18px;
    font-weight: 700;
    text-align: center;
}

/* You'll Love section */
.fun-facts .single-fun i {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* our products section */
.blog .product-sec .single-news {
    padding: 0px;
    padding-bottom: 0;
}

.product-sec .product-head {
    /* border: 1px solid; */
    padding: 10px;
    border-radius: 10px;
    background: #f5f5f5;
}

.blog .product-sec .single-news .news-content {
    background: transparent;
}

.product {
    background-repeat: no-repeat;
    background-position: right 80%;
    background-size: auto;
}


/* =========================================================
   HEADER CSS
   Logo LEFT | Menu RIGHT | Dropdown FIX
========================================================= */

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

#mainNavbar {
    width: 100%;
    background: #fff !important;
    border-bottom: 1px solid rgba(63, 60, 63, .08);
    transition: all .3s ease;
    position: relative;
    z-index: 1030;
}

/* Keep logo on LEFT */
#mainNavbar>.container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 88px;
}

/* Logo */
#mainNavbar .navbar-brand {
    display: flex;
    align-items: center;
    margin: 0;
    padding: 10px 0 !important;
    flex-shrink: 0;
}

#mainNavbar .header-logo {
    display: block;
    width: 100px;
    max-width: 100%;
    height: auto;
}


/* =========================
   MENU - RIGHT SIDE
========================= */

#mainNavbar .navbar-collapse {
    flex-grow: 1;
    justify-content: flex-end;
}

/* Force menu to right */
#mainNavbar .navbar-nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-left: auto !important;
    gap: 2px;
}

/* Individual menu item */
#mainNavbar .nav-item {
    position: relative;
}


/* =========================
   MENU LINKS
========================= */

#mainNavbar .nav-link {
    display: flex;
    align-items: center;
    color: var(--color-accent);
    font-size: 13px;
    font-weight: 500;
    /* padding: 32px 11px !important; */
    margin: 0 !important;
    line-height: 1;
    white-space: nowrap;
    text-transform: uppercase;
    transition: color .25s ease, background-color .25s ease;
}

#mainNavbar .nav-link:hover,
#mainNavbar .nav-link:focus,
#mainNavbar .nav-link.active {
    color: var(--color-primary) !important;
    background: transparent !important;
}


/* =========================
   DROPDOWN ARROW
========================= */

#mainNavbar .dropdown-toggle::after {
    /* margin-left: 7px; */
    vertical-align: middle;
}


/* =========================
   DROPDOWN MENU
========================= */

#mainNavbar .dropdown-menu {
    position: absolute;

    top: 100%;
    left: 0;

    /* min-width: 220px; */

    margin: 0 !important;
    padding: 8px 0 !important;

    background: #fff;

    border: 0;
    border-top: 3px solid var(--color-primary);
    border-radius: 0;

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

    z-index: 1050;
}

/* Dropdown items */
#mainNavbar .dropdown-item {
    display: block;
    width: 100%;

    padding: 10px 16px !important;
    margin: 0 !important;

    color: var(--color-heading) !important;
    background: transparent !important;

    font-size: 12px;
    font-weight: 400;
    line-height: 1.4;

    white-space: normal;

    border-bottom: 1px solid rgba(63, 60, 63, .07);

    transition: all .2s ease;
}

/* Remove border from last item */
#mainNavbar .dropdown-menu li:last-child .dropdown-item {
    border-bottom: 0;
}

#mainNavbar .dropdown-item:hover,
#mainNavbar .dropdown-item:focus {
    background: rgba(0, 169, 157, .08) !important;
    color: var(--color-primary) !important;
}


/* =========================
   PRODUCTS DROPDOWN
========================= */

/* #mainNavbar .product-dropdown {
    width: 480px;
    min-width: 480px;
    max-width: 90vw;
} */

#mainNavbar .product-dropdown .dropdown-item {
    white-space: normal;
}

.navbar-toggler-icon {
    display: inline-block;
    width: auto;
    height: auto;
    vertical-align: baseline;
    content: "";
    background: no-repeat center center;
    background-size: 100% 100%;
}

/* =========================
   DESKTOP DROPDOWN
   Hover + Click both work
========================= */

@media (min-width: 992px) {

    #mainNavbar .dropdown {
        position: relative;
    }

    /*
       Hide dropdown initially.
       Bootstrap can still add .show when clicked.
    */
    #mainNavbar .dropdown-menu {
        display: block;

        visibility: hidden;
        opacity: 0;

        transform: translateY(10px);

        pointer-events: none;

        transition:
            opacity .2s ease,
            transform .2s ease,
            visibility .2s ease;
    }

    /* Show on hover */
    #mainNavbar .dropdown:hover>.dropdown-menu,

    /* Show when keyboard focused */
    #mainNavbar .dropdown:focus-within>.dropdown-menu,

    /* Show when Bootstrap adds .show */
    #mainNavbar .dropdown-menu.show {
        visibility: visible;
        opacity: 1;

        transform: translateY(0);

        pointer-events: auto;
    }

}


/* =========================
   CONTACT BUTTON
========================= */

#mainNavbar .nav-item:last-child {
    margin-left: 10px;
}

#mainNavbar .nav-item:last-child .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    white-space: nowrap;

    padding: 13px 20px !important;
}


/* =========================
   STICKY NAVBAR
========================= */

#mainNavbar.is-sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1030;
    box-shadow: 0 5px 20px rgba(0, 0, 0, .08);
    animation: headerSticky .3s ease;
    background-color: #fff;
}

/* #mainNavbar.is-sticky .nav-link {
    color: var(--color-accent) !important;
} */

@keyframes headerSticky {

    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }

}


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

@media (max-width: 991.98px) {

    /* Navbar height */
    #mainNavbar>.container {
        min-height: 75px;
        flex-wrap: wrap;
    }

    /* Smaller logo */
    #mainNavbar .header-logo {
        width: 100px;
    }

    /* Hamburger */
    #mainNavbar .navbar-toggler {
        margin-left: auto;
        padding: 8px 10px;
        border: 1px solid #ddd;
        border-radius: 3px;
        box-shadow: none !important;
        background-color: #fff;
    }

    #mainNavbar .navbar-toggler:focus {
        box-shadow: none !important;
    }

    /* Mobile menu */
    #mainNavbar .navbar-collapse {
        width: 100%;
        flex-basis: 100%;

        padding: 10px 0 15px;
    }

    #mainNavbar .navbar-nav {
        width: 100%;

        display: block;

        margin-left: 0 !important;
    }

    /* Mobile links */
    #mainNavbar .nav-link {
        width: 100%;
        justify-content: space-between;
        padding: 13px 10px !important;
        color: var(--color-accent);
        
    }


    /* Mobile dropdown */
    #mainNavbar .dropdown-menu {
        position: static !important;

        width: 100%;
        min-width: 0;
        max-width: 100%;

        margin: 0 !important;
        padding: 0 !important;

        border-top: 0;
        border-left: 3px solid var(--color-primary);

        box-shadow: none;

        transform: none !important;
    }

    #mainNavbar .dropdown-item {
        padding: 10px 20px !important;
    }

    /* Contact button */
    #mainNavbar .nav-item:last-child {
        margin-left: 0;
        margin-top: 10px;
    }

    #mainNavbar .nav-item:last-child .btn {
        width: 100%;
    }

}

/* Hero Video */

.hero-section {
    position: relative;
}

.hero-video {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;

    z-index: 0;
}


/* Video Overlay */

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgb(63 60 63) 0%, rgb(63 60 63 / 75%) 50%, rgba(237, 221, 83, 0) 100%);
    z-index: 1;
}


/* Mobile */

@media (max-width: 767.98px) {

    /* #block {
        height: 600px !important;
    } */

    .hero-video {
        object-position: center;
    }

}

/* trusted sec jo banner ke baad hai */
/* =========================================================
   HIGHLIGHT FEATURE STRIP
========================================================= */

.highlight-features {
    margin-top: -35px;
    /* margin-bottom: 30px; */
}

.highlight-card {
    position: relative;
    overflow: hidden;
    padding: 20px 15px;
    border-radius: 10px;
    border: 1px solid rgba(0, 169, 157, 0.08);
    box-shadow: 0 15px 45px rgba(63, 60, 63, 0.14) !important;
}


/* =========================================================
   FEATURE ITEM
========================================================= */

.highlight-item {
    position: relative;
    min-height: 60px;
    padding: 8px 30px;
}

.highlight-item::after {
    content: "";

    position: absolute;
    top: 8px;
    right: 0;

    width: 1px;
    height: calc(100% - 16px);

    background: rgba(0, 169, 157, 0.20);
}

.highlight-item:last-child::after {
    display: none;
}


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

.highlight-icon {
    width: 48px;
    height: 48px;

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

    margin-right: 16px;

    color: var(--color-primary);
    font-size: 31px;
}


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

.highlight-content h6 {
    color: var(--color-heading);
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 600;
    line-height: 1.35;
}

.highlight-content p {
    color: var(--color-paragraph);
    font-family: var(--font-primary);
    font-size: 13px;
    font-weight: 400;
    line-height: 1.35;
}


/* =========================================================
   HOVER
========================================================= */

.highlight-item {
    transition: transform 0.3s ease;
}

.highlight-item:hover {
    transform: translateY(-2px);
}

.highlight-item:hover .highlight-icon {
    color: var(--color-secondary);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .highlight-features {
        margin-top: -40px;
    }

    .highlight-card {
        padding: 15px 5px;
    }

    .highlight-item {
        padding: 12px 20px;
    }

    .highlight-item::after {
        height: 55px;
        top: 50%;
        transform: translateY(-50%);
    }

}


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

@media (max-width: 575px) {

    .highlight-features {
        margin-top: -30px;
        margin-bottom: 20px;
    }

    .highlight-card {
        padding: 8px 5px;
        border-radius: 14px !important;
    }

    .highlight-item {
        min-height: 65px;
        padding: 10px 12px;
    }

    .highlight-icon {
        width: 38px;
        height: 38px;
        margin-right: 10px;
        font-size: 25px;
    }

    .highlight-content h6 {
        font-size: 11px;
    }

    .highlight-content p {
        font-size: 10px;
    }

    /* Vertical divider */
    .highlight-item::after {
        height: 42px;
    }

    /* Horizontal divider between rows */
    .highlight-card .col-6:nth-child(-n+2) .highlight-item::before {
        content: "";

        position: absolute;
        left: 12px;
        right: 12px;
        bottom: -1px;

        height: 1px;

        background: rgba(0, 169, 157, 0.12);
    }

}

/* about us sec */
/* =========================================================
   ABOUT US SECTION
========================================================= */

.about-section {
    background: var(--color-bg);
    padding: 70px 0 !important;
}

.about-bg-shape {
    position: absolute;
    width: 430px;
    height: 430px;

    top: -180px;
    left: -180px;

    border-radius: 50%;

    background: rgba(0, 169, 157, 0.035);

    pointer-events: none;
}
.about-content h2 {
    line-height: 1.1em;
    font-size: 40px;
}

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

.about-image-wrap {
    padding: 0 30px 30px 0;
}

.about-image {
    position: relative;
    z-index: 2;

    overflow: hidden;

    border-radius: 18px;

    box-shadow: 0 20px 50px rgba(63, 60, 63, 0.14);
}

.about-image img {
    display: block;

    width: 100%;
    min-height: 540px;

    object-fit: cover;

    transition: transform 0.6s ease;
}

.about-image-wrap:hover .about-image img {
    transform: scale(1.025);
}


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

.about-image-border {
    position: absolute;

    left: 25px;
    right: 0;
    bottom: 5px;
    top: 25px;

    border: 2px solid var(--color-primary);

    border-radius: 18px;

    opacity: 0.25;
}


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

.about-image-label {
    position: absolute;

    top: 25px;
    left: -15px;

    z-index: 3;

    display: flex;
    align-items: center;

    gap: 10px;

    padding: 10px 18px 10px 10px;

    background: var(--color-bg);

    border-radius: 50px;

    box-shadow: 0 10px 30px rgba(63, 60, 63, 0.14);

    color: var(--color-heading);

    font-size: 12px;
    font-weight: 600;
}

.about-label-icon {
    width: 34px;
    height: 34px;

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

    border-radius: 50%;

    background: rgba(0, 169, 157, 0.1);

    color: var(--color-primary);

    font-size: 18px;
}


/* =========================================================
   EXPERIENCE BADGE
========================================================= */

.about-experience {
    position: absolute;
    left: -25px;
    bottom: 0px;
    z-index: 4;
    width: 145px;
    height: 145px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: var(--color-accent);

    border: 8px solid var(--color-bg);

    box-shadow: 0 15px 35px rgba(0, 169, 157, 0.25);

    color: var(--color-bg);

    text-align: center;
}

.experience-number {
    font-family: var(--font-primary);

    font-size: 48px;
    font-weight: 300;

    line-height: 1;
}

.experience-text {
    margin-top: 7px;

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

    line-height: 1.5;
    letter-spacing: 0.5px;
}


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

.about-content {
    padding-left: 15px;
}


/* Eyebrow */

.section-eyebrow {
    display: flex;
    align-items: center;

    gap: 10px;

    margin-bottom: 14px;
}

.section-eyebrow span {
    width: 32px;
    height: 2px;

    display: block;

    background: var(--color-secondary);
}

.section-eyebrow p {
    color: var(--color-primary);

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

    letter-spacing: 2px;
}


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

.about-title {
    max-width: 620px;
    margin-bottom: 18px;
    color: var(--color-heading) !important;
    font-family: var(--font-primary);
    font-size: clamp(24px, 3.5vw, 28px);
    font-weight: 600;
    line-height: 1.5;
    letter-spacing: 0.5px;
}

.about-title span {
    /* display: block; */

    color: var(--color-primary);
}


/* =========================================================
   INTRO
========================================================= */

.about-intro {
    max-width: 680px;

    margin-bottom: 18px;

    color: var(--color-heading);

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

    line-height: 1.75;
}


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

.about-description {
    max-width: 700px;

    margin-bottom: 13px;

    color: var(--color-paragraph);

    font-size: 14px;
    font-weight: 400;

    line-height: 1.8;
}

.about-description p {
    color: var(--color-paragraph);
    font-size: 15px;
    line-height: 1.6rem;
    text-align: left;
}


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

.about-points {
    margin-top: 20px;
    margin-bottom: 20px;
}

.about-point {
    height: 100%;

    display: flex;
    align-items: center;

    gap: 12px;

    padding: 13px 15px;

    background: rgba(0, 169, 157, 0.045);

    border: 1px solid rgba(0, 169, 157, 0.10);

    border-radius: 10px;
}

.about-point>span {
    flex-shrink: 0;

    color: var(--color-primary);

    font-size: 22px;
}

.about-point strong {
    display: block;

    margin-bottom: 2px;

    color: var(--color-heading);

    font-size: 12px;
    font-weight: 600;
}

.about-point small {
    display: block;

    color: var(--color-paragraph);

    font-size: 10px;
}


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

.about-btn {
    display: inline-flex;
    align-items: center;

    margin-top: 10px;

    padding: 12px 24px;

    border: 1px solid var(--color-primary);
    border-radius: 4px;

    background: var(--color-primary);

    color: var(--color-bg);

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

    text-transform: uppercase;
    letter-spacing: 0.4px;

    transition: all 0.3s ease;
}

.about-btn:hover {
    background: var(--color-secondary);
    border-color: var(--color-secondary);

    color: var(--color-bg);

    transform: translateY(-2px);
}


/* =========================================================
   LARGE TABLET
========================================================= */

@media (max-width: 1199px) {

    .about-image-wrap {
        padding-right: 20px;
    }

    .about-image img {
        min-height: 500px;
    }

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

    .about-title {
        font-size: 38px;
    }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .about-section {
        padding-top: 70px !important;
        padding-bottom: 70px !important;
    }

    .about-image-wrap {
        max-width: 700px;

        margin: 0 auto 20px;
    }

    .about-image img {
        min-height: 450px;
    }

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

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

}


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

@media (max-width: 575px) {

    .about-section {
        padding-top: 50px !important;
        padding-bottom: 50px !important;
    }

    .about-image-wrap {
        padding: 0 15px 20px 10px;
    }

    .about-image {
        border-radius: 12px;
    }

    .about-image img {
        min-height: 330px;
    }

    .about-image-border {
        left: 15px;
        top: 15px;
        border-radius: 12px;
    }

    .about-image-label {
        left: 0;
        top: 15px;

        padding-right: 13px;

        font-size: 10px;
    }

    .about-label-icon {
        width: 30px;
        height: 30px;
        font-size: 15px;
    }

    .about-experience {
        left: -2px;

        width: 110px;
        height: 110px;

        border-width: 6px;
    }

    .experience-number {
        font-size: 35px;
    }

    .experience-text {
        font-size: 8px;
    }

    .section-eyebrow p {
        font-size: 10px;
        letter-spacing: 1.4px;
    }

    .about-title {
        font-size: 30px;
        letter-spacing: 0.5px;
    }

    .about-intro {
        font-size: 14px;
        line-height: 1.7;
    }

    .about-description {
        font-size: 13px;
        line-height: 1.75;
    }

    .about-point {
        padding: 11px;
    }

}

/* media query  */
@media (max-width: 991px) {
    .top-contact {
        display: flex;
        justify-content: flex-end;
        align-items: center;
        gap: 20px;
        padding-bottom: 10px;
    }

    .contact-body {
        display: flex;
        flex-direction: column;
    }

    .about-sec-floating-box {
        width: 35%;
        height: 35%;
        bottom: 0;
        left: 0;
    }

    .fun-facts .single-fun span {
        margin-top: 14px;
        margin-bottom: 0px;
    }

    .testimonials h4 {
        /* border: 1px solid; */
        text-align: center !important;
    }

    button.faq-question {
        line-height: normal;
    }
}

/* counet sec style */
/* =========================================================
   WHY GREENWELL
========================================================= */

.why-greenwell {
    position: relative;

    /* background:
        linear-gradient(120deg,
            var(--color-accent) 0%,
            var(--color-accent) 55%,
            var(--color-accent) 100%); */

    color: var(--color-bg);
}


/* =========================
   BACKGROUND DECORATION
========================= */

.why-greenwell-bg {
    position: absolute;

    width: 600px;
    height: 600px;

    top: -300px;
    right: -180px;

    border-radius: 50%;

    background: #72a816;
    opacity: 0.2;

    pointer-events: none;
}

.why-greenwell::before {
    content: "";

    position: absolute;

    width: 420px;
    height: 420px;

    left: -180px;
    bottom: -280px;

    border-radius: 50%;

    background: #72a816;
    opacity: 0.2;
}


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

.why-content {
    max-width: 500px;
}

.why-eyebrow {
    display: inline-block;
    color: var(--color-primary);
    font-family: var(--font-primary);
    font-size: 22px;
    font-weight: 600;
    letter-spacing: 1.5px;
}

.why-title {
    margin: 0 0 15px;
    color: var(--color-bg);
    font-family: var(--font-primary);
    font-size: clamp(25px, 4vw, 28px);
    font-weight: 600;
    line-height: 1.08;
    letter-spacing: 0.5px;
}

.why-title span {
    display: block;
    /* color: var(--color-bg); */
    color: var(--color-primary);
}

.why-text {
    max-width: 430px;

    margin-bottom: 28px;

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

    font-size: 14px;
    font-weight: 400;

    line-height: 1.8;
}


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

.why-btn {
    display: inline-flex;
    align-items: center;

    padding: 12px 23px;

    border: 0;
    border-radius: 5px;

    background: var(--color-bg);

    color: var(--color-primary);

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

    transition: all 0.3s ease;
}

.why-btn:hover {
    background: var(--color-primary);

    color: var(--color-bg);

    transform: translateY(-2px);
}


/* =========================
   STATS
========================= */

.why-stat {
    position: relative;

    min-height: 130px;

    padding: 10px 25px;

    display: flex;
    flex-direction: column;
    justify-content: center;

    border-left: 1px solid rgba(255, 255, 255, 0.14);
}

.why-stat-number {
    margin-bottom: 5px;

    color: var(--color-primary);

    font-family: var(--font-primary);

    font-size: clamp(36px, 4vw, 30px);
    font-weight: 600;

    line-height: 1;
}

.why-stat-number span {
    color: var(--color-primary);
}

.why-stat-label {
    color: rgba(255, 255, 255, 0.78);

    font-family: var(--font-primary);

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

    line-height: 1.5;
}


/* =========================
   HOVER
========================= */

.why-stat {
    transition: all 0.3s ease;
}

.why-stat:hover {
    border-left-color: var(--color-primary);
    transform: translateX(5px);
}


/* =========================
   TABLET
========================= */

@media (max-width: 991px) {

    .why-greenwell {
        padding-top: 65px !important;
        padding-bottom: 65px !important;
    }

    .why-content {
        max-width: 650px;
    }

    .why-title {
        font-size: 32px;
    }

    .why-stat {
        min-height: 115px;
    }

}


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

@media (max-width: 575px) {

    .why-greenwell {
        padding-top: 50px !important;
        padding-bottom: 50px !important;
    }

    .why-title {
        font-size: 27px;
    }

    .why-text {
        font-size: 13px;
    }

    .why-stat {
        min-height: 100px;

        padding: 8px 15px;
    }

    .why-stat-number {
        font-size: 34px;
    }

    .why-stat-label {
        font-size: 11px;
    }

}

/* =========================================================
   QUALITY & CAPABILITIES
========================================================= */

.quality-capabilities {
    background: #f5fbfb;
}


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

.quality-image-wrap {
    /* min-height: 430px; */
    overflow: hidden;
    border-radius: 0 14px 14px 0;
    height: 100%;
    float: right;
}

.quality-image {
    /* min-height: 430px; */
    object-fit: contain;
    object-position: center;
    display: block;
    height: 100%;
    mix-blend-mode: multiply;
}


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

.quality-image-badge {
    position: absolute;

    left: 55px;
    bottom: 38px;

    display: flex;
    align-items: center;

    gap: 12px;

    padding: 12px 18px;

    background: rgba(18, 59, 74, 0.90);

    border-radius: 12px;

    color: var(--color-bg);

    box-shadow: 0 10px 30px rgba(18, 59, 74, 0.20);
}

.quality-badge-icon {
    width: 38px;
    height: 38px;

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

    color: var(--color-bg);

    font-size: 20px;
}

.quality-image-badge span {
    display: block;

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

    line-height: 1.5;

    letter-spacing: 1px;
}


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

.quality-content {
    padding: 18px 55px;

    display: flex;
    flex-direction: column;
    justify-content: center;
}


/* =========================================================
   EYEBROW
========================================================= */

.quality-eyebrow {
    margin-bottom: 7px;

    color: var(--color-primary);

    font-family: var(--font-primary);

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

    letter-spacing: 2px;
}


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

.quality-title {
    margin-bottom: 8px;
    color: var(--color-heading);
    font-family: var(--font-primary);
    font-size: 28px;
    font-weight: 600;
    line-height: 1.2;
}
.call-action .content h2 {
    font-size: 28px;
    line-height: 1.2;
}

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

.quality-description {
    max-width: 650px;

    margin-bottom: 17px;

    color: var(--color-paragraph);

    font-family: var(--font-primary);

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

    line-height: 1.55;
}


/* =========================================================
   FEATURE CARDS
========================================================= */

.quality-card {
    min-height: auto;

    padding: 20px 10px;

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

    text-align: center;

    background: var(--color-bg);

    border: 1px solid rgba(0, 169, 157, 0.06);

    border-radius: 7px;

    box-shadow: 0 4px 18px rgba(63, 60, 63, 0.06);

    transition: all 0.3s ease;
}

.quality-card:hover {
    transform: translateY(-3px);

    box-shadow: 0 10px 25px rgba(63, 60, 63, 0.10);

    border-color: rgba(0, 169, 157, 0.18);
    background-color: var(--color-accent);
}

.quality-card:hover i {
    color: #fff;
}

.quality-card:hover h6 {
    color: #fff;
}


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

.quality-card-icon {
    height: auto;

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

    margin-bottom: 5px;

    color: var(--color-primary);

    font-size: 26px;

    line-height: 1;
}

.quality-card .quality-card-icon i {
    font-size: 35px;
}


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

.quality-card h6 {
    margin: 0;

    color: var(--color-heading);

    font-family: var(--font-primary);

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

    line-height: 1.35;
    margin-top: -25px;
}


/* =========================================================
   LARGE TABLET
========================================================= */

@media (max-width: 1199.98px) {

    .quality-content {
        padding: 18px 35px;
    }

    .quality-title {
        font-size: 25px;
    }

    .quality-image-badge {
        left: 35px;
    }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991.98px) {

    .quality-image-wrap {
        min-height: 420px;

        border-radius: 14px 14px 0 0;
    }

    .quality-image {
        min-height: 420px;
    }

    .quality-content {
        padding: 35px 20px;
    }

    .quality-title {
        font-size: 28px;
    }

}


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

@media (max-width: 575.98px) {

    .quality-capabilities {
        padding-top: 25px !important;
        padding-bottom: 25px !important;
    }

    .quality-image-wrap {
        min-height: 320px;

        border-radius: 12px 12px 0 0;
    }

    .quality-image {
        min-height: 320px;
    }

    .quality-image-badge {
        left: 20px;
        bottom: 20px;

        padding: 9px 13px;

        gap: 8px;
    }

    .quality-badge-icon {
        width: 30px;
        height: 30px;

        font-size: 17px;
    }

    .quality-image-badge span {
        font-size: 9px;
    }

    .quality-content {
        padding: 28px 5px 5px;
    }

    .quality-eyebrow {
        font-size: 9px;
        letter-spacing: 1.5px;
    }

    .quality-title {
        font-size: 24px;
    }

    .quality-description {
        font-size: 11px;
    }

    .quality-card {
        min-height: 82px;
    }

}

/* faq que sytl */
/* =========================================================
   FAQ SECTION
========================================================= */

.faq-section {
    background: var(--color-bg);
    padding: 60px 0 !important;
}


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

.faq-intro {
    max-width: 390px;
}

.faq-eyebrow {
    display: inline-block;
    color: var(--color-primary);
    font-family: var(--font-primary);
    font-size: 22px;
    font-weight: 600;
    letter-spacing: 1.5px;
}

.faq-title {
    margin-bottom: 8px;
    color: var(--color-heading);
    font-family: var(--font-primary);
    font-size: clamp(25px, 4vw, 28px);
    font-weight: 600;
    line-height: 1.08;
    letter-spacing: 0.5px;
}

.faq-title span {
    display: block;
}

.faq-intro-text {
    max-width: 370px;

    margin-bottom: 25px;

    color: var(--color-paragraph);

    font-family: var(--font-primary);

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

    line-height: 1.7;
}


/* =========================================================
   VIEW ALL BUTTON
========================================================= */

.faq-view-btn {
    display: inline-flex;
    align-items: center;

    padding: 12px 22px;

    border: 1px solid var(--color-primary);
    border-radius: 5px;

    background: var(--color-primary);

    color: var(--color-bg);

    font-family: var(--font-primary);

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

    transition: all 0.3s ease;
}

.faq-view-btn:hover {
    background: var(--color-secondary);
    border-color: var(--color-secondary);

    color: var(--color-bg);

    transform: translateY(-2px);
}


.faq-question {
    font-size: 15px !important;
    border-radius: 10px;
    line-height: 1.5em !important;
    font-weight: 500 !important;

}

.faq-answer {
    font-size: 14px !important;
    line-height: 1.4em !important;
    border-bottom: none !important;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991.98px) {

    .faq-section {
        padding-top: 60px !important;
        padding-bottom: 60px !important;
    }

    .faq-intro {
        max-width: 650px;
    }

    .faq-intro-text {
        max-width: 600px;
    }

    .faq-title {
        font-size: 38px;
    }

}


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

@media (max-width: 575.98px) {

    .faq-section {
        padding-top: 45px !important;
        padding-bottom: 45px !important;
    }

    .faq-eyebrow {
        font-size: 9px;
        letter-spacing: 1.5px;
    }

    .faq-title {
        font-size: 30px;
    }

    .faq-intro-text {
        font-size: 12px;
    }

    .faq-accordion {
        box-shadow: none;
    }

    .faq-accordion .accordion-button {
        min-height: 55px;

        padding: 10px 11px;

        font-size: 10px;
    }

    .faq-number {
        width: 28px;

        font-size: 9px;
    }

    .faq-question-text {
        padding-right: 5px;
    }

    .faq-accordion .accordion-body {
        padding: 8px 15px 15px 39px;
    }

    .faq-accordion .accordion-body p {
        font-size: 11px;
    }

}

/* =========================================================
   FINAL MANUFACTURING CTA
========================================================= */

.manufacturing-cta {
    background: var(--color-bg);
}


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

.manufacturing-cta-box {
    min-height: 330px;

    background: var(--color-accent);

    box-shadow: 0 15px 45px rgba(63, 60, 63, 0.12);
}


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

/* .manufacturing-cta-image {
    position: absolute;
    inset: 0;

    background-image: url("../img/manufacturing-cta.jpg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
} */


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

.manufacturing-cta-content {
    padding: 50px 55px;
}


/* =========================================================
   EYEBROW
========================================================= */

.manufacturing-cta-eyebrow {
    display: block;

    margin-bottom: 8px;

    color: var(--color-bg);

    font-family: var(--font-primary);

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

    letter-spacing: 2px;
}


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

.manufacturing-cta-title {
    margin: 0 0 10px;

    color: var(--color-bg);

    font-family: var(--font-primary);

    font-size: clamp(38px, 4vw, 54px);
    font-weight: 600;

    line-height: 1.05;

    letter-spacing: 0.5px;
}

.manufacturing-cta-title span {
    color: var(--color-secondary);
}


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

.manufacturing-cta-text {
    margin-bottom: 25px;

    color: rgba(255, 255, 255, 0.88);

    font-family: var(--font-primary);

    font-size: 14px;
    font-weight: 400;

    line-height: 1.6;
}


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

.manufacturing-cta-btn {
    display: inline-flex;
    align-items: center;

    padding: 13px 25px;

    border: 0;
    border-radius: 5px;

    background: var(--color-bg);

    color: var(--color-heading);

    font-family: var(--font-primary);

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

    box-shadow: 0 8px 20px rgba(63, 60, 63, 0.12);

    transition: all 0.3s ease;
}

.manufacturing-cta-btn i {
    color: var(--color-primary);
}

.manufacturing-cta-btn:hover {
    background: var(--color-secondary);

    color: var(--color-bg);

    transform: translateY(-2px);
}

.manufacturing-cta-btn:hover i {
    color: var(--color-bg);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991.98px) {

    .manufacturing-cta-box {
        min-height: 310px;
    }

    .manufacturing-cta-content {
        padding: 45px 40px;
    }

    .manufacturing-cta-title {
        font-size: 42px;
    }

}


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

@media (max-width: 575.98px) {

    .manufacturing-cta {
        padding-top: 35px !important;
        padding-bottom: 35px !important;
    }

    .manufacturing-cta-box {
        min-height: 360px;

        border-radius: 14px !important;
    }

    .manufacturing-cta-image {
        background-position: 63% center;
    }

    .manufacturing-cta-content {
        padding: 40px 25px;
    }

    .manufacturing-cta-eyebrow {
        font-size: 9px;
        letter-spacing: 1.5px;
    }

    .manufacturing-cta-title {
        font-size: 34px;
    }

    .manufacturing-cta-text {
        font-size: 12px;
    }

}

.footer .footer-top:before {
    background: #00000061;
    opacity: 1;
}
.footer .footer-top {
    padding: 45px 0px;
}

ul.contactus- li {
    padding-left: 20px;
    padding-bottom: 15px;
}

/* =========================================================
   FAQ HIDDEN ITEMS
========================================================= */

.faq-item.faq-hidden {
    display: none;
}


/* =========================================================
   VIEW MORE BUTTON
========================================================= */

.faq-more-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 8px;

    padding: 11px 22px;

    border: 1px solid var(--color-accent);
    border-radius: 5px;

    background: transparent;

    color: var(--color-accent);

    font-family: var(--font-primary);

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

    cursor: pointer;

    transition: all 0.3s ease;
}

.faq-more-btn i {
    color: var(--color-accent);

    font-size: 15px;

    transition: transform 0.3s ease;
}

.faq-more-btn:hover {
    background: var(--color-accent);

    color: var(--color-bg);
}

.faq-more-btn:hover i {
    color: var(--color-bg);

    transform: rotate(90deg);
}


/* =========================================================
   REVEAL ANIMATION
========================================================= */

.faq-item.faq-reveal {
    display: block;

    animation: faqReveal 0.5s ease forwards;
}

@keyframes faqReveal {

    from {
        opacity: 0;
        transform: translateY(18px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}

/* =========================================
   PRODUCT SECTION
========================================= */

.product-section {
    background: #fff;
}

.product-item {
    transition: all 0.25s ease;
}

.product-item:hover {
    border-color: #00a99d !important;
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.product-image {
    width: 82px;
    height: 82px;
    background: #f7f9f8;
}

.product-image img {
    width: 70px;
    height: 70px;
    object-fit: contain;
}

.product-content > span {
    color: #72a816;
    font-size: 10px;
    letter-spacing: 0.8px;
}

.product-name {
    font-size: 16px;
}

.product-link {
    color: #00a99d;
    font-size: 12px;
}

.product-arrow {
    width: 34px;
    height: 34px;
    background: #00a99d;
    color: #fff;
    font-size: 15px;
    transition: all 0.2s ease;
}

.product-arrow:hover {
    background: #72a816;
    color: #fff;
}


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

@media (max-width: 575.98px) {

    .product-image {
        width: 70px;
        height: 70px;
    }

    .product-image img {
        width: 60px;
        height: 60px;
    }

    .product-name {
        font-size: 14px;
    }

    .product-link {
        font-size: 11px;
    }

}

/* =========================================
   OUR PRODUCT SECTION
========================================= */
.menu-dropdown-arrow {
    /* border: 1px solid red; */
    font-size: 20px;
    transform: rotate(90deg);
    margin-left: 10px;
    margin-top: 2px;
}
/* .dropdown-toggle::after {
    display: none;
} */
.product-section {
    padding: 90px 0;
}
.product-content {
    padding-left: 15px;
}

/* =========================================
   PRODUCT ITEM
========================================= */

.product-item {
    padding: 10px;
}


/* =========================================
   PRODUCT CIRCLE
========================================= */

.product-circle-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
}

.product-circle {
    width: 170px;
    height: 170px;
    border: 2px solid #b5b5b5;
    border-radius: 50%;
    background: var(--color-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: .3s ease;
}

.product-circle img {
    width: 82%;
    height: 82%;
    object-fit: contain;
    transition: .3s ease;
}


/* =========================================
   HOVER
========================================= */

.product-item:hover .product-circle {
    border-color: var(--color-primary);
    transform: translateY(-4px);
}
.product-item:hover .product-circle img {
    transform: scale(1.05);
}
.product-item:hover .product-name {
    color: var(--color-primary);
}


/* =========================================
   PRODUCT NAME
========================================= */

.product-name {
    margin: 6px 0 8px;
    color: var(--color-accent);
    font-family: var(--font-primary);
    font-size: 17px;
    font-weight: 700;
    line-height: 1.3;
}


/* =========================================
   PRODUCT LINK
========================================= */

.product-link {
    display: inline-flex;

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

    gap: 8px;

    color: var(--color-accent);

    font-family: var(--font-primary);

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

    text-decoration: none;

    transition: .3s ease;
}

.product-link:hover {
    color: var(--color-primary);
}

.product-link i {
    transition: transform .3s ease;
}

.product-link:hover i {
    transform: translateX(5px);
}


/* =========================================
   OWL CAROUSEL
========================================= */

.product-carousel {
    position: relative;
}

.product-carousel .owl-stage {
    display: flex;
    align-items: flex-start;
}

.product-carousel .owl-item {
    display: flex;
    justify-content: center;
}


/* =========================================
   OWL NAVIGATION
========================================= */

.product-carousel .owl-nav {
    margin: 0;
}

.product-carousel .owl-nav button.owl-prev,
.product-carousel .owl-nav button.owl-next {
    position: absolute;

    top: 40%;

    width: 42px;
    height: 42px;

    margin: 0;

    border-radius: 50%;

    background: var(--color-primary);

    color: var(--color-bg);

    font-size: 22px;

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

    transition: .3s ease;
}

.product-carousel .owl-nav button.owl-prev {
    left: -55px;
}

.product-carousel .owl-nav button.owl-next {
    right: -55px;
}

.product-carousel .owl-nav button:hover {
    background: var(--color-secondary);
}


/* Remove default Owl dots */

.product-carousel .owl-dots {
    display: none;
}


/* =========================================
   LARGE SCREEN
========================================= */

@media (max-width: 1399.98px) {

    .product-circle {
        width: 200px;
        height: 200px;
    }

}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991.98px) {

    .product-circle {
        width: 210px;
        height: 210px;
    }

    .product-carousel .owl-nav button.owl-prev {
        left: -20px;
    }

    .product-carousel .owl-nav button.owl-next {
        right: -20px;
    }

}


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

@media (max-width: 767.98px) {

    .product-section {
        padding: 65px 0;
    }

    .product-circle {
        width: 150px;
        height: 150px;
    }

    .product-name {
        font-size: 13px;
        margin: 14px 0 7px;
    }

    .product-link {
        font-size: 13px;
    }

    .product-carousel .owl-nav button.owl-prev,
    .product-carousel .owl-nav button.owl-next {
        width: 35px;
        height: 35px;

        font-size: 18px;
    }

    .product-carousel .owl-nav button.owl-prev {
        left: -5px;
    }

    .product-carousel .owl-nav button.owl-next {
        right: -5px;
    }

}
.owl-prev i, .owl-next i {
    color: #fff;
}
.section-title h2 {
    font-size: 40px;
    line-height: 1.1em;
}



/* new deisng css is here */
.about-section .about-visual {
    min-height: 500px;
}

/* .about-section .about-main-img {
    width: 68%;
    height: 350px;
    border-radius: 25px;
} */

.about-section .about-small-img {
    width: 54%;
    height: 240px;
    right: 0;
    bottom: 0;
    border-radius: 25px;
}

.about-section .about-badge {
    top: 50px;
    left: 46%;
    z-index: 2;
    width: 190px;
    background: var(--color-primary);
    transform: rotate(-2deg);
}

.about-section .about-title {
    font-family: var(--font-secondary);
    font-size: clamp(30px, 4vw, 36px);
    line-height: 1.1;
}

/* .about-section .about-title span {
    font-style: italic;
} */

.about-section .feature-icon {
    width: 20px;
    height: 20px;
    font-size: 9px;
    background: var(--color-primary);
}

@media (max-width: 991px) {
    .about-section .about-visual {
        min-height: 450px;
    }
}

@media (max-width: 575px) {
    .about-section .about-visual {
        min-height: 380px;
    }

    /* .about-section .about-main-img {
        height: 250px;
    } */

    .about-section .about-small-img {
        height: 180px;
    }

    .about-section .about-badge {
        left: 40%;
        width: 160px;
    }
}

/* cta styles */
#contact {
    background: linear-gradient(90deg, rgb(0 169 157 / 80%) 0%, rgb(0 169 157 / 70%) 50%, rgb(0 169 157 / 40%) 100%);
}

/* footer */
/* =========================================================
   GREENWELL CTA
========================================================= */

.greenwell-cta {
	background:
		linear-gradient(
			105deg,
			#35b8b0 0%,
			#54c5bf 48%,
			#91d8d2 100%
		);

	padding-top: 65px !important;
	padding-bottom: 65px !important;
}


/* subtle CTA decoration */

.greenwell-cta::after {
	content: "";
	position: absolute;
	width: 380px;
	height: 380px;
	border: 1px solid rgba(255, 255, 255, .10);
	border-radius: 50%;
	right: -180px;
	top: -220px;
}


/* CTA title */

.cta-title {
	color: var(--color-heading);
	font-family: var(--font-primary);
	font-size: clamp(25px, 3vw, 28px);
	font-weight: 600;
	line-height: 1.2;
	max-width: 760px;
}


/* CTA paragraph */

.cta-text {
	color: #ffffff;
	font-size: 15px;
	line-height: 1.7;
	max-width: 800px;
}


/* CTA button */

.greenwell-cta-btn {
	background: var(--color-primary);
	color: #ffffff;
	border: 1px solid var(--color-primary);
	border-radius: 5px;
	font-size: 16px;
	font-weight: 600;
	box-shadow: 0 10px 25px rgba(0, 0, 0, .08);
	transition: all .25s ease;
}


.greenwell-cta-btn:hover {
	background: #008f86;
	border-color: #008f86;
	color: #ffffff;
	transform: translateY(-2px);
	box-shadow: 0 14px 30px rgba(0, 0, 0, .12);
}



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

.greenwell-footer {

	--footer-bg: #003b36;
	--footer-text: #c3d8d5;
	--footer-heading: #ffffff;
	--footer-border: rgba(255, 255, 255, .12);

	background: var(--footer-bg);

	color: var(--footer-text);
}


/* =========================================================
   FOOTER LOGO
========================================================= */

.greenwell-footer-logo {
	width: 205px;
	max-width: 100%;
}


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

.footer-description {
	color: var(--footer-text);
	font-size: 14px;
	line-height: 1.8;
	max-width: 410px;
}


/* =========================================================
   FOOTER HEADINGS
========================================================= */

.footer-title {
	position: relative;
	display: inline-block;
	color: var(--footer-heading);
	font-size: 20px;
	font-weight: 600;
	margin-bottom: 15px;
	padding-bottom: 10px;
}


.footer-title::after {
	content: "";

	position: absolute;

	left: 0;
	bottom: 0;

	width: 42px;
	height: 2px;

	background: var(--color-primary);
}


/* =========================================================
   SOCIAL ICONS
========================================================= */

.footer-social {
	width: 40px;
	height: 40px;

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

	border: 1px solid rgba(255, 255, 255, .18);

	border-radius: 50%;

	color: #ffffff;

	font-size: 14px;

	transition: all .25s ease;
}


.footer-social:hover {
	background: var(--color-primary);
	border-color: var(--color-primary);

	color: #ffffff;

	transform: translateY(-3px);
}



/* =========================================================
   FOOTER LINKS
========================================================= */

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


.footer-links li:last-child {
	margin-bottom: 0;
}
.footer-contact .footer-contact-icon i {
    color: var(--footer-text);
}


.footer-links a {
	color: var(--footer-text);
	font-size: 14px;
	line-height: 1.5;
	display: inline-flex;
	align-items: center;
    gap: 10px;
	transition: all .2s ease;
}

.social-icons {
    gap: 10px;
}
.social-icons a i {
    color: var(--footer-text);
}
/* .footer-links a::before {
	content: "\f105";

	font-family: "Font Awesome 6 Free";
	font-weight: 900;

	color: var(--color-primary);

	font-size: 10px;

	margin-right: 10px;

	transition: transform .2s ease;
} */


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

	transform: translateX(3px);
}


.footer-links a:hover::before {
	transform: translateX(2px);
}



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

.footer-contact {
	font-size: 14px;
}


.footer-contact-icon {
	width: 38px;
	height: 38px;

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

	background: rgba(255, 255, 255, .07);

	border-radius: 8px;

	color: var(--color-primary);

	font-size: 15px;
}


.footer-contact strong {
	color: #ffffff;
	font-size: 14px;
	font-weight: 600;
}


.footer-contact p,
.footer-contact a {
	color: var(--footer-text);

	font-size: 14px;

	line-height: 1.7;

	text-decoration: none;

	transition: color .2s ease;
}


.footer-contact a:hover {
	color: var(--color-primary);
}



/* =========================================================
   COPYRIGHT
========================================================= */

.footer-border {
	border-color: var(--footer-border) !important;
}


.footer-copyright,
.footer-designed {
	color: #9dbab6;

	font-size: 13px;

	line-height: 1.6;
}


.footer-designed a {
	color: #ffffff;

	text-decoration: none;

	transition: color .2s ease;
}


.footer-designed a:hover {
	color: var(--color-primary);
}



/* =========================================================
   DECORATIVE FOOTER CIRCLES
========================================================= */

.footer-decoration {
	position: absolute;

	width: 320px;
	height: 320px;

	border: 1px solid rgba(0, 169, 157, .08);

	border-radius: 50%;

	pointer-events: none;
}


.footer-decoration-left {
	left: -220px;
	bottom: -200px;

	box-shadow:
		0 0 0 25px rgba(0, 169, 157, .025),
		0 0 0 50px rgba(0, 169, 157, .02),
		0 0 0 75px rgba(0, 169, 157, .015);
}


.footer-decoration-right {
	right: -220px;
	top: -200px;

	box-shadow:
		0 0 0 25px rgba(0, 169, 157, .025),
		0 0 0 50px rgba(0, 169, 157, .02),
		0 0 0 75px rgba(0, 169, 157, .015);
}



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

.footer-float-btn {
	width: 48px;
	height: 48px;

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

	border-radius: 50%;

	color: #ffffff;

	font-size: 19px;

	text-decoration: none;

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

	transition: all .25s ease;
}


.footer-float-btn:hover {
	color: #ffffff;

	transform: translateY(-3px);
}


.whatsapp-btn {
	background: #25d366;
}


.call-btn {
	background: var(--color-primary);
}



/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991.98px) {

	.greenwell-cta {
		padding-top: 50px !important;
		padding-bottom: 50px !important;
	}

	.cta-title {
		font-size: 32px;
	}

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

	.greenwell-footer-logo {
		width: 190px;
	}

	.footer-title {
		font-size: 19px;
	}

}



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

@media (max-width: 767.98px) {

	.greenwell-cta {
		padding-top: 45px !important;
		padding-bottom: 45px !important;
	}

	.cta-title {
		font-size: 28px;
	}

	.cta-text {
		font-size: 14px;
		line-height: 1.7;
	}

	.greenwell-cta-btn {
		font-size: 14px;
	}

	.greenwell-footer .row {
		--bs-gutter-y: 2.5rem;
	}

	.footer-description {
		font-size: 13px;
	}

	.footer-title {
		font-size: 18px;
		margin-bottom: 20px;
	}

	.footer-links a {
		font-size: 13px;
	}

	.footer-contact p,
	.footer-contact a {
		font-size: 13px;
	}

	.footer-copyright,
	.footer-designed {
		font-size: 12px;
	}

	.footer-decoration {
		width: 220px;
		height: 220px;
	}

	.footer-decoration-left {
		left: -170px;
		bottom: -150px;
	}

	.footer-decoration-right {
		right: -170px;
		top: -150px;
	}

}



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

@media (max-width: 575.98px) {

	.cta-title {
		font-size: 25px;
	}

	.greenwell-cta-btn {
		width: 100%;
	}

	.greenwell-footer-logo {
		width: 180px;
	}

	.footer-social {
		width: 38px;
		height: 38px;
	}

}

/* header css */
/* =========================================================
   GREENWELL HEADER
   Uses existing GreenWell global variables
========================================================= */

.greenwell-header {
    position: relative;
    z-index: 999;
    font-family: var(--font-primary);
}


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

#mainNavbar {
    /* min-height: 106px; */
    background: var(--color-bg);
    box-shadow: 0 5px 25px rgba(63, 60, 63, 0.06);
    transition: all 0.3s ease;
}

.greenwell-brand {
    flex-shrink: 0;
}

.greenwell-brand .header-logo {
    width: 155px;
    max-height: 82px;
    object-fit: contain;
}


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

#mainNavbar .navbar-nav {
    height: 100%;
}

#mainNavbar .nav-link {
    position: relative;

    display: flex;
    align-items: center;

    height: 80px;

    padding: 0 12px !important;

    color: var(--color-heading);

    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 600;

    white-space: nowrap;

    transition: color 0.25s ease;
}

#mainNavbar .nav-link:hover,
#mainNavbar .nav-link.active,
#mainNavbar .show > .nav-link {
    color: var(--color-primary);
}


/* Active Home line */

#mainNavbar .nav-link.active::after {
    content: "";

    position: absolute;

    left: 12px;
    right: 12px;
    bottom: 25px;

    height: 2px;

    background: var(--color-primary);
}


/* Dropdown arrow */

#mainNavbar .dropdown-toggle::after {
    /* margin-left: 7px; */
    border-top-width: 0px;
    /* border-right-width: 3px;
    border-left-width: 3px; */
}



/* =========================================================
   PRODUCTS MEGA MENU
   FULL VIEWPORT WIDTH
========================================================= */

.mega-dropdown {
    position: static !important;
}

.mega-menu {
    position: absolute !important;

    top: 100%;
    left: 0 !important;
    right: auto !important;

    width: 100vw !important;
    max-width: none !important;

    margin: 0 !important;
    padding: 0 !important;

    transform: none !important;

    background: var(--color-bg);

    border: 0 !important;
    border-radius: 0 0 20px 20px;

    box-shadow: 0 20px 55px rgba(63, 60, 63, 0.14);

    overflow: hidden;

    z-index: 9999;
}
.mega-menu > .container-fluid {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
}

.mega-menu .row {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
}

/* =========================================================
   HOVER OPEN
   Desktop only
========================================================= */

@media (min-width: 992px) {

    .mega-dropdown:hover > .mega-menu {
        display: block;
    }

    .mega-dropdown:hover > .nav-link {
        color: var(--color-primary);
    }

}


/* =========================================================
   LEFT INTRO PANEL
========================================================= */

.mega-intro {
    position: relative;

    min-height: 500px;

    padding: 38px 30px 0;

    background:
        linear-gradient(
            180deg,
            rgba(0, 169, 157, 0.08) 0%,
            rgba(114, 168, 22, 0.08) 100%
        );

    overflow: hidden;
}

.mega-intro-label {
    display: block;

    margin-bottom: 13px;

    color: var(--color-primary);

    font-family: var(--font-primary);
    font-size: 10px;
    font-weight: 700;

    letter-spacing: 3px;
}

.mega-intro h3 {
    max-width: 270px;

    margin: 0 0 16px;

    color: var(--color-heading);

    font-family: var(--font-primary);
    font-size: 30px;
    line-height: 1.08;
    font-weight: 700;
}

.mega-intro h3 span {
    display: block;
    color: var(--color-primary);
}

.mega-intro p {
    max-width: 275px;

    margin-bottom: 22px;

    color: var(--color-paragraph);

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


/* =========================================================
   VIEW ALL BUTTON
========================================================= */

.mega-intro-btn {
    display: inline-flex;
    align-items: center;
    gap: 13px;

    padding: 13px 20px;

    color: #fff;

    background: var(--color-accent);

    border-radius: 50px;

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

    text-decoration: none;

    transition: all 0.25s ease;
}

.mega-intro-btn:hover {
    color: #fff;
    background: var(--color-primary);
    transform: translateY(-2px);
}

.mega-intro-btn i {
    font-size: 11px;
}


/* =========================================================
   INTRO PRODUCT IMAGE
========================================================= */
.mega-product-area .row.g-3 > div {
    margin-bottom: 10px;
    padding-left: 0;
}
.mega-intro-products {
    /* position: absolute;
    left: 0;
    right: 0;
    bottom: -5px; */

    text-align: center;

    pointer-events: none;
}

.mega-intro-products img {
    width: 220px;
    height: 155px;

    object-fit: contain;
    object-position: center bottom;
}


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

/* .mega-product-area {
    padding: 28px 28px 30px;
} */


/* =========================================================
   PRODUCT CARD
========================================================= */

.mega-product-item {
    min-height: 82px;

    display: flex;
    align-items: center;

    gap: 11px;

    padding: 10px 11px;

    color: var(--color-heading);

    background: var(--color-bg);

    border: 1px solid rgba(63, 60, 63, 0.10);
    border-radius: 12px;

    text-decoration: none;

    transition:
        transform 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.25s ease,
        background 0.25s ease;
}

.mega-product-item:hover {
    color: var(--color-heading);

    background: rgba(0, 169, 157, 0.035);

    border-color: rgba(0, 169, 157, 0.35);

    transform: translateY(-2px);

    box-shadow: 0 9px 24px rgba(0, 169, 157, 0.08);
}


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

.mega-icon {
    width: 44px;
    min-width: 44px;
    height: 44px;

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

    color: var(--color-primary);

    background: rgba(0, 169, 157, 0.08);

    border-radius: 12px;

    font-size: 17px;

    transition: all 0.25s ease;
}

.mega-icon i {
    line-height: 1;
}

.mega-product-item:hover .mega-icon {
    color: #fff;
    background: var(--color-primary);
}


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

.mega-product-text {
    flex: 1;
    min-width: 0;
}

.mega-product-text strong {
    display: block;

    color: var(--color-heading);

    font-family: var(--font-primary);
    font-size: 12px;
    line-height: 1.25;
    font-weight: 700;
}

.mega-product-text small {
    display: block;

    margin-top: 4px;

    color: var(--color-paragraph);

    font-family: var(--font-primary);
    font-size: 10px;
    line-height: 1.25;
}


/* =========================================================
   PRODUCT ARROW
========================================================= */

.mega-arrow {
    width: 29px;
    min-width: 29px;
    height: 29px;

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

    color: var(--color-primary);

    background: rgba(0, 169, 157, 0.08);

    border-radius: 50%;

    font-size: 10px;

    transition: all 0.25s ease;
}

.mega-product-item:hover .mega-arrow {
    color: #fff;
    background: var(--color-primary);
}


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

.greenwell-quote-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;

    padding: 13px 20px;

    color: #fff !important;

    background: var(--color-primary);

    border-radius: 50px;

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

    text-decoration: none;

    transition: all 0.25s ease;
}

.greenwell-quote-btn:hover {
    color: #fff !important;
    background: var(--color-accent);

    transform: translateY(-1px);
}

.greenwell-quote-btn i {
    font-size: 11px;
}


/* =========================================================
   STICKY NAVBAR
========================================================= */

#mainNavbar.is-sticky {
    position: fixed;

    top: 0;
    left: 0;
    right: 0;

    min-height: 82px;

    background: var(--color-bg);

    box-shadow: 0 8px 30px rgba(63, 60, 63, 0.12);

    animation: greenwellSticky 0.25s ease;
}

/* #mainNavbar.is-sticky .nav-link {
    height: 82px;
} */

#mainNavbar.is-sticky .nav-link.active::after {
    bottom: 18px;
}

#mainNavbar.is-sticky .greenwell-brand .header-logo {
    width: 130px;
    max-height: 65px;
}

@keyframes greenwellSticky {

    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1199.98px) {

    #mainNavbar .nav-link {
        padding-left: 7px !important;
        padding-right: 7px !important;

        font-size: 11px;
    }

    .greenwell-brand .header-logo {
        width: 135px;
    }

    .greenwell-quote-btn {
        padding: 11px 15px;
    }

    .mega-menu {
        width: calc(100vw - 24px);
    }

}


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

@media (max-width: 991.98px) {

    #mainNavbar {
        min-height: 78px;
    }

    .greenwell-brand .header-logo {
        width: 130px;
        max-height: 68px;
    }

    #mainNavbar .navbar-collapse {
        padding: 15px 0 20px;
    }

    #mainNavbar .nav-link {
        height: auto;
        padding: 12px 0 !important;
    }

    #mainNavbar .nav-link.active::after {
        display: none;
    }


    /* Mobile mega menu */

    .mega-dropdown {
        position: relative;
    }

    .mega-menu {
        position: static !important;

        width: 100%;

        transform: none;

        border: 1px solid rgba(63, 60, 63, 0.10) !important;

        border-radius: 12px;

        box-shadow: none;
    }

    .mega-intro {
        min-height: auto;

        padding: 25px;

        border-radius: 12px 12px 0 0;
    }

    .mega-intro h3 {
        max-width: 100%;
        font-size: 25px;
    }

    .mega-intro p {
        max-width: 100%;
    }

    .mega-intro-products {
        display: none;
    }

    .mega-product-area {
        padding: 18px;
    }

}


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

@media (max-width: 575.98px) {

    .greenwell-brand .header-logo {
        width: 115px;
    }

    .mega-product-area {
        padding: 12px;
    }

    .mega-product-item {
        min-height: 70px;
    }

    .mega-icon {
        width: 40px;
        min-width: 40px;
        height: 40px;
    }

    .mega-product-text strong {
        font-size: 11px;
    }

    .mega-product-text small {
        font-size: 9px;
    }

}

/* banner make slidr */
/* =========================================================
   GREENWELL HERO SLIDER
========================================================= */

.hero-slider {
    position: relative;
    width: 100%;
}

.hero-slide {
    position: relative;
    min-height: 550px;
    height: 75vh;

    display: flex;
    align-items: center;

    overflow: hidden;
}


/* =========================================================
   BACKGROUND IMAGE
   KEN BURNS EFFECT
========================================================= */

.hero-bg {
    position: absolute;
    inset: -5%;

    width: 110%;
    height: 110%;

    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;

    transform: scale(1);
}


/*
   Every active slide starts the zoom animation.
*/
.carousel-item.active .hero-bg {
    animation: heroKenBurns 7s ease-in-out forwards;
}


/* =========================================================
   KEN BURNS
   Zoom In + Slight Movement + Zoom Out Feel
========================================================= */

@keyframes heroKenBurns {

    0% {
        transform: scale(1);
    }

    45% {
        transform: scale(1.08);
    }

    100% {
        transform: scale(1.02);
    }

}


/* =========================================================
   DARK OVERLAY
========================================================= */

.hero-overlay {
    position: absolute;
    inset: 0;

    z-index: 1;

    background:
        linear-gradient(
            90deg,
            rgba(20, 22, 23, 0.78) 0%,
            rgba(20, 22, 23, 0.62) 45%,
            rgba(20, 22, 23, 0.25) 100%
        );
}


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

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 850px;
    /* padding: 70px 0; */
}


/* Eyebrow */

.hero-eyebrow {
    display: block;
    /* margin-bottom: 18px; */
    color: var(--color-primary);
    font-family: var(--font-primary);
    font-size: 17px;
    font-weight: 700;
    letter-spacing: 1.5px;
}


/* Heading */

.hero-content h1 {
    margin: 0 0 15px;
    color: #fff;
    font-family: var(--font-primary);
    font-size: clamp(25px, 5vw, 30px);
    font-weight: 700;

    line-height: 1.02;

    letter-spacing: 1px;

    text-transform: uppercase;
}

.hero-content h1 span {
    color: var(--color-primary);
}


/* Description */

.hero-content p {
    max-width: 650px;

    margin-bottom: 30px;

    color: #fff;

    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.7;
}


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

.hero-btn {
    display: inline-flex;
    align-items: center;

    padding: 15px 27px;

    color: #fff;

    background: var(--color-primary);

    border: 1px solid var(--color-primary);

    font-family: var(--font-primary);
    font-size: 13px;
    font-weight: 600;

    letter-spacing: 1px;

    text-decoration: none;

    transition: all .25s ease;
}

.hero-btn:hover {
    color: #fff;

    background: var(--color-accent);

    border-color: var(--color-accent);

    transform: translateY(-2px);
}


/* =========================================================
   SLIDER ARROWS
========================================================= */

.hero-slider-arrow {
    position: absolute;

    top: auto;
    bottom: 45px;

    width: auto;
    height: auto;

    opacity: 1;

    z-index: 5;
}


/* Previous */

.carousel-control-prev.hero-slider-arrow {
    left: 22px;
    top: 50%;
    transform: translateY(-50%);
    /* border-radius: 50%; */
    /* overflow: hidden; */
    /* color: var(--color-primary); */
    /* border: none; */
    background: transparent;
    border: none;
}


/* Next */

.carousel-control-next.hero-slider-arrow {
    right: 22px;
    top: 50%;
    background: transparent;
    border: none;
    transform: translateY(-50%);
}

.table {
    height: auto !important;
}
.hero-arrow-icon {
    /* width: 48px; */
    /* height: 48px; */
    /* display: flex; */
    /* align-items: center; */
    /* justify-content: center; */
    /* color: var(--color-bg); */
    /* background: var(--color-primary); */
    /* border: 2px solid var(--color-primary); */
    font-size: 36px;
    /* backdrop-filter: blur(8px); */
    transition: all .25s ease;
}


.hero-slider-arrow:hover .hero-arrow-icon {
    color: #ff0404;
    /* background: var(--color-accent);
    border-radius: 50%; */

}


/* =========================================================
   INDICATORS
========================================================= */

.hero-indicators {
    position: absolute;

    right: auto;
    left: 50%;

    bottom: 30px;

    width: auto;

    margin: 0;

    transform: translateX(-50%);

    z-index: 5;

    gap: 7px;
}

.hero-indicators button {
    width: 28px;
    height: 3px;

    margin: 0;

    border: 0;

    opacity: .5;

    background: #fff;

    transition: all .3s ease;
}

.hero-indicators button.active {
    width: 50px;

    opacity: 1;

    background: var(--color-primary);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991.98px) {

    .hero-slide {
        min-height: 500px;
        height: 70vh;
    }

    .hero-content {
        max-width: 720px;
        padding: 60px 0;
    }

    .hero-content h1 {
        font-size: clamp(38px, 7vw, 62px);
    }

    .hero-content p {
        font-size: 15px;
    }

}


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

@media (max-width: 575.98px) {

    .hero-slide {
        min-height: 520px;
        height: 78vh;
    }

    .hero-content {
        padding: 50px 0 100px;
    }

    .hero-eyebrow {
        font-size: 13px;
        letter-spacing: 2px;
    }

    .hero-content h1 {
        font-size: 36px;

        line-height: 1.05;

        letter-spacing: .5px;
    }

    .hero-content p {
        max-width: 100%;

        font-size: 14px;
        line-height: 1.6;
    }

    .hero-btn {
        padding: 13px 20px;
        font-size: 11px;
    }


    /* Mobile arrows */

    .carousel-control-prev.hero-slider-arrow {
        /* right: 70px;
        bottom: 28px; */
        display: none;
    }

    .carousel-control-next.hero-slider-arrow {
        /* right: 15px;
        bottom: 28px; */
        display: none;
    }

    .hero-arrow-icon {
        width: 42px;
        height: 42px;
    }


    /* Mobile indicators */

    .hero-indicators {
        left: 20px;

        bottom: 46px;

        transform: none;
    }

}