/*==================================================
    GREENLIFE WEBSITE
    STYLE.CSS - PART 1
    Global Styles
    Variables
    Reset
    Preloader
    Header
    Navigation
    Dropdown Menu
===================================================*/

/*==============================
Google Font
==============================*/

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

/*==============================
CSS VARIABLES
==============================*/




:root{

    --primary:#138a36;
    --primary-dark:#0d6b2a;
    --primary-light:#27ae60;

    --secondary:#49c16d;

    --accent:#b7e4c7;

    --white:#ffffff;

    --dark:#1b1b1b;

    --text:#555;

    --heading:#111;

    --light:#f5f9f6;

    --border:#e6ece7;

    --shadow:
    0 15px 40px rgba(0,0,0,.08);

    --shadow-hover:
    0 20px 60px rgba(0,0,0,.15);

    --radius:14px;

    --transition:.4s ease;

}

/*==============================
RESET
==============================*/

*{

    margin:0;
    padding:0;
    box-sizing:border-box;

}

html{

    scroll-behavior:smooth;

}

body{

    font-family:'Poppins',sans-serif;

    background:#fff;

    color:var(--text);

    overflow-x:hidden;

    line-height:1.7;

}

img{

    width:100%;

    display:block;

}

ul{

    list-style:none;

}

a{

    text-decoration:none;

}

.container{

    width:90%;

    max-width:1250px;

    margin:auto;

}



/*==============================
CUSTOM SCROLLBAR
==============================*/

::-webkit-scrollbar{

    width:10px;

}

::-webkit-scrollbar-track{

    background:#ececec;

}

::-webkit-scrollbar-thumb{

    background:var(--primary);

    border-radius:20px;

}

::-webkit-scrollbar-thumb:hover{

    background:var(--primary-dark);

}

/*==============================
PRELOADER
==============================*/

#preloader{

    position:fixed;

    inset:0;

    background:#fff;

    z-index:99999;

    display:flex;

    justify-content:center;

    align-items:center;

    transition:.7s;

}

.loader{

    display:flex;

    gap:10px;

}

.loader span{

    width:18px;

    height:18px;

    border-radius:50%;

    background:var(--primary);

    animation:loader .8s infinite alternate;

}

.loader span:nth-child(2){

    animation-delay:.2s;

}

.loader span:nth-child(3){

    animation-delay:.4s;

}

@keyframes loader{

    from{

        transform:translateY(0);

        opacity:.5;

    }

    to{

        transform:translateY(-20px);

        opacity:1;

    }

}

/*==============================
HEADER
==============================*/

header{

    position:fixed;

    top:0;

    left:0;

    width:100%;

    z-index:999;

    transition:.4s;

}

header.scrolled{

    background:rgba(255,255,255,.95);

    backdrop-filter:blur(12px);

    box-shadow:0 10px 35px rgba(0,0,0,.08);

}

.navbar{

    display:flex;

    justify-content:space-between;

    align-items:center;

    height:95px;

}

/*==============================
LOGO
==============================*/

.logo{

    display:flex;

    align-items:center;

    gap:10px;

    font-size:30px;

    font-weight:700;

    color:#fff;

    transition:.3s;

}

header.scrolled .logo{

    color:var(--primary);

}

.logo i{

    font-size:35px;

    color:#76d96c;

    animation:leafRotate 6s linear infinite;

}

@keyframes leafRotate{

    from{

        transform:rotate(0);

    }

    to{

        transform:rotate(360deg);

    }

}

/*==============================
NAVIGATION
==============================*/

.nav-links{

    display:flex;

    align-items:center;

    gap:15px;

}

.nav-links>li{

    position:relative;

}

.nav-links>li>a{

    display:flex;

    align-items:center;

    gap:8px;

    padding:35px 14px;

    color:#fff;

    font-weight:500;

    transition:.3s;

}

header.scrolled .nav-links>li>a{

    color:#222;

}

.nav-links>li>a:hover{

    color:#7cff8e;

}

header.scrolled .nav-links>li>a:hover{

    color:var(--primary);

}

.nav-links i{

    font-size:12px;

    transition:.4s;

}

.dropdown:hover>a i{

    transform:rotate(180deg);

}

/*==============================
RIGHT NAV
==============================*/

.nav-right{

    display:flex;

    align-items:center;

    gap:15px;

}

.search-btn{

    width:46px;

    height:46px;

    border-radius:50%;

    border:none;

    cursor:pointer;

    background:rgba(255,255,255,.15);

    color:#fff;

    transition:.3s;

    backdrop-filter:blur(10px);

}

header.scrolled .search-btn{

    background:#edf8ef;

    color:var(--primary);

}

.search-btn:hover{

    transform:translateY(-4px);

    background:var(--primary);

    color:#fff;

}

.btn-primary{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:15px 35px;

    border-radius:40px;

    background:linear-gradient(135deg,
    var(--primary),
    var(--primary-light));

    color:#fff;

    font-weight:600;

   /* box-shadow:0 15px 30px rgba(19,138,54,.30); */

    transition:.35s;

}

.btn-primary:hover{

    transform:translateY(-6px);

    box-shadow:0 20px 40px rgba(19,138,54,.45);

}

/*==============================
HAMBURGER
==============================*/

.menu-toggle{

    display:none;

    cursor:pointer;

    flex-direction:column;

    gap:6px;

}

.menu-toggle span{

    width:30px;

    height:3px;

    border-radius:20px;

    background:#fff;

    transition:.4s;

}

