@import url('https://fonts.googleapis.com/css2?family=Instrument+Sans:ital,wght@0,400..700;1,400..700&display=swap');

body {
    font-family: "Instrument Sans", sans-serif;
    font-style: normal;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a {
    text-decoration: none;
}

ul {
    padding: 0px;
    margin: 0;
}

ul li {
    list-style: none;
}

p {
    text-align: justify;
    margin-bottom: 0px;
}

h1 {
    margin-bottom: 0px;
}

h2,
h3,
h4 {
    margin-bottom: 0px;
}

:root {

    --primary-black: #0b0d0c;
    --black: #000;
    --white: #fff;
    --green: #174d20;
    --gold: #c99a3b;
    --blue: #266893;

}


/* section css */
section {
    padding: 50px 0px;
}

.section-head {
    text-align: center;
    margin-bottom: 50px;
}

.section-head .heading {
    text-align: center;
    font-size: 20px;
    color: var(--black);
    margin-bottom: 25px;
    font-weight: 500;
}

.section-head .sub-head {
    color: var(--dark-orange);
    margin-bottom: 20px;
}

.section-head .head-para {
    text-align: center;
    font-size: 18px;
}


@media screen and (max-width: 767px) {
    p {
        font-size: 12px;
    }

    section {
        padding: 20px 0px;
    }

    .section-head {
        margin-bottom: 20px;
    }

    .section-head .heading {
        font-size: 16px;
        margin-bottom: 15px;
    }

    .section-head .sub-head {
        font-size: 20px;
    }

    .section-head .head-para {
        font-size: 14px;
    }
}

@media screen and (max-width: 575px) {
    .section-head .heading {
        font-size: 14px;
    }
}

/* section css */

/* footer css */
.footer {
    padding: 50px 0px;
}

@media screen and (max-width: 767px) {
    .footer {
        padding: 20px 0px;
    }
}

/* footer css */


/* custom css start   -------------------------------------------------------- */

/* ----------- navbar css start here ----------- */

.navbar {
    padding: 5px 0px;
    background: var(--white);
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.navbar .logo {
    width: 120px;
}

.navbar .navbar-nav .nav-item .nav-link {
    color: var(--green);
    font-size: 20px;
    font-weight: 600;
}

.navbar .navbar-nav .nav-item .nav-link:hover {
    color: var(--gold);
}

.navbar .navbar-nav .nav-item {
    position: relative;
}

.navbar .navbar-nav .nav-item::after {
    content: "";
    position: absolute;
    width: 0%;
    left: 0;
    bottom: 0%;
    height: 2px;
    background: var(--gold);
    opacity: 0;
    transition: 0.5s ease-in-out;
}

.navbar .navbar-nav .nav-item:hover::after {
    opacity: 1;
    width: 100%;
    transition: 0.5s ease-in-out;
}

.navbar-light .navbar-toggler {
    font-size: 1rem;
    border-color: black;
}

.navbar-light .navbar-toggler:focus {
    border: 1px solid var(--green);
    box-shadow: none;
}



.nav-btn a {
    display: inline-block;
    background: var(--gold);

    padding: 10px 15px;
    border-radius: 5px;
    color: var(--white);
    font-size: 20px;
    font-weight: 500;
    transition: .4s ease-in-out;
}

.cart-btn a{
    background: var(--green);
}

.nav-btn a:hover {
    background: var(--green);
}
.cart-btn a:hover{
    background: var(--gold);
}


/* responsive navbar */

@media screen and (max-width: 1400px) {
    .navbar .navbar-nav .nav-item .nav-link {
        font-size: 16px;
    }
}

@media screen and (max-width: 1200px) {
    .navbar .logo {
        width: 110px;
    }

    .navbar .navbar-nav .nav-item .nav-link {
        font-size: 14px;
    }

    .nav-btn a {
        padding: 5px 10px;
        font-size: 14px;
    }
}

@media screen and (max-width: 991px) {
    .navbar .logo {
        width: 90px;
    }

    .navbar .navbar-nav {
        display: flex;
        flex-direction: row;
        justify-content: center;
    }

    .navbar .navbar-nav .nav-item .nav-link {
        font-size: 16px;
    }

    .nav-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        margin-top: 20px;
    }

    .nav-btn a {
        margin-top: 10px;
        padding: 5px 10px;
        font-size: 14px;
    }


}

@media screen and (max-width: 767px) {
    .navbar .logo {
        width: 70px;
    }

    .navbar .navbar-nav {
        display: flex;
        flex-direction: column;
        justify-content: start;
        margin-top: 20px;
    }


    .nav-btn a {
        margin-top: 10px;
        padding: 5px 10px;
        font-size: 14px;
    }

}


.dropdown .dropdown-menu {
    display: block;
    position: absolute;
    border: none !important;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 0.4s ease;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown .dropdown-menu li {
    font-size: 18px;
    padding: 10px 5px;
    transition: 0.2s ease-in-out;
}

.dropdown .dropdown-menu li a {
    color: var(--black);
    transition: 0.2s ease-in-out;
}

.dropdown .dropdown-menu li:hover {
    background: var(--blue);
}

.dropdown .dropdown-menu li:hover a {
    color: var(--white);
}

.dropdown .dropdown-menu .dropdown-item {
    background: none;
}

@media screen and (max-width: 1400px) {
    .dropdown .dropdown-menu li {
        font-size: 16px;
        padding: 5px 2px;
    }
}

@media screen and (max-width: 991px) {
    .dropdown .dropdown-menu {
        display: none;
    }

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

    .dropdown .dropdown-menu li {
        font-size: 18px;
    }
}

@media screen and (max-width: 767px) {
    .dropdown .dropdown-menu {
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
    }

    .dropdown .dropdown-menu li {
        font-size: 16px;
        padding: 5px 2px;
        transition: 0.2s ease-in-out;
    }
}


/* --------------- end of navbar css here ------------- */



/* --------------- banner css start here ---------------- */

.carousel-indicators {
    margin-bottom: 5px;
}

.carousel-indicators [data-bs-target] {
    width: 10px;
    height: 10px;
    border: none;
    background: var(--gold) !important;
}

.carousel-indicators button {
    border-radius: 50px;
}

@media screen and (max-width: 767px) {
    .carousel-indicators [data-bs-target] {
        width: 5px;
        height: 5px;
    }
}

/* --------------------- end of banner css here --------------------- */


/* --------------------- about us css start here --------------------- */

.about-content {
    padding-right: 50px;
}

.about-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #3f8f2f;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.about-tag i {
    color: #c99a3b;
    font-size: 17px;
}

.about-content h2 {
    color: #174d20;
    font-size: 46px;
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 22px;
}

.about-content h2 span {
    color: #c99a3b;
}

.about-content h2 strong {
    color: #174d20;
}

.about-content p {
    color: #626862;
    line-height: 1.8;
    margin-bottom: 15px;
}

.about-content .about-highlight {
    color: #303830;
    font-size: 18px;
    line-height: 1.7;
    font-weight: 500;
}


/* ABOUT POINTS */

.about-points {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin: 30px 0;
}

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

.point-icon {
    min-width: 48px;
    height: 48px;
    background: #edf5eb;
    color: #3f8f2f;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all 0.4s ease;
}

.about-point:hover .point-icon {
    background: #c99a3b;
    color: #ffffff;
    transform: scale(1.08);
}

.about-point h5 {
    color: #174d20;
    font-size: 16px;
    font-weight: 600;
    margin: 2px 0 5px;
}

.about-point p {
    color: #777;
    line-height: 1.5;
}

.about-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 13px 22px;
    background: #c99a3b;
    border: 2px solid #c99a3b;
    border-radius: 5px;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.4s ease;
}

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

