
        :root {
     --primary-green: #7fb33e;
    --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: 0px;
}

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(--primary-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%;
}

        
        .poplar-hero {
            position: relative;
            min-height: 100vh;
            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-1518837695005-2083093ee35b?ixlib=rb-4.0.3&auto=format&fit=crop&w=1350&q=80') no-repeat center center/cover;
        }
        
        .floating-elements {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            z-index: 1;
        }
        
        
        .hero-content {
            position: relative;
            z-index: 2;
            padding: 60px 0;
        }
        
        .breadcrumb {
            background-color: rgba(255, 255, 255, 0.8);
            border-radius: 50px;
            padding: 10px 20px;
            display: inline-block;
            margin-bottom: 20px;
            animation: fadeInUp 0.8s ease-out;
        }
        
        .breadcrumb-item a {
            color: var(--poplar-blue);
            text-decoration: none;
            font-weight: 500;
        }
        
        .hero-title {
            font-size: 3.5rem;
            font-weight: 700;
            color: var(--earth-brown);
            opacity: 1;
            margin-bottom: 20px;
            animation: fadeInUp 1s ease-out;
        }
        
        .hero-subtitle {
            font-size: 1.8rem;
            color: var(--primary-green);
            margin-bottom: 30px;
            animation: fadeInUp 1.2s ease-out;
            font-weight: 500;
        }
        
        .hero-intro {
            font-size: 1.2rem;
            line-height: 1.8;
            margin-bottom: 40px;
            max-width: 800px;
            animation: fadeInUp 1.4s ease-out;
            color: #444;
        }
        
        .seo-highlights {
            background: rgba(25, 118, 210, 0.05);
            border-left: 4px solid var(--poplar-blue);
            padding: 20px 25px;
            border-radius: 0 8px 8px 0;
            margin-bottom: 40px;
            animation: fadeInUp 1.6s ease-out;
        }
        
        .seo-highlights p {
            margin-bottom: 0;
            color: #555;
            font-style: italic;
        }
        
        .key-features {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            margin-bottom: 50px;
            animation: fadeInUp 1.8s ease-out;
        }
        
        .feature-item {
            display: flex;
            flex-direction: row;
            justify-content: flex-start;
            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: translateY(-5px);
        }
        
        .feature-icon {
            width: 40px;
            height: 40px;
            background: var(--primary-green);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            margin-right: 15px;
            font-size: 1.2rem;
        }
        
        .feature-text {
            font-weight: 500;
            color: var(--dark-green);
        }
        
        .cta-buttons {
            animation: fadeInUp 2s ease-out;
        }
        
        .btn-primary {
            letter-spacing: 1px;
            background-color: var(--secondary-green);
            border-color: var(--poplar-blue);
            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 {
            letter-spacing: 1px;
            border-color: var(--primary-green);
            color: var(--earth-brown);
            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) {
            .poplar-hero{
                margin-top: -10vw;
            }
             .hero-content{
                margin-top: 0%;
                padding-top: 0%;
            }
            #col-lg{
                margin-top: 10px;
            }
            
            .hero-title {
                font-size: 2.3rem;
            }
            .hero-title {
                font-size: 2.8rem;
            }
            
            .hero-subtitle {
                font-size: 1.5rem;
            }
            
            .hero-intro {
                font-size: 1.1rem;
            }
            
            .key-features {
                gap: 15px;
            }
        }
        
        @media (max-width: 768px) {
            .poplar-hero {
                min-height: auto;
                padding: 10px 0;
                margin-top: 0%;
            }
            .hero-content{
                margin-top: 0%;
            }
            #col-lg{
                margin-top: 10px;
            }
            
            .hero-title {
                font-size: 2.3rem;
            }
            
            .hero-subtitle {
                font-size: 1.3rem;
            }
            
            .key-features {
                flex-direction: column;
                align-items: center;
            }
            
            .feature-item {
                width: 100%;
                max-width: 300px;
            }
            
            .cta-buttons .btn {
                display: block;
                width: 100%;
                margin-bottom: 15px;
            }
            #explore-btn, #contact-btn {
                width: 50vw;
                display: block;
                margin: auto;
                margin-top: 1.2rem;
            }
        }
        
        @media (max-width: 576px) {
            .poplar-hero{
                margin-top: 0px;
                padding-top: 0%;
            }
            .hero-content{
                padding-top: 0%;
            }
            #col-lg{
                margin-top: 5px;
            }
            .hero-title {
                font-size: 2rem;
                padding: 0px 10px;
            }
            
            .hero-subtitle {
                font-size: 1.2rem;
                padding: 0px 10px;
            }
            
            .hero-intro {
                font-size: 1rem;
                padding: 0px 10px;
            }
            
            .feature-item {
                padding: 12px 20px;
            }
            
            .feature-icon {
                width: 35px;
                height: 35px;
                font-size: 1rem;
            }
            #explore-btn, #contact-btn {
                width: 70vw;
                display: block;
                margin: auto;
                margin-top: 1.2rem;
            }
        }
    


        
      /* Poplar Varities Section */
        .poplar-varieties {
            padding: 100px 0;
            background-color: #f8f9fa;
        }
        
        .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(--poplar-blue);
        }
        
        .intro-text {
            font-size: 1.2rem;
            text-align: center;
            max-width: 800px;
            margin: 0 auto 50px;
            line-height: 1.8;
            color: #555;
        }
        
        .varieties-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-bottom: 50px;
        }
        
        .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;
            opacity: 0;
            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: 30px 30px 20px;
            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;
        }
        
        .variety-name {
            color: #efebe9;
            font-size: 1.8rem;
            margin-bottom: 10px;
        }
        
        .variety-type {
            font-style: italic;
            opacity: 0.9;
        }
        
        .variety-image {
            height: 200px;
            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: 25px;
        }
        
        .variety-description {
            color: #555;
            line-height: 1.7;
            margin-bottom: 20px;
        }
        
        .variety-features {
            list-style: none;
            padding: 0;
            margin: 0 0 20px;
        }
        
        .variety-features li {
            display: flex;
            align-items: flex-start;
            margin-bottom: 12px;
            color: #555;
        }
        
        .variety-features li:before {
            content: '✓';
            color: var(--poplar-blue);
            font-weight: bold;
            margin-right: 10px;
            font-size: 1.1rem;
        }
        
        .cta-button {
            display: block;
            width: 100%;
            padding: 12px;
            background-color: rgba(121, 85, 72, 0.8);
            color: #333;
            text-align: center;
            border-radius: 8px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .cta-button:hover {
            background-color: var(--secondary-green);
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            color: white;
        }
        
        .benefits-section {
            background: white;
            border-radius: 15px;
            padding: 40px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            margin-top: 50px;
            opacity: 0;
            transform: translateY(50px);
        }
        
        .benefits-title {
            color: var(--dark-green);
            margin-bottom: 30px;
            text-align: center;
        }
        
        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 25px;
        }
        
        .benefit-item {
            display: flex;
            align-items: center;
            padding: 20px;
            background: rgba(25, 118, 210, 0.05);
            border-radius: 10px;
            transition: transform 0.3s ease;
        }
        
        .benefit-item:hover {
            transform: translateX(10px);
            background: rgba(25, 118, 210, 0.1);
        }
        
        .benefit-icon {
            min-width: 50px;
            height: 50px;
            background: var(--earth-brown);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            margin-right: 20px;
            font-size: 1.2rem;
        }
        
        .benefit-text {
            color: #555;
            margin-bottom: 0;
            line-height: 1.6;
        }
        
        /* 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;
        }
        
        .benefits-section.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;
        }
        
        .benefits-section {
            animation-delay: 0.8s;
        }
        
        /* Responsive adjustments */
        @media (max-width: 992px) {
            .varieties-container {
                gap: 20px;
            }
        }
        
        @media (max-width: 768px) {
            .poplar-varieties {
                padding: 80px 0;
            }
            
            .variety-header {
                padding: 25px 25px 15px;
            }
            
            .variety-content {
                padding: 20px;
            }
            
            .variety-image {
                height: 180px;
            }
            
            .benefits-section {
                padding: 30px 20px;
            }
        }
        
        @media (max-width: 576px) {
            .variety-name {
                font-size: 1.5rem;
            }
            
            .benefit-item {
                padding: 15px;
            }
        }



