/* css reset */
/* CSS Reset */
jus {
  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 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;
        }

        .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 {
}
        .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;
            "Fredoka", 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;
        }
        /* Section 1 Swiper */
        .section1Swiper {
            width: 100%;
            height: 100%;
            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);
        }

        /* Pagination */
        .newContentSliderContainer .swiper-pagination {
            position: absolute;
            bottom: 10px;
            left: 50%;
            transform: translateX(-50%);
            width: auto;
            text-align: center;
            z-index: 10;
            display: flex;
            gap: 10px;
        }

        .newContentSliderContainer .swiper-pagination-bullet {
            background-color: #a5e78d;
            opacity: 0.5;
            width: 25px;
            height: 4px;
            border-radius: 0;
            margin: 0 !important;
            transition: background-color 0.3s ease, opacity 0.3s ease, all 0.3s ease;
            cursor: pointer;
        }

        .newContentSliderContainer .swiper-pagination-bullet-active {
            background-color: #f8a8b5;
            opacity: 1;
            transform: scale(1.2);
            width: 40px !important;
        }

        .newContentSliderContainer .swiper-pagination-bullet:hover {
            opacity: 1;
            background-color: #f8a8b5;
        }

        @media only screen and (max-width: 600px) {
            .contentSwiper .swiper-slide {
                width: 100% !important;
                overflow: hidden;
            }

            .slide-bg img {
                position: absolute;
                width: 700px;
                height: 700px;
                top: -300px;
                left: 50%;
                transform: translateX(-50%);
            }

            .content-slide-text {
                position: absolute;
                top: 30px;
                left: 50%;
                transform: translateX(-50%) !important;
                text-align: center;
            }

            .content-slide-text h2 {
                font-size: 45px;
                margin: 0;
                width: 100%;
            }

            .image-content img:first-child {
                height: 150px;
                top: 15%;
                right: -5%;
                z-index: 5;
            }

            .image-content img:nth-child(3) {
                width: 130px;
                top: auto;
                bottom: 22%;
                left: 10%;
                z-index: 5;
            }

            .image-content img:nth-child(5) {
                width: 70px;
                top: 3%;
                left: 7%;
            }

            .image-content img:nth-child(2),
            .image-content img:nth-child(4),
            .image-content img:nth-child(6) {
                display: none;
                opacity: 0;
                visibility: 0;
                height: 0;
                width: 0;
            }

            .content-slide-image {
                display: flex;
                justify-content: center;
                top: -25px;
            }

            .content-slide-image img {
                margin-left: 0;
                width: 270px;
            }

            .drop {
                position: absolute;
                width: 170px !important;
                height: 170px !important;
                bottom: 30px;
            }

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

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

            .drop::before {
                top: 20px;
                left: 30px;
                width: 20px;
                height: 20px;
            }

            .drop::after {
                top: 40px;
                left: 18px;
            }

            .newContentSliderContainer .swiper-pagination-bullet {
                width: 15px;
            }

            .newContentSliderContainer .swiper-pagination-bullet-active {
                width: 30px !important;
            }

            .newContentSliderContainer .swiper-button-next,
            .newContentSliderContainer .swiper-button-prev {
                width: 54px;
                height: 25px;
            }

            .newContentSliderContainer .swiper-button-next {
                right: 35% !important;
            }

            .newContentSliderContainer .swiper-button-prev {
                left: 35% !important;
            }

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

        /* --- 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;
        }

        .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;
        }

        .brand-carousel-container {
            position: relative;
            padding-left: 50px;
            padding-right: 50px;
            /*max-width: 1200px;*/
            /*margin: 0 auto;*/
            width: 70%;
        }
        .brand-grid-items {
            display: grid;
            grid-template-columns: repeat(4, 1fr)
        }
        .brand-grid-item {
            position: relative;
        }
        .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 10s linear infinite;
        }
        .Fruit-Jammy-bg {
            animation: brand-rotate-reverse 12s linear infinite;
        }
        .Fruit-Juice-bg {
            animation: brand-rotate 11s linear infinite;}
        .Fruit-Strips-bg {
            animation: brand-rotate-reverse 13s 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;
        }

        /* --- Pagination Dots --- */
        .brandsSwiper .brands-pagination {
            position: absolute;
            bottom: 10px;
            left: 0;
            width: 100%;
            text-align: center;
            z-index: 20;
            opacity: 1;
            visibility: visible;
        }

        .brandsSwiper .swiper-pagination-bullet {
            width: 25px;
            height: 4px;
            border-radius: 0;
            background-color: #cceea5;
            display: inline-block;
            margin: 0 5px;
            cursor: pointer;
            transition: background-color 0.3s ease;
            opacity: 1 !important;
            visibility: visible !important;
        }

        .swiper-pagination-bullet.swiper-pagination-bullet-active {
            background-color: #ecbef4;
        }

        @media only screen and (max-width: 600px) {
            .brand-carousel-container {
                width: 100%;
            }

            .brands-title {
                font-size: 25px;
                margin-bottom: 40px;
            }

            .brandsSwiper {
                padding: 40px 20px 40px;
            }

            .brand-content {
                padding: 100px 30px 40px;
            }

            .brand-content::before {
                width: 300px;
                height: 300px;
                top: -30%;
            }

            .brand-slide img {
                width: 200px;
                height: 200px;
                margin-bottom: -90px;
            }

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

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

            .brandsSwiper .brands-pagination {
                bottom: 0px;
            }

            .brandsSwiper .swiper-pagination-bullet {
                width: 15px;
                margin: 0 5px;
            }

            .swiper-pagination-bullet.swiper-pagination-bullet-active {
                width: 30px;
            }
        }

        /* --- 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 45%;
            min-width: 300px;
            text-align: left;
            z-index: 3;
        }

        .about-title {
            font-size: 2.8rem;
            font-weight: 700;
            color: #1d3557;
            margin-bottom: 1rem;
            line-height: 1.2;
        }

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

        .swiper-slide.about-slide:first-child .about-title {
            font-size: 55px;
        }

        .swiper-slide.about-slide:first-child .about-description {
            font-size: 20px;
        }

        .about-image-content {
            flex: 1 1 40%;
            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;
        }

        /* Pagination */
        .about-pagination {
            position: absolute;
            bottom: 10px !important;
            transform: translateX(-50%);
            width: auto;
            text-align: center;
            z-index: 10;
            left: 50% !important;
        }

        .about-pagination .swiper-pagination-bullet {
            background-color: #d0a7e1;
            opacity: 0.8;
            margin: 0 6px !important;
            cursor: pointer;
            width: 20px;
            height: 4px;
            border-radius: 0;
            transition: all 0.5s ease-in-out;
        }

        .about-pagination .swiper-pagination-bullet-active {
            background-color: #fae268;
            opacity: 1;
            width: 40px;
        }

        .about-pagination .swiper-pagination-bullet:hover {
            opacity: 1;
            background-color: #fae268;
        }

        @media only screen and (max-width: 600px) {
            .section4Swiper {
                padding-right: 0px;
            }

            .about-slide {
                padding: 0 30px;
            }

            .about-slide-content {
                display: flex;
                gap: 20px;
                height: 100%;
                padding: 0;
                align-content: center;
                justify-content: center;
                align-items: center;
            }

            .about-text-content {
                text-align: center;
            }

            .about-title {
                font-size: 30px;
                margin: 0;
                margin-bottom: 1rem;
                text-align: center;
            }

            .swiper-slide.about-slide:first-child .about-title {
                font-size: 25px;
                margin: 0;
                margin-bottom: 0.5rem;
                text-align: center;
            }

            .about-description {
                font-size: 18px;
                line-height: 1.4em;
                margin: 0 0 2em 0;
            }

            .swiper-slide.about-slide:first-child .about-description {
                font-size: 15px;
                line-height: 1.2em;
                margin: 0 0 0.5em 0;
            }

            .about-features {
                margin-bottom: 0.5rem;
            }

            .about-features li {
                padding-left: 0px;
                margin-bottom: 0.5rem;
                font-size: 15px;
            }

            .about-image-content {
                max-width: 200px;
                max-height: 250px;
                min-height: 100px;
            }

            .image-bubble:first-child {
                display: none;
                opacity: 0;
                visibility: hidden;
                height: 0;
                width: 0;
            }

            .about-image {
                max-width: 100%;
                max-height: 250px;
            }

            .about-image.blur {
                right: -30px;
                bottom: 20px;
                z-index: 0;
                background-color: #fff;
                border-radius: 50%;
            }

            .image-bubble {
                width: 65%;
                padding-bottom: 65%;
                right: 5px;
                bottom: 35px;
            }

            .about-button-next,
            .about-button-prev {
                top: 97%;
                width: 54px;
                height: 25px;
            }

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

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

            .about-button-next::after,
            .about-button-prev::after {
                font-size: 16px;
            }

            .about-pagination {
                bottom: 5px !important;
            }

            .about-pagination .swiper-pagination-bullet {
                margin: 0 5px !important;
                width: 15px;
            }

            .about-pagination .swiper-pagination-bullet-active {
                width: 30px !important;
            }
        }

        /* --- 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: #1d3557;
            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;
        }

        /* 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;
        }

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

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

        @media only screen and (max-width: 600px) {
            .products-container {
                gap: 5px;
                justify-content: center;
                justify-items: center;
                height: 100% !important;
            }

            .products-title {
                font-size: 25px;
            }

            .products-subtitle {
                font-size: 15px;
                margin: 5px;
            }

            .products-grid {
                display: flex;
                flex-direction: row;
                gap: 0px;
                flex-wrap: wrap;
                margin-bottom: -190px;
            }

            .second-colum {
                display: none;
                opacity: 0;
                visibility: hidden;
                height: 0;
                width: 0;
            }

            .first-colum,
            .third-colum {
                display: flex;
                flex-direction: row;
                flex-wrap: wrap;
                width: 100%;
                gap: 5px 0;
                position: relative;
                justify-content: space-between;
                align-items: center;
            }

            .product-card {
                text-align: center;
                flex-direction: column;
                gap: 5px;
                width: 47%;
                border: 1px solid #00000017;
                height: 45%;
                justify-content: center;
                padding: 8px 3px;
            }

            .product-card img {
                width: 50%;
            }

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

            .product-name {
                font-size: 17px;
            }

            .product-description {
                font-size: 15px;
                margin: 0;
                margin-top: 5px;
                line-height: 1.2;
            }

            .third-colum {
                top: -190px;
            }

            .third-colum::before {
                content: "";
                width: 173px;
            }

            .third-colum .product-card:first-child {
                order: 2;
            }

            .third-colum .product-card:nth-child(2) {
                order: 1;
            }
        }

        /* 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%;
            max-width: 1400px;
            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;
            display: flex;
            flex-direction: column;
            height: 100%;
            transition: box-shadow 0.3s ease;
        }

        .post-image-wrapper {
            position: relative;
            overflow: hidden;
        }

        .post-image-wrapper img {
            display: block;
            width: 100%;
            height: 550px;
            object-fit: cover;
            transition: transform 0.4s ease;
        }

        .post-card:hover .post-image-wrapper img {
            transform: translateY(-235px);
            transition: all 0.5s ease-in-out;
        }

        .post-content {
            padding: 0;
            text-align: left;
            display: flex;
            flex-direction: column;
            gap: 10px;
            transform: translateY(250%);
            height: 235px;
            transition: all 0.5s ease-in-out;
            position: absolute;
            bottom: 0;
        }

        .post-card:hover .post-content {
            transform: translateY(0%);
            height: auto;
        }

        .post-meta {
            font-size: 16px;
            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: 25px;
            font-weight: 600;
            color: #343a40;
            margin: 0;
            line-height: 1.3;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

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

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

        .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-pagination {
            position: absolute;
            bottom: 0 !important;
            left: 50% !important;
            transform: translate(-50%, 50px);
            width: auto !important;
            z-index: 10;
        }

        .posts-pagination .swiper-pagination-bullet {
            background-color: #a8d3e4;
            opacity: 0.8;
            width: 20px;
            height: 4px;
            border-radius: 0;
            margin: 0 5px !important;
            transition: all 0.5s ease, opacity 0.3s ease;
        }

        .posts-pagination .swiper-pagination-bullet-active {
            background-color: #f5a29c;
            opacity: 1;
            width: 40px;
        }

        .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;
        }

        @media only screen and (max-width: 600px) {
            .posts-carousel-container {
                gap: 20px;
            }

            .posts-carousel-title {
                font-size: 25px;
            }

            .post-image-wrapper img {
                height: 500px;
            }

            .post-card:hover .post-image-wrapper img {
                transform: translateY(-185px);
            }

            .post-title {
                font-size: 20px;
            }

            .post-excerpt {
                font-size: 16px;
                line-height: 1.4;
                -webkit-line-clamp: 3;
            }

            .read-more-link {
                font-size: 14px;
                padding: 7px 17px;
            }

            .posts-button-next,
            .posts-button-prev {
                width: 57px;
                height: 25px;
                transform: translateY(35px);
            }

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

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

            .posts-button-next::after,
            .posts-button-prev::after {
                font-size: 16px;
            }

            .posts-pagination .swiper-pagination-bullet {
                width: 15px;
            }

            .posts-pagination .swiper-pagination-bullet-active {
                width: 30px;
            }
        }

        /* End Section 6 */
        /* Footer */
        .section.section-7 .fp-tableCell {
            vertical-align: middle;
            width: 100%;
            display: flex;
            justify-content: flex-end;
            align-items: center;
            flex-direction: column;
        }

        .section-7.footer-section {
            position: relative;
            background-color: #ffffff;
            color: #4a5a40;
            padding: 0;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
        }

        .footer-bg {
            position: absolute;
            bottom: -160px;
            right: -65px;
            left: -65px;
            width: 100%;
            height: 50%;
            z-index: 1;
            opacity: 0.8;
        }

        .footer-content {
            position: relative;
            z-index: 2;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-evenly;
            gap: 0px;
            width: 100%;
            box-sizing: border-box;
            margin: 0 0 100px 180px;
        }

        .footer-column {
            display: flex;
            flex-direction: column;
            text-align: left;
            gap: 10px;
        }

        .footer-title {
            font-size: 22px;
            font-weight: 800;
            color: #157A3D;
            margin: 0;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .company-info p {
            font-size: 14px;
            line-height: 1.6;
            margin: 0;
            max-width: 250px;
        }

        .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: 10px;
        }

        .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%;
        }

        .windmill img {
            position: absolute;
            top: -15px;
            left: 387px;
            width: 170px;
            height: 170px;
            transform-origin: center center;
            background-repeat: no-repeat;
            background-size: cover;
            animation: 7s linear 0s infinite normal none running spin;
            background-position: center center;
        }

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

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

        .cloud img {
            animation: animar 40s linear infinite;
            transform: scale(0.5);
        }

        @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%;
        }

        .footer-bg img {
            width: 2100px;
        }

        .windmill {
            width: 10%;
        }

        .cloud {
            width: 45%;
        }

        .company-info .footer-title {
            font-size: 30px;
        }

        @media only screen and (max-width: 600px) {
            .footer-content {
                display: flex;
                flex-wrap: wrap;
                justify-content: space-between;
                gap: 15px 0;
                margin: 0;
                align-items: center;
                align-content: center;
                margin-bottom: 100px;
            }

            .footer-column {
                text-align: center;
                align-items: center;
            }

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

            .windmill {
                width: 0%;
            }

            .footer-column.quick-links {
                width: 48% !important;
                margin: 0;
            }

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

            .company-info .footer-title {
                font-size: 24px;
            }

            .footer-title {
                font-size: 18px;
            }

            .cloud {
                display: none;
                opacity: 0;
                visibility: hidden;
                height: 0;
                width: 0;
            }

            .footer-bg {
                bottom: -30px;
                right: -110px;
                left: -135px;
                width: 100%;
                height: auto;
            }

            .footer-bg img {
                width: 700px;
            }

            .windmill img {
                position: absolute;
                top: auto;
                left: 39px;
                bottom: -65px;
                width: 70px;
                height: 70px;
            }
        }
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: 40%;
    display: flex;
    align-items: center;
    position: relative;
    padding: 30px;
    justify-content: center;
}

