/********** Template CSS **********/
:root {
    --primary: #3a6d1e;
    --secondary: #FF6922;
    --light: #EFFDF5;
    --dark: #152010;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    transition: .5s;
}

.btn.btn-primary,
.btn.btn-secondary {
    color: #FFFFFF;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 50px;
}


/*** Navbar ***/
.nav-bar {
    position: relative;
    margin-top: 45px;
    padding: 0 3rem;
    transition: .5s;
    z-index: 9999;
}

.nav-bar.sticky-top {
    position: sticky;
    padding: 0;
    z-index: 9999;
}

.navbar {
    box-shadow: 0 0 30px rgba(0, 0, 0, .08);
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 5px;
    transition: .5s;
}

.navbar .dropdown-toggle[aria-expanded=true]::after {
    transform: rotate(-180deg);
}

.navbar-light .navbar-nav .nav-link {
    margin-right: 30px;
    padding: 25px 0;
    color: #FFFFFF;
    font-size: 15px;
    text-transform: uppercase;
    outline: none;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--primary);
}

@media (max-width: 991.98px) {
    .nav-bar {
        margin: 0;
        padding: 0;
    }

    .navbar-light .navbar-nav .nav-link {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar-light .navbar-nav {
        border-top: 1px solid #EEEEEE;
    }
}

.navbar-light .navbar-brand {
    height: 75px;
}

.navbar-light .navbar-nav .nav-link {
    color: var(--dark);
    font-weight: 500;
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        top: 100%;
        margin-top: 0;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;

    }

    .navbar .nav-item:hover .dropdown-menu {
        transform: rotateX(0deg);
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}



/*** Header ***/
@media (min-width: 992px) {
    .header {
        margin-top: -120px;
    }
}

.header-carousel .owl-nav {
    position: absolute;
    top: 50%;
    left: -25px;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
}

.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next {
    margin: 7px 0;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: var(--primary);
    border-radius: 40px;
    font-size: 20px;
    transition: .5s;
}

.header-carousel .owl-nav .owl-prev:hover,
.header-carousel .owl-nav .owl-next:hover {
    background: var(--dark);
}

@media (max-width: 768px) {
    .header-carousel .owl-nav {
        left: 25px;
    }
}

.breadcrumb-item+.breadcrumb-item::before {
    color: #DDDDDD;
}


/*** Icon ***/
.icon {
    padding: 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #FFFFFF !important;
    border-radius: 50px;
    border: 1px dashed var(--primary) !important;
}


/*** About ***/
.about-img img {
    position: relative;
    z-index: 2;
}

.about-list ul li{
    list-style-type: none;
    padding-bottom: 5px;
}

.about-img::before {
    position: absolute;
    content: "";
    top: 0;
    left: -50%;
    width: 100%;
    height: 100%;
    background: var(--primary);
    transform: skew(20deg);
    z-index: 1;
}

.aargoyo-mission{
    background-color: #8ea084;
    padding: 20px;
    border-radius: 20px;
}

.aargoyo-mission h6 {
    color: #fff;
    font-size: 30px;
}

.aargoyo-mission p {
    color: #fff;
    margin-top: 15px;
}


/*** Category ***/
.cat-item div {
    background: #FFFFFF;
    border: 1px dashed #00b9014d;
    transition: .5s;
}

.cat-item:hover div {
    background: var(--primary);
    border-color: transparent;
}

.cat-item div * {
    transition: .5s;
}

.cat-item:hover div * {
    color: #FFFFFF !important;
}


/*** Property List ***/
.nav-pills .nav-item .btn {
    color: var(--dark);
}

.nav-pills .nav-item .btn:hover,
.nav-pills .nav-item .btn.active {
    color: #FFFFFF;
}

.property-item {
    box-shadow: 0 0 30px rgba(0, 0, 0, .08);
}

.property-item img {
    transition: .5s;
}

.property-item:hover img {
    transform: scale(1.1);
}

.property-item .border-top {
    border-top: 1px dashed rgba(0, 185, 142, .3) !important;
}

.property-item .border-end {
    border-right: 1px dashed rgba(0, 185, 142, .3) !important;
}


/*** Team ***/
.team-item {
    box-shadow: 0 0 30px rgba(0, 0, 0, .08);
    transition: .5s;
    height: 100%;
    min-height: 300px;
}

.team-item .btn {
    color: var(--primary);
    background: #FFFFFF;
    box-shadow: 0 0 30px rgba(0, 0, 0, .15);
}

.team-item .btn:hover {
    color: #FFFFFF;
    background: var(--primary);
}

.team-item:hover {
    border-color: var(--secondary) !important;
}

.team-item:hover .bg-primary {
    background: var(--secondary) !important;
}

.team-item:hover .bg-primary i {
    color: var(--secondary) !important;
}


/*** Testimonial ***/
.testimonial-carousel {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

@media (min-width: 576px) {
    .testimonial-carousel {
        padding-left: 4rem;
        padding-right: 4rem;
    }
}

.testimonial-carousel .testimonial-item .border {
    border: 1px dashed rgba(0, 185, 142, .3) !important;
}

.testimonial-carousel .owl-nav {
    position: absolute;
    width: 100%;
    height: 40px;
    top: calc(50% - 20px);
    left: 0;
    display: flex;
    justify-content: space-between;
    z-index: 1;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    position: relative;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: var(--primary);
    border-radius: 40px;
    font-size: 20px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    background: var(--dark);
}


/*** Footer ***/
.footer .btn.btn-social {
    margin-right: 5px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 35px;
    transition: .3s;
}

.footer .btn.btn-social:hover {
    color: var(--primary);
    border-color: var(--light);
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    font-size: 15px;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .form-control {
    border-color: rgba(255, 255, 255, 0.5);
}

.footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: var(--light);
}

.footer .footer-menu a {
    margin-right: 15px;
    padding-right: 15px;
    border-right: 1px solid rgba(255, 255, 255, .1);
}

.footer .footer-menu a:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
}

/* ***************************chiranjit*************** */


:root {
            --primary: #285c3b;
            --primary-dark: #17452b;
            --secondary: #87a96b;
            --light-green: #eef5e9;
            --cream: #f8f5ec;
            --dark: #202b23;
            --text: #626a63;
            --white: #ffffff;
            --border: #e5e9e2;
        }
/* =========================
           HERO
        ========================= */

        .inner-hero {
            position: relative;
            background:
                linear-gradient(90deg, rgba(25,72,43,.94), rgba(40,92,59,.62)),
                url("../img/carousel-2.jpg") center/cover no-repeat;
            padding: 160px 0 60px;
            overflow: hidden;
        }

        .inner-hero::before {
            content: "";
            position: absolute;
            width: 320px;
            height: 320px;
            border: 1px solid rgba(255,255,255,.15);
            border-radius: 50%;
            right: -100px;
            top: -120px;
        }

        .inner-hero::after {
            content: "";
            position: absolute;
            width: 220px;
            height: 220px;
            border: 1px solid rgba(255,255,255,.12);
            border-radius: 50%;
            right: 50px;
            bottom: -160px;
        }

        .hero-content {
            position: relative;
            z-index: 2;
        }

        .hero-subtitle {
            color: #dbe9d5;
            text-transform: uppercase;
            letter-spacing: 3px;
            font-size: 13px;
            font-weight: 600;
            margin-bottom: 12px;
        }

        .inner-hero h1 {
            color: #fff;
            font-size: clamp(32px, 5vw, 45px);
            margin-bottom: 15px;
            font-family: "Playfair Display", serif;
        }

        .breadcrumb {
            margin: 0;
        }

        .breadcrumb-item,
        .breadcrumb-item a {
            color: rgba(255,255,255,.75);
        }

        .breadcrumb-item.active {
            color: #fff;
        }

        .breadcrumb-item + .breadcrumb-item::before {
            color: rgba(255,255,255,.5);
        }
         /* =========================
           POLICY SECTION
        ========================= */

        .policy-area {
            padding: 50px 0 10px;
        }

        .policy-sidebar {
            position: sticky;
            top: 30px;
        }

        .policy-nav {
            background: var(--light-green);
            padding: 25px;
            border-radius: 14px;
            border: 1px solid #dfe9da;
        }

        .policy-nav-title {
            font-size: 20px;
            margin-bottom: 15px;
        }

        .policy-nav a {
            display: block;
            padding: 9px 0;
            color: #59645c;
            font-size: 14px;
            border-bottom: 1px solid rgba(40,92,59,.09);
        }

        .policy-nav a:last-child {
            border-bottom: 0;
        }

        .policy-nav a:hover {
            color: var(--primary);
            padding-left: 4px;
        }

        .policy-content {
            padding-left: 35px;
        }

        .policy-date {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: var(--light-green);
            color: var(--primary);
            border-radius: 30px;
            padding: 8px 16px;
            font-size: 13px;
            font-weight: 600;
            margin-bottom: 30px;
        }

        .policy-intro {
            font-size: 17px;
            color: #555e57;
            margin-bottom: 40px;
        }

        .policy-section {
            padding: 0 0 30px;
            margin-bottom: 30px;
            border-bottom: 1px solid var(--border);
        }

        .policy-section:last-child {
            border-bottom: 0;
        }

        .policy-section h2 {
            font-size: 25px;
            margin-bottom: 14px;
        }

        .policy-section h2 span {
            color: var(--secondary);
            font-family: "DM Sans", sans-serif;
            font-size: 24px;
            font-weight: 700;
            margin-right: 7px;
        }

        .policy-section p {
            margin-bottom: 12px;
        }

        .policy-section ul {
            padding-left: 20px;
        }

        .policy-section li {
            margin-bottom: 7px;
        }

        .notice-box {
            background: var(--cream);
            border-left: 4px solid var(--secondary);
            padding: 22px 25px;
            border-radius: 8px;
            margin: 25px 0;
        }

        .notice-box strong {
            color: var(--primary);
        }

        /* =========================
           CTA
        ========================= */

        .policy-cta {
            background: var(--light-green);
            padding: 70px 0;
        }

        .policy-cta h2 {
            font-size: 36px;
        }

        .btn-green {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: var(--primary);
            color: #fff;
            padding: 13px 27px;
            border-radius: 30px;
            font-weight: 600;
            transition: .3s;
        }

        .btn-green:hover {
            background: var(--primary-dark);
            color: #fff;
            transform: translateY(-2px);
        }

        /* =========================
           RESPONSIVE
        ========================= */

        @media (max-width: 991px) {
            .navbar-nav {
                padding-top: 15px;
            }

            .btn-header {
                display: inline-block;
                margin-top: 10px;
            }

            .policy-sidebar {
                position: static;
                margin-bottom: 35px;
            }

            .policy-content {
                padding-left: 0;
            }

            .inner-hero {
                padding: 75px 0;
            }
        }

        @media (max-width: 767px) {
            .navbar {
                padding: 14px 0;
            }

            .navbar-brand {
                font-size: 26px;
            }

            .inner-hero {
                padding: 65px 0;
            }

            .inner-hero h1 {
                font-size: 42px;
            }

            .policy-area {
                padding: 60px 0;
            }

            .policy-section h2 {
                font-size: 22px;
            }

            .policy-intro {
                font-size: 15px;
            }

            .policy-cta {
                padding: 55px 0;
            }

            .policy-cta h2 {
                font-size: 30px;
            }

            
        }


        /* =====================================================
           PRODUCTS SECTION
        ===================================================== */

        .products-section {
            padding: 90px 0;
        }
        .section-heading {
            max-width: 700px;
            margin: 0 auto 45px;
            text-align: center;
        }
        .section-subtitle {
            color: var(--secondary);
            text-transform: uppercase;
            letter-spacing: 3px;
            font-size: 12px;
            font-weight: 700;
            margin-bottom: 10px;

        }
        .section-heading h2 {
            font-size: clamp(34px, 4vw, 48px);
            margin-bottom: 15px;
            font-family: "Playfair Display", serif;
        }
        .section-heading p {
            color: var(--text);
            margin-bottom: 0;
        }

        /* =====================================================
           PRODUCT CARD
        ===================================================== */

        .product-card {
            background: #fff;
            border: 1px solid var(--border);
            border-radius: 18px;
            overflow: hidden;
            height: 100%;
            transition: .35s ease;
            position: relative;
        }

        .product-card:hover {
            transform: translateY(-7px);
            border-color: #cfdcc8;
            box-shadow: 0 18px 45px rgba(31, 70, 44, .10);
        }

        /* Product image */
        .product-image {
            height: 285px;
            background: var(--light-green);
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .product-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform .5s ease;
        }

        .product-card:hover .product-image img {
            transform: scale(1.06);
        }

        /* Placeholder image */
        .product-placeholder {
            width: 100%;
            height: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            color: var(--primary);
            background: radial-gradient(circle at center, #ffffff 0, #eef5e9 65%);
        }

        .product-placeholder i {
            font-size: 65px;
            margin-bottom: 8px;
        }

        .product-placeholder span {
            font-size: 12px;
            letter-spacing: 1px;
            text-transform: uppercase;
            font-weight: 600;
        }


        /* Badge */
        .product-badge {
            position: absolute;
            left: 15px;
            top: 15px;
            background: var(--primary);
            color: #fff;
            padding: 6px 12px;
            border-radius: 30px;
            font-size: 11px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: .5px;
            z-index: 2;
        }

        .product-badge.new {
            background: #a87534;
        }

        .product-badge.best {
            background: #5e7e42;
        }


        /* Wishlist */
        .wishlist {
            position: absolute;
            top: 15px;
            right: 15px;
            width: 39px;
            height: 39px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            background: rgba(255, 255, 255, .95);
            color: var(--primary);
            z-index: 3;
            transition: .3s;
        }

        .wishlist:hover {
            background: var(--primary);
            color: #fff;
        }

        /* Product content */
        .product-content {
            padding: 25px;
        }

        .product-category {
            color: var(--secondary);
            font-size: 11px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            margin-bottom: 7px;
        }

        .product-title {
            font-size: 20px;
            margin-bottom: 9px;
            color: var(--dark);
            font-family: "Playfair Display", serif;
        }

        .product-title a {
            color: inherit;
        }

        .product-title a:hover {
            color: var(--primary);
        }

        .product-description {
            font-size: 14px;
            color: #737b75;
            line-height: 1.6;
            min-height: 48px;
            margin-bottom: 18px;
        }

        /* Rating */
        .product-rating {
            display: flex;
            align-items: center;
            gap: 7px;
            margin-bottom: 18px;
        }

        .stars {
            color: #d39b35;
            letter-spacing: 1px;
            font-size: 13px;
        }

        .review-count {
            font-size: 12px;
            color: #8a918c;
        }

        /* Price */
        .product-bottom {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            padding-top: 18px;
            border-top: 1px solid var(--border);
        }

        .product-price {
            font-weight: 700;
            color: var(--primary);
            font-size: 20px;
        }

        .product-price del {
            color: #a4aaa5;
            font-size: 13px;
            font-weight: 400;
            margin-left: 4px;
        }

        .view-product {
            width: 42px;
            height: 42px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            background: var(--light-green);
            color: var(--primary);
            transition: .3s ease;
        }

        .view-product:hover {
            background: var(--primary);
            color: #fff;
        }