/********** Template CSS **********/
/*** 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;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}

img.animated.pulse {
    animation-duration: 5s;
}

/*** Button ***/
.btn {
    font-weight: 500;
    transition: .5s;
}

.btn.btn-primary {
    color: var(--bs-white);
}

.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 ***/
.sticky-top {
    top: -150px;
    transition: .5s;
}

.navbar {
    padding: 11px 0 !important;
    height: 85px;
}

.navbar .navbar-nav .nav-link {
    margin-right: 45px;
    padding: 0;
    color: #000;
    font-weight: 500;
    transition: .5s;
    outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--bs-white);
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav {
        padding: 0 15px;
        background: var(--bs-primary);
    }

    .navbar .navbar-nav .nav-link  {
        margin-right: 0;
        padding: 10px 0;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Hero Header ***/
.hero-header {
    position: relative;
    margin-top: -85px;
    padding-top: 9rem;
    padding-bottom: 6rem;
    background: url(../img/bg.png) center center no-repeat;
    background-size: cover;
}



.hero-header .container {
    position: relative;
    z-index: 1;
}

.hero-header .breadcrumb-item+.breadcrumb-item::before {
    color: var(--bs-light);
}


/*** Feature ***/
.feature-item::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: #C2A058;
    clip-path: polygon(66% 0, 100% 0, 100% 100%, 33% 100%);
}

.feature-item .border {
    position: relative;
    border-color: rgba(255, 255, 255, .2) !important;
    z-index: 1;
}


/*** Deal ***/
.deal {
    position: relative;
    background: url(../img/bg.png) center center no-repeat;
    background-size: cover;
}

.deal::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(255, 255, 255, .1);
    clip-path: polygon(66% 0, 100% 0, 100% 100%, 33% 100%);
}

.deal .bg-white {
    position: relative;
    z-index: 1;
}

.deal .cdt span {
    display: block;
    font-size: 16px;
    font-style: italic;
    font-weight: 200;
    text-transform: capitalize;
}


/*** How To Use ***/
.how-to-use {
    position: relative;
    background: url(../img/bg.png) center center no-repeat;
    background-size: cover;
}

.how-to-use::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(255, 255, 255, .1);
    clip-path: polygon(66% 0, 100% 0, 100% 100%, 33% 100%);
}

.how-to-use .container {
    position: relative;
    z-index: 1;
}

.how-to-use .border {
    border-color: rgba(255, 255, 255, .2) !important;
}


/*** Product ***/
.product-item {
    transition: .1s;
}

.product-item:hover {
    border-width: 0 !important;
    box-shadow: 0 0 35px rgba(144, 188, 121, .25);
}

.product-item:hover a.btn {
    color: var(--bs-white);
    background: var(--bs-primary);
}


/*** Testimonial ***/
.testimonial {
    position: relative;
    background: url(../img/bg.png) center center no-repeat;
    background-size: cover;
}

.testimonial::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(255, 255, 255, .1);
    clip-path: polygon(66% 0, 100% 0, 100% 100%, 33% 100%);
}

.testimonial .testimonial-carousel {
    position: relative;
    z-index: 1;
}

.testimonial-carousel .owl-item img {
    width: 120px;
    height: 120px;
    border-color: rgba(255, 255, 255, .2) !important;
    margin: 0 auto 20px auto;
    border-radius: 100px;
}

.testimonial-carousel .owl-dots {
    margin-top: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 3px solid rgba(255, 255, 255, .2);
    border-radius: 30px;
    transition: .5s;
}

.testimonial-carousel .owl-dot.active {
    background: var(--bs-dark);
}


/*** Blog ***/
.blog-item {
    transition: .1s;
}

.blog-item:hover {
    border-width: 0 !important;
    box-shadow: 0 0 35px rgba(144, 188, 121, .25);
}

.blog-item:hover a.btn {
    color: var(--bs-white);
    background: var(--bs-primary);
}


/*** Contact ***/
.contact-info-item::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(255, 255, 255, .1);
    clip-path: polygon(66% 0, 100% 0, 100% 100%, 33% 100%);
}

