* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
@keyframes floatRotate {
    0% {
        transform: rotate(0deg) translate(0, 0);
    }
    50% {
        transform: rotate(5deg) translate(20px, 15px);
    }
    100% {
        transform: rotate(0deg) translate(0, 0);
    }
}

@keyframes floatRotateReverse {
    0% {
        transform: rotate(0deg) translate(0, 0);
    }
    50% {
        transform: rotate(-8deg) translate(-15px, 20px);
    }
    100% {
        transform: rotate(0deg) translate(0, 0);
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(40px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    0% {
        opacity: 0;
        transform: translateX(-50px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    0% {
        opacity: 0;
        transform: translateX(50px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulseGlow {
    0% {
        box-shadow: 0 0 0 0 rgba(241, 211, 59, 0.4);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(241, 211, 59, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(241, 211, 59, 0);
    }
}

@keyframes subtleBounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}

@keyframes rotateBorder {
    0% {
        transform: rotate(45deg);
    }
    100% {
        transform: rotate(405deg);
    }
}

@keyframes shine {
    0% {
        left: -100%;
    }
    100% {
        left: 200%;
    }
}

/* =============================== */
/*           HERO SECTION          */
/* =============================== */
.ana_export_hero {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    min-height: 710px;
    padding: 49px 2%;
    /* background: #f8f8f6; */
    /* overflow: hidden; */
    max-width: 1392px;
}

/* Animated Background Circles */
body:after,body:before {
    content: "";
    position: absolute;
    width: 1017px;
    height: 1018px;
    right: -130px;
    top: -333px;
    left: unset;
    border-radius: 50%;
    background: #dfe7b8;
    z-index: 0;
    animation: floatRotate 5s ease-in-out infinite;
    display: block;
}

body:after {top: -298px;border-radius: 50%;background-color: #c6d755;z-index: 0;animation: floatRotateReverse 10s ease-in-out infinite;right: -321px;}

/* Small Left Circle Animation */
.hero_content::before {
    content: "";
    position: absolute;
    width: 292px;
    height: 292px;
    left: -170px;
    bottom: 54px;
    border-radius: 50%;
    background: #f5ebbc;
    z-index: -2;
    animation: subtleBounce 6s ease-in-out infinite;
}

/* Content Styling & Entrance */
.hero_content {
    width: 48%;
    position: relative;
    z-index: 3;
    animation: fadeInLeft 0.8s cubic-bezier(0.2, 0.9, 0.4, 1.1) forwards;
}

.hero_content h1 {
    font-size: 85px;
    line-height: 71px;
    font-weight: normal;
    margin-bottom: 30px;
    letter-spacing: 0px;
    float: left;
    text-align: left;
    width: 100%;
}

.hero_content h1 a {
    color: #1e1e1e;
    text-decoration: none;
    transition: color 0.3s ease;
    width: 100%;
}

.hero_content h1 a:hover {
    color: #c6d755;
}

.hero_content p {
    max-width: 560px;
    font-size: 22px;
    line-height: 1.3;
    color: #666;
    margin-bottom: 38px;
    text-align: left;
}

/* Hero Button with Ripple & Glow */
.hero_btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 68px;
    padding: 0 38px;
    background: #f1d33b;
    color: #222;
    text-decoration: none;
    border-radius: 18px;
    font-size: 28px;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    box-shadow: 0 10px 25px rgba(241, 211, 59, 0.25);
    float: left;
    position: relative;
    overflow: hidden;
}

.hero_btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 35px rgba(241, 211, 59, 0.4);
    background: #f5df5a;
}

.hero_btn::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    transform: translate(-50%, -50%);
    transition: width 0.5s, height 0.5s;
}

.hero_btn:active::after {
    width: 200px;
    height: 200px;
    opacity: 0;
}

/* Hero Image Entrance */
.hero_image {
    width: 52%;
    position: relative;
    z-index: 3;
    animation: fadeInRight 0.8s cubic-bezier(0.2, 0.9, 0.4, 1.1) 0.1s forwards;
}

.hero_image img {
    width: 99%;
    height: auto;
    display: block;
    transition: transform 0.5s ease, filter 0.3s;
}

.hero_image:hover img {
    transform: scale(1.02) rotate(1deg);
    filter: drop-shadow(0 20px 20px rgba(0, 0, 0, 0.1));
}

/* =============================== */
/*         FRUIT SECTION           */
/* =============================== */
.ana_fruit_section {
    width: 100%;
    position: relative;
}

.fruit_item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 80px;
    opacity: 0;
    animation: fadeInUp 0.7s ease forwards;
    max-width: 1526px;
    margin: auto;
}

.fruit_item:nth-child(1) { animation-delay: 0.1s; }
.fruit_item:nth-child(2) { animation-delay: 0.3s; }
.fruit_item:nth-child(3) { animation-delay: 0.5s; }

.fruit_item:nth-child(even) {
    flex-direction: row-reverse;
}

/* Fruit Image */
.fruit_image {
    width: 50%;
    text-align: center;
    transition: transform 0.4s;
}

.fruit_image img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: auto;
    width: 700px;
    transition: transform 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}

.fruit_item:hover .fruit_image img {
    transform: scale(1.05) rotate(2deg);
}

/* Fruit Box (rotated background) */
.fruit_content {
    width: 50%;
    display: flex;
    justify-content: center;
}

.fruit_box {
    max-width: 434px;
    background: none;
    padding: 40px;
    position: relative;
    z-index: 1;
    transition: transform 0.3s;
}

.fruit_box::after {
    content: " ";
    background: #e4f0cb;
    position: absolute;
    width: 92%;
    height: 90%;
    top: 0;
    left: -2px;
    z-index: -1;
    rotate: 45deg;
    border-radius: 30%;
    transition: all 0.5s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
}

.fruit_box:hover::after {
    rotate: 50deg;
    background: #e7ffbd;
    box-shadow: 0 25px 40px rgba(0, 0, 0, 0.1);
}

.fruit_box h2 {
    font-size: 52px;
    line-height: 43px;
    margin-bottom: 20px;
    font-weight: 700;
    text-align: left;
}

.fruit_box h2 a {
    color: #222;
    text-decoration: none;
    transition: color 0.3s;
}

.fruit_box h2 a:hover {
    color: #62c323;
}

.fruit_box p {
    font-size: 16px;
    line-height: 1.9;
    color: #555;
    margin-bottom: 30px;
    float: left;
    width: 100%;
    text-align: left;
}

/* Fruit Button */
.fruit_btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 52px;
    padding: 0 28px;
    background: #62c323;
    color: #fff;
    text-decoration: none;
    border-radius: 10px;
    font-size: 18px;
    transition: all 0.3s;
    float: left;
    position: relative;
    overflow: hidden;
}

.fruit_btn:hover {
    background: #4ba514;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(98, 195, 35, 0.3);
}

.fruit_btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s;
}

.fruit_btn:hover::before {
    left: 100%;
}

/* =============================== */
/*         PRODUCT SLIDER          */
/* =============================== */
.ana_section {
    width: 100%;
    padding: 47px 0;
    overflow: hidden;
}

.container {
    width: 100%;
    max-width: 1320px;
    margin: auto;
    padding: 0 20px;
}

.ana_products_head {
    margin-bottom: 60px;
}

.ana_products_head h2 {
    font-size: 72px;
    line-height: 1.1;
    color: #1f1f1f;
    font-weight: 700;
    text-align: left;
    transform: translateX(-20px);
    opacity: 0;
    animation: fadeInLeft 0.6s ease forwards;
    text-align: center;
}
.ana_products_head h2:after {content:' ';position: absolute;width: 87px;height: 5px;background: #b8d228;bottom: -19px;left: 50%;transform: translateX(-50%);transition :all 0.3s ease-in-out}
.ana_products_head:hover h2:after{width:150px
                                 }
.product_card {
    text-align: center;
    width: auto;
    text-align: left;
    transition: all 0.3s ease;
    background: rgba(255,255,255,0.6);
    padding: 20px 15px;
    border-radius: 32px;
    backdrop-filter: blur(2px);
}

.product_card:hover {
    transform: translateY(-12px);
    background: white;
    box-shadow: 0 25px 45px rgba(0, 0, 0, 0.08);
}

.product_image {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 180px;
    margin-bottom: 22px;
}

.product_image img {
    max-width: 210px;
    width: 100%;
    height: auto;
    transition: transform 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}

.product_card:hover .product_image img {
    transform: translateY(-12px) scale(1.08) rotate(3deg);
}

.product_card h3 {
    font-size: 22px;
    font-weight: 400;
    text-align: center;
}

.product_card h3 a {
    color: #5b5b5b;
    text-decoration: none;
    transition: color 0.3s;
}

.product_card:hover h3 a {
    color: #62c323;
}

/* Swiper Pagination Animation */
.swiper-pagination {
    position: relative;
    margin-top: 40px;
}

.swiper-pagination-bullet {
    transition: all 0.3s;
    width: 10px;
    height: 10px;
    background: #c6d755;
    opacity: 0.5;
}

.swiper-pagination-bullet-active {
    width: 28px;
    border-radius: 10px;
    opacity: 1;
    background: #f1d33b;
}

/* =============================== */
/*          SERVICES SECTION       */
/* =============================== */
.ana_services {
    background: #eef6de;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.services_head {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 70px;
}

.services_label {
    display: block;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    color: #b5cb2f;
    margin-bottom: 18px;
    text-align: left;
    letter-spacing: 2px;
    animation: fadeInLeft 0.6s;
}

.services_title h2 {
    font-size: 72px;
    line-height: 1.05;
    color: #191919;
    max-width: 520px;
    margin-bottom: 20px;
    text-align: left;
    animation: fadeInUp 0.6s;
}

.title_line {
    width: 60px;
    height: 4px;
    background: #b9ce35;
    transition: width 0.4s;
}

.services_title:hover .title_line {
    width: 120px;
}

.services_desc p {
    max-width: 520px;
    font-size: 22px;
    line-height: 1.8;
    color: #666;
    text-align: left;
    animation: fadeInRight 0.6s;
}

.services_grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.service_card {
    background: #fff;
    border-radius: 34px;
    padding: 36px;
    min-height: 310px;
    transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.03);
    position: relative;
    z-index: 1;
    transform: translateY(0);
}

.service_card:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 45px rgba(0, 0, 0, 0.1);
}

