body{
    overflow-x: clip !important; 
  font-family: "Montserrat", sans-serif;
}
html{
    overflow-x: clip !important;
}

h1,h2,h3,h4,h5,h6{
    font-family: "Montserrat", sans-serif;
   color:#1a2e1a;
   /*letter-spacing: 1px;*/
    font-weight: 600;
}


img{
    height:auto;
    max-width:100% !important; 
}

p{
    
    font-size: 16px;
       color: #666;
    font-weight: 400;
    letter-spacing: 0.3px;
    line-height: 1.6
}
a{
    text-decoration:none;
}
ul {
    list-style-type: none;
    margin: 0;
    padding-left: 0;
}


.sec-big-title{
    font-size:35px;
}
.sec-title{
     font-size: 36px;
    margin-bottom: 1.5rem;
}
.sec-title.text-center{
    margin-bottom:2.5rem;
}

/* Top Bar */
.header-top {
    background: #004638;
    color: #fff;
    font-size: 14px;
    padding: 8px 0;
}
@keyframes slideDown{

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

.header-top.sticky {
    visibility: visible;
    animation: slideDown 0.5s ease-out;
    box-shadow: rgb(100 100 111 / 5%) 0px 7px 29px 0px;
    transform: translateY(0%
0%
);
    border: 0;
    background: #ffffffd1;
    backdrop-filter: blur(6px);
    top: 0;
}
.header-top a {
    color: #ffd166;
    text-decoration: underline;
}


.header-main {
    background: #fff;
    transition: all 0.3s ease;
}

.top-info-list{
    display:flex;
    gap: 20px;
}

.top-info-list li{
    display:flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    color: #fef8e0;
}
.top-info-list i{
    margin-top: 5px;
}
/* Sticky */
.header-main.sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    animation: slideDown 1s;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}


.logo img {
    max-width: 140px;
}

/* Menu */
.mega-menu-list {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 22px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.menu-item-has-children i{
display: inline-block;
    position: relative;
    top: 2px;
    transition: 0.3s ease;
    font-size: 14px;
    padding-top: 0px;
    /* padding-right: 4px; */
    height: 12px;
}

.nav-menu ul li a ,.nav-menu .drop-menulist li span {
    text-decoration: none;
    color: #1b4332;
    font-weight: 500;
    transition: 0.3s;
}

.mega-menu-list li a.active,
.mega-menu-list li a:hover {
    color: #2d6a4f;
}

.mega-menu-list li a {
    position: relative;
    text-decoration: none;
}

.mega-menu-list li a.active::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 100%;
    height: 1px;
    background: #2d6a4f;
}

.drop-menulist li a.active::after{
     content: "";
    display:none !important;
}
/* Button */
.quote-btn {
     position: relative;
    color: #fff;
    display: inline-block;
    background: #004638;
    border-radius: 30px;
    padding: 13px 45px 13px 20px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
    line-height: 19px;
    align-items: center;
    z-index: 1;
}

.quote-btn span {
        position: absolute;
    bottom: 0;
    right: -9px;
    z-index: 1;
    background: #ffc726;
    border-radius: 50%;
    transition: all 0.4s;
    height: 45px;
    width: 45px;
    display: inline-block;
    line-height: 50px;
    text-align: center;
    transform: rotate(-45deg);
}

.quote-btn:hover {
    transition: all 0.4s;
    color: #1c293f;
    background: #ffc726;
}

.quote-btn:hover span {
    transition: all 0.4s;
    background: #1f684e;
    transform: rotate(0deg);
}
.header-top p {
    color:#fef8e0;
    margin:0;
    display: flex;
    gap: 10px;
}


/*menus*/

.menu-item-has-children {
    position: relative;
         padding: 20px 0;
}
.dropn-btnmobile{
    position: absolute;
    right: -2px;
    top: 5px;
    bottom: 0;
    margin: auto 0;
    font-size: 14px;
}
.drop-menulist {
    position: absolute;
    top: 67px;
    left: 0;
    background: #fff;
    min-width: 230px;
    padding: 10px 0;
    list-style: none;
    margin: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: 0.3s ease;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    border-radius: 6px;
    z-index: 999;
}


.menu-item-has-children:hover .drop-menulist {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}


.drop-menulist li {
    padding: 0;
}

.drop-menulist li a ,.drop-menulist li span {
    display: block;
    padding: 10px 20px;
    color: #333;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
}

.drop-menulist li a.active,
.drop-menulist li a:hover ,
.drop-menulist li span:hover{
    color: rgb(45, 106, 79);
    background: rgb(244, 241, 232);
}


