/*=========================================
Google Fonts
=========================================*/

:root{

    --primary:#2E7D32;
    --secondary:#43A047;
    --accent:#F9A825;
    --dark:#1F2937;
    --text:#64748B;
    --white:#fff;
    --bg:#F8FAF5;
    --border:#E5E7EB;

}

*{

    margin:0;
    padding:0;
    box-sizing:border-box;

}

html{

    scroll-behavior:smooth;

}

body{

    font-family:'Poppins',sans-serif;
    background:var(--bg);
    color:var(--dark);
    overflow-x:hidden;

}

img{

    max-width:100%;
    display:block;

}

a{

    text-decoration:none;

}

ul{

    list-style:none;
    padding:0;
    margin:0;

}

section{

    /* padding:100px 0; */

}

.container{

    max-width:1320px;

}

/*=========================================
TOP BAR
=========================================*/

.top-bar{

    background:var(--primary);
    color:#fff;
    padding:10px 0;
    font-size:14px;

}

.top-bar p{

    margin:0;
    font-weight:500;

}

.top-bar a{

    color:#fff;
    margin-left:18px;
    transition:.3s;

}

.top-bar a:hover{

    color:#FFE082;

}

/*=========================================
NAVBAR
=========================================*/

.navbar{

    padding:0px 0;
    background:#F7F7F7;
    box-shadow:0 8px 30px rgba(0,0,0,.05);
    position:sticky;
    top:0;
    z-index:999;

}

.navbar-brand img{

    height:65px;

}

.navbar-nav{

    gap:18px;

}

.nav-link{

    color:var(--dark);
    font-weight:500;
    position:relative;
    transition:.3s;

}

.nav-link:hover{

    color:var(--primary);

}

.nav-link.active{

    color:var(--primary);

}

.nav-link::after{

    content:"";
    position:absolute;
    left:0;
    bottom:-8px;
    width:0%;
    height:2px;
    background:var(--primary);
    transition:.4s;

}

.nav-link:hover::after{

    width:100%;

}

/*=========================================
DOWNLOAD BUTTON
=========================================*/

.download-btn{

    background:var(--primary);
    color:#fff;
    padding:14px 28px;
    border-radius:50px;
    font-weight:600;
    transition:.35s;

}

.download-btn:hover{

    background:#256628;
    color:#fff;
    transform:translateY(-3px);

}

/*=========================================
HERO
=========================================*/

.hero{
    min-height:75vh;
    display:flex;
    align-items:center;
    background:linear-gradient(135deg,#F8FAF5,#EDF7EC);
    position:relative;
    overflow:hidden;

}

/* background blobs */

.hero::before{
    content:"";
    width:500px;
    height:500px;
    background:#C8E6C9;
    border-radius:50%;
    position:absolute;
    top:-150px;
    right:-120px;
    opacity:.4;

}

.hero::after{
    content:"";
    width:350px;
    height:350px;
    background:#A5D6A7;
    border-radius:50%;
    position:absolute;
    left:-120px;
    bottom:-150px;
    opacity:.3;

}

.hero .container{
    position:relative;
    z-index:2;
}

.hero-tag{

    display:inline-block;
    background:#E8F5E9;
    color:var(--primary);
    padding:12px 22px;
    border-radius:40px;
    font-size:15px;
    font-weight:600;
    margin-bottom:18px;

}

.hero h1{

     font-family:'Poppins',sans-serif;
    font-size:40px;
    font-weight:600;
    line-height:1.18;
    color:#325634;
    margin-bottom:18px;

}

.hero p{

    color:var(--text);
    font-size:15px;
    line-height:1.9;
    max-width:560px;

}

/*=========================================
BUTTONS
=========================================*/

.hero-buttons{
    display:flex;
    gap:20px;
    margin: 30px 0 30px 0;

}

.btn-green{

    background:var(--primary);
    color:#fff;
    padding:14px 28px;
    border-radius:50px;
    font-weight:600;
    transition:.35s;

}

.btn-green:hover{

    color:#fff;
    background:#256628;
    transform:translateY(-4px);

}

.btn-white{

    border:2px solid var(--primary);
    color:var(--primary);
    padding:14px 28px;
    border-radius:50px;
    font-weight:600;
    transition:.35s;

}

.btn-white:hover{

    background:var(--primary);
    color:#fff;

}

/*=========================================
FEATURES
=========================================*/

.hero-features{

    display:flex;
    gap:18px;
    flex-wrap:wrap;

}

.hero-features div{

    background:#fff;
    padding:16px 22px;
    border-radius:16px;
    box-shadow:0 12px 35px rgba(0,0,0,.08);
    font-weight:600;
    color:var(--dark);

}

.hero-features i{

    color:var(--primary);
    margin-right:8px;

}

/*=========================================
HERO IMAGE
=========================================*/

.hero-image{

    position:relative;
    text-align:center;

}

.hero-image img{

    width:100%;
    max-width:620px;
    animation:float 5s ease-in-out infinite;

}

/*=========================================
FLOAT ANIMATION
=========================================*/

@keyframes float{

    0%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(-18px);

    }

    100%{

        transform:translateY(0);

    }

}


