/* --base-font: 'Lato', system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  --heading-font: 'Montserrat', 'Poppins', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif; */
: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;
}

.navbar {
    background-color: var(--secondary-green);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
}

.navbar-brand {
    font-weight: 700;
    color: var(--earth-brown);
}

.nav-link {
    font-weight: 500;
    margin: 0 10px;
    position: relative;
}

.nav-item a {
    color: #efebe9;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-green);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* HERO SECTION WITH SLIDESHOW ANIMATION */
.hero-section {
    position: relative;
    height: 80vh;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    background-size: cover;
    background-position: center;
}

.hero-slide.active {
    opacity: 1;
}

.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7));
}

.hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
    color: #efebe9;
    text-align: center;
}


.hero-content h1 {
    color: #efebe9;
    font-family: 'Lato', system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    animation: fadeInUp 1.5s ease-out forwards;
}
.hero-content p{
     animation: fadeInUp 1.5s ease-out forwards;
}

.hero-text-hero {
  font-size: 1.25rem;
  max-width: 700px;
  margin: 30px auto;
  line-height: 1.6;
  text-align: center;
  color: #efebe9;
  opacity: 0;
  animation: fadeInUp 1.5s ease-out forwards;
}

@media (max-width: 840px) {
    .hero-content h1{
        margin-top: -25vh;
    }
}
@media (max-width: 576px) {
    .hero-text-hero{
        display: none;
    }
    .hero-content h1{
        margin-top: -20vh;
    }
}
/* Simple fade + slide-up animation */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

#hero-under{
    color: #795548;
}



.hero-controls {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    z-index: 10;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.hero-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.hero-indicator.active {
    background-color: white;
    transform: scale(1.2);
}

#call-btn{
    margin-left: 3%;
}
#call-btn:hover{
    color: #1b5e20;
}


.section-padding {
    padding: 80px 0;
}

.bg-light-green {
    background-color: var(--light-tan);
}

.card {
    border: none;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 20px;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.btn-primary {
    background-color: var(--primary-green);
    border-color: var(--primary-green);
    padding: 12px 30px;
    font-weight: 600;
}

.btn-primary:hover {
    background-color: var(--dark-green);
    border-color: var(--dark-green);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--primary-green);
    margin-bottom: 20px;
}

.page-section.active {
    display: block;
    animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.timeline {
    position: relative;
    padding-left: 50px;
    margin-top: 30px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    height: 100%;
    width: 2px;
    background-color: var(--primary-green);
}

.timeline-item {
    position: relative;
    margin-bottom: 30px;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -40px;
    top: 0;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: var(--primary-green);
}

.product-image {
    height: 200px;
    background-color: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-green);
}

.gallery-item {
    margin-bottom: 20px;
    overflow: hidden;
    border-radius: 10px;
    height: 250px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

footer {
    background-color: var(--dark-green);
    color: white;
    padding: 60px 0 20px;
}

.footer-links a {
    color: white;
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--light-green);
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    transition: background-color 0.3s ease;
}

.social-icon:hover {
    background-color: var(--secondary-green);
}

.faq-item {
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
}

.faq-question {
    font-weight: 600;
    cursor: pointer;
}

.contact-info-item {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background-color: var(--primary-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    margin-right: 15px;
}


footer {
    position: relative;
    color: #fff;
    padding: 60px 0;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.6); /* fallback for old browsers */
}

footer::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url('https://non-gmoreport.com/wp-content/uploads/2018/10/Nepalese-farmers-in-rice-field-1200x801.jpg') center/cover no-repeat;
    filter: blur(0.5px) brightness(0.6);
    z-index: -1;
}