.about-btn:hover {
    background: #174d20;
    border-color: #174d20;
    color: #ffffff;
    transform: translateY(-3px);
}

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

/* responsive */

@media screen and (max-width:1400px) {
    .about-content h2 {
        font-size: 22px;
        margin-bottom: 10px;
    }
}

@media screen and (max-width:1200px) {
    .about-content h2 {
        font-size: 24px;
        margin-bottom: 10px;
    }

    .about-content .about-text p {
        font-size: 12px;
    }

    .about-content .about-highlight {
        font-size: 14px;
    }

    .about-point h5 {
        font-size: 14px;
    }

    .about-point p {
        font-size: 12px;
    }
}

@media (max-width: 991px) {
    .about-content {
        padding-right: 0;
        margin-bottom: 50px;
    }

    .about-content h2 {
        font-size: 28px;
    }

    .about-content .about-text p {
        font-size: 14px;
    }

    .about-content .about-highlight {
        font-size: 16px;
    }

    .about-point p {
        font-size: 14px;
    }
}


@media (max-width: 767px) {
    .about-content {
        text-align: center;
    }

    .about-tag {
        justify-content: center;
    }

    .about-tag {
        font-size: 12px;
    }

    .about-tag i {
        font-size: 14px;
    }

    .about-content h2 {
        font-size: 18px;
    }

    .about-content .about-text p {
        font-size: 12px;
    }

    .about-point p {
        font-size: 12px;
    }

    .about-content .about-highlight {
        font-size: 14px;
    }

    .about-points {
        grid-template-columns: 1fr;
        text-align: left;
    }

    .about-point p {
        font-size: 12px;
    }

    .about-btn {
        margin-top: 5px;
    }

    .about-btn {
        padding: 5px 10px;
        font-size: 14px;
    }
}



