﻿

/*---------------------------------------------fruit section-----------------------------------------*/


.fruit-section {
    padding: 80px 0px 0px;
    background: #ffffff;
    overflow: hidden;
}

.fruit-heading {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 35px;
}

.heading-left {
    position: relative;
    padding-left: 0px;
    text-align: center;
}

.fruit-subtitle {
    display: block;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #f8a51a;
    font-weight: 700;
    margin-bottom: 5px;
}

.heading-left h2 {
    font-size: 40px;
    font-weight: 700;
    color: #1a3a27;
    margin-bottom: 8px;
    text-align: center;
}

.heading-left p {
    margin: 0;
    color: #333;
    font-size: 16px;
}

.view-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #184b3b;
    font-weight: 700;
    text-decoration: none;
    transition: .3s;
}

    .view-all-btn:hover {
        color: #f8a51a;
    }

    .view-all-btn i {
        transition: .3s;
    }

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



.fruit-card {
    position: relative;
    overflow: hidden;
    border-radius: 22px;
    cursor: pointer;
    /* box-shadow: 0 15px 45px rgba(0,0,0,.12); */
}

.fruit-large {
    height: 500px;
}

.fruit-small {
    height: 238px;
}

.fruit-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .8s;
}

.fruit-card:hover img {
    transform: scale(1.12);
}

.fruit-overlay {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0) 35%, rgba(0,0,0,0.55) 75%, rgba(0,0,0,0.85) 100%);
}


.fruit-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #f8a51a;
    color: #fff;
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    z-index: 5;
}


.fruit-content {
     position: absolute;
     left: 30px;
     right: 30px;
     bottom: 20px;
     color: #fff;
     z-index: 5;
}

.fruit-tag {
    display: inline-block;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #ffc640;
    font-weight: 700;
    margin-bottom: 0px;
}

.fruit-large h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1.2;
    color: #fff;
}

.fruit-small h4 {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
    color: #fff;
}

.fruit-content p {
    font-size: 15px;
    margin-bottom: 0px;
    color: #eee;
}



.shop-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #f8a51a;
    color: #fff;
    text-decoration: none;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 700;
    transition: .35s;
}

    .shop-btn:hover {
        background: #184b3b;
        color: #fff;
    }

    .shop-btn i {
        transition: .35s;
    }

    .shop-btn:hover i {
        transform: translateX(6px);
    }



.fruit-card::after {
    content: "";
    position: absolute;
    width: 0;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(255,255,255,.12);
    transition: .6s;
}

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


@media(max-width:1199px) {

    .fruit-large {
        height: 520px;
    }

    .fruit-small {
        height: 250px;
    }

    .fruit-large h3 {
        font-size: 38px;
    }

    .fruit-small h4 {
        font-size: 26px;
    }
}

@media(max-width:991px) {

    .fruit-heading {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .fruit-large {
        height: 480px;
        margin-bottom: 20px;
    }

    .fruit-small {
        height: 260px;
    }
}

@media(max-width:767px) {

    .fruit-section {
        padding: 40px 0;
    }

    .heading-left h2 {
        font-size: 32px;
    }

    .heading-left::before {
        height: 60px;
    }

    .fruit-large {
        height: 400px;
    }

    .fruit-small {
        height: 240px;
    }

    .fruit-large h3 {
        font-size: 30px;
    }

    .fruit-small h4 {
        font-size: 24px;
    }

    .fruit-content {
        left: 20px;
        right: 20px;
        bottom: 20px;
    }

        .fruit-content p {
            font-size: 16px;
            margin-bottom: 20px;
        }

    .shop-btn {
        padding: 13px 24px;
    }
}

/*----------------------------------------------end--------------------------------------------------*/


.banner-image {
    width: 100%;
    overflow: hidden;
    padding: 80px 0px 0px;
    background-color: #f8f5ec;
}

    .banner-image img {
        width: 100%;
        height: 400px;
        object-fit: cover;
        display: block;
        border-radius: 18px;
    }

@media (max-width: 768px) {
    .banner-image img {
        height: 350px;
    }
}


/*-------------------------------------------------fruit slider--------------------------------------------*/

.fruit-slider-sec {
    padding: 80px 0px 0px;
    background: #ffffff;
    position: relative;
}

.section-title-wrap {
    display: flex;
    justify-content: space-between;
    align-items: end;
    margin-bottom: 40px;
}

.sub-title {
    display: inline-block;
    color: #1A5630;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
    border: 1px solid rgba(26, 86, 50, 0.3);
    background: rgba(26, 86, 50, 0.1);
    padding: 5px 20px;
    border-radius: 30px;
    line-height: 24px;
}

.section-title-wrap h2 {
    font-size: 32px;
    font-weight: 700;
    color: #184b3b;
    margin-bottom: 10px;
}

.section-title-wrap p {
    margin: 0;
    color: #777;
}

.view-btn {
    background: #184b3b;
    color: #fff;
    padding: 12px 28px;
    border-radius: 50px;
    text-decoration: none;
    transition: .4s;
}

    .view-btn:hover {
        background: #f5a623;
        color: #fff;
    }

.fruitSwiper {
    padding-bottom: 20px;
}

.fruit-box {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    transition: .4s;
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
}

    .fruit-box:hover {
        transform: translateY(-10px);
        box-shadow: 0 18px 40px rgba(0,0,0,.15);
    }

.fruit-img {
    overflow: hidden;
    height: 250px;
}

    .fruit-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: .6s;
    }

.fruit-box:hover img {
    transform: scale(1.1);
}

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

.nursery-product-title{
    font-size: 22px;
    font-weight:700;
    color: #1a3a27;
    margin-bottom:12px;
    line-height:1.3;
}

.nursery-product-text{
    font-size:15px;
    color:#666;
    line-height:1.8;
    margin-bottom:20px;
    min-height: 50px;
}

.nursery-product-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding: 8px 28px;
    /* background: linear-gradient(45deg, #ff6a00, #ffb347); */
    color:#fff;
    text-decoration:none;
    border-radius:40px;
    font-weight:600;
    transition:.35s ease;
    font-size: 15px;
    background-color: #1a3a27;
}

.nursery-product-btn:hover{
    background:#184b3b;
    color:#fff;
}

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

.fruitSwiper .swiper-pagination {
    position: relative;
    margin-top: 30px;
}

.fruitSwiper .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: #184b3b;
    opacity: .25;
}

.fruitSwiper .swiper-pagination-bullet-active {
    opacity: 1;
    background: #f5a623;
}

.fruitSwiper .swiper-button-next,
.fruitSwiper .swiper-button-prev {
    color: #184b3b;
}

@media(max-width:991px) {

    .section-title-wrap {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

        .section-title-wrap h2 {
            font-size: 34px;
        }
}

@media(max-width:767px) {

    .fruit-slider-sec {
        padding: 30px 0;
    }

    .section-title-wrap h2 {
        font-size: 30px;
    }

    .fruit-img {
        height: 190px;
    }
}



.fruitSwiper {
    position: relative;
}

    .fruitSwiper .swiper-button-next,
    .fruitSwiper .swiper-button-prev {
        width: 45px;
        height: 44px;
        background: #184b3b;
        border-radius: 50%;
        color: #fff;
        box-shadow: 0 10px 30px rgba(0, 0, 0, .15);
        transition: all .35s ease;
    }

        .fruitSwiper .swiper-button-next:hover,
        .fruitSwiper .swiper-button-prev:hover {
            background: #f5a623;
            transform: translateY(-3px);
        }

        .fruitSwiper .swiper-button-next::after,
        .fruitSwiper .swiper-button-prev::after {
            font-size: 18px;
            font-weight: 700;
        }

    .fruitSwiper .swiper-button-prev {
        left: 0px;
    }

    .fruitSwiper .swiper-button-next {
        right: 0px;
    }

    .fruitSwiper .swiper-button-prev::before {
        content: "\f284";
        font-family: "bootstrap-icons";
        font-size: 20px;
        color: #fff;
    }

    .fruitSwiper .swiper-button-next::before {
        content: "\f285";
        font-family: "bootstrap-icons";
        font-size: 20px;
        color: #fff;
    }

/* Responsive */

@media (max-width:1200px) {

    .fruitSwiper .swiper-button-prev {
        left: 10px;
    }

    .fruitSwiper .swiper-button-next {
        right: 10px;
    }
}

@media (max-width:767px) {

    .fruitSwiper .swiper-button-next,
    .fruitSwiper .swiper-button-prev {
        width: 45px;
        height: 45px;
    }

        .fruitSwiper .swiper-button-next::after,
        .fruitSwiper .swiper-button-prev::after {
            font-size: 15px;
        }
}

/*---------------------------------------------------end----------------------------------------------------*/


/*--------------------------------------------------farm process--------------------------------------------*/
.farm-process {
    /* background: #009253; */
    /* padding: 50px 0; */
    position: relative;
    overflow: hidden;
    margin: 80px 0px 0px;
}

.farm-subtitle {
    display: inline-block;
    color: #184b3b;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    margin-bottom: 15px;
}

.farm-title {
    color: #184b3b;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
}

.farm-text {
    color: #333;
    font-size: 16px;
    line-height: 26px;
    max-width: 700px;
    margin: auto;
}


.farmSwiper {
    padding: 15px 5px 20px;
}

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



.farm-card {
    background: #0a4c36;
    border-radius: 22px;
    overflow: hidden;
    transition: .4s;
    /* box-shadow: 0 18px 40px rgba(0,0,0,.12); */
    height: 100%;
}

    .farm-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 25px 45px rgba(0,0,0,.25);
    }

.farm-img {
    height: 250px;
    overflow: hidden;
}

    .farm-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: .6s;
    }

.farm-card:hover .farm-img img {
    transform: scale(1.08);
}

.farm-content {
    padding: 20px;
    text-align: center;
}

    .farm-content h4 {
        color: #fff;
        font-size: 20px;
        font-weight: 700;
        margin-bottom: 15px;
    }

    .farm-content p {
        color: #d8e8dd;
        font-size: 14px;
        line-height: 25px;
        margin-bottom: 25px;
    }

    .farm-content a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 8px 23px;
        background: #fff;
        color: #0f5f37;
        border-radius: 50px;
        text-decoration: none;
        font-weight: 600;
        transition: .35s;
        font-size: 15px;
    }

        .farm-content a:hover {
            background: #f8b400;
            color: #fff;
        }

.farm-prev,
.farm-next {
    width: 45px !important;
    height: 45px !important;
    border-radius: 50%;
    background: #f8b400;
    color: #0f5f37 !important;
    box-shadow: 0 15px 35px rgba(0,0,0,.2);
    transition: .35s;
}

    .farm-prev:hover,
    .farm-next:hover {
        background: #f8b400;
        color: #fff !important;
    }

    .farm-prev::after,
    .farm-next::after {
        font-size: 18px;
        font-weight: 700;
    }

.farm-prev {
    left: 8px;
}

.farm-next {
    right: 8px;
}

.swiper-pagination {
    bottom: 0 !important;
}

.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: #fff;
    opacity: .35;
}

.swiper-pagination-bullet-active {
    background: #f8b400;
    opacity: 1;
}


@media(max-width:1199px) {

    .farm-prev {
        left: 10px;
    }

    .farm-next {
        right: 10px;
    }
}

@media(max-width:991px) {

    .farm-title {
        font-size: 42px;
    }

    .farm-img {
        height: 280px;
    }
}