/*==================================
ANNOUNCEMENT BAR
==================================*/

.announcement-bar{

    background:#2E7D32;
    color:#fff;
    overflow:hidden;
    white-space:nowrap;
    padding:14px 0;

}

.marquee{

    width:100%;
    overflow:hidden;

}

.marquee-content{

    display:inline-flex;
    align-items:center;
    gap:80px;
    animation:marquee 28s linear infinite;

}

.marquee-content span{

    font-size:16px;
    font-weight:500;

}

.marquee-content strong{

    color:#FFD54F;

}

.announcement-bar:hover .marquee-content{

    animation-play-state:paused;

}

@keyframes marquee{

    from{

        transform:translateX(0);

    }

    to{

        transform:translateX(-50%);

    }

}

/*==================================
SECTION TITLE
==================================*/

.section-title{

    text-align:center;
    margin-bottom:30px;

}

.section-title span{

    color:var(--primary);
    font-weight:700;
    letter-spacing:2px;

}

.section-title h2{

    font-family:'Poppins',sans-serif;
    font-size:30px;
    margin:15px 0;
    font-weight:600;

}

.section-title p{

    max-width:650px;
    margin:auto;
    color:var(--text);

}

/*==================================
CATEGORY
==================================*/

.categories{

    padding-top:90px;

}

.category-card{

    background:#fff;
    overflow:hidden;
    border-radius:25px;
    transition:.4s;
    box-shadow:0 15px 40px rgba(0,0,0,.05);

}

.category-card:hover{

    transform:translateY(-12px);

}

.category-card img{

    width:100%;
    height:250px;
    object-fit:cover;
    transition:.5s;

}

.category-card:hover img{

    transform:scale(1.08);

}

.category-content{
    padding:22px;

}

.category-content h4{

    font-size:20px;
    margin-bottom:15px;

}

.category-content p{
font-size: 14px;
    color:var(--text);
    line-height:1.8;
    margin: 0;

}

.category-content a{

    display:inline-flex;
    align-items:center;
    gap:10px;
    margin-top:20px;
    color:var(--primary);
    font-weight:600;

}

.category-content i{

    transition:.3s;

}

.category-card:hover i{

    transform:translateX(8px);

}


/*=====================================
FEATURED PRODUCTS
======================================*/

.featured-products{

    background:#ffffff;
    padding:110px 0;

}

.product-filter{

    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:15px;
    margin-bottom:50px;

}

.product-filter button{

    border:none;
    background:#F3F7F1;
    padding:14px 28px;
    border-radius:50px;
    font-weight:600;
    transition:.3s;

}

.product-filter button.active,
.product-filter button:hover{

    background:var(--primary);
    color:#fff;

}

/* Product Card */

.product-card{

    background:#fff;
    border-radius:25px;
    overflow:hidden;
    position:relative;
    box-shadow:0 15px 45px rgba(0,0,0,.06);
    transition:.35s;

}

.product-card:hover{

    transform:translateY(-12px);

}

.product-card img{

    width:100%;
    height:240px;
    object-fit:contain;
    padding: 30px 30px 0 30px;
    transition:.4s;

}

.product-card:hover img{

    transform:scale(1.08);

}

.product-badge{

    position:absolute;
    top:18px;
    left:18px;
    background:var(--primary);
    color:#fff;
    padding:8px 16px;
    border-radius:50px;
    font-size:13px;

}

.product-body{

    padding:25px;

}

.product-body h4{

    font-size:20px;
    margin-bottom:10px;

}

.rating{

    color:#F9A825;
    margin-bottom:10px;

}

.product-price{

    filter:blur(6px);
    user-select:none;
    margin:20px 0;
    font-size:22px;
    font-weight:700;

}

.product-body small{

    display:block;
    color:var(--text);
    margin-bottom:20px;

}

.product-buttons{

    display:flex;
    gap:10px;

}

.view-btn{
 font-size: 12px;
    flex:1;
    background:var(--primary);
    color:#fff;
    text-align:center;
    padding:12px;
    border-radius:50px;
    font-weight:600;
    margin: 0;

}

.view-btn:hover{

    background:#256628;
    color:#fff;

}

.order-btn{

    flex:1;
    border:2px solid var(--primary);
    color:var(--primary);
    text-align:center;
    padding:12px;
    border-radius:50px;
    font-weight:600;
    transition:.3s;
    font-size: 12px;

}

.order-btn:hover{

    background:var(--primary);
    color:#fff;

}

/*==================================
WHY US
==================================*/

.why-us{

    padding:120px 0;
    background:#F8FAF5;

}