.service_icon {
    width: 72px;
    height: 72px;
    border-radius: 27%;
    background: #f2fad6;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    transition: all 0.4s;
}

.service_card:hover .service_icon {
    border-radius: 50%;
    background: #c6d755;
    transform: rotate(360deg);
}

.service_icon img {
    width: 34px;
    height: 34px;
    object-fit: contain;
    transition: transform 0.3s;
}

.service_card:hover .service_icon img {
    transform: scale(1.1);
}

.service_card h3 {
    font-size: 22px;
    line-height: 1.3;
    margin-bottom: 18px;
    text-align: left;
}

.service_card h3 a {
    color: #202020;
    text-decoration: none;
    transition: color 0.3s;
}

.service_card:hover h3 a {
    color: #62c323;
}

.service_card p {
    font-size: 17px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 28px;
    text-align: left;
}

.service_badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 0 18px;
    border-radius: 999px;
    border: 1px solid #e6e6e6;
    font-size: 14px;
    font-weight: 600;
    color: #666;
    background: #fafafa;
    float: left;
    transition: all 0.3s;
}

.service_card:hover .service_badge {
    background: #f1d33b;
    border-color: #f1d33b;
    color: #222;
    transform: translateX(5px);
}

/* =============================== */
/*          METRICS SECTION        */
/* =============================== */
.ana_metrics {
    padding: 45px 0;
    background: #fafafa;
}