@media(max-width:767px) {

    .farm-process {
        padding: 70px 0;
    }

    .farm-title {
        font-size: 34px;
    }

    .farm-text {
        font-size: 16px;
    }

    .farm-content {
        padding: 22px;
    }

        .farm-content h4 {
            font-size: 24px;
        }

    .farm-prev,
    .farm-next {
        width: 46px !important;
        height: 46px !important;
    }
}
/*----------------------------------------------------end---------------------------------------------------*/

/*-----------------------------------------------------plant category---------------------------------------*/
.category-section {
    /* background: #fff; */
    padding: 80px 0px;
    position: relative;
    /* margin: 80px 0px 0px; */
    /* background-image: url(../img/bg/fruit-bg.png); */
}

.category-title {
    color: #1a3a27;
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 0px;
}

.category-item {
    text-align: center;
    transition: .35s;
}

    .category-item:hover {
        transform: translateY(-8px);
    }

.category-icon {
    /* width: 100px; */
    /* height: 100px; */
    /* background: #fff; */
    /* border-radius: 50%; */
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .35s;
    /* box-shadow: 0 12px 35px rgba(0,0,0,.15); */
    /* box-shadow: 0 3px 10px rgb(217 68 68 / 58%) !important; */
}

    .category-icon img {
        width: 85px;
        transition: .35s;
    }

.category-item:hover .category-icon {
    /* background: #f8f6f1; */
}

    .category-item:hover .category-icon img {
        transform: scale(1.12);
    }

.category-item h5 {
    color: #1a3a27;
    margin-top: 5px;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.4;
}

@media(max-width:1200px) {

    .category-title {
        font-size: 48px;
    }

    .category-icon {
        width: 120px;
        height: 120px;
    }

        .category-icon img {
            width: 68px;
        }

    .category-item h5 {
        font-size: 20px;
    }
}

@media(max-width:991px) {

    .category-section {
        padding: 70px 0;
    }

    .category-title {
        font-size: 42px;
    }

    .category-icon {
        width: 110px;
        height: 110px;
    }

        .category-icon img {
            width: 60px;
        }
}

@media(max-width:767px) {

    .category-title {
        font-size: 26px;
    }

    .category-icon {
        width: 95px;
        height: 95px;
    }

        .category-icon img {
            width: 65px;
        }

    .category-item h5 {
        font-size: 18px;
    }
}

/*------------------------------------------------------end--------------------------------------------------*/

/*-----------------------------------------------------garden service----------------------------------------*/
.garden-service-section {
    padding: 80px 0;
    /* background: #f8f8f8; */
    position: relative;
}

.garden-service-wrapper {
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,.08);
}

.garden-service-image {
    height: 500px;
    overflow: hidden;
}

    .garden-service-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: .6s;
    }

.garden-service-wrapper:hover .garden-service-image img {
    transform: scale(1.05);
}

.garden-service-content {
    background: #ffcb2d;
    height: 500px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 70px;
}

.service-subtitle {
    display: inline-block;
    margin-bottom: 18px;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #0b5a43;
}

.garden-service-content h2 {
    font-size: 42px;
    font-weight: 800;
    color: #111;
    line-height: 1.15;
    margin-bottom: 30px;
}

.garden-service-content p {
    font-size: 18px;
    line-height: 32px;
    color: #3b3b3b;
    margin-bottom: 40px;
}

.service-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: max-content;
    padding: 18px 38px;
    background: #0b5a43;
    color: #fff;
    text-decoration: none;
    border-radius: 60px;
    font-weight: 600;
    transition: .35s;
}

    .service-btn:hover {
        background: #ffffff;
        color: #0b5a43;
    }

/*========================
Responsive
=========================*/

@media(max-width:1400px) {

    .garden-service-content {
        padding: 60px;
    }

        .garden-service-content h2 {
            font-size: 42px;
        }
}

@media(max-width:1200px) {

    .garden-service-image,
    .garden-service-content {
        height: 560px;
    }

        .garden-service-content h2 {
            font-size: 46px;
        }

        .garden-service-content p {
            font-size: 18px;
            line-height: 32px;
        }
}

@media(max-width:991px) {

    .garden-service-image {
        height: 450px;
    }

    .garden-service-content {
        height: auto;
        padding: 50px 40px;
    }

        .garden-service-content h2 {
            font-size: 40px;
        }
}

@media(max-width:767px) {

    .garden-service-section {
        padding: 60px 0;
    }

    .garden-service-image {
        height: 300px;
    }

    .garden-service-content {
        padding: 35px 25px;
    }

        .garden-service-content h2 {
            font-size: 32px;
        }

        .garden-service-content p {
            font-size: 16px;
            line-height: 28px;
        }

    .service-btn {
        width: 100%;
    }
}
/*--------------------------------------------------------end------------------------------------------------*/


/*----------------------------------------------------top marquee---------------------------------------------*/
.nursery-marquee{
    width:100%;
    /* background:#0b6b38; */
    overflow:hidden;
    white-space:nowrap;
    /* padding:14px 0; */
    position:relative;
}

.marquee-track{
    display:inline-flex;
    align-items:center;
    gap: 35px;
    animation:marquee 25s linear infinite;
}

.marquee-track span{
    color:#fff;
    font-size: 14px;
    font-weight:600;
    display:flex;
    align-items:center;
    white-space:nowrap;
}

.marquee-track:hover{
    animation-play-state:paused;
}

@keyframes marquee{
    from{
        transform:translateX(0);
    }
    to{
        transform:translateX(-50%);
    }
}

@media(max-width:768px){

    .marquee-track{
        gap:40px;
    }

    .marquee-track span{
        font-size:14px;
    }

}

/*--------------------------------------------------------end------------------------------------------------*/
@media (max-width: 767px){
    .farm-prev, .farm-next {
    background: transparent;
   
}
    .banner-image {
    padding: 40px 0px 0px;

}
}

/*-----------------------------------------------fruit plant------------------------------------------*/

.hy-fruit-section {
    position: relative;
    padding: 80px 0;
    background: #fff;
    overflow: hidden;
}

.hy-fruit-heading {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto 50px;
}

.hy-fruit-subtitle {
    display: inline-block;
    padding: 7px 18px;
    background: #e6f3dc;
    color: #57942c;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.hy-fruit-heading h2 {
    margin: 0 0 12px;
    color: #173f2a;
    font-size: 42px;
    line-height: 1.2;
    font-weight: 700;
}

.hy-fruit-heading h2 strong {
    color: #69a934;
}

.hy-fruit-heading p {
    margin: 0;
    color: #68766c;
    font-size: 16px;
    line-height: 1.7;
}

.hy-fruit-card {
    position: relative;
    z-index: 2;
    height: 100%;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid #e3edde;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(40, 80, 40, .08);
    transition: all .4s ease;
}

.hy-fruit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(40, 80, 40, .15);
}

.hy-fruit-img {
    position: relative;
    width: 100%;
    height: 270px;
    overflow: hidden;
    background: #edf5e9;
}

.hy-fruit-img img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s ease;
}

.hy-fruit-card:hover .hy-fruit-img img {
    transform: scale(1.07);
}

.hy-fruit-content {
    padding: 24px;
}

.hy-fruit-label {
    display: inline-block;
    margin-bottom: 7px;
    color: #67a532;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.hy-fruit-content h3 {
    margin: 0 0 10px;
    color: #173f2a;
    font-size: 25px;
    line-height: 1.2;
    font-weight: 700;
}

.hy-fruit-content p {
    margin: 0 0 20px;
    color: #6c766e;
    font-size: 14px;
    line-height: 1.7;
}

.hy-fruit-btn {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: #57952d;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: all .3s ease;
}

.hy-fruit-btn i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 29px;
    height: 29px;
    background: #e7f3df;
    border-radius: 50%;
    font-size: 11px;
    transition: all .3s ease;
}

.hy-fruit-btn:hover {
    color: #316d17;
}

.hy-fruit-btn:hover i {
    color: #ffffff;
    background: #67a532;
    transform: translateX(4px);
}

@media (max-width: 991px) {

    .hy-fruit-section {
        padding: 70px 0;
    }

    .hy-fruit-heading h2 {
        font-size: 36px;
    }

    .hy-fruit-img {
        height: 245px;
    }
}


@media (max-width: 767px) {

    .hy-fruit-section {
        padding: 60px 0;
    }

    .hy-fruit-heading {
        margin-bottom: 35px;
    }

    .hy-fruit-heading h2 {
        font-size: 30px;
    }

    .hy-fruit-heading p {
        font-size: 14px;
    }

    .hy-fruit-img {
        height: 260px;
    }

    .hy-fruit-content {
        padding: 21px;
    }

    .hy-fruit-content h3 {
        font-size: 23px;
    }
}


@media (max-width: 575px) {

    .hy-fruit-heading h2 {
        font-size: 27px;
    }

    .hy-fruit-img {
        height: 250px;
    }
}
/*-------------------------------------------------end-------------------------------------------------*/


/*--------------------------------------------------strength-------------------------------------------*/
.turaab-strength-section {
    position: relative;
    padding: 80px 0px 0px;
    background: #fff;
    overflow: hidden;
}

.turaab-strength-heading {
    margin-bottom: 45px;
}

.turaab-strength-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 22px;
    margin-bottom: 22px;

    background: #eef5ff;
    color: #0b57d0;

    border-radius: 50px;

    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.turaab-strength-heading h2 {
    margin: 0;
    color: #202901;
    font-size: 40px;
    line-height: 1.2;
    font-weight: 700;
}

.turaab-strength-heading h2 span {
    color: #1a3a27;
}

.turaab-strength-row {
    position: relative;
}

.turaab-strength-card {
    position: relative;
    height: 100%;
    min-height: 345px;
    padding: 28px 26px;
    background: #fff;
    border: 1px solid #1a3a27;
    border-radius: 8px;
    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        border-color 0.35s ease;
    overflow: hidden;
}

.turaab-strength-card:hover {
    transform: translateY(-8px);
    border-color: #1a3a27;
    box-shadow: 0 18px 45px #1a3a272e;
}

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

.turaab-strength-icon {
    width: 76px;
    height: 76px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 36px;
    /* background: linear-gradient(45deg, #ff6a00, #ffb347); */
    border-radius: 50%;
    transition: all 0.35s ease;
    background-color: #1a3a27;
}

.turaab-strength-icon i {
    color: #ffffff;
    font-size: 34px;
    transition: all 0.35s ease;
}

.turaab-strength-card:hover .turaab-strength-icon {
    background: #bb0214;
    transform: scale(1.05);
}

.turaab-strength-card:hover .turaab-strength-icon i {
    color: #fff;
}


.turaab-strength-card h3 {
    margin: 0 0 14px;
    color: #1a3a27;
    font-size: 20px;
    line-height: 1.3;
    font-weight: 700;
}


.turaab-strength-card p {
    margin: 0;

    color: #73769a;

    font-size: 16px;
    line-height: 1.75;

    font-weight: 400;
}

@media (max-width: 991px) {

    .turaab-strength-section {
        padding: 65px 0;
    }

    .turaab-strength-heading h2 {
        font-size: 36px;
    }

    .turaab-strength-card {
        min-height: 320px;
    }

}


@media (max-width: 767px) {

    .turaab-strength-section {
        padding: 55px 0;
    }

    .turaab-strength-heading {
        margin-bottom: 32px;
    }

    .turaab-strength-badge {
        font-size: 11px;
        padding: 7px 17px;
        letter-spacing: 1.5px;
    }

    .turaab-strength-heading h2 {
        font-size: 30px;
    }

    .turaab-strength-card {
        min-height: auto;
        padding: 25px 22px;
    }

    .turaab-strength-icon {
        width: 68px;
        height: 68px;
        margin-bottom: 28px;
    }

    .turaab-strength-icon i {
        font-size: 29px;
    }

    .turaab-strength-card h3 {
        font-size: 19px;
    }

    .turaab-strength-card p {
        font-size: 15px;
        line-height: 1.65;
    }

}

