@font-face {
    font-family: 'head-font';
    src: url('../fonts/NeueMontreal-Regular.otf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'body-font';
    src: url('../fonts/NeueMontreal-Regular.otf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

/* ::selection {
    color: var(--color-white) !important;
    background-color: var(--color-primary, #d6f5d6);
    text-shadow: none;
} */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden !important;
}

body {
    /* background-color: #000; */
    background-color: #fff;
    overflow-x: hidden !important;
}

:root {
    --primary-color: #163A19;
    --secondary-color: #0171B8;
    --hover-color: #E94E12;
    --para-color: #263238;
    --title-color: #E3CA47;
    --background-color: #F6F4EF;
    --white: #ffffff;
    --black: #000000;

    --font-head: 'head-font';
    --font-para: 'body-font';

    --light-gray: #f4f4f4;
    --dark-gray: #222222;

}



a {
    text-decoration: none;
}

a,
button,
.nav-link {
    transition: 0.3s ease;
}


h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    font-family: var(--font-head);
}

a {
    font-family: var(--font-head);

}

p {
    font-family: var(--font-body);
}




/* ==========================================================================
                               common code
============================================================================ */
.container-fluid {
    width: 70%;
}

.custom-btn {
    margin-top: 25px;
}

.custom-btn {
    margin-top: 25px;
}

.custom-btn a {
    position: relative;
    display: inline-block;
    font-size: 18px;
    font-weight: 600;
    color: #163A19;
    background-color: #ffffff;
    padding: 8px 35px;
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    transition: color 0.4s ease, transform 0.3s ease;
}

.custom-btn a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0%;
    background: linear-gradient(90deg, #1b4d1f, #27ae60);
    z-index: -1;
    border-radius: 12px;
    transition: height 0.4s ease;
}

.custom-btn a:hover::before {
    height: 100%;
}

.custom-btn a:hover {
    color: #fff;
    transform: translateY(-2px);
}

.custom-btn a span {
    position: relative;
    z-index: 1;
}

.header-center {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
}

.sub-main {
    font-size: 18px;
    color: var(--para-color);
    border: 1px solid var(--para-color);
    border-radius: 6px;
    padding: 5px 28px;
    display: inline-block;
    margin-bottom: 15px;
}

.main-head {
    font-size: 26px;
    color: var(--para-color);
    font-weight: 700;
    margin-bottom: 10px;
}

.header-center p {
    font-size: 16px;
    width: 100%;
    max-width: 500px;
    text-align: center;
    color: var(--para-color);
}



.btn-custom {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 25px;
}

.btn-custom a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 20px;
    background: #3B9A07;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.btn-custom .arrow-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-custom .arrow {
    width: 12px;
    height: 2px;
    background: #fff;
    position: relative;
    transition: all 0.3s ease;
}

.btn-custom .arrow::before {
    content: "";
    position: absolute;
    top: -3px;
    right: 0;
    width: 7px;
    height: 7px;
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
    transform: rotate(-45deg);
    transition: all 0.3s ease;
}

.btn-custom a:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
    /* box-shadow: 0 12px 28px rgba(22, 58, 25, 0.418); */
}

.btn-custom a:hover .arrow {
    width: 16px;
}

.btn-custom a:hover .arrow::before {
    right: -2px;
}

/* ---------- PAGE VISIBILITY ---------- */
.page-hidden {
    opacity: 0;
    visibility: hidden;
}

.page-visible {
    opacity: 1;
    visibility: visible;
    transition: opacity 0.6s ease;
}

/* ---------- PRELOADER ---------- */
.preloader {
    position: fixed;
    inset: 0;
    background: #ffffff;
    /* 🔥 WHITE BACKGROUND */
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.preloader.hide {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

/* ---------- LOADER ---------- */

.wrapper {
    width: 200px;
    height: 60px;
    position: relative;
}

/* 🔵 BLACK DOTS */
.circle {
    width: 20px;
    height: 20px;
    position: absolute;
    border-radius: 50%;
    background-color: #000000;
    /* 🔥 BLACK DOTS */
    left: 15%;
    transform-origin: 50%;
    animation: bounce 0.5s alternate infinite ease;
}

@keyframes bounce {
    0% {
        top: 60px;
        height: 5px;
        border-radius: 50px 50px 25px 25px;
        transform: scaleX(1);
    }

    40% {
        height: 20px;
        border-radius: 50%;
        transform: scaleX(0);
    }

    100% {
        top: 0%;
    }
}

.circle:nth-child(2) {
    left: 45%;
    animation-delay: 0.2s;
}

.circle:nth-child(3) {
    right: 15%;
    left: auto;
    animation-delay: 0.3s;
}

/* ---------- SHADOW (SOFT BLACK) ---------- */
.shadow {
    width: 20px;
    height: 4px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.4);
    /* 🔥 SOFT BLACK SHADOW */
    position: absolute;
    top: 62px;
    z-index: -1;
    left: 15%;
    filter: blur(2px);
    animation: shadow 0.5s alternate infinite ease;
}

@keyframes shadow {
    0% {
        transform: scaleX(1.4);
    }

    40% {
        transform: scaleX(1);
        opacity: 0.6;
    }

    100% {
        transform: scaleX(0.3);
        opacity: 0.3;
    }
}

.shadow:nth-child(4) {
    left: 45%;
    animation-delay: 0.2s;
}

.shadow:nth-child(5) {
    right: 15%;
    left: auto;
    animation-delay: 0.3s;
}


/* ==========sub banner */
.sub-banner {
    width: 100%;
    background-image: url('../images/banner/sub-banner.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 400px;
    position: relative;
}

.sub-banner-header {
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 800px;
    width: 100%;
    text-align: center;
    color: #fff;
    padding: 0 20px;
}

.sub-banner-header h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 12px;
    text-transform: capitalize;
}

.sub-banner-header p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    margin-top: 15px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    text-overflow: ellipsis;
}




.breadcrumbs {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    margin-bottom: 10px;
}

.breadcrumbs a {
    color: #ffffff !important;
    text-decoration: none;
    opacity: 0.85;
    transition: 0.3s;
}

.breadcrumbs a:hover {
    opacity: 1;
    text-decoration: underline;
}

.breadcrumbs span {
    color: rgba(255, 255, 255, 0.8);
}

.sub-banner-overlay {
    position: absolute;
    bottom: 0%;
    left: 0;
    animation: moveCar 20s linear infinite;
    pointer-events: none;
}

.sub-banner-overlay img {
    width: 100px;
    height: auto;
}

@keyframes moveCar {
    0% {
        left: -150px;
    }

    100% {
        left: 100%;
    }
}



/* ==========================================================================
                               header and footer
============================================================================ */
/* TOP BAR */
.topbar {
    background: var(--primary-color);
    color: #fff;
    font-size: 14px;
    padding: 15px 0px !important;
}


.topbar img {
    width: 18px;
    height: auto;
    filter: brightness(0) invert(1) !important;
}

.topbar a {
    color: #fff;
    margin-right: 10px;
}

.topbar .topbar-right a {
    width: 16px;
    height: auto;
    font-size: 15px !important;
    border: 1px solid var(--white);
    border-radius: 50%;
    padding: 5px;
}


.navbar .dropdown-menu {
    width: 600px;
    padding: 1rem;
    left: 50% !important;
    transform: translateX(-50%) !important;
    top: 100%;
    border-radius: 0.5rem;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    display: none;

}

@media(min-width: 992px) {
    .navbar .dropdown:hover .dropdown-menu {
        display: block;
    }
}

