
/*==============================
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;
}

}


















/*=============================
PAGE HERO
==============================*/

.page-banner{
margin-top:90px;
    height:65vh;

    background:url("../images/activity2.jpg") center/cover;

    position:relative;

    display:flex;

    align-items:center;

}

.page-banner .overlay{

    position:absolute;

    inset:0;


}

.banner-content{

    position:relative;

    z-index:2;

    max-width:700px;

    color:white;

}

.banner-content span{

    display:inline-block;

    background:#B8D84F;

    color:#21492d;

    padding:10px 22px;

    border-radius:30px;

    font-size:14px;

    font-weight:600;

    margin-bottom:20px;

}

.banner-content h1{

    font-size:48px;

    line-height:1.1;

    margin-bottom:25px;

}

.banner-content p{

    font-size:18px;

    line-height:1.8;

    max-width:600px;

    margin-bottom:35px;

}

.breadcrumb{

    display:flex;

    align-items:center;

    gap:12px;

}

.breadcrumb a{

    color:#B8D84F;

}

.breadcrumb span{

    background:none;

    color:white;

    padding:0;

}

@media(max-width:768px){

.page-banner{

height:55vh;

}

.banner-content h1{

font-size:40px;

}

}










/*===================================
WHO WE ARE
====================================*/

.who-we-are{

    padding:120px 0;

    background:#fff;

}

.who-container{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:90px;

    align-items:center;

}

/* Images */

.who-images{

    position:relative;

    min-height:620px;

}

.main-img{

    width:100%;

    max-width:480px;

    height:560px;

    object-fit:cover;

    border-radius:30px;

    box-shadow:0 20px 50px rgba(0,0,0,.15);

}

.small-img{

    position:absolute;

    right:0;

    bottom:40px;

    width:260px;

    height:300px;

    object-fit:cover;

    border-radius:25px;

    border:8px solid #fff;

    box-shadow:0 15px 40px rgba(0,0,0,.15);

}

/* Experience Box */

.experience-box{

    position:absolute;

    top:35px;

    right:20px;

    background:#21502f;

    color:#fff;

    width:180px;

    padding:25px;

    border-radius:25px;

    text-align:center;

    box-shadow:0 15px 35px rgba(0,0,0,.18);

}

.experience-box h2{

    font-size:38px;

    color:#B8D84F;

    margin-bottom:10px;

}

.experience-box span{

    font-size:15px;

    line-height:1.5;

}

/* Content */

.who-content h2{

    font-size:48px;

    color:#21492d;

    line-height:1.2;

    margin:20px 0;

}

.who-content p{

    color:#666;

    line-height:1.9;

    margin-bottom:25px;

}

/* Features */

.who-features{

    margin:40px 0;

    display:flex;

    flex-direction:column;

    gap:20px;

}

.feature{

    display:flex;

    gap:18px;

    align-items:flex-start;

}

.feature i{

    width:60px;

    height:60px;

    background:#edf6d4;

    color:#21502f;

    display:flex;

    justify-content:center;

    align-items:center;

    border-radius:18px;

    font-size:22px;

    transition:.3s;

}

.feature:hover i{

    background:#21502f;

    color:#fff;

}

.feature h4{

    color:#21492d;

    margin-bottom:6px;

    font-size:20px;

}

.feature p{

    margin:0;

}

/* Buttons */

.who-buttons{

    display:flex;

    gap:20px;

    flex-wrap:wrap;

}

.btn-outline-dark{

    padding:15px 34px;

    border:2px solid #21502f;

    color:#21502f;

    border-radius:50px;

    font-weight:600;

    transition:.35s;

}

.btn-outline-dark:hover{

    background:#21502f;

    color:#fff;

}

/* Responsive */

@media(max-width:991px){

.who-container{

grid-template-columns:1fr;

}

.who-images{

min-height:auto;

}

.main-img{

max-width:100%;

height:450px;

}

.small-img{

width:220px;

height:250px;

}

}

@media(max-width:768px){

.who-we-are{

padding:90px 0;

}

.who-content h2{

font-size:34px;

}

.small-img{

position:relative;

width:100%;

height:240px;

right:auto;

bottom:auto;

margin-top:20px;

border:none;

}

.experience-box{

top:20px;

left:20px;

right:auto;

width:160px;

padding:20px;

}

}








/*==================================
MISSION | VISION | VALUES
===================================*/

.mission-section{

    position:relative;

    padding:120px 0;

    background:#f8fbf6;

    overflow:hidden;

}

/* Decorative circles */

.mission-circle{

    position:absolute;

    border-radius:50%;

    background:#B8D84F;

    opacity:.08;

}