/*---------------------------------------------------end-----------------------------------------------*/

/*-------------------------------------------------facts section---------------------------------------*/

.turaab-facts-section{
    position:relative;
    padding: 50px 0px 80px;
}
.turaab-facts-bg {
    position: relative;
    min-height: 515px;
    background-image: linear-gradient( rgba(18, 24, 29, 0.78), rgba(18, 24, 29, 0.78) ), url("../img/about/counter-bg.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: flex-start;
}


.turaab-facts-content {
    padding-top: 115px;
}

.turaab-facts-title {
    max-width: 720px;
    margin: 0 auto 60px;
    color: #ffffff;
    font-size: 40px;
    line-height: 1.12;
    font-weight: 700;
    letter-spacing: -0.8px;
}

.turaab-facts-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 172px;
    height: 52px;
    padding: 0 30px;
    /* background: linear-gradient(45deg, #ff6a00, #ffb347); */
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 35px;
    transition: all 0.3s ease;
    background-color: #c69718;
}

.turaab-facts-btn:hover {
    background: #c50000;

    color: #ffffff !important;

    transform: translateY(-2px);

    box-shadow: 0 10px 25px rgba(224, 0, 0, 0.25);
}


.turaab-facts-stat-container {
    position: relative;

    margin-top: -80px;

    z-index: 5;
}

.turaab-facts-stat-box {
    position: relative;
    min-height: 166px;
    padding: 50px 35px 20px;
    background: #ffffff;
    /* border: 1px solid #dce2eb; */
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.02);
}


.turaab-stat-item {
    text-align: center;

    padding: 8px 15px;
}

.turaab-stat-item h3 {
    margin: 0 0 12px;
    color: #202901;
    font-size: 50px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: -1px;
}

.turaab-stat-item p {
    margin: 0;
    color: #696b87;
    font-size: 16px;
    line-height: 1.4;
    font-weight: 400;
}

@media (max-width: 991px) {

    .turaab-facts-bg {
        min-height: 480px;
    }

    .turaab-facts-content {
        padding-top: 90px;
    }

    .turaab-facts-title {
        font-size: 38px;

        max-width: 650px;

        margin-bottom: 45px;
    }

    .turaab-facts-stat-container {
        margin-top: -65px;
    }

    .turaab-facts-stat-box {
        padding: 25px 15px;
    }

    .turaab-stat-item h3 {
        font-size: 34px;
    }

    .turaab-stat-item p {
        font-size: 15px;
    }

}



@media (max-width: 767px) {

    .turaab-facts-section {
        padding: 40px 1px;
    }

    .turaab-facts-bg {
        min-height: 430px;
    }

    .turaab-facts-content {
        padding: 75px 20px 0;
    }

    .turaab-facts-title {
        font-size: 30px;

        line-height: 1.2;

        margin-bottom: 38px;
    }

    .turaab-facts-btn {
        min-width: 150px;
        height: 52px;

        font-size: 15px;
    }

    .turaab-facts-stat-container {
        margin-top: -55px;
        padding-left: 15px;
        padding-right: 15px;
    }

    .turaab-facts-stat-box {
        padding: 20px 8px;

        min-height: auto;
    }

    .turaab-stat-item {
        padding: 15px 5px;
    }

    .turaab-stat-item h3 {
        font-size: 28px;
    }

    .turaab-stat-item p {
        font-size: 13px;
        line-height: 1.35;
    }

}


@media (max-width: 480px) {

    .turaab-facts-bg {
        min-height: 400px;
    }

    .turaab-facts-content {
        padding-top: 65px;
    }

    .turaab-facts-title {
        font-size: 27px;
    }

    .turaab-facts-stat-container {
        margin-top: -45px;
    }

    .turaab-stat-item h3 {
        font-size: 25px;
    }

    .turaab-stat-item p {
        font-size: 12px;
    }

}

/*---------------------------------------------------end-----------------------------------------------*/

/*---------------------------------------------------value---------------------------------------------*/

.turaab-values-section{
    margin:80px 0px 0px;
}
.turaab-values-section {
    position: relative;
    width: 100%;
    /* padding: 48px 0 50px; */
    /* background: linear-gradient(rgb(255 255 255), rgb(255 255 255)), url(../img/about/counter-bg.jpg); */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.turaab-values-heading {
    margin-bottom: 38px;
}

.turaab-values-badge {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    padding: 7px 20px;

    margin-bottom: 15px;

    background: #fff1ee;

    color: #171717;

    border-radius: 30px;

    font-size: 13px;
    font-weight: 600;

    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.turaab-values-heading h2 {
    margin: 0;
    color: #202901;
    font-size: 40px;
    line-height: 1.2;
    font-weight: 700;
}


.turaab-values-grid {
    max-width: 1040px;

    margin-left: auto;
    margin-right: auto;
}



.turaab-value-card {
    position: relative;
    min-height: 218px;
    padding: 21px 25px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: rgb(70 75 53);
    border: 1px solid rgba(210, 221, 222, 0.65);
    border-radius: 15px;
    transition:
        transform 0.35s ease,
        border-color 0.35s ease,
        background 0.35s ease,
        box-shadow 0.35s ease;
}

.turaab-value-card:hover {
    transform: translateY(-6px);

    background: rgba(10, 43, 23, 0.65);

    border-color: rgba(255, 255, 255, 0.9);

    box-shadow:
        0 15px 35px rgba(0, 0, 0, 0.20);
}



.turaab-value-icon {
    width: 68px;
    height: 68px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    /* background: linear-gradient(45deg, #ff6a00, #ffb347); */
    border-radius: 50%;
    flex-shrink: 0;
    transition:
        transform 0.35s ease,
        background 0.35s ease;
    background-color: #eed484;
}

.turaab-value-icon i {
    color: #202901;
    font-size: 28px;
    line-height: 1;
}

.turaab-value-card:hover .turaab-value-icon {
    transform: scale(1.08);
    /* background: linear-gradient(45deg, #ff6a00, #ffb347); */
}


.turaab-value-card h3 {
    margin: 0 0 10px;

    color: #ffffff;

    font-size: 19px;
    line-height: 1.3;

    font-weight: 700;
}


.turaab-value-card p {
    max-width: 390px;

    margin: 0;

    color: rgba(255, 255, 255, 0.92);

    font-size: 15px;
    line-height: 1.55;

    font-weight: 400;
}


@media (min-width: 1400px) {

    .turaab-values-section {
        padding-top: 48px;
        padding-bottom: 50px;
    }

    .turaab-values-grid {
        max-width: 1040px;
    }

    .turaab-value-card {
        min-height: 218px;
    }
}



@media (max-width: 991px) {

    .turaab-values-section {
        padding: 55px 0;
    }

    .turaab-values-heading {
        margin-bottom: 35px;
    }

    .turaab-values-heading h2 {
        font-size: 34px;
    }

    .turaab-value-card {
        min-height: 235px;

        padding: 25px 20px;
    }

}


@media (max-width: 767px) {

    .turaab-values-section {
        padding: 50px 0;
        margin: 40px 0px;
    }

    .turaab-values-heading {
        margin-bottom: 30px;
    }

    .turaab-values-badge {
        font-size: 11px;

        padding: 7px 17px;

        letter-spacing: 1.3px;
    }

    .turaab-values-heading h2 {
        font-size: 30px;
    }

    .turaab-value-card {
        min-height: auto;

        padding: 25px 18px;
    }

    .turaab-value-icon {
        width: 64px;
        height: 64px;

        margin-bottom: 18px;
    }

    .turaab-value-icon i {
        font-size: 26px;
    }

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

    .turaab-value-card p {
        font-size: 14px;
        line-height: 1.6;
    }

}


@media (max-width: 480px) {

    .turaab-values-section {
        padding: 0px 0;
    }

    .turaab-values-heading h2 {
        font-size: 27px;
    }

    .turaab-value-card {
        padding: 23px 16px;
    }

}

/*---------------------------------------------------end-----------------------------------------------*/

@media (max-width: 767px){
    .category-section {
    padding: 0px 0;
    margin: 20px 0px 0px;
}
    .aboutSwiper {
    width: 95%;
    height: auto;

}
}

/*---------------------------------------------------import product------------------------------------*/

.at-import-products-section {
    padding: 80px 0;
    background: #fff;
    overflow: hidden;
    position: relative;
}

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

.at-sub-title {
    display: inline-block;
    margin-bottom: 10px;
    color: #6c9b25;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.at-section-heading h2 {
    margin: 0 0 15px;
    color: #183d22;
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
}

.at-section-heading p {
    margin: 0 auto;
    max-width: 700px;
    color: #68736b;
    font-size: 16px;
    line-height: 1.8;
}


/* Product Tabs */

.at-product-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 45px;
    padding: 7px;
    background: #ffffff;
    border: 1px solid #e5ebe3;
    border-radius: 50px;
    box-shadow: 0 8px 30px rgba(28, 67, 36, 0.07);
}

.at-tab-btn {
    border: 0;
    outline: none;
    padding: 11px 25px;
    border-radius: 40px;
    background: transparent;
    color: #526057;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.at-tab-btn:hover,
.at-tab-btn.active {
    background: linear-gradient(135deg, #315f28, #82a92f);
    color: #ffffff;
}


/* Product Card */

.at-product-card {
    height: 100%;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid #e8eee7;
    border-radius: 18px;
    box-shadow: 0 10px 35px rgba(30, 67, 36, 0.08);
    transition: all 0.4s ease;
}

.at-product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 45px rgba(30, 67, 36, 0.15);
}


/* Product Image */

.at-product-image {
    position: relative;
    height: 270px;
    overflow: hidden;
    background: #f3f7f1;
}

.at-product-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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


/* Badge */

.at-product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 6px 13px;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.95);
    color: #315f28;
    font-size: 12px;
    font-weight: 700;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}


/* Content */

.at-product-content {
    padding: 24px;
}

.at-product-content h3 {
    margin: 0 0 10px;
    color: #193d23;
    font-size: 21px;
    font-weight: 700;
}

.at-product-content p {
    min-height: 55px;
    margin: 0 0 18px;
    color: #707a73;
    font-size: 14px;
    line-height: 1.7;
}


/* Button */

.at-product-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #315f28;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.at-product-btn i {
    transition: transform 0.3s ease;
}

.at-product-btn:hover {
    color: #82a92f;
}

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


/* Filter Animation */

.at-product-item {
    transition:
        opacity 0.35s ease,
        transform 0.35s ease;
}

.at-product-item.at-hidden {
    display: none;
}


/* Responsive */

@media (max-width: 991px) {

    .at-import-products-section {
        padding: 75px 0;
    }

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

    .at-product-image {
        height: 240px;
    }
}