.dropdown-menu .dropdown-item {
    font-size: 14px !important;
    color: var(--black) !important;
    padding: 0.25rem 0;
}

.dropdown-menu .row>div {
    padding-right: 1rem;
    padding-left: 1rem;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='green' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

.nav-item.dropdown:hover .dropdown-menu {
    display: none !important;
}

.main-header {
    position: relative;
    z-index: 9999;
}


.category-header {
    position: relative;
    color: var(--primary-color);
    font-size: 14px;
    font-weight: bolder;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-block;
    padding: 0px !important;
    margin-bottom: 18px !important;
}

.category-header::after {
    content: '';
    position: absolute;
    left: 3px;
    bottom: -5px;
    height: 3px;
    width: 25px;
    background: linear-gradient(90deg, #163A19 0%, #1E4F27 50%, #163A19 100%);
    border-radius: 2px;
    transition: all 0.4s ease;
}

.category-header::before {
    content: '';
    position: absolute;
    left: 32px;
    bottom: -5px;
    height: 3px;
    width: 12px;
    background: linear-gradient(90deg, #1E4F27 0%, #163A19 50%, #1E4F27 100%);
    border-radius: 2px;
    transition: all 0.4s ease;
}


.category-header i {
    color: var(--primary-color);
    margin-right: 6px;
    transition: transform 0.3s ease, color 0.3s ease, text-shadow 0.3s ease;
}

.category-header:hover i {
    transform: scale(1.2) rotate(-10deg);
    text-shadow: 0 0 6px var(--highlight-color);
}



.main-header .container {
    background-color: var(--white);
    border-radius: 10px;
    padding: 5px 0px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05),
        0 4px 12px rgba(0, 0, 0, 0.03);
}


.main-header .navbar-nav a {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-color);
}

.navbar-brand img {
    width: 180px;
    height: auto;
}

.main-header .navbar-brand {
    margin-left: 30px;
}

.main-header {
    position: absolute;
    top: 50px;
    width: 100%;
    z-index: 99;
    transition: all 0.3s ease;
}

.dropdown-menu {
    z-index: 2000 !important;
}

.main-header.scrolled {
    position: fixed;
    top: 0;
    background: #ffffff;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.main-header.scrolled .nav-link {
    color: #333 !important;
}

.navbar-expand-lg .navbar-nav .dropdown-menu {
    position: absolute;
    top: 50px;
    width: 1000px;
    padding: 20px 10px;
}



/* -------------footer ---------------*/
.site-footer .footer-top {
    position: relative;
    overflow: hidden !important;
}

.site-footer {
    width: 100%;
    bottom: 0;
    left: 0;
    color: #fff;
    /* background: linear-gradient(to top,
            rgba(22, 58, 25, 1) 0%,
            rgba(22, 58, 25, 0.952) 50%,
            rgba(22, 58, 25, 0.911) 100%); */
    background-color: var(--primary-color);
    padding-top: 30px;
}


.footer-top {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 30px 20px;
    text-align: center;
    /* overflow: hidden !important; */
}

.footer-logo {
    margin: 20px 0px;
}

.footer-contact p {
    margin: 5px 0 15px;
    font-size: 18px;
}

.footer-nav {
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
    margin-bottom: 15px;
}

.footer-bottom-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    text-align: center;
    z-index: 0;
}


.footer-bottom-overlay-1 {
    position: absolute;
    bottom: 38%;
    left: -34%;
    width: 100%;
    text-align: center;
    z-index: 0;
}

.footer-bottom-overlay img {
    display: block;
    margin: 0 auto;
}


.footer-bottom-overlay-1 img {
    animation: moveVehicle 20s linear infinite;
}

@keyframes moveVehicle {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(1100%);
    }
}


.footer-nav a {
    color: #fff;
    text-decoration: none;
    font-size: 18px;
}

.footer-social {
    margin: 20px 0px;
}

.footer-social a {
    color: #fff;
    text-decoration: none;
    margin: 0 8px;
    font-size: 14px !important;
    border: 1px solid var(--white);
    border-radius: 50%;
    padding: 5px;
}

.footer-bottom {
    display: flex;
    background-color: var(--background-color) !important;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0px 20px;
    font-size: 13px;
}

.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}


.footer-bottom .footer-para strong {
    color: var(--primary-color);
    font-weight: bolder;
}

.footer-bottom .footer-para {
    color: #000;
    font-weight: 700;
}

.footer-bottom .footer-links a {
    color: #000 !important;
    font-weight: 700;
    margin-left: 15px;
    text-decoration: none;
}


.footer-top .footer-logo,
.footer-top .footer-contact,
.footer-top .footer-nav,
.footer-top .footer-social {
    position: relative;
    z-index: 99 !important;
}




/* ==========================================================================
                              Home page 
============================================================================ */

/*========================= hero banner ========================== */
.inner-banner {
    width: 100%;
    background-image: url('../images/banner/banner-1.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    height: 750px;
}

.topbar .contaner {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
}

.banner-overlay-2 img {
    width: 150px;
    height: auto;
}

.banner-overlay-2 {
    position: absolute;
    top: 10%;
    left: 10%;
    z-index: 99;
}

.banner-overlay-1 img {
    width: 500px;
    height: auto;
}

.banner-overlay-1,
.banner-overlay-2 {
    position: absolute;
    pointer-events: none;
}

.banner-overlay-1 img {
    animation: drift1 12s ease-in-out infinite;
}

.banner-overlay-2 img {
    animation: drift2 15s ease-in-out infinite;
}

@keyframes drift1 {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }

    25% {
        transform: translate(20px, -10px) rotate(10deg);
    }

    50% {
        transform: translate(-15px, -25px) rotate(-10deg);
    }

    75% {
        transform: translate(10px, -15px) rotate(5deg);
    }

    100% {
        transform: translate(0, 0) rotate(0deg);
    }
}

@keyframes drift2 {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }

    20% {
        transform: translate(-20px, -15px) rotate(-8deg);
    }

    40% {
        transform: translate(15px, -20px) rotate(12deg);
    }

    60% {
        transform: translate(-10px, -10px) rotate(-5deg);
    }

    80% {
        transform: translate(10px, -25px) rotate(8deg);
    }

    100% {
        transform: translate(0, 0) rotate(0deg);
    }
}


.banner-overlay-1 {
    position: absolute;
    top: 10%;
    right: 4%;
    z-index: 99;
}



.inner-banner {
    width: 100%;
    height: 750px;
    background-image: url('../images/banner/banner-1.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-attachment: fixed;
}

.inner-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.25);
    z-index: 1;
}

.inner-banner .container-fluid {
    position: relative;
    z-index: 2;
}

.banner-left h2 {
    font-size: 60px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
    line-height: 1.2;
}

.banner-left p {
    font-size: 18px;
    color: #f0f0f0;
    max-width: 500px;
}


.page-wrap {
    position: relative;
}

.banner-overlay img {
    width: 500px;
}

.banner-overlay {
    position: absolute;
    right: 10%;
    top: 55%;
    transform: translate(-50%, -50%);
}

.inner-banner {
    position: relative;
    overflow: hidden;
}

.inner-banner .banner-bottom-overlay {
    position: absolute;
    bottom: -115px;
    left: 0;
    width: 100%;
    z-index: 99;
    pointer-events: none;
}

.inner-banner .banner-bottom-overlay img {
    width: 100%;
    height: auto;
    display: block;
}

.banner-right {
    position: relative;
}

.banner-left {
    width: 100%;
    max-width: 700px;
}