.menu-item-has-children > a i {
   position: absolute;
    right: -18px;
    top: 5px;
    bottom: 0;
    font-size: 15px;
    margin: auto 0;
}

.quote-btn i{
       color: #000;
}
.quote-btn:hover i{
     color: #fff;
} 
/*banner*/

/* Hero Section */
.hero-banner {
  position: relative;
  width: 100%;
  overflow: hidden;
}
/*.hero-banner:before{*/
/*        content: "";*/
/*    position: absolute;*/
/*    background-image: url(../images/reff/organic-natural-foods.png);*/
/*    width: 225px;*/
/*    height: 225px;*/
/*    background-size: contain;*/
/*    bottom: 50px;*/
/*    z-index: 100;*/
/*    right: 150px;*/
/*}*/
/* Slide Background */
.hero-slide {
  width: 100%;
  background-size: cover;
  background-position: center;
  position: relative;
}



.banner-shapes-below {
    position: absolute;
    bottom: -0px;
    left: 0;
    right: 0;
    z-index: 99;
    color: #fff;
}

/* Content */
.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
  z-index: 2;
  max-width: 800px;
}

/* Subtitle */
.hero-content h4 {
  font-size: 18px;
  margin-bottom: 10px;
  letter-spacing: 1px;
}

/* Main Title */
.hero-content h1 {
  font-size: 60px;
  line-height: 1.2;
  font-weight: 500;
  /*letter-spacing: 4px;*/
  color:#fff;
}

/* Arrows */
.hero-next,
.hero-prev {
  height: 48px;
  width: 48px;
  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;
  border: 1px solid #fff;

  position: absolute;
  top: 45%;
  transform: translateY(-50%);
  z-index: 10;

  cursor: pointer;
  transition: 0.4s;
  color: #fff;
  background: transparent;
}

/* Positions */
.hero-next {
  right: 30px;
}

.hero-prev {
  left: 30px;
}

/* Icon */
.hero-next i, .hero-prev i{
  font-size: 18px;
     align-items: center;
    display: flex;
    justify-content: center;
}

.hero-prev i{
    transform: rotate(180deg);
}

/* Responsive */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 32px;
  }
}

/*clients*/

.clientsds{
    position:relative;
    padding:5rem 0 2rem;
}
.clientsds .swiper-wrapper {
    transition-timing-function: linear !important;
}
.client-title{
        font-size: 28px;
    color: #1a2e1a;
    font-weight: 600;
    margin-bottom: 2.5rem;
}
.bg-dark-colorsd p{
    color:rgb(255 255 255 / 60%);
    font-size:25px;
}
.demnatesd{
    position:relative;
}
.demnatesd .bg-dark-colorsd{
    padding: 80px 80px 70px 80px;
    border-radius: 70px;
    background-color: #0D0D0D;
    background-image:url(../images/bg/counter-bg.jpg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}
.demnatesd .sec-big-title{
       color: #fff;
    font-weight: 400;
    font-size: 50px;
    margin-bottom: 2rem;
    line-height: 1.4;
}
.demnatesd .sec-big-title em{
    color:#ffc726;
}


.demnatesd .keyn-bottom-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 3rem;
}
.demnatesd .keyn-bottom-wrapper .about-counter {
    display: flex;
    align-items: center;
    gap: 20px;
}
@media (max-width: 1400px) {
    .demnatesd .keyn-bottom-wrapper {
        flex-wrap: wrap-reverse;
        gap: 50px;
    }
    .demnatesd .keyn-bottom-wrapper .about-counter{
        gap:40px
    }
}
.demnatesd .keyn-bottom-wrapper .about-counter .counter-item {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    place-items: center;
    place-content: center;
    text-align: center;
}
.demnatesd .keyn-bottom-wrapper .about-counter .counter-item:nth-child(1) {
    background: #D7F448;
}
.demnatesd .keyn-bottom-wrapper .about-counter .counter-item:nth-child(2) {
    background: #D2E9C4;
}
.demnatesd .keyn-bottom-wrapper .about-counter .counter-item:nth-child(3) {
        background: #004638;
}
.demnatesd .keyn-bottom-wrapper .about-counter .counter-item:nth-child(3) .keynumber-count,  .demnatesd .keyn-bottom-wrapper .about-counter .counter-item:nth-child(3) .desc{
    color: #D7F448;
    font-weight: 500;
}
.demnatesd .keyn-bottom-wrapper .about-counter .counter-item:nth-child(4) {
        background: #C7DDDB;
}
.demnatesd .keyn-bottom-wrapper .about-counter .counter-item .desc{
   color: #002524;
    font-size: 15px;
    margin: 0;
    font-weight: 600;
}
.keynumber-count{
    font-size: 45px;
}