@media (max-width: 575px) {

    .at-import-products-section {
        padding: 60px 0;
    }

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

    .at-section-heading p {
        font-size: 14px;
    }

    .at-product-tabs {
        border-radius: 15px;
    }

    .at-tab-btn {
        padding: 9px 14px;
        font-size: 13px;
    }

    .at-product-image {
        height: 230px;
    }

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

/*-----------------------------------------------------end---------------------------------------------*/

/*--------------------------------------------------certification--------------------------------------*/
.rama-cert-section {
    position: relative;
    padding: 80px 0;
    background: #fff;
    overflow: hidden;
}


.rama-cert-heading {
    margin-bottom: 25px;
}

.rama-cert-subtitle {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;

    color: #278342;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
}

/*.rama-cert-subtitle::before,
.rama-cert-subtitle::after {
    content: "";
    width: 30px;
    height: 2px;
    background: linear-gradient(
        90deg,
        #278342,
        #e58b25
    );
}*/

.rama-cert-heading h2 {
    margin-bottom: 18px;
    color: #1a5632;
    font-size: 42px;
    line-height: 1.2;
    font-weight: 700;
}

.rama-cert-heading h2 span {
    color: #183d22;
}

.rama-cert-heading > p {
    max-width: 720px;
    margin: 0 auto;
    color: #565656;
    font-size: 15px;
    line-height: 1.8;
}

.rama-cert-line {
    width: 70px;
    height: 4px;
    margin: 20px auto;

    border-radius: 20px;

    background: linear-gradient(
        90deg,
        #278342,
        #e58b25
    );
}

.rama-cert-note {
    font-size: 13px !important;
}



.rama-cert-card {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 90px;
    padding: 8px 22px;
    background: #ffffff;
    border: 1px solid #e1e9e3;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(24, 65, 40, 0.06);
    transition: all 0.35s ease;
}

.rama-cert-card:hover {
    transform: translateY(-5px);

    border-color: rgba(39, 131, 66, 0.35);

    box-shadow:
        0 18px 40px rgba(24, 65, 40, 0.12);
}


.rama-cert-logo {
    width: 70px;
    height: 71px;
    flex: 0 0 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    background: #ffffff;
    border: 1px solid #e8ece9;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.04);
}

.rama-cert-logo img {
    width: 65px;
    height: 65px;
    display: block;
    object-fit: contain;
}


.rama-cert-content {
    flex: 1;
    min-width: 0;
}

.rama-cert-content h4 {
    margin: 0 0 6px;
    color: #212121;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.3;
}

.rama-cert-content p {
    margin: 0;

    color: #718078;
    font-size: 13px;
    line-height: 1.55;
}


.rama-cert-arrow {
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 15px;
    border-radius: 50%;
    background: #1a5632;
    color: #ffffff;
    font-size: 13px;
    transition: all 0.3s ease;
}

.rama-cert-card:hover .rama-cert-arrow {
    color: #ffffff;
    background: #278342;
    transform: translateX(4px);
}


@media (max-width: 991px) {

    .rama-cert-section {
        padding: 70px 0;
    }

    .rama-cert-heading h2 {
        font-size: 36px;
    }

}

@media (max-width: 575px) {

    .rama-cert-section {
        padding: 55px 0;
    }

    .rama-cert-heading h2 {
        font-size: 30px;
    }

    .rama-cert-card {
        min-height: 100px;
        padding: 13px;
        border-radius: 13px;
    }

    .rama-cert-logo {
        width: 62px;
        height: 62px;
        flex-basis: 62px;
        margin-right: 13px;
    }

    .rama-cert-logo img {
        width: 50px;
        height: 50px;
    }

    .rama-cert-content h4 {
        font-size: 15px;
    }

    .rama-cert-content p {
        font-size: 11px;
    }

    .rama-cert-arrow {
        display: none;
    }

}
/*------------------------------------------------------end---------------------------------------------*/

/*----------------------------------------------------export market-------------------------------------*/

.rama-export-markets {
    background: #fff;
    position:relative;
    padding: 80px 0px 0px;
}

.rama-export-heading {
    margin-bottom: 10px;
    text-align: center;
}

.rama-export-heading h2 {
    margin: 0 0 8px;
    font-size: 42px;
    font-weight: 700;
    color: #164d3a;
    letter-spacing: .5px;
}

.rama-export-heading p {
    margin: 0;
    /* max-width: 330px; */
    color: #555;
    font-size: 15px;
    line-height: 1.5;
    font-weight: 500;
    text-align: center;
}


.rama-export-map {
    width: 100%;
    margin: 12px 0 15px;
}

.rama-export-map img {
    width: 100%;
    height: auto;
    display: block;
}


.rama-country {
    display: flex;
    align-items: center;
    gap: 9px;
    min-height: 30px;
    margin-bottom: 6px;
}

.rama-country img {
    width: 36px;
    height: 26px;
    object-fit: cover;
    flex-shrink: 0;
    display: block;
}

.rama-country span {
    color: #333;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.2;
}


.rama-full-image-section {
    width: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

.rama-full-section-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.rama-more-markets {
    margin-top: 2px;
    padding-right: 10px;
    color: #555;
    font-size: 12px;
    font-weight: 600;
}


/*.rama-export-markets::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0px;
    width: 100%;
    height: 900px;
    background-image: url("../img/about/export-ship.png");
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: contain;
    z-index: 1;
    pointer-events: none;
}*/

.rama-export-markets .container {
    position: relative;
    z-index: 2;
}

.rama-export-ship {
    margin-top: 5px;
    overflow: hidden;
    background-image: url('../img/about/export-ship.png');
}

.rama-export-ship img {
    width: 100%;
    height: auto;
    display: block;
}



@media (max-width: 767px) {

    .rama-export-heading h2 {
        font-size: 24px;
    }

    .rama-export-heading p {
        font-size: 13px;
    }

    .rama-country {
        gap: 6px;
    }

    .rama-country img {
        width: 21px;
        height: 14px;
    }

    .rama-country span {
        font-size: 9px;
    }
    .rama-country-list {
    margin-bottom: 100px;
}
}



@media (max-width: 480px) {

    .rama-export-heading h2 {
        font-size: 21px;
    }

    .rama-export-heading p {
        font-size: 12px;
    }

    .rama-country {
        min-height: 27px;
        margin-bottom: 4px;
    }

    .rama-country img {
        width: 19px;
        height: 13px;
    }

    .rama-country span {
        font-size: 8px;
    }

    .rama-more-markets {
        font-size: 10px;
    }
}
/*-------------------------------------------------------end---------------------------------------------*/


/*-----------------------------------------------------why choose us-------------------------------------*/

.at-why-section {
    position: relative;
    padding: 80px 0;
    background: #fff;
    overflow: hidden;
}

.at-why-content {
    position: relative;
    z-index: 2;
    padding-right: 35px;
}

.at-why-subtitle {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #27763e;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.at-why-subtitle::after {
    content: "";
    width: 38px;
    height: 2px;
    background: #e49a24;
}

.at-why-content h2 {
    margin: 0 0 15px;
    color: #183d22;
    font-size: 42px;
    line-height: 1.15;
    font-weight: 700;
}

.at-why-content h2 span {
    color: #183d22;
}

.at-why-intro {
    max-width: 600px;
    color: #6c7c72;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 28px;
}


.at-why-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 13px 20px;
}

.at-why-item {
    display: flex;
    align-items: flex-start;
    gap: 13px;
    padding: 13px 14px;
    background: #ffffff;
    border: 1px solid #e2ebe4;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.at-why-item:hover {
    transform: translateY(-4px);
    border-color: #70a97d;
    box-shadow: 0 12px 30px rgba(31, 91, 47, 0.10);
}

.at-why-icon {
    flex: 0 0 38px;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(
        135deg,
        #237c40 0%,
        #318c4b 65%,
        #e49a24 100%
    );
    color: #ffffff;
    font-size: 15px;
    box-shadow: 0 5px 15px rgba(35, 124, 64, 0.20);
}

.at-why-item h4 {
    margin: 0 0 4px;
    color: #173e2b;
    font-size: 16px;
    font-weight: 700;
}

.at-why-item p {
    margin: 0;
    color: #748279;
    font-size: 13px;
    line-height: 1.5;
}

.at-why-image-wrap {
    position: relative;
    padding: 15px;
}

.at-why-image {
    position: relative;
    width: 100%;
    height: 650px;
    overflow: hidden;
    border-radius: 25px;
    background: #ffffff;
    box-shadow: 0 20px 55px rgba(22, 60, 42, 0.18);
}

.at-why-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0) 55%,
        rgba(10, 50, 28, 0.20) 100%
    );
    pointer-events: none;
}

.at-why-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.at-why-image-wrap:hover .at-why-image img {
    transform: scale(1.04);
}


.at-why-badge {
    position: absolute;
    left: -5px;
    bottom: 55px;
    z-index: 3;

    min-width: 150px;
    padding: 17px 22px;

    display: flex;
    flex-direction: column;

    background: #ffffff;
    border-radius: 14px;
    border-left: 4px solid #e49a24;

    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.14);
}

.at-why-badge strong {
    color: #237c40;
    font-size: 21px;
    line-height: 1.2;
}

.at-why-badge span {
    color: #748279;
    font-size: 12px;
    margin-top: 3px;
}



@media (max-width: 1199px) {

    .at-why-content {
        padding-right: 10px;
    }

    .at-why-content h2 {
        font-size: 36px;
    }

    .at-why-list {
        gap: 10px;
    }

    .at-why-image {
        height: 600px;
    }
}

@media (max-width: 991px) {

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

    .at-why-content {
        padding-right: 0;
    }

    .at-why-content h2 {
        font-size: 34px;
    }

    .at-why-image-wrap {
        margin-top: 20px;
        padding: 10px 30px;
    }

    .at-why-image {
        height: 550px;
    }

    .at-why-badge {
        left: 15px;
    }
}


@media (max-width: 767px) {

    .at-why-section {
        padding: 55px 0;
    }

    .at-why-content h2 {
        font-size: 29px;
    }

    .at-why-intro {
        font-size: 14px;
    }

    .at-why-list {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .at-why-item {
        padding: 12px;
    }

    .at-why-image-wrap {
        padding: 5px 0;
    }

    .at-why-image {
        height: 430px;
        border-radius: 18px;
    }

    .at-why-badge {
        left: 15px;
        bottom: 30px;
    }
}


@media (max-width: 480px) {

    .at-why-content h2 {
        font-size: 26px;
    }

    .at-why-item h4 {
        font-size: 15px;
    }

    .at-why-item p {
        font-size: 12px;
    }

    .at-why-image {
        height: 350px;
    }

    .at-why-badge {
        min-width: 130px;
        padding: 13px 17px;
    }

    .at-why-badge strong {
        font-size: 18px;
    }
}
/*--------------------------------------------------------end--------------------------------------------*/

/*-----------------------------------------------------------packaging------------------------------------*/
.at-packaging-section {
    position: relative;
    padding: 80px 0px 0px;
    background: #fff;
    overflow: hidden;
}


.at-packaging-section .container {
    position: relative;
    z-index: 2;
}

.at-packaging-heading {
    max-width: 850px;
    margin: 0 auto 55px;
}

.at-packaging-subtitle {
    display: inline-block;
    position: relative;
    margin-bottom: 10px;
    padding-left: 35px;
    padding-right: 35px;

    color: #277538;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.at-packaging-subtitle::before,
.at-packaging-subtitle::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 25px;
    height: 2px;
    background: #e39a28;
}

.at-packaging-subtitle::before {
    left: 0;
}

.at-packaging-subtitle::after {
    right: 0;
}

.at-packaging-heading h2 {
    margin: 0 0 15px;
    color: #183d22;
    font-size: 42px;
    line-height: 1.2;
    font-weight: 700;
}

.at-packaging-heading h2 span {
    color: #183d22;
}

.at-packaging-heading p {
    max-width: 720px;
    margin: 0 auto;
    color: #68766e;
    font-size: 16px;
    line-height: 1.8;
}


.at-packaging-content {
    padding-right: 25px;
}

.at-packaging-heading h3 {
    margin-bottom: 15px;
    color: #173d29;
    font-size: 29px;
    font-weight: 750;
    margin-top: 10px;
}

.at-packaging-intro {
    margin-bottom: 30px;
    color: #68766e;
    font-size: 15px;
    line-height: 1.8;
}

.at-packaging-intro strong {
    color: #277538;
}


.at-packaging-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.at-packaging-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 10px 18px;
    background: #ffffff;
    border: 1px solid #e2eae3;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.at-packaging-item:hover {
    transform: translateX(7px);
    border-color: #a9c9ad;
    box-shadow: 0 12px 30px rgba(30, 75, 40, 0.08);
}

