


/*==============================
GLOBAL
===============================*/

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:#f8f8f5;
    overflow-x:hidden;
}

a{
    text-decoration:none;
}

ul{
    list-style:none;
}

img{
    width:100%;
    display:block;
}

.container{
    width:92%;
    max-width:1280px;
    margin:auto;
}

/*==============================
HEADER
===============================*/

header{
        background:#21492d;

    position:fixed;
    top:0;
    left:0;
    width:100%;
    z-index:999;
    padding:20px 0;
    transition:.4s ease;
}

header.scrolled{

    background:rgba(34,78,41,.95);

    backdrop-filter:blur(12px);

    -webkit-backdrop-filter:blur(12px);

    box-shadow:0 10px 35px rgba(0,0,0,.15);

    padding:14px 0;
}

/*==============================
NAVBAR
===============================*/


/* Right Side */

.header-right{

    display:flex;

    align-items:center;

    gap:20px;

}

/* Active Menu */

nav ul li a.active{

    color:#B8D84F;

}

nav ul li a.active::after{

    width:100%;

}


header .container{

    display:flex;

    justify-content:space-between;

    align-items:center;
}

/*==============================
LOGO
===============================*/

.logo{

    display:flex;

    align-items:center;
}

.logo img{

    width:55px;
border-radius:30%;
    transition:.3s;
}

.logo img:hover{

    transform:scale(1.05);
}

/*==============================
NAVIGATION
===============================*/

nav{

    background:rgba(255,255,255,.08);

    backdrop-filter:blur(10px);

    -webkit-backdrop-filter:blur(10px);

    border:1px solid rgba(255,255,255,.08);

    border-radius:60px;

    padding:10px 28px;
}

nav ul{

    display:flex;

    align-items:center;

    gap:35px;
}

nav ul li{

    position:relative;
}

nav ul li a{

    color:#fff;

    font-size:15px;

    font-weight:500;

    letter-spacing:.3px;

    transition:.35s;
}

/* underline animation */

nav ul li a::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-8px;

    width:0;

    height:2px;

    background:#b8d84f;

    transition:.35s;
}

nav ul li:hover a{

    color:#b8d84f;
}

nav ul li:hover a::after{

    width:100%;
}

/*==============================
BUTTON
===============================*/

.visit-btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    gap:10px;

    background:#b8d84f;

    color:#21492d;

    padding:14px 28px;

    border-radius:60px;

    font-size:15px;

    font-weight:600;

    transition:.35s;
}

.visit-btn:hover{

    background:#fff;

    color:#21492d;

    transform:translateY(-3px);

    box-shadow:0 12px 25px rgba(0,0,0,.15);
}

/*==============================
MENU ICON
===============================*/

.menu-btn{

    display:none;

    color:#fff;

    font-size:28px;

    cursor:pointer;

    transition:.3s;
}

.menu-btn:hover{

    transform:rotate(90deg);
}

/*==============================
RESPONSIVE
===============================*/

@media(max-width:992px){

nav{

    position:fixed;

    top:90px;

    left:-100%;

    width:92%;

    margin-left:4%;

    border-radius:25px;

    background:#245d2d;

    padding:30px;

    transition:.4s;
}

nav.active{

    left:0;
}

nav ul{

    flex-direction:column;

    gap:25px;

    align-items:flex-start;
}

.visit-btn{

    display:none;
}

.menu-btn{

    display:block;
}

}

@media(max-width:768px){

.logo img{

    width:60px;
}

header{

    padding:15px 0;
}

}






















/*===========================
FARM HERO
===========================*/

.farm-banner{
margin-top:90px;
height:70dvh;

background:url("../images/about1.jpg") center/cover no-repeat;

display:flex;

align-items:center;

position:relative;

}

.farm-banner .overlay{

position:absolute;

inset:0;

background:rgba(20,60,30,.65);

}

.farm-banner .banner-content{

position:relative;

z-index:5;

max-width:700px;

color:white;

}

.farm-banner span{

display:inline-block;

padding:10px 24px;

background:#B8D84F;

color:#21492d;

border-radius:30px;

font-weight:600;

margin-bottom:20px;

}

.farm-banner h1{

font-size:52px;

line-height:1.15;

margin-bottom:25px;

}

