/* css reset */
/* CSS Reset */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    height: 100%;
    width: 100%;
    font-family: sans-serif;
}

body {
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;

    font-family: "Poppins", Sans-serif
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Fredoka", Sans-serif;
}

img,
picture,
video,
canvas {
    display: block;
    max-width: 100%;
    /* height: auto; */
}

input,
button,
textarea,
select {
    font: inherit;
    border: none;
    outline: none;
    background: none;
}

a {
    color: #157a3d;
    text-decoration: none;
}

ul,
ol {
    list-style: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

/* css reset */
/* disable arrows */
.swiper-button-next,
.swiper-button-prev {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
    height: 0 !important;
    width: 0 !important;
}

/* --- Preloader --- */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

#preloader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loading-container {
    text-align: center;
}

#loading-text {
    font-size: 2rem;
    font-weight: bold;
    color: #333;
}

.loading-bar {
    width: 500px;
    height: 4px;
    background: #eee;
    margin-top: 20px;
    overflow: hidden;
}

.loading-bar-inner {
    height: 100%;
    width: 0%;
    background: #a5e78d;
    transition: width 0.3s ease;
}

/* autoplay progress */
.autoplay-progress {
    position: absolute;
    right: auto;
    left: 0;
    top: 0px;
    width: 100vw;
    height: 4px;
    z-index: 10;
    opacity: 1;
    transition: opacity 0.3s ease;
    --progress: 0;
}

.autoplay-progress svg {
    width: 100%;
    height: 100%;
    display: block;
    overflow: visible;
}

/* track line */
.autoplay-progress svg .progress-track {
    stroke-width: 4;
    stroke: rgba(255, 255, 255, 0.2);
    /* stroke-linecap: round; */
}

.autoplay-progress svg .progress-fill {
    stroke-width: 4;
    stroke: var(--swiper-theme-color, #007aff);
    /* stroke-linecap: round; */
    stroke-dasharray: 100;
    stroke-dashoffset: calc(100 * (1 - var(--progress)));
    transition: stroke-dashoffset 0.1s linear;
}

.section-1 .autoplay-progress {
    bottom: 5px;
    left: 0%;
    width: 100vw;
}

.section-1 .autoplay-progress svg .progress-track {
    stroke: rgba(0, 0, 0, 0.3);
}

.section-1 .autoplay-progress svg .progress-fill {
    stroke: #ffffff;
}

.newContentSliderContainer .autoplay-progress {
    bottom: 0px;
    left: 0%;
    width: 100vw;
}

.section4Swiper .autoplay-progress {
    bottom: 0px;
    left: 0%;
    width: 100vw;
}

.section {
    /* height: 100vh !important; */
    overflow: hidden !important;
}

/* Section one */
/* Arrows */
.section1Swiper .swiper-button-prev,
.section1Swiper .swiper-button-next {
    display: none !important;
}

#custom-arrow-cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0);
    color: white;
    z-index: 10000;
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
    transform: translate(-50%, -50%) scale(0.8);
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: bold;
    border: 1px solid #fff;
}

#custom-arrow-cursor.visible {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
}

#custom-arrow-cursor::before,
#custom-arrow-cursor::after {
    content: '';
    position: absolute;
    opacity: 0;
    transition: opacity 0.2s ease;
}

#custom-arrow-cursor::before {
    content: 'ÃƒÂ°Ã…Â¸Ã‚Â¡Ã‚Â ';
}

#custom-arrow-cursor::after {
    content: 'ÃƒÂ°Ã…Â¸Ã‚Â¡Ã‚Â¢';
}

#custom-arrow-cursor.prev-arrow::before {
    opacity: 1;
}

#custom-arrow-cursor.next-arrow::after {
    opacity: 1;
}

.section1Swiper {
    position: relative;
    width: 100%;
    height: 100%;
}

.section1Swiper .swiper-button-prev:hover,
.section1Swiper .swiper-button-next:hover {
    background-color: rgba(0, 0, 0, 0.5);
}

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

/* --- Section 1: Now contains a Swiper --- */
.section-1 {
    color: #157A3D;
    /* display: none !important; */
    /* height: 100vh !important;
    overflow: hidden; */
}

.section-1-container {
    position: relative;
    width: 100%;
    height: 100%;
}

/* Header */
.main-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    /* background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0)); */
    z-index: 10;
}

.main-header .logo img {
    width: 125px;
    margin: -13px 0;
}

.main-header nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

.main-header nav li {
    margin-left: 0;
    padding: 0 30px;
}

header.main-header nav ul li a {
    text-decoration: none;
    color: #1B1B1B;
    font-size: 19px;
    font-weight: 500;
    font-family: sans-serif;
    position: relative;
}

header.main-header nav ul li a:hover {
    color: #157a3d;
    fill: #1B1B1B;
}

header.main-header nav ul li a:active {
    color: #333;
}

header.main-header nav ul li a:after {
    content: "";
    position: absolute;
    bottom: -9px;
    left: 50%;
    width: 0;
    height: 4px;
    background: #157a3d;
    opacity: 0;
    transform: translateX(-50%);
    transition: width 0.4s ease, opacity 0.4s ease;
}

header.main-header nav ul li a:hover:after {
    width: 100%;
    opacity: 1;
}

.main-header .mobile-menu {
    display: none;
}