.at-packaging-icon {
    flex: 0 0 48px;
    width: 48px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 12px;

    background: linear-gradient(
        135deg,
        #26733a 0%,
        #3f9348 65%,
        #d69422 100%
    );

    color: #ffffff;
    font-size: 18px;

    box-shadow: 0 7px 16px rgba(39, 117, 56, 0.18);
}

.at-packaging-item h4 {
    margin: 0 0 5px;
    color: #173d29;
    font-size: 17px;
    font-weight: 700;
}

.at-packaging-item p {
    margin: 0;
    color: #718078;
    font-size: 14px;
    line-height: 1.6;
}


.at-packing-sizes {
    margin-top: 30px;
}

.at-packing-sizes > h4 {
    margin-bottom: 16px;
    color: #173d29;
    font-size: 18px;
    font-weight: 700;
}

.at-size-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.at-size-box {
    width: 68px;
    height: 68px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border: 1px solid #cbdcca;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.at-size-box strong {
    color: #277538;
    font-size: 22px;
    line-height: 1;
    font-weight: 800;
}

.at-size-box span {
    margin-top: 0px;
    color: #68766e;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
}

.at-size-box:hover {
    transform: translateY(-5px);
    background: #277538;
    border-color: #277538;
}

.at-size-box:hover strong,
.at-size-box:hover span {
    color: #ffffff;
}

.at-size-custom {
    width: 82px;
}

.at-size-custom strong {
    font-size: 12px;
}

.at-size-custom span {
    font-size: 9px;
}


.at-packaging-note {
    display: flex;
    align-items: center;
    gap: 13px;
    margin-top: 28px;
    padding: 15px 18px;
    /* border-left: 4px solid #d79222; */
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 7px 22px rgba(30, 70, 40, 0.06);
    border: 1px solid #e2eae3;
}

.at-packaging-note i {
    flex: 0 0 34px;

    width: 34px;
    height: 34px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #277538;
    color: #ffffff;
    font-size: 13px;
}

.at-packaging-note span {
    color: #53645a;
    font-size: 13px;
    line-height: 1.6;
}

.at-packaging-image-wrap {
    position: relative;
    padding: 15px;
}

.at-packaging-image {
    position: relative;
    overflow: hidden;

    min-height: 610px;

    border-radius: 25px;
    background: #ffffff;

    box-shadow:
        0 25px 60px rgba(22, 65, 35, 0.14),
        0 5px 20px rgba(0, 0, 0, 0.05);
}

.at-packaging-image::after {
    content: "";
    position: absolute;
    inset: 0;

    border: 1px solid rgba(39, 117, 56, 0.12);
    border-radius: 25px;

    pointer-events: none;
}

.at-packaging-image img {
    width: 100%;
    height: 640px;
    display: block;
    object-fit: contain;
    object-position: center;
    transition: transform 0.6s ease;
}

.at-packaging-image:hover img {
    transform: scale(1.035);
}

.at-packaging-image-badge {
    position: absolute;
    left: -5px;
    bottom: 45px;

    display: flex;
    align-items: center;
    gap: 12px;

    padding: 13px 20px;

    background: #ffffff;
    border-radius: 12px;

    box-shadow: 0 15px 35px rgba(20, 60, 30, 0.15);
}

.at-packaging-image-badge > i {
    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #277538;
    color: #ffffff;
}

.at-packaging-image-badge strong {
    display: block;
    color: #173d29;
    font-size: 14px;
}

.at-packaging-image-badge span {
    display: block;
    margin-top: 2px;
    color: #77837b;
    font-size: 11px;
}


@media (max-width: 991px) {

    .at-packaging-section {
        padding: 70px 0;
    }

    .at-packaging-heading h2 {
        font-size: 36px;
    }

    .at-packaging-content {
        padding-right: 0;
    }

    .at-packaging-image-wrap {
        margin-top: 15px;
    }

    .at-packaging-image {
        min-height: 550px;
    }

    .at-packaging-image img {
        height: 550px;
    }

}


@media (max-width: 575px) {

    .at-packaging-section {
        padding: 55px 0;
    }

    .at-packaging-heading {
        margin-bottom: 35px;
    }

    .at-packaging-heading h2 {
        font-size: 29px;
    }

    .at-packaging-heading p {
        font-size: 14px;
    }

    .at-packaging-content > h3 {
        font-size: 24px;
    }

    .at-packaging-item {
        padding: 14px;
    }

    .at-packaging-icon {
        flex: 0 0 43px;
        width: 43px;
        height: 43px;
    }

    .at-packaging-item h4 {
        font-size: 15px;
    }

    .at-packaging-item p {
        font-size: 13px;
    }

    .at-packaging-image {
        min-height: 470px;
        border-radius: 18px;
    }

    .at-packaging-image img {
        height: 470px;
    }

    .at-packaging-image-badge {
        left: 5px;
        bottom: 25px;
        padding: 10px 14px;
    }

    .at-size-list {
        gap: 8px;
    }

}

/*--------------------------------------------------------end--------------------------------------------*/

.hero-style9 .hero-subtitle{
    font-size:18px;
}


/*------------------------------------------------avns services------------------------------------------*/
.avns-services-section {
    position: relative;
    padding: 80px 0;
    overflow: hidden;
    background-image: url('../img/bg/fruit-bg.png');
    /* background-color: #1a5632; */
}

.avns-services-section::before {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    left: -180px;
    top: 180px;
    background: rgba(110, 180, 90, 0.08);
    border-radius: 50%;
    filter: blur(40px);
    pointer-events: none;
}

.avns-services-section::after {
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    right: -180px;
    bottom: 50px;
    background: rgba(210, 170, 50, 0.07);
    border-radius: 50%;
    filter: blur(40px);
    pointer-events: none;
}


.avns-services-heading {
    position: relative;
    z-index: 2;
    max-width: 850px;
    margin: 0 auto 55px;
}

.avns-section-subtitle {
    display: inline-block;
    margin-bottom: 12px;
    color: #1a5632;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.avns-section-title {
    margin: 0 0 15px;
    color: #1a5632;
    font-size: 42px;
    line-height: 1.15;
    font-weight: 700;
}

.avns-section-title span {
    color: #1a5632;
}

.avns-section-description {
    max-width: 720px;
    margin: 0 auto;
    color: #68746d;
    font-size: 16px;
    line-height: 1.8;
}


.avns-service-card {
    position: relative;
    height: 100%;
    overflow: hidden;
    padding: 10px;
    background: rgb(255 255 255);
    border: rgba(255, 255, 255, 0.4);
    box-shadow: 0px 10px 60px 0px rgba(68, 68, 68, 0.17);
    transition: all 0.4s ease;
    border-radius: 14px;
}

.avns-service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 22px 55px rgba(26, 48, 68, 0.14);
}


.avns-service-image {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
    background: #f3f6f4;
    border-radius: 10px;
}

/*.avns-service-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0) 60%,
        rgba(0, 0, 0, 0.08) 100%
    );
    pointer-events: none;
}*/

.avns-service-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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


.avns-service-content {
    padding: 16px 12px 16px;
    text-align: left;
}

.avns-service-content h3 {
    margin: 0 0 12px;
    color: #1a5632;
    font-size: 24px;
    line-height: 1.3;
    font-weight: 600;
}

.avns-service-content p {
    min-height: 55px;
    margin: 0 0 16px;
    color: #68746d;
    font-size: 15px;
    line-height: 26px;
}


.avns-service-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-width: 128px;
    padding: 8px 14px;
    color: #1a5632 !important;
    background: #d8e45a;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none !important;
    transition: all 0.35s ease;
    border-radius: 30px;
    border: 1px solid #1A5632;
    box-shadow: 2px 2px 0 0 #1A5632;
}

.avns-service-btn i {
    font-size: 13px;
    transition: transform 0.3s ease;
}

.avns-service-btn:hover {
    color: #ffffff !important;
    background: #5c9d48;
}

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


@media (max-width: 991px) {

    .avns-services-section {
        padding: 80px 0;
    }

    .avns-section-title {
        font-size: 40px;
    }

    .avns-service-image {
        height: 250px;
    }

}


@media (max-width: 767px) {

    .avns-services-section {
        padding: 65px 0;
    }

    .avns-services-heading {
        margin-bottom: 40px;
    }

    .avns-section-subtitle {
        font-size: 14px;
    }

    .avns-section-title {
        font-size: 32px;
    }

    .avns-section-description {
        font-size: 14px;
        line-height: 1.7;
    }

    .avns-service-card {
        padding: 20px;
    }

    .avns-service-image {
        height: 230px;
    }

    .avns-service-content {
        padding-top: 23px;
    }

    .avns-service-content h3 {
        font-size: 22px;
    }

    .avns-service-content p {
        min-height: auto;
        font-size: 14px;
        line-height: 1.7;
    }

}


@media (max-width: 575px) {

    .avns-services-section {
        padding: 40px 0;
    }

    .avns-section-title {
        font-size: 29px;
    }

    .avns-service-image {
        height: 215px;
    }

    .avns-service-card {
        padding: 16px;
    }

}

/*---------------------------------------------------------end--------------------------------------------*/

/*-----------------------------------------------------why avns--------------------------------------------*/
.avns-why-section {
    position: relative;
    padding: 80px 0px 0px;
    overflow: hidden;
    background: #fff;
}



.avns-why-image-wrap {
    position: relative;
    padding: 0 35px 0px 0;
}

.avns-why-image {
    position: relative;
    width: 100%;
    height: auto;
    overflow: hidden;
    border-radius: 18px;
    background: #e9f0e8;
}

/*.avns-why-image::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0) 55%,
        rgba(12, 38, 27, 0.20) 100%
    );
    pointer-events: none;
}*/

.avns-why-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.avns-why-image-wrap:hover .avns-why-image img {
    transform: scale(1.05);
}


/*.avns-why-image-wrap::after {
    content: "";
    position: absolute;
    right: 14px;
    bottom: 14px;
    width: 220px;
    height: 280px;
    background: #b2bd8e;
    border-radius: 4px;
    z-index: 0;
}*/

.avns-why-image {
    position: relative;
    z-index: 2;
}


.avns-why-badge {
    position: absolute;
    left: 25px;
    bottom: 10px;
    z-index: 5;

    display: flex;
    align-items: center;
    gap: 14px;

    min-width: 245px;
    padding: 18px 22px;

    background: #ffffff;
    box-shadow: 0 12px 35px rgba(20, 45, 32, 0.14);
    border-radius: 4px;
}

.avns-badge-icon {
    width: 50px;
    height: 50px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    color: #ffffff;
    background: #c79a20;
    border-radius: 50%;

    font-size: 19px;
}

.avns-why-badge strong {
    display: block;
    margin-bottom: 3px;

    color: #173b2a;
    font-size: 16px;
    font-weight: 700;
}