/* 
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 {
    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);
}
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;
}










    /* Poplar Plantation Gallery Section         */
        .gallery-section {
            padding: 100px 0;
            background-color: white;
        }
        
        .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(--poplar-blue);
        }
        
        .intro-text {
            font-size: 1.2rem;
            text-align: center;
            max-width: 800px;
            margin: 0 auto 50px;
            line-height: 1.8;
            color: #555;
        }
        
        .gallery-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 25px;
            margin-bottom: 50px;
        }
        
        .gallery-item {
            position: relative;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
            height: 300px;
            cursor: pointer;
            opacity: 0;
            transform: translateY(50px);
            transition: all 0.4s ease;
        }
        
        .gallery-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px 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;
            transform: translateY(20px);
        }
        
        .gallery-item:hover .gallery-overlay {
            opacity: 1;
            transform: translateY(0);
        }
        
        .gallery-category {
            font-size: 0.9rem;
            color: var(--light-blue);
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 5px;
        }
        
        .gallery-title {
            font-size: 1.3rem;
            margin-bottom: 0;
            font-weight: 600;
        }
        
        .gallery-description {
            font-size: 0.95rem;
            opacity: 0.9;
            margin-top: 5px;
        }
        
        .gallery-stats {
            background: var(--light-tan);
            border-radius: 15px;
            padding: 40px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            margin-top: 50px;
            opacity: 0;
            transform: translateY(50px);
        }
        
        .stats-title {
            color: var(--dark-green);
            margin-bottom: 30px;
            text-align: center;
        }
        
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 25px;
        }
        
        .stat-item {
            text-align: center;
            padding: 20px;
            background: white;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s ease;
        }
        
        .stat-item:hover {
            transform: translateY(-5px);
        }
        
        .stat-icon {
            font-size: 2rem;
            color: var(--poplar-blue);
            margin-bottom: 15px;
        }
        
        .stat-number {
            font-size: 2.2rem;
            font-weight: 700;
            color: var(--dark-green);
            margin-bottom: 10px;
        }
        
        .stat-text {
            color: #555;
            margin-bottom: 0;
            line-height: 1.5;
        }
        
        /* Animation */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .gallery-item.animated {
            animation: fadeInUp 0.8s ease-out forwards;
        }
        
        .gallery-stats.animated {
            animation: fadeInUp 0.8s ease-out forwards;
        }
        
        .gallery-item:nth-child(1) {
            animation-delay: 0.2s;
        }
        
        .gallery-item:nth-child(2) {
            animation-delay: 0.4s;
        }
        
        .gallery-item:nth-child(3) {
            animation-delay: 0.6s;
        }
        
        .gallery-stats {
            animation-delay: 0.8s;
        }
        
        /* Responsive adjustments */
        @media (max-width: 992px) {
            .gallery-container {
                gap: 20px;
            }
        }
        
        @media (max-width: 768px) {
            .gallery-section {
                padding: 80px 0;
            }
            
            .gallery-item {
                height: 250px;
            }
            
            .gallery-stats {
                padding: 30px 20px;
            }
            
            .stats-grid {
                gap: 15px;
            }
        }
        
        @media (max-width: 576px) {
            .gallery-container {
                grid-template-columns: 1fr;
            }
            
            .stat-number {
                font-size: 1.8rem;
            }
        }
   