header.scrolled .menu-toggle span{

    background:#111;

}

/*==============================
DROPDOWN MENU
==============================*/

.dropdown-menu{

    position:absolute;

    top:115%;

    left:0;

    min-width:240px;

    background:#fff;

    border-radius:18px;

    box-shadow:
    0 20px 60px rgba(0,0,0,.12);

    padding:15px 0;

    opacity:0;

    visibility:hidden;

    transform:translateY(20px);

    transition:.4s;

    overflow:hidden;

}

.dropdown:hover .dropdown-menu{

    opacity:1;

    visibility:visible;

    transform:translateY(0);

}

.dropdown-menu a{

    display:block;

    padding:14px 25px;

    color:#555;

    font-weight:500;

    transition:.3s;

}

.dropdown-menu a:hover{

    padding-left:35px;

    color:var(--primary);

    background:#f3faf5;

}

/*==============================
MEGA MENU
==============================*/

.dropdown-menu.mega{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:25px;

    width:520px;

    padding:30px;

}

.dropdown-menu h4{

    color:#111;

    margin-bottom:15px;

    font-size:18px;

    position:relative;

}

.dropdown-menu h4::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-8px;

    width:45px;

    height:3px;

    background:var(--primary);

    border-radius:20px;

}

.dropdown-menu.mega a{

    padding:10px 0;

}

.dropdown-menu.mega a:hover{

    padding-left:10px;

    background:none;

}

/*==============================
SECTION TITLES
==============================*/

.section-title{

    text-align:center;

    margin-bottom:70px;

}

.section-title span{

    color:var(--primary);

    text-transform:uppercase;

    font-weight:700;

    letter-spacing:2px;

    display:inline-block;

    margin-bottom:15px;

}

.section-title h2{

    font-size:42px;

    color:#111;

    line-height:1.3;

}
/*==================================================
    STYLE.CSS - PART 2
    HERO SECTION
    HERO IMAGE SLIDER
    HERO CONTENT
    HERO ANIMATIONS
==================================================*/

/*==============================
HERO SECTION
==============================*/

.hero{
    position:relative;
    width:100%;
    height:100vh;
    min-height:750px;
    overflow:hidden;
    display:flex;
    align-items:center;
    justify-content:center;
}

/*==============================
HERO SLIDER
==============================*/

.hero-slider{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    z-index:1;
}

.slide{
    position:absolute;
    inset:0;

    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;

    opacity:0;
    visibility:hidden;

    transform:scale(1);

    transition:
        opacity 1.5s ease,
        visibility 1.5s ease;

}

/* Active Slide */

.slide.active{

    opacity:1;
    visibility:visible;

    animation:kenBurns 8s linear forwards;

}

/*==============================
OVERLAY
==============================*/

.overlay{

    position:absolute;
    inset:0;

    background:
    linear-gradient(
        90deg,
        rgba(0,0,0,.70),
        rgba(0,0,0,.45),
        rgba(0,0,0,.30)
    );

    z-index:2;

}

/*==============================
HERO CONTENT
==============================*/

.hero-content{

    position:relative;

    z-index:5;

    max-width:760px;

    width:90%;

    margin:auto;

    color:#fff;

    text-align:left;

}

.hero-content .subtitle{

    display:inline-block;

    padding:10px 22px;

    border-radius:50px;

    background:rgba(255,255,255,.15);

    backdrop-filter:blur(12px);

    font-weight:600;

    letter-spacing:1px;

    margin-bottom:25px;

    opacity:0;

    animation:fadeDown 1s ease forwards;

}

.hero-content h1{

    font-size:68px;

    line-height:1.15;

    font-weight:800;

    margin-bottom:25px;

    text-shadow:0 10px 30px rgba(0,0,0,.45);

    opacity:0;

    animation:fadeLeft 1.2s ease forwards;

}

.hero-content p{

    font-size:20px;

    color:rgba(255,255,255,.92);

    max-width:650px;

    margin-bottom:40px;

    opacity:0;

    animation:fadeRight 1.4s ease forwards;

}
/*==============================
HERO BUTTONS
==============================*/

.hero-buttons{

    display:flex;

    gap:20px;

    flex-wrap:wrap;

    animation:fadeUp 1.5s ease;

}

.btn-secondary{

    display:inline-flex;

    justify-content:center;

    align-items:center;

    padding:15px 35px;

    border-radius:50px;

    color:#fff;

    border:2px solid rgba(255,255,255,.55);

    transition:.4s;

    backdrop-filter:blur(5px);

    background:rgba(255,255,255,.08);

}

.btn-secondary:hover{

    background:#fff;

    color:var(--primary);

    transform:translateY(-6px);

}

/*==============================
SLIDER NAVIGATION
==============================*/

.slider-navigation{

    position:absolute;

    left:50%;

    bottom:45px;

    transform:translateX(-50%);

    display:flex;

    gap:14px;

    z-index:20;

}

.slider-navigation .dot{

    width:14px;

    height:14px;

    border-radius:50%;

    background:rgba(255,255,255,.45);

    cursor:pointer;

    transition:.4s;

    position:relative;

}

.slider-navigation .dot.active{

    background:#fff;

    transform:scale(1.3);

}

.slider-navigation .dot.active::after{

    content:"";

    position:absolute;

    inset:-6px;

    border:2px solid rgba(255,255,255,.55);

    border-radius:50%;

    animation:pulseRing 2s infinite;

}

/*==============================
SCROLL INDICATOR
==============================*/