.rts-btn{
    border: 1px solid #fff;
    color: #fff;
    padding: 10px 20px;
    display: inline-block;
    background: transparent;
    border-radius: 100px;
    display: flex;
    align-items: center;
    gap: 15px;
    overflow: hidden;
    position: relative;
    z-index: 1;
    transition: all 0.5s;
    text-transform: uppercase;
    font-size: 15px;
}
.rts-btn i{
    height:17px;
}
.rts-btn::before {
    content: "";
    position: absolute;
    -webkit-transition-duration: 800ms;
    transition-duration: 800ms;
    width: 200%;
    height: 200%;
    top: 110%;
    left: 50%;
    background: #ffc726;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -o-border-radius: 50%;
    -ms-border-radius: 50%;
    border-radius: 50%;
    z-index: -1;
}
.rts-btn:hover::before {
    top: -40%;
}
.rts-btn:hover{
    color:#000;
}


/*certification*/
.certifi-sect {
    padding: 3rem 0;
  
}

.certifi-top p {
    font-size: 18px;
    font-weight: 500;
    color: #333;
    margin-bottom: 40px;
}


.certifi-slider {
    overflow: hidden;
}


.certifi-slider .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
}


.certifi-img {
    padding: 20px;
    transition: all 0.3s ease;
}

.high-text{
    color:#06351d;
}
.high-text img{
    width:35px;
}
.certifi-top h4{
    margin-top:20px;
}
.certifi-img img {
    max-width: 100px;
    width: 100%;
    height: auto;
    object-fit: contain;
    opacity: 0.7;
    transition: 0.3s;
}


.certifi-img:hover img {
    opacity: 1;
    transform: scale(1.05);
}





.abt-intro {
    background-color: #e9f5eb; 
    padding: 4rem 0;
     overflow:hidden;
 
}


.abt-intro .row {
    display: flex;
    align-items: center;
}


.badge-text {
        display: inline-block;
    border: 1px solid #c2cdc4;
    border-radius: 50px;
    padding: 5px 20px;
    margin-bottom: 20px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
}


.abt-title .sec-big-title {
    font-size: 35px;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 40px;
    color:#1a2e1a;
}

/* Feature Item Layout */
.feature-item {
    display: flex;
    margin-bottom: 30px;
    align-items: flex-start;
}

.icon-box {
    background: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 20px;
    flex-shrink: 0;
}

.feature-text h4 {
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 8px;
}

/*.feature-text p {*/
/*    color: #555;*/
/*    line-height: 1.6;*/
/*}*/

/* Image Styling */

.abt-img-wrap{
    overflow: hidden;
    border-radius: 30px;
       text-align: center;
}

.abt-img-wrap .swiper-slide img{
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 30px;
    display: block;
}
.main-img {
    max-width: 100%;
    height:auto;
    border-radius: 20px;
}




/* Button Styling */
.btn-get-started {
    display: inline-flex;
    align-items: center;
    background-color: #67b279;
    color: #fff;
    text-decoration: none;
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 600;
    transition: background 0.3s ease;
}

.btn-get-started:hover {
    background-color: #569a66;
    color: #fff;
}

.arrow-icon {
    background: #fff;
    color: #67b279;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin-left: 10px;
    font-size: 12px;
}

/*challenges*/
.chall-sec{
    padding:5rem 0;
    position:relative;
    
}

.chall-sec h4{
    font-size: 20px;
    margin-bottom: 1.2rem;
    line-height: 1.3;
}
.about-block{
    position: relative;
    border: 1px solid #181b211a;
    border-radius: 14px;
    padding: 40px 30px;
    height:100%;
}
.chal-icon{
    position: relative;
    display: flex;
    width: 70px;
    height: 70px;
   align-items: center;
   justify-content: center;
    border-radius: 14px;
    /*border: 1px solid #061f1412;*/
    background-color:transparent;
    transition: all 0.3s ease;
 background-image: linear-gradient(180deg, #ffc107 0%, rgba(6, 31, 20, 0) 100%);
    margin-bottom: 30px;

}

.chall-list {
    list-style: none;
    padding-left: 0;
}

.chall-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
}

.chall-list li::before {
    content: "\f1ac";
   font-family: flaticon_normal-icon !important;
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    color: #1f684e;
}

/*manu*/