/* --------------------- end of about us css here --------------------- */


/* --------------------- products section css start here --------------------- */


.products-heading {
    position: relative;
    z-index: 2;
    max-width: 760px;
    margin: 0 auto 55px;
}

.products-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #3f8f2f;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 14px;
}

.products-tag i {
    color: #c99a3b;
    font-size: 17px;
}

.products-heading h2 {
    color: #174d20;
    font-size: 44px;
    line-height: 1.25;
    font-weight: 700;
    margin-bottom: 15px;
}

.products-heading h2 span {
    color: #c99a3b;
}

.products-heading p {
    color: #626862;
    line-height: 1.8;
}



.product-card {
    position: relative;
    height: 100%;
    background: #ffffff;
    border: 1px solid #e7ebe5;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(23, 77, 32, 0.473);
    transition: all 0.4s ease;
}

.product-card:hover {
    transform: translateY(-8px);
    border-color: rgba(201, 154, 59, 0.45);
    box-shadow: 0 18px 40px rgba(23, 77, 32, 0.342);
}



.product-image img {
    width: 100%;
    transition: transform 0.6s ease;
}

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

.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 6px 12px;
    background: #174d20;
    color: #ffffff;
    font-size: 11px;
    font-weight: 600;
    border-radius: 20px;
    letter-spacing: 0.5px;
}


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

.product-category {
    display: block;
    color: #3f8f2f;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.product-content h3 {
    color: var(--green);
    font-size: 18px;
    font-weight: 600;
    margin: 10px 0px;
}



.product-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 15px;
    border-top: 1px solid #b8d4a5;
}

.product-price {
    color: #c99a3b;
    font-size: 20px;
    font-weight: 700;
}



.product-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #edf5eb;
    color: #174d20;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.4s ease;
}

.product-btn:hover {
    background: #c99a3b;
    color: #ffffff;
    transform: rotate(-45deg);
}


.products-view {
    margin-top: 50px;
}

.products-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 13px 25px;
    background: #174d20;
    border: 2px solid #174d20;
    border-radius: 5px;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.4s ease;
}

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

.products-btn:hover {
    background: #c99a3b;
    border-color: #c99a3b;
    color: #ffffff;
    transform: translateY(-3px);
}

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


/* responsive */

@media screen and (max-width: 1400px) {
    .products-heading h2 {
        font-size: 36px;
    }
}

@media screen and (max-width: 1200px) {
    .products-heading h2 {
        font-size: 32px;
    }

    .product-content h3 {
        font-size: 14px;
    }
}

@media screen and (max-width: 991px) {
    .products-heading h2 {
        font-size: 28px;
    }

    .product-content h3 {
        font-size: 18px;
    }
}


@media screen and (max-width: 767px) {
    .products-heading {
        margin-bottom: 40px;
    }

    .products-tag {
        font-size: 12px;
    }

    .products-tag i {
        font-size: 14px;
    }

    .products-heading h2 {
        font-size: 18px;
    }

    .product-content h3 {
        font-size: 14px;
    }

}

/* --------------------- end of products section css here --------------------- */



/* --------------------- mission vision section css start here --------------------- */