.img-overlay-1 {
    position: absolute;
    top: 21%;
    left: 50%;
    z-index: 999;
}

.img-overlay-1 img {
    width: 350px;
    height: auto;
}

.page-wrap {
    position: relative !important;
    overflow: visible;
    /* min-height: 300vh !important; */
}

.img-overlay-2 {
    /* position: fixed !important; */
    position: absolute !important;
    top: 5%;
    left: 61%;
    z-index: 999999;
    will-change: transform !important;
}



.img-overlay-2 img {
    width: 250px;
    height: auto;
}


/*----------------------why choose us----------------------- */
.inner-choose .owl-stage-outer {
    padding: 30px 0px;
    margin-top: 15px;
}

.inner-choose {
    padding-bottom: 50px;
}

.choose-wrap {
    position: relative;
    margin: auto;
}

.choose-card {
    background: #fff;
    border-radius: 14px;
    padding: 35px 0px 0px 0px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--primary-color);
}

.choose-card img {
    max-width: 120px;
    margin: auto;
}

.choose-card h4 {
    margin-top: 15px;
    font-size: 20px;
    font-weight: 600;
    color: #D4C043;
    background-color: var(--primary-color);
    border-bottom-right-radius: 14px;
    border-bottom-left-radius: 14px;
    padding: 5px 0px;
}

.choose-card {
    overflow: hidden;
}

.choose-card img {
    transition: transform 0.45s ease, filter 0.45s ease;
}

.choose-card:hover img {
    transform: scale(1.15) translateY(-6px);
}

.choose-card h4 {
    transition: color 0.35s ease, background-color 0.35s ease;
}

.choose-card:hover h4 {
    color: #fff;
}



.inner-choose {
    position: relative !important;
    overflow-x: hidden !important;

}

.inner-choose .owl-nav {
    position: absolute !important;
    top: 50% !important;
    width: 100% !important;
    transform: translateY(-50%) !important;
    display: flex !important;
    justify-content: space-between !important;
    pointer-events: none !important;
}

.inner-choose .owl-nav button {
    pointer-events: all !important;
    background: #3B9A07 !important;
    width: 38px !important;
    height: 38px !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: all 0.3s ease !important;
    border: none !important;
    outline: none !important;
}

.inner-choose .owl-nav button:hover {
    background: linear-gradient(135deg,
            #2e7d32,
            #3B9A07,
            #2e7d32) !important;
    transform: scale(1.08);
    box-shadow: 0 8px 20px rgba(59, 154, 7, 0.35);
}

.choose-carousel {
    padding-bottom: 50px;
}

.inner-choose .owl-nav-icon {
    color: #fff !important;
    font-size: 20px !important;
    line-height: 1 !important;
}

.inner-choose .owl-prev {
    margin-left: -60px !important;
}

.inner-choose .owl-next {
    margin-right: -60px !important;
}

.choose-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 2;
    pointer-events: none;
    overflow: hidden;
    animation: floatOverlay 6s ease-in-out infinite alternate;
}

.choose-overlay img {
    width: 100%;
    height: auto;
    display: block;
}




/*======================== why choose us section============================== */
.inner-why {
    background-color: var(--background-color);
    width: 100%;
    background-image: url('../images/home/why-bg.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 50px 0px;
    position: relative;
}

.why-overlay-1 img {
    width: 300px;
    pointer-events: none;
    animation: floatWhy 10s ease-in-out infinite;
}

@keyframes floatWhy {
    0% {
        transform: translate(0, 0) rotate(0deg) scale(1);
    }

    20% {
        transform: translate(15px, -10px) rotate(8deg) scale(1.05);
    }

    40% {
        transform: translate(-10px, -20px) rotate(-5deg) scale(0.95);
    }

    60% {
        transform: translate(20px, -15px) rotate(5deg) scale(1.02);
    }

    80% {
        transform: translate(-15px, -10px) rotate(-8deg) scale(0.98);
    }

    100% {
        transform: translate(0, 0) rotate(0deg) scale(1);
    }
}

.why-overlay-1 {
    position: absolute;
    top: -9%;
    left: 1%;
}


.why-overlay-2 img {
    width: 150px;
    pointer-events: none;
    animation: windBounce 9s cubic-bezier(.25, .46, .45, .94) infinite;
    transform-origin: center;
}

@keyframes windBounce {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }

    15% {
        transform: translate(35px, -25px) rotate(18deg);
    }

    30% {
        transform: translate(-15px, -10px) rotate(-10deg);
    }

    45% {
        transform: translate(10px, -18px) rotate(8deg);
    }

    65% {
        transform: translate(-5px, -6px) rotate(-4deg);
    }

    100% {
        transform: translate(0, 0) rotate(0deg);
    }
}

.why-overlay-2 {
    position: absolute;
    bottom: 20%;
    right: 1%;
}

.why-wrap img {
    width: 80%;
    height: auto;
}

.why-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 30px 0px;
}

.inner-why {
    position: relative;
}

.inner-why .why-right-overlay {
    position: absolute;
    right: 0%;
    top: 10%;
}

.why-wrap img {
    animation: floatImage 6s ease-in-out infinite;
}

/* Keyframes: smooth up and down floating */
@keyframes floatImage {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}


/* ================product section================ */
.inner-product {
    padding: 10px 0px 50px 0px;
}

.product-wrap {
    padding: 25px 0px;
    margin-top: 30px;
}

.product-card {
    width: 100%;

}

.product-content {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--primary-color);
    border-bottom-left-radius: 15px !important;
    border-bottom-right-radius: 15px !important;
}

.product-content h4 {
    font-size: 24px;
    padding: 10px 0px;
    color: var(--title-color);
}

