        @font-face {
            font-family: 'Kompot Display';
            /* Choose a name for your font */
            src: url('fonts/KompotDisplayDemo.otf') format('opentype');
            font-weight: normal;
            font-style: normal;
            font-display: swap;
            /* Optional: Controls font loading behavior */
        }

        @font-face {
            font-family: 'Waterlily Script';
            /* Choose a name for your font */
            src: url('fonts/Waterlily\ Script.ttf') format('truetype'),
                url('fonts/Waterlily\ Script.otf') format('opentype');
            font-weight: normal;
            font-style: normal;
            font-display: swap;
            /* Optional: Controls font loading behavior */
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Arial', sans-serif;
            line-height: 1.6;
            color: #333;
        }

        /* Navigation */
        .navbar {
            background-color: #E8DCC0;
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        }

        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .nav-logo {
            font-family: 'Kompot Display', sans-serif;
            font-size: 2rem;
            color: #333;
            text-decoration: none;
        }

        /* .nav-logo img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        } */

        .nav-menu {
            display: flex;
            list-style: none;
            margin: 0;
        }

        .nav-item {
            margin-left: 2rem;
        }

        .nav-link {
            color: #333;
            text-decoration: none;
            font-weight: 500;
            font-family: 'Kompot Display', sans-serif;
            transition: color 0.3s ease;
        }

        .nav-link:hover {
            color: #90c695;
        }

        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            background: none;
            border: none;
        }

        .hamburger span {
            width: 25px;
            height: 3px;
            background: #333;
            margin: 3px 0;
            transition: 0.3s;
        }
        /* Responsive Design */
        @media (max-width:768px) {
            nav ul {
                flex-direction: column;
                gap: 1rem;
            }

            nav .logo {
                margin-right: 0;
                margin-bottom: 1rem;
            }
            .hamburger {
                display: flex;
            }

            .nav-menu {
                position: fixed;
                left: -100%;
                top: 70px;
                flex-direction: column;
                background-color: #2c5530;
                width: 100%;
                text-align: center;
                transition: 0.3s;
                box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
                padding: 2rem 0;
            }

            .nav-menu.active {
                left: 0;
            }

            .nav-item {
                margin: 1rem 0;
            }
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, #f8f4e6 0%, #e8dcc0 100%);
            min-height: 80vh;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="80" cy="40" r="1.5" fill="%23ffffff" opacity="0.1"/><circle cx="40" cy="80" r="1" fill="%23ffffff" opacity="0.1"/></svg>');
            animation: float 20s ease-in-out infinite;
        }

        @keyframes float {

            0%,
            100% {
                transform: translateY(0px);
            }

            50% {
                transform: translateY(-20px);
            }
        }

        .hero-container {
            max-width: fit-content;
            margin: 0 auto;
            padding: 8rem 4rem 4rem;
            position: relative;
            z-index: 2;
        }

        .hero-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
        }

        .hero-text h6 {
            font-size: 0.9rem;
            width: 100%;
            background: linear-gradient(45deg, #90c695, #2c5530);
            color: white;
            padding: 0.5rem 1rem;
            border-radius: 5px;
            display: inline-block;
            margin-bottom: 1rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-weight: 600;
        }

        .hero-text h1 {
            font-family: 'Kompot Display', cursive;
            font-size: 2.3rem;
            font-weight: 700;
            color: #2c5530;
            line-height: 1.2;
            background: linear-gradient(45deg, #2c5530, #90c695);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-title {
            font-family: 'Kompot Display', cursive;
        }

        .hero-text p {
            font-size: 1rem;
            color: #666;
            margin-bottom: 2rem;
            line-height: 1.8;
        }

        .cta-buttons {
            display: flex;
            gap: 1rem;
            margin-bottom: 2rem;
            flex-wrap: wrap;
        }

        .cta-request {
            background: linear-gradient(45deg, #90c695, #2c5530);
            color: white;
            height: 36px;
            border-radius: 5px;
            border: none;
            padding: 1rem 2rem 2rem 1rem;
            font-size: 15px;
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            box-shadow: 0 10px 30px rgba(144, 198, 149, 0.3);
        }

        .cta-request:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(144, 198, 149, 0.4);
        }

        .cta-phone {
            background-color: transparent;
            color: #333;
            padding: 1rem 2rem;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            border: none;
        }

        .cta-phone:hover {
            background: #e8dcc0;
            color: #2c5530;
            transform: translateY(-3px);
        }

        .hero-testimonials {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
            margin-top: 2rem;
        }

        .certificate,
        .accolades {
            padding: 0 0 0 0;
            border-radius: 5px;
            backdrop-filter: blur(10px);
            transition: all 0.3s ease;
        }

        .certificate:hover,
        .accolades:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        }

        .certificate button,
        .accolades button {
            background-color: transparent;
            color: #2c5530;
            padding: 0 0 0 0;
            border: none;
            font-size: 1rem;
            font-weight: 600;
            margin-bottom: 0.5rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .certificate p,
        .accolades p {
            color: #666;
            font-size: 0.9rem;
            text-align: left;
        }

        .hero-image {
            position: relative;
        }

        .hero-image::before {
            content: '';
            position: absolute;
            top: -20px;
            left: -20px;
            right: 20px;
            bottom: 20px;
            background: linear-gradient(45deg, #90c695, #2c5530);
            border-radius: 20px;
            z-index: -1;
            opacity: 0.1;
        }

        .hero-image img {
            width: 100%;
            height: 400px;
            object-fit: cover;
            border-radius: 20px;
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
            transition: all 0.3s ease;
        }

        .hero-image:hover img {
            transform: scale(1.02) rotate(1deg);
        }
        @media (max-width:768px) {
            .hero-title {
                width: 250px;
            }
            .hero p {
                font-size: 1.2rem;
            }
            .hero-testimonials {
                grid-template-columns: 1fr;
            }
            /* .cta-buttons {
                justify-content: center;
            } */
        }
        @media (max-width:480px) {
            .hero-title {
                width: 200px;
            }
            .hero-content{
                display: block;
            }
            .cta-phone{
                padding: 0 0 0 0;
            }
        }

        /* Philosophy Section */
        .philosophy {
            padding: 6rem 2rem;
            background: linear-gradient(135deg, #ffffff 0%, #f8f8f8 100%);
            position: relative;
        }

        .philosophy-container {
            max-width: 1200px;
            margin: 0 auto;
            text-align: center;
            margin-bottom: 4rem;
        }

        .philosophy h2 {
            font-size: 3rem;
            color: #2c5530;
            margin-bottom: 2rem;
            font-weight: 700;
        }

        .philosophy p {
            font-size: 1.2rem;
            color: #666;
            line-height: 1.8;
            max-width: 800px;
            margin: 0 auto;
        }

        .philosophy-icons-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
            max-width: 1200px;
            margin: 4rem auto;
        }

        .philosophy-icons {
            padding: 2rem;
            border-radius: 20px;
            text-align: center;
            transition: all 0.3s ease;
        }

        .philosophy-icons:hover {
            transform: translateY(-10px);
        }

        .philosophy-icons i {
            font-size: 1.5rem;
            color: #046b0e67;
            background-color: #c8ebcc;
            text-align: center;
            padding: .75rem .5rem .5rem .5rem;
            border-radius: 100px;
            width: 3rem;
            height: 3rem;
        }

        .philosophy-icons h3 {
            font-size: 1rem;
            color: #2c5530;
            margin-bottom: 1rem;
            font-weight: 600;
        }

        .philosophy-icons p {
            color: #666;
            font-size: 1rem;
            line-height: 1.6;
        }

        .philosophy-image {
            text-align: center;
            margin-top: 4rem;
        }

        .philosophy-image img {
            width: 100%;
            max-width: 800px;
            height: 400px;
            object-fit: cover;
            border-radius: 20px;
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
        }
        @media (max-width:768px) {
            .philosophy h2,
            .products h2 {
                font-size: 2rem;
            }
        }
        @media (max-width:480px){
            .philosophy-icons-container{
                display: block;
            }
        }

        /* Highlights Section */
        .highlights {
            padding: 4rem 1rem;
            max-width: 1200px;
            margin: 0 auto;
            /* background: linear-gradient(rgba(193, 255, 114, 0.31), rgba(255, 255, 255, 0.1)); */
        }

        .highlights h2 {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 3rem;
            color: #333;
            font-family: 'Kompot Display', sans-serif;
        }

        .highlights-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            justify-items: center;
        }

        .highlight {
            background: lavender;
            padding: 2rem;
            border-radius: 10px;
            text-align: center;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            max-width: 350px;
        }

        .highlight:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
        }

        .highlight-icon {
            font-size: 4rem;
            color: #65ad09;
            margin-bottom: 1rem;
        }

        .highlight h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: #333;
            font-family: 'Kompot Display', sans-serif;
        }

        .highlight p {
            font-size: 1rem;
            line-height: 1.6;
            color: #666;
        }
        @media (max-width:768px){
.highlights-grid {
                grid-template-columns: 1fr;
            }
        }
        @media (max-width:480px){
            .highlights h2 {
                font-size: 2rem;
            }

            .highlight-icon {
                font-size: 3rem;
            }
        }
        /*Products Section*/
        .products {
            padding: 4rem 2rem;
            background: linear-gradient(135deg, #e8dcc0 0%, #f8f4e6 50%, #e1d5b7 100%);
            width: 100%;
            margin: 0 0 50px 0;
            position: relative;
            overflow: hidden;
        }

        .products::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="%23ffffff" opacity="0.1"/><circle cx="80" cy="40" r="1.5" fill="%23ffffff" opacity="0.1"/><circle cx="40" cy="80" r="2.5" fill="%23ffffff" opacity="0.1"/></svg>');
            animation: float 15s ease-in-out infinite;
        }

        @keyframes float {

            0%,
            100% {
                transform: translateY(0px);
            }

            50% {
                transform: translateY(-15px);
            }
        }

        .products h2 {
            font-family: 'Kompot Display', sans-serif;
            text-align: center;
            font-size: 2.8rem;
            color: #2c5530;
            margin-bottom: 1rem;
            font-weight: 700;
            position: relative;
            z-index: 2;
        }



        .produce-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 2rem;
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }

        .card {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(15px);
            padding: 2rem;
            border-radius: 20px;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
            text-align: left;
            border: 1px solid rgba(255, 255, 255, 0.3);
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }

        .card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #90c695, #2c5530, #90c695);
            transform: scaleX(0);
            transition: transform 0.4s ease;
        }

        .card:hover::before {
            transform: scaleX(1);
        }

        .card:hover {
            transform: translateY(-10px) scale(1.02);
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
            background: rgba(255, 255, 255, 0.98);
        }

        .card i {
            font-size: 3.5rem;
            background: linear-gradient(45deg, #90c695, #2c5530);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 1.5rem;
            display: block;
            transition: all 0.3s ease;
        }

        .card:hover i {
            transform: scale(1.1) rotate(5deg);
        }

        .card h3 {
            font-family: 'Kompot Display', sans-serif;
            font-size: 1.6rem;
            color: #2c5530;
            margin-bottom: 1rem;
            font-weight: 700;
            line-height: 1.3;
        }

        .card>p {
            color: #666;
            line-height: 1.7;
            margin-bottom: 2rem;
            font-size: 1rem;
        }

        .produce-stats {
            display: grid;
            grid-template-columns: 90px 90px;

            margin-top: 2rem;
            padding-top: 1.5rem;
            border-top: 2px solid #f0f0f0;
        }

        .produce-elements {
            transition: all 0.3s ease;
            width: fit-content;
        }

        .produce-elements:hover {
            transform: translateY(-3px);
        }

        .produce-elements h6 {
            font-weight: 700;
            color: #2c5530;
            margin-bottom: 0.5rem;
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .produce-elements p {
            background: linear-gradient(135deg, #90c695, #a8d4ad);
            color: #2c5530;
            padding: 1px 1px 1px 4px;
            border-radius: 5px;
            margin: 0;
            width: 75px;
            font-size: 0.75rem;
            transition: all 0.3s ease;
        }

        .produce-elements:hover p {
            transform: scale(1.05);
            box-shadow: 0 8px 25px rgba(144, 198, 149, 0.4);
        }

        .certification-badge {
            position: absolute;
            top: 15px;
            right: 15px;
            background: linear-gradient(45deg, #ffd700, #ffed4a);
            color: #2c5530;
            padding: 0.4rem 0.8rem;
            border-radius: 15px;
            font-size: 0.7rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            box-shadow: 0 3px 10px rgba(255, 215, 0, 0.3);
        }

        .card-footer {
            margin-top: 1.5rem;
            padding-top: 1rem;
            border-top: 1px solid #eee;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .harvest-season {
            color: #666;
            font-size: 0.85rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .harvest-season i {
            font-size: 1rem;
            color: #90c695;
        }

        .cta-button {
            background: linear-gradient(45deg, #90c695, #2c5530);
            color: white;
            padding: 0.6rem 1.2rem;
            border-radius: 20px;
            border: none;
            font-size: 0.85rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .cta-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(144, 198, 149, 0.4);
        }

        .quality-indicators {
            gap: 0.5rem;
            margin-top: 1rem;
            flex-wrap: wrap;
        }

        .quality-tag {
            background: rgba(144, 198, 149, 0.1);
            color: #2c5530;
            padding: 0.3rem 0.8rem;
            border-radius: 5px;
            width: fit-content;
            font-size: 0.75rem;
            font-weight: 600;
            border: 1px solid rgba(144, 198, 149, 0.3);
        }

        /* Responsive adjustments */
        @media (max-width: 768px) {
            .products {
                padding: 3rem 1rem;
            }

            .products h2 {
                font-size: 2.2rem;
            }

            .produce-cards {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .card {
                padding: 1.5rem;
            }

            .produce-stats {
                grid-template-columns: 1fr;
                gap: 1rem;
            }
        }
        @media (max-width: 480px) {
            
            .produce-stats {
                grid-template-columns: 90px 90px;
                width: 100%;
            }
        }

        /* Loading animation */
        .card {
            animation: slideUp 0.6s ease forwards;
            opacity: 0;
            transform: translateY(30px);
        }

        .card:nth-child(1) {
            animation-delay: 0.1s;
        }

        .card:nth-child(2) {
            animation-delay: 0.2s;
        }

        .card:nth-child(3) {
            animation-delay: 0.3s;
        }

        @keyframes slideUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Farmer Info Section */
        .farmer-info {
            background-color: lavender;
            padding: 5rem 1rem;
            margin: 0 10px 30px 10px;
        }

        .farmer-container {
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
        }

        .farmer-icon {
            width: 200px;
            height: 200px;
            border-radius: 50%;
            background-color: lavender;
            margin: 0 auto -5rem auto;
            padding: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }

        .farmer-icon img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 50%;
        }

        .farmer-info h2 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            color: #333;
            font-family: 'Kompot Display', sans-serif;
        }

        .farmer-info p {
            font-size: 1.1rem;
            line-height: 1.8;
            color: #666;
            max-width: 600px;
            margin: 0 auto;
        }
         @media (max-width: 768px) {
            .farmer-icon {
                width: 150px;
                height: 150px;
            }

            .farmer-icon i {
                font-size: 4rem;
            }

            .farmer-info h2 {
                font-size: 2rem;
            }

        }

        /* Footer */
        .footer {
            background: linear-gradient(135deg, #1a3a1e 0%, #2c5530 100%);
            color: white;
            padding: 4rem 2rem 2rem;
        }

        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .footer-content-wrapper {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            margin-bottom: 3rem;
        }

        .footer-inquiry-form {
            background: rgba(255, 255, 255, 0.1);
            padding: 2rem;
            border-radius: 20px;
            backdrop-filter: blur(10px);
        }

        .footer-inquiry-form h2 {
            font-size: 2rem;
            margin-bottom: 1rem;
            color: #90c695;
        }

        .footer-inquiry-form p {
            margin-bottom: 2rem;
            opacity: 0.9;
        }

        .footer-inquiry-form form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .footer-inquiry-form input,
        .footer-inquiry-form textarea {
            padding: 1rem;
            border: none;
            border-radius: 10px;
            background: rgba(255, 255, 255, 0.1);
            color: white;
            font-size: 1rem;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .footer-inquiry-form input::placeholder,
        .footer-inquiry-form textarea::placeholder {
            color: rgba(255, 255, 255, 0.7);
        }

        .footer-inquiry-form textarea {
            min-height: 120px;
            resize: vertical;
        }

        .footer-inquiry-form button {
            background: linear-gradient(45deg, #90c695, #2c5530);
            color: white;
            padding: 1rem 2rem;
            border: none;
            border-radius: 10px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .footer-inquiry-form button:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(144, 198, 149, 0.3);
        }

        .footer-content {
            display: grid;
            /* grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); */
            gap: 2rem; 
        } 

        .footer-section h3 {
            color: #90c695;
            font-size: 1.3rem;
            margin-bottom: 1rem;
            font-weight: 600;
        }

        .footer-section p {
            margin-bottom: 0.5rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            opacity: 0.9;
        }

        .footer-section i {
            color: #90c695;
            width: 20px;
        }

        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.2);
            margin-top: 3rem;
        }

        .footer-bottom p {
            opacity: 0.8;
            font-size: 0.9rem;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .footer-content {
                grid-template-columns: 1fr;
                text-align: center;
            }
            .footer-content-wrapper {
                grid-template-columns: 1fr;
            }

            
        }

        @media (max-width: 480px) {
            .footer-section h3{
                text-align: left;
            }
            

            
        }
        /* Smooth scrolling */
        html {
            scroll-behavior: smooth;
        }

        /* Loading animation for images */
        img {
            transition: opacity 0.3s ease;
        }

        img:not([src]) {
            opacity: 0;
        }