.mission-vision-section {
    position: relative;
    padding: 100px 0;
    background: var(--green);
    overflow: hidden;
}

.mission-vision-section::before {
    content: "";
    position: absolute;
    width: 450px;
    height: 450px;
    border: 1px solid rgba(201, 154, 59, 0.18);
    border-radius: 50%;
    top: -230px;
    left: -150px;
}

.mission-vision-section::after {
    content: "";
    position: absolute;
    width: 350px;
    height: 350px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    bottom: -180px;
    right: -100px;
}



.section-heading {
    position: relative;
    z-index: 2;
    max-width: 750px;
    margin: 0 auto 55px;
}

.section-heading .section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #e6bd67;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.section-heading .section-tag i {
    color: #ffffff;
}

.section-heading h2 {
    color: #ffffff;
    font-size: 44px;
    line-height: 1.25;
    font-weight: 700;
    margin-bottom: 15px;
}

.section-heading h2 span {
    color: #e6bd67;
}

.section-heading p {
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;

}


/* mission vision card */

.mission-card {
    position: relative;
    height: 100%;
    padding: 40px 35px;
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid rgba(201, 154, 59, 0.35);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    transition: all 0.4s ease;
}


/* Gold top border */

.mission-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: #c99a3b;
    transform: scaleX(0);
    transform-origin: left;
    transition: 0.4s ease;
}

.mission-card:hover::before {
    transform: scaleX(1);
}

.mission-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.22);
}

.mission-icon {
    width: 65px;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #edf5eb;
    color: #174d20;
    font-size: 26px;
    margin-bottom: 25px;
    border: 1px solid rgba(63, 143, 47, 0.15);
    transition: all 0.4s ease;
}

.mission-card:hover .mission-icon {
    background: #c99a3b;
    color: #ffffff;
    transform: rotateY(180deg);
}


/* card content */

.card-label {
    display: inline-block;
    color: #3f8f2f;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.mission-card-content h3 {
    color: #174d20;
    font-size: 27px;
    line-height: 1.35;
    font-weight: 700;
    margin-bottom: 15px;
}

.mission-card-content>p {
    color: #626862;
    line-height: 1.8;
    margin-bottom: 20px;
}


/* gold line */

.card-line {
    width: 55px;
    height: 3px;
    background: #c99a3b;
    margin: 20px 0;
}


/* list */

.mission-card-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mission-card-content ul li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #3f443f;
    font-size: 14px;
    margin-bottom: 12px;
}

.mission-card-content ul li i {
    color: #3f8f2f;
    font-size: 14px;
}

.mission-card-main {
    border-color: rgba(63, 143, 47, 0.3);
}


/* responsive */

@media screen and (max-width: 1200px) {
    .section-heading h2 {
        font-size: 32px;
    }

    .mission-card-content h3 {
        font-size: 22px;
    }
}

@media (max-width: 991px) {

    .mission-vision-section {
        padding: 70px 0;
    }

    .section-heading h2 {
        font-size: 28px;
    }

    .mission-card {
        padding: 25px 15px;
    }

    .mission-card-content h3 {
        font-size: 18px;
    }

}


@media (max-width: 767px) {

    .mission-vision-section {
        padding: 50px 0;
    }

    .section-heading {
        margin-bottom: 40px;
    }

    .section-heading .section-tag {
        font-size: 12px;
    }

    .section-heading .section-tag i {
        font-size: 14px;
    }

    .section-heading h2 {
        font-size: 18px;
    }

    .mission-card {
        padding: 20px 10px;
    }

    .mission-icon {
        width: 45px;
        height: 45px;
        font-size: 18px;
        margin-bottom: 15px;
    }

    .mission-card-content ul li {
        font-size: 12px;
    }

}


/* end of mission vision section css here */


/* why choose us section css start here */



.why-choose-section {
    position: relative;
    background: #f8faf7;
    overflow: hidden;
}


/* Decorative background */

.why-choose-section::before {
    content: "";
    position: absolute;
    width: 350px;
    height: 350px;
    border-radius: 50%;

    background: rgba(63, 143, 47, 0.178);

    top: -180px;
    right: -100px;
}

.why-choose-section::after {
    content: "";
    position: absolute;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: rgba(201, 154, 59, 0.315);
    bottom: -120px;
    left: -80px;
}