.rihgt-60 {
    width: 60%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 30px;
}

.rihgt-60 {}

.right-top-fruit {
    align-items: center;
    display: flex;
    justify-content: flex-start;
    width: 100%;
    flex-direction: column;
}

.left-40 img:nth-child(1) {
    position: absolute;
    width: 150px;
    z-index: 99;
    top: 59px;
    left: 69px;
}

.left-40 img:nth-child(2) {
    position: absolute;
    width: 146px;
    right: 33%;
    top: 27%;
    z-index: 98;
}

.left-40 img:nth-child(3) {
    width: 181px;
    position: absolute;
    bottom: 40px;
    left: 40px;
    z-index: 99;
}

    
.left-40 img:nth-child(4) { 
    z-index: 98;
    position: absolute;
    width: 100px;
    right: 91px;
    top: 158px;
}

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

.left-40 img:nth-child(5) {
    margin-left: 0;
    z-index: 99;
    width: 100%;
}
.fruit-name h2 {
    font-size: 192px;
    font-weight: 600;
    color: #9864AF;
    margin-bottom: 0;
    margin-left: -13px;
    line-height: 210px;
    margin-bottom: 0;
}
.fruit-name h3 {
    font-size: 73px;
    font-weight: 600;
    color: #9864AF;
    margin: 0 0 0 -5px;
}
.section-friut-6 svg {
    width: 1000px;
    height: auto;
    position: absolute;
    left: -142px;
    z-index: 0;
}
.section-friut-6 path {
    fill: #9864af;
    animation: morph 15s ease-in-out infinite;
    transform-origin: center;
}
.fruit-image img {
    /* width: 418px; */
}
.content-slide1 .fruit-name h2 {
    /* font-size: 170px; */
    color: #92b632;
}
.content-slide1 .fruit-name h3 {
    font-size: 86px;
    color: #92b632;
    line-height: 100px;
    margin-bottom: 0;
}
.content-slide1 .section-friut-6 path {
    fill: #92b632;
}
.content-slide2 .fruit-name h2 {
    font-size: 90px;
    color: #a51117;
}
.content-slide2 .fruit-name h3 {
    font-size: 83px;
    color: #a51117;
    line-height: 85px;
}
.content-slide2 .section-friut-6 path {
    fill: #a51117;
}
.content-slide4 .fruit-name h2 {
    font-size: 154px;
    color: #e1b305;
}
.content-slide4 .fruit-name h3 {
    font-size: 88px;
    color: #e1b305;
    line-height: 148px;
}
.content-slide4 .section-friut-6 path {
    fill: #e1b305;
}
.content-slide5 .fruit-name h2 {
    font-size: 117px;
    color: #3f8bbc;
}
.content-slide5 .fruit-name h3 {
    font-size: 88px;
    color: #3f8bbc;
}
.content-slide5 .section-friut-6 path {
    fill: #3f8bbc;
}
.content-slide6 .fruit-name h2 {
    font-size: 84px;
    color: #d43829;
    line-height: 68px;
}
.content-slide6 .fruit-name h3 {
    font-size: 89px;
    color: #d43829;
    margin: 0 0 0 -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%;
    height: 100vh; /* تمام ارتفاع viewport */
    overflow: hidden;
}