.farm-banner p{

font-size:18px;

line-height:1.8;

margin-bottom:30px;

max-width:620px;

}

@media(max-width:768px){

.farm-banner{

height:60vh;

}

.farm-banner h1{

font-size:40px;

}

}













/*===================================
WELCOME TO THE FARM
====================================*/

.farm-intro{

    padding:120px 0;

    background:#fff;

}

.farm-intro-container{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:90px;

    align-items:center;

}

/* Images */

.farm-images{

    position:relative;

    min-height:620px;

}

.farm-main{

    width:100%;

    max-width:500px;

    height:560px;

    object-fit:cover;

    border-radius:30px;

    box-shadow:0 25px 60px rgba(0,0,0,.15);

}

.farm-small{

    position:absolute;

    right:0;

    bottom:40px;

    width:270px;

    height:320px;

    object-fit:cover;

    border-radius:25px;

    border:8px solid #fff;

    box-shadow:0 20px 50px rgba(0,0,0,.15);

}

/* Floating Stat */

.farm-stat{

    position:absolute;

    top:40px;

    right:20px;

    background:#21502f;

    color:#fff;

    padding:25px;

    width:190px;

    border-radius:25px;

    text-align:center;

    box-shadow:0 15px 35px rgba(0,0,0,.18);

}

.farm-stat h2{

    font-size:48px;

    color:#B8D84F;

    margin-bottom:10px;

}

.farm-stat span{

    font-size:15px;

    line-height:1.5;

}

/* Content */

.farm-content h2{

    font-size:48px;

    color:#21492d;

    line-height:1.2;

    margin:20px 0;

}

.farm-content p{

    color:#666;

    line-height:1.9;

    margin-bottom:25px;

}

/* Features */

.farm-features{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:18px;

    margin:40px 0;

}

.farm-features div{

    display:flex;

    align-items:center;

    gap:12px;

    color:#21492d;

    font-weight:500;

}

.farm-features i{

    color:#2d8a45;

    font-size:18px;

}

/* Buttons */

.farm-buttons{

    display:flex;

    gap:20px;

    flex-wrap:wrap;

}

/* Responsive */

@media(max-width:991px){

.farm-intro-container{

grid-template-columns:1fr;

}

.farm-images{

min-height:auto;

}

.farm-main{

max-width:100%;

height:450px;

}

.farm-small{

width:220px;

height:260px;

}

}

@media(max-width:768px){

.farm-intro{

padding:90px 0;

}

.farm-content h2{

font-size:34px;

}

.farm-features{

grid-template-columns:1fr;

}

.farm-small{

position:relative;

width:100%;

height:240px;

right:auto;

bottom:auto;

margin-top:20px;

border:none;

}

.farm-stat{

top:20px;

left:20px;

right:auto;

width:170px;

}

}









/*===================================
EXPLORE OUR FARM AREAS
====================================*/

.farm-areas{

    padding:120px 0;

    background:#f8fbf6;

}

.areas-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:35px;

    margin-top:70px;

}

.area-card{

    background:#fff;

    border-radius:28px;

    overflow:hidden;

    box-shadow:0 20px 50px rgba(0,0,0,.08);

    transition:.4s;

}

.area-card:hover{

    transform:translateY(-12px);

    box-shadow:0 30px 70px rgba(0,0,0,.15);

}

.area-image{

    position:relative;

    height:260px;

    overflow:hidden;

}

.area-image img{

    width:100%;

    height:100%;

    object-fit:cover;

    transition:.5s;

}

.area-card:hover .area-image img{

    transform:scale(1.12);

}

.area-image::after{

    content:"";

    position:absolute;

    inset:0;

    background:linear-gradient(to top,rgba(0,0,0,.35),transparent);

}

.area-icon{

    position:absolute;

    bottom:20px;

    left:20px;

    width:65px;

    height:65px;

    border-radius:50%;

    background:#B8D84F;

    color:#21492d;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:28px;

    z-index:2;

    box-shadow:0 12px 25px rgba(0,0,0,.2);

}

.area-content{

    padding:30px;

}

.area-content h3{

    font-size:28px;

    color:#21492d;

    margin-bottom:15px;

}