.product-img {
    position: relative;
    z-index: 1;
    background-image: url('../images/product/product-bg.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom center;
    padding-top: 40px !important;
}

.product-img::after {
    content: "";
    position: absolute;
    width: 110px;
    height: 110px;
    border-radius: 50%;
    z-index: -1;

    top: 35%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.product-img.green::after {
    background: #60862D
}

.product-img.blue::after {
    background: #3498db;
}

.product-img.org::after {
    background: #C4561D
}


.product-img img {
    position: relative;
    z-index: 2;
}

.product-card,
.product-card * {
    transition:
        transform 0.9s cubic-bezier(.22, 1, .36, 1),
        color 0.4s ease,
        box-shadow 0.6s ease,
        filter 0.6s ease,
        opacity 0.4s ease;
}

.product-card:hover {
    transform: translateY(-10px);
}

.product-card:hover .product-img img {
    transform: scale(1.10) translateY(-14px) rotate(-1.5deg);
}

.product-card:hover .product-img::after {
    transform: translate(-50%, -50%) scale(1.35);
    filter: blur(3px);
    opacity: 1;
}

.product-card:hover .product-content h4 {
    color: #fff;
    letter-spacing: 1px;
    transform: translateY(-1px) scale(1.02);
}

.product-card:hover .product-img::after {
    animation: pulseGlow 1.6s ease-in-out infinite;
}

.product-img.green::after {
    box-shadow: 0 0 0 rgba(96, 134, 45, 0);
}

.product-img.blue::after {
    box-shadow: 0 0 0 rgba(52, 152, 219, 0);
}

.product-img.org::after {
    box-shadow: 0 0 0 rgba(196, 86, 29, 0);
}

@keyframes pulseGlow {
    0% {
        box-shadow: 0 0 10px currentColor;
    }

    50% {
        box-shadow: 0 0 35px currentColor;
    }

    100% {
        box-shadow: 0 0 10px currentColor;
    }
}

.product-img.green {
    color: #60862D;
}

.product-img.blue {
    color: #3498db;
}

.product-img.org {
    color: #C4561D;
}



.inner-product .owl-nav {
    position: absolute !important;
    top: 50% !important;
    width: 100% !important;
    transform: translateY(-50%) !important;
    display: flex !important;
    justify-content: space-between !important;
    pointer-events: none !important;
}

.inner-product .owl-nav button {
    pointer-events: all !important;
    background: #3B9A07 !important;
    width: 38px !important;
    height: 38px !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: all 0.3s ease !important;
    border: none !important;
    outline: none !important;
}

.inner-product .owl-nav button:hover {
    background: linear-gradient(135deg,
            #2e7d32,
            #3B9A07,
            #2e7d32) !important;
    transform: scale(1.08);
    box-shadow: 0 8px 20px rgba(59, 154, 7, 0.35);
}


.inner-product .owl-nav-icon {
    color: #fff !important;
    font-size: 20px !important;
    line-height: 1 !important;
}

.inner-product .owl-prev {
    margin-left: -60px !important;
}

.inner-product .owl-next {
    margin-right: -60px !important;
}


/*============================ testimonial section======================= */
.inner-testimonial {
    padding: 50px 0px 0px 0px;
    width: 100%;
    background-image: url('../images/home/testimonial-bg.png');
    background-repeat: no-repeat;
    background-position: bottom;
    background-size: cover;
    position: relative;
    z-index: 10;
}

.testimonial-overlay-1 img {
    width: 200px;
    pointer-events: none;
    animation: bounceShake 7s ease-in-out infinite;
    transform-origin: center;
}

@keyframes bounceShake {

    0% {
        transform: translate(0, 0) rotate(0deg);
    }

    12% {
        transform: translate(0, -22px) rotate(4deg);
    }

    20% {
        transform: translate(-8px, -12px) rotate(-6deg);
    }

    28% {
        transform: translate(8px, -10px) rotate(6deg);
    }

    40% {
        transform: translate(-4px, -6px) rotate(-4deg);
    }

    55% {
        transform: translate(4px, -4px) rotate(4deg);
    }

    75% {
        transform: translate(0, -2px) rotate(-2deg);
    }

    100% {
        transform: translate(0, 0) rotate(0deg);
    }
}

.testimonial-overlay-1 {
    position: absolute;
    top: 0%;
    right: 3%;
}

.testimonial-overlay-2 img {
    width: 110px;
    pointer-events: none;
    transform-origin: center;
    animation: swayDrift 10s ease-in-out infinite;
}

@keyframes swayDrift {
    0% {
        transform: translateY(0) rotate(0deg) scale(1);
    }

    20% {
        transform: translateY(-6px) rotate(3deg) scale(1.02);
    }

    40% {
        transform: translateY(-12px) rotate(-4deg) scale(0.98);
    }

    60% {
        transform: translateY(-8px) rotate(4deg) scale(1.01);
    }

    80% {
        transform: translateY(-4px) rotate(-2deg) scale(0.99);
    }

    100% {
        transform: translateY(0) rotate(0deg) scale(1);
    }
}


.testimonial-overlay-2 {
    position: absolute;
    bottom: 0%;
    left: 0%;
}

.textimonial-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: -1;
}

.textimonial-overlay img {
    width: 100%;
    height: auto;
    display: block;
}


.testimonial-wrap {
    padding: 40px 0;
}

.testimonial-card {
    background: #fff;
    border-radius: 16px;
    padding: 28px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.034);
    height: 100%;
}

.testimonial-wrap .owl-stage-outer {
    padding: 25px 10px;
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
}

.testimonial-header img {
    width: 54px !important;
    height: 54px !important;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-header h5 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
}

.testimonial-header span {
    font-size: 14px;
    color: #777;
}

.testimonial-text {
    font-size: 17px;
    line-height: 1.7;
    color: #444;
    margin-bottom: 22px;
    position: relative;
    padding-top: 25px;
}

.testimonial-text::before {
    content: "“";
    font-size: 80px;
    color: #60862D;
    position: absolute;
    left: -2%;
    top: -34%;
}

.testimonial-footer {
    display: flex;
    align-items: center;
    gap: 10px;

}

.testimonial-footer h3 {
    font-size: 36px;
    color: var(--primary-color);
    font-weight: bolder;
    margin: 0;
}

.testimonial-footer span {
    font-size: 14px;
    padding-left: 20px;
    color: var(--para-color);
}

.testimonial-header {
    position: relative;
    padding-bottom: 10px;
}

.testimonial-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    transform-origin: center;
    width: 50%;
    height: 1px;
    background-color: #cccccc7c;
    border-radius: 1pxrgba(204, 204, 204, 0.76);
    animation: growLine 0.6s forwards;
}



.testimonial-footer {
    position: relative;
    padding: 12px 0px;
}

.testimonial-footer::after {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    transform-origin: center;
    width: 50%;
    height: 1px;
    background-color: #cccccc7c;
    border-radius: 1pxrgba(204, 204, 204, 0.76);
    animation: growLine 0.6s forwards;
}


@keyframes growLine {
    from {
        transform: translateX(-50%) scaleX(0);
    }

    to {
        transform: translateX(-50%) scaleX(1);
    }
}


.inner-testimonial .owl-nav {
    position: absolute !important;
    top: 50% !important;
    width: 100% !important;
    transform: translateY(-50%) !important;
    display: flex !important;
    justify-content: space-between !important;
    pointer-events: none !important;
}

.inner-testimonial .owl-nav button {
    pointer-events: all !important;
    background: #3B9A07 !important;
    width: 38px !important;
    height: 38px !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: all 0.3s ease !important;
    border: none !important;
    outline: none !important;
}

.inner-testimonial .owl-nav button:hover {
    background: linear-gradient(135deg,
            #2e7d32,
            #3B9A07,
            #2e7d32) !important;
    transform: scale(1.08);
    box-shadow: 0 8px 20px rgba(59, 154, 7, 0.35);
}


.inner-testimonial .owl-nav-icon {
    color: #fff !important;
    font-size: 20px !important;
    line-height: 1 !important;
}

.inner-testimonial .owl-prev {
    margin-left: -60px !important;
}

.inner-testimonial .owl-next {
    margin-right: -60px !important;
}

.inner-testimonial .owl-nav-icon {
    color: #fff !important;
    font-size: 20px !important;
    line-height: 1 !important;
}

.inner-testimonial .owl-prev {
    margin-left: -60px !important;
}

.inner-testimonial .owl-next {
    margin-right: -60px !important;
}

/* ==================================gallery section ===================*/
.inner-gallery {
    padding: 50px 0px;
}

.gallery-wrap {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-template-rows: repeat(6, 1fr);
    gap: 8px;
    width: 100%;
    margin: 20px 0px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

.gallery-item {
    width: 100%;
    height: auto;
    overflow: hidden;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}


.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 10px;
    box-sizing: border-box;
    color: #fff;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0));
}


.div1 {
    grid-column: span 2 / span 2;
    grid-row: span 3 / span 3;
}

.div2 {
    grid-column: span 2 / span 2;
    grid-row: span 3 / span 3;
    grid-column-start: 3;
}

.div3 {
    grid-row: span 3 / span 3;
    grid-column-start: 1;
    grid-row-start: 4;
}

.div4 {
    grid-column: span 3 / span 3;
    grid-row: span 3 / span 3;
    grid-column-start: 2;
    grid-row-start: 4;
}

.div5 {
    grid-row: span 6 / span 6;
    grid-column-start: 5;
    grid-row-start: 1;
}


/* =================================form section=========================== */

.inner-form {
    width: 100%;
    background-image: url("../images/home/form-bg.png");
    background-position: center bottom;
    background-repeat: no-repeat;
    background-size: cover;
    padding-top: 130px;
}

.inner-form .btn-custom {
    justify-content: start !important;
}

/* LEFT SIDE */
.form-left {
    position: relative;
    padding: 60px;
    display: flex;
    align-items: center;
}


.form-left-content {
    position: relative;
    color: #fff;
    max-width: 420px;
}

.form-left-content h2 {
    font-size: 2.6rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 15px;
}

.form-left-content p {
    font-size: 0.95rem;
    margin-bottom: 25px;
}

.inner-form .form-right {
    position: relative;
    z-index: 10;
}

.inner-form {
    position: relative;
}

.form-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 0 !important;
    pointer-events: none;
}