.why-image{

    position:relative;

}

.why-image img{

    width:100%;
    border-radius:30px;
    /* box-shadow:0 20px 50px rgba(0,0,0,.08); */

}

.experience-card{

    position:absolute;
    bottom:0px;
    right:-20px;
    background:#fff;
    padding:30px;
    border-radius:25px;
    width:220px;
    text-align:center;
    box-shadow:0 20px 45px rgba(0,0,0,.12);

}

.experience-card h2{

    font-size:52px;
    color:var(--primary);
    font-weight:700;

}

.experience-card p{

    margin:10px 0 0;
    color:var(--text);

}

/* Feature Cards */

.feature-card{

    background:#fff;
    padding:30px;
    border-radius:22px;
    text-align:center;
    transition:.35s;
    height:100%;
    box-shadow:0 10px 35px rgba(0,0,0,.05);

}

.feature-card:hover{

    transform:translateY(-10px);

}

.feature-card i{

    width:70px;
    height:70px;
    line-height:70px;
    border-radius:50%;
    background:#E8F5E9;
    color:var(--primary);
    font-size:28px;
    margin-bottom:20px;

}

.feature-card h5{

    font-size:18px;
    margin-bottom:10px;

}

.feature-card p{
     margin:0;
     font-size:14px;
    color:var(--text);
    line-height:1.7;

}

/*==================================
FARM JOURNEY
==================================*/

.farm-journey{

    padding:70px 0;
    background:#ffffff;

}

.journey-wrapper{

    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:20px;
    margin-top:60px;
    flex-wrap:wrap;

}

.journey-item{

    flex:1;
    min-width:180px;
    text-align:center;
    position:relative;

}

