/*==============================
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;
}

}












/*================ HERO =================*/

.hero{

    position:relative;

    min-height:100vh;

    display:flex;

    align-items:center;

    overflow:hidden;

    background:linear-gradient(135deg,#205a2d,#2f7a35);

    color:#fff;
}

.hero-container{

    display:grid;

    grid-template-columns:1fr 1fr;

    align-items:center;

    gap:70px;
}

/* LEFT */

.hero-content{
margin-top:100px;
    position:relative;

    z-index:5;
}

.hero-tag{

    display:inline-block;

    background:rgba(255,255,255,.15);

    padding:10px 18px;

    border-radius:40px;

    margin-bottom:20px;

    backdrop-filter:blur(10px);

    font-size:14px;
}

.hero h1{

    font-size:45px;

    line-height:1.1;

    margin-bottom:25px;

    font-weight:700;
}

.hero p{

    font-size:17px;

    color:#ecf4ea;

    line-height:1.9;

    max-width:550px;

    margin-bottom:40px;
}

/* BUTTONS */

.hero-buttons{

    display:flex;

    gap:20px;

    margin-bottom:60px;
}

.btn-primary{

    padding:16px 35px;

    background:#c7dc52;

    color:#23482c;

    border-radius:40px;

    font-weight:600;

    transition:.35s;
}

.btn-primary:hover{

    transform:translateY(-4px);

    background:#fff;
}

.btn-outline{

    padding:16px 35px;

    border:2px solid #fff;

    color:#fff;

    border-radius:40px;

    transition:.35s;
}

.btn-outline:hover{

    background:#fff;

    color:#205a2d;
}

/* STATS */

.hero-stats{

    display:flex;

    gap:45px;
}

.stat h2{

    color:#c7dc52;

    font-size:38px;
}

.stat p{

    margin-top:8px;

    font-size:14px;

    margin-bottom:0;
}

/* IMAGE */

.hero-image{

    position:relative;
}

.hero-image img{

    width:100%;

    border-radius:40px;

    box-shadow:0 30px 60px rgba(0,0,0,.35);

    animation:floatImage 5s ease-in-out infinite;
}

.floating-card{

    position:absolute;

    bottom:40px;

    left:-50px;

    background:#fff;

    color:#205a2d;

    padding:20px 25px;

    border-radius:20px;

    font-weight:600;

    box-shadow:0 15px 35px rgba(0,0,0,.18);

    animation:floatCard 4s ease infinite;
}

/* SHAPES */

.shape{

    position:absolute;

    background:#c7dc52;

    opacity:.15;

    z-index:1;
}

.shape1{

    width:220px;

    height:220px;

    clip-path:polygon(50% 0%,100% 50%,50% 100%,0% 50%);

    top:100px;

    left:-80px;

    animation:rotateShape 15s linear infinite;
}

.shape2{

    width:300px;

    height:300px;

    border-radius:50%;

    right:-120px;

    top:120px;
}

.shape3{

    width:170px;

    height:170px;

    transform:rotate(45deg);

    bottom:-60px;

    left:45%;
}

/* SCROLL */

.scroll-down{

    position:absolute;

    bottom:30px;

    left:50%;

    transform:translateX(-50%);
}

.scroll-down span{

    width:30px;

    height:50px;

    border:2px solid #fff;

    border-radius:30px;

    display:block;

    position:relative;
}

.scroll-down span::before{

    content:"";

    position:absolute;

    width:6px;

    height:10px;

    background:#fff;

    left:50%;

    transform:translateX(-50%);

    border-radius:20px;

    top:8px;

    animation:scroll 2s infinite;
}

/* ANIMATIONS */

@keyframes floatImage{

50%,100%{transform:translateY(0);}
25%{transform:translateY(-12px);}
75%{transform:translateY(-6px);}
}

@keyframes floatCard{

50%{transform:translateY(-10px);}
}

@keyframes rotateShape{

100%{

transform:rotate(360deg);

}

}

@keyframes scroll{

0%{

opacity:1;

top:8px;

}

100%{

opacity:0;

top:28px;

}

}

/* RESPONSIVE */

@media(max-width:991px){

.hero{

padding-top:140px;

padding-bottom:80px;

}

.hero-container{

grid-template-columns:1fr;

}

.hero h1{

font-size:45px;

}

.hero-image{

margin-top:40px;

}

.floating-card{

left:20px;

bottom:20px;

}

.hero-stats{

flex-wrap:wrap;

}

}

@media(max-width:600px){

.hero h1{

font-size:34px;

}

.hero-buttons{

flex-direction:column;

}

.hero-stats{

gap:25px;

}

.hero-image img{

border-radius:25px;

}

}













/*=========================
ABOUT
==========================*/

.about{

    padding:120px 0;

    background:#fafaf6;

    position:relative;

    overflow:hidden;

}

.about-container{

    display:grid;

    grid-template-columns:1fr 1fr;

    align-items:center;

    gap:90px;

}

/* Images */

.about-images{

    position:relative;

    min-height:620px;

}

.about-images img{

    object-fit:cover;

    border-radius:28px;

    box-shadow:0 20px 45px rgba(0,0,0,.15);

    transition:.4s;

}

.about-images img:hover{

    transform:scale(1.03);

}

.img1{

    width:420px;

    height:520px;

}

.img2{

    position:absolute;

    width:260px;

    height:300px;

    right:0;

    bottom:20px;

    border:10px solid #fff;

}

/* Experience Card */

.experience{

    position:absolute;

    top:30px;

    right:20px;

    width:180px;

    background:#2c6c35;

    color:#fff;

    text-align:center;

    padding:28px;

    border-radius:25px;

    box-shadow:0 15px 35px rgba(0,0,0,.2);

}

.experience h2{

    font-size:45px;

    color:#c6de54;

}

.experience p{

    margin-top:10px;

    font-size:15px;

}

/* Decorative Shape */

.shape-leaf{

    position:absolute;

    width:170px;

    height:170px;

    background:#b8d84f;

    opacity:.15;

    clip-path:polygon(50% 0%,100% 50%,50% 100%,0% 50%);

    top:-40px;

    left:-60px;

    animation:rotateLeaf 18s linear infinite;

}

@keyframes rotateLeaf{

    from{

        transform:rotate(0deg);

    }

    to{

        transform:rotate(360deg);

    }

}

/* Content */

.section-tag{

    display:inline-block;

    background:#dceeb0;

    color:#2c6c35;

    padding:10px 22px;

    border-radius:30px;

    font-size:13px;

    font-weight:600;

    margin-bottom:20px;

}

.about-content h2{

    font-size:48px;

    line-height:1.2;

    color:#21492d;

    margin-bottom:25px;

}

.about-content p{

    color:#666;

    line-height:1.9;

    margin-bottom:35px;

    font-size:16px;

}

/* Features */

.about-features{

    display:flex;

    flex-direction:column;

    gap:22px;

    margin-bottom:40px;

}

.about-features>div{

    display:flex;

    align-items:flex-start;

    gap:18px;

}

.about-features i{

    width:60px;

    height:60px;

    background:#2c6c35;

    color:#fff;

    display:flex;

    justify-content:center;

    align-items:center;

    border-radius:18px;

    font-size:22px;

    transition:.3s;

}

.about-features>div:hover i{

    background:#b8d84f;

    color:#21492d;

}

.about-features h4{

    color:#21492d;

    margin-bottom:6px;

    font-size:20px;

}

.about-btn{

    display:inline-flex;

    align-items:center;

    gap:12px;

    background:#2c6c35;

    color:#fff;

    padding:16px 34px;

    border-radius:50px;

    font-weight:600;

    transition:.35s;

}

.about-btn:hover{

    background:#b8d84f;

    color:#21492d;

    transform:translateY(-4px);

}

/* Responsive */

@media(max-width:991px){

.about{

padding:90px 0;

}

.about-container{

grid-template-columns:1fr;

}

.about-images{

min-height:auto;

}

.img1{

width:100%;

height:450px;

}

.img2{

width:220px;

height:250px;

}

.about-content h2{

font-size:38px;

}

}

@media(max-width:600px){

.img2{

position:relative;

width:100%;

height:250px;

right:auto;

bottom:auto;

margin-top:20px;

border:0;

}

.experience{

right:10px;

top:10px;

width:150px;

padding:20px;

}

.experience h2{

font-size:35px;

}

.about-content h2{

font-size:30px;

}

}












/*=========================
PRINCIPLES
==========================*/

.principles{

    position:relative;

    padding:120px 0;

    background:#ffffff;

    overflow:hidden;

}

/* Decorative circles */

.circle{

    position:absolute;

    border-radius:50%;

    background:#b8d84f;

    opacity:.08;

}

.circle.one{

    width:220px;

    height:220px;

    top:-100px;

    left:-100px;

}

.circle.two{

    width:300px;

    height:300px;

    bottom:-150px;

    right:-120px;

}

/* Heading */

.section-heading{

    text-align:center;

    max-width:760px;

    margin:auto;

    margin-bottom:70px;

}

.section-heading span{

    display:inline-block;

    background:#dbeeb0;

    color:#2b6532;

    padding:10px 22px;

    border-radius:40px;

    font-size:13px;

    font-weight:600;

    letter-spacing:1px;

    margin-bottom:20px;

}

.section-heading h2{

    font-size:48px;

    color:#21492d;

    margin-bottom:20px;

    line-height:1.2;

}

.section-heading p{

    color:#666;

    line-height:1.9;

}

/* Grid */

.principles-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:35px;

}