.avns-why-badge small {
    display: block;

    color: #78887e;
    font-size: 12px;
}

.avns-why-content {
    padding-left: 35px;
}

.avns-why-subtitle {
    position: relative;

    display: inline-flex;
    align-items: center;
    gap: 10px;

    margin-bottom: 14px;

    color: #c79a20;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}



.avns-why-title {
    max-width: 620px;
    margin: 0 0 15px;
    color: #202901;
    font-size: 40px;
    line-height: 1.18;
    font-weight: 700;
}

.avns-why-title span {
    color: #202901;
}


.avns-why-intro {
    max-width: 650px;
    margin: 0px 0 20px;
    color: #333;
    font-size: 16px;
    line-height: 1.85;
}



.avns-why-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e3e9e4;
}

.avns-why-item:last-of-type {
    margin-bottom: 0;
}


.avns-why-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 52px;
    color: #ffffff;
    background: #8d9e59;
    border-radius: 50%;
    font-size: 18px;
    transition: all 0.35s ease;
}

.avns-why-item:hover .avns-why-icon {
    color: #ffffff;
    background: #c79a20;
    transform: translateY(-3px);
}


.avns-why-item-content h3 {
    margin: 0 0 5px;

    color: #183c2c;
    font-size: 19px;
    line-height: 1.4;
    font-weight: 700;
}

.avns-why-item-content p {
    max-width: 550px;
    margin: 0;

    color: #77857c;
    font-size: 14px;
    line-height: 1.7;
}


.avns-why-btn-wrap {
    margin-top: 30px;
}

.avns-why-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;

    padding: 15px 27px;

    color: #ffffff !important;
    background: #c79a20;

    font-size: 14px;
    font-weight: 700;
    text-decoration: none !important;

    transition: all 0.35s ease;
}

.avns-why-btn i {
    transition: transform 0.3s ease;
}

.avns-why-btn:hover {
    color: #ffffff !important;
    background: #6b9f50;
}

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

@media (max-width: 1199px) {

    .avns-why-section {
        padding: 85px 0;
    }

    .avns-why-image {
        height: 520px;
    }

    .avns-why-content {
        padding-left: 15px;
    }

    .avns-why-title {
        font-size: 40px;
    }

}


@media (max-width: 991px) {

    .avns-why-section {
        padding: 75px 0;
    }

    .avns-why-image-wrap {
        max-width: 700px;
        margin: 0 auto;
    }

    .avns-why-image {
        height: 500px;
    }

    .avns-why-content {
        padding-left: 0;
    }

    .avns-why-title {
        font-size: 38px;
    }

}



@media (max-width: 767px) {

    .avns-why-section {
        padding: 40px 0;
    }

    .avns-why-image-wrap {
        padding: 0 18px 20px 0;
    }

    .avns-why-image {
        height: 400px;
    }

    .avns-why-image-wrap::after {
        width: 150px;
        height: 150px;
    }

    .avns-why-badge {
        left: 15px;
        bottom: 0;
        min-width: 220px;
        padding: 14px 16px;
    }

    .avns-badge-icon {
        width: 44px;
        height: 44px;
    }

    .avns-why-title {
        font-size: 32px;
    }

    .avns-why-intro {
        font-size: 14px;
    }

    .avns-why-item {
        gap: 14px;
        margin-bottom: 18px;
        padding-bottom: 18px;
    }

}

@media (max-width: 575px) {

    .avns-why-image {
        height: 350px;
    }

    .avns-why-title {
        font-size: 29px;
    }

    .avns-why-icon {
        width: 45px;
        height: 45px;
        flex-basis: 45px;
        font-size: 16px;
    }

    .avns-why-item-content h3 {
        font-size: 17px;
    }

    .avns-why-item-content p {
        font-size: 13px;
    }

}

/*----------------------------------------------------------end---------------------------------------------*/


.custom-nav {
    position: absolute !important;
    top: auto !important;
    bottom: 50px !important;
    width: 48px !important;
    height: 48px !important;
    margin: 0 !important;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    color: #ffffff !important;
    z-index: 20;
}

.swiper-button-prev.custom-nav,
.swiper-button-next.custom-nav {
    top: 50% !important;
}

.swiper-button-prev.custom-nav {
    left: auto !important;
    right: 88px !important;
}

.swiper-button-next.custom-nav {
    left: auto !important;
    right: 30px !important;
}

.custom-nav::after {
    font-size: 16px !important;
    font-weight: 700;
}

.custom-nav:hover {
    /* background: #ffffff; */
    color: #173b2a !important;
    border-color: #ffffff;
}


@media (max-width: 767px) {

    .custom-nav {
        width: 42px !important;
        height: 42px !important;
        bottom: 20px !important;
    }

    .swiper-button-prev.custom-nav {
        right: 70px !important;
    }

    .swiper-button-next.custom-nav {
        right: 20px !important;
    }

    .custom-nav::after {
        font-size: 14px !important;
    }
    .faq-section {
    padding: 40px 0px !important;

}
    .top-header::before {
    width: 50% !important;

}
}

@media (max-width: 991px){
       .top-header::before {
    width: 50% !important;

}
}




.top-header::before {
    position: absolute;
    width: 900px;
    height: 100%;
    top: 0;
    left: 0;
    content: "";
    background: #175036;
    z-index: -1;
    clip-path: polygon(0 0, 100% 0, 95% 100%, 0 100%);
}




.certification-img {
    position: relative;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    text-align: center;
    border-radius: 14px;
}

.certification-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    margin: 0 auto;
    border-radius: 14px;
}

@media (max-width: 991px) {
    .certification-img {
        max-width: 420px;
        margin-top: 40px;
    }

    .certification-img img {
        height: 500px;
    }
}


@media (max-width: 575px) {
    .certification-img {
        max-width: 100%;
    }

    .certification-img img {
        height: auto;
        max-height: 450px;
    }
}


@media (max-width: 767px){
  .gallery-card .box-img img {
    height: auto;

}
}


.aboutus{
    height:550px;
    width:550px;
    border-radius:50%;
    overflow:hidden;
    margin: 0 auto;
}


.golu-product-swiper {
    position: relative;
    padding: 10px 5px 70px;
}

.golu-product-swiper .swiper-slide {
    height: auto;
}

.golu-product-prev,
.golu-product-next {
    width: 48px;
    height: 48px;
    background: #ff9707;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: absolute;
    bottom: 0;
    z-index: 10;
    transition: all 0.3s ease;
}

.golu-product-prev {
    left: calc(50% - 55px);
}

.golu-product-next {
    right: calc(50% - 55px);
}

.golu-product-prev:hover,
.golu-product-next:hover {
    transform: translateY(-4px);
}

.golu-product-swiper .swiper-slide {
    display: flex;
}

.golu-product-swiper .avns-service-card {
    width: 100%;
}







.russell-about-stats {
    height: auto;
    position: relative;
    padding: 50px 0px 100px;
    background-color: #ffffff;
    background-image: url('../img/about/left-ship.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    /* overflow: hidden; */
    width: 100%;
    margin: 0px 0px 0px;
}

.russell-about-row {
    min-height: 520px;
    justify-content: flex-end;
}


.russell-about-content {
    padding-right: 45px;
}


.russell-about-content h2 {
    margin: 0 0 28px;
    font-size: 40px;
    line-height: 1.28;
    font-weight: 700;
    color: #152433;
}


.russell-about-content h2 span {
    display: block;
}


.russell-about-content p {
    margin: 0 0 20px;
    font-size: 15px;
    line-height: 1.65;
    color: #263345;
}


.russell-about-btn {
    display: inline-flex;
    align-items: center;
    gap: 18px;

    margin-top: 10px;
    padding: 17px 24px;

    background: #ff7a18;
    color: #ffffff;

    text-decoration: none;

    font-size: 16px;
    font-weight: 600;

    border-radius: 5px;

    transition: all 0.35s ease;
}


.russell-about-btn i {
    font-size: 15px;
    transition: transform 0.35s ease;
}


.russell-about-btn:hover {
    background: #173d4d;
    color: #ffffff;
}


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

.russell-stat-column {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.russell-stat-right {
    padding-top: 80px;
}

.russell-stat-card {
    position: relative;
    min-height: 220px;
    padding: 30px;
    background: #ffffff;
    border-radius: 12px;
    /* box-shadow: 0 10px 30px rgb(20 35 50 / 10%); */
    overflow: hidden;
    transition: transform 0.35s ease,
                box-shadow 0.35s ease;
    border: 1px solid #d0d0ce;
}


.russell-stat-card:hover {
    transform: translateY(-8px);

    box-shadow:
        0 20px 45px rgba(20, 35, 50, 0.14);
}

.russell-stat-card::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: 0;

    width: 100%;
    height: 7px;
}


.russell-stat-red::after {
    /* background: #f15b5b; */
}

.russell-stat-yellow::after {
    /* background: #e8a126; */
}

.russell-stat-orange::after {
    /* background: #ff9d16; */
}

.russell-stat-coral::after {
    /* background: #f16652; */
}


.russell-stat-label {
    display: block;
    margin-bottom: 15px;
    font-size: 16px;
    font-weight: 500;
    color: #1f1f1f;
}


.russell-stat-yellow .russell-stat-label {
    color: #1f1f1f;
}

.russell-stat-orange .russell-stat-label {
    color: #1f1f1f;
}

.russell-stat-coral .russell-stat-label {
    color: #1f1f1f;
}

.russell-stat-card h3 {
    margin: 0 0 20px;
    font-size: 48px;
    line-height: 1;
    font-weight: 700;
    color: #1a5632;
    display: flex;
    align-items: center;
}


.russell-stat-card h3 span {
    font-size: 58px;
    /* font-weight: 400; */
    margin-right: 5px;
}


.russell-stat-card p {
    margin: 0;
    font-size: 15px;
    line-height: 1.55;
    color: #68746d;
}


@media (max-width: 1199px) {

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

    .russell-about-content {
        padding-right: 20px;
    }

    .russell-stat-card {
        padding: 25px;
    }

}

@media (max-width: 991px) {

    .russell-about-stats {
        padding: 70px 0;
    }

    .russell-about-content {
        padding-right: 0;
        margin-bottom: 50px;
    }

    .russell-stat-right {
        padding-top: 0;
    }

    .russell-stat-column {
        margin-bottom: 30px;
    }

}


@media (max-width: 575px) {

    .russell-about-stats {
        padding: 55px 0;
    }

    .russell-about-content h2 {
        font-size: 30px;
        line-height: 1.3;
    }

    .russell-about-content p {
        font-size: 15px;
    }

    .russell-stat-card {
        min-height: auto;
        padding: 25px 20px;
    }

    .russell-stat-card h3 {
        font-size: 42px;
    }

    .russell-stat-right {
        padding-top: 0;
    }

}












.golu-main-banner {
    position: relative;
    width: 100%;
    min-height: 700px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-image: url('../img/about/main-banner.png');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}


/* Left Side Light Overlay */

.golu-banner-overlay {
    position: absolute;
    inset: 0;

    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0.96) 0%,
        rgba(255, 255, 255, 0.88) 28%,
        rgba(255, 255, 255, 0.45) 45%,
        rgba(255, 255, 255, 0) 65%
    );

    z-index: 1;
}


.golu-main-banner .container {
    position: relative;
    z-index: 2;
}


.golu-banner-content {
    max-width: 600px;
}


/* Subtitle */

