/* Google Font */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background: #f7fff5;
}

header {
    width: 100%;
    position: sticky;
    top: 0;
    z-index: 999;
    background: #fff;
    box-shadow: 0 5px 20px rgba(0, 0, 0, .08);
}

.header-btn a{

    display:flex;

    align-items:center;

    gap:10px;

    background:#3baa45;

    color:#fff;

    padding:12px 22px;

    border-radius:50px;

    text-decoration:none;

    font-weight:600;

    transition:.4s;

}


.header-btn a:hover{

    background:#267d31;

    transform:translateY(-3px);

}



.header-btn i{

    font-size:18px;

}
@media(max-width:991px){

    .header-btn{

        margin-top:20px;

    }


    .header-btn a{

        justify-content:center;

    }

}


.logo {

    text-decoration: none;
    font-size: 28px;
    font-weight: 700;
    color: #2e7d32;

}
.logo img{
    width: 90px;
}
nav ul {

    display: flex;
    list-style: none;
    gap: 35px;
}

nav ul li {

    position: relative;
}

nav ul li a {

    text-decoration: none;
    color: #333;
    font-size: 16px;
    font-weight: 500;

    transition: .35s;
}

nav ul li a:hover,
.active {

    color: #2e7d32;
}

nav ul li a::after {

    content: "";

    position: absolute;

    left: 0;
    bottom: -8px;

    width: 0%;
    height: 2px;

    background: #4CAF50;

    transition: .4s;
}

nav ul li a:hover::after {

    width: 100%;
}

/* Dropdown */

.dropdown-menu {
    display: block;

    position: absolute;

    top: 45px;
    left: 0;

    width: 220px;

    background: #fff;

    border-radius: 10px;

    box-shadow: 0 10px 30px rgba(0, 0, 0, .12);

    list-style: none;

    opacity: 0;
    visibility: hidden;

    transform: translateY(20px);

    transition: .35s;
}

.dropdown-menu li {

    border-bottom: 1px solid #eee;
}

.dropdown-menu li:last-child {

    border: none;
}

.dropdown-menu li a {

    display: block;

    padding: 14px 18px;

    color: #333;
}

.dropdown-menu li a:hover {

    background: #4CAF50;
    color: #fff;
    padding-left: 25px;
}