/* Cards */

.principle-card{

    background:#fff;

    padding:45px 35px;

    border-radius:28px;

    text-align:center;

    position:relative;

    overflow:hidden;

    transition:.4s;

    border:1px solid #eeeeee;

    box-shadow:0 15px 40px rgba(0,0,0,.05);

}

.principle-card::before{

    content:"";

    position:absolute;

    top:0;

    left:0;

    width:100%;

    height:6px;

    background:#b8d84f;

}

.principle-card:hover{

    transform:translateY(-15px);

    box-shadow:0 25px 60px rgba(0,0,0,.12);

}

.principle-card.active{

    background:linear-gradient(135deg,#2b6532,#3d8744);

    color:#fff;

}

.principle-card.active p{

    color:#f4f4f4;

}

.principle-card.active h3{

    color:#fff;

}

/* Icon */

.icon{

    width:90px;

    height:90px;

    margin:auto;

    border-radius:50%;

    background:#edf6d4;

    display:flex;

    justify-content:center;

    align-items:center;

    margin-bottom:30px;

    transition:.4s;

}

.icon i{

    font-size:38px;

    color:#2b6532;

}

.principle-card:hover .icon{

    transform:rotate(10deg) scale(1.08);

}

.principle-card.active .icon{

    background:#fff;

}

/* Text */

.principle-card h3{

    font-size:24px;

    color:#21492d;

    margin-bottom:18px;

}

.principle-card p{

    color:#666;

    line-height:1.8;

    font-size:15px;

}

/* Responsive */

@media(max-width:992px){

.principles-grid{

grid-template-columns:1fr;

}

.section-heading h2{

font-size:38px;

}

}

@media(max-width:600px){

.principles{

padding:80px 0;

}

.section-heading h2{

font-size:30px;

}

.principle-card{

padding:35px 25px;

}

}










/*=========================
SERVICES
==========================*/

.services{

    background:#21492d;

    padding:120px 0;

    position:relative;

    overflow:hidden;
}

.services::before{

    content:"";

    position:absolute;

    width:400px;

    height:400px;

    background:#b8d84f;

    opacity:.08;

    border-radius:50%;

    top:-150px;

    right:-150px;
}

.services-top{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:80px;

    align-items:center;

    margin-bottom:80px;
}

/* Images */

.services-images{

    position:relative;
}

.main-img{

    width:100%;

    height:550px;

    object-fit:cover;

    border-radius:30px;

    box-shadow:0 20px 50px rgba(0,0,0,.25);
}

.small-img{

    position:absolute;

    width:260px;

    height:260px;

    object-fit:cover;

    bottom:-40px;

    right:-40px;

    border-radius:25px;

    border:8px solid #21492d;
}

.experience-badge{

    position:absolute;

    top:30px;

    left:-30px;

    background:#b8d84f;

    padding:25px;

    border-radius:20px;

    text-align:center;

    width:180px;
}

.experience-badge h3{

    font-size:40px;

    color:#21492d;
}

.experience-badge span{

    color:#21492d;

    font-weight:600;

    font-size:14px;
}

/* Content */

.section-label{

    display:inline-block;

    background:rgba(255,255,255,.1);

    color:#b8d84f;

    padding:10px 20px;

    border-radius:50px;

    margin-bottom:20px;

    font-size:13px;

    letter-spacing:1px;
}

.services-content h2{

    color:#fff;

    font-size:52px;

    line-height:1.2;

    margin-bottom:25px;
}

.services-content p{

    color:#d8e3d4;

    line-height:1.9;

    font-size:16px;
}

/* Cards */

.services-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:25px;

    margin-top:80px;
}