.why-heading {
    position: relative;
    z-index: 2;
    max-width: 750px;
    margin: 0 auto 55px;
}

.why-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #3f8f2f;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 14px;
}

.why-tag i {
    color: #c99a3b;
    font-size: 16px;
}

.why-heading h2 {
    color: #174d20;
    font-size: 44px;
    line-height: 1.25;
    font-weight: 700;
    margin-bottom: 15px;
}

.why-heading h2 span {
    color: #c99a3b;
}

.why-heading p {
    color: #626862;
    line-height: 1.8;
}


.why-card {
    position: relative;
    height: 100%;
    padding: 35px 30px;
    background: #ffffff;
    border: 1px solid #e4e9e2;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(23, 77, 32, 0.06);
    transition: all 0.4s ease;
}


/* Hover */

.why-card:hover {
    transform: translateY(-8px);
    border-color: rgba(201, 154, 59, 0.5);
    box-shadow: 0 18px 40px rgba(23, 77, 32, 0.13);
}


.why-icon {
    width: 65px;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #edf5eb;
    color: #3f8f2f;
    border-radius: 50%;
    font-size: 25px;
    margin-bottom: 22px;
    transition: all 0.4s ease;
}

.why-card:hover .why-icon {
    background: #174d20;
    color: #ffffff;
    transform: rotateY(180deg);
}



.why-number {
    position: absolute;
    top: 20px;
    right: 25px;
    color: rgba(201, 154, 59, 0.582);
    font-size: 45px;
    font-weight: 700;
    line-height: 1;
}


.why-card h3 {
    color: #174d20;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
}

.why-card p {
    color: #686e68;
    font-size: 14px;
    line-height: 1.75;
    margin: 0;
    max-width: 320px;
}


.why-line {
    width: 45px;
    height: 3px;
    background: #c99a3b;
    margin-top: 22px;
    transition: 0.4s ease;
}

.why-card:hover .why-line {
    width: 75px;
}

/* responsive */

@media screen and (max-width: 1200px) {
    .why-heading h2 {
        font-size: 32px;
    }
    .why-card h3 {
        font-size: 18px;
    }

    .why-number {
        font-size: 36px;
    }
}