.manuf-secc{
    position: relative;
    padding: 4rem 0;
     z-index: 1;
     overflow:hidden;
}


.manuf-secc::before {
    content: "";
    position: absolute;
    inset: 0;
    background: 
        linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.4)), 
        url("../images/bg/temp4-bg.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1;
}

.manuf-head{
    margin-bottom: 70px;
}

.manuf-head .sec-title{
    color: #fff;
    max-width: 720px;
    margin: 0;
       font-size: 50px;
}

.manuf-content{
   font-size: 16px;
    line-height: 1.7;
    font-weight: 400;
    color: rgba(255,255,255,0.88);
    margin: 0;
    padding-left: 20px;
}



.manuf-box-wrap{
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 28px;
}


.manuf-box{
    position: relative;
    padding: 35px 25px;
    height:100%;
    border: 1px solid rgba(255,255,255,0.22);
    backdrop-filter: blur(2px);
    transition: all 0.4s ease;
    overflow: hidden;
}
.manuf-box::before{
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0.05);
    opacity: 0;
    transition: all 0.4s ease;
}
.manuf-box:hover{
    border-color: rgba(255,255,255,0.45);
}
.manuf-box:hover::before{
    opacity: 1;
}
.manuf-icon{
    width: 72px;
    height: 72px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 35px;
}
.manuf-icon img{
    filter: brightness(0) invert(1);
}
.manuf-box h4,
.manuf-box p{
    position: relative;
    z-index: 2;
    transition: transform 0.45s ease,
                opacity 0.45s ease;
}
.manuf-box h4{
        font-size: 20px;
    line-height: 1.3;
    font-weight: 600;
    color: #fff;
    margin-bottom: 18px;
    letter-spacing: 0.4px;
}

.manuf-box p{
    color: #fff;
    margin: 0;
    opacity: 0.82;
}



.manuf-box:hover h4{
    transform: translateY(0);
}

.manuf-box:hover p{
    transform: translateY(0);
    opacity: 1;
}
.privt-lable{
    padding:5rem 0;
    background-color: #e9f5eb;
    position: relative;
    overflow: hidden;
}

.default-btn{
    position: relative;
    color:#1b311f;
    display:inline-block;
    padding: 6px 6px 6px 16px;
    background: none;
    border-radius: 140px;
        line-height: 18px;
    border: 1px solid #5FB071;
    z-index: 9;
    transition: 0.3s;
    font-size:15px;
    font-weight:500;
}
.default-btn span{
    background:#5fb071;
        height: 35px;
    width: 35px;
    line-height: 42px;
    display: inline-block;
    border-radius: 100%;
    text-align: center;
    transform: rotate(0deg);
    transition: 0.4s;
    margin-left: 8px;
}
.default-btn:after{
    position: absolute;
    content: "";
    background:#5fb071;
    left: 0;
    right: 0;
    border-radius: 140px;
    height: 100%;
    width: 100%;
    top: 0;
    transform: scaleX(0);
    transition: 0.4s;
    z-index: -1;
    
}
.default-btn:hover{
   color: #212529;
}
.default-btn:hover span{
        background: #fff;
    transform: rotate(45deg);
    transition: 0.4s;
}

.default-btn:hover::after {
    transform: scaleX(1);
    transition: 0.4s;
}


.prvt-conts{
    margin-top: 70px;
    border-top: 1px solid #b8c0b6;
}


.prvt-item{
    padding: 38px 0;
    border-bottom: 1px solid #b8c0b6;
    position: relative;
}

.prvt-item .row{
    align-items: center;
}



.prvt-img{
    border-radius: 24px;
    overflow: hidden;
    position: relative;
}

.prvt-img img{
    width: 100%;
    padding: 5px;
    object-fit: cover;
    border-radius: 24px;
    transition: all 0.5s ease;
}

.prvt-item:hover .prvt-img img{
    transform: scale(1.06);
}

.prvt-info h4{
    font-size: 22px;
    line-height: 1.15;
    color: #000;
    margin-bottom: 20px;
}

.prvt-info p{
    font-size: 18px;
    line-height: 1.6;
    color: #4d4d4d;
    margin-bottom: 18px;
}

.prvt-info p strong{
    color: #000;
    font-weight: 600;
}


.prvt-arrow{
    width: 98px;
    height: 98px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    transition: all 0.4s ease;
    text-decoration: none;
}
.prvt-arrow i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 80px;
    background-color: transparent;
    border: 1px solid #010101;
    color: #010101;
    border-radius: 25px;
    transition: 0.7s;
        font-size: 20px;
}
.prvt-arrow:hover{
    transform: translateX(8px);
}