.service-card{

    background:rgba(255,255,255,.08);

    backdrop-filter:blur(10px);

    padding:35px;

    border-radius:25px;

    transition:.4s;

    border:1px solid rgba(255,255,255,.08);
}

.service-card:hover{

    transform:translateY(-12px);

    background:#b8d84f;
}

.service-card i{

    font-size:45px;

    color:#b8d84f;

    margin-bottom:25px;

    transition:.3s;
}

.service-card:hover i{

    color:#21492d;
}

.service-card h3{

    color:#fff;

    margin-bottom:15px;

    transition:.3s;
}

.service-card:hover h3{

    color:#21492d;
}

.service-card p{

    color:#d8e3d4;

    line-height:1.7;

    transition:.3s;
}

.service-card:hover p{

    color:#21492d;
}

/* Stats */

.farm-stats{

    margin-top:90px;

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;
}

.farm-stat{

    text-align:center;
}

.farm-stat h3{

    color:#b8d84f;

    font-size:48px;

    margin-bottom:10px;
}

.farm-stat p{

    color:#fff;

    font-size:15px;
}

/* Responsive */

@media(max-width:992px){

.services-top{

grid-template-columns:1fr;

}

.services-grid{

grid-template-columns:repeat(2,1fr);

}

.farm-stats{

grid-template-columns:repeat(2,1fr);

}

.services-content h2{

font-size:40px;

}

}