.swiper-slide video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    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: 72px;
    line-height: 30px;
}
.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;
}

.swiper-horizontal>.swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal {
    top: 57%;
    bottom: auto;
    text-align: left;
    padding-left: 15%;
}
.swiper-pagination-bullet {
  position: relative;
  width: 70px;
  height: auto;
  text-align: left;
  border-radius: 0;
  opacity: 1;
  margin-right: 20px;
  background-color: transparent;
}
.swiper-pagination-bullet em {
  font-size: 15px;
  line-height: 28px;
  font-weight: bold;
  letter-spacing: -0.38px;
  color: #111;
  display: none;
}
.swiper-pagination-bullet i {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 5px;
  background-color: #157a3d;
}
.swiper-pagination-bullet b {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 2;
  width: 0%;
  height: 5px;
  background-color: #111111;
}

.swiper-pagination-bullet-active {
  background-color: transparent;
}
.swiper-pagination-bullet-active b {
  animation-name: countingBar;
  animation-duration: 3s;
  animation-timing-function: ease-in;
  animation-iteration-count: 1;
  animation-direction: alternate;
  animation-fill-mode: forwards;
}

@keyframes countingBar {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}


/* Pages Footer */
.page-footer .windmill img {
    position: absolute;
    top: -4px;
    left: -380px;
    width: 140px;
    height: 140px;
    animation: 10s linear 0s infinite normal none running spin;
}

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

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