.metrics_head {
    text-align: center;
    margin-bottom: 70px;
}

.metrics_label {
    display: block;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    color: #bdd429;
    margin-bottom: 18px;
    letter-spacing: 3px;
}

.metrics_head h2 {
    font-size: 72px;
    line-height: 1.05;
    color: #121222;
    margin-bottom: 20px;
    animation: fadeInUp 0.6s;
}

.metrics_line {
    width: 75px;
    height: 4px;
    background: #b7cf2d;
    margin: 0 auto 25px;
    transition: width 0.4s;
}

.metrics_head:hover .metrics_line {
    width: 150px;
}

.metrics_head p {
    max-width: 700px;
    margin: auto;
    font-size: 20px;
    line-height: 1.8;
    color: #666;
}

.metrics_grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

.metric_card {
    position: relative;
    background: #f7f7f1;
    padding: 40px 30px;
    border-radius: 30px;
    text-align: center;
    overflow: hidden;
    min-height: 290px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    transform: translateY(0);
}

.metric_card:hover {
    transform: translateY(-10px);
    background: #ffffff;
    box-shadow: 0 30px 50px rgba(0, 0, 0, 0.07);
}

.metric_card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 8px;
    height: 100%;
    background: #b8d228;
    border-radius: 0 20px 20px 0;
    transition: width 0.3s;
}