.form-overlay img {
    width: 100%;
    display: block;
}

.form-right {
    padding: 0px 40px 40px 40px;
    display: flex;
    justify-content: center;
}

.consultation-form {
    background: #fff;
    max-width: 500px;
    width: 100%;
    border-radius: 14px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    padding: 25px;
}

.form-header {
    background: #163A19;
    color: #fff;
    padding: 14px 20px;
    border-radius: 10px;
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.form-header .brand {
    font-weight: 600;
}

.form-header .title {
    font-size: 0.85rem;
    opacity: 0.85;
}

.form-control {
    font-size: 0.9rem;
    padding: 10px 12px;
}

.form-note {
    font-size: 0.75rem;
    color: #777;
    margin-top: 10px;
    text-align: center;
}




.mobile-menu .offcanvas-body {
    padding: 1.5rem 1.75rem;
}


.offcanvas {
    width: 100%;
    background-image: url('../images/home/offcanva-bg.png');
    background-repeat: no-repeat;
    background-position: bottom;
    background-size: cover;
    background-attachment: fixed;
    border-bottom-left-radius: 10px;
    border-top-left-radius: 10px;
    width: 100%;
    max-width: 350px;
}

.offcanvas-logo img {
    transition: transform .3s ease;
}

.offcanvas-logo:hover img {
    transform: scale(1.05);
}

.mobile-menu .nav-link {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    font-weight: 500;
    color: var(--text);
    padding: 10px 10px 10px 2px;
    transition: color .3s ease;
}

.offcanvas-header {
    position: relative;
    padding-bottom: 1rem;
}

.offcanvas-header::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg,
            rgba(27, 94, 32, 0) 0%,
            rgba(27, 94, 32, 0.6) 20%,
            rgba(67, 160, 71, 1) 50%,
            rgba(27, 94, 32, 0.6) 80%,
            rgba(27, 94, 32, 0) 100%);
}

.offcanvas-footer {
    position: relative;
}

.offcanvas-footer::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg,
            rgba(27, 94, 32, 0) 0%,
            rgba(27, 94, 32, 0.6) 20%,
            rgba(67, 160, 71, 1) 50%,
            rgba(27, 94, 32, 0.6) 80%,
            rgba(27, 94, 32, 0) 100%);
}

.offcanvas .accordion {
    --bs-accordion-color: var(--bs-body-color);
    --bs-accordion-bg: transparent !important;
}

/* .navbar-nav li:not(:last-child) {
    border-bottom: 1px solid #ccc;
    padding-bottom: 10px;
    margin-bottom: 10px;
} */

#productsCollapse ul {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.offcanvas .accordion-body {
    background: linear-gradient(135deg, #ffffff, #f0f0f0);
    border-radius: 12px;
}

#productsCollapse ul li a {
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5px;
}


.mobile-menu .nav-link i {
    font-size: 1.05rem;
    color: var(--muted);
    transition: color .3s ease, transform .3s ease;
}

/* BEFORE – LEFT INDICATOR BAR */
.mobile-menu .nav-link::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 3px;
    height: 0;
    background: linear-gradient(to bottom, #1b5e20, #43a047);
    border-radius: 2px;
    transform: translateY(-50%);
    transition: height .35s ease;
}

/* AFTER – SUBTLE BG HOVER */
.mobile-menu .nav-link::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(67, 160, 71, 0.08);
    opacity: 0;
    z-index: -1;
    border-radius: 6px;
    transition: opacity .35s ease;
}

/* HOVER */
.mobile-menu .nav-link:hover {
    color: #1b5e20;
}

.mobile-menu .nav-link:hover i {
    color: #1b5e20;
    transform: translateX(3px);
}

.mobile-menu .nav-link:hover::before {
    height: 70%;
}

.mobile-menu .nav-link:hover::after {
    opacity: 1;
}


.mobile-menu .nav-link.active {
    color: #1b5e20;
    font-weight: 600;
}

.mobile-menu .nav-link.active::before {
    height: 70%;
}

.mobile-menu .accordion-button {
    padding: 10px 0;
    font-weight: 500;
    background: transparent;
    color: var(--text);
    box-shadow: none;
}

.mobile-menu .accordion-button:not(.collapsed) {
    color: #1b5e20;
}

/* SUB LINKS */
.mobile-menu .accordion-body a {
    display: block;
    position: relative;
    padding: 6px 0 6px 18px;
    font-size: .9rem;
    color: var(--muted);
    text-decoration: none;
    transition: color .3s ease, transform .3s ease;
}

.mobile-menu .accordion-body a::before {
    content: "›";
    position: absolute;
    left: 0;
    color: #43a047;
    opacity: 0;
    transition: opacity .3s ease;
}

.mobile-menu .accordion-body a:hover {
    color: #1b5e20;
    transform: translateX(4px);
}

.mobile-menu .accordion-body a:hover::before {
    opacity: 1;
}

.offcanvas-footer {
    background-color: var(--white);
    padding: 10px 15px;
    border-radius: 10px;
    margin-top: 15px;
    padding-top: 2rem;
    border-top: 1px solid #ddd;
    font-family: 'Arial', sans-serif;
    color: #333;
}

.offcanvas-footer p {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    font-size: 0.95rem;
}

.offcanvas-footer p i {
    color: var(--primary-color);
    margin-right: 0.5rem;
    transition: transform 0.3s;
}

.offcanvas-footer p i:hover {
    transform: rotate(15deg);
}

.offcanvas-footer a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s;
}

.offcanvas-footer a:hover {
    color: #007bff;
}

.social-icons {
    margin-top: 1rem;
    display: flex;
    gap: 15px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: #f1f1f1;
    color: #333;
    transition: all 0.3s;
    font-size: 1.1rem;
}

.social-icons a:hover {
    background-color: #007bff;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}





.mobile-menu a.disabled {
    pointer-events: none;
    opacity: .5;
}



/* ======================================================================
                                   about us page
======================================================================== */
.about-inner .about-right {
    position: relative;
    z-index: 10;
}

.about-inner {
    position: relative;
    z-index: 10;
}

.about-inner .main-about-overlay-1 img {
    width: 300px;
}

.about-inner .main-about-overlay-1 {
    position: absolute;
    bottom: 0px;
    right: 10px;
    z-index: -1;
}

.about-inner p {
    text-align: justify;
}

.about-inner {
    width: 100%;
    background-color: var(--background-color);
    padding: 50px 0px;
}

.about-inner .btn-custom {
    justify-content: start !important;
}

@keyframes floatSmooth {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0);
    }
}

.about-left img {
    animation: floatSmooth 4s ease-in-out infinite;
}