.page-footer .cloud img {
    position: absolute;
    animation: animar 50s linear infinite;
    right: 100px;
    width: 400px;
    top: 0;
    opacity: .5;
}

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

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

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

.page-footer .cloud-2  img{
    left: 0;
    animation: animar 60s linear infinite;
}

.page-footer .sun {
    position: absolute;
    width: 180px;
    animation: shine 2s infinite ease-in-out;
    right: 30.5%;
    top: 115px;
}

@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);
    }
}

.tnp-subscription, form.tnp-subscription, form.tnp-profile {
    margin: 0 !important;
    max-width: 550px !important;
}

.tnp-subscription .tnp-field.tnp-field-button .tnp-submit {
    margin: 0;
    position: absolute;
    right: 10px;
    top: 5px;
    padding: 7px 20px;
    background-color: #92b632;
    border-radius: 0;
    color: #000;
    font-weight: 600;
}

.tnp.tnp-subscription .tnp-field {
    margin: 0;
}

.tnp-subscription input[type=email] {
    background-color: transparent;
    border: 2px solid #989898;
    border-radius: 0;
    padding: 10px;
}

.tnp-subscription .tnp-field.tnp-field-email label {
    display: none;
}

.tnp-subscription .tnp-field.tnp-privacy-field label {
    font-size: 14px;
    font-weight: 600;
    margin-top: 10px;
}