.scroll-down{

    position:absolute;

    left:50%;

    bottom:90px;

    transform:translateX(-50%);

    color:#fff;

    font-size:30px;

    z-index:10;

    animation:bounce 2s infinite;

}

/*==============================
OPTIONAL FLOATING SHAPES
==============================*/

.hero::before{

    content:"";

    position:absolute;

    width:260px;

    height:260px;

    border-radius:50%;

    background:rgba(39,174,96,.15);

    filter:blur(30px);

    top:120px;

    right:8%;

    z-index:3;

    animation:floatOne 8s ease-in-out infinite;

}

.hero::after{

    content:"";

    position:absolute;

    width:220px;

    height:220px;

    border-radius:50%;

    background:rgba(255,255,255,.08);

    bottom:80px;

    left:8%;

    filter:blur(35px);

    z-index:3;

    animation:floatTwo 10s ease-in-out infinite;

}

/*==============================
HERO IMAGE DARKEN EFFECT
==============================*/

.slide::before{

    content:"";

    position:absolute;

    inset:0;

    background:linear-gradient(
        180deg,
        rgba(0,0,0,.10),
        rgba(0,0,0,.30),
        rgba(0,0,0,.55)
    );

}

/*==============================
HERO CONTENT SPACING
==============================*/

.hero-content>*{

    opacity:0;

    animation-fill-mode:forwards;

}

.hero-content .subtitle{

    animation-delay:.2s;

}

.hero-content h1{

    animation-delay:.4s;

}

.hero-content p{

    animation-delay:.8s;

}

.hero-buttons{

    animation-delay:1.1s;

}

/*==============================
KEYFRAMES
==============================*/

@keyframes kenBurns{

    from{

        transform:scale(1);

    }

    to{

        transform:scale(1.15);

    }

}