.skill-bar {
    margin: 20px 0;
}

.skill-label {
    display: flex;
    justify-content: space-between;
    font-weight: 500;
    margin-bottom: 5px;
    font-size: 14px;
}

.progress {
    width: 100%;
    height: 10px;
    background: #e0e0e0;
    border-radius: 10px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: #f7d117;
    width: 0;
    border-radius: 10px;
    transition: width 1.5s ease-in-out;
}

/*===================================== benifits =================*/
.inner-benifits {
    padding: 50px 0px;
}

.benifits-card {
    width: 300px;
    height: 300px;
    background-color: var(--background-color);
    padding: 20px;
    border-radius: 50%;
    border: 2px solid #43a047;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.benifits-card::after {
    content: "";
    position: absolute;
    top: -10px;
    left: -10px;
    width: calc(100% + 20px);
    height: calc(100% + 20px);
    border: 2px solid #43a047;
    border-radius: 50%;
    z-index: -1;
    transition: all 0.3s ease;
}

.benifits-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.benifits-card:hover::after {
    border-color: #f7d117;
}

.benifits-card .benifits-img img {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
}

.benifits-card .benifits-content h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #43a047;
}

.benifits-card .benifits-content p {
    font-size: 13px;
    color: #555;
    line-height: 1.4;
}

.inner-benifits .row {
    position: relative;
}

.inner-benifits .row::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 6px;
    background: linear-gradient(90deg, #0b3d0b, #2e8b57);

    border-radius: 2px;
    z-index: -1;
}

.inner-benifits {
    position: relative;
    overflow: hidden;
}

.benifits-overlay-1 {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 450px;
    height: auto;
    z-index: -10;
    animation: float-horizontal 6s ease-in-out infinite alternate;
}

@keyframes float-horizontal {
    0% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(20px);
    }

    100% {
        transform: translateX(0);
    }
}

/* ---------------------what section ---------------------*/
.inner-what {
    width: 100%;
    padding: 50px 0px;
    background-color: var(--background-color);
    background-image: url('../images/home/do-bg.png');
    background-position: bottom;
    background-size: cover;
    background-repeat: no-repeat;

}

.what-wrap .owl-stage-outer {
    padding: 20px 10px;
}

.what-wrap {
    display: flex;
    gap: 30px;
    justify-content: start;
    flex-wrap: wrap;
    padding: 40px 0;
}

.what-card {
    background-color: #f6f6f6;
    border-radius: 15px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    justify-content: start;
    flex-direction: column;
    padding: 20px;
}

.what-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.what-card .what-img {
    width: 100px;
    height: 100px;
    margin-bottom: 20px;
}

.what-card .what-img img {
    width: 100%;
    height: auto;
}

.what-card .what-content h4 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--primary-color);
}

.what-card .what-content p span {
    font-weight: 700;
    color: #ff7a00;

}

.what-card .what-content p {
    font-size: 14px;
    color: #555;
    line-height: 1.5;
}


.inner-what .owl-theme .owl-nav [class*=owl-] {
    background: #3B9A07 !important;
}

.inner-what .owl-nav {
    position: absolute !important;
    top: 50% !important;
    width: 100% !important;
    transform: translateY(-50%) !important;
    display: flex !important;
    justify-content: space-between !important;
    pointer-events: none !important;
}

.inner-what .owl-nav button {
    pointer-events: all !important;
    background: #3B9A07 !important;
    width: 38px !important;
    height: 38px !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: all 0.3s ease !important;
    border: none !important;
    outline: none !important;
}

.inner-what .owl-nav button:hover {
    background: linear-gradient(135deg,
            #2e7d32,
            #3B9A07,
            #2e7d32) !important;
    transform: scale(1.08);
    box-shadow: 0 8px 20px rgba(59, 154, 7, 0.35);
}


.inner-what.owl-nav-icon {
    color: #fff !important;
    font-size: 20px !important;
    line-height: 1 !important;
}

.inner-what .owl-prev {
    margin-left: -60px !important;
}

.inner-what .owl-next {
    margin-right: -60px !important;
}

.inner-what .owl-nav-icon {
    color: #fff !important;
    font-size: 20px !important;
    line-height: 1 !important;
}

.inner-what .owl-prev {
    margin-left: -60px !important;
}

.inner-what .owl-next {
    margin-right: -60px !important;
}

/* ========================================================
                    product page
========================================================= */
.product-inner {
    padding: 50px 0px;
    width: 100%;
    background-image: url('../images/home/product-bg.png');
    background-position: top;
    background-size: cover;
    background-repeat: no-repeat;
}

.product-inner .container-fluid {
    width: 90% !important;
}





.sidebar-inner {
    position: relative;
    /* background: linear-gradient(180deg, #ffffff, #f7fdf8); */
    background: linear-gradient(180deg, #ffffff, #f6f4efc7);

    border-radius: 16px;
    padding: 28px 24px;
    overflow: hidden;
}


.sidebar-inner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #1e7f3b, #4caf50);
}


.sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    position: relative;
}

.sidebar-header h4 {
    font-size: 20px;
    font-weight: 700;
    color: #1e7f3b;
    position: relative;
    padding-left: 14px;
}

.sidebar-header h4::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 18px;
    background: #1e7f3b;
    border-radius: 2px;
}


.close-btn {
    background: #f2f6f3;
    border: none;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    font-size: 15px;
    cursor: pointer;
    transition: 0.3s ease;
}

.close-btn:hover {
    background: #1e7f3b;
    color: #fff;
}

.sidebar-section h5 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 18px;
    padding-bottom: 10px;
    color: #333;
    position: relative;
}

.sidebar-section h5::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 45px;
    height: 3px;
    background: linear-gradient(90deg, #1e7f3b, #6ddf8c);
    border-radius: 2px;
}

.product-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.product-list li {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    font-size: 14px;
    cursor: pointer;
    transition: 0.3s ease;
    color: #444;
}

.product-list li::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background: #eee;
}

.product-list li:hover {
    color: #1e7f3b;
    padding-left: 8px;
}

.product-list span:last-child {
    background: #f2f6f3;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 12px;
    color: #1e7f3b;
    font-weight: 600;
}

.fliter-wrap {
    display: flex;
    justify-content: end;
}

.filter-btn {
    display: inline-flex;
    align-items: center;
    gap: 2px;
    background: linear-gradient(135deg, #1e7f3b, #4caf50);
    color: #fff;
    padding: 6px 21px;
    border-radius: 10px;
    border: none;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.3px;
    box-shadow:
        0 6px 18px rgba(30, 127, 59, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.25);
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        background 0.3s ease;

    position: relative;
    overflow: hidden;
}

/* Shine overlay */
.filter-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg,
            transparent,
            rgba(255, 255, 255, 0.35),
            transparent);
    transition: 0.6s ease;
}

.filter-btn:hover::before {
    left: 100%;
}

.filter-btn:hover {
    transform: translateY(-3px);
    box-shadow:
        0 12px 28px rgba(30, 127, 59, 0.45);
}

/* Active / tap effect */
.filter-btn:active {
    transform: translateY(0);
    box-shadow:
        0 6px 14px rgba(30, 127, 59, 0.35);
}

/* Icon size */
.filter-btn i {
    font-size: 1.1rem;
}


.accordion-item {
    border-bottom: 1px solid #eee;
}

.sidebar-section .accordion-title {
    width: 100%;
    background: none;
    border: none;
    padding: 14px 0;
    font-size: 15px;
    font-weight: 600;
    color: #333;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: 0.3s;
}