@media(max-width:768px){

.services-grid{

grid-template-columns:1fr;

}

.farm-stats{

grid-template-columns:1fr 1fr;

}

.main-img{

height:400px;

}

.small-img{

width:180px;

height:180px;

right:0;

}

.experience-badge{

left:10px;

width:150px;

}

.services-content h2{

font-size:32px;

}

}






/*=========================
WHAT WE DO
==========================*/

.services{
    position:relative;
    background:linear-gradient(135deg,#1f4f2a 0%,#2b6532 50%,#356f3c 100%);
    padding:120px 0 0;
    overflow:hidden;
    color:#fff;
}

.services::before{
    content:"";
    position:absolute;
    width:420px;
    height:420px;
    border-radius:50%;
    background:rgba(184,216,79,.12);
    top:-180px;
    right:-120px;
}

.services::after{
    content:"";
    position:absolute;
    width:260px;
    height:260px;
    border-radius:50%;
    background:rgba(255,255,255,.06);
    bottom:120px;
    left:-80px;
}

.services-container{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:90px;
    align-items:center;
    position:relative;
    z-index:2;
}

/* Image collage */
.services-images{
    position:relative;
    min-height:560px;
}

.img-main img{
    width:100%;
    max-width:520px;
    height:560px;
    object-fit:cover;
    border-radius:36px;
    box-shadow:0 30px 60px rgba(0,0,0,.35);
}

.img-small{
    position:absolute;
    right:-10px;
    bottom:30px;
}

.img-small img{
    width:240px;
    height:220px;
    object-fit:cover;
    border-radius:24px;
    border:10px solid #fff;
    box-shadow:0 20px 40px rgba(0,0,0,.25);
}

.floating-badge{
    position:absolute;
    top:30px;
    right:20px;
    display:flex;
    align-items:center;
    gap:16px;
    background:#fff;
    color:#21492d;
    padding:18px 22px;
    border-radius:20px;
    box-shadow:0 18px 40px rgba(0,0,0,.25);
    animation:floatBadge 5s ease-in-out infinite;
}

.floating-badge i{
    width:52px;
    height:52px;
    border-radius:50%;
    background:#dbeeb0;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:22px;
    color:#2b6532;
}

.floating-badge strong{
    display:block;
    font-size:16px;
    margin-bottom:4px;
}

.floating-badge span{
    font-size:13px;
    color:#666;
}

/* Content */
.section-tag.light{
    background:rgba(255,255,255,.12);
    color:#fff;
    backdrop-filter:blur(10px);
}

.services-content h2{
    font-size:50px;
    line-height:1.2;
    margin:22px 0 24px;
    color:#fff;
}

.services-content p{
    color:#e7efe5;
    line-height:1.9;
    margin-bottom:38px;
    font-size:16px;
}

/* Service cards */
.service-cards{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:18px;
    margin-bottom:40px;
}

.service-card{
    display:flex;
    gap:16px;
    padding:22px;
    border-radius:22px;
    background:rgba(255,255,255,.08);
    border:1px solid rgba(255,255,255,.10);
    backdrop-filter:blur(8px);
    transition:.35s;
}

.service-card:hover{
    transform:translateY(-6px);
    background:rgba(255,255,255,.14);
    box-shadow:0 16px 35px rgba(0,0,0,.18);
}

.service-card i{
    width:54px;
    height:54px;
    border-radius:16px;
    background:#b8d84f;
    color:#21492d;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:24px;
    flex-shrink:0;
}

.service-card h4{
    color:#fff;
    margin-bottom:6px;
    font-size:18px;
}

.service-card p{
    margin:0;
    color:#d8e6d4;
    font-size:14px;
    line-height:1.6;
}

/* Button */
.services-btn{
    display:inline-flex;
    align-items:center;
    gap:12px;
    background:#b8d84f;
    color:#21492d;
    padding:16px 32px;
    border-radius:50px;
    font-weight:600;
    transition:.35s;
}

.services-btn:hover{
    background:#fff;
    transform:translateY(-4px);
    box-shadow:0 18px 35px rgba(0,0,0,.2);
}

/* Stats bar */
.services-stats{
    margin-top:100px;
    background:rgba(0,0,0,.12);
    backdrop-filter:blur(10px);
    border-top:1px solid rgba(255,255,255,.08);
}

.stats-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
    padding:34px 0;
}