.golu-banner-subtitle {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    margin-bottom: 18px;

    padding: 10px 18px;

    border-radius: 50px;

    background: rgba(255, 255, 255, 0.75);

    color: #1a5632;

    font-size: 14px;
    font-weight: 700;

    text-transform: uppercase;
    letter-spacing: 1px;

    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}


.golu-banner-subtitle i {
    color: #f28c28;
}


/* Main Heading */

.golu-banner-title {
    margin-bottom: 20px;

    font-size: 68px;
    line-height: 1.08;

    font-weight: 800;

    color: #163d27;
}


.golu-banner-title span {
    display: block;

    color: #f28c28;
}


/* Description */

.golu-banner-text {
    max-width: 550px;

    margin-bottom: 30px;

    font-size: 18px;
    line-height: 1.7;

    color: #374151;
}


/* Buttons */

.golu-banner-buttons {
    display: flex;
    align-items: center;

    gap: 15px;

    flex-wrap: wrap;

    margin-bottom: 35px;
}


.golu-banner-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 10px;

    padding: 15px 28px;

    border-radius: 8px;

    font-size: 15px;
    font-weight: 700;

    text-decoration: none;

    transition: all 0.35s ease;
}


.golu-btn-primary {
    color: #ffffff;

    background: #1a5632;

    box-shadow: 0 12px 25px rgba(26, 86, 50, 0.25);
}


.golu-btn-primary:hover {
    color: #ffffff;

    background: #f28c28;

    transform: translateY(-3px);
}


.golu-btn-outline {
    color: #163d27;

    border: 2px solid #1a5632;

    background: rgba(255, 255, 255, 0.75);
}


.golu-btn-outline:hover {
    color: #ffffff;

    background: #1a5632;

    transform: translateY(-3px);
}


/* Features */

.golu-banner-features {
    display: flex;

    align-items: center;

    gap: 30px;

    flex-wrap: wrap;
}


.golu-banner-feature {
    display: flex;

    align-items: center;

    gap: 12px;
}


.golu-feature-icon {
    width: 52px;
    height: 52px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #ffffff;

    color: #1a5632;

    font-size: 20px;

    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}


.golu-banner-feature strong {
    display: block;

    font-size: 15px;

    color: #163d27;
}


.golu-banner-feature span {
    display: block;

    margin-top: 3px;

    font-size: 13px;

    color: #6b7280;
}


/* ==========================================
   RESPONSIVE
========================================== */

@media (max-width: 1399px) {

    .golu-main-banner {
        min-height: 620px;
    }

    .golu-banner-title {
        font-size: 58px;
    }

}


@media (max-width: 991px) {

    .golu-main-banner {
        min-height: 600px;

        background-position: 62% center;
    }

    .golu-banner-overlay {
        background: linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.94) 0%,
            rgba(255, 255, 255, 0.78) 55%,
            rgba(255, 255, 255, 0.25) 100%
        );
    }

    .golu-banner-title {
        font-size: 48px;
    }

}


@media (max-width: 767px) {

    .golu-main-banner {
        min-height: 650px;

        padding: 80px 0 50px;

        background-position: 70% center;
    }

    .golu-banner-overlay {
        background: rgba(255, 255, 255, 0.78);
    }

    .golu-banner-title {
        font-size: 40px;
    }

    .golu-banner-text {
        font-size: 16px;
    }

}


@media (max-width: 575px) {

    .golu-main-banner {
        min-height: 600px;

        padding: 70px 0 40px;
    }

    .golu-banner-title {
        font-size: 32px;
    }

    .golu-banner-subtitle {
        font-size: 11px;

        padding: 8px 13px;
    }

    .golu-banner-btn {
        width: 100%;
    }

    .golu-banner-features {
        gap: 15px;
    }

}










.golu-why-choose-section {
    position: relative;
    padding: 30px 0px 80px;
    overflow: hidden;
    background: #fff;
    background-image: url(../img/bg/fruit-bg.png);
}

.golu-why-shape {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}


/*.golu-why-shape-one {
    width: 450px;
    height: 450px;
    top: -250px;
    left: -180px;
    background: rgba(26, 86, 50, 0.08);
}


.golu-why-shape-two {
    width: 350px;
    height: 350px;
    right: -150px;
    bottom: -180px;
    background: rgba(242, 140, 40, 0.08);
}*/


.golu-why-choose-section .container {
    position: relative;
    z-index: 2;
}

.golu-why-subtitle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 15px;
    color: #1a5632;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1.5px;
}


.golu-why-subtitle i {
    color: #f28c28;
}

.golu-why-title {
    max-width: 600px;
    margin-bottom: 22px;
    color: #1a5632;
    font-size: 40px;
    font-weight: 800;
    line-height: 1.18;
}


.golu-why-title span {
    display: block;
    color: #1a5632;
}

.golu-why-description {
    max-width: 570px;

    margin-bottom: 28px;

    color: #64706a;

    font-size: 16px;
    line-height: 1.8;
}

.golu-why-list {
    margin-bottom: 30px;
}


.golu-why-list-item {
    display: flex;
    align-items: center;

    gap: 12px;

    margin-bottom: 14px;

    color: #254632;

    font-size: 16px;
    font-weight: 600;
}


.golu-why-check {
    min-width: 28px;
    width: 28px;
    height: 28px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #1a5632;

    color: #ffffff;

    font-size: 12px;
}

.golu-why-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 13px 28px;
    border-radius: 40px;
    background: #d8e45a;
    color: #1a5632;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.35s ease;
    border: 1px solid #1A5632;
    box-shadow: 2px 2px 0 0 #1A5632;
}


.golu-why-btn:hover {
    background: #439665;
    color: #ffffff;
    transform: translateY(-3px);
}

.golu-why-card {
    position: relative;
    height: 100%;
    padding: 35px 28px;
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid rgba(26, 86, 50, 0.08);
    box-shadow: 0 15px 40px rgba(20, 60, 35, 0.08);
    transition: all 0.4s ease;
}


.golu-why-card:hover {
    transform: translateY(-8px);

    box-shadow: 0 20px 45px rgba(20, 60, 35, 0.15);
}

.golu-why-card-down {
    margin-top: 45px;
}

.golu-why-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    border-radius: 50%;
    background: linear-gradient(
        135deg,
        #1a5632,
        #2f8a55
    );
    color: #ffffff;
    font-size: 28px;
    transition: all 0.4s ease;
}


.golu-why-card:hover .golu-why-icon {
    background: linear-gradient(
        135deg,
        #f28c28,
        #ffad45
    );

}

.golu-why-card h4 {
    margin-bottom: 12px;

    color: #163d27;

    font-size: 21px;
    font-weight: 700;
}


.golu-why-card p {
    margin-bottom: 0;

    color: #68746d;

    font-size: 15px;
    line-height: 1.7;
}


@media (max-width: 1199px) {

    .golu-why-title {
        font-size: 42px;
    }

}


@media (max-width: 991px) {

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

    .golu-why-content {
        margin-bottom: 30px;
    }

    .golu-why-card-down {
        margin-top: 0;
    }

}


@media (max-width: 767px) {

    .golu-why-title {
        font-size: 36px;
    }

    .golu-why-card {
        padding: 30px 22px;
    }

}


@media (max-width: 575px) {

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

    .golu-why-title {
        font-size: 27px;
        line-height: 38px;
    }

    .golu-why-description {
        font-size: 15px;
    }

    .golu-why-list-item {
        align-items: flex-start;
        font-size: 14px;
    }

}









.golu-vmv-section {
    position: relative;
    padding: 80px 0;
    overflow: hidden;
    background: #fff;
}




.golu-vmv-section .container {
    position: relative;
    z-index: 2;
}


.golu-vmv-heading {
    margin-bottom: 55px;
}


.golu-vmv-subtitle {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    margin-bottom: 14px;

    color: #1a5632;

    font-size: 14px;
    font-weight: 700;

    letter-spacing: 1.5px;
}


.golu-vmv-subtitle i {
    color: #f28c28;
}


.golu-vmv-heading h2 {
    margin-bottom: 18px;
    color: #1a5632;
    font-size: 40px;
    font-weight: 800;
    line-height: 1.2;
}


.golu-vmv-heading h2 span {
    color: #1a5632;
}

.golu-vmv-heading p {
    max-width: 650px;

    margin: 0 auto;

    color: #6b756f;

    font-size: 16px;
    line-height: 1.8;
}


.golu-vmv-card {
    position: relative;

    height: 100%;

    padding: 45px 35px 38px;

    background: #ffffff;

    border-radius: 20px;

    overflow: hidden;

    border: 1px solid rgba(26, 86, 50, 0.08);

    box-shadow: 0 15px 45px rgba(20, 60, 35, 0.08);

    transition: all 0.4s ease;
}



.golu-vmv-card:hover::before {
    height: 8px;

    background: #f28c28;
}

.golu-vmv-number {
    position: absolute;

    top: 25px;
    right: 28px;

    font-size: 52px;
    font-weight: 800;

    line-height: 1;

    color: rgba(26, 86, 50, 0.06);
}


.golu-vmv-icon {
    width: 75px;
    height: 75px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    border-radius: 20px;
    background: linear-gradient(
        135deg,
        #1a5632,
        #2f8a55
    );
    color: #ffffff;
    font-size: 30px;
    /* box-shadow: 0 12px 25px rgba(26, 86, 50, 0.2); */
    transition: all 0.4s ease;
}


.golu-vmv-card:hover .golu-vmv-icon {
    background: linear-gradient(
        135deg,
        #f28c28,
        #ffad45
    );

}


.golu-vmv-card h3 {
    margin-bottom: 16px;

    color: #163d27;

    font-size: 26px;
    font-weight: 700;
}


.golu-vmv-card p {
    margin-bottom: 25px;

    color: #69766f;

    font-size: 15px;

    line-height: 1.8;
}


.golu-vmv-line {
    width: 55px;
    height: 3px;

    margin-bottom: 18px;

    border-radius: 10px;

    background: #f28c28;

    transition: all 0.4s ease;
}


.golu-vmv-card:hover .golu-vmv-line {
    width: 100px;

    background: #1a5632;
}


.golu-vmv-tag {
    display: inline-block;

    padding: 7px 15px;

    border-radius: 50px;

    background: #f1f7f2;

    color: #1a5632;

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 0.5px;

    text-transform: uppercase;
}




@media (max-width: 1199px) {

    .golu-vmv-heading h2 {
        font-size: 42px;
    }

    .golu-vmv-card {
        padding: 40px 28px 35px;
    }

}


@media (max-width: 991px) {

    .golu-vmv-section {
        padding: 80px 0;
    }

    .golu-vmv-heading {
        margin-bottom: 40px;
    }

}


@media (max-width: 767px) {

    .golu-vmv-heading h2 {
        font-size: 36px;
    }

    .golu-vmv-card {
        padding: 35px 25px 30px;
    }

}


@media (max-width: 575px) {

    .golu-vmv-section {
        padding: 65px 0;
    }

    .golu-vmv-heading h2 {
        font-size: 30px;
    }

    .golu-vmv-heading p {
        font-size: 15px;
    }

    .golu-vmv-icon {
        width: 65px;
        height: 65px;

        font-size: 26px;
    }

    .golu-vmv-card h3 {
        font-size: 23px;
    }

}