.dropdown:hover .dropdown-menu {

    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Menu Icon */

.menu-btn {

    display: none;
    font-size: 28px;
    cursor: pointer;
    color: #2e7d32;
}

/* Responsive */

@media(max-width:900px) {

    nav {

        position: absolute;

        top: 82px;
        left: -100%;

        width: 100%;
        background: #fff;

        transition: .4s;
    }

    nav.active {

        left: 0;
    }

    nav ul {

        flex-direction: column;
        gap: 0;
    }

    nav ul li {

        border-bottom: 1px solid #eee;
    }

    nav ul li a {

        display: block;
        padding: 18px;
    }

    .dropdown-menu {
        display: block;
        position: static;

        width: 100%;

        opacity: 1;
        visibility: visible;

        display: none;

        transform: none;

        box-shadow: none;

        background: #f6f6f6;
    }

    .dropdown.active .dropdown-menu {

        display: block;
    }

    .menu-btn {

        display: block;
    }

}


/* hero section css here ---------------------------- */
/* Hero */

.hero {
    padding: 115px 0px 150px 0px;
    background: linear-gradient(
343deg, #62d34c75, #ffffff);
 position:relative;
    overflow:hidden;
}

.hero::after {
    content: "";
    position: absolute;
    left: -5%;
    bottom: -70px;
    width: 110%;
    height: 140px;
    background: #fff; /* Next section background */
    border-radius: 50% 50% 0 0;
}

.sub-title {

    display: inline-block;

    padding: 10px 22px;

    background: #d7f7d2;

    color: #2e7d32;

    border-radius: 50px;

    font-weight: 600;

    margin-bottom: 25px;

}

.hero h1 {

    font-size: 58px;

    font-weight: 800;

    line-height: 1.2;

    margin-bottom: 25px;

    color: #222;

}

.hero h1 span {

    color: #3BAF3F;

}

.hero p {

    font-size: 18px;

    line-height: 1.8;

    color: #666;

    margin-bottom: 35px;

}

.hero-btn {

    display: flex;

    gap: 20px;


}

.btn1 {

    padding: 15px 38px;

    background: #3BAF3F;

    color: #fff;

    text-decoration: none;

    border-radius: 50px;

    font-weight: 600;

    transition: .4s;

    box-shadow: 0 15px 30px rgba(59, 175, 63, .3);

}

.btn1:hover {

    background: #267c2d;

    transform: translateY(-6px);

    color: #fff;

}

.btn2 {

    padding: 15px 38px;

    border: 2px solid #3BAF3F;

    text-decoration: none;

    border-radius: 50px;

    font-weight: 600;

    color: #3BAF3F;

    transition: .4s;

}

.btn2:hover {

    background: #3BAF3F;

    color: #fff;

    transform: translateY(-6px);

}

.hero-img {

    width: 100%;

    max-width: 550px;

    border-radius: 30px;

    box-shadow: 0 30px 60px rgba(0, 0, 0, .15);

    /* animation: float 4s ease-in-out infinite; */

}

/* Floating Image */

@keyframes float {

    0% {

        transform: translateY(0);

    }

    50% {

        transform: translateY(-18px);

    }

    100% {

        transform: translateY(0);

    }

}

/* Responsive */

@media(max-width:991px) {

    .hero {
        text-align: center;
        padding: 40px 0;

    }

    .hero h1 {

        font-size: 42px;

    }

    .hero-btn {

        justify-content: center;

    }

    .hero-img {

        margin-top: 50px;

    }
    .leaf4, .leaf3, .seed1, .seed2{
        display: none;
    }

}

/* end here------------------------------ */



/* Floating Elements */

.floating-elements{

    position:absolute;
    width:100%;
    height:100%;
    top:0;
    left:0;
    pointer-events:none;

}

.leaf,
.seed{

    position:absolute;
    opacity:.85;

}

/* Leaf Sizes */

.leaf{

    width:70px;

}

.seed{

    width:30px;

}

/* Positions */

.leaf1{

    left:5%;
    top:10%;

    animation:leafMove1 8s ease-in-out infinite;

}

.leaf2{

    right:8%;
    top:15%;

    animation:leafMove2 10s ease-in-out infinite;

}

.leaf3{

    left:12%;
    bottom:12%;

    animation:leafMove3 9s ease-in-out infinite;

}

.leaf4{

    right:14%;
    bottom:10%;

    animation:leafMove4 11s ease-in-out infinite;

}

/* Seeds */

.seed1{

    top:20%;
    left:40%;

    animation:seedFloat 6s linear infinite;

}

.seed2{

    bottom:15%;
    right:35%;

    animation:seedFloat2 7s linear infinite;

}

/* Animations */

@keyframes leafMove1{

0%{
transform:translateY(0) rotate(0deg);
}

50%{
transform:translateY(-30px) rotate(20deg);
}

100%{
transform:translateY(0) rotate(0deg);
}

}

@keyframes leafMove2{

0%{
transform:translateY(0) rotate(0);
}

50%{
transform:translateY(35px) rotate(-25deg);
}

100%{
transform:translateY(0) rotate(0);
}

}

@keyframes leafMove3{

0%{
transform:translateX(0) rotate(0);
}

50%{
transform:translateX(25px) rotate(25deg);
}

100%{
transform:translateX(0) rotate(0);
}

}

@keyframes leafMove4{

0%{
transform:translateX(0) rotate(0);
}

50%{
transform:translateX(-25px) rotate(-20deg);
}

100%{
transform:translateX(0) rotate(0);
}

}

@keyframes seedFloat{

0%{

transform:translateY(0) rotate(0);

}

50%{

transform:translateY(-20px) rotate(180deg);

}

100%{

transform:translateY(0) rotate(360deg);

}

}

@keyframes seedFloat2{

0%{

transform:translateY(0);

}

50%{

transform:translateY(20px);

}

100%{

transform:translateY(0);

}

}



/*==========================
        ABOUT
==========================*/

.about{

    padding:100px 0;
    background:#fff;

}

.about-image{

    position:relative;

}

.main-img{

    border-radius:5px;
    box-shadow:0 25px 50px rgba(0,0,0,.15);

    transition:.5s;

}

.main-img:hover{

    transform:scale(1.03);

}

.experience-card{

    position:absolute;

    bottom:30px;
    right:-20px;

    background:#39a845;

    color:#fff;

    width:180px;

    text-align:center;

    padding:25px;

    border-radius:20px;

    box-shadow:0 20px 40px rgba(57,168,69,.3);

    animation:floatCard 4s ease-in-out infinite;

}

.experience-card h2{

    font-size:42px;
    font-weight:700;

}

.experience-card p{

    margin:0;
    font-size:15px;

}

.section-subtitle{

    color:#39a845;
    font-weight:600;
    letter-spacing:1px;

}

.section-title{

    font-size:46px;
    font-weight:700;
    margin:20px 0;

    color:#222;

}

.about-text{

    color:#666;
    line-height:1.9;

}

.feature-box{

    display:flex;

    align-items:center;

    margin-bottom:20px;

    transition:.3s;

}

.feature-box:hover{

    transform:translateX(10px);

}

.feature-box i{

    color:#39a845;

    font-size:22px;

    margin-right:15px;

}

.feature-box span{

    font-weight:600;

}

.btn-about{

    background:#39a845;

    color:#fff;

    padding:14px 35px;

    border-radius:40px;

    text-decoration:none;

    transition:.4s;

}

.btn-about:hover{

    background:#2c8335;

    color:#fff;

}

.btn-contact{

    border:2px solid #39a845;

    color:#39a845;

    padding:14px 35px;

    border-radius:40px;

    text-decoration:none;

    transition:.4s;

}

.btn-contact:hover{

    background:#39a845;

    color:#fff;

}

/* Floating Card */

@keyframes floatCard{

0%{

transform:translateY(0);

}

50%{

transform:translateY(-15px);

}

100%{

transform:translateY(0);

}

}

/* Responsive */

@media(max-width:991px){

.section-title{

font-size:36px;

}

.experience-card{

right:20px;

}

}

@media(max-width:768px){

.section-title{

font-size:24px;

}

.about{

text-align:center;

}

.feature-box{

justify-content:center;

}

.experience-card{

position:relative;

right:0;

bottom:0;

margin:20px auto 0;

}

.btn-contact{

display:inline-block;

margin-top:15px !important;

margin-left:0 !important;

}

}


/* =========================
      SEED CATEGORY CSS
========================= */


.seed-category{

    background:#f8fff6;

}


.section-tag{

    color:#3baa45;

    font-weight:600;

}


.section-heading{

    font-size:42px;

    font-weight:700;

    margin-top:15px;

}


.section-description{

    color:#666;

    max-width:650px;

    margin:auto;

}


/* Card */


.seed-card{

    background:#fff;

    border-radius:25px;

    overflow:hidden;

    box-shadow:0 15px 40px rgba(0,0,0,.08);

    transition:.5s;

}


.seed-card:hover{

    transform:translateY(-12px);

}



/* Image */


.seed-img{

    position:relative;

    height:250px;

    overflow:hidden;

}


.seed-img img{

    width:100%;

    height:100%;

    object-fit:cover;

    transition:.6s;

}


.seed-card:hover img{

    transform:scale(1.15);

}



/* Overlay */


.overlay{

    position:absolute;

    inset:0;

    background:rgba(55,160,65,.75);

    display:flex;

    align-items:center;

    justify-content:center;

    opacity:0;

    transition:.5s;

}


.seed-card:hover .overlay{

    opacity:1;

}


.overlay a{

    background:#fff;

    color:#3baa45;

    padding:12px 30px;

    border-radius:50px;

    text-decoration:none;

    font-weight:600;

}



/* Content */


.seed-content{

    padding:25px;

    text-align:center;

}


.seed-icon{

    font-size:40px;

    margin-bottom:10px;

    animation:seedFloat 3s infinite;

}


.seed-content h4{

    font-weight:700;

}


.seed-content p{

    color:#666;

    font-size:15px;

}


/* Icon Animation */


@keyframes seedFloat{

0%{

transform:translateY(0);

}

50%{

transform:translateY(-8px);

}

100%{

transform:translateY(0);

}

}



/* Mobile */


@media(max-width:768px){

.section-heading{

font-size:32px;

}

}



/* ==========================
      WHY CHOOSE CSS
========================== */


.why-section{

    background:#ffffff;

}



.why-image{

    position:relative;

}



.why-image img{

    border-radius:30px;

    box-shadow:0 25px 60px rgba(0,0,0,.15);

    transition:.5s;

}



.why-image img:hover{

    transform:scale(1.03);

}




.quality-box{

    position:absolute;

    bottom:30px;

    right:-20px;


    background:#3baa45;

    color:white;


    width:180px;

    padding:25px;


    text-align:center;

    border-radius:25px;


    box-shadow:0 20px 40px rgba(59,170,69,.3);


    animation:qualityFloat 4s infinite;

}



.quality-box h2{

    font-size:45px;

    font-weight:800;

}



.quality-box p{

    margin:0;

}





.why-tag{

    color:#3baa45;

    font-weight:600;

    letter-spacing:1px;

}




.why-title{

    font-size:45px;

    font-weight:750;

    line-height:1.3;

    margin:20px 0;

}



.why-text{

    color:#666;

    line-height:1.8;

}





/* Feature Card */


.why-card{

    display:flex;

    gap:20px;


    padding:18px;

    margin-bottom:15px;


    background:#f7fff5;

    border-radius:15px;


    transition:.4s;

}



.why-card:hover{

    transform:translateX(10px);

    background:#eaffdf;

}




.why-icon{

    min-width:55px;

    height:55px;


    background:#3baa45;

    color:white;


    border-radius:50%;


    display:flex;

    align-items:center;

    justify-content:center;


    font-size:25px;

}




.why-card h5{

    font-weight:700;

    margin-bottom:5px;

}



.why-card p{

    color:#666;

    margin:0;

    font-size:14px;

}





.why-btn{

    display:inline-block;

    margin-top:25px;


    background:#3baa45;

    color:white;


    padding:14px 35px;


    border-radius:50px;


    text-decoration:none;


    font-weight:600;


    transition:.4s;

}



.why-btn:hover{

    background:#277d31;

    color:white;

    transform:translateY(-5px);

}





@keyframes qualityFloat{


0%{

transform:translateY(0);

}


50%{

transform:translateY(-15px);

}


100%{

transform:translateY(0);

}


}




@media(max-width:991px){


.why-title{

font-size:35px;

}


.quality-box{

right:10px;

}


}



@media(max-width:768px){


.why-section{

text-align:center;

}


.why-card{

text-align:left;

}


.quality-box{

position:relative;

right:auto;

bottom:auto;

margin:20px auto;

}


}



/* ==========================
      STATISTICS CSS
=========================== */


.stats-section{

    padding:80px 0;

    background:

    linear-gradient(
    135deg,
    #2f9e44,
    #6bcf63
    );

    position:relative;

    overflow:hidden;

}




.counter-box{

    background:rgba(255,255,255,.15);

    backdrop-filter:blur(10px);

    border-radius:25px;

    padding:40px 20px;

    text-align:center;

    color:#fff;

    border:1px solid rgba(255,255,255,.25);

    transition:.5s;

}




.counter-box:hover{

    transform:translateY(-12px);

    background:rgba(255,255,255,.25);

}




.counter-icon{

    width:75px;

    height:75px;

    margin:auto;

    background:#fff;

    color:#3baa45;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:50%;


    font-size:32px;

    margin-bottom:20px;


    animation:pulseIcon 3s infinite;

}




.counter-box h2{

    font-size:45px;

    font-weight:800;

    margin-bottom:10px;

}




.counter-box p{

    font-size:18px;

    margin:0;

    font-weight:500;

}





@keyframes pulseIcon{


0%{

box-shadow:0 0 0 0 rgba(255,255,255,.7);

}


70%{

box-shadow:0 0 0 20px rgba(255,255,255,0);

}


100%{

box-shadow:0 0 0 0 rgba(255,255,255,0);

}


}




@media(max-width:768px){

.counter-box h2{

font-size:35px;

}

}

/* ==========================
      FARMING PROCESS CSS
=========================== */


.process-section{

    background:#f7fff5;

}



.process-tag{

    color:#3baa45;

    font-weight:600;

    letter-spacing:1px;

}



.process-title{

    font-size:42px;

    font-weight:750;

    margin:15px 0;

}



.process-desc{

    color:#666;

    max-width:650px;

    margin:auto;

}





.process-wrapper{

    position:relative;

}



/* Connecting Line */


.process-wrapper::before{

    content:"";

    position:absolute;

    top:95px;

    left:10%;

    width:80%;

    height:3px;

    background:#3baa45;

    z-index:0;

}




.process-card{

    background:#fff;

    padding:40px 25px 30px;

    border-radius:25px;

    text-align:center;

    position:relative;

    box-shadow:0 15px 40px rgba(0,0,0,.08);

    transition:.5s;

    height:100%;

}



.process-card:hover{

    transform:translateY(-15px);

}




.step-number{

    position:absolute;

    top:-20px;

    left:50%;

    transform:translateX(-50%);


    width:45px;

    height:45px;


    display:flex;

    align-items:center;

    justify-content:center;


    background:#3baa45;

    color:white;


    border-radius:50%;


    font-weight:700;

}




.process-icon{

    width:90px;

    height:90px;

    margin:15px auto 20px;


    display:flex;

    align-items:center;

    justify-content:center;


    background:#e5f8e2;

    color:#3baa45;


    font-size:40px;


    border-radius:50%;


    transition:.5s;

}




.process-card:hover .process-icon{

    background:#3baa45;

    color:#fff;

    transform:rotateY(360deg);

}




.process-card h4{

    font-weight:700;

    margin-bottom:15px;

}




.process-card p{

    color:#666;

    font-size:15px;

    line-height:1.7;

}




@media(max-width:991px){


.process-wrapper::before{

display:none;

}


.process-title{

font-size:34px;

}


}



@media(max-width:576px){


.process-title{

font-size:28px;

}


}


/* ==========================
      TESTIMONIAL CSS
=========================== */


.testimonial-section{

    background:#f7fff5;

}



.testimonial-tag{

    color:#3baa45;

    font-weight:600;

}



.testimonial-title{

    font-size:42px;

    font-weight:750;

    margin:15px 0;

}



.testimonial-desc{

    color:#666;

    max-width:650px;

    margin:auto;

}





.testimonial-card{

    background:#fff;

    padding:35px 30px;

    border-radius:25px;

    box-shadow:0 15px 40px rgba(0,0,0,.08);

    position:relative;

    transition:.5s;

    height:100%;

}



.testimonial-card:hover{

    transform:translateY(-12px);

}





.quote-icon{

    position:absolute;

    top:-25px;

    right:30px;


    width:55px;

    height:55px;


    display:flex;

    align-items:center;

    justify-content:center;


    background:#3baa45;

    color:#fff;


    border-radius:50%;


    font-size:22px;

}





.review-text{

    color:#666;

    line-height:1.8;

    font-style:italic;

}





.stars{

    color:#ffc107;

    margin:20px 0;

}





.customer{

    display:flex;

    align-items:center;

    gap:15px;

}



.customer img{

    width:65px;

    height:65px;

    border-radius:50%;

    object-fit:cover;

    border:3px solid #3baa45;

}



.customer h5{

    margin:0;

    font-weight:700;

}



.customer span{

    color:#777;

    font-size:14px;

}




@media(max-width:768px){


.testimonial-title{

font-size:32px;

}

}




/* ==========================
      CONTACT CSS
=========================== */


.contact-section{

    background:#f7fff5;

}



.contact-tag{

    color:#3baa45;

    font-weight:600;

}



.contact-title{

    font-size:42px;

    font-weight:750;

    margin:15px 0;

}



.contact-desc{

    color:#666;

    max-width:650px;

    margin:auto;

}





/* Contact Info */


.info-box{

    display:flex;

    gap:20px;

    align-items:center;

    background:#fff;

    padding:20px;

    border-radius:18px;

    margin-bottom:20px;


    box-shadow:0 10px 30px rgba(0,0,0,.06);

    transition:.4s;

}



.info-box:hover{

    transform:translateX(10px);

}





.info-icon{

    width:60px;

    height:60px;

    background:#3baa45;

    color:#fff;


    display:flex;

    align-items:center;

    justify-content:center;


    border-radius:50%;

    font-size:25px;

}



.info-box h5{

    font-weight:700;

    margin-bottom:5px;

}



.info-box p{

    margin:0;

    color:#666;

}





/* Form */


.contact-form{

    background:#fff;

    padding:40px;

    border-radius:25px;


    box-shadow:0 20px 50px rgba(0,0,0,.08);

}





.form-control{

    border-radius:12px;

    padding:14px;

    border:1px solid #ddd;

}



.form-control:focus{

    border-color:#3baa45;

    box-shadow:0 0 0 .2rem rgba(59,170,69,.15);

}





.contact-btn{

    background:#3baa45;

    color:#fff;

    border:none;

    padding:15px 35px;

    border-radius:50px;

    font-weight:600;

    transition:.4s;

}



.contact-btn:hover{

    background:#267c30;

    transform:translateY(-5px);

}




@media(max-width:768px){


.contact-title{

font-size:32px;

}


.contact-form{

padding:25px;

}


}



/* ==========================
          FOOTER CSS
=========================== */


.footer-section{

    background:#123b18;

    color:#fff;

    /* padding-top:70px; */

    position:relative;

}



.footer-logo{

    color:#7be07b;

    font-size:30px;

    font-weight:700;

    text-decoration:none;

}



.footer-about p{

    color:#c9d8c9;

    line-height:1.8;

    margin-top:20px;

}




/* Social Icons */


.social-links{

    display:flex;

    gap:12px;

    margin-top:25px;

}



.social-links a{

    width:42px;

    height:42px;

    background:#3baa45;

    color:#fff;


    display:flex;

    align-items:center;

    justify-content:center;


    border-radius:50%;


    transition:.4s;

}



.social-links a:hover{

    background:#fff;

    color:#3baa45;

    transform:translateY(-6px);

}





.footer-title{

    font-size:20px;

    margin-bottom:25px;

    position:relative;

}



.footer-title::after{

    content:"";

    width:45px;

    height:3px;

    background:#3baa45;


    position:absolute;

    left:0;

    bottom:-10px;

}





.footer-links{

    padding:0;

    list-style:none;

}



.footer-links li{

    margin-bottom:12px;

}



.footer-links a{

    color:#c9d8c9;

    text-decoration:none;

    transition:.3s;

}



.footer-links a:hover{

    color:#7be07b;

    padding-left:8px;

}





.newsletter-text{

    color:#c9d8c9;

}





.newsletter{

    display:flex;

    background:#fff;

    border-radius:50px;

    overflow:hidden;

    margin-top:20px;

}



.newsletter input{

    border:none;

    outline:none;

    padding:15px;

    flex:1;

}



.newsletter button{

    width:55px;

    border:none;

    background:#3baa45;

    color:#fff;

}




.footer-bottom{

    margin-top:60px;

    padding:20px 0;

    border-top:1px solid rgba(255,255,255,.15);

}



.copyright{

    text-align:center;

    color:#c9d8c9;

}





/* Back Top */


.back-top{

    position:fixed;

    right:25px;

    bottom:25px;


    width:45px;

    height:45px;


    background:#3baa45;

    color:#fff;


    display:flex;

    align-items:center;

    justify-content:center;


    border-radius:50%;

    text-decoration:none;


    transition:.4s;

}



.back-top:hover{

    background:#fff;

    color:#3baa45;

    transform:translateY(-5px);

}





@media(max-width:768px){

.footer-section{

text-align:center;

}


.social-links{

justify-content:center;

}


.footer-title::after{

left:50%;

transform:translateX(-50%);

}


}



/* ==========================
 VEGETABLE HERO CSS
=========================== */


.veg-hero{

    padding:100px 0;

    background:

    linear-gradient(
    135deg,
    #f4fff0,
    #ffffff
    );

    overflow:hidden;

}



.veg-badge{

    background:#dff7d8;

    color:#3baa45;

    padding:10px 25px;

    border-radius:50px;

    font-weight:600;

}



.veg-hero h1{

    font-size:55px;

    line-height:1.2;

    font-weight:800;

    color:#163b18;

    margin:25px 0;

}



.veg-hero p{

    color:#666;

    font-size:18px;

    line-height:1.8;

    max-width:550px;
margin: auto;
}




.hero-buttons{

    margin-top:35px;

}



.primary-btn{

    background:#3baa45;

    color:#fff;

    padding:15px 35px;

    border-radius:50px;

    text-decoration:none;

    font-weight:600;

}



.secondary-btn{

    margin-left:15px;

    border:2px solid #3baa45;

    color:#3baa45;

    padding:13px 35px;

    border-radius:50px;

    text-decoration:none;

    font-weight:600;

}




/* Image */


.veg-image{

    position:relative;

    text-align:center;

}



.veg-image img{

    width:90%;

    animation:imageFloat 5s ease-in-out infinite;

}




/* Floating Elements */


.floating-seed{

    position:absolute;

    font-size:45px;

}



.seed-one{

    top:10%;

    left:5%;

    animation:floatSeed 4s infinite;

}



.seed-two{

    right:10%;

    top:25%;

    animation:floatSeed 5s infinite;

}



.seed-three{

    bottom:10%;

    left:20%;

    animation:floatSeed 6s infinite;

}





@keyframes imageFloat{


0%{

transform:translateY(0);

}


50%{

transform:translateY(-20px);

}


100%{

transform:translateY(0);

}


}




@keyframes floatSeed{


0%{

transform:translateY(0) rotate(0);

}


50%{

transform:translateY(-25px) rotate(15deg);

}


100%{

transform:translateY(0) rotate(0);

}


}





@media(max-width:991px){


.veg-hero h1{

font-size:40px;

}


.veg-image{

margin-top:50px;

}


}



@media(max-width:576px){


.veg-hero h1{

font-size:32px;

}


.secondary-btn{

display:inline-block;

margin:20px 0 0;

}


}




/* ==========================
 VEGETABLE PRODUCT CSS
=========================== */


.veg-products{

    background:#f7fff5;

}



.product-tag{

    color:#3baa45;

    font-weight:600;

}



.product-title{

    font-size:42px;

    font-weight:800;

    margin:15px 0;

}



.product-desc{

    color:#666;

    max-width:650px;

    margin:auto;

}





.product-card{

    background:#fff;

    border-radius:25px;

    overflow:hidden;

    box-shadow:0 15px 40px rgba(0,0,0,.08);

    transition:.5s;

}



.product-card:hover{

    transform:translateY(-12px);

}





.product-image{

    height:260px;

    position:relative;

    overflow:hidden;

}



.product-image img{

    width:100%;

    height:100%;

    object-fit:cover;

    transition:.5s;

}



.product-card:hover img{

    transform:scale(1.1);

}




.category-badge{

    position:absolute;

    top:20px;

    left:20px;

    background:#3baa45;

    color:#fff;

    padding:8px 18px;

    border-radius:30px;

    font-size:14px;

}





.product-content{

    padding:25px;

}



.product-content h4{

    font-weight:700;

}



.product-content p{

    color:#666;

    line-height:1.7;

}





.product-info{

    display:flex;

    gap:20px;

    margin:20px 0;

}



.product-info span{

    font-size:14px;

    color:#3baa45;

}



.product-info i{

    margin-right:5px;

}





.product-btn{

    display:inline-flex;

    align-items:center;

    gap:10px;

    background:#3baa45;

    color:white;

    padding:12px 25px;

    border-radius:50px;

    text-decoration:none;

    transition:.4s;

}



.product-btn:hover{

    background:#267d31;

    color:#fff;

}





@media(max-width:768px){

.product-title{

font-size:32px;

}

}


/* =====================
      GALLERY CSS
===================== */


.gallery-section{

background:#f7fff5;

}



.gallery-tag{

color:#3baa45;

font-weight:600;

}



.gallery-section h2{

font-size:42px;

font-weight:800;

margin-top:15px;

}



.gallery-section p{

color:#666;

}




.gallery-card{

position:relative;

overflow:hidden;

border-radius:25px;

height:320px;

box-shadow:0 15px 40px rgba(0,0,0,.1);

}



.gallery-card img{

width:100%;

height:100%;

object-fit:cover;

transition:.6s;

}



.gallery-card:hover img{

transform:scale(1.15);

}




.gallery-overlay{

position:absolute;

inset:0;

background:rgba(48,150,60,.75);

display:flex;

flex-direction:column;

align-items:center;

justify-content:center;

opacity:0;

transition:.5s;

color:#fff;

}



.gallery-card:hover .gallery-overlay{

opacity:1;

}



.gallery-overlay h4{

font-weight:700;

}



.gallery-overlay a{

width:50px;

height:50px;

background:#fff;

color:#3baa45;

display:flex;

align-items:center;

justify-content:center;

border-radius:50%;

margin-top:15px;

}



@media(max-width:768px){

.gallery-section h2{

font-size:32px;

}
.header-btn{
    display: none;
}
.logo img{
    width: 60px;
}
}



@media(max-width:576px) {

    .hero h1 {

        font-size: 34px;

    }

    .hero p {

        font-size: 16px;

    }

    .btn1,
    .btn2 {
        padding: 5px 10px; 
        width: 100%;
        font-size: 14px;
        text-align: center;

    }
    .leaf1 {
    left: 4%;
    top: 4%;
    width: 40px;
}

.leaf2 {
    right: 1%;
    top: 4%;
       width: 40px;
}
.hero::after {
    bottom: -140px;
}
}