.stat-item{
    text-align:center;
}

.stat-item h3{
    font-size:42px;
    color:#b8d84f;
    margin-bottom:8px;
}

.stat-item p{
    color:#e7efe5;
    font-size:15px;
}

/* Animations */
@keyframes floatBadge{
    0%,100%{transform:translateY(0);}
    50%{transform:translateY(-10px);}
}

/* Responsive */
@media(max-width:992px){

    .services{
        padding:90px 0 0;
    }

    .services-container{
        grid-template-columns:1fr;
        gap:60px;
    }

    .services-content h2{
        font-size:38px;
    }

    .service-cards{
        grid-template-columns:1fr;
    }

    .stats-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:600px){

    .services-content h2{
        font-size:30px;
    }

    .img-main img{
        height:420px;
    }

    .img-small{
        position:relative;
        right:auto;
        bottom:auto;
        margin-top:20px;
    }

    .img-small img{
        width:100%;
        height:220px;
        border:0;
    }

    .floating-badge{
        top:16px;
        right:16px;
        padding:14px 16px;
    }

    .stats-grid{
        grid-template-columns:1fr;
        gap:28px;
    }
}








/*==============================
FARM ACTIVITIES
===============================*/

.activities{

    padding:120px 0;

    background:#f7faf4;

}

.activities-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

    margin-top:60px;

}

/* Card */

.activity-card{

    background:#fff;

    border-radius:25px;

    overflow:hidden;

    transition:.4s;

    box-shadow:0 15px 40px rgba(0,0,0,.08);

}

.activity-card:hover{

    transform:translateY(-12px);

    box-shadow:0 25px 55px rgba(0,0,0,.15);

}

/* Image */

.activity-image{

    position:relative;

    overflow:hidden;

    height:250px;

}

.activity-image img{

    width:100%;

    height:100%;

    object-fit:cover;

    transition:.5s;

}

.activity-card:hover img{

    transform:scale(1.12);

}