.contact-info-item .border {
    position: relative;
    border-color: rgba(255, 255, 255, .2) !important;
    z-index: 1;
}


/*** Newsletter ***/
.newsletter {
    position: relative;
    background: url(../img/bg.png) center center no-repeat;
    background-size: cover;
}

.newsletter::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(255, 255, 255, .1);
    clip-path: polygon(66% 0, 100% 0, 100% 100%, 33% 100%);
}

.newsletter .container {
    position: relative;
    z-index: 1;
}

.newsletter .form-control {
    background: rgba(255, 255, 255, .3);
}


/*** Footer ***/
.footer .btn.btn-link {
    display: block;
    margin-bottom: 10px;
    padding: 0;
    text-align: left;
    color: #fff;
    font-weight: normal;
    transition: .3s;
}

.footer .btn.btn-link:hover {
    color: var(--bs-primary);
}

.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 .copyright {
    padding: 25px 0;
    border-top: 3px solid var(--bs-light);
}

.footer .copyright a {
    color: var(--bs-body);
}

.footer .copyright a:hover {
    color: var(--bs-primary);
}

.footer .footer-menu a {
    margin-right: 15px;
    padding-right: 15px;
    border-right: 3px solid var(--bs-light);
}

.footer .footer-menu a:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
}
.hlogo{
    width: 20%;
}
.hlogo img{
        border-radius: 0px 0 10px 10px;
    top: -26px;
    position: relative;
    width: 55%;
}
.newslettertop{
    position: relative;
    z-index: 100;
    text-align: center;
    padding: 10px 0;
    background: #3A3C24;
}
.newslettertop p{
    margin-bottom: 0;
    color: #fff;
}
.aboutsec{
    margin:0;
}

.sticky-top .hlogo img{
    top: 0;
}
.sticky-top .navbar .navbar-nav .nav-link{
    color: #fff;
}
.bg-second{
    background: #3A3C24;
}
.m-block{
    display: none;
}

@media(max-width: 786px){
    .m-block{
    display: block;
}
.d-block{
    display: none!important;
}
.hlogo img{
        top: -24px !important;
        width: 85px;
}
.navbar-light .navbar-toggler{
            padding: 10px 10px;
        border-radius: 50%;
        border: 1px solid;
         margin-top: -30px;
        color: #fff;
        border-color: #fff;
}
.aboutsec{
    margin: -60px 0 20px;
}
}
.category-card {
    border: 1px solid #000;
    transition: 0.5s;
}
.category-card.style-2 {
    border-radius: 265px 265px 10px 10px;
    transition: 0.5s 
ease-in-out;
}
.category-card.style-2 .category-card-img {
    padding: 8px;
    border-radius: 265px 265px 10px 10px;
    transition: 0.5s 
ease-in-out;
}
.category-card .category-card-content {
    padding: 5px 0;
    text-align: center;
    border-top: 1px solid #000;
    transition: 0.75s;
    position: relative;
    overflow: hidden;
    z-index: 1;
}
.category-card.style-2 .category-card-content a {
    color: #000;
    font-size: 17px;
    font-weight: 500;
    padding: 14px 0px;
}
.hero-header{
    padding-bottom: 3rem;
}
}
.category-card .category-card-content a {
    text-align: center;
    padding: 20px 0;
    color: #333333;
    font-size: 20px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0.6px;
    text-transform: capitalize;
    margin-bottom: 0;
    display: block;
    transition: 0.5s;
}
.category-card.style-2 .category-card-img img {
    border-radius: 265px 265px 10px 10px;
    transition: 0.5s 
ease-in-out;
}
img{
    width: 100%;
}
.ourproduct{
    padding-top: 80px!important;
}
.navbar-light .navbar-toggler-icon{
        filter: invert(1);
}
.order-btn{
    max-width: 50%;
    margin: 0 auto;
    display: block;
    color: #333333;
    border: 1px solid #000;
    padding: 5px 10px;
    border-radius: 10px;
}
.order-btn:hover{
    color: #fff;
    background: #333333;
}
.product-item img{
     width: 100%;
     border-radius: 10px 10px 0px 0px;
}
.product-item{
    border-radius: 10px;
    background: #c49f5942;
    padding-bottom: 30px;
}
.swiper-pagination{
    display: none;
}
.swiper-button-next:after, .swiper-button-prev:after{
    font-size: 30px!important;
    color: #ddd;
}
.footer{
    background: #3A3C24;
}
.footer p{
    color: #ffffffd4;
}
.footer p a{
    color: #ffffffd4;
}
.flogo img{
    width: 100px;
}
.floating_buttons {
    position: fixed;
    text-align: right;
    right: 15px;
    bottom: 120px;
    z-index: 99;
    width: 15%;
}
.floating_buttons img{
    width: 50px;
}
.client-slider .product-item{
    background: transparent;
    padding-bottom: 0!important;
}
.ayurveda-banner {
    padding: 50px 0;
  position: relative;
  width: 100%;
  background: url('../img/cta.gif') no-repeat center center/cover;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  text-align: center;
  overflow: hidden;
}