.sidebar-section .accordion-title:hover {
    color: #1e7f3b;
}

.sidebar-section .accordion-title .icon {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: #f2f6f3;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: 0.3s;
}


.sidebar-section .accordion-item.active .accordion-title {
    color: #1e7f3b;
}

.sidebar-section .accordion-item.active .icon {
    background: #1e7f3b;
    color: #fff;
}


.sidebar-section .accordion-content {
    list-style: none;
    padding-left: 10px;
    margin: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}


.sidebar-section .accordion-content li {
    padding: 10px 0;
    font-size: 14px;
    color: #555;
    cursor: pointer;
    transition: 0.3s;
}

.sidebar-section .accordion-content li:hover {
    color: #1e7f3b;
    padding-left: 6px;
}


.sidebar-section .accordion-item img {
    width: 30px;
    height: auto;
}

/* Mobile behavior */
@media (max-width: 991px) {}




.main-card {
    position: relative;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.main-card::before,
.main-card::after {
    content: "";
    position: absolute;
    border-radius: 12px;
    inset: 0;
    pointer-events: none;
    transition: all 0.4s ease;
}

.main-card::before {
    border: 2px solid rgba(0, 0, 0, 0.05);
}

.main-card::after {
    border: 2px solid var(--hover-color);
    transform: scale(0);
    opacity: 0;
}

.main-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.15);
}

.main-card:hover::after {
    transform: scale(1);
    opacity: 1;
}

.main-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.15);
}

.main-img {
    position: relative;
    overflow: hidden;
    background-color: var(--background-color);
    margin: 10px;
    border-radius: 10px;
}

.main-img img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.main-card:hover .main-img img {
    transform: scale(1.1);
}

.discount-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background-color: var(--hover-color);
    color: #fff;
    font-weight: 600;
    padding: 5px 10px;
    border-radius: 6px;
    font-size: 0.85rem;
}