.area-content p{

    color:#666;

    line-height:1.8;

    margin-bottom:25px;

}

.area-content a{

    display:inline-flex;

    align-items:center;

    gap:10px;

    color:#21502f;

    font-weight:600;

    transition:.3s;

}

.area-content a:hover{

    color:#B8D84F;

    gap:16px;

}

@media(max-width:1100px){

.areas-grid{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:768px){

.farm-areas{

padding:90px 0;

}

.areas-grid{

grid-template-columns:1fr;

}

.area-image{

height:230px;

}

}
























/*===================================
OUR FARMING PROCESS
====================================*/

.farm-process{

    padding:120px 0;

    background:#ffffff;

}

.process-wrapper{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

    margin-top:70px;

    position:relative;

}

/* Connecting Line */

.process-wrapper::before{

    content:"";

    position:absolute;

    top:52px;

    left:12%;

    width:76%;

    height:4px;

    background:#d8e8c8;

    z-index:0;

}

/* Card */

.process-card{

    position:relative;

    background:#fff;

    border-radius:25px;

    padding:40px 30px;

    text-align:center;

    box-shadow:0 20px 45px rgba(0,0,0,.08);

    transition:.35s;

    z-index:1;

}

.process-card:hover{

    transform:translateY(-12px);

    box-shadow:0 30px 60px rgba(0,0,0,.15);

}

/* Icon */

.process-icon{

    width:95px;

    height:95px;

    margin:0 auto 25px;

    background:#edf6d4;

    border:6px solid #fff;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:36px;

    color:#21502f;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

    transition:.35s;

}

.process-card:hover .process-icon{

    background:#21502f;

    color:#fff;

    transform:rotate(8deg) scale(1.08);

}

/* Number */

.process-number{

    display:inline-block;

    margin-bottom:15px;

    color:#B8D84F;

    font-size:14px;

    font-weight:700;

    letter-spacing:2px;

}

.process-card h3{

    font-size:28px;

    color:#21492d;

    margin-bottom:15px;

}

.process-card p{

    color:#666;

    line-height:1.8;

}

/* Responsive */

@media(max-width:1100px){

.process-wrapper{

grid-template-columns:repeat(2,1fr);

}

.process-wrapper::before{

display:none;

}

}

@media(max-width:768px){

.farm-process{

padding:90px 0;

}

.process-wrapper{

grid-template-columns:1fr;

}

}
















/*===================================
SUSTAINABILITY
====================================*/

.sustainability{

    padding:120px 0;

    background:#f8fbf6;

}

.sustainability-container{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:90px;

    align-items:center;

}

/* Images */

.sustainability-images{

    position:relative;

}

.sustain-main{

    width:100%;

    height:650px;

    object-fit:cover;

    border-radius:35px;

    box-shadow:0 25px 60px rgba(0,0,0,.15);

}

/* Floating Cards */

.floating-card{

    position:absolute;

    background:white;

    padding:22px 28px;

    border-radius:20px;

    box-shadow:0 20px 40px rgba(0,0,0,.12);

}

.floating-card.one{

    top:40px;

    left:-30px;

}

.floating-card.two{

    bottom:40px;

    right:-30px;

}

.floating-card h2{

    color:#21502f;

    font-size:36px;

    margin-bottom:8px;

}

.floating-card span{

    color:#666;

}

/* Right */

.sustainability-content h2{

    font-size:48px;

    color:#21492d;

    margin:20px 0;

    line-height:1.2;

}

.sustainability-content p{

    color:#666;

    line-height:1.9;

    margin-bottom:35px;

}

/* Eco Cards */

.eco-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:22px;

    margin-bottom:40px;

}

.eco-card{

    background:white;

    padding:25px;

    border-radius:22px;

    display:flex;

    gap:18px;

    transition:.35s;

    box-shadow:0 15px 35px rgba(0,0,0,.06);

}

.eco-card:hover{

    background:#21502f;

    transform:translateY(-8px);

}

.eco-card i{

    width:65px;

    height:65px;

    border-radius:18px;

    background:#edf6d4;

    color:#21502f;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:24px;

    flex-shrink:0;

}

.eco-card h3{

    color:#21492d;

    margin-bottom:8px;

    font-size:20px;

}