footer .container {
    position: relative; 
    z-index: 1;
}







    /* About Section */
        
        .about-section {
            padding: 100px 0;
            background-color: #fff;
        }
        
        .section-title {
            position: relative;
            margin-bottom: 50px;
            text-align: center;
            color: var(--primary-green);
        }
        
        .section-title:after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background-color: var(--primary-green);
        }
        
        .about-content {
            margin-bottom: 50px;
        }
        
        .about-text {
            color: #795548;
            font-size: 1.1rem;
            line-height: 1.8;
            margin-bottom: 30px;
        }
        
        .highlights-container {
            background-color: var(--light-tan);
            border-radius: 15px;
            padding: 40px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
        }
        
        .highlight-item {
            text-align: center;
            padding: 25px 15px;
            transition: transform 0.3s ease;
        }
        
        .highlight-item:hover {
            transform: translateY(-5px);
        }
        
        .highlight-icon {
            font-size: 2.5rem;
            color: var(--primary-green);
            margin-bottom: 20px;
        }
        
        .highlight-number {
            font-size: 2.2rem;
            font-weight: 700;
            color: var(--dark-green);
            margin-bottom: 10px;
        }
        
        .highlight-text {
            font-size: 1.1rem;
            color: #555;
        }
        
        .about-image {
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
            transition: transform 0.5s ease;
        }
        
        .about-image:hover {
            transform: scale(1.03);
        }
        
        /* Animation */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .animate-item {
            animation: fadeInUp 0.8s ease-out forwards;
            opacity: 0;
        }
        
        .highlight-item:nth-child(1) {
            animation-delay: 0.2s;
        }
        
        .highlight-item:nth-child(2) {
            animation-delay: 0.4s;
        }
        
        .highlight-item:nth-child(3) {
            animation-delay: 0.6s;
        }
        
        /* Responsive adjustments */
        @media (max-width: 992px) {
            .about-content {
                margin-bottom: 30px;
            }
        }
        
        @media (max-width: 768px) {
            .about-section {
                padding: 80px 0;
            }
            
            .highlight-item {
                margin-bottom: 30px;
            }
            
            .highlights-container {
                padding: 30px 20px;
            }
        }

   








        /* Cultivation Section */
        
        .cultivation-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);
        }
        
        .intro-text {
            font-size: 1.1rem;
            text-align: center;
            max-width: 800px;
            margin: 0 auto 50px;
            line-height: 1.8;
        }
        
        .guide-card {
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            height: 100%;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        
        .guide-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
        }
        
        .guide-icon {
            width: 70px;
            height: 70px;
            background-color: var(--primary-green);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto;
            font-size: 1.8rem;
            color: white;
            margin-top: 3%;
            position: relative;
            z-index: 2;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        
        .guide-content {
            padding: 20px 30pxjhmjnhbgfjmk;
            text-align: center;
        }
        
        .guide-title {
            font-size: 1.3rem;
            color: var(--dark-green);
            margin: 20px 0 15px;
            font-weight: 600;
        }
        
        .guide-description {
            color: #555;
            line-height: 1.6;
            margin: 5%;
        }
        
        .download-btn {
            display: inline-block;
            margin-top: 40px;
            padding: 15px 40px;
            background-color: var(--primary-green);
            color: white;
            border-radius: 50px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        
        .download-btn:hover {
            background-color: var(--dark-green);
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
            color: white;
        }
        
        .download-btn i {
            margin-right: 10px;
        }
        
        /* Animation */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .animate-item {
            animation: fadeInUp 0.8s ease-out forwards;
            opacity: 0;
        }
        
        .guide-card:nth-child(1) {
            animation-delay: 0.1s;
        }
        
        .guide-card:nth-child(2) {
            animation-delay: 0.2s;
        }
        
        .guide-card:nth-child(3) {
            animation-delay: 0.3s;
        }
        
        .guide-card:nth-child(4) {
            animation-delay: 0.4s;
        }
        
        .guide-card:nth-child(5) {
            animation-delay: 0.5s;
        }
        
        /* Responsive adjustments */
        @media (max-width: 768px) {
            .cultivation-section {
                padding: 80px 0;
            }
            
            .guide-card {
                margin-bottom: 50px;
            }
        }
    





        /* Gallery Section */
        .gallery-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);
        }
        
        .gallery-filter {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            margin-bottom: 40px;
            gap: 10px;
        }
        
        .filter-btn {
            font-family: 'Lora', serif; 
            letter-spacing: 0.5px;
            padding: 10px 25px;
            background: transparent;
            border: 2px solid var(--primary-green);
            color: var(--primary-green);
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s ease;
            cursor: pointer;
        }
        
        .filter-btn:hover, .filter-btn.active {
            background-color: var(--primary-green);
            color: white;
        }
        
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 25px;
            margin-bottom: 50px;
        }
        
        .gallery-item {
            position: relative;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
            height: 280px;
            cursor: pointer;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        
        .gallery-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        }
        
        .gallery-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .gallery-item:hover .gallery-img {
            transform: scale(1.1);
        }
        
        .gallery-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
            padding: 25px;
            color: white;
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        .gallery-item:hover .gallery-overlay {
            opacity: 1;
        }
        
        .gallery-category {
            font-size: 0.85rem;
            color: var(--light-green);
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 5px;
        }
        
        .gallery-title {
            font-size: 1.2rem;
            margin-bottom: 0;
            font-weight: 600;
        }
        
        .view-more-btn {
            display: inline-block;
            padding: 15px 40px;
            background-color: var(--primary-green);
            color: white;
            border-radius: 50px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        
        .view-more-btn:hover {
            background-color: var(--dark-green);
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
            color: white;
        }
        
        /* Animation */
        @keyframes fadeIn {
            from {
                opacity: 0;
            }
            to {
                opacity: 1;
            }
        }
        
        .gallery-item {
            animation: fadeIn 0.8s ease-out forwards;
            opacity: 0;
        }
        
        .gallery-item:nth-child(1) { animation-delay: 0.1s; }
        .gallery-item:nth-child(2) { animation-delay: 0.2s; }
        .gallery-item:nth-child(3) { animation-delay: 0.3s; }
        .gallery-item:nth-child(4) { animation-delay: 0.4s; }
        .gallery-item:nth-child(5) { animation-delay: 0.5s; }
        .gallery-item:nth-child(6) { animation-delay: 0.6s; }
        .gallery-item:nth-child(7) { animation-delay: 0.7s; }
        .gallery-item:nth-child(8) { animation-delay: 0.8s; }
        
        /* Modal styles */
        .modal-content {
            border-radius: 15px;
            overflow: hidden;
        }
        
        .modal-body {
            padding: 0;
        }
        
        .modal-img {
            width: 100%;
            border-radius: 15px 15px 0 0;
        }
        
        .modal-caption {
            padding: 20px;
        }
        
        /* Responsive adjustments */
        @media (max-width: 768px) {
            .gallery-section {
                padding: 80px 0;
            }
            
            .gallery-grid {
                grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
                gap: 15px;
            }
            
            .gallery-item {
                height: 220px;
            }
            
            .filter-btn {
                padding: 8px 15px;
                font-size: 0.9rem;
            }
        }
   










        
      /* Testimonial section */
        
        .testimonials-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);
        }
        
        .testimonial-card {
            background: white;
            border-radius: 15px;
            padding: 40px 30px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            height: 100%;
            position: relative;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            margin: 15px;
        }
        
        .testimonial-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
        }
        
        .testimonial-card::before {
            content: '\201C';
            position: absolute;
            top: 20px;
            left: 25px;
            font-size: 5rem;
            color: var(--light-green);
            opacity: 0.2;
            font-family: Georgia, serif;
        }
        
        .testimonial-text {
            color: #795548;
            font-size: 1.1rem;
            line-height: 1.8;
            margin-bottom: 25px;
            position: relative;
            z-index: 1;
        }
        
        .testimonial-author {
            display: flex;
            align-items: center;
        }
        
        .author-avatar {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            overflow: hidden;
            margin-right: 15px;
            border: 3px solid var(--primary-green);
        }
        
        .author-details {
            flex: 1;
        }
        
        .author-name {
            font-weight: 600;
            color: var(--dark-green);
            margin-bottom: 5px;
        }
        
        .author-title {
            color: #666;
            font-size: 0.9rem;
        }
        
        .rating {
            color: #ffc107;
            margin-bottom: 15px;
        }
        
        /* Carousel controls */
        .carousel-control-prev, .carousel-control-next {
            width: 50px;
            height: 50px;
            background-color: var(--primary-green);
            border-radius: 50%;
            top: 50%;
            transform: translateY(-50%);
            opacity: 0.8;
        }
        
        .carousel-control-prev {
            left: -25px;
        }
        
        .carousel-control-next {
            right: -25px;
        }
        
        .carousel-control-prev:hover, .carousel-control-next:hover {
            opacity: 1;
        }
        
        /* Animation */
        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .testimonial-card {
            animation: fadeIn 0.8s ease-out forwards;
        }
        
        /* Responsive adjustments */
        @media (max-width: 1200px) {
            .carousel-control-prev {
                left: 10px;
            }
            
            .carousel-control-next {
                right: 10px;
            }
        }
        
        @media (max-width: 992px) {
            .testimonials-section {
                padding: 80px 0;
            }
            
            .testimonial-card {
                padding: 30px 25px;
            }
            
            .testimonial-text {
                font-size: 1rem;
            }
        }
        
        @media (max-width: 768px) {
            .testimonial-card::before {
                font-size: 4rem;
                top: 15px;
                left: 20px;
            }
            
            .author-avatar {
                width: 50px;
                height: 50px;
            }
            
            .carousel-control-prev, .carousel-control-next {
                width: 40px;
                height: 40px;
            }
        }
        
        @media (max-width: 576px) {
            .testimonial-card {
                margin: 10px;
                padding: 25px 20px;
            }
            
            .testimonial-text {
                font-size: 0.95rem;
            }
            
            .testimonial-author {
                flex-direction: column;
                text-align: center;
            }
            
            .author-avatar {
                margin-right: 0;
                margin-bottom: 15px;
            }
        }
    







        /* News Letter Section */
        
        .newsletter-section {
            padding: 100px 0;
            background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 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;
            color: white;
            text-align: center;
        }
        
        .section-title2 {
            position: relative;
            margin-bottom: 30px;
            color: white;
        }
        
        .section-title2:after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background-color: var(--light-green);
        }
        
        .newsletter-text {
            font-size: 1.2rem;
            max-width: 600px;
            margin: 0 auto 40px;
            line-height: 1.7;
        }
        
        .newsletter-form {
            max-width: 550px;
            margin: 0 auto;
            display: flex;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
            border-radius: 50px;
            overflow: hidden;
        }
        
        .newsletter-input {
            flex: 1;
            padding: 20px 25px;
            border: none;
            font-size: 1rem;
            outline: none;
            font-family: 'Merriweather', serif;
        }
        
        .newsletter-btn {
            padding: 20px 35px;
            background-color: var(--primary-green);
            color: white;
            border: none;
            font-family: 'Montserrat', sans-serif;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            white-space: nowrap;
        }
        
        .newsletter-btn:hover {
            background-color: var(--dark-green);
        }
        
        .newsletter-features {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 30px;
            margin-top: 50px;
        }
        
        .feature-item {
            display: flex;
            align-items: center;
            background: rgba(255, 255, 255, 0.1);
            padding: 15px 25px;
            border-radius: 50px;
            backdrop-filter: blur(5px);
        }
        
        .feature-icon {
            margin-right: 10px;
            color: var(--light-green);
        }
        
        /* Animation */
        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .newsletter-content {
            animation: fadeIn 1s ease-out forwards;
        }
        
        /* Success message */
        .success-message {
            background-color: var(--primary-green);
            color: white;
            padding: 15px;
            border-radius: 8px;
            margin-top: 20px;
            display: none;
            animation: fadeIn 0.5s ease-out;
        }
        
        /* Responsive adjustments */
        @media (max-width: 768px) {
            .newsletter-section {
                padding: 80px 0;
            }
            
            .newsletter-form {
                flex-direction: column;
                border-radius: 15px;
            }
            
            .newsletter-input, .newsletter-btn {
                border-radius: 0;
                width: 100%;
            }
            
            .newsletter-btn {
                padding: 15px;
            }
            
            .newsletter-features {
                gap: 15px;
            }
            
            .feature-item {
                padding: 10px 20px;
                font-size: 0.9rem;
            }
        }
        
        @media (max-width: 576px) {
            .newsletter-text {
                font-size: 1rem;
                padding: 0 15px;
            }
            
            .newsletter-features {
                flex-direction: column;
                align-items: center;
            }
            
            .feature-item {
                width: 100%;
                max-width: 300px;
                justify-content: center;
            }
        }
   






/* cultivation-section */
        .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);
        }










/* 
Floating Buttons  */
        .float-btn {
    position: fixed;
    width: 55px;
    height: 55px;
    bottom: 80px;
    right: 20px;
    background-color: #25d366;
    color: white;
    border-radius: 50%;
    text-align: center;
    font-size: 28px;
    line-height: 55px;
    box-shadow: 0px 3px 8px rgba(0,0,0,0.3);
    z-index: 999;
    transition: transform 0.3s ease, background-color 0.3s ease;
}



/* WhatsApp Button */
.whatsapp-btn1 {
    background-color: #25d366;
    bottom: 80px;
    transform: translateY(80%);
    transition: 0.2s ease-in;
}

/* Call Button */
.call-btn1 {
    background-color: #0a7cff;
    bottom: 150px;
    transform: translateY(80%);
    transition: 0.2s ease-in;
}

.float-btn:hover {
    box-shadow: 0px 4px 4px rgba(255, 255, 255, 0.5);
}



footer