.metric_card:hover::before {
    width: 12px;
    background: #f1d33b;
}

.metric_icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: #eefdbe;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    transition: all 0.4s;
}

.metric_card:hover .metric_icon {
    background: #f1d33b;
    transform: scale(1.05) rotate(10deg);
}

.metric_icon img {
    width: 34px;
    height: 34px;
    object-fit: contain;
}

.metric_number p {
    font-size: 62px !important;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 5px;
    color: #16314b;
    font-family: 'Times New Roman', Times, serif;
    transition: all 0.3s;
}

.metric_card:hover .metric_number p {
    transform: scale(1.03);
    color: #f1d33b;
    text-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.metric_card h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.metric_card h3 a {
    color: #1b1b1b;
    text-decoration: none;
    transition: color 0.3s;
}

.metric_card:hover h3 a {
    color: #62c323;
}

.metric_card p {
    font-size: 16px;
    color: #666;
    line-height: 1.2;
}

/* =============================== */
/*          RESPONSIVE             */
/* =============================== */
@media (max-width: 1200px) {
    .hero_content h1 {
        font-size: 58px;
    }
}

@media (max-width: 992px) {
    .ana_export_hero {
        flex-direction: column;
        text-align: center;
        min-height: auto;
        padding: 80px 30px 100px;
    }
    .hero_content, .hero_image {
        width: 100%;
    }
    .hero_content p {
        max-width: 100%;
    }
    .hero_content h1 {
        font-size: 48px;
    }
    body::before, body::after {
        width: 670px;
        height: 670px;
    }
    .fruit_item, .fruit_item:nth-child(even) {
        flex-direction: column;
    }
    .fruit_image, .fruit_content {
        width: 100%;
    }
    .fruit_box {
        max-width: 100%;
    }
    .fruit_box h2 {
        font-size: 40px;
    }
    .ana_products_head h2 {
        font-size: 52px;
        text-align: center;
    }
    .product_image img {
        max-width: 145px;
    }
    .services_grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .services_title h2 {
        font-size: 54px;
    }
    .metrics_grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .metrics_head h2 {
        font-size: 52px;
    }
}

@media (max-width: 768px) {
    .services_head {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 50px;
    }
    .services_title h2 {
        font-size: 42px;
    }
    .services_desc p {
        font-size: 18px;
    }
    .services_grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .ana_export_hero {
        gap: 0px;
        padding: 14px 33px 40px;
        flex-direction: column-reverse;
    }
    .hero_content h1 {
        font-size: 39px;
        line-height: 1.05;
    }
    .hero_content p {
        font-size: 17px;
    }
    .hero_btn {
        width: 100%;
        height: 58px;
        font-size: 22px;
    }
    .ana_export_hero::before {
        width: 700px;
        height: 700px;
        right: -300px;
        top: -300px;
    }
    .ana_export_hero::after {
        width: 520px;
        height: 520px;
        right: -180px;
        top: -180px;
    }
    .fruit_item {
        gap: 30px;
        margin-bottom: 50px;
    }
    .fruit_box {
        padding: 28px;
    }
    .fruit_box h2 {
        font-size: 30px;
    }
    .fruit_btn {
        width: 100%;
    }
    .ana_products_head h2 {
        font-size: 38px;
    }
    .product_card h3 {
        font-size: 18px;
    }
    .product_image {
        min-height: 130px;
    }
    .ana_services {
        padding: 70px 0;
    }
    .service_card {
        padding: 28px;
        border-radius: 26px;
        min-height: auto;
    }
    .services_title h2 {
        font-size: 34px;
    }
    .metrics_grid {
        grid-template-columns: 1fr;
    }
    .metrics_head h2 {
        font-size: 38px;
    }
    .metric_card {
        min-height: auto;
        padding: 35px 25px;
    }
    .metric_number p {
        font-size: 54px;
    }
}

/* =============================== */
/*    SCROLL REVEAL SUPPORT        */
/*  (Optional: for JS implementation) */
/* =============================== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}