.eco-card p{

    margin:0;

    line-height:1.7;

}

.eco-card:hover h3,

.eco-card:hover p{

    color:white;

}

/* Responsive */

@media(max-width:991px){

.sustainability-container{

grid-template-columns:1fr;

}

.eco-grid{

grid-template-columns:1fr;

}

.sustain-main{

height:450px;

}

.floating-card.one{

left:20px;

}

.floating-card.two{

right:20px;

}

}

@media(max-width:768px){

.sustainability{

padding:90px 0;

}

.sustainability-content h2{

font-size:34px;

}

.floating-card{

position:static;

margin-top:20px;

display:inline-block;

}

}






















/*=================================
FOOTER
==================================*/

.footer{

    background:#1b4025;

    color:#fff;

    position:relative;

    margin-top:120px;

}

.footer-top{

    height:10px;

    background:linear-gradient(90deg,#B8D84F,#2d6b38,#B8D84F);

}

.footer .container{

    padding:90px 0 30px;

}

.footer-grid{

    display:grid;

    grid-template-columns:2fr 1fr 1fr 1.2fr;

    gap:50px;

}

.footer-logo{

    width:90px;

    margin-bottom:20px;

}

.footer-col p{

    color:#d7e5d6;

    line-height:1.9;

    margin-bottom:15px;

}

.footer-col h3{

    margin-bottom:25px;

    color:#B8D84F;

    font-size:22px;

}

.footer-col ul{

    display:flex;

    flex-direction:column;

    gap:15px;

}

.footer-col ul li a{

    color:#d7e5d6;

    transition:.3s;

}

.footer-col ul li a:hover{

    color:#B8D84F;

    padding-left:8px;

}

.footer-col i{

    color:#B8D84F;

    margin-right:10px;

}

/* Social */

.social-links{

    display:flex;

    gap:15px;

    margin-top:30px;

}

.social-links a{

    width:45px;

    height:45px;

    border-radius:50%;

    background:rgba(255,255,255,.08);

    display:flex;

    justify-content:center;

    align-items:center;

    color:white;

    transition:.35s;

}

.social-links a:hover{

    background:#B8D84F;

    color:#21492d;

    transform:translateY(-5px);

}

/* Newsletter */

.newsletter{

    margin-top:70px;

    background:#24552f;

    border-radius:25px;

    padding:40px;

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:30px;

}

.newsletter h2{

    margin-bottom:10px;

}

.newsletter p{

    color:#d7e5d6;

}

.newsletter form{

    display:flex;

    flex:1;

    max-width:520px;

}

.newsletter input{

    flex:1;

    padding:18px;

    border:none;

    outline:none;

    border-radius:50px 0 0 50px;

}

.newsletter button{

    border:none;

    padding:18px 35px;

    background:#B8D84F;

    color:#21492d;

    font-weight:600;

    border-radius:0 50px 50px 0;

    cursor:pointer;

}

/* Bottom */

.footer-bottom{

    display:flex;

    justify-content:space-between;

    align-items:center;

    border-top:1px solid rgba(255,255,255,.1);

    margin-top:50px;

    padding-top:30px;

    color:#d7e5d6;

}

/* Back To Top */

.back-top{

    position:fixed;

    right:30px;

    bottom:30px;

    width:55px;

    height:55px;

    border-radius:50%;

    background:#B8D84F;

    color:#21492d;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:20px;

    box-shadow:0 10px 25px rgba(0,0,0,.2);

    transition:.3s;

}

.back-top:hover{

    transform:translateY(-6px);

}

/* Responsive */

@media(max-width:992px){

.footer-grid{

grid-template-columns:repeat(2,1fr);

}

.newsletter{

flex-direction:column;

align-items:flex-start;

}

.newsletter form{

width:100%;

max-width:none;

}

.footer-bottom{

flex-direction:column;

gap:15px;

text-align:center;

}

}

@media(max-width:768px){

.footer-grid{

grid-template-columns:1fr;

}

.newsletter{

padding:30px 25px;

}

.newsletter form{

flex-direction:column;

gap:15px;

}

.newsletter input,

.newsletter button{

width:100%;

border-radius:50px;

}

.back-top{

right:20px;

bottom:20px;

width:50px;

height:50px;

}

}