/* Light Version */

/*.light-arrow{*/
/*    position: relative;*/
/*}*/

/*.light-arrow::before{*/
/*    content: "";*/
/*    position: absolute;*/
/*    width: 260px;*/
/*    height: 260px;*/
/*    border-radius: 50%;*/
/*    background: rgba(255,255,255,0.35);*/
/*    right: -80px;*/
/*    top: 50%;*/
/*    transform: translateY(-50%);*/
/*    z-index: -1;*/
/*}*/

/*.light-arrow a{*/
/*    background: transparent;*/
/*    border: 1.5px solid #000;*/
/*    color: #000;*/
/*}*/


/*product section*/
.product-categories-sec{
    padding: 4rem 0;
    /*background: #f4f1ef;*/
    overflow: hidden;
}



.product-cat-head{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 45px;
    text-align: center;
    gap: 20px;
}

.product-cat-title span{
    display: block;
    font-size: 18px;
    font-weight: 600;
    color: #6f7c70;
    margin-bottom: 10px;
}



.product-navs{
    display: flex;
    align-items: center;
    gap: 14px;
}
.product-navs .swiper-button-prev i{
    font-size: 20px;
    margin: 0;
    display: flex;
}

.product-navs .swiper-button-prev, .product-navs .swiper-button-next{
    position: static !important;
    margin: 0 !important;
    width: 44px;
    height: 44px;
    background-color: #ffffff;
    color: #2b5c3a;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}
.product-navs .swiper-button-prev:hover, .product-navs .swiper-button-next:hover{
    background:#2b5c3a;
    color:#fff;
}
.product-navs .swiper-button-prev:after, .product-navs .swiper-button-next:after{
    font-size:14px !important;
}

.swiper-button-prev i {
    transform: rotate(180deg);
}

.product-card{
    position: relative;
}

.product-img{
    position: relative;
    overflow: hidden;
    border-radius: 22px;
}

.product-img img{
    width: 100%;
    object-fit: cover;
    border-radius: 22px;
    transition: transform 0.6s ease;
}

/*.product-card:hover .product-img img{*/
/*    transform: scale(1.08);*/
/*}*/

.product-content{
    padding-top: 18px;
}

.product-content h4{
    font-size: 18px;
    line-height: 1.3;
    color: #5b675b;
    margin: 0;
    transition: all 0.4s ease;
    text-align:center;
}

.product-card:hover h4{
    color: #000;
}

/*whychoose*/
.why-tiny{
    position: relative;
    padding: 4rem 0;
   background-image:url(../images/bg/services-we-offer-bg.webp);
    overflow: hidden;
    background-color:#004638;
}
.why-tiny .row{
    row-gap:20px;
}



.why-card{
      display: flex;
    align-items: center;
    background: rgb(255 255 255 / 3%);
    border-radius: 18px;
    overflow: hidden;
    height:100%;
    border: 1px solid #dde5e37a;
    transition: all 0.45s ease;
    position: relative;
    backdrop-filter: blur(40px);
}
.why-card::before {
    content: "";
    position: absolute;
    inset: 0;
    padding: 1px;
    border-radius: 10px;
    background: linear-gradient(115.53deg, rgba(15, 12, 25, 0.2) 32.87%, rgba(194, 243, 97, 0.2) 63.95%, rgba(15, 12, 25, 0.2) 95.03%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}
/*.why-card:hover{*/
/*    transform: translateY(-8px);*/
/*    box-shadow: 0 18px 40px rgba(0,0,0,0.08);*/
/*}*/



.why-icon{
        width: 195px;
    min-width: 150px;
    height: 200px;
    border-right: 1px solid #dde5e37a;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    position: relative;
}
.why-icon img{
    filter: invert(76%) sepia(98%) saturate(637%) hue-rotate(335deg) brightness(103%) contrast(101%);
}



.why-content{
    padding: 35px 30px;
    position:relative;
}

.why-content h4{
        margin-bottom: 18px;
    font-size: 18px;
    color: #fff;
}
.why-content p{
   color: #fff;
    margin: 0;
    opacity: 0.82;
}
.sec-title em{
        color: #ffc726;
}

/*prdrnd*/
.farmhouse-stats-section{
    padding:4rem 0;
    
}

.image-box img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.script-font{
    font-size:30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    display: inline-block;
    margin-bottom: 20px;
}

.intro-text {
    margin-bottom: 40px;
}
.stat-number{
    display: block;
    font-size: 3rem;
    line-height: 1;
    margin-bottom: 5px;
}
.stat-item{
    border-left: 2px solid #ffc726;
    background: #e9f5eb;
    padding: 15px;
    height:100%;
}
.stat-title{
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 10px;
}
.farm-secc .row{
    row-gap:20px
}

.stat-desc {
       line-height: 1.5;
    margin: 0;
    font-size: 15px;
}

/*footer*/
.site-footer {
        background-color: #004638;
    padding: 5rem 0 15px;
}

/* Newsletter Section Control */
.site-footer .newsletter-banner {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px 60px;
    transform: translateY(-50%);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.site-footer .banner-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.site-footer .banner-left h2 {
    color: #06351d;
    font-weight: 700;
    margin: 0;
}

.site-footer .subscribe-form {
    background: #06351d;
    padding: 6px;
    border-radius: 50px;
    display: flex;
    min-width: 350px;
}

.site-footer .subscribe-form input {
    background: transparent;
    border: none;
    color: white;
    padding: 10px 20px;
    flex: 1;
    outline: none;
}

.site-footer .subscribe-form button {
    background: #ffcc29;
    border: none;
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 600;
}

/* Footer Grid Control */
.site-footer .footer-content {
    
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

/* Individual Block Control */
.site-footer .info-block { 
    padding-right: 40px; 
    
}
.site-footer .brand-block { 
    border-right: 1px solid rgba(255,255,255,0.1);
    padding-right:30px;
    height:100%;
}
.site-footer .link-block { 
   padding-left: 30px; 
    
}
/*.socl-50s{*/
/*    display:flex;*/
/*    flex-wrap:wrap;*/
/*}*/

.plain-block {
    display:flex;
}

.proc-tint {
    width:50%;
}
.socl-50s a{
    width:50%;
}
/* Elements styling */
.site-footer h5 { 
   margin-bottom: 25px;
    font-weight: 400;
    color: #fff;
    font-family: "Figtree", sans-serif;
}

.site-footer .time-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    font-size: 0.9rem;
}

.site-footer .logo-wrap h3 { 
    display: inline; 
    margin-left: 10px; 
    
}

.site-footer p { 
    font-size: 0.9rem; 
    color: #d1d1d1; 
    line-height: 1.6; 

}

.site-footer .link-block a ,.site-footer .link-block span {
    display: block;
    color: #d1d1d1;
    text-decoration: none;
    margin-bottom: 10px;
    font-size: 0.9rem;
        transition: all 0.4s;
}

.site-footer .social-icons a {
    background: white;
    color: #06351d;
    width: 35px;
    height: 35px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 5px;
    text-decoration: none;
    transition: all 0.3s ease;
}

/* Adjusting the icon size */
.site-footer .social-icons a i {
    font-size: 16px;
    /* This ensures the icon stays centered */
    display: flex;
    align-items: center;
    justify-content: center;
}
.site-footer .footer-bottom {
    display: flex;
    justify-content: space-between;
    padding-top: 20px;
    font-size: 0.85rem;
    color: #d1d1d1;
}
.site-footer .footer-bottom p{
    margin-bottom:0;
}
.logo-wrap{
    margin-bottom:20px;
}
.site-footer .link-block a:hover{
    color:#ffcc29;
   transform:translateX(2px);
    transition: 0.4s;
}
.contact-infos{
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    padding-left: 30px;
    height:100%;
}
.contact-infos a{
    display: flex;
    color: #d1d1d1;
    margin-bottom: 10px;
    font-size: 15px;
    gap: 10px;
    align-items: flex-start;
}
.contact-infos a i{
        height: 20px;
    display: flex;
    align-items: center;
}

.farm-secc{
    max-width:90%;
}

.mobile-menu-top, .mobile-menu-open{
    display: none;
}
.keynumbers{
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 60px;
}

.key-item{
    position: relative;
    flex: 1;
    min-width: 220px;
    text-align: center;
    padding-right: 40px;
}

.key-item::after{
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 1px;
    height: 100%;
    border-right: 1px dashed #cfcfcf;
}

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

.key-icon{
    width: 95px;
    height: 95px;
    border: 1px solid #06351d5c;
    border-radius: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
}

.key-icon img{
    width: 42px;
    height: 42px;
    object-fit: contain;
}

.key-item h4{
    font-size: 45px;
    line-height: 1;
    font-weight: 500;
    margin-bottom: 15px;
}

.key-item p{
    font-size: 20px;
    margin: 0;
}
.key-item .key-icon{
    width: 95px;
    height: 95px;
    /*background: #5d914d;*/
    border-radius: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    transition: background 0.4s ease;
}

.key-item .key-icon img{
    width: 42px;
    height: 42px;
    object-fit: contain;
    transition: transform 0.6s ease, filter 0.4s ease;
}

/* Hover Effect */

.key-item:hover .key-icon{
    background: #ffc726;
}

.key-item:hover .key-icon img{
    filter: brightness(0) invert(1);
    transform: rotateY(180deg);
}

.manufSwiper .swiper-slide {
    height: auto;
}

.manufSwiper {
    padding-bottom: 40px !important; 
}
.manufSwiper .swiper-pagination-bullet-active {
    background: #ffc107;
    opacity: 1;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
}


.prd-process{
    padding:4rem 0;
     text-align: center;
}


.process-crd{
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
    position: relative;
   margin-top: 50px;
}

.process-crd::before{
    content: "";
    position: absolute;
    top: 45px;
    left: 12%;
    right: 12%;
    height: 2px;
    background: #d6dbe3;
    z-index: 0;
}
.step {
    position: relative;
    z-index: 1;
    text-align: center;
}
.proc-circle {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    border: 2px solid #06351d;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    background: #fff;
    position: relative;
    transition: 0.3s;
}

.proc-circle .badge {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 26px;
    height: 26px;
    background: #ffc107;
    color: #fff;
    font-size: 12px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.step.active .proc-circle {
    border-color: #06351d;
}
.step:hover .proc-circle {
    border-color: #ffc107;
}

.step:hover .proc-circle .badge {
    background: #198754;
    color: #000;
}

.step:hover .proc-circle .icon {
    color: #ffc107;
}

.prd-process h4{
    font-size:18px;
}
.ryt-partner{
    padding:4rem 0;
     background: #f8f9fb;
     overflow:hidden;
}

.partner-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px;
    display: flex;
    gap: 25px;
}
.partner-list li {
    position: relative;
    padding: 18px 20px 18px 45px;
    background: #fff;
    border: 1px solid #e3e6eb;
    border-radius: 10px;
    font-size: 16px;
    max-width: 700px;
    margin: 0 auto 15px;
}
.partner-list li::before {
      content: "\f14f";
    font-family: flaticon_normal-icon !important;
    font-weight: 900;
    position: absolute;
    left: 15px;
     top: 30%;
    transform: translateY(-50%);
    color: #dc3545;
    font-size: 18px;
}
.note {
    display: flex;
    align-items: center;
    gap: 10px;
    border-top: 1px solid #e3e6eb;
    padding-top: 20px;
}
.note span {
    background: #d1f5dc;
    color: #198754;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

.note p {
    margin: 0;
    font-size: 13px;
    color: #6c757d;
}
.why-cont p{
        margin: 0;
}

/* REMOVE DEFAULT */
.freqt-faq{
    padding:4rem 0;
}

.accordion {
    border: none;
}

.accordion-item {
    border: none;
    border-bottom: 1px solid #e6e6e6;
}

/* BUTTON */
.accordion-button {
    background: transparent;
    box-shadow: none;
    padding: 30px 30px 30px 70px;
    font-size: 18px;
   
}

/* REMOVE ARROW */
.accordion-button::after {
    display: none;
}

/* ICON BOX (LEFT) */
.accordion-button::before {
    content: "+";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    
    width: 42px;
    height: 42px;
    
    border: 1px solid #ddd;
    border-radius: 8px;
    
    display: flex;
    align-items: center;
    justify-content: center;
    
    font-size: 20px;
    font-weight: 500;
    background: #fff;
    transition: 0.3s;
}

/* ACTIVE STATE */
.accordion-button:not(.collapsed)::before {
    content: "−";
    background: #ffc107;
    border-color: #ffc107;
}

/* REMOVE BLUE BG ON ACTIVE */
.accordion-button:not(.collapsed) {
    background: transparent;
    color: #1a1a1a;
}

/* BODY */
.accordion-body {
    padding: 0 20px 20px 70px;
    color: #6c757d;
    font-size: 17px;
    line-height: 1.6;
}

/* SPACING BETWEEN ITEMS */
/*.accordion-item + .accordion-item {*/
/*    margin-top: 10px;*/
/*}*/
.accordion-button:focus {
    box-shadow: none;
    outline: none;
}

/* REMOVE ACTIVE BLUE BORDER */
.accordion-button:not(.collapsed) {
    box-shadow: none;
    border-color: transparent;
}

/* REMOVE HOVER EFFECT */
.accordion-button:hover {
    box-shadow: none;
    border-color: transparent;
}
/* Responsive Adjustments */
@media (max-width: 991px) {
    .abt-intro .row {
        flex-direction: column;
        text-align: center;
    }
    .feature-item {
        justify-content: center;
        text-align: left;
    }
    .abt-img-wrap {
        margin: 40px 0;
    }
}

.ceritivatiosn{
    position: relative;
    background: #fff;
    border-radius: 20px;
    margin: 1rem 0;
    padding: 30px;

    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

.flow-item p{
    font-size:15px;
}
.farm-secc .stat-item p{
        color: #666;
}



.main-crd-supps .swiper {
    padding: 20px 0 60px;
}
.main-crd-supps .swiper-slide {
    height: auto;
}
.main-crd-supps .support-crd {
    height: 100%;
}
.supportSwiper {
    width: 100%;
    overflow: hidden;
}
.main-crd-supps .swiper-pagination {
    bottom: 0 !important;
}
.main-crd-supps .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    opacity: 1;
    background: rgba(255,255,255,0.4);
}
.main-crd-supps .swiper-pagination-bullet-active {
    background: #fff;
    width: 28px;
    height: 8px;
    border-radius: 4px;
    transition: all 0.3s ease;
}
.frm-formula.cbe-locss{
        padding: 4rem 0px 0px;
}

.area-loa-main{
    padding:0 0 5rem;
}
   


.loca-service-main {
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    /* justify-content: center; */
    gap: 40px 27px;
    margin: 34px 0 0;
}
.loca-service-main li .loc-icon{
    width: 50px;
    height: 50px;
    background-color: rgb(0, 70, 56);
    background-image: url("../images/svg/location-arrow-white.svg");
background-repeat: no-repeat;
    background-position: center;
    background-size: 30px 30px;
    border-radius: 50%;
    transition: all 0.3s ease;
    flex-shrink: 0;
}
.loca-service-main li{
    display: flex;
    align-items: center;
    gap: 10px;
    width: 18%;
    /*transition: transform 0.3s ease;*/
}
.tambar-main  li{
     width: 45%;
}

.loca-service-main li h4{
    font-size: 18px;
    font-weight: 600;
    margin: 0;
    transition: color 0.3s ease;
}


/*.loca-service-main li:hover .loc-icon{*/
/*      background: rgb(255, 199, 38);*/
    /*transform: scale(1.1);*/
/*    background-image: url("../images/svg/location-arrow.svg");*/
/*}*/


.product-categories-sec.loca-prodss-secc .product-img {
    position: relative;
    overflow: hidden;
    border-radius: 50%;
    width: 200px;
    height: 200px;
}


.hero-pagination {
    position: absolute;
    bottom: 80px !important;
    transform: translateX(-50%);
    z-index: 10;
}

.hero-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: #ffc726;
    opacity: 1;
    margin: 0 6px !important;
    transition: all 0.4s ease;
}

.hero-pagination .swiper-pagination-bullet-active {
    width: 40px;
    border-radius: 20px;
    background: #004638;
}

.know-more-link{
    position: relative;
    color: #2f5d50;
    text-decoration: none;
    font-weight: 600;
    margin-left: 8px;
    display: inline-block;
}

.know-more-link::after{
    content: "";
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 100%;
    height: 2px;
    background: #2f5d50;
    transition: width 0.3s ease;
}

.know-more-link:hover::after{
    width: 50%;
}

.prvt-btns {
    margin-top: 27px;
}

a.link{
    color:#004638;
    font-weight:600;
}
label.error{
    color:red;
    font-size:13px;
}

/* Pagination Container */
.nuri-prds-swiper .swiper-pagination {
    position: relative;
    margin-top: 30px;
    text-align: center;
}

/* Normal Dots */
.nuri-prds-swiper .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: #d9d9d9;
    opacity: 1;
    border-radius: 50px;
    margin: 0 6px !important;
    transition: all 0.4s ease;
}

/* Active Dot */
.nuri-prds-swiper .swiper-pagination-bullet-active {
    width: 35px;
    background: #004638;
}

.founder-content h4 span{
    font-size:13px;
}

.footer-content .row{
    row-gap:30px;
}

.private-nav{
    display:flex;
    align-items:center;
    gap:10px;
    list-style:none;
    padding:0;
    margin-bottom:15px;
}

.private-nav a{
    text-decoration:none;
    color:#103f02;
}

.private-nav li.active{
    color:#004638;
    font-weight:600;
}

.main-highlight {
    font-size:18px;
    color:#fff;
    font-weight:600;
}