/* Why buy Section */

    .why-buy-section {
      background: white;
      border-radius: 12px;
      box-shadow: 0 4px 12px rgb(0 0 0 / 0.1);
      max-width: 720px;
      margin: 2rem auto;
      padding: 2rem 2.5rem;
      color: var(--dark-green);
    }

    .why-buy-section h2 {
      color: var(--primary-green);
      font-weight: 700;
      margin-bottom: 1.5rem;
      text-align: center;
      font-size: 1.9rem;
    }

    .feature-list {
      list-style: none;
      padding-left: 0;
      margin: 0;
    }

    .feature-list li {
      position: relative;
      padding-left: 2.5rem;
      margin-bottom: 1.25rem;
      font-size: 1.1rem;
      line-height: 1.4;
      color: var(--earth-brown);
      font-weight: 600;
    }

    .feature-list li::before {
      content: "✅";
      position: absolute;
      left: 0;
      top: 0;
      font-size: 1.3rem;
      line-height: 1;
      color: var(--secondary-green);
    }

    /* Responsive text scaling */
    @media (max-width: 576px) {
      .why-buy-section {
        padding: 1.5rem 1.5rem;
        margin: 1rem;
      }
      .why-buy-section h2 {
        font-size: 1.5rem;
      }
      .feature-list li {
        font-size: 1rem;
        padding-left: 2rem;
      }
      .feature-list li::before {
        font-size: 1.1rem;
      }
    }
  
  







/* Cultivation Section */
    .cultivation-section {
     width: 80vw;
      background: white;
      border-radius: 12px;
      box-shadow: 0 4px 12px rgb(0 0 0 / 0.1);
      max-width: 720px;
      margin: 4rem auto;
      padding: 2rem 2.5rem;
      color: var(--dark-green);
    }

    .cultivation-section h2 {
      color: var(--primary-green);
      font-weight: 700;
      margin-bottom: 1.5rem;
      text-align: center;
      font-size: 1.9rem;
    }

    .cultivation-list {
      list-style: none;
      padding-left: 0;
      margin: 0 0 1.5rem 0;
    }

    .cultivation-list li {
      position: relative;
      padding-left: 2.5rem;
      margin-bottom: 1.25rem;
      font-size: 1.1rem;
      line-height: 1.4;
      color: var(--earth-brown);
      font-weight: 600;
    }

    .cultivation-list li::before {
      content: "🌱";
      position: absolute;
      left: 0;
      top: 0;
      font-size: 1.3rem;
      line-height: 1;
      color: var(--secondary-green);
    }

    .cultivation-link {
      display: block;
      text-align: center;
      font-weight: 700;
      font-size: 1.1rem;
      color: var(--primary-green);
      text-decoration: none;
      border: 2px solid var(--primary-green);
      border-radius: 8px;
      padding: 0.5rem 1rem;
      transition: background-color 0.3s ease, color 0.3s ease;
      max-width: 320px;
      margin: 0 auto;
      user-select: none;
    }

    .cultivation-link:hover,
    .cultivation-link:focus {
      background-color: var(--primary-green);
      color: white;
      text-decoration: none;
      outline: none;
      cursor: pointer;
    }

    /* Responsive text scaling */
    @media (max-width: 576px) {
      .cultivation-section {
        padding: 1.5rem 1.5rem;
        margin: 1rem;
      }
      .cultivation-section h2 {
        font-size: 1.5rem;
      }
      .cultivation-list li {
        font-size: 1rem;
        padding-left: 2rem;
      }
      .cultivation-list li::before {
        font-size: 1.1rem;
      }
      .cultivation-link {
        font-size: 1rem;
        max-width: 100%;
        padding: 0.5rem;
      }
    }
 
 
  