.footer-wrapper {
    position: relative;
    overflow: hidden;
    background-image: url('../img/about/main-banner.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.footer-wrapper::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgb(26 82 56 / 95%);
    z-index: 0;
}

.footer-wrapper > * {
    position: relative;
    z-index: 1;
}

@media (max-width: 767px){
    .swiper-button-prev.custom-nav, .swiper-button-next.custom-nav {
    top: 85% !important;
}
    .aboutus {
     height: 300px;
     width: 300px;
     margin: 0 auto;
}
    .mvv-section {
    padding: 40px 0px 0px;
}
}



.choose-ection{
    margin:80px 0px 0px;
    padding:0px 0px 100px;
}

.contact-heading{
    font-size:32px;
}



/*-------------------------------------------------products-----------------------------------------------*/
.avns-products-section {
    position: relative;
    padding: 80px 0px 0px;
    background: #fff;
    overflow: hidden;
}


.avns-products-section .container {
    position: relative;
    z-index: 2;
}


.avns-section-heading {
    margin-bottom: 65px;
}


.avns-subtitle {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    padding: 9px 20px;

    background: #e5f2e7;
    color: #2e7137;

    border-radius: 50px;

    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;

    margin-bottom: 18px;
}


.avns-subtitle i {
    color: #4c9b54;
}


.avns-section-heading h2 {
    font-size: 42px;
    line-height: 1.2;
    font-weight: 700;
    color: #1a5632;
    margin-bottom: 18px;
}


.avns-section-heading h2 span {
    color: #1a5632;
}


.avns-section-heading p {
    max-width: 700px;

    margin: auto;

    color: #6c756d;

    font-size: 16px;
    line-height: 1.8;
}

.avns-product-card {
    position: relative;
    display: flex;
    height: 100%;
    background: #ffffff;
    border: 1px solid #e7eee7;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 10px 35px rgba(20, 60, 30, 0.06);
    flex-direction: column;
}


.avns-product-card:hover {
    transform: translateY(-8px);

    box-shadow: 0 25px 55px rgba(20, 60, 30, 0.14);

    border-color: rgba(61, 139, 70, 0.35);
}

.avns-product-image {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
    background: #edf4ed;
}


.avns-product-image::after {
    content: "";

    position: absolute;

    inset: 0;

    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0) 40%,
        rgba(20, 50, 25, 0.15) 100%
    );

    pointer-events: none;
}


.avns-product-image img {
    width: 100%;
    height: 100%;
    /* min-height: 100%; */
    object-fit: cover;
    transition: transform 0.6s ease;
}


.avns-product-number {
    position: absolute;

    top: 18px;
    left: 18px;

    z-index: 3;

    width: 48px;
    height: 48px;

    display: flex;

    align-items: center;
    justify-content: center;

    background: #2e7137;

    color: #ffffff;

    font-size: 15px;
    font-weight: 700;

    border-radius: 50%;

    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}


.avns-product-content {
    width: 100%;
    padding: 15px 20px;
}


.avns-product-category {
    display: inline-block;
    color: #4b9a54;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    margin-bottom: 6px;
}


.avns-product-content h3 {
    font-size: 25px;
    font-weight: 700;
    line-height: 1.3;
    color: #173c24;
    margin-bottom: 10px;
}


.avns-product-content p {
    color: #6d756e;
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 10px;
}


.avns-spec-list {
    margin-top: 15px;
}


.avns-spec-list div {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    margin-bottom: 6px;
    color: #526057;
    font-size: 13px;
    line-height: 1.5;
}


.avns-spec-list i {
    color: #3d8b46;

    font-size: 12px;

    margin-top: 4px;
}


.avns-info-box {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 5px 0;
    border-bottom: 1px solid #edf1ed;
}


.avns-info-icon {
    width: 40px;
    height: 40px;

    min-width: 40px;

    display: flex;

    align-items: center;
    justify-content: center;

    background: #edf6ee;

    color: #398543;

    border-radius: 10px;

    font-size: 15px;
}


.avns-info-box strong {
    display: block;

    color: #1e4829;

    font-size: 13px;

    margin-bottom: 2px;
}


.avns-info-box span {
    display: block;

    color: #737b74;

    font-size: 12px;

    line-height: 1.4;
}

.avns-supply {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-top: 10px;
    padding: 6px 14px;
    background: #f0f7f1;
    border-radius: 8px;
    color: #4d6353;
    font-size: 12px;
}


.avns-supply i {
    color: #3d8b46;
}


.avns-supply strong {
    color: #287434;

    margin-left: 3px;
}


@media (max-width: 991px) {

    .avns-products-section {
        padding: 80px 0;
    }


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


    .avns-product-card {
        min-height: auto;
    }

}

@media (max-width: 767px) {

    .avns-products-section {
        padding: 40px 0;
    }


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


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


    .avns-section-heading p {
        font-size: 14px;
    }


    .avns-product-card {
        flex-direction: column;
    }


    .avns-product-image {
        width: 100%;

        height: 280px;

        min-height: 280px;
    }


    .avns-product-content {
        width: 100%;

        padding: 25px 22px;
    }


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

}


@media (max-width: 480px) {

    .avns-product-image {
        height: 240px;

        min-height: 240px;
    }


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


    .avns-subtitle {
        font-size: 11px;

        padding: 8px 15px;
    }

}
/*----------------------------------------------------end-------------------------------------------------*/


/*------------------------------------------------------get quote-----------------------------------------*/
/* =========================================
   AVNS QUOTATION SECTION
========================================= */

.avns-quotation-section {
    position: relative;
    padding: 80px 0;
    background: #fff;
    overflow: hidden;
}



.avns-quotation-section .container {
    position: relative;
    z-index: 2;
}

.avns-quotation-heading {
    margin-bottom: 55px;
}


.avns-small-title {
    display: inline-block;
    padding: 8px 20px;
    margin-bottom: 15px;

    background: #e6f1e7;
    color: #2d7138;

    border-radius: 30px;

    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
}


.avns-quotation-heading h2 {
    font-size: 42px;
    font-weight: 700;
    color: #1a5632;
    margin-bottom: 18px;
}


.avns-quotation-heading h2 span {
    color: #1a5632;
}


.avns-quotation-heading p {
    max-width: 700px;
    margin: auto;
    font-size: 15px;
    line-height: 1.8;
    color: #667168;
}


.avns-contact-wrapper {
    display: flex;

    background: #ffffff;

    border-radius: 18px;

    overflow: hidden;

    box-shadow: 0 20px 60px rgba(22, 58, 30, 0.10);

    border: 1px solid #e5ece5;
}



.avns-contact-left {
    width: 43%;

    padding: 50px 45px;

    background:
        linear-gradient(
            135deg,
            #1d5729 0%,
            #2f7438 55%,
            #3d8947 100%
        );

    color: #ffffff;

    position: relative;

    overflow: hidden;
}


.avns-contact-left::before {
    content: "";

    position: absolute;

    width: 250px;
    height: 250px;

    border-radius: 50%;

    border: 1px solid rgba(255,255,255,0.12);

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


.avns-contact-left::after {
    content: "";

    position: absolute;

    width: 180px;
    height: 180px;

    border-radius: 50%;

    background: rgba(255,255,255,0.04);

    bottom: -80px;
    left: -70px;
}


.avns-contact-left > * {
    position: relative;
    z-index: 2;
}

.avns-contact-title {
    margin-bottom: 35px;
}


.avns-contact-title span {
    display: block;

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 2px;

    color: rgba(255,255,255,0.70);

    margin-bottom: 8px;
}


.avns-contact-title h3 {
    font-size: 30px;
    font-weight: 700;
    margin: 0;
    color: #fff;
}

.avns-contact-item {
    display: flex;

    align-items: center;

    gap: 16px;

    margin-bottom: 23px;
}


.avns-contact-icon {
    width: 48px;
    height: 48px;

    min-width: 48px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 12px;

    background: rgba(255,255,255,0.12);

    border: 1px solid rgba(255,255,255,0.15);

    font-size: 17px;
}


.avns-contact-item small {
    display: block;

    font-size: 10px;

    letter-spacing: 1px;

    color: rgba(255,255,255,0.65);

    margin-bottom: 4px;
}


.avns-contact-item strong {
    display: block;

    font-size: 15px;

    font-weight: 500;

    color: #ffffff;
}


.avns-contact-right {
    width: 57%;
    padding: 30px 50px;
    background: #ffffff;
}


.avns-cert-title {
    display: inline-block;

    color: #3c8846;

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 2px;

    margin-bottom: 12px;
}


.avns-right-top h3 {
    font-size: 32px;
    font-weight: 700;
    color: #183d25;
    line-height: 1.35;
    margin-bottom: 16px;
}


.avns-right-top h3 span {
    color: #398544;
}



.avns-certification-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    padding-bottom: 25px;
    border-bottom: 1px solid #e9eeee;
    margin-bottom: 18px;
}


.avns-cert-badge {
    display: inline-flex;

    align-items: center;

    gap: 8px;

    padding: 10px 15px;

    background: #f0f6f0;

    color: #347b3d;

    border-radius: 8px;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 0.5px;
}


.avns-cert-badge i {
    font-size: 15px;
}


.avns-company-details h4 {
    font-size: 24px;
    font-weight: 700;
    color: #1b4228;
    margin-bottom: 8px;
}


.avns-company-details p {
    font-size: 15px;

    line-height: 1.8;

    color: #6b746d;

    margin-bottom: 22px;
}


.avns-location {
    display: flex;

    align-items: flex-start;

    gap: 12px;

    margin-bottom: 20px;
}


.avns-location i {
    width: 42px;
    height: 42px;

    display: flex;

    align-items: center;
    justify-content: center;

    background: #eaf4eb;

    color: #34813e;

    border-radius: 10px;

    font-size: 17px;
}


.avns-location strong {
    display: block;

    color: #1e472a;

    font-size: 15px;

    margin-bottom: 3px;
}


.avns-location span {
    display: block;

    color: #737c75;

    font-size: 13px;

    line-height: 1.5;
}


.avns-country-tag {
    display: inline-flex;

    align-items: center;

    gap: 8px;

    padding: 10px 16px;

    background: #f2f7f2;

    color: #347c3e;

    border-radius: 30px;

    font-size: 12px;

    font-weight: 600;
}


.avns-country-tag i {
    font-size: 15px;
}


@media (max-width: 991px) {

    .avns-quotation-section {
        padding: 80px 0;
    }


    .avns-quotation-heading h2 {
        font-size: 40px;
    }


    .avns-contact-wrapper {
        flex-direction: column;
    }


    .avns-contact-left,
    .avns-contact-right {
        width: 100%;
    }

}


@media (max-width: 767px) {

    .avns-quotation-section {
        padding: 40px 0;
    }


    .avns-quotation-heading {
        margin-bottom: 40px;
    }


    .avns-quotation-heading h2 {
        font-size: 32px;
    }


    .avns-quotation-heading p {
        font-size: 14px;
    }


    .avns-contact-left,
    .avns-contact-right {
        padding: 35px 25px;
    }


    .avns-contact-title h3 {
        font-size: 28px;
    }


    .avns-right-top h3 {
        font-size: 25px;
    }


    .avns-company-details h4 {
        font-size: 21px;
    }


    .avns-certification-list {
        gap: 8px;
    }


    .avns-cert-badge {
        width: 100%;
        justify-content: center;
    }

}


@media (max-width: 480px) {

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


    .avns-contact-item strong {
        font-size: 13px;
        word-break: break-word;
    }


    .avns-contact-icon {
        width: 43px;
        height: 43px;

        min-width: 43px;
    }

}


/*------------------------------------------------------end-----------------------------------------------*/


@media (max-width: 767px){
    .breadcumb-wrapper {
    padding: 180px 0 100px 0;
}
    .mvv-content h3 {
    font-size: 28px;
}
}