.mission-circle.one{

    width:250px;

    height:250px;

    top:-120px;

    left:-120px;

}

.mission-circle.two{

    width:320px;

    height:320px;

    right:-150px;

    bottom:-150px;

}

/* Grid */

.mission-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:35px;

    margin-top:70px;

}

/* Card */

.mission-card{

    position:relative;

    background:#fff;

    border-radius:30px;

    padding:45px 35px;

    text-align:center;

    box-shadow:0 20px 45px rgba(0,0,0,.06);

    transition:.4s;

    overflow:hidden;

}

/* Top Gradient */

.mission-card::before{

    content:"";

    position:absolute;

    top:0;

    left:0;

    width:100%;

    height:6px;

    background:linear-gradient(90deg,#21502f,#B8D84F);

}

.mission-card:hover{

    transform:translateY(-12px);

    box-shadow:0 30px 60px rgba(0,0,0,.12);

}

/* Featured Card */

.mission-card.featured{

    background:linear-gradient(135deg,#21502f,#2d6c38);

    color:#fff;

}

.mission-card.featured h3{

    color:#fff;

}

.mission-card.featured p{

    color:#edf4ec;

}

.mission-card.featured .mission-icon{

    background:#fff;

}

.mission-card.featured .mission-icon i{

    color:#21502f;

}

/* Icon */

.mission-icon{

    width:90px;

    height:90px;

    margin:auto;

    border-radius:50%;

    background:#edf6d4;

    display:flex;

    justify-content:center;

    align-items:center;

    margin-bottom:30px;

    transition:.35s;

}

.mission-card:hover .mission-icon{

    transform:rotate(10deg) scale(1.08);

}

.mission-icon i{

    font-size:34px;

    color:#21502f;

}

/* Text */

.mission-card h3{

    color:#21492d;

    margin-bottom:18px;

    font-size:28px;

}

.mission-card p{

    color:#666;

    line-height:1.9;

}

/* Responsive */

@media(max-width:991px){

.mission-grid{

grid-template-columns:1fr;

}

}

@media(max-width:768px){

.mission-section{

padding:90px 0;

}

}











/*===================================
TIMELINE
====================================*/

.timeline{

    padding:100px 0;

    background:#fff;

}

.timeline-wrapper{

    position:relative;

    max-width:1100px;

    margin:70px auto 0;

}

.timeline-wrapper::before{

    content:"";

    position:absolute;

    left:50%;

    top:0;

    width:4px;

    height:100%;

    background:#B8D84F;

    transform:translateX(-50%);

}

/* Timeline Item */

.timeline-item{

    width:50%;

    position:relative;

    margin-bottom:70px;

}

.timeline-item.left{

    padding-right:60px;

    text-align:right;

}

.timeline-item.right{

    margin-left:50%;

    padding-left:60px;

}

/* Circle */

.timeline-item::before{

    content:"";

    position:absolute;

    width:22px;

    height:22px;

    background:#21502f;

    border:5px solid #B8D84F;

    border-radius:50%;

    top:35px;

    z-index:2;

}

.timeline-item.left::before{

    right:-13px;

}

.timeline-item.right::before{

    left:-13px;

}

/* Card */

.timeline-content{

    background:#fff;

    padding:35px;

    border-radius:25px;

    box-shadow:0 20px 45px rgba(0,0,0,.08);

    transition:.35s;

}

.timeline-content:hover{

    transform:translateY(-10px);

    box-shadow:0 30px 60px rgba(0,0,0,.15);

}

/* Year */

.year{

    display:inline-block;

    background:#21502f;

    color:white;

    padding:8px 18px;

    border-radius:30px;

    font-size:14px;

    margin-bottom:18px;

}

/* Heading */

.timeline-content h3{

    color:#21492d;

    margin-bottom:15px;

    font-size:24px;

}

.timeline-content h3 i{

    color:#B8D84F;

    margin-right:10px;

}

.timeline-content p{

    color:#666;

    line-height:1.8;

}

/* Responsive */

@media(max-width:900px){

.timeline-wrapper::before{

left:25px;

}

.timeline-item{

width:100%;

padding-left:70px;

padding-right:0;

margin-left:0;

text-align:left;

}

.timeline-item.left{

text-align:left;

padding-right:0;

padding-left:70px;

}

.timeline-item.right{

margin-left:0;

padding-left:70px;

}

.timeline-item.left::before,

.timeline-item.right::before{

left:14px;

right:auto;

}

}

@media(max-width:768px){

.timeline{

padding:90px 0;

}

}




















/*=================================
FOOTER
==================================*/

.footer{

    background:#1b4025;

    color:#fff;

    position:relative;

    margin-top:20px;

}

.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;

}

}