.ji{

    width:90px;
    height:90px;
    margin:auto;
    border-radius:50%;
    background:linear-gradient(135deg,#2E7D32,#43A047)!important;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:34px;
    box-shadow:0 15px 35px rgba(46,125,50,.25);
    transition:.35s;

}

.journey-item:hover .journey-icon{

    transform:translateY(-8px) scale(1.08);

}

.journey-item h5{

    margin-top:25px;
    font-size:22px;
    font-weight:600;

}

.journey-item p{

    color:var(--text);
    margin-top:10px;
    line-height:1.7;

}

.journey-arrow{

    color:var(--primary);
    font-size:28px;

}

/*==================================
STATISTICS
==================================*/

.stats-section{

    padding:60px 0;
    background:linear-gradient(135deg,#2E7D32,#43A047);

}

.stats-card{

    background:rgba(255,255,255,.12);
    backdrop-filter:blur(15px);
    border:1px solid rgba(255,255,255,.15);
    border-radius:24px;
    padding:45px 30px;
    text-align:center;
    transition:.35s;
    height:100%;

}

.stats-card:hover{

    transform:translateY(-10px);

    background:rgba(255,255,255,.18);

}

.stats-icon{

    width:80px;
    height:80px;
    margin:auto;
    border-radius:50%;
    background:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:30px;
    color:var(--primary);
    margin-bottom:25px;

}

.stats-card h2{

    color:#fff;
    font-size:40px;
    font-weight:700;
    margin-bottom:10px;

}

.stats-card p{

    color:#E8F5E9;
    margin:0;
    font-size:18px;

}

/*==================================
FAQ
==================================*/

.faq-section{

    padding:70px 0;
    background:#fff;

}

.accordion-item{

    border:none;
    margin-bottom:20px;
    border-radius:18px !important;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,.05);

}

.accordion-button{

    padding:25px;
    font-weight:600;
    font-size:18px;
    background:#fff;

}

.accordion-button:not(.collapsed){

    background:#E8F5E9;
    color:var(--primary);

}

.accordion-button:focus{

    box-shadow:none;

}

.accordion-body{

    color:var(--text);
    line-height:1.8;

}

/*==================================
DOWNLOAD APP
==================================*/

.download-app{

padding:70px 0;
background:linear-gradient(135deg,#2E7D32,#43A047);
overflow:hidden;
position:relative;

}

.download-app::before{

content:"";
position:absolute;
width:450px;
height:450px;
background:rgba(255,255,255,.08);
border-radius:50%;
top:-180px;
right:-120px;

}

.download-app::after{

content:"";
position:absolute;
width:300px;
height:300px;
background:rgba(255,255,255,.05);
border-radius:50%;
left:-120px;
bottom:-120px;

}

.download-app .container{

position:relative;
z-index:2;

}

.section-badge{

display:inline-block;
padding:10px 24px;
background:rgba(255,255,255,1);
border-radius:50px;
color:#2e7d32;
font-weight:600;
/* margin-bottom:25px; */

}

.download-app h2{

    font-family:'Poppins',sans-serif;
    font-size:35px;
line-height:1.25;
color:#fff;
font-weight:600;
margin-bottom:25px;

}

.download-app p{

color:#EAF7EA;
font-size:14px;
line-height:1.9;

}

.download-list{

margin:35px 0;

}

.download-list li{

margin-bottom:15px;
color:#fff;
font-size:14px;

}

.download-list i{

color:#FFD54F;
margin-right:10px;

}

.download-buttons{

display:flex;
gap:20px;
margin-top:35px;

}

.playstore-btn,
.appstore-btn{

padding:16px 30px;
border-radius:50px;
font-weight:600;
background:#fff;
color:#2E7D32;
transition:.3s;

}

.playstore-btn:hover,
.appstore-btn:hover{

transform:translateY(-5px);
background:#F4F4F4;
color:#2E7D32;

}

.playstore-btn i,
.appstore-btn i{

margin-right:8px;

}

.phone-wrapper{

position:relative;
text-align:center;

}

.phone-image{

max-width:360px;
margin:auto;
animation:float 5s infinite ease-in-out;

}

.qr-box{

position:absolute;
bottom:20px;
left:20px;
background:#fff;
padding:15px;
border-radius:18px;
text-align:center;
box-shadow:0 20px 40px rgba(0,0,0,.18);

}

.qr-box img{

width:110px;

}

.qr-box p{

margin-top:10px;
margin-bottom:0;
font-size:14px;
font-weight:600;
color:#222;

}

/*==================================
FOOTER
==================================*/

.footer{

background:#183A1D;
padding:90px 0 25px;
color:#fff;

}

.footer-logo{
background:#fff;
height:90px;
padding:10px;
margin-bottom:25px;
border-radius:12px;

}

.footer-about{

color:#C8D5C6;
line-height:1.9;
margin-bottom:30px;
font-size:14px;

}

.footer h4{

margin-bottom:25px;
font-size:22px;

}

.footer ul{

padding:0;
margin:0;

}

.footer ul li{
font-size: 14px;
list-style:none;
margin-bottom:15px;

}

.footer ul li a{

color:#C8D5C6;
transition:.3s;

}

.footer ul li a:hover{

color:#fff;
padding-left:8px;

}

.contact-info li{

display:flex;
align-items:flex-start;
gap:12px;
color:#C8D5C6;

}

.contact-info i{

color:#7ED957;
margin-top:5px;

}

.social-links{

display:flex;
gap:15px;

}

.social-links a{

width:45px;
height:45px;
background:rgba(255,255,255,.08);
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
color:#fff;
transition:.3s;

}

.social-links a:hover{

background:#2E7D32;
transform:translateY(-5px);

}

.footer-download{

display:inline-block;
margin-top:25px;
padding:14px 28px;
background:#2E7D32;
color:#fff;
border-radius:50px;
font-weight:600;
transition:.3s;

}

.footer-download:hover{

background:#43A047;
color:#fff;

}

.footer hr{

margin:60px 0 25px;
border-color:rgba(255,255,255,.62);

}

.footer-bottom{

display:flex;
justify-content:space-between;
align-items:center;
flex-wrap:wrap;
gap:15px;

}

.footer-bottom p{

margin:0;
color:#C8D5C6;

}

.footer-bottom a{

color:#C8D5C6;

}

.footer-bottom a:hover{

color:#fff;

}
.product-item{

    transition:.35s ease;

}

.product-filter button.active{

    background:#2E7D32;
    color:#fff;

}

/*==================================
ABOUT HERO
==================================*/

.about-hero{

padding:40px 0;
background:linear-gradient(135deg,#F8FAF5,#EDF7EC);
overflow:hidden;
position:relative;

}

.about-hero::before{

content:"";
position:absolute;
width:500px;
height:500px;
border-radius:50%;
background:#C8E6C9;
right:-180px;
top:-180px;
opacity:.4;

}

.about-hero::after{

content:"";
position:absolute;
width:350px;
height:350px;
border-radius:50%;
background:#A5D6A7;
left:-120px;
bottom:-120px;
opacity:.3;

}

.about-hero .container{

position:relative;
z-index:2;

}

.breadcrumb-nav{

margin-bottom:20px;
font-size:15px;

}

.breadcrumb-nav a{

color:var(--primary);
font-weight:600;

}

.breadcrumb-nav span{

margin:0 8px;
color:#777;

}

.about-hero h1{

 font-family:'Poppins',sans-serif;
font-size:35px;
font-weight:600;
line-height:1.2;
margin:25px 0;

}

.about-hero p{

font-size:14px;
line-height:1.9;
color:var(--text);
margin-bottom:35px;

}

.about-hero-image{

position:relative;
text-align:center;

}

.about-hero-image img{

max-width:600px;
width:100%;
animation:float 5s ease-in-out infinite;

}

.floating-card{

position:absolute;
background:#fff;
padding:16px 24px;
border-radius:16px;
box-shadow:0 20px 40px rgba(0,0,0,.08);
font-weight:600;

}

.card-1{

left:0;
top:60px;

}

.card-2{

right:0;
bottom:60px;

}

/*==================================
WHO WE ARE
==================================*/

.who-we-are{

    padding:120px 0;
    background:#fff;

}

.section-subtitle{

    display:inline-block;
    margin-bottom:18px;
    color:var(--primary);
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;

}

.who-we-are h2{

        font-family:'Poppins',sans-serif;
    font-size:25px;
    line-height:1.25;
    /* margin-bottom:25px; */
    font-weight:600;

}

.who-we-are p{

    color:var(--text);
    line-height:1.9;
    font-size:14px;
    margin-bottom:10px;

}

.who-image{

    position:relative;

}

.who-image img{

    width:100%;
    border-radius:30px;
    /* box-shadow:0 25px 50px rgba(0,0,0,.08); */

}

.experience-box{

    position:absolute;
    bottom:30px;
    right:-30px;

    width:260px;

    background:#fff;

    padding:25px;

    border-radius:20px;

    box-shadow:0 20px 45px rgba(0,0,0,.12);

}

.experience-box h3{

    color:var(--primary);
    font-size:26px;
    margin-bottom:10px;

}

.experience-box p{
    margin:0;
    font-size:15px;

}

.about-list{

    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:20px;
    margin-top:35px;

}

.about-list div{

    display:flex;
    align-items:flex-start;
    gap:12px;
    font-weight:600;

}

.about-list i{
    color:var(--primary);
    margin-top:4px;

}

/*==================================
OUR JOURNEY
==================================*/

.our-journey{

    padding:60px 0;
    background:#F8FAF5;
    position:relative;

}

.timeline{

    position:relative;
    max-width:1100px;
    margin:70px auto 0;

}

.timeline::before{

    content:"";
    position:absolute;
    left:50%;
    top:0;
    transform:translateX(-50%);
    width:4px;
    height:100%;
    background:#D8EED8;
    border-radius:20px;

}

.timeline-item{

    width:45%;
    margin-bottom:70px;
    position:relative;

}

.timeline-item.left{

    margin-right:auto;

}

.timeline-item.right{

    margin-left:auto;

}

.timeline-content{

    background:#fff;
    padding:35px;
    border-radius:24px;
    box-shadow:0 15px 40px rgba(0,0,0,.06);
    transition:.35s;

}

.timeline-content:hover{

    transform:translateY(-8px);

}

.timeline-number{

    display:inline-block;
    background:#E8F5E9;
    color:var(--primary);
    padding:8px 18px;
    border-radius:50px;
    font-weight:700;
    margin-bottom:20px;

}

.timeline-content h3{

    font-size:20px;
    margin-bottom:18px;

}

.timeline-content p{

    color:var(--text);
    line-height:1.9;
    margin:0;
    font-size:15px;

}

.timeline-icon{

    width:70px;
    height:70px;
    border-radius:50%;
    background:var(--primary);
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
    position:relative;
    margin:0 auto 50px;
    z-index:2;
    box-shadow:0 10px 30px rgba(46,125,50,.25);

}

/*==================================
MISSION & VALUES
==================================*/

.mission-values{

    padding:120px 0;
    background:#fff;

}

.purpose-card{

    height:100%;
    padding:45px;
    border-radius:30px;
    background:#F8FAF5;
    transition:.35s;
    position:relative;
    overflow:hidden;

}

.purpose-card::before{

    content:"";
    position:absolute;
    width:180px;
    height:180px;
    border-radius:50%;
    background:rgba(46,125,50,.08);
    right:-60px;
    top:-60px;

}

.purpose-card:hover{

    transform:translateY(-10px);
    box-shadow:0 20px 45px rgba(0,0,0,.08);

}

.purpose-icon{

    width:80px;
    height:80px;
    border-radius:50%;
    background:var(--primary);
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:34px;
    margin-bottom:30px;

}

.purpose-card h3{

    font-size:32px;
    margin-bottom:20px;

}

.purpose-card p{

    color:var(--text);
    line-height:1.9;
    margin:0;

}

/* Core Values */

.values-grid{

    margin-top:70px;
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;

}

.value-card{

    text-align:center;
    padding:40px 30px;
    border-radius:25px;
    background:#fff;
    border:1px solid #E8ECE8;
    transition:.35s;

}

.value-card:hover{

    transform:translateY(-8px);
    border-color:var(--primary);
    box-shadow:0 15px 35px rgba(0,0,0,.06);

}

.value-card i{

    width:75px;
    height:75px;
    line-height:75px;
    border-radius:50%;
    background:#E8F5E9;
    color:var(--primary);
    font-size:30px;
    margin-bottom:25px;

}

.value-card h4{

    font-size:24px;
    margin-bottom:15px;

}

.value-card p{

    color:var(--text);
    line-height:1.8;
    margin:0;

}

/*==================================
WHY RYTHUMALL
==================================*/

.why-rythumall{

    padding:120px 0;
    background:#F8FAF5;

}

.comparison-wrapper{

    margin-top:60px;
    border-radius:30px;
    overflow:hidden;
    box-shadow:0 20px 45px rgba(0,0,0,.06);

}

.comparison-header{

    display:grid;
    grid-template-columns:1fr 1fr;

}

.comparison-title{

    padding:30px;
    text-align:center;
    font-size:26px;
    font-weight:700;

}

.old-way{

    background:#F5F5F5;
    color:#555;

}

.new-way{

    background:var(--primary);
    color:#fff;

}

.comparison-row{

    display:grid;
    grid-template-columns:1fr 1fr;

}

.comparison-row:nth-child(even){

    background:#ffffff;

}

.comparison-row:nth-child(odd){

    background:#F9FBF8;

}

.comparison-left,
.comparison-right{

    padding:28px 35px;
    display:flex;
    align-items:center;
    gap:15px;
    font-size:17px;
    line-height:1.8;

}

.comparison-left::before{

    content:"✖";
    color:#D32F2F;
    font-size:22px;
    font-weight:bold;

}

.comparison-right::before{

    content:"✔";
    color:#2E7D32;
    font-size:22px;
    font-weight:bold;

}

.comparison-row:hover{

    background:#EDF7EC;

}

/*==================================
OUR PROMISE
==================================*/

.our-promise{

    padding:120px 0;
    background:#ffffff;
    position:relative;

}

.promise-image{

    position:relative;

}

.promise-image img{

    width:100%;
    border-radius:30px;
    /* box-shadow:0 25px 50px rgba(0,0,0,.08); */

}

.promise-card{

    position:absolute;
    left:-30px;
    bottom:40px;
    background:#2E7D32;
    color:#fff;
    width:280px;
    padding:30px;
    border-radius:24px;
    box-shadow:0 20px 45px rgba(46,125,50,.25);

}

.promise-card h3{

    font-size:25px;
    margin-bottom:15px;


}

.promise-card p{

    color:#fff;
    margin:0;
    font-size:14px;
    line-height:1.8;

}
.promise-head{
    font-size:25px;
    font-weight:600;
    margin-bottom:15px;
}
.prmoise-text{
    margin-bottom:30px;
     margin:0;
    font-size:14px;
    line-height:1.8;
}

.promise-list{

    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:18px;
    margin-top:35px;

}

.promise-list div{

    display:flex;
    align-items:flex-start;
    gap:12px;
    font-weight:600;

}

.promise-list i{

    color:var(--primary);
    margin-top:4px;

}

/*==================================
HOW HERO
==================================*/

.how-hero{

padding:20px 0;
background:linear-gradient(135deg,#F8FAF5,#EDF7EC);
position:relative;
overflow:hidden;

}

.how-hero::before{

content:"";
position:absolute;
width:500px;
height:500px;
background:#C8E6C9;
border-radius:50%;
top:-180px;
right:-150px;
opacity:.35;

}

.how-hero::after{

content:"";
position:absolute;
width:350px;
height:350px;
background:#A5D6A7;
border-radius:50%;
bottom:-120px;
left:-120px;
opacity:.35;

}

.how-hero h1{

font-size:35px;
line-height:1.25;
font-weight:600;
margin: 0 0 25px 0;

}

.how-hero p{

font-size:14px;
line-height:1.9;

}

.hero-features{

display:flex;
gap:18px;
margin-top:40px;
flex-wrap:wrap;

}

.hero-features div{

background:#fff;
padding:14px 20px;
border-radius:40px;
box-shadow:0 12px 25px rgba(0,0,0,.06);
font-weight:600;

}

.hero-features i{

color:#2E7D32;
margin-right:8px;

}

.how-hero-image{

position:relative;
text-align:center;

}

.how-hero-image img{

/* max-width:550px; */
width:100%;

}

.floating-card{

position:absolute;
background:#fff;
padding:14px 20px;
border-radius:16px;
box-shadow:0 12px 30px rgba(0,0,0,.08);
font-weight:600;

}

.floating-card.one{

top:30px;
left:0;

}

.floating-card.two{

right:0;
top:180px;

}

.floating-card.three{

left:60px;
bottom:40px;

}

/*==================================
HOW STEPS
==================================*/

.how-steps{
    padding:60px 0;
    background:#fff;
}

.steps-wrapper{
    margin-top:70px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:20px;

}

.step-card{
    flex:1;
    background:#fff;
    border:1px solid #2E7D32;
    border-radius:25px;
    padding:35px 18px;
    text-align:center;
    position:relative;
    transition:.35s;

}

.step-card:hover{
    transform:translateY(-10px);
    border-color:#2E7D32;
    box-shadow:0 20px 40px rgba(0,0,0,.08);

}

.step-number{
    position:absolute;
    top:20px;
    right:20px;
    font-size:14px;
    font-weight:700;
    color:#2E7D32;
    background:#EDF7EC;
    padding:6px 12px;
    border-radius:30px;

}

.step-icon{
    width:90px;
    height:90px;
    margin:0 auto 25px;
    border-radius:50%;
    background:#EDF7EC;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:36px;
    color:#2E7D32;

}

.step-card h3{
    font-size:16px;
    margin-bottom:18px;
    line-height:1.4;

}

.step-card p{
font-size:12.5px;
    color:#383838;
    line-height:1.8;
    margin:0;

}

.step-arrow{

    color:#2E7D32;
    font-size:30px;

}

/*==================================
WHY ORDER
==================================*/

.why-order{

    padding:120px 0;
    background:#F8FAF5;

}

.why-order-image{

    position:relative;

}

.why-order-image img{

    width:100%;
    border-radius:30px;
    /* box-shadow:0 20px 45px rgba(0,0,0,.08); */

}

.delivery-badge{

    position:absolute;
    right:-20px;
    bottom:40px;

    background:#2E7D32;
    color:#fff;

    padding:22px 28px;

    border-radius:20px;

    display:flex;
    align-items:center;
    gap:18px;

    box-shadow:0 15px 35px rgba(46,125,50,.30);

}

.delivery-badge i{

    font-size:34px;

}

.delivery-badge strong{

    display:block;
    font-size:18px;

}

.delivery-badge span{

    font-size:14px;
    opacity:.9;

}

.why-list{

    margin-top:40px;

}

.why-list>div{

    display:flex;
    gap:20px;
    margin-bottom:28px;
    align-items:flex-start;

}

.why-list i{

    width:70px;
    height:70px;
    border-radius:50%;
    background:#E8F5E9;
    color:#2E7D32;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
    flex-shrink:0;

}

.why-list h4{

    font-size:24px;
    margin-bottom:8px;

}

.why-list p{

    margin:0;
    color:#666;
    line-height:1.8;

}

/*==================================
FARM JOURNEY
==================================*/

.farm-journey{

    padding:120px 0;
    background:#fff;

}

.journey-wrapper{

    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:7px;
    margin-top:70px;

}

.journey-card{

    flex:1;
    text-align:center;
    padding:30px 10px;
    background:#F8FAF5;
    border-radius:25px;
    transition:.35s;
    border: #183A1D solid 1px;

}

.journey-card:hover{

    transform:translateY(-10px);
    box-shadow:0 20px 45px rgba(0,0,0,.08);

}

.journey-icon{

    width:90px;
    height:90px;
    margin:0 auto 25px;

    border-radius:50%;
    background:#E8F5E9;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:42px;

}

.journey-card h3{

    font-size:16px;
    margin-bottom:10px;

}

.journey-card p{

    color:#666;
    line-height:1.8;
    margin:0;
    font-size:13px;

}

.journey-line{

    width:60px;
    height:4px;
    background:#2E7D32;
    border-radius:20px;
    position:relative;

}

.journey-line::after{

    content:"";
    position:absolute;
    right:0px;
    top:50%;
    transform:translateY(-50%);
    width:14px;
    height:14px;
    background:#2E7D32;
    border-radius:50%;

}

/*==================================
DELIVERY AREAS
==================================*/

.delivery-areas{

padding:120px 0;
background:#F8FAF5;

}

.delivery-areas h2{

font-size:35px;
font-weight: 600;
margin:20px 0;

}

.delivery-note{

margin-top:40px;
background:#fff;
padding:25px;
border-radius:20px;
display:flex;
gap:20px;
align-items:flex-start;
box-shadow:0 15px 35px rgba(0,0,0,.05);

}

.delivery-note i{

font-size:34px;
color:#2E7D32;

}

.delivery-note p{
font-size:14px;
margin:8px 0 0;

}
.delivery-p{
    font-size:14px;
    margin:8px 0 0;
    line-height:1.8;
}

.area-grid{

display:grid;
grid-template-columns:repeat(3,1fr);
gap:20px;

}

.area-card{

background:#fff;
padding:22px;
border-radius:18px;
text-align:center;
font-weight:600;
transition:.35s;
box-shadow:0 10px 25px rgba(0,0,0,.05);

}

.area-card:hover{

background:#2E7D32;
color:#fff;
transform:translateY(-8px);

}

.area-card i{

display:block;
font-size:24px;
margin-bottom:12px;
color:#2E7D32;

}

.area-card:hover i{

color:#fff;

}

/*==================================
FAQ
==================================*/

.faq-section{

    padding:120px 0;
    background:#fff;

}

.custom-faq{

    max-width:900px;
    margin:60px auto 0;

}

.custom-faq .accordion-item{

    border:none;
    margin-bottom:20px;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,.05);

}

.custom-faq .accordion-button{

    padding:24px 28px;
    font-size:20px;
    font-weight:600;
    background:#fff;
    box-shadow:none;

}

.custom-faq .accordion-button:not(.collapsed){

    background:#2E7D32;
    color:#fff;

}

.custom-faq .accordion-body{

    padding:25px 30px;
    line-height:1.9;
    color:#666;

}

/*==================================
CONTACT INFO
==================================*/

.contact-info{

padding:120px 0;
/* background:#fff; */

}

.contact-card{

background:#fff;
border-radius:25px;
padding:45px 30px;
text-align:center;
height:100%;
border:1px solid #edf1ed;
transition:.35s;
box-shadow:0 10px 30px rgba(0,0,0,.05);

}

.contact-card:hover{

transform:translateY(-10px);
border-color:#2E7D32;
box-shadow:0 20px 45px rgba(0,0,0,.08);

}

.contact-icon{

width:85px;
height:85px;
margin:auto;
border-radius:50%;
background:#EDF7EC;
display:flex;
align-items:center;
justify-content:center;
font-size:34px;
color:#2E7D32;
margin-bottom:25px;
transition:.3s;

}

.contact-card:hover .contact-icon{

background:#2E7D32;
color:#fff;
transform:rotate(10deg);

}

.contact-card h4{

margin-bottom:15px;

}

.contact-card a{

color:#555;
text-decoration:none;
font-weight:500;

}

.contact-card p{

margin:0;
color:#666;

}

/*==================================
CONTACT FORM
==================================*/

.contact-form-section{

padding:120px 0;
background:#F8FAF5;

}

.contact-form-box{

background:#fff;
padding:45px;
border-radius:30px;
box-shadow:0 20px 45px rgba(0,0,0,.06);
height:100%;

}

.contact-form-box h2{

margin:20px 0;

}

.contact-form-box p{

margin-bottom:35px;

}

.contact-form-box .form-control{

height:58px;
border-radius:15px;
border:1px solid #E5E5E5;
padding:15px 20px;
box-shadow:none;

}

.contact-form-box textarea.form-control{

height:auto;
resize:none;

}

.contact-form-box .form-control:focus{

border-color:#2E7D32;

}

.map-box{

overflow:hidden;
border-radius:30px;
height:100%;
min-height:650px;
box-shadow:0 20px 45px rgba(0,0,0,.06);

}

.map-box iframe{

width:100%;
height:100%;

}

/*==================================
BUSINESS HOURS
==================================*/

.business-hours{

padding:120px 0;
background:#fff;

}

.hours-wrapper{

background:#F8FAF5;
border-radius:25px;
padding:40px;

}

.hours-item{

display:flex;
justify-content:space-between;
align-items:center;
padding:22px 0;
border-bottom:1px solid #E6E6E6;

}

.hours-item:last-child{

border:none;

}

.hours-item span{

font-size:18px;
font-weight:600;

}

.hours-item strong{

color:#2E7D32;

}

.help-card{

background:linear-gradient(135deg,#2E7D32,#4CAF50);
color:#fff;
padding:40px;
border-radius:25px;
height:100%;
display:flex;
flex-direction:column;
justify-content:center;

}

.help-icon{

width:80px;
height:80px;
background:rgba(255,255,255,.15);
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
font-size:34px;
margin-bottom:25px;

}

.help-card h3{

margin-bottom:20px;

}

.help-card p{

margin-bottom:30px;
line-height:1.8;

}

.help-card .btn-green{

background:#fff;
color:#2E7D32;
font-weight:600;

}

.help-card .btn-green:hover{

background:#F5F5F5;

}

/*==================================
HELP SECTION
==================================*/

.help-section{

padding:120px 0;
background:#F8FAF5;

}

.help-box{

background:#fff;
padding:40px 30px;
border-radius:25px;
height:100%;
transition:.35s;
border:1px solid #EDF1ED;

}

.help-box:hover{

transform:translateY(-10px);
border-color:#2E7D32;
box-shadow:0 20px 40px rgba(0,0,0,.08);

}

.help-box-icon{

width:80px;
height:80px;
border-radius:50%;
background:#EDF7EC;
display:flex;
align-items:center;
justify-content:center;
font-size:34px;
color:#2E7D32;
margin-bottom:25px;
transition:.35s;

}

.help-box:hover .help-box-icon{

background:#2E7D32;
color:#fff;
transform:rotate(10deg);

}

.help-box h4{

margin-bottom:15px;
font-size:24px;

}

.help-box p{

line-height:1.8;
color:#666;
margin-bottom:25px;

}

.help-link{

color:#2E7D32;
font-weight:600;
text-decoration:none;

}

.help-link i{

margin-left:8px;
transition:.3s;

}

.help-box:hover .help-link i{

margin-left:15px;

}
.contact-hero{
    padding:30px 0;
}