/* Section 1 Swiper */
.section1Swiper {
    width: 100%;
    height: 100vh;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 5;
}

.section1Swiper .swiper-slide {
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Content */

/* End Section 1 */
/* --- Second Section --- */
.section-2 {
    padding: 0 !important;
    margin: 0 !important;
    width: 100%;
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.newContentSliderContainer {
    width: 100%;
    height: 100vh;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
}

.contentSwiper {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.contentSwiper .swiper-wrapper {
    display: flex;
    width: 100%;
    height: 100%;
    align-items: center;
    box-sizing: content-box;
}

.contentSwiper .swiper-slide {
    flex-shrink: 0;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.contentSwiper .swiper-slide-active {
    opacity: 1;
}

.contentSwiper .swiper-slide>* {
    max-width: 100%;
}

.content-slide-text {
    flex: 1 1 45%;
    min-width: 280px;
    max-width: 500px;
    text-align: left;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out 0.3s, transform 0.6s ease-out 0.3s;
    color: #1d3557;
    z-index: 2;
}

.swiper-slide-active .content-slide-text {
    opacity: 1;
    transform: translateY(0);
}

.content-slide-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1d3557;
    line-height: 1.2;
}

.content-slide-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    color: #4a4a4a;
}

.content-slide-text .cta-button {
    padding: 14px 32px;
    font-size: 1rem;
    font-weight: 600;
    background-color: #457b9d;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.content-slide-text .cta-button:hover {
    background-color: #1d3557;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.content-slide-image {
    flex: 1 1 40%;
    min-width: 280px;
    max-width: 550px;
    text-align: center;
    position: relative;
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.8s ease-out 0.1s, transform 0.8s ease-out 0.1s;
    z-index: 2;
}

.swiper-slide-active .content-slide-image {
    opacity: 1;
    transform: scale(1);
}

.content-slide-image img {
    max-width: 100%;
    height: auto;
    display: block;
    margin-left: -50px;
    width: 430px;
}

.slide-bg img {
    position: absolute;
    width: 1500px;
    height: 1400px;
    top: -400px;
    left: -350px;
}

.content-slide-text h2 {
    font-size: 115px;
    font-weight: 500;
    font-family: math;
    color: #fff;
    margin: -155px 0 0 70px;
    width: 360px;
}

.drop {
    position: relative;
    box-shadow: inset 20px 20px 20px rgba(0, 0, 0, 0.1),
        25px 35px 20px rgba(0, 0, 0, 0.1), 25px 30px 30px rgba(0, 0, 0, 0.1),
        inset -20px -20px 25px rgba(255, 255, 255, 0.8);
    transition: border-radius 0.5s;
    overflow: hidden !important;
    animation: drop 2s infinite alternate ease-in-out;
    border-radius: 38% 62% 46% 54%;
    width: 450px !important;
    height: 450px !important;
    display: flex !important;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

@keyframes drop {
    from {
        border-radius: 38% 62% 46% 54% / 46% 51% 49% 54%;
    }

    to {
        border-radius: 50%;
    }
}

.drop::before {
    content: "";
    position: absolute;
    top: 50px;
    left: 75px;
    width: 35px;
    height: 35px;
    background: white;
    border-radius: 50%;
    opacity: 0.7;
}

.drop::after {
    content: "";
    position: absolute;
    top: 90px;
    left: 100px;
    width: 15px;
    height: 15px;
    background: white;
    border-radius: 50%;
    opacity: 0.7;
}

.text-bg.drop {
    margin-right: 130px;
}

.text-bg.drop h3 {
    font-size: 55px;
}

.image-content img {
    position: absolute;
}

.image-content img:first-child {
    height: 260px;
    top: 3%;
    right: 15%;
    animation: up-down 3s ease-in-out infinite alternate;
}

.image-content img:nth-child(2) {
    bottom: 7%;
    left: 23%;
    width: 200px;
    animation: up-down 3s ease-in-out infinite alternate;
}

.image-content img:nth-child(3) {
    display: none;
    top: 35%;
    left: 15%;
    width: 200px;
    animation: right-left 3s ease-in-out infinite alternate;
}

.image-content img:nth-child(4) {
    bottom: 10%;
    right: 31%;
    width: 150px;
    animation: up-down 3s ease-in-out infinite alternate;
}

.image-content img:nth-child(5) {
    top: 5%;
    left: 35%;
    width: 100px;
    animation: up-down 3s ease-in-out infinite alternate;
}

.image-content img:nth-child(6) {
    bottom: 20%;
    right: 10%;
    width: 100px;
    transform: rotate(95deg);
    animation: right-left 3s ease-in-out infinite alternate;
}

@keyframes up-down {
    0% {
        transform: translateY(0px) translateX(0);
    }

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

@keyframes right-left {
    0% {
        transform: translateY(0px) translateX(5px);
    }

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

/* Arrows and dots */
.newContentSliderContainer .swiper-button-next,
.newContentSliderContainer .swiper-button-prev {
    color: #ffffff;
    top: auto;
    transform: translateY(-25px);
    width: 77px;
    height: 30px;
    background-color: #000000a3;
    transition: background-color 0.3s ease, box-shadow 0.3s ease, color 0.3s ease;
    z-index: 10;
}

.newContentSliderContainer .swiper-button-next {
    right: 46% !important;
    left: auto !important;
}

.newContentSliderContainer .swiper-button-prev {
    right: auto !important;
    left: 46% !important;
}

.newContentSliderContainer .swiper-button-next::after,
.newContentSliderContainer .swiper-button-prev::after {
    font-size: 22px;
}

.newContentSliderContainer .swiper-button-next:hover,
.newContentSliderContainer .swiper-button-prev:hover {
    background-color: #000000;
    color: #ffffff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
/* --- End Section 2 --- */
/* --- Third Section - Brand Carousel --- */
.fp-tableCell {
    vertical-align: middle;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    height: 100% !important;
}

.section-3.brand-carousel-section {
    background-color: #ffffff;
    color: #1d3557;
    display: flex;
    justify-content: center;
    align-items: center;
    /* padding: 5vh 0; */
    box-sizing: border-box;
    overflow: hidden;
}
.section-3.brand-carousel-section .fp-overflow {
    width: 100%;
}
.brand-carousel-container {
    position: relative;
    padding-left: 50px;
    padding-right: 50px;
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
}

.brand-carousel-container h2 {
    margin-top: -70px;
    margin-bottom: 70px;
}

.brand-grid-items {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    align-items: center;
    justify-content: center;
    width: 74%;
}

.brand-grid-item {
    position: relative;
    max-width: 270px;
    justify-self: anchor-center;
}

.brand-grid-item img:nth-child(1) {
    z-index: 99;
    position: relative;
}

.brand-grid-item img:nth-child(2) {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
    transform-origin: center center;
}

.Fruit-gummies-bg {
    animation: brand-rotate 50s linear infinite;
}

.Fruit-Jammy-bg {
    animation: brand-rotate-reverse 52s linear infinite;
}

.Fruit-Juice-bg {
    animation: brand-rotate 50s linear infinite;
}

.Fruit-Strips-bg {
    animation: brand-rotate-reverse 54s linear infinite;
}

@keyframes brand-rotate {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@keyframes brand-rotate-reverse {
    from {
        transform: translate(-50%, -50%) rotate(360deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(0deg);
    }
}

.brandsSwiper {
    position: relative;
    padding: 70px 20px 40px;
    overflow: hidden;
}

.brand-slide {
    display: flex;
    flex-direction: column;
    gap: 0;
    align-items: center;
}

.brands-title {
    font-size: 45px;
    text-align: center;
    margin: 0 0 10px 0;
}

.brand-slide img {
    width: 250px;
    height: 250px;
    margin-bottom: -110px;
    z-index: 1;
}

.brand-content {
    text-align: center;
    background-color: #fff;
    box-shadow: 0 0 15px 0px #0000001a;
    padding: 120px 30px 40px;
    position: relative;
}

.brand-content .brand-title {
    font-size: 28px;
    margin: 0;
}

.brand-content .brand-text {
    font-size: 17px;
    line-height: 1.4;
    margin: 10px 0 0;
}

.brand-content::before {
    content: "";
    position: absolute;
    width: 350px;
    height: 350px;
    background-image: url(https://avestatheme.com/prebuild/torshtaem/wp-content/uploads/2025/04/Asset-1.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    top: -45%;
    left: 50%;
    transform: translateX(-50%) rotate(-175deg);
    z-index: -1;
}

.brand-slide:nth-child(2) .brand-content::before {
    transform: translateX(-50%) rotate(85deg);
}

.brand-slide:nth-child(3) .brand-content::before {
    transform: translateX(-50%) rotate(-125deg);
}

.brand-slide:nth-child(4) .brand-content::before {
    transform: translateX(-50%) rotate(125deg);
}

/* --- Navigation Buttons --- */
.brandsSwiper .brands-button-prev,
.brandsSwiper .brands-button-next {
    position: absolute;
    background-color: #000000bd !important;
    top: 99% !important;
    transform: translateY(0%);
    height: 30px;
    width: 72px;
    border-radius: 0;
    z-index: 20;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    transition: background-color 0.3s ease, opacity 0.3s ease;
    opacity: 1;
    visibility: visible;
}

.brandsSwiper .brands-button-prev {
    left: 44%;
}

.brandsSwiper .brands-button-next {
    right: 44%;
}

.brandsSwiper .brands-button-prev::after,
.brandsSwiper .brands-button-next::after {
    font-size: 22px;
    font-weight: 400;
    color: #fff;
}

.brandsSwiper .brands-button-prev:hover,
.brandsSwiper .brands-button-next:hover {
    background-color: rgba(0, 0, 0, 0.9);
}

.brandsSwiper .swiper-button-disabled {
    opacity: 0.5 !important;
    cursor: not-allowed;
    pointer-events: none;
    visibility: visible !important;
}
/* --- End Third Section --- */
/* --- Fourth Section - About Slider --- */
.section-4.about-slider-section {
    background-color: #f8f9fa;
    color: #343a40;
    overflow: hidden;
}

.about-slider-container {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    box-sizing: border-box;
}

.section4Swiper {
    width: 100%;
    /*max-width: 1600px;*/
    height: 100vh;
    max-height: 100vh;
    position: relative;
    overflow: visible;
    box-sizing: border-box;
    /*padding-right: 150px;*/
}

.about-slide {
    padding: 0 300px 0 150px;
    box-sizing: border-box;
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
}

.swiper-slide-active.about-slide {
    opacity: 1;
}

.about-slide-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    width: 100%;
    height: 100%;
    /* padding: 0 40px 0 0; */
    box-sizing: border-box;
}

.about-text-content {
    flex: 1 1 55%;
    /*min-width: 300px;*/
    text-align: left;
    z-index: 3;
}

.about-text-content .about-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #157a3d;
    margin-bottom: 0;
    line-height: 1.2;
}

.about-text-content .about-title:nth-child(2) {
    font-size: 2.23rem;
}

.about-description {
    font-size: 22px;
    line-height: 1.5em;
    color: #333;
    margin: 0 0 1em 0;
}

.swiper-slide.about-slide:first-child .about-description {
    font-size: 20px;
    text-align: justify;
    margin-top: 30px;
}

.about-image-content {
    flex: 1 1 30%;
    min-width: 300px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 400px;
}

.image-bubble {
    position: absolute;
    width: 85%;
    padding-bottom: 85%;
    background-image: linear-gradient(180deg, #fff, transparent);
    border-radius: 54% 57% 60% 41% / 39% 46% 50% 64%;
    z-index: 1;
    transition: border-radius 0.5s ease-in-out, transform 0.5s ease;
    right: -100px;
    bottom: -55px;
}

.image-bubble:first-child {
    background-image: linear-gradient(180deg, transparent, #f3f2f6);
    border-radius: 47% 65% 60% 57% / 38% 50% 36% 72%;
    z-index: 1;
    transition: border-radius 0.5s ease-in-out, transform 0.5s ease;
    left: -78px;
    bottom: -92px;
}

.image-bubble.alt-bubble {
    background-color: #f1faee;
    border-radius: 60% 40% 45% 55% / 50% 60% 40% 50%;
}

/* Animated bubble */
.anim-bubble {
    animation: bubbleMorph 10s ease-in-out infinite alternate;
}

@keyframes bubbleMorph {

    0%,
    100% {
        border-radius: 40% 75% 50% 80% / 35% 60% 55% 30%;
        transform: scale(1) rotate(0deg);
    }

    50% {
        border-radius: 80% 40% 75% 55% / 40% 60% 20% 50%;
        transform: scale(1.05) rotate(5deg);
    }
}

.about-image {
    max-width: 100%;
    max-height: 600px;
    height: auto;
    position: relative;
    z-index: 2;
    background-color: #fff;
    border-radius: 50%;
}

.about-image.blur {
    position: absolute;
    filter: blur(10px);
    right: -200px;
    bottom: -50px;
    z-index: 0;
    background-color: #fff;
    border-radius: 50%;
}

.about-slide .anim-element {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.swiper-slide-active .anim-element {
    opacity: 1;
    transform: translateY(0);
}

.swiper-slide-active .about-description {
    transition-delay: 0.1s;
}

.swiper-slide-active .about-features {
    transition-delay: 0.2s;
}

.swiper-slide-active .about-cta {
    transition-delay: 0.3s;
}

.swiper-slide-active .about-image {
    transition-delay: 0.2s;
}

/* Arrows - Dots */
.about-button-next,
.about-button-prev {
    color: #ffffff;
    top: 96%;
    transform: translateY(-0%);
    width: 72px;
    height: 30px;
    background-color: #000000bd;
    transition: background-color 0.3s ease, box-shadow 0.3s ease, color 0.3s ease;
    z-index: 10;
}

.about-button-next:hover,
.about-button-prev:hover {
    background-color: #000000;
    color: #ffffff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.swiper-button-next.about-button-next {
    right: 45.5%;
}

.swiper-button-prev.about-button-prev {
    left: 45.5%;
}

.about-button-next::after,
.about-button-prev::after {
    font-size: 22px;
    font-weight: 400;
}
/* --- End Section 4 --- */
/* --- Fifth Section --- */
.section-5.products-section {
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.products-header {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.products-title {
    font-size: 40px;
    font-weight: 700;
    color: #157a3d;
    margin: 0;
}

.products-subtitle {
    font-size: 18px;
    color: #333;
    max-width: 900px;
    line-height: 1.6;
}

.products-container {
    width: 100%;
    max-width: 1500px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 45px;
}

.products-grid {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.product-card {
    text-align: left;
    overflow: hidden;
    display: flex;
    flex-direction: row;
    gap: 10px;
    align-items: center;
}

.product-name {
    font-size: 25px;
    font-weight: 800;
    color: #157A3D;
    margin: 0;
}

.product-description {
    font-size: 18px;
    color: #333;
    line-height: 1.5;
    margin: 0;
    margin-top: 10px;
}

.quality-card-mobile {
    display: none;
}

/* Responsive adjustments for Section 5 */
.first-colum,
.third-colum {
    display: flex;
    flex-direction: column;
    width: 30%;
    gap: 30px;
}

.product-card img {
    width: 25%;
    object-fit: cover;
}

.product-card div {
    width: 75%;
}

.second-colum h3 {
    font-size: 30px;
    margin: 0;
    margin-bottom: 10px;
    color: #157a3d;
}

.second-colum img {
    width: 100%;
    max-width: 500px;
}

.second-colum {
    text-align: center;
    width: 40%;
}

/* End Section 5 */
/* --- Sixth Section - Post Carousel --- */
.section-6.posts-carousel-section {
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.posts-carousel-container {
    width: 100%;
    text-align: center;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 45px;
}

.posts-carousel-title {
    font-size: 40px;
    font-weight: 700;
    color: #1d3557;
    margin: 0;
}

.postsSwiper {
    width: 100%;
    position: static;
    overflow: hidden;
}

.post-slide {
    height: auto;
    display: flex;
    justify-content: center;
    box-sizing: border-box;
    padding: 5px;
}

.post-card {
    overflow: hidden;
    width: 350px;
}

.post-image-wrapper {
    position: relative;
    overflow: hidden;
}
.post-image-wrapper a {
	overflow: hidden;
	display: inline-block;
}
.post-image-wrapper img {
    display: block;
    transition: transform 0.4s ease;
}

.post-content {
    padding: 7px 20px 20px 0;
    text-align: left;
    display: grid;
}

.post-meta {
    font-size: 15px;
    color: #6c757d;
    margin: 0;
}

.post-meta a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.post-meta a:hover {
    color: #457b9d;
}

.post-title {
    font-size: 20px;
    font-weight: 700;
    color: #343a40;
    margin: 0;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    height: 50px;
    overflow: hidden;
}

.post-title a {
    color: #238248;
    text-decoration: none;
    transition: color 0.3s ease;
}

.post-excerpt {
    font-size: 16px;
    color: #333;
    line-height: 1.6;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-align: justify;
    display: none;
}

.read-more-link {
    font-size: 0.9rem;
    font-weight: 600;
    color: #fff;
    background-color: #a8d3e4;
    text-decoration: none;
    transition: color 0.3s ease;
    align-self: flex-start;
    padding: 8px 25px;
    border-radius: 4px;
}

.read-more-link:hover {
    background-color: #f5a29c;
}
.posts-button-next,
.posts-button-prev {
    color: #ffffff;
    width: 75px;
    height: 30px;
    top: auto;
    bottom: 0px;
    transform: translateY(35px);
    z-index: 10;
    background-color: rgb(0 0 0 / 70%);
}

.posts-button-next:hover,
.posts-button-prev:hover {
    background-color: #000;
    color: #fff;
}

.posts-button-next {
    right: calc(50% - 78px);
}

.posts-button-prev {
    left: calc(50% - 72px);
}

.posts-button-next::after,
.posts-button-prev::after {
    font-size: 22px;
    font-weight: 400;
}

/* End Section 6 */
/* Footer */
.footer-title {
    font-size: 22px;
    font-weight: 800;
    color: #157A3D;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 25px;
}

.company-info p {
    font-size: 14px;
    line-height: 20px;
    margin: 7px 0;
}

.social-icons a {
    display: inline-block;
    margin-right: 10px;
    color: #f58a07;
    text-decoration: none;
    font-size: 1.2rem;
    transition: color 0.3s ease, transform 0.3s ease;
}

.social-icons a:hover {
    color: #d97806;
    transform: scale(1.1);
}

.icon-placeholder {
    display: inline-block;
    width: 25px;
    height: 25px;
    line-height: 25px;
    text-align: center;
    border-radius: 50%;
    background-color: #f58a07;
    color: white;
    font-weight: bold;
    font-size: 0.9rem;
}

.social-icons a:hover .icon-placeholder {
    background-color: #d97806;
}

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

.footer-column li {
    margin-bottom: 0;
}

.footer-column a {
    color: inherit;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: #f58a07;
    text-decoration: underline;
}

.footer-bottom {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 15px 20px;
    background-color: rgba(0, 0, 0, 0.1);
    text-align: center;
    font-size: 0.85rem;
    color: #333;
    box-sizing: border-box;
}

footer.footer-section {
    width: 100%;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes animar {
    0% {
        transform: translateX(200px) scale(0.5);
    }

    50% {
        transform: translateX(-200px) scale(0.5);
    }

    100% {
        transform: translateX(200px) scale(0.5);
    }
}

.footer-column.company-info {
    width: 20% !important;
}

.footer-column.quick-links {
    width: 10% !important;
}

.footer-column.privacy-links {
    width: 10%;
}

img.Flag_of_Canada {
    width: 93px;
    right: 40px;
    position: absolute;
    top: 0;
}


/*  */

.section-friut-6 {
    display: flex;
    column-gap: 50px;
    /* height: 100vh; */
    width: 100vw;
}

.left-40 {
    width: 45%;
    display: flex;
    align-items: center;
    position: relative;
    padding: 30px;
    justify-content: center;
    padding-left: 2%;
    padding-right: 0;
}

.rihgt-60 {
    width: 55%;
    display: flex;
    padding: 30px;
    padding-left: 0;
    align-items: center;
}


.right-top-fruit {
    display: flex;
    justify-content: space-between;
    width: 100%;
    flex-direction: column;
    position: relative
}

.left-40 img.image_two {
    position: absolute;
    width: 150px;
    z-index: 99;
    top: 59px;
    left: 70px;
}

.bounceUpDown {
    animation: bounceUpDown 5s ease-in-out infinite;
}

@keyframes bounceUpDown {

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

    50% {
        transform: translateY(-20px);
    }
}
.bounceUpDown-2 {
    animation: bounceUpDown-2 5s ease-in-out infinite;
}

@keyframes bounceUpDown-2 {

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

    50% {
        transform: translateY(0);
    }
}

.left-40 img.image_one {
    position: absolute;
    width: 175px;
    right: 102px;
    top: 385px;
    z-index: 98;
    /* animation: fancyMove 3s ease-in-out infinite; */
    display: none;
}

@keyframes fancyMove {
    0% {
        transform: translateY(0) translateX(0) rotate(0deg) scale(1);
    }

    25% {
        transform: translateY(-15px) translateX(10px) rotate(10deg) scale(1.05);
    }

    50% {
        transform: translateY(0) translateX(20px) rotate(-10deg) scale(1);
    }

    75% {
        transform: translateY(10px) translateX(10px) rotate(10deg) scale(1.05);
    }

    100% {
        transform: translateY(0) translateX(0) rotate(0deg) scale(1);
    }
}

.left-40 img.image_three {
    width: 250px;
    position: absolute;
    bottom: 40px;
    left: 40px;
    z-index: 100;
}


.left-40 img.image_four {
    z-index: 98;
    position: absolute;
    width: 100px;
    right: 91px;
    top: 158px;
    /* animation: swing 2s ease-in-out infinite; */
}

@keyframes swing {
    0% {
        transform: translateY(-50%) rotate(0deg);
    }

    50% {
        transform: translateY(-50%) rotate(45deg);
    }

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

/* .left-40 img:nth-child(5) {
    width: 500px;
    margin-left: -232px;
} */

.left-40 img.feature_image {
    margin-left: 0;
    z-index: 99;
    width: 100%;
}

.fruit-name h2 {
    font-size: 280px;
    font-weight: 600;
    color: #9864AF;
    margin-bottom: 0;
    margin-left: -14px;
    line-height: 148px;
}

.fruit-name h3 {
    font-size: 122px;
    font-weight: 600;
    color: #9864AF;
    margin: 0 0 60px -5px;
    line-height: 185px;
}

.content-slide3 .right-top-fruit .fruit-name img {
    top: -50px;
    right: 175px;
}

.section-friut-6 svg {
    width: 1000px;
    height: auto;
    position: absolute;
    left: -100px;
    z-index: 0;
}

.section-friut-6 path {
    fill: #9864af;
    animation: morph 15s ease-in-out infinite;
    transform-origin: center;
}

.fruit-image {
    position: relative;
    display: flex;
    align-items: flex-end;
    gap: 20px;
    margin-bottom: -51px;
    margin-left: 40px;
}

.fruit-image img.fruit_image {
    max-width: 160px;
    margin-bottom: 0;
}

.content-slide1 .fruit-name h2 {
    font-size: 236px;
    color: #92b632;
    /* text-align: center; */
}

.content-slide1 .fruit-name h3 {
    font-size: 122px;
    color: #92b632;
    line-height: 242px;
    /* text-align: center; */
}
.content-slide1 .section-friut-6 path {
    fill: #92b632;
}
.content-slide2 .fruit-name h2 {
    font-size: 115px;
    color: #a51117;
}

.content-slide2 .fruit-name h3 {
    font-size: 122px;
    color: #a51117;
    line-height: 100px;
    margin-bottom: 134px;
}
.content-slide2 .section-friut-6 path {
    fill: #a51117;
}

.content-slide2 .right-top-fruit .fruit-name img {
    right: 294px;
    top: -62px;
}

.content-slide4 .fruit-name h2 {
    font-size: 180px;
    color: #e1b305;
}

.content-slide4 .fruit-name h3 {
    font-size: 120px;
    color: #e1b305;
    line-height: 164px;
    margin-bottom: 80px;
    margin-left: -12px;
}
.content-slide4 .section-friut-6 path {
    fill: #e1b305;
}
.content-slide5 .fruit-name h2 {
    font-size: 142px;
    color: #3f8bbc;
}
.content-slide5 .fruit-name h3 {
    font-size: 122px;
    color: #3f8bbc;
}

.content-slide5 .section-friut-6 path {
    fill: #3f8bbc;
}

.content-slide6 .fruit-name h2 {
    font-size: 104px;
    color: #d43829;
    line-height: 68px;
}

.content-slide6 .fruit-name h3 {
    font-size: 122px;
    color: #d43829;
    margin: 0 0 125px -12px;
}

.content-slide6 .section-friut-6 path {
    fill: #d43829;
}

@keyframes morph {
    0% {
        d: path("M49.4,-17.4C56.1,4.6,48.2,30,28.4,46.1C8.6,62.1,-23.1,68.8,-44.2,54.9C-65.3,41,-75.7,6.5,-66.6,-18.9C-57.4,-44.3,-28.7,-60.6,-3.7,-59.4C21.3,-58.2,42.7,-39.5,49.4,-17.4Z");
    }

    25% {
        d: path("M50.2,-18.1C57.5,6.3,50.8,33.4,32.4,47.5C14,61.5,-16,62.4,-34.4,48.7C-52.8,35,-59.7,6.7,-52,-18.1C-44.4,-42.9,-22.2,-64.3,-0.4,-64.1C21.4,-64,42.9,-42.5,50.2,-18.1Z");
    }

    50% {
        d: path("M47.4,-9.1C56.8,13.5,56.5,45.5,37.5,61.7C18.4,78,-19.5,78.5,-43.1,61C-66.6,43.5,-75.8,7.9,-66.2,-14.9C-56.7,-37.8,-28.3,-47.9,-4.7,-46.4C19,-44.9,38,-31.7,47.4,-9.1Z");
    }

    75% {
        d: path("M41.1,-19.6C47,4.8,41.2,26.8,24.1,41.1C7,55.4,-21.5,62,-42.4,49C-63.3,36,-76.6,3.4,-68.3,-24.4C-60,-52.2,-30,-75.1,-6.2,-73.1C17.6,-71.1,35.2,-44.1,41.1,-19.6Z");
    }

    100% {
        d: path("M49.4,-17.4C56.1,4.6,48.2,30,28.4,46.1C8.6,62.1,-23.1,68.8,-44.2,54.9C-65.3,41,-75.7,6.5,-66.6,-18.9C-57.4,-44.3,-28.7,-60.6,-3.7,-59.4C21.3,-58.2,42.7,-39.5,49.4,-17.4Z");
    }
}

.swiper-slide {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.swiper-slide video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100vh;
    object-fit: cover;
    transform: translate(-50%, -50%);
    z-index: -1;
}

.slide-image-background {
    position: absolute;
    top: -30px;
}

.slide-content-overlay {
    z-index: 99;
    padding-left: 130px;
    margin-top: -275px;
}

.slide-content-overlay h2:nth-child(1) {
    font-size: 85px;
    font-weight: 600;
    color: #157A3D;
}

.slide-content-overlay h2:nth-child(2) {
    font-size: 126px;
    font-weight: 600;
    line-height: 60px;
    color: #157A3D;
}

.slide-content-overlay p {
    text-align: justify;
    font-family: "Poppins", Sans-serif;
    font-size: 20px;
    font-weight: 700;
    line-height: 100px;
    color: #333333;
}

.section1-slide2 .slide-content-overlay h2:nth-child(1) {
    font-size: 116px;
}

.section1-slide2 .slide-content-overlay h2:nth-child(2) {
    font-size: 139px;
    line-height: 80px;
}

.section1-slide2 .slide-content-overlay p {
    font-size: 19.5px;
}

.section1-slide3 .slide-content-overlay h2:nth-child(1) {
    font-size: 116px;
}

.section1-slide3 .slide-content-overlay h2:nth-child(2) {
    font-size: 72px;
    line-height: 30px;
}

.section1-slide3 .slide-content-overlay p {
    font-size: 21.5px;
}

.section-1-container .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
@keyframes countingBar {
    0% {
        width: 0;
    }

    100% {
        width: 100%;
    }
}

.right-top-fruit .fruit-name img.image_six {
    position: absolute;
    right: 38%;
    top: -65px;
    width: 70px;
    opacity: .8;
}

.right-top-fruit .fruit-name {
    position: relative;
}

.right-top-fruit img.image_five {
    position: absolute;
    /*transform: translate(0) rotate(193deg);*/
    bottom: 180px;
    left: 46%;
    opacity: .8;
    width: 100px;
    z-index: -1;
}

.fruit-facts-items {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    column-gap: 25px;
    margin-top: 26px;
    /* align-self: end; */
    /* margin-right: 100px; */
}

.fruit-fact-item {
    position: relative;
}

.fruit-fact-item img {
    width: 100px;
}

.fruit-fact-item span {
    position: absolute;
    font-size: 15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    text-align: center;
    font-family: "Poppins", Sans-serif;
}

.fruit-fact-item span:nth-child(2) {
    top: 45px;
    font-weight: 500;
    color: #1a1a1a;
    font-size: 20px;
}

.fruit-fact-item span:nth-child(3) {
    bottom: 33px;
    color: #fff;
    font-weight: 700;
    font-size: 27px;
    line-height: 27px;
}

.right-top-fruit .fruit-name img.image_one {
    position: absolute;
    right: -138px;
    top: -130px;
    width: 180px;
    transform: rotate(45deg);
}

.content-slide6 .right-top-fruit .fruit-name img.image_six {
    top: -80px;
}

.brand-carousel-container svg {
    position: absolute;
    left: -40px;
    right: -40px;
    bottom: 0;
}

/* Airplane animation: Moves left to right, exits, re-enters from left */
.airplan {
    animation: moveAirplane 50s linear infinite;
}

@keyframes moveAirplane {
    0% {
        transform: translateX(-100px);
        /* Start off-screen to the left */
    }

    100% {
        transform: translateX(100%);
        /* Stay at left to loop */
    }
}

/* Balloon animation: Moves up and down gently, continuous */
.baloon {
    animation: floatBalloon 40s ease-in-out infinite;
}

@keyframes floatBalloon {

    0%,
    100% {
        transform: translateY(300px);
    }

    50% {
        transform: translateY(100px);
    }
}

/* Star animation: Twinkle effect with scaling and opacity */
.star {
    animation: twinkle 2s ease-in-out infinite;
    transform-box: fill-box;
    transform-origin: center center;
}

@keyframes twinkle {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.7;
    }

    50% {
        transform: scale(1.5);
        /* Slightly larger */
        opacity: 1;
        /* Fully bright */
    }
}

/* Optional: Stagger animations for stars to avoid synchronized twinkling */
.star-1 {
    animation-delay: 0s;
}

.star-2 {
    animation-delay: 0.5s;
}

.star-3 {
    animation-delay: 1s;
}

.star-4 {
    animation-delay: 1.5s;
}

.brand-carousel-container svg path {
    opacity: .3;
}

.brand-carousel-container svg path.star {
    fill: #FF9800;
    opacity: 1
}

.brand-carousel-container svg path.baloon {
    fill: #E91E63;
    opacity: 1;
}

.brand-carousel-container svg path.airplan {
    fill: #98258b;
    opacity: 1
}

.brand-carousel-container svg path.canada {
    fill: #7aa841;
    opacity: 1
}

.text-align-justify {
    text-align: justify;
}
.text-align-last-justify {
    text-align-last: justify;
}
.text-align-last-center {
    text-align-last: center;
}
.about-description p {
    margin-bottom: 10px;
    text-align: justify;
    font-size: 20px;
}
.feature-list .title {
    font-weight: bold;
}
.feature-list .text {
    display: inline-block;
    width: calc(100% - 240px);
}
.feature-list {
    list-style: none;
    padding: 0;
    font-size: 20px;
    display: grid;
    gap: 6px;
    margin: 25px;
}
.feature-list .text {
    text-align: justify;
    display: inline-block;
}


/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
img.windmill {
    position: absolute;
    width: 7%;
    animation: 10s linear 0s infinite normal none running spin;
    left: 26.3%;
    top: -7%;
}

img.cloud {
    position: absolute;
    animation: animar 50s linear infinite;
    right: 100px;
    width: 400px;
    top: 0;
    opacity: .5;
}
img.cloud-2 {
    left: 0;    
    animation: animar 60s linear infinite;
}
.footer-bg {
    position: relative;
    width: 100%;
    height: 300px;
    /* background: red; */
    /* overflow: hidden; */
    background-size: cover;
}

img.ground {
    position: absolute;
    width: 100%;
    left: 0;
    bottom: 0;
    display: none
}
.sun {
  position:absolute;
  right: 31%;
  width: 180px;
  animation: shine 2s infinite ease-in-out;
  top: 22%;
}

@keyframes shine {
  0%, 100% {
    filter: brightness(1) drop-shadow(0 0 10px #ffd700b5);
    transform: scale(1);
  }
  50% {
    filter: brightness(1.3) drop-shadow(0 0 30px #ffd700b5);
    transform: scale(1.05);
  }
}

.container {
    width: 100%;
    max-width: 1640px;
    margin: auto;
}

.footer-content-wrapper {
    width: 100%;
    height: 100%;
    display: grid;
    align-items: end;
}

.footer-content {
    display: flex;
    justify-content: space-around;
}
.newsletter {
    display: flex;
    align-items: center;
    margin: 30px auto 30px;
    max-width: 770px;
}
.newsletter-content h3 {
    font-size: 29px;
}
.tnp-subscription input[class="tnp-email"] {
    width: 100%;
    border: 2px solid #989898;
    padding: 10px;
}
.tnp-field.tnp-field-button {
    position: absolute;
    right: 5px;
    top: 5px;
}
.tnp-subscription form {
    position: relative;
}

.tnp-field.tnp-field-button input {
    background: #92b632;
    padding: 7px 20px;
}
.tnp-field-email label {
    display: none;
}
.tnp-field.tnp-field-button input:HOVER {
    background-color: #5e7c0f;
}
.tnp-field.tnp-privacy-field {
	margin-top: 15px;
}.tnp-field.tnp-privacy-field label {
	font-size: 14px;
}
.newsletter-img {
    margin-right: -26px;
    z-index: 99;
    width: 240px;
    /* position: absolute; */
}
.container {
    margin: auto auto 0 auto;
}
.newsletter-content {
    display: grid;
    gap: 20px;
    background: #C2FFC6;
    /* animation:
    blobShape 8s ease-in-out infinite,
    bgMove 10s ease-in-out infinite; */
    padding: 10px 30px;
    width: 100%;
    margin-top: 100px;
    border-radius: 4px;
}
/* تغییر بسیار نرم در شکل */
@keyframes blobShape {
  0% {
    border-radius: 20% 25% 20% 25% / 25% 20% 25% 20%;
  }
  50% {
    border-radius: 25% 20% 25% 20% / 20% 25% 20% 25%;
  }
  100% {
    border-radius: 20% 25% 20% 25% / 25% 20% 25% 20%;
  }
}

/* حرکت نرم گرادینت */
@keyframes bgMove {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
.swiper-horizontal>.swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction {
    bottom: 100px;
}

swiper-pagination-bullet {
    width: 40px;
}
.swiper-pagination-bullet {
    width: 40px;
    height: 4px;
    border-radius: 1px;
}
.swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet, .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 8px;
}
.swiper-pagination-bullet-active {
    background: #92b632;
    transform: scale(1.3);
    box-shadow: 0 4px 4px 1px #a4a4a49e;
} 
.swiper-pagination-bullets .swiper-pagination-bullet-active:nth-child(2) {
    background: #a51117;
}
.swiper-pagination-bullets .swiper-pagination-bullet-active:nth-child(3) {
    background: #9864af;
}
.swiper-pagination-bullets .swiper-pagination-bullet-active:nth-child(4) {
    background: #e1b305;
}
.swiper-pagination-bullets .swiper-pagination-bullet-active:nth-child(5) {
    background: #3f8bbc;
}

.swiper-pagination-bullets .swiper-pagination-bullet-active:nth-child(6) {
    background: #d43829;
}
#fp-nav ul li a span, .fp-slidesNav ul li a span {
    border: 2px solid #101010;
    outline: 1px solid #ffffff;
    color: #fff;
    background: #ffffff;
}