
        :root {
    --primary-green: #2e7d32;
    --secondary-green: #4caf50;
    --light-green: #8bc34a;
    --dark-green: #1b5e20;
    --earth-brown: #795548;
    --light-tan: #efebe9;
}

body {
    /* font-family: 'Merriweather', serif; */
    font-family: 'Poppins', sans-serif; 
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    padding-top: 80px;
}

h1, h2, h3, h4, h5, h6, .nav-link {
    font-family: 'Montserrat', sans-serif;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Lora', serif;   
    font-weight: 600;
    color: #2e7d32;   
}
p,a{
    letter-spacing: 0.5px;
}



#hero-div{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
        
        .products-hero {
            position: relative;
            min-height: 80vh;
            display: flex;
            align-items: center;
            overflow: hidden;
            background: linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9)), url('https://images.unsplash.com/photo-1518495973542-4542c06a5843?ixlib=rb-4.0.3&auto=format&fit=crop&w=1350&q=80') no-repeat center center/cover;
        }
        
        .floating-shapes {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            z-index: 1;
        }
        
        .shape {
            position: absolute;
            opacity: 0.1;
            background-color: var(--primary-green);
            border-radius: 50%;
        }
        
        .shape-1 {
            width: 150px;
            height: 150px;
            top: 10%;
            left: 5%;
            animation: float 15s ease-in-out infinite;
        }
        
        .shape-2 {
            width: 100px;
            height: 100px;
            top: 70%;
            left: 10%;
            animation: float 12s ease-in-out infinite reverse;
        }
        
        .shape-3 {
            width: 80px;
            height: 80px;
            top: 20%;
            right: 10%;
            animation: float 18s ease-in-out infinite;
        }
        
        .shape-4 {
            width: 120px;
            height: 120px;
            bottom: 10%;
            right: 5%;
            animation: float 14s ease-in-out infinite reverse;
        }
        
        .hero-content {
            position: relative;
            z-index: 2;
            padding: 60px 0;
            display: block;
            margin: auto;
        }
        
        .hero-title {
            font-size: 3.5rem;
            font-weight: 700;
            color: var(--dark-green);
            margin-bottom: 25px;
            animation: fadeInUp 1s ease-out;
        }
        
        .hero-subtitle {
            font-size: 1.5rem;
            color: var(--earth-brown);
            margin-bottom: 40px;
            animation: fadeInUp 1.2s ease-out;
        }
        
        .hero-intro {
            color: #795548;
            font-size: 1.2rem;
            line-height: 1.8;
            margin-bottom: 40px;
            max-width: 800px;
            animation: fadeInUp 1.4s ease-out;
        }
        
        .hero-features {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            margin-bottom: 50px;
            animation: fadeInUp 1.6s ease-out;
        }
        
        .feature-item {
            display: flex;
            justify-content: center;
            align-items: center;
            background: white;
            padding: 15px 25px;
            border-radius: 50px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
            /* transition: transform 0.3s ease; */
        }
        
        /* .feature-item:hover {
            transform: scale(1.2);
        } */
        
        .feature-icon {
            width: 40px;
            height: 40px;
            background: var(--primary-green);
            border-radius: 50%;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            /* display: block;
            margin: auto; */
            color: white;
            margin-right: 15px;
            margin-top: 20px;
            font-size: 1.2rem;
        }
        
        .feature-text {
            font-weight: 500;
            color: var(--dark-green);
            align-self: center;
        }
        
        .cta-buttons {
            animation: fadeInUp 1.8s ease-out;
        }
        
        .btn-primary {
            background-color: var(--primary-green);
            border-color: var(--primary-green);
            padding: 15px 40px;
            font-weight: 600;
            border-radius: 50px;
            margin-right: 15px;
            transition: all 0.3s ease;
        }
        
        .btn-primary:hover {
            background-color: var(--dark-green);
            border-color: var(--dark-green);
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
        }
        
        .btn-outline-primary {
            border-color: var(--primary-green);
            color: var(--primary-green);
            padding: 15px 40px;
            font-weight: 600;
            border-radius: 50px;
            transition: all 0.3s ease;
        }
        
        .btn-outline-primary:hover {
            background-color: var(--primary-green);
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
        }
        
        /* Animations */
        @keyframes float {
            0% {
                transform: translateY(0) rotate(0deg);
            }
            50% {
                transform: translateY(-20px) rotate(10deg);
            }
            100% {
                transform: translateY(0) rotate(0deg);
            }
        }
        
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        /* Responsive adjustments */
        @media (max-width: 992px) {
            .hero-title {
                font-size: 2.8rem;
            }
            
            .hero-subtitle {
                font-size: 1.3rem;
            }
            
            .hero-intro {
                font-size: 1.1rem;
            }
        }
        
        @media (max-width: 768px) {
            .products-hero {
                min-height: auto;
                padding: 80px 0;
            }
            
            .hero-title {
                font-size: 2.3rem;
            }
            
            .hero-subtitle {
                font-size: 1.2rem;
            }
            
            .feature-item {
                width: 100%;
            }
            
            .cta-buttons .btn {
                display: block;
                width: 100%;
                margin-bottom: 15px;
            }
        }
        
        @media (max-width: 576px) {
            .hero-title {
                font-size: 2rem;
            }
            
            .hero-subtitle {
                font-size: 1.1rem;
            }
            
            .hero-intro {
                font-size: 1rem;
            }
            
            .feature-item {
                padding: 12px 20px;
            }
            
            .feature-icon {
                width: 35px;
                height: 35px;
                font-size: 1rem;
            }
            #explore-btn,#contact-btn{
                max-width: 100%;
                display: block;
                margin: auto;
                margin-top: 5%;
                letter-spacing: 0.5px;

            }
        }
    

        #product-img-1 {
             background:  url('/images/eucalyptus-grandis-img.jpeg') no-repeat center center/cover;
        }
         #product-img-2 {
             background:  url('/images/eucalyptus-img.jpeg') no-repeat center center/cover;
        }
         #product-img-3 {
             background:  url('/images/eucalyptus-urophylla-img.jpg') no-repeat center center/cover;
        }
         #product-img-4 {
             background:  url('/images/eucalyptus-camal-img.webp') no-repeat center center/cover;
        }
         #product-img-5 {
             background:  url('/images/eucalyptus-nitens-img.jpg') no-repeat center center/cover;
        }
         #product-img-6 {
             background:  url('/images/eucalyptus-globulus-img.jpg') no-repeat center center/cover;
        }














     /* Featured variety section */
        
        .varieties-section {
            padding: 100px 0;
            background-color: #fff;
        }
        
        .section-title {
            position: relative;
            margin-bottom: 50px;
            text-align: center;
            color: var(--dark-green);
        }
        
        .section-title:after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background-color: var(--primary-green);
        }
        
        .variety-card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
            transition: all 0.4s ease;
            height: 100%;
            margin-bottom: 30px;
            opacity: 1;
            transform: translateY(50px);
        }
        
        .variety-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 45px rgba(0, 0, 0, 0.15);
        }
        
        .variety-header {
            position: relative;
            padding: 10px 10px 7px;
            background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
            color: white;
            text-align: center;
        }
        
        .variety-icon {
            font-size: 2.5rem;
            margin-bottom: 15px;
            display: block;
            margin-bottom: 0px;
        }
        
        .variety-name {
            color: #efebe9;
            font-size: 1.8rem;
            margin-bottom: 0px;
        }
        
        .variety-type {
            font-style: italic;
            opacity: 0.9;
        }
        
        .variety-image {
            height: 350px;
            overflow: hidden;
        }
        
        .variety-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .variety-card:hover .variety-image img {
            transform: scale(1.1);
        }
        
        .variety-content {
            padding: 30px;
        }
        
        .variety-description {
            color: #555;
            line-height: 1.7;
            margin-bottom: 25px;
        }
        
        .features-title {
            color: var(--dark-green);
            margin-bottom: 20px;
            font-size: 1.3rem;
            position: relative;
            padding-bottom: 10px;
        }
        
        .features-title:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 2px;
            background-color: var(--primary-green);
        }
        
        .feature-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        
        .feature-item {
            display: flex;
            /* align-items: flex-start; */
            flex-direction: row;
            justify-content: flex-start;
            align-items: center;
            margin-bottom: 15px;
            padding: 15px;
            background-color: var(--light-tan);
            border-radius: 8px;
            transition: transform 0.3s ease;
        }
        
        .feature-item:hover {
            transform: translateX(5px);
        }
        
        .feature-icon {
            min-width: 30px;
            color: var(--primary-green);
            margin-right: 15px;
            font-size: 1.2rem;
        }
        .feature-icon i{
            color: #efebe9;
        }
        
        .feature-text {
            color: #555;
            margin-bottom: 0;
        }
        
        .cta-button {
            display: block;
            width: 100%;
            padding: 15px;
            background-color: var(--primary-green);
            color: white;
            text-align: center;
            border-radius: 8px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            margin-top: 25px;
        }
        
        .cta-button:hover {
            background-color: var(--dark-green);
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            color: white;
        }
        
        /* Animation */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .variety-card.animated {
            animation: fadeInUp 0.8s ease-out forwards;
        }
        
        .variety-card:nth-child(1) {
            animation-delay: 0.2s;
        }
        
        .variety-card:nth-child(2) {
            animation-delay: 0.4s;
        }
        
        .variety-card:nth-child(3) {
            animation-delay: 0.6s;
        }
        
        /* Responsive adjustments */
        @media (max-width: 992px) {
            .variety-card {
                margin-bottom: 30px;
            }
        }
        
        @media (max-width: 768px) {
            .varieties-section {
                padding: 80px 0;
            }
            
            .variety-header {
                padding: 25px 25px 15px;
            }
            
            .variety-content {
                padding: 25px;
            }
            
            .variety-image {
                height: 200px;
            }
        }
        
        @media (max-width: 576px) {
            .variety-name {
                font-size: 1.5rem;
            }
            
            .feature-item {
                padding: 12px;
            }
        }
   


        
        .more-varieties-section {
            padding: 100px 0;
            background-color: var(--light-tan);
        }
        
        .section-title {
            position: relative;
            margin-bottom: 50px;
            text-align: center;
            color: var(--dark-green);
        }
        
        .section-title:after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background-color: var(--primary-green);
        }
        
        .variety-card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
            transition: all 0.4s ease;
            height: 100%;
            margin-bottom: 30px;
            margin-top: 4rem;
            opacity: 1;
            transform: translateY(10px);
        }
        
        .variety-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 45px rgba(0, 0, 0, 0.15);
        }
        
        .variety-header {
            position: relative;
            padding: 10px 10px 7px;
            background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
            color: white;
            text-align: center;
        }
        
        .variety-icon {
            font-size: 2.5rem;
            margin-bottom: 0px;
            display: block;
        }
        
        .variety-name {
            font-size: 1.8rem;
            margin-bottom: 0px;
        }
        
        .variety-type {
            font-style: italic;
            opacity: 0.9;
        }
        
        .variety-image {
            height: 250px;
            overflow: hidden;
        }
        
        .variety-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .variety-card:hover .variety-image img {
            transform: scale(1.1);
        }
        
        .variety-content {
            padding: 30px;
        }
        
        .variety-description {
            color: #555;
            line-height: 1.7;
            margin-bottom: 25px;
        }
        
        .features-title {
            color: var(--dark-green);
            margin-bottom: 20px;
            font-size: 1.3rem;
            position: relative;
            padding-bottom: 10px;
        }
        
        .features-title:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 2px;
            background-color: var(--primary-green);
        }
        
        .feature-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        
        .feature-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 15px;
            padding: 15px;
            background-color: var(--light-tan);
            border-radius: 8px;
            transition: transform 0.3s ease;
        }
        
        .feature-item:hover {
            transform: translateX(5px);
        }
        
        .feature-icon {
            min-width: 30px;
            color: var(--primary-green);
            margin-right: 15px;
            font-size: 1.2rem;
        }
        
        .feature-text {
            color: #555;
            margin-bottom: 0;
        }
        
        .cta-button {
            display: block;
            width: 100%;
            padding: 15px;
            background-color: var(--primary-green);
            color: white;
            text-align: center;
            border-radius: 8px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            margin-top: 25px;
        }
        
        .cta-button:hover {
            background-color: var(--dark-green);
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            color: white;
        }
        
        /* Animation */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .variety-card.animated {
            animation: fadeInUp 0.8s ease-out forwards;
        }
        
        .variety-card:nth-child(1) {
            animation-delay: 0.2s;
        }
        
        .variety-card:nth-child(2) {
            animation-delay: 0.4s;
        }
        
        .variety-card:nth-child(3) {
            animation-delay: 0.6s;
        }
        
        .variety-card:nth-child(4) {
            animation-delay: 0.8s;
        }
        
        /* Responsive adjustments */
        @media (max-width: 992px) {
            .variety-card {
                margin-bottom: 30px;
            }
        }
        
        @media (max-width: 768px) {
            .more-varieties-section {
                padding: 80px 0;
            }
            
            .variety-header {
                padding: 25px 25px 15px;
            }
            
            .variety-content {
                padding: 25px;
            }
            
            .variety-image {
                height: 200px;
            }
        }
        
        @media (max-width: 576px) {
            .variety-name {
                font-size: 1.5rem;
            }
            
            .feature-item {
                padding: 12px;
            }
        }
    

   