/* Badge */

.badge{

    position:absolute;

    top:20px;

    left:20px;

    background:#b8d84f;

    color:#21492d;

    padding:8px 18px;

    border-radius:30px;

    font-size:13px;

    font-weight:600;

}

/* Content */

.activity-content{

    padding:30px;

}

.activity-content i{

    width:65px;

    height:65px;

    background:#edf6d4;

    color:#2c6c35;

    display:flex;

    justify-content:center;

    align-items:center;

    border-radius:50%;

    font-size:24px;

    margin-bottom:20px;

    transition:.35s;

}

.activity-card:hover .activity-content i{

    background:#2c6c35;

    color:#fff;

    transform:rotate(10deg);

}

.activity-content h3{

    color:#21492d;

    margin-bottom:15px;

    font-size:24px;

}

.activity-content p{

    color:#666;

    line-height:1.8;

    margin-bottom:25px;

}

.activity-content a{

    display:inline-flex;

    align-items:center;

    gap:10px;

    color:#2c6c35;

    font-weight:600;

    transition:.3s;

}

.activity-content a:hover{

    color:#b8d84f;

}

.activity-content a i{

    background:none;

    width:auto;

    height:auto;

    margin:0;

    font-size:15px;

    color:inherit;

}

/* Responsive */

@media(max-width:1200px){

.activities-grid{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:768px){

.activities{

padding:90px 0;

}

.activities-grid{

grid-template-columns:1fr;

}

.activity-image{

height:220px;

}

}













/*=========================
STAY SECTION
==========================*/

.stay{

    padding:130px 0;

    background:#fff;

}

.stay-container{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:90px;

    align-items:center;

}

/* Images */

.stay-images{

    position:relative;

}

.stay-main{

    width:100%;

    height:620px;

    object-fit:cover;

    border-radius:35px;

    box-shadow:0 30px 70px rgba(0,0,0,.18);

}

.stay-small{

    position:absolute;

    width:270px;

    height:320px;

    object-fit:cover;

    right:-40px;

    bottom:40px;

    border-radius:30px;

    border:10px solid white;

    box-shadow:0 25px 60px rgba(0,0,0,.18);

}

/* Rating */

.stay-badge{

    position:absolute;

    top:40px;

    left:-30px;

    background:white;

    display:flex;

    align-items:center;

    gap:18px;

    padding:22px 30px;

    border-radius:25px;

    box-shadow:0 15px 40px rgba(0,0,0,.12);

}

.stay-badge i{

    width:60px;

    height:60px;

    background:#B8D84F;

    color:#21502f;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:22px;

}

.stay-badge h3{

    color:#21502f;

    font-size:28px;

}

.stay-badge span{

    color:#777;

}

/* Right */

.stay-content h2{

    font-size:50px;

    color:#21502f;

    margin:20px 0;

    line-height:1.2;

}

.stay-content p{

    color:#666;

    line-height:1.9;

    margin-bottom:35px;

}

/* Amenities */

.stay-features{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:20px;

    margin-bottom:45px;

}

.stay-features div{

    display:flex;

    align-items:center;

    gap:15px;

    font-weight:500;

    color:#21502f;

}

.stay-features i{

    width:48px;

    height:48px;

    border-radius:50%;

    background:#EDF6D4;

    display:flex;

    justify-content:center;

    align-items:center;

    color:#21502f;

}

/* Buttons */

.stay-buttons{

    display:flex;

    gap:20px;

}

.stay-btn{

    padding:16px 34px;

    background:#21502f;

    color:white;

    border-radius:50px;

    transition:.35s;

}

.stay-btn:hover{

    background:#B8D84F;

    color:#21502f;

}

.stay-outline{

    padding:16px 34px;

    border:2px solid #21502f;

    color:#21502f;

    border-radius:50px;

    transition:.35s;

}

.stay-outline:hover{

    background:#21502f;

    color:white;

}

/* Responsive */

@media(max-width:991px){

.stay-container{

grid-template-columns:1fr;

}

.stay-main{

height:450px;

}

.stay-small{

width:220px;

height:260px;

right:10px;

}

.stay-badge{

left:15px;

}

}

@media(max-width:600px){

.stay{

padding:90px 0;

}

.stay-content h2{

font-size:34px;

}

.stay-features{

grid-template-columns:1fr;

}

.stay-buttons{

flex-direction:column;

}

.stay-small{

position:relative;

width:100%;

height:250px;

right:0;

bottom:0;

margin-top:20px;

border:0;

}

.stay-badge{

top:15px;

left:15px;

padding:18px;

}

}










/*===================================
PRODUCTS
====================================*/

.products{

    padding:120px 0;

    background:#f7faf4;

}

.products-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:35px;

    margin-top:60px;

}