/* Optional overlay for better text contrast */
.ayurveda-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.35);
  z-index: 1;
}

.ayurveda-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 20px;
}

.subheading {
  font-size: 1rem;
  letter-spacing: 3px;
  color: #f1f1f1;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.main-heading {
    color: #fff;
  font-size: 40px;
  margin-bottom: 20px;
}

.description {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 30px;
  color: #f5f5f5;
}

.btn-discover {
  background-color: #fff;
  color: #333;
  padding: 12px 35px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.btn-discover:hover {
  background-color: #d5a86e;
  color: #fff;
}
.product-slider .product-item a{
    font-size: 16px;
}
@media(max-width:786px){
    .product-slider .product-item img{
        height: 100%;
    }
    .aboutsec{
        margin-top: 30px;
    }
}
.client-slider .product-item img{
        height: 100%;
    }

/* ================================
   Agro Product Range Section
================================ */

.agro-range-section {
    width: 100%;
    background: #f7f9f3;
    padding: 80px 20px;
}

.agro-range-section .agro-range-container {
    width: 100%;
    max-width: 1120px;
    margin: 0 auto;
}

/* Heading */

.agro-range-section .agro-range-heading {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
}

.agro-range-section .agro-range-heading span {
    display: block;
    margin-bottom: 12px;
    color: #c5964a;
    font-size: 13px;
    letter-spacing: 2px;
}

.agro-range-section .agro-range-heading h2 {
    margin: 0 0 10px;
    color: #29351e;
    font-size: 34px;
    line-height: 1.2;
}

.agro-range-section .agro-range-heading p {
    margin: 0;
    color: #30352d;
    font-size: 16px;
    line-height: 1.55;
}

/* Cards Grid */

.agro-range-section .agro-range-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 24px;
}

/* Card */

.agro-range-section .agro-range-card {
    grid-column: span 2;
    min-height: 210px;
    padding: 38px 32px;
    background: #ffffff;
    border: 1px solid #ddd8c8;
    border-radius: 10px;
}

.agro-range-section .agro-range-card:nth-child(4) {
    grid-column: 2 / span 2;
}

.agro-range-section .agro-range-card:nth-child(5) {
    grid-column: 4 / span 2;
}

.agro-range-section .agro-range-number {
    display: block;
    margin-bottom: 18px;
    color: #c5964a;
    font-size: 13px;
}

.agro-range-section .agro-range-card h3 {
    margin: 0 0 12px;
    color: #26331d;
    font-size: 27px;
    line-height: 1.2;
}

.agro-range-section .agro-range-card p {
    margin: 0;
    color: #252b24;
    font-size: 16px;
    line-height: 1.5;
}


/* ================================
   Tablet
================================ */