/* Why choose our section */
 .benefits-section {
            padding: 100px 0;
            background: linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9)), url('https://images.unsplash.com/photo-1416879595882-3373a0480b5b?ixlib=rb-4.0.3&auto=format&fit=crop&w=1350&q=80') no-repeat center center/cover;
            position: relative;
        }
        
        .section-title {
            position: relative;
            margin-bottom: 50px;
            text-align: center;
            color: var(--dark-green);
        }
        
        .section-title:after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background-color: var(--primary-green);
        }
        
        .benefits-container {
            position: relative;
            z-index: 2;
        }
        
        .benefit-card {
            background: white;
            border-radius: 15px;
            padding: 40px 30px;
            text-align: center;
            height: 100%;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
            opacity: 1;
            transform: translateY(20px);
        }
        
        .benefit-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 5px;
            height: 0;
            background: linear-gradient(to bottom, var(--primary-green), var(--secondary-green));
            transition: height 0.5s ease;
        }
        
        .benefit-card:hover::before {
            height: 100%;
        }
        
        .benefit-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 45px rgba(0, 0, 0, 0.15);
        }
        
        .benefit-icon {
            width: 90px;
            height: 90px;
            background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            font-size: 2.5rem;
            color: white;
            box-shadow: 0 10px 25px rgba(46, 125, 50, 0.3);
            transition: all 0.3s ease;
            position: relative;
            z-index: 2;
        }
        
        .benefit-card:hover .benefit-icon {
            transform: scale(1.1) rotate(5deg);
            box-shadow: 0 15px 30px rgba(46, 125, 50, 0.4);
        }
        
        .benefit-content {
            position: relative;
            z-index: 2;
        }
        
        .benefit-title {
            color: var(--dark-green);
            margin-bottom: 20px;
            font-size: 1.5rem;
            transition: color 0.3s ease;
        }
        
        .benefit-card:hover .benefit-title {
            color: var(--primary-green);
        }
        
        .benefit-description {
            color: #555;
            line-height: 1.7;
            margin-bottom: 0;
            transition: color 0.3s ease;
        }
        
        .benefit-card:hover .benefit-description {
            color: #333;
        }
        
        .floating-particles {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            z-index: 1;
            overflow: hidden;
        }
        
        .particle {
            position: absolute;
            background-color: var(--light-green);
            opacity: 0.2;
            border-radius: 50%;
        }
        
        .particle-1 {
            width: 120px;
            height: 120px;
            top: 10%;
            right: 5%;
            animation: float 15s ease-in-out infinite;
        }
        
        .particle-2 {
            width: 80px;
            height: 80px;
            bottom: 20%;
            left: 5%;
            animation: float 12s ease-in-out infinite reverse;
        }
        
        /* Animation */
        @keyframes float {
            0% {
                transform: translateY(0) rotate(0deg);
            }
            50% {
                transform: translateY(-20px) rotate(10deg);
            }
            100% {
                transform: translateY(0) rotate(0deg);
            }
        }
        
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .benefit-card.animated {
            animation: fadeInUp 0.8s ease-out forwards;
        }
        
        .benefit-card:nth-child(1) {
            animation-delay: 0.2s;
        }
        
        .benefit-card:nth-child(2) {
            animation-delay: 0.4s;
        }
        
        .benefit-card:nth-child(3) {
            animation-delay: 0.6s;
        }
        
        .benefit-card:nth-child(4) {
            animation-delay: 0.8s;
        }
        
        /* Responsive adjustments */
        @media (max-width: 992px) {
            .benefit-card {
                margin-bottom: 30px;
            }
        }
        
        @media (max-width: 768px) {
            .benefits-section {
                padding: 80px 0;
            }
            
            .benefit-card {
                padding: 30px 20px;
            }
            
            .benefit-icon {
                width: 80px;
                height: 80px;
                font-size: 2rem;
            }
        }
        
        @media (max-width: 576px) {
            .benefit-title {
                font-size: 1.3rem;
            }
            
            .benefit-description {
                font-size: 0.95rem;
            }
        }
   