.main-content .sub {
    color: var(--secondary-color);
    font-weight: 500;
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.main-content h4 {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.main-content-wrap {
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.off-price {
    color: var(--hover-color);
    font-weight: 600;
    font-size: 1rem;
}

.org-price {
    color: #999;
    font-size: 0.9rem;
    text-decoration: line-through;
}

.quantity {
    font-size: 0.85rem;
    color: var(--para-color);
}

.main-btn {
    display: flex;
    justify-content: end;
}

.main-btn a {
    display: inline-block;
    padding: 6px 20px;
    background-color: var(--primary-color);
    color: #fff;
    border-radius: 6px;
    font-weight: 600;
    transition: background 0.3s ease;
    text-decoration: none;
    position: relative;
}

.main-btn a:hover {
    background-color: var(--hover-color);
}

.main-btn a::after {
    content: "";
    position: absolute;
    width: 7px;
    height: 7px;
    background-color: #fff;
    top: 3px;
    left: 3px;
    clip-path: polygon(0 0, 100% 0, 0 100%);
}

.main-content {
    padding: 15px 20px;
    width: 100% !important;
    background-image: url("../images/home/product-footer.png") !important;
    background-position: bottom center !important;
    background-repeat: no-repeat !important;
    background-size: 100% auto !important;
    position: relative;

}




.main-btn {
    display: flex;
    justify-content: end;
}

.main-product-header h4 {
    position: relative;
    display: block;
    font-size: 1.4rem;
    font-weight: 900;
    color: #26582a !important;
    padding-left: 14px;
    margin-bottom: 30px;
}

.main-product-header h4::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 5px;
    height: 70%;
    background-color: #263238;
    border-radius: 4px;
}

.main-product-header h4::after {
    content: "";
    position: absolute;
    left: 14px;
    bottom: -15px;
    width: 100%;
    height: 2px;
    background: linear-gradient(to right,
            #263238,
            rgba(38, 50, 56, 0.4));
    border-radius: 6px;
}


/* =============================================================== 
                 conatc page
=====================================================================  */

.contact-inner {
    padding: 60px 0px;
    width: 100%;
    background-image: url(../images/home/contact-bg.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.contact-inner-form {
    padding: 2rem;
    border-radius: 12px;
    margin: auto;
    margin-top: 10px;
}

.contact-inner-form .form-label {
    font-weight: 500;
    margin-bottom: 0.3rem;
    color: #333;
    display: flex;
    align-items: center;
}

.cut-style {
    position: relative;
    border: 2px solid #ddd;
    border-radius: 8px;
    padding: 0.65rem 0.75rem;
    transition: all 0.3s ease;
    background: transparent;
}

.cut-style::before,
.cut-style::after {
    content: '';
    position: absolute;
    height: 2px;
    background: #28a745;
    transition: all 0.3s ease;
    left: 0;
    right: 0;
    transform: scaleX(0);
}

.cut-style::before {
    top: 0;
    transform-origin: left;
}

.cut-style::after {
    bottom: 0;
    transform-origin: right;
}

.cut-style:hover::before,
.cut-style:hover::after,
.cut-style:focus::before,
.cut-style:focus::after,
.cut-style:active::before,
.cut-style:active::after {
    transform: scaleX(1);
}

.cut-style:focus,
.cut-style:active {
    outline: none;
    border-color: #28a745;
    box-shadow: 0 0 0 2px rgba(40, 167, 69, 0.1);
}

.contact-inner-form .form-label i {
    color: #28a745;
    transition: color 0.3s ease;
}

.cut-style:focus+.form-label i,
.cut-style:active+.form-label i {
    color: #218838;
}

.btn-cut {
    background: #3B9A07;
    color: #fff;
    padding: 0.65rem 2rem;
    font-weight: 500;
    border-radius: 8px;
    border: none;
    transition: all 0.3s ease;
}

.btn-cut:hover {
    background: #218838;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-cards-wrap {
    max-width: 1200px;
    margin: auto;
}

.phone-card {
    position: relative;
    background: #fff;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.phone-card .icon img {
    width: 40px;
    height: auto;
}

.phone-card .icon {
    position: absolute;
    top: 4%;
    left: 10%;
}

.phone-card::before,
.phone-card::after {
    content: '';
    position: absolute;
    width: 120%;
    height: 120%;
    background: rgba(40, 167, 69, 0.05);
    transform: rotate(45deg) scale(0);
    transition: all 0.4s ease;
    pointer-events: none;
    top: -10%;
    left: -10%;
}

.phone-card::after {
    background: rgba(40, 167, 69, 0.08);
    transform: rotate(-45deg) scale(0);
}

.phone-card:hover::before,
.phone-card:hover::after {
    transform: rotate(0deg) scale(1);
}

.phone-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.phone-card h5 {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #333;
}

.phone-card p {
    color: #555;
    margin-bottom: 0;
}

/* ================================================================
                  gallery page
==================================================================== */
.inner-main-gallery .gallery-grid {
    margin-top: 30px;
}

.inner-main-gallery {
    position: relative;
    width: 100%;
    padding: 60px 0;
    background-image: url('../images/home/contact-bg.png');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.nav-tabs .nav-link {
    color: #28a745;
    font-weight: 500;
    margin: 0 8px;
    position: relative;
    transition: all 0.3s ease;
}

.nav-tabs .nav-link::before {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 50%;
    width: 0;
    height: 3px;
    background-color: #28a745;
    border-radius: 3px;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-tabs .nav-link:hover::before {
    width: 50%;
}

.nav-tabs .nav-link.active {
    background-color: #28a745;
    color: #fff;
    border-radius: 6px;
}

.nav-tabs .nav-link.active::before {
    width: 60%;
    background-color: #fff;
}

.tab-pane img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.tab-pane img:hover {
    transform: scale(1.08);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

#galleryTabDropdown {
    padding: 0.6rem 1rem;
    border-radius: 8px;
    border: 2px solid #28a745;
    background-color: #fff;
    color: #28a745;
    font-weight: 500;
    transition: all 0.3s ease;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%2328a745' class='bi bi-chevron-down' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M1.646 5.646a.5.5 0 0 1 .708 0L8 11.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1rem;
}

#galleryTabDropdown:hover,
#galleryTabDropdown:focus {
    border-color: #1e7e34;
    box-shadow: 0 4px 12px rgba(40, 167, 69, 0.2);
    outline: none;
}

.gallery-img-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

.gallery-img-wrapper img {
    display: block;
    width: 100%;
    height: auto;
    transition: transform 0.5s ease;
}

.gallery-img-wrapper::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(128, 128, 128, 0.5);
    opacity: 0;
    transition: opacity 0.4s ease, transform 0.4s ease;
    transform: scale(1.1);
}

.gallery-img-wrapper::after {
    content: attr(data-caption);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) translateY(10px);
    color: #fff;
    font-size: 1.1rem;
    font-weight: 500;
    text-align: center;
    opacity: 0;
    transition: opacity 0.4s ease, transform 0.4s ease;
    pointer-events: none;
}

.gallery-img-wrapper:hover img {
    transform: scale(1.1);
}

.gallery-img-wrapper:hover::before {
    opacity: 1;
    transform: scale(1);
}

.gallery-img-wrapper:hover::after {
    opacity: 1;
    transform: translate(-50%, -50%) translateY(0);
}


/* ------------------------------------------------------------------
                            crops page
----------------------------------------------------------------------- */

.inner-crops {
    padding: 20px 0px 50px 0px;
    width: 100%;
    background-image: url('../images/home/crops-bg.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.inner-crops {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.inner-crops::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(0, 0, 0, 0.329) 0%,
            rgba(0, 0, 0, 0.226) 35%,
            rgba(0, 0, 0, 0.15) 60%,
            rgba(0, 0, 0, 0) 100%);
    z-index: 1;
    pointer-events: none;
}

.inner-crops .crops-img {
    display: flex;
    justify-content: center;
    align-items: center;
}

.inner-crops .crops-img img {
    width: 600px;
    height: auto;
}

.crops-wrap {
    position: relative;
    z-index: 20;
}

.crops-wrap .crops-card-overlay-1 .img img {
    width: 80px;
    height: auto;
    margin-bottom: 15px;

}

.crops-wrap .crops-card-overlay-1 h4 {
    font-size: 20px;
    margin-bottom: 6px;
}

.crops-wrap .crops-card-overlay-1 {
    position: absolute;
    top: 25%;
    left: -12%;
    width: 100%;
    max-width: 415px;
}



.crops-wrap .crops-card-overlay-2 .img img {
    width: 80px;
    height: auto;
    margin-bottom: 15px;

}

.crops-wrap .crops-card-overlay-2 h4 {
    font-size: 20px;
    margin-bottom: 6px;
}

.crops-wrap .crops-card-overlay-2 {
    position: absolute;
    bottom: 2%;
    right: -12%;
    width: 100%;
    max-width: 415px;

}

.line-overlay-1 {
    position: absolute;
    top: 30%;
    left: 8%;
    z-index: -1;
}

.line-overlay-2 {
    position: absolute;
    bottom: 23%;
    right: 21%;
    z-index: -1;
}



/*==================== crod detal section=============== */
.inner-crops-detail {
    padding: 50px 0px;
}

.inner-crops-detail .owl-stage-outer {
    padding: 20px 0px;
}

.blog-card {
    background: #fff;
    border-radius: 18px;
    padding: 18px;
    border: 1px solid #e9f0e4;
    transition: all 0.3s ease;
}

.blog-card:hover {
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    transform: translateY(-5px);
}

.blog-img img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    border-radius: 14px;
}

.blog-content {
    padding: 16px 6px 6px;
}

.blog-date {
    font-size: 14px;
    color: #7b8a72;
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 10px;
}

.blog-content h3 {
    font-size: 22px;
    font-weight: 600;
    color: #1c1c1c;
    margin-bottom: 10px;
}

.blog-desc {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 14px;
}

.read-more {
    font-size: 15px;
    font-weight: 600;
    color: #7dbf38;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.read-more:hover {
    color: #5da126;
}





.inner-crops-detail .owl-nav {
    position: absolute !important;
    top: 50% !important;
    width: 100% !important;
    transform: translateY(-50%) !important;
    display: flex !important;
    justify-content: space-between !important;
    pointer-events: none !important;
}

.inner-crops-detail .owl-nav button {
    pointer-events: all !important;
    background: #3B9A07 !important;
    width: 38px !important;
    height: 38px !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: all 0.3s ease !important;
    border: none !important;
    outline: none !important;
}

.inner-crops-detail .owl-nav button:hover {
    background: linear-gradient(135deg,
            #2e7d32,
            #3B9A07,
            #2e7d32) !important;
    transform: scale(1.08);
    box-shadow: 0 8px 20px rgba(59, 154, 7, 0.35);
}


.inner-crops-detail .owl-nav-icon {
    color: #fff !important;
    font-size: 20px !important;
    line-height: 1 !important;
}

.inner-crops-detail .owl-prev {
    margin-left: -60px !important;
}

.inner-crops-detail .owl-next {
    margin-right: -60px !important;
}

.inner-crops-detail .owl-nav-icon {
    color: #fff !important;
    font-size: 20px !important;
    line-height: 1 !important;
}

.inner-crops-detail .owl-prev {
    margin-left: -60px !important;
}

.inner-crops-detail .owl-next {
    margin-right: -60px !important;
}



.custom-dropdown-toggle .arrow {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-right: 2px solid #333;
    border-bottom: 2px solid #333;
    transform: rotate(45deg);
    margin-left: 5px;
    transition: transform 0.3s;
}

.custom-dropdown.open .custom-dropdown-toggle .arrow {
    transform: rotate(-135deg);
}

.custom-dropdown-menu {
    display: none;
    position: absolute;
    left: 0;
    top: 98%;
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    z-index: 99999 !important;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
    padding: 20px 0;
}

/* Show menu when open */
.custom-dropdown.open .custom-dropdown-menu {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

/* Overlay effect using ::before */
.custom-dropdown-menu::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    border-radius: 8px;
}

/* Columns inside dropdown */
.custom-dropdown-menu .col-md-3 {
    position: relative;
    padding: 0 15px;
    transition: background 0.3s ease;
}

/* Column hover effect */
.custom-dropdown-menu .col-md-3:hover {
    background: rgba(0, 0, 0, 0.02);
    border-radius: 5px;
}

/* Header style */
.custom-dropdown-menu .dropdown-header {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 5px;
    color: #2c3e50;
}

/* Items style */
.custom-dropdown-menu .dropdown-item {
    display: block;
    padding: 6px 0;
    color: #555;
    position: relative;
    text-decoration: none;
    transition: all 0.3s ease;
}

/* Hover underline using after */
.custom-dropdown-menu .dropdown-item::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background-color: #28a745;
    /* accent color */
    transition: width 0.3s ease;
}

.custom-dropdown-menu .dropdown-item:hover {
    color: #28a745;
}

.custom-dropdown-menu .dropdown-item:hover::after {
    width: 100%;
}

.custom-dropdown-menu {
    position: absolute;
    z-index: 9999 !important;
}