@keyframes fadeDown{

    from{

        opacity:0;

        transform:translateY(-40px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}

@keyframes fadeLeft{

    from{

        opacity:0;

        transform:translateX(-60px);

    }

    to{

        opacity:1;

        transform:translateX(0);

    }

}

@keyframes fadeRight{

    from{

        opacity:0;

        transform:translateX(60px);

    }

    to{

        opacity:1;

        transform:translateX(0);

    }

}

@keyframes fadeUp{

    from{

        opacity:0;

        transform:translateY(50px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}

@keyframes bounce{

    0%,20%,50%,80%,100%{

        transform:translate(-50%,0);

    }

    40%{

        transform:translate(-50%,-15px);

    }

    60%{

        transform:translate(-50%,-8px);

    }

}

@keyframes pulseRing{

    from{

        transform:scale(.8);

        opacity:1;

    }

    to{

        transform:scale(1.8);

        opacity:0;

    }

}

@keyframes floatOne{

    0%{

        transform:translateY(0) rotate(0deg);

    }

    50%{

        transform:translateY(-25px) rotate(10deg);

    }

    100%{

        transform:translateY(0) rotate(0deg);

    }

}

@keyframes floatTwo{

    0%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(20px);

    }

    100%{

        transform:translateY(0);

    }

}
/*==================================================
    STYLE.CSS - PART 3
    FEATURES
    ABOUT
    STATS
    CTA
    FOOTER
==================================================*/


/*==================================================
FEATURES SECTION
==================================================*/

.features{
    background:#f7fbf8;
    position:relative;
}

.feature-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

.feature-card{

    background:#fff;

    padding:45px 35px;

    border-radius:20px;

    text-align:center;

    position:relative;

    overflow:hidden;

    transition:.45s ease;

    box-shadow:0 15px 40px rgba(0,0,0,.06);

    border:1px solid rgba(0,0,0,.04);

}

.feature-card::before{

    content:"";

    position:absolute;

    top:0;
    left:0;

    width:100%;
    height:5px;

    background:linear-gradient(90deg,
        var(--primary),
        var(--primary-light));

    transform:scaleX(0);

    transition:.45s;

}

.feature-card:hover::before{

    transform:scaleX(1);

}

.feature-card i{

    width:90px;
    height:90px;

    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    margin:0 auto 25px;

    font-size:36px;

    color:#fff;

    background:linear-gradient(135deg,
            var(--primary),
            var(--primary-light));

    transition:.45s;

}

.feature-card h3{

    font-size:24px;

    color:#222;

    margin-bottom:15px;

}

.feature-card p{

    color:#666;

}

.feature-card:hover{

    transform:translateY(-18px);

    box-shadow:0 30px 60px rgba(0,0,0,.15);

}

.feature-card:hover i{

    transform:rotate(12deg) scale(1.12);

}


/*==================================================
ABOUT SECTION
==================================================*/

.about{

    background:#fff;

}

.about-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:70px;

    align-items:center;

}

.about-image{

    position:relative;

}

.about-image img{

    border-radius:22px;

    box-shadow:0 25px 60px rgba(0,0,0,.15);

}

.about-image::before{

    content:"";

    position:absolute;

    width:160px;

    height:160px;

    background:var(--primary-light);

    opacity:.15;

    border-radius:50%;

    top:-40px;

    left:-40px;

    z-index:-1;

}

.about-image::after{

    content:"";

    position:absolute;

    width:180px;

    height:180px;

    border:8px solid var(--primary);

    border-radius:25px;

    bottom:-35px;

    right:-35px;

    opacity:.12;

    z-index:-1;

}

.about-content span{

    display:inline-block;

    color:var(--primary);

    text-transform:uppercase;

    font-weight:700;

    letter-spacing:2px;

    margin-bottom:15px;

}

.about-content h2{

    font-size:45px;

    color:#111;

    margin-bottom:25px;

    line-height:1.3;

}

.about-content p{

    margin-bottom:25px;

    color:#666;

}

.about-content ul{

    margin-bottom:35px;

}

.about-content li{

    display:flex;

    align-items:center;

    gap:15px;

    margin-bottom:18px;

    color:#333;

    font-weight:500;

}

.about-content li i{

    color:var(--primary);

    font-size:20px;

}


/*==================================================
STATISTICS
==================================================*/

.stats{

    background:
    linear-gradient(rgba(19,138,54,.95),
    rgba(19,138,54,.95)),
    url("images/stats-bg.jpg");

    background-size:cover;

    background-position:center;

    color:#fff;

}

.stats .container{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

    text-align:center;

}

.stat{

    padding:35px 20px;

    transition:.4s;

}

.stat:hover{

    transform:translateY(-10px);

}

.stat h2{

    font-size:58px;

    font-weight:700;

    margin-bottom:10px;

}

.stat p{

    font-size:18px;

    color:rgba(255,255,255,.9);

}


/*==================================================
CTA
==================================================*/

.cta{

    background:#f6faf7;

    text-align:center;

    position:relative;

    overflow:hidden;

}

.cta::before{

    content:"";

    position:absolute;

    width:350px;

    height:350px;

    border-radius:50%;

    background:rgba(39,174,96,.12);

    left:-120px;

    top:-100px;

}

.cta::after{

    content:"";

    position:absolute;

    width:320px;

    height:320px;

    border-radius:50%;

    background:rgba(39,174,96,.10);

    right:-120px;

    bottom:-120px;

}

.cta .container{

    position:relative;

    z-index:2;

}

.cta h2{

    font-size:46px;

    color:#111;

    margin-bottom:20px;

}

.cta p{

    max-width:700px;

    margin:auto;

    margin-bottom:35px;

    color:#666;

    font-size:18px;

}


/*==================================================
FOOTER
==================================================*/

footer{

    background:#0f2215;

    color:#fff;

    padding-top:90px;

}

.footer-grid{

    display:grid;

    grid-template-columns:2fr 1fr 1fr 1fr;

    gap:50px;

    padding-bottom:70px;

}

footer h3{

    font-size:30px;

    margin-bottom:20px;

}

footer h4{

    margin-bottom:25px;

    font-size:20px;

    position:relative;

}

footer h4::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-8px;

    width:45px;

    height:3px;

    border-radius:30px;

    background:var(--primary-light);

}

footer p{

    color:#bfc9c2;

    line-height:1.9;

}

footer a{

    display:block;

    margin-bottom:14px;

    color:#cfd8d2;

    transition:.35s;

}

footer a:hover{

    color:#6be386;

    transform:translateX(8px);

}

.socials{

    display:flex;

    gap:15px;

    margin-top:20px;

}

.socials a{

    width:48px;

    height:48px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:50%;

    background:rgba(255,255,255,.08);

    color:#fff;

    font-size:18px;

    transition:.4s;

}

.socials a:hover{

    background:var(--primary);

    transform:translateY(-8px) rotate(360deg);

}

.copyright{

    border-top:1px solid rgba(255,255,255,.08);

    text-align:center;

    padding:25px;

    color:#bfc9c2;

    font-size:15px;

}

/* FOOTER BOTTOM */


.footer-bottom{


    border-top:1px solid rgba(255,255,255,.1);

    padding:25px 0;

}



.footer-bottom .container{


    display:flex;

    justify-content:space-between;

    gap:20px;

    flex-wrap:wrap;

}



.footer-bottom p{


    margin:0;

    font-size:14px;

}



/*==================================================
COMMON HOVER EFFECTS
==================================================*/

img{

    transition:.45s ease;

}

.about-image:hover img{

    transform:scale(1.04);

}

.btn-primary{

    position:relative;

    overflow:hidden;

}

.btn-primary::before{

    content:"";

    position:absolute;

    top:0;

    left:-120%;

    width:100%;

    height:100%;

    background:rgba(255,255,255,.25);

    transform:skewX(-25deg);

    transition:.7s;

}

.btn-primary:hover::before{

    left:130%;

}


/*==================================================
SCROLL REVEAL ANIMATION CLASSES
==================================================*/

.reveal{

    opacity:0;

    transform:translateY(60px);

    transition:1s ease;

}

.reveal.active{

    opacity:1;

    transform:translateY(0);

}

.reveal-left{

    opacity:0;

    transform:translateX(-60px);

    transition:1s ease;

}

.reveal-left.active{

    opacity:1;

    transform:translateX(0);

}

.reveal-right{

    opacity:0;

    transform:translateX(60px);

    transition:1s ease;

}

.reveal-right.active{

    opacity:1;

    transform:translateX(0);

}

/*====================================================
    STYLE.CSS - PART 4
    RESPONSIVE DESIGN
    MOBILE NAVIGATION
    UTILITIES
    FINAL ANIMATIONS
====================================================*/


/*====================================================
UTILITY CLASSES
====================================================*/

.text-center{
    text-align:center;
}

.text-left{
    text-align:left;
}

.text-right{
    text-align:right;
}

.mt-1{margin-top:10px;}
.mt-2{margin-top:20px;}
.mt-3{margin-top:30px;}
.mt-4{margin-top:40px;}
.mt-5{margin-top:50px;}

.mb-1{margin-bottom:10px;}
.mb-2{margin-bottom:20px;}
.mb-3{margin-bottom:30px;}
.mb-4{margin-bottom:40px;}
.mb-5{margin-bottom:50px;}

.pt-5{
    padding-top:100px;
}

.pb-5{
    padding-bottom:100px;
}


/*====================================================
IMAGE HOVER
====================================================*/

img{
    transition:.45s ease;
}

img:hover{
    transform:scale(1.03);
}


/*====================================================
BUTTON RIPPLE EFFECT
====================================================*/

.btn-primary,
.btn-secondary{
    position:relative;
    overflow:hidden;
}

.btn-primary::after,
.btn-secondary::after{

    content:"";

    position:absolute;

    width:0;
    height:0;

    left:50%;
    top:50%;

    background:rgba(255,255,255,.25);

    border-radius:50%;

    transform:translate(-50%,-50%);

    transition:.6s;

}

.btn-primary:hover::after,
.btn-secondary:hover::after{

    width:320px;
    height:320px;

}

.btn-primary,
.btn-primary:hover,
.btn-secondary,
.btn-secondary:hover{
    box-shadow:none !important;
}


/*====================================================
SMOOTH HOVER EFFECT
====================================================*/

.feature-card,
.stat,
.about-image,
.btn-primary,
.btn-secondary,
.socials a{

    transition:.4s ease;

}


/*====================================================
TABLET
====================================================*/

@media(max-width:1100px){

.feature-grid{

grid-template-columns:repeat(2,1fr);

}

.stats .container{

grid-template-columns:repeat(2,1fr);

}

.footer-grid{

grid-template-columns:repeat(2,1fr);

}

.about-grid{

grid-template-columns:1fr;

gap:50px;

}

.hero-content h1{

font-size:56px;

}

}


/*====================================================
MOBILE NAVIGATION
====================================================*/

@media(max-width:991px){

.menu-toggle{

display:flex;

z-index:9999;

}

.nav-links{

position:fixed;

top:0;

right:-100%;

width:320px;

height:100vh;

background:#ffffff;

padding:120px 30px;

flex-direction:column;

align-items:flex-start;

gap:0;

overflow-y:auto;

transition:.5s;

box-shadow:-10px 0 35px rgba(0,0,0,.1);

}

.nav-links.active{

right:0;

}

.nav-links>li{

width:100%;

}

.nav-links>li>a{

width:100%;

padding:18px 0;

justify-content:space-between;

color:#222 !important;

border-bottom:1px solid #eeeeee;

}

.nav-right .btn-primary{

display:none;

}

.search-btn{

display:none;

}

.dropdown-menu{

position:static;

opacity:1;

visibility:visible;

transform:none;

box-shadow:none;

display:none;

background:#f7f7f7;

border-radius:12px;

margin:10px 0;

padding:10px 0;

}

.dropdown.active .dropdown-menu{

display:block;

}

.dropdown-menu a{

padding:12px 18px;

}

.dropdown-menu.mega{

display:none;

width:100%;

grid-template-columns:1fr;

padding:15px;

}

.dropdown.active .dropdown-menu.mega{

display:grid;

}

header{

background:#ffffff;

box-shadow:0 5px 20px rgba(0,0,0,.08);

}

.logo{

color:var(--primary);

}

.menu-toggle span{

background:#111;

}

}


/*====================================================
TABLET PORTRAIT
====================================================*/

@media(max-width:768px){

.hero{

min-height:700px;

}

.hero-content{

text-align:center;

}

.hero-buttons{

justify-content:center;

}

.hero-content h1{

font-size:44px;

}

.hero-content p{

font-size:18px;

}

.section-title h2{

font-size:34px;

}

.cta h2{

font-size:36px;

}

.about-content h2{

font-size:36px;

}

.stats .container{

grid-template-columns:repeat(2,1fr);

}

.footer-grid{

grid-template-columns:1fr;

text-align:center;

}

.socials{

justify-content:center;

}

footer h4::after{

left:50%;

transform:translateX(-50%);

}

}


/*====================================================
PHONE
====================================================*/

@media (max-width:576px){

    .container{
        width:94%;
        margin:0 auto;
    }

    .navbar{
        height:75px;
    }

    .logo{
        font-size:20px;
    }

    .logo img{
        width:42px;
        height:auto;
    }

    .hero{
        min-height:100vh;
        padding-top:75px;
    }

    .hero-content{
        width:100%;
        max-width:100%;
        padding:0 15px;
        text-align:center;
    }

    .hero-content .subtitle{
        font-size:13px;
        padding:10px 20px;
        margin-bottom:18px;
    }

    .hero-content h1{
        font-size:42px;
        line-height:1.15;
        margin-bottom:18px;
        word-break:normal;
    }

    .hero-content p{
        font-size:17px;
        line-height:1.8;
        max-width:100%;
        margin:0 auto 30px;
    }

    .hero-buttons{
        width:100%;
        flex-direction:column;
        gap:15px;
    }

    .hero-buttons a{
        width:100%;
    }

    .slider-navigation{
        bottom:30px;
    }

    .scroll-down{
        display:none;
    }

}


@media (max-width:991px){
    .hero-content h1{
        font-size:52px;
    }
}

@media (max-width:768px){
    .hero-content h1{
        font-size:44px;
    }
}

@media (max-width:576px){
    .hero-content h1{
        font-size:36px;
    }
}


.hero-slider,
.slide{
    width:100%;
    height:100%;
}

.slide{
    background-size:cover;
    background-position:center center;
}

/*====================================================
LARGE DESKTOP
====================================================*/

@media(min-width:1400px){

.container{

max-width:1320px;

}

.hero-content{

max-width:800px;

}

.hero-content h1{

font-size:78px;

}

}


/*====================================================
FLOATING ANIMATIONS
====================================================*/

.float{

animation:float 5s ease-in-out infinite;

}

@keyframes float{

0%{

transform:translateY(0);

}

50%{

transform:translateY(-15px);

}

100%{

transform:translateY(0);

}

}


/*====================================================
ROTATE
====================================================*/

.rotate{

animation:rotate 12s linear infinite;

}

@keyframes rotate{

from{

transform:rotate(0deg);

}

to{

transform:rotate(360deg);

}

}


/*====================================================
FADE UP
====================================================*/

.fade-up{

animation:fadeUp .8s ease forwards;

}

@keyframes fadeUp{

from{

opacity:0;

transform:translateY(50px);

}

to{

opacity:1;

transform:translateY(0);

}

}


/*====================================================
ZOOM IN
====================================================*/

.zoom{

animation:zoomIn .8s ease;

}

@keyframes zoomIn{

from{

opacity:0;

transform:scale(.8);

}

to{

opacity:1;

transform:scale(1);

}

}


/*====================================================
SLIDE LEFT
====================================================*/

.slide-left{

animation:slideLeft .8s ease;

}

@keyframes slideLeft{

from{

opacity:0;

transform:translateX(-60px);

}

to{

opacity:1;

transform:translateX(0);

}

}


/*====================================================
SLIDE RIGHT
====================================================*/

.slide-right{

animation:slideRight .8s ease;

}

@keyframes slideRight{

from{

opacity:0;

transform:translateX(60px);

}

to{

opacity:1;

transform:translateX(0);

}

}


/*====================================================
PULSE
====================================================*/

.pulse{

animation:pulse 2s infinite;

}

@keyframes pulse{

0%{

transform:scale(1);

}

50%{

transform:scale(1.08);

}

100%{

transform:scale(1);

}

}


/*====================================================
BOUNCE
====================================================*/

.bounce{

animation:bounce 2s infinite;

}

@keyframes bounce{

0%,20%,50%,80%,100%{

transform:translateY(0);

}

40%{

transform:translateY(-15px);

}

60%{

transform:translateY(-8px);

}

}


/*====================================================
SCROLLBAR
====================================================*/

::-webkit-scrollbar{

width:10px;

}

::-webkit-scrollbar-thumb{

background:linear-gradient(
180deg,
var(--primary),
var(--primary-light)
);

border-radius:20px;

}

::-webkit-scrollbar-track{

background:#efefef;

}


/*====================================================
SELECTION
====================================================*/

::selection{

background:var(--primary);

color:#ffffff;

}


/*====================================================
SMOOTH TRANSITIONS
====================================================*/

*{

transition:
background-color .3s ease,
color .3s ease,
border-color .3s ease;

}


/*====================================================
This is for only About Section Page
====================================================*/


.about-hero{
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.about-hero .overlay{
    position: absolute;
    inset: 0;
    background: linear-gradient(
        rgba(0,0,0,.65),
        rgba(0,0,0,.55)
    );
}

.about-hero .hero-content{
    position: relative;
    z-index: 2;
    color: #fff;
    text-align: center;
    max-width: 800px;
}

.about-hero .subtitle{
    display: inline-block;
    padding: 10px 22px;
    margin-bottom: 20px;
    border-radius: 30px;
    background: rgba(255,255,255,.15);
    backdrop-filter: blur(10px);
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.about-hero h1{
    font-size: 60px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.about-hero p{
    font-size: 18px;
    color: rgba(255,255,255,.9);
    max-width: 700px;
    margin: 0 auto;
}

/* ==============================
GLOBAL SPACING CONTROL
============================== */

section{
    padding:90px 0;
}


.section-title{
    max-width:850px;
    margin:0 auto 50px;
    text-align:center;
}


.section-title span{
    display:inline-block;
    color:#198754;
    font-weight:600;
    margin-bottom:15px;
    text-transform:uppercase;
    letter-spacing:1px;
}


.section-title h2{
    margin-bottom:20px;
}


.section-title p{
    margin:auto;
    max-width:700px;
    color:#666;
}



/* ==============================
ABOUT SECTION
============================== */

.about-page{
    padding:100px 0;
}





.about-content p{
    margin-bottom:20px;
    line-height:1.8;
}



/* ==============================
MISSION BOX
============================== */


.mission-box{

display:grid;
grid-template-columns:repeat(2,1fr);
gap:25px;
margin-top:40px;

}



.mission-box .box{

background:white;
padding:30px;
border-radius:20px;
box-shadow:0 15px 40px rgba(0,0,0,.08);

}



.mission-box .box i{

font-size:35px;
color:#198754;
margin-bottom:20px;

}



.mission-box h3{
margin-bottom:15px;
}



/* ===================================
FIX GAP BETWEEN ABOUT AND STRATEGIC POSITION
=================================== */


.about-page{
    padding-bottom:40px !important;
}



.about-page .about-grid{
    align-items:flex-start;
}



.about-content{
    padding-bottom:0;
}



.mission-box{
    margin-bottom:0;
}



/* Remove extra spacing after section */

.about-page + .strategic-position{

    padding-top:50px;

}



/* Control section spacing globally */

.strategic-position{

    margin-top:0 !important;

}









/* ==============================
STRATEGIC POSITION
============================== */


.strategic-position{

background:#f8faf8;

}


.position-content{

max-width:900px;
margin:auto;

}



.position-content p{

line-height:1.9;
margin-bottom:25px;

}


.motto-box{

margin-top:40px;
padding:35px;
border-radius:20px;
background:#198754;
color:white;
text-align:center;

}


.motto-box h2{

font-size:28px;
margin-top:15px;

}



/* ==============================
VALUES
============================== */


.values{

background:white;

}


.feature-grid{

display:grid;
grid-template-columns:repeat(4,1fr);
gap:25px;

}



.feature-card{

background:white;
padding:35px 25px;
border-radius:20px;
text-align:center;
box-shadow:0 10px 35px rgba(0,0,0,.08);
transition:.4s;

}



.feature-card:hover{

transform:translateY(-10px);

}



.feature-card i{

font-size:35px;
color:#198754;
margin-bottom:20px;

}




/* ==============================
PILLARS
============================== */


.pillars{

background:#f7faf7;

}


.pillar-grid{

display:grid;
grid-template-columns:repeat(3,1fr);
gap:30px;

}



.pillar-card{

background:white;
padding:35px;
border-radius:25px;
box-shadow:0 15px 35px rgba(0,0,0,.08);
transition:.4s;

}


.pillar-card:hover{

transform:translateY(-10px);

}


.pillar-card .icon{

width:70px;
height:70px;
display:flex;
align-items:center;
justify-content:center;
background:#198754;
color:white;
border-radius:50%;
font-size:30px;
margin-bottom:25px;

}



.pillar-card ul{

padding-left:20px;
margin-top:20px;

}


.pillar-card li{

margin-bottom:10px;
color:#555;

}




/* ==============================
OBJECTIVES
============================== */


.objective-grid{

display:grid;
grid-template-columns:repeat(2,1fr);
gap:30px;

}



.objective-card{

display:flex;
gap:25px;
background:white;
padding:30px;
border-radius:20px;
box-shadow:0 10px 30px rgba(0,0,0,.07);

}



.objective-card .number{

min-width:60px;
height:60px;
border-radius:50%;
background:#198754;
color:white;
display:flex;
align-items:center;
justify-content:center;
font-weight:700;

}



.objective-card i{

font-size:28px;
color:#198754;
margin-bottom:15px;

}



.objective-card h3{

margin-bottom:10px;

}



.objective-card p{

line-height:1.7;
color:#666;

}




/* ==============================
IMPACT SECTION
============================== */


.impact{

background:#198754;

}


.impact-grid{

display:grid;
grid-template-columns:repeat(6,1fr);
gap:20px;

}


.impact-card{

text-align:center;
color:white;

}


.impact-card i{

font-size:35px;
margin-bottom:15px;

}



.impact-card h2{

font-size:40px;

}




/* ==============================
TIMELINE
============================== */


.timeline-wrapper{

max-width:850px;
margin:auto;

}



.timeline-item{

display:flex;
gap:30px;
margin-bottom:40px;

}


.timeline-item .year{

min-width:90px;
height:90px;
border-radius:50%;
background:#198754;
color:white;
display:flex;
align-items:center;
justify-content:center;
font-weight:700;

}



.timeline-item .content{

background:white;
padding:25px;
border-radius:20px;
box-shadow:0 10px 30px rgba(0,0,0,.08);
flex:1;

}




/* ==============================
PUBLIC STATEMENT
============================== */


.statement-box{

max-width:900px;
margin:auto;
padding:60px;
background:#f7faf7;
border-radius:30px;
text-align:center;

}


.statement-box i{

font-size:50px;
color:#198754;

}



/* ==============================
RESPONSIVE
============================== */


@media(max-width:992px){

.feature-grid{
grid-template-columns:repeat(2,1fr);
}


.pillar-grid{
grid-template-columns:repeat(2,1fr);
}


.objective-grid{
grid-template-columns:1fr;
}


.impact-grid{
grid-template-columns:repeat(3,1fr);
}


}


@media(max-width:600px){


.feature-grid,
.pillar-grid,
.mission-box{

grid-template-columns:1fr;

}


.impact-grid{

grid-template-columns:repeat(2,1fr);

}


.timeline-item{

flex-direction:column;

}


}

/*====================================================
This is for only my Team Page
====================================================*/

.team-hero{
    background:
    linear-gradient(rgba(0,0,0,.55),rgba(0,0,0,.55)),
    url(images/1.jpg) center/cover;
}

.feature-card img{
    width:150px;
    height:150px;
    object-fit:cover;
    border-radius:50%;
    margin:0 auto 25px;
    border:6px solid rgba(19,138,54,.12);
    transition:.4s;
}

.feature-card:hover img{
    transform:scale(1.08);
    border-color:var(--primary);
}

.feature-card h5{
    color:var(--primary);
    font-size:15px;
    margin-bottom:18px;
    font-weight:600;
}

.feature-card .socials{
    justify-content:center;
    margin-top:25px;
}

.feature-card .socials a{
    width:42px;
    height:42px;
}

/*========================================
META-STYLE TEAM LAYOUT
========================================*/

.leadership-meta{
    padding:100px 0;
    background:#fff;
}

.board-section{
    background:#f7faf8;
}



.team-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));

    gap:40px;

    margin-top:60px;

}

.team-member{

    background:#fff;

    border-radius:20px;

    overflow:hidden;

    box-shadow:0 5px 5px rgba(0,0,0,.08);

    transition:.4s ease;

    display:flex;

    flex-direction:column;

    height:100%;

}

.team-member:hover{

    transform:translateY(0px);

    box-shadow:0 10px 30px rgba(0,0,0,.12);

}

.team-image{

    height:380px;

    overflow:hidden;

}

.team-image img{

    width:100%;

    height:100%;

    object-fit:cover;

    transition:.5s;

}

.team-member:hover img{

    transform:scale(1.08);

}

.team-info{

    padding:30px;

    display:flex;

    flex-direction:column;

    flex-grow:1;

}

.team-info h3{

    font-size:26px;

    margin-bottom:8px;

}

.team-info .position{

    color:#14833b;

    font-weight:600;

    margin-bottom:18px;

}

.team-info p{

    color:#666;

    line-height:1.8;

    margin-bottom:25px;

    flex-grow:1;

}

.team-info .profile-btn{

    display:inline-flex;

    align-items:center;

    gap:8px;

    color:#14833b;

    font-weight:600;

    text-decoration:none;

    transition:.3s;

}

.team-info .profile-btn:hover{

    gap:14px;

}

/* Responsive */

@media(max-width:1100px){
    .team-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:576px){
    .team-grid{
        grid-template-columns:1fr;
    }

    .team-info h3{
        font-size:20px;
    }
}



.team-info .read-more{

    display:inline-flex;

    align-items:center;

    gap:10px;

    color:#138a36;

    font-size:15px;

    font-weight:600;

    text-decoration:none;

    transition:.35s ease;

}


.team-info .read-more i{

    transition:.35s ease;

}


.team-info .read-more:hover{

    color:#0b6628;

}


.team-info .read-more:hover i{

    transform:translateX(6px);

}


.full-bio{

    max-height:0;

    overflow:hidden;

    opacity:0;

    transform:translateY(-10px);

    transition:
    max-height .5s ease,
    opacity .4s ease,
    transform .4s ease;

}


.team-member.active .full-bio{

    max-height:2000px;

    opacity:1;

    transform:translateY(0);

    margin-top:20px;

}

.read-more{

    border:none;

    background:none;

    padding:0;

    margin-top:20px;

    color:#138a36;

    font-weight:600;

    cursor:pointer;

    display:flex;

    align-items:center;

    gap:10px;

}


.read-more i{

    transition:.3s;

}


.team-member.active .read-more i{

    transform:rotate(90deg);

}



/*============================
DEPARTMENTS SECTION
=============================*/


.departments{

padding:100px 0;

background:#f7faf7;

}



.department-grid{

display:grid;

grid-template-columns:repeat(2,1fr);

gap:35px;

margin-top:60px;

}




.department-card{

background:#fff;

padding:40px;

border-radius:25px;

display:flex;

gap:30px;

position:relative;

overflow:hidden;

box-shadow:
0 15px 40px rgba(0,0,0,.06);

transition:.4s ease;

}



.department-card::before{

content:"";

position:absolute;

left:0;

top:0;

height:100%;

width:5px;

background:#15803d;

transform:scaleY(0);

transition:.4s;

}



.department-card:hover::before{

transform:scaleY(1);

}



.department-card:hover{

transform:translateY(-10px);

box-shadow:
0 25px 60px rgba(0,0,0,.12);

}





.department-icon{

min-width:75px;

height:75px;

border-radius:50%;

background:#eaf7ee;

display:flex;

align-items:center;

justify-content:center;

font-size:30px;

color:#15803d;

transition:.4s;

}




.department-card:hover .department-icon{

background:#15803d;

color:#fff;

transform:rotateY(360deg);

}





.department-content h3{

font-size:25px;

margin-bottom:15px;

color:#111;

}



.department-content p{

color:#666;

line-height:1.8;

margin-bottom:20px;

}




.department-content ul{

padding:0;

margin:0;

list-style:none;

}



.department-content ul li{

margin-bottom:10px;

color:#555;

position:relative;

padding-left:25px;

}



.department-content ul li::before{

content:"✓";

position:absolute;

left:0;

color:#15803d;

font-weight:700;

}





@media(max-width:900px){


.department-grid{

grid-template-columns:1fr;

}


.department-card{

flex-direction:column;

}


}



/* =====================================
REMOVE GAP BETWEEN ABOUT AND STRATEGIC
===================================== */


.about-page{
    padding-bottom:30px !important;
}


.about-page + .strategic-position{

    padding-top:30px !important;

}


.strategic-position{

    margin-top:0 !important;

}


/*==================================================
WHY TIMOSA
==================================================*/

.why-us{
    background:var(--light);
}

.why-content span{
    display:inline-block;
    color:var(--primary);
    text-transform:uppercase;
    letter-spacing:2px;
    font-size:14px;
    font-weight:700;
    margin-bottom:15px;
}

.why-content h2{
    color:var(--dark);
    font-size:42px;
    margin-bottom:20px;
}

.why-content p{
    color:#666;
    margin-bottom:20px;
    line-height:1.9;
}

.why-content ul{
    margin:30px 0;
}

.why-content li{
    display:flex;
    align-items:center;
    gap:15px;
    margin-bottom:15px;
    color:#333;
    font-weight:500;
}

.why-content li i{
    color:var(--primary);
    font-size:20px;
}



/*====================================================
END OF STYLE.CSS
====================================================*/