@media (max-width: 991px) {

    .agro-range-section {
        padding: 65px 20px;
    }

    .agro-range-section .agro-range-heading {
        margin-bottom: 40px;
    }

    .agro-range-section .agro-range-heading h2 {
        font-size: 30px;
    }

    .agro-range-section .agro-range-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .agro-range-section .agro-range-card,
    .agro-range-section .agro-range-card:nth-child(4),
    .agro-range-section .agro-range-card:nth-child(5) {
        grid-column: auto;
    }

    .agro-range-section .agro-range-card {
        min-height: 200px;
        padding: 30px 25px;
    }

}


/* ================================
   Mobile
================================ */

@media (max-width: 767px) {

    .agro-range-section {
        padding: 55px 16px;
    }

    .agro-range-section .agro-range-heading {
        margin-bottom: 32px;
    }

    .agro-range-section .agro-range-heading span {
        font-size: 11px;
        letter-spacing: 1.5px;
    }

    .agro-range-section .agro-range-heading h2 {
        font-size: 27px;
        line-height: 1.25;
    }

    .agro-range-section .agro-range-heading p {
        font-size: 15px;
    }

    .agro-range-section .agro-range-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .agro-range-section .agro-range-card,
    .agro-range-section .agro-range-card:nth-child(4),
    .agro-range-section .agro-range-card:nth-child(5) {
        grid-column: auto;
        min-height: auto;
        padding: 28px 24px;
    }

    .agro-range-section .agro-range-card h3 {
        font-size: 24px;
    }

    .agro-range-section .agro-range-card p {
        font-size: 15px;
    }

}


/* ================================
   Small Mobile
================================ */

@media (max-width: 480px) {

    .agro-range-section {
        padding: 45px 14px;
    }

    .agro-range-section .agro-range-heading h2 {
        font-size: 25px;
    }

    .agro-range-section .agro-range-card {
        padding: 24px 20px;
    }

    .agro-range-section .agro-range-card h3 {
        font-size: 22px;
    }

}
@media(max-width: 786px){
    .hero-header{
        padding-top: 5rem;
        padding-bottom: 0;
    }
}
/* =========================================
   VR Natives About Section
========================================= */

.vr-about-section {
    width: 100%;
    padding: 30px 20px 50px;
    background: #ffffff;
}

.vr-about-section .vr-about-container {
    width: 100%;
    max-width: 1115px;
    margin: 0 auto;
}


/* =========================================
   Top Section
========================================= */

.vr-about-section .vr-about-top {
    display: grid;
    grid-template-columns: 1.45fr 1fr;
    gap: 55px;
    align-items: start;
}


/* =========================================
   Left Content
========================================= */

.vr-about-section .vr-about-left {
    padding-top: 2px;
}

.vr-about-section .vr-about-eyebrow {
    display: block;
    margin-bottom: 15px;
    color: #c5964a;
    font-size: 13px;
    letter-spacing: 1.8px;
}

.vr-about-section .vr-about-left h2 {
    margin: 0 0 12px;
    color: #29351e;
    font-size: 34px;
    line-height: 1.18;
}

.vr-about-section .vr-about-left p {
    margin: 0 0 15px;
    color: #30352d;
    font-size: 16px;
    line-height: 1.55;
}


/* =========================================
   Approach Box
========================================= */

.vr-about-section .vr-about-approach {
    min-height: 327px;
    padding: 60px 55px;
    background: #343821;
    border-radius: 12px;
}

.vr-about-section .vr-about-approach > span {
    display: block;
    margin-bottom: 17px;
    color: #c5964a;
    font-size: 13px;
    letter-spacing: 1.8px;
}

.vr-about-section .vr-about-approach h3 {
    margin: 0 0 15px;
    color: #ffffff;
    font-size: 32px;
    line-height: 1.15;
}

.vr-about-section .vr-about-approach p {
    margin: 0;
    color: #ffffff;
    font-size: 16px;
    line-height: 1.5;
    font-weight: 500;
}


/* =========================================
   Bottom Cards
========================================= */

.vr-about-section .vr-about-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 75px;
}

.vr-about-section .vr-about-card {
    min-height: 212px;
    padding: 28px;
    background: #ffffff;
    border: 1px solid #ddd9cd;
    border-radius: 9px;
}