@media screen and (max-width: 991px) {

    .why-choose-section {
        padding: 70px 0;
    }

    .why-heading h2 {
        font-size: 28px;
    }

    .why-card {
        padding: 30px 20px;
    }
    .why-card h3 {
        font-size: 22px;
    }

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


@media screen and (max-width: 767px) {

    .why-choose-section {
        padding: 50px 0;
    }

    .why-heading {
        margin-bottom: 40px;
    }

    .why-tag {
        font-size: 12px;
    }

    .why-tag i {
        font-size: 14px;
    }

    .why-heading h2 {
        font-size: 18px;
    }

    .why-card {
        padding: 30px 15px;
    }

    .why-card h3 {
        font-size: 18px;
    }

    .why-number {
        font-size: 24px;
    }

}


    /* ------------------- end of why choose us section css here ------------------- */



/* ------------------- footer css start here ------------------- */
    .main-footer {
        position: relative;
        background: #080b09;
        color: #ffffff;
        overflow: hidden;
    }



    .main-footer::before {
        content: "";
        position: absolute;
        width: 500px;
        height: 500px;
        border: 1px solid rgba(201, 154, 59, 0.08);
        border-radius: 50%;
        top: -300px;
        right: -150px;
        pointer-events: none;
    }

    .main-footer::after {
        content: "";
        position: absolute;
        width: 350px;
        height: 350px;
        border: 1px solid rgba(63, 143, 47, 0.342);
        border-radius: 50%;
        bottom: -220px;
        left: -120px;
        pointer-events: none;
    }

    .footer-main {
        position: relative;
        z-index: 2;
        padding: 80px 0 60px;
        background: radial-gradient(circle at 85% 20%, rgba(63, 143, 47, 0.08),transparent 30%), #080b09;
    }


    .footer-logo {
        display: inline-block;
        margin-bottom: 20px;
    }

    .footer-logo img {
        width: 180px;
        height: auto;
        display: block;
        filter: drop-shadow(0 5px 15px rgba(201, 154, 59, 0.2));
    }

    .footer-about {
        color: rgba(255, 255, 255, 0.65);
        font-size: 14px;
        line-height: 1.8;
        max-width: 390px;
        margin-bottom: 15px;
    }

    .footer-tagline {
        color: #e6bd67;
        font-size: 14px;
        font-weight: 600;
        font-style: italic;
        margin-bottom: 25px;
    }

    .footer-social {
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .footer-social a {
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        border: 1px solid rgba(201, 154, 59, 0.35);
        border-radius: 50%;
        color: #e6bd67;
        font-size: 15px;
        text-decoration: none;
        transition: all 0.4s ease;
    }

    .footer-social a:hover {
        background: #c99a3b;
        border-color: #c99a3b;
        color: #ffffff;
        transform: translateY(-4px);
    }


    .footer-widget h4 {
        position: relative;
        color: #ffffff;
        font-size: 18px;
        font-weight: 600;
        margin-bottom: 25px;
        padding-bottom: 12px;
    }

    .footer-widget h4::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: 0;
        width: 40px;
        height: 2px;
        background: #c99a3b;
    }


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

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

    .footer-widget ul li a {
        display: inline-flex;
        align-items: center;
        gap: 9px;
        color: rgba(255, 255, 255, 0.65);
        font-size: 14px;
        text-decoration: none;
        transition: all 0.3s ease;
    }

    .footer-widget ul li a i {
        color: #3f8f2f;
        font-size: 10px;
        transition: 0.3s ease;
    }

    .footer-widget ul li a:hover {
        color: #e6bd67;
        transform: translateX(5px);
    }

    .footer-widget ul li a:hover i {
        color: #c99a3b;
    }


    .footer-contact li {
        display: flex;
        align-items: flex-start;
        gap: 12px;
       color: rgba(255, 255, 255, 0.65);
        font-size: 14px;
        line-height: 1.6;
        margin-bottom: 18px;
    }

    .contact-icon {
        min-width: 38px;
        width: 38px;
        height: 38px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(63, 143, 47, 0.12);
        border: 1px solid rgba(63, 143, 47, 0.2);
        border-radius: 50%;
        color: #5da84d;
        font-size: 14px;
    }

    .footer-contact li a {
        color: rgba(255, 255, 255, 0.65) !important;
        text-decoration: none !important;
        transition: 0.3s ease;
    }

    .footer-contact li a:hover {
        color: #e6bd67 !important;
    }

    .footer-bottom {
        position: relative;
        z-index: 2;
        padding: 20px 0;
        border-top: 1px solid rgba(201, 154, 59, 0.18);
        background: #050706;
    }

    .footer-bottom p {
        color: rgba(255, 255, 255, 0.5);
        font-size: 13px;
        margin: 0;
    }

    .footer-bottom p span {
        color: #c99a3b;
        font-weight: 600;
    }

    .footer-bottom-links {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        gap: 10px;
    }

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

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

    .footer-bottom-links span {
        color: rgba(201, 154, 59, 0.4);
        font-size: 12px;
    }



    @media (max-width: 991px) {
        .footer-main {
            padding: 70px 0 50px;
        }

        .footer-logo img {
            width: 160px;
        }

        .footer-bottom-links {
            justify-content: flex-start;
            margin-top: 10px;
        }

    }


    @media (max-width: 767px) {
        .footer-main {
            padding: 60px 0 40px;
        }


        .footer-widget {
            margin-top: 15px;
        }

        .footer-bottom {
            text-align: center;
        }

        .footer-bottom-links {
            justify-content: center;

            flex-wrap: wrap;
        }

    }


    @media (max-width: 480px) {

        .footer-bottom-links {
            gap: 7px;
        }

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

    }

    /* ---------------------------------------- end of footer css here ---------------------------------- */


   
    /* ----------------------- wellness section css start here ----------------------- */

    .wellness-categories {
        position: relative;
        padding: 70px 0;
        background: #0c3215;
        overflow: hidden;
    }

    .wellness-categories::before {
        content: "";
        position: absolute;
        width: 600px;
        height: 600px;
        border: 1px solid rgba(201, 154, 59, 0.12);
        border-radius: 50%;
        top: -430px;
        left: 50%;
        transform: translateX(-50%);
    }

    .wellness-categories::after {
        content: "";
        position: absolute;
        width: 450px;
        height: 450px;
        border: 1px solid rgba(255, 255, 255, 0.05);
        border-radius: 50%;
        bottom: -350px;
        right: -100px;
    }



    .wellness-category-row {
        position: relative;
        z-index: 2;
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 18px;
    }

    .wellness-item {
        position: relative;
    }



    .wellness-item:not(:last-child)::after {
        content: "";
        position: absolute;
        width: 18px;
        height: 1px;
        background: #c99a3b;
        top: 50%;
        right: -18px;
        z-index: 5;
    }

    .wellness-card {
        position: relative;
        min-height: 180px;
        padding: 28px 25px;
        background: #ffffff;
        border-radius: 18px;
        border: 1px solid rgba(201, 154, 59, 0.35);
        overflow: hidden;
        display: flex;
        flex-direction: column;
        justify-content: center;
        transition: all 0.45s ease;
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    }



    .wellness-card::after {
        content: "";
        position: absolute;
        width: 0;
        height: 4px;
        background: #c99a3b;
        bottom: 0;
        left: 0;
        transition: 0.45s ease;
    }


    .wellness-card::before {
        content: "";
        position: absolute;
        width: 150px;
        height: 150px;
        border-radius: 50%;
        background: rgba(201, 154, 59, 0.08);
        top: -90px;
        right: -65px;
        transition: 0.5s ease;
    }

    .wellness-number {
        position: absolute;
        top: 18px;
        right: 20px;
        color: rgba(23, 77, 32, 0.678);
        font-size: 40px;
        font-weight: 800;
        line-height: 1;
        transition: 0.4s ease;
    }

    .wellness-icon {
        position: relative;
        z-index: 2;
        width: 58px;
        height: 58px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #174d20;
        color: #e6bd67;
        border-radius: 50%;
        font-size: 22px;
        margin-bottom: 18px;
        border: 4px solid #edf3e9;
        transition: all 0.45s ease;
    }

    .wellness-content {
        position: relative;
        z-index: 2;
    }

    .wellness-content h4 {
        color: #174d20;
        font-size: 19px;
        font-weight: 700;
        margin: 0 0 7px;
    }

    .wellness-content p {
        color: #727872;
        font-size: 13px;
        line-height: 1.6;
        margin: 0;
        max-width: 220px;
    }

    .wellness-arrow {
        position: absolute;
        right: 20px;
        bottom: 20px;
        width: 32px;
        height: 32px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        background: #f2f6ef;
        color: #174d20;
        font-size: 12px;
        transition: all 0.4s ease;
    }

    .wellness-card:hover {
        transform: translateY(-10px);
        border-color: #c99a3b;
        box-shadow:  0 25px 45px rgba(0, 0, 0, 0.25);
    }


    .wellness-card:hover::before {
        width: 200px;
        height: 200px;
        background: rgba(201, 154, 59, 0.14);
    }


    .wellness-card:hover::after {
        width: 100%;
    }


    .wellness-card:hover .wellness-icon {
        background: #c99a3b;
        color: #ffffff;
        transform: rotateY(180deg);
    }


    .wellness-card:hover .wellness-number {
        color: rgba(201, 154, 59, 0.637);
        transform: scale(1.1);
    }


    .wellness-card:hover .wellness-arrow {
        background: #174d20;
        color: #ffffff;
        transform: translateX(3px);
    }

    @media (max-width: 991px) {
        .wellness-category-row {
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
        }

        .wellness-item:not(:last-child)::after {
            display: none;
        }

        .wellness-categories {
            padding: 60px 0;
        }
    }

    @media (max-width: 575px) {

        .wellness-category-row {
            grid-template-columns: 1fr;
            gap: 15px;
        }

        .wellness-card {
            min-height: 155px;
            padding: 25px 22px;
        }

        .wellness-icon {
            width: 52px;
            height: 52px;
            font-size: 20px;
        }

        .wellness-content h4 {
            font-size: 18px;
        }

        .wellness-content p {
            font-size: 13px;
        }
    }

    /* ----------------- end of wellness section css here ---------------- */
    
    
    
    
    
    
    
    
    
    
    