.product-card{

    background:#fff;

    border-radius:28px;

    overflow:hidden;

    box-shadow:0 15px 40px rgba(0,0,0,.08);

    transition:.4s;

}

.product-card:hover{

    transform:translateY(-12px);

    box-shadow:0 25px 60px rgba(0,0,0,.15);

}

.product-image{

    position:relative;

    height:260px;

    overflow:hidden;

}

.product-image img{

    width:100%;

    height:100%;

    object-fit:cover;

    transition:.5s;

}

.product-card:hover img{

    transform:scale(1.12);

}

.product-tag{

    position:absolute;

    top:18px;

    left:18px;

    background:#B8D84F;

    color:#21502f;

    padding:8px 18px;

    border-radius:30px;

    font-size:13px;

    font-weight:600;

}

.product-content{

    padding:30px;

}

.product-content h3{

    color:#21502f;

    font-size:25px;

    margin-bottom:15px;

}

.product-content p{

    color:#666;

    line-height:1.8;

    margin-bottom:25px;

}

.product-content a{

    display:inline-flex;

    align-items:center;

    gap:10px;

    color:#21502f;

    font-weight:600;

    transition:.3s;

}

.product-content a:hover{

    color:#B8D84F;

}

@media(max-width:1100px){

.products-grid{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:768px){

.products{

padding:90px 0;

}

.products-grid{

grid-template-columns:1fr;

}

.product-image{

height:230px;

}

}








/*=========================
WHY CHOOSE US
==========================*/

.why-us{

    padding:120px 0;

    background:#ffffff;

}

.why-container{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:80px;

    align-items:center;

}

.why-content h2{

    font-size:48px;

    color:#21492d;

    margin:20px 0;

}

.why-content p{

    color:#666;

    line-height:1.9;

    margin-bottom:40px;

}

.why-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:25px;

    margin-bottom:45px;

}

.why-card{

    display:flex;

    gap:18px;

    align-items:flex-start;

    padding:25px;

    border-radius:20px;

    background:#f8fbf5;

    transition:.35s;

}

.why-card:hover{

    background:#21502f;

    transform:translateY(-6px);

}

.why-card i{

    width:60px;

    height:60px;

    border-radius:50%;

    background:#B8D84F;

    color:#21502f;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:22px;

}

.why-card h3{

    color:#21492d;

    margin-bottom:8px;

}

.why-card p{

    margin:0;

}

.why-card:hover h3,
.why-card:hover p{

    color:white;

}

.why-image{

    position:relative;

}

.why-image img{

    height:620px;

    object-fit:cover;

    border-radius:35px;

    box-shadow:0 25px 60px rgba(0,0,0,.18);

}

.why-stat{

    position:absolute;

    bottom:35px;

    left:-30px;

    background:white;

    padding:25px 35px;

    border-radius:25px;

    box-shadow:0 20px 45px rgba(0,0,0,.12);

}

.why-stat h2{

    color:#21502f;

    font-size:42px;

}

.why-stat span{

    color:#777;

}

.why-btn{

    display:inline-flex;

    gap:10px;

    align-items:center;

    padding:16px 34px;

    background:#21502f;

    color:white;

    border-radius:50px;

    transition:.35s;

}

.why-btn:hover{

    background:#B8D84F;

    color:#21502f;

}

@media(max-width:991px){

.why-container{

grid-template-columns:1fr;

}

.why-grid{

grid-template-columns:1fr;

}

.why-image img{

height:450px;

}

}

@media(max-width:600px){

.why-us{

padding:90px 0;

}

.why-content h2{

font-size:34px;

}

}






















/*=================================
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;

}

}