.vr-about-section .vr-about-card h3 {
    margin: 0 0 12px;
    color: #29351e;
    font-size: 28px;
    line-height: 1.2;
}

.vr-about-section .vr-about-card p {
    margin: 0;
    color: #30352d;
    font-size: 16px;
    line-height: 1.5;
}


/* =========================================
   Tablet
========================================= */

@media (max-width: 991px) {

    .vr-about-section {
        padding: 0px 20px 50px;
    }

    .vr-about-section .vr-about-top {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .vr-about-section .vr-about-approach {
        min-height: auto;
        padding: 40px;
    }

    .vr-about-section .vr-about-cards {
        margin-top: 45px;
    }

    .vr-about-section .vr-about-left h2 {
        font-size: 32px;
    }

}


/* =========================================
   Mobile
========================================= */

@media (max-width: 767px) {

    .vr-about-section {
      padding: 0px 20px 50px;
    }

    .vr-about-section .vr-about-top {
        gap: 30px;
    }

    .vr-about-section .vr-about-eyebrow {
        font-size: 11px;
        letter-spacing: 1.4px;
    }

    .vr-about-section .vr-about-left h2 {
        font-size: 28px;
        line-height: 1.25;
    }

    .vr-about-section .vr-about-left p {
        font-size: 15px;
    }

    .vr-about-section .vr-about-approach {
        padding: 35px 28px;
        border-radius: 10px;
    }

    .vr-about-section .vr-about-approach h3 {
        font-size: 28px;
    }

    .vr-about-section .vr-about-approach p {
        font-size: 15px;
    }

    .vr-about-section .vr-about-cards {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-top: 35px;
    }

    .vr-about-section .vr-about-card {
        min-height: auto;
        padding: 25px 22px;
    }

    .vr-about-section .vr-about-card h3 {
        font-size: 25px;
    }

    .vr-about-section .vr-about-card p {
        font-size: 15px;
    }

}


/* =========================================
   Small Mobile
========================================= */

@media (max-width: 480px) {

    .vr-about-section {
      padding: 0px 20px 50px;
    }

    .vr-about-section .vr-about-left h2 {
        font-size: 25px;
    }

    .vr-about-section .vr-about-approach {
        padding: 30px 22px;
    }

    .vr-about-section .vr-about-approach h3 {
        font-size: 25px;
    }

}
.vr-products-page .product-category-section {
    padding: 50px 0;
}

.vr-products-page .section-heading {
    margin-bottom: 30px;
    text-align: left;
}

.vr-products-page .section-heading span {
    display: block;
    color: #c5964a;
    font-size: 12px;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.vr-products-page .section-heading h2 {
    margin: 0;
    color: #29351e;
    font-size: 32px;
}

.vr-products-page .product-name-card {
    height: 100%;
    min-height: 190px;
    padding: 28px;
    background: #ffffff;
    border: 1px solid #ddd9cd;
    border-radius: 10px;
}

.vr-products-page .product-name-card span {
    display: block;
    color: #c5964a;
    font-size: 11px;
    letter-spacing: 1.5px;
    margin-bottom: 18px;
}

.vr-products-page .product-name-card h3 {
    margin: 0 0 20px;
    color: #29351e;
    font-size: 23px;
}

.vr-products-page .product-name-card a {
    color: #8f6b2d;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
}

.vr-products-page .product-name-card a i {
    margin-left: 6px;
}

@media (max-width: 767px) {

    .vr-products-page .product-category-section {
        padding: 0 0 50px;
    }

    .vr-products-page .section-heading h2 {
        font-size: 27px;
    }

    .vr-products-page .product-name-card {
        min-height: auto;
        padding: 24px;
    }

    .vr-products-page .product-name-card h3 {
        font-size: 21px;
    }

}

@media(max-width: 786px){
    .hero-header nav{
        padding-bottom: 50px!important;
    }
    .mainslider{
    padding-top: 4rem!important;
}
}