@media screen and (max-width: 1366px) {
    
    .page-footer .windmill img {
        top: 15px;
        left: -170px;
        width: 120px;
        height: 120px;
    }

    .page-footer .sun {
        width: 130px;
        right: 17%;
        top: 145px;
    }
}

@media screen and (max-width: 1200px) {
    
    .page-footer .windmill img {
        top: 14px;
        left: -108px;
        width: 100px;
        height: 100px;
    }
    
    .page-footer .sun {
        width: 100px;
        right: 34%;
        top: 115px;
    }
    
    .page-footer .cloud img {
        width: 300px;
        top: 30px;
    }
    
    .page-footer .cloud-2  img{
        top: 0;
    }
}

@media screen and (max-width: 1024px) {
    
    .page-footer .windmill img {
        top: 10px;
        left: -20px;
        width: 120px;
        height: 120px;
    }
    
    .page-footer .sun {
        width: 120px;
        right: 37%;
        top: 110px;
    }
    
    .page-footer .cloud img {
        width: 200px;
    }
    
}

@media screen and (max-width: 880px) {
    
    .page-footer .windmill img {
        top: 125px;
        left: 170px;
        width: 70px !important;
        min-width: 70px !important;
        height: 70px !important;
    }
        
    .page-footer .sun {
        width: 60px;
        right: 78%;
        top: 189px;
    }
    
}

@media screen and (max-width: 767px) {
    
    .page-footer .windmill img {
        top: 125px;
        left: 175px;
        width: 70px !important;
        min-width: 70px !important;
        height: 70px !important;
    }
    
    .page-footer .sun {
        width: 60px;
        right: 78%;
        top: 190px;
    }
    
    .tnp-subscription .tnp-field.tnp-field-button .tnp-submit {
        right: 5px;
        top: 5px;
        padding: 5px 10px;
        width: 85px;
        font-size: 13px;
    }
    
    .tnp-subscription .tnp-field.tnp-privacy-field label {
        font-size: 12px;
    }
    
    .tnp-subscription input[type=email] {
        padding: 7px !important;
        font-size: 14px !important;
    }

}