/* =========================
TOPBAR
========================= */

.topbar{
    background:#052e16;
    padding:10px 0;
    color:#fff;
    font-size:14px;
}

.topbar-left span{
    opacity:0.9;
}

.topbar-right{
    display:flex;
    justify-content:end;
    gap:25px;
    flex-wrap:wrap;
}

.topbar-right a{
    color:#fff;
    text-decoration:none;
    opacity:0.85;
    transition:0.4s;
}

.topbar-right a:hover{
    color:#d9f99d;
}

/* =========================
HEADER
========================= */

.main-header{
    background:rgba(255,255,255,0.9);
    backdrop-filter:blur(14px);
    box-shadow:0 10px 40px rgba(0,0,0,0.05);
}

.navbar{
    padding:18px 0;
}

.logo-box{
    display:flex;
    align-items:center;
    gap:15px;
}

.logo-icon{
    width:60px;
    height:60px;
    background:
    linear-gradient(135deg,#22c55e,#84cc16);
    border-radius:20px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
    box-shadow:0 10px 30px rgba(34,197,94,0.3);
}

.logo-title{
    margin:0;
    font-size:26px;
    font-weight:800;
    color:#14532d;
}

.logo-subtitle{
    color:#666;
    font-size:13px;
}

.navbar-nav{
    gap:10px;
}
.nav-link{
    color:#111827;
    font-weight:600;
    padding:12px 18px !important;
    border-radius:12px;
    transition:0.4s;
}
.nav-link:hover,
.nav-link.active{
    background:#dcfce7;
    color:#166534 !important;
}

.nav-center{
    gap:2px;
    margin-left:40px;
}

.header-btn-area{
    margin-left:20px;
    flex-shrink:0;
}

.navbar .container{
    max-width:1320px;
}

.navbar-collapse{
    align-items:center;
}

/* BETTER DESKTOP SPACING */

@media(min-width:1200px){

    .navbar-nav .nav-link{
        padding:10px 14px !important;
        font-size:15px;
    }

}

/* LARGE SCREENS */

@media(min-width:1400px){

    .navbar .container{
        max-width:1380px;
    }

}

.dropdown-menu{
    border:none;
    border-radius:20px;
    padding:15px;
    box-shadow:0 20px 50px rgba(0,0,0,0.08);
}

.dropdown-item{
    border-radius:12px;
    padding:12px 16px;
    transition:0.4s;
}

.dropdown-item:hover{
    background:#dcfce7;
    color:#166534;
}

.header-btn{
    background:
    linear-gradient(135deg,#22c55e,#84cc16);
    color:#111;
    padding:14px 30px;
    border-radius:50px;
    text-decoration:none;
    font-weight:700;
    transition:0.4s;
    display:inline-block;
}

.header-btn:hover{
    transform:translateY(-4px);
    color:#111;
}

.custom-toggler{
    border:none;
    width:50px;
    height:50px;
    border-radius:16px;
    background:#22c55e;
    color:#fff;
    font-size:26px;
}

/* =========================
MOBILE SIDEBAR
========================= */

.mobile-sidebar{
    width:320px !important;
    background:#fff;
}

.mobile-logo{
    font-size:24px;
    font-weight:800;
    color:#166534;
}

.mobile-menu{
    list-style:none;
    padding:0;
    margin:0;
}

.mobile-menu li{
    margin-bottom:20px;
}

.mobile-menu a{
    color:#111827;
    text-decoration:none;
    font-weight:600;
    display:block;
    padding:12px 16px;
    border-radius:14px;
    transition:0.4s;
}

.mobile-menu a:hover{
    background:#dcfce7;
    color:#166534;
}

.mobile-menu-title{
    font-weight:700;
    margin-bottom:10px;
    color:#166534;
    padding-left:10px;
}

.mobile-menu ul{
    list-style:none;
    padding-left:10px;
}

.mobile-menu ul li{
    margin-bottom:8px;
}

.mobile-menu ul a{
    background:#f0fdf4;
    font-size:14px;
}

.mobile-join-btn{
    display:block;
    margin-top:40px;
    background:
    linear-gradient(135deg,#22c55e,#84cc16);
    color:#111;
    text-align:center;
    padding:16px;
    border-radius:50px;
    text-decoration:none;
    font-weight:700;
}

/* =========================
RESPONSIVE
========================= */

@media(max-width:991px){

    .topbar{
        display:none;
    }

    .logo-title{
        font-size:20px;
    }

    .logo-subtitle{
        display:none;
    }

}
/*Index Page*/
.hero-section{
    background:
    linear-gradient(135deg,#0f3d2e 0%,#14532d 40%,#1b5e20 100%);
    position:relative;
}

.hero-title{
    font-size:65px;
    font-weight:800;
    line-height:1.1;
}

.hero-title span{
    color:#d4ff66;
}

.hero-text{
    font-size:20px;
    line-height:1.8;
    opacity:0.9;
}

.hero-badge{
    background:rgba(255,255,255,0.15);
    backdrop-filter:blur(10px);
    padding:12px 22px;
    border-radius:50px;
    font-size:14px;
    display:inline-block;
    border:1px solid rgba(255,255,255,0.2);
}

.hero-btn-primary{
    background:#d4ff66;
    color:#000;
    padding:14px 34px;
    border-radius:50px;
    font-weight:600;
    transition:0.4s;
}

.hero-btn-primary:hover{
    transform:translateY(-4px);
    background:#fff;
}

.hero-btn-outline{
    border:2px solid #fff;
    color:#fff;
    padding:14px 34px;
    border-radius:50px;
    font-weight:600;
}

.hero-btn-outline:hover{
    background:#fff;
    color:#000;
}

.hero-main-img{
    max-height:650px;
    animation:floatImg 4s ease-in-out infinite;
    position:relative;
    z-index:2;
}

@keyframes floatImg{
    0%{transform:translateY(0px);}
    50%{transform:translateY(-15px);}
    100%{transform:translateY(0px);}
}

.hero-glow{
    width:450px;
    height:450px;
    background:rgba(212,255,102,0.25);
    position:absolute;
    border-radius:50%;
    filter:blur(100px);
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
}

.hero-stat{
    background:rgba(255,255,255,0.08);
    padding:20px;
    border-radius:20px;
    text-align:center;
    backdrop-filter:blur(10px);
}

.hero-stat h3{
    font-size:32px;
    font-weight:700;
    color:#d4ff66;
}

.hero-stat p{
    margin:0;
    opacity:0.8;
}

.floating-card{
    position:absolute;
    background:#fff;
    padding:14px 24px;
    border-radius:14px;
    box-shadow:0 15px 40px rgba(0,0,0,0.2);
    font-weight:600;
    z-index:5;
}

.floating-card-1{
    top:15%;
    left:0;
}

.floating-card-2{
    bottom:10%;
    right:0;
}

.hero-shape{
    position:absolute;
    border-radius:50%;
    filter:blur(80px);
}

.hero-shape-1{
    width:300px;
    height:300px;
    background:#4ade80;
    top:-100px;
    left:-100px;
    opacity:0.2;
}

.hero-shape-2{
    width:400px;
    height:400px;
    background:#bbf7d0;
    bottom:-150px;
    right:-100px;
    opacity:0.1;
}

@media(max-width:991px){

    .hero-title{
        font-size:42px;
    }

    .hero-text{
        font-size:17px;
    }

    .hero-main-img{
        margin-top:40px;
    }

    .floating-card{
        display:none;
    }

}
/* =========================
SCHEME SECTION
========================= */

.scheme-section{
    background:
    linear-gradient(135deg,#f0fdf4 0%,#ecfccb 100%);
    position:relative;
}

.scheme-bg-circle{
    position:absolute;
    border-radius:50%;
    filter:blur(120px);
    opacity:0.3;
}

.scheme-bg-circle-1{
    width:300px;
    height:300px;
    background:#4ade80;
    top:-100px;
    left:-100px;
}

.scheme-bg-circle-2{
    width:350px;
    height:350px;
    background:#bbf7d0;
    bottom:-100px;
    right:-100px;
}

.section-subtitle{
    max-width:750px;
    margin:auto;
    color:#555;
    font-size:18px;
    line-height:1.8;
}

.scheme-card{
    background:rgba(255,255,255,0.75);
    backdrop-filter:blur(14px);
    border-radius:28px;
    padding:35px;
    position:relative;
    overflow:hidden;
    transition:0.5s;
    border:1px solid rgba(255,255,255,0.4);
    box-shadow:0 15px 50px rgba(0,0,0,0.08);
}

.scheme-card:hover{
    transform:translateY(-12px);
}

.scheme-top{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:30px;
}

.scheme-icon{
    width:85px;
    height:85px;
    background:
    linear-gradient(135deg,#22c55e,#166534);
    border-radius:24px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:36px;
    color:#fff;
    box-shadow:0 10px 30px rgba(34,197,94,0.3);
}

.scheme-badge{
    background:#dcfce7;
    color:#166534;
    padding:10px 18px;
    border-radius:50px;
    font-size:13px;
    font-weight:600;
}

.scheme-title{
    font-size:28px;
    font-weight:700;
    color:#111827;
    margin-bottom:20px;
}

.scheme-text{
    color:#555;
    line-height:1.9;
    margin-bottom:25px;
}

.scheme-list{
    list-style:none;
    padding:0;
    margin:0;
}

.scheme-list li{
    margin-bottom:14px;
    color:#222;
    font-weight:500;
}

.scheme-footer{
    margin-top:30px;
}

.scheme-btn{
    background:
    linear-gradient(135deg,#22c55e,#166534);
    color:#fff;
    padding:14px 30px;
    border-radius:50px;
    font-weight:600;
    transition:0.4s;
}

.scheme-btn:hover{
    background:#111827;
    color:#fff;
    transform:translateY(-3px);
}

.scheme-glow{
    position:absolute;
    width:180px;
    height:180px;
    background:#86efac;
    border-radius:50%;
    filter:blur(80px);
    top:-50px;
    right:-50px;
    opacity:0.15;
}

@media(max-width:991px){

    .scheme-title{
        font-size:24px;
    }

    .scheme-card{
        padding:25px;
    }

}

/* =========================
WHY BAMBOO SECTION
========================= */

.why-section{
    background:
    linear-gradient(135deg,#f8fafc 0%,#ecfccb 100%);
    position:relative;
}

.why-bg{
    position:absolute;
    border-radius:50%;
    filter:blur(120px);
    opacity:0.25;
}

.why-bg-1{
    width:300px;
    height:300px;
    background:#4ade80;
    top:-120px;
    left:-100px;
}

.why-bg-2{
    width:350px;
    height:350px;
    background:#86efac;
    bottom:-150px;
    right:-100px;
}

.why-card{
    background:rgba(255,255,255,0.75);
    backdrop-filter:blur(16px);
    border-radius:28px;
    padding:40px 30px;
    position:relative;
    overflow:hidden;
    transition:0.5s;
    text-align:center;
    height:100%;
    border:1px solid rgba(255,255,255,0.5);
    box-shadow:0 20px 50px rgba(0,0,0,0.08);
}

.why-card:hover{
    transform:translateY(-15px);
}

.why-icon-box{
    margin-bottom:25px;
}

.why-icon{
    width:95px;
    height:95px;
    margin:auto;
    background:
    linear-gradient(135deg,#22c55e,#166534);
    border-radius:30px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:42px;
    color:#fff;
    box-shadow:0 15px 40px rgba(34,197,94,0.35);
}

.why-title{
    font-size:28px;
    font-weight:700;
    margin-bottom:20px;
    color:#111827;
}

.why-text{
    color:#555;
    line-height:1.9;
    margin-bottom:25px;
}

.why-line{
    width:70px;
    height:4px;
    background:
    linear-gradient(90deg,#22c55e,#84cc16);
    margin:auto;
    border-radius:50px;
}

/* =========================
TIMELINE SECTION
========================= */

.timeline-section{
    background:
    linear-gradient(135deg,#052e16 0%,#14532d 100%);
    position:relative;
}

.timeline-bg{
    position:absolute;
    width:600px;
    height:600px;
    background:#4ade80;
    border-radius:50%;
    filter:blur(180px);
    opacity:0.08;
    top:-200px;
    right:-150px;
}

.timeline-subtitle{
    color:rgba(255,255,255,0.8);
    max-width:700px;
    margin:auto;
    line-height:1.9;
}

.timeline-wrapper{
    display:flex;
    align-items:center;
    justify-content:center;
    flex-wrap:wrap;
    gap:20px;
}

.timeline-item{
    background:rgba(255,255,255,0.08);
    backdrop-filter:blur(14px);
    border-radius:28px;
    padding:35px 25px;
    width:220px;
    text-align:center;
    transition:0.5s;
    border:1px solid rgba(255,255,255,0.1);
    position:relative;
}

.timeline-item:hover{
    transform:translateY(-10px);
    background:rgba(255,255,255,0.12);
}

.timeline-icon{
    width:85px;
    height:85px;
    margin:auto;
    margin-bottom:25px;
    background:
    linear-gradient(135deg,#22c55e,#84cc16);
    border-radius:24px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:36px;
    color:#fff;
    box-shadow:0 15px 40px rgba(34,197,94,0.35);
}

.timeline-item h4{
    color:#fff;
    font-size:24px;
    margin-bottom:15px;
}

.timeline-item p{
    color:rgba(255,255,255,0.75);
    line-height:1.8;
    margin:0;
}

.timeline-arrow{
    font-size:42px;
    color:#84cc16;
    font-weight:700;
}

/* MOBILE */

@media(max-width:991px){

    .timeline-wrapper{
        flex-direction:column;
    }

    .timeline-arrow{
        transform:rotate(90deg);
    }

    .timeline-item{
        width:100%;
    }

    .why-title{
        font-size:24px;
    }

}

/* =========================
MARKETPLACE SECTION
========================= */

.marketplace-section{
    background:
    linear-gradient(135deg,#052e16 0%,#14532d 100%);
    position:relative;
}

.market-bg{
    position:absolute;
    border-radius:50%;
    filter:blur(140px);
    opacity:0.15;
}

.market-bg-1{
    width:350px;
    height:350px;
    background:#22c55e;
    top:-120px;
    left:-120px;
}

.market-bg-2{
    width:450px;
    height:450px;
    background:#84cc16;
    bottom:-180px;
    right:-180px;
}

.market-subtitle{
    max-width:750px;
    margin:auto;
    color:rgba(255,255,255,0.85);
    font-size:18px;
    line-height:1.9;
}

.market-card{
    background:rgba(255,255,255,0.08);
    backdrop-filter:blur(16px);
    border-radius:30px;
    padding:35px 30px;
    height:100%;
    transition:0.5s;
    border:1px solid rgba(255,255,255,0.1);
    position:relative;
    overflow:hidden;
}

.market-card:hover{
    transform:translateY(-12px);
    background:rgba(255,255,255,0.12);
}

.market-icon{
    width:90px;
    height:90px;
    background:
    linear-gradient(135deg,#22c55e,#84cc16);
    border-radius:28px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:40px;
    margin-bottom:25px;
    box-shadow:0 15px 40px rgba(34,197,94,0.3);
}

.market-card h4{
    color:#fff;
    font-size:28px;
    margin-bottom:18px;
}

.market-card p{
    color:rgba(255,255,255,0.75);
    line-height:1.9;
}

.market-list{
    list-style:none;
    padding:0;
    margin:25px 0;
}

.market-list li{
    color:#fff;
    margin-bottom:12px;
}

.market-btn{
    color:#d9f99d;
    text-decoration:none;
    font-weight:600;
    font-size:17px;
}

/* =========================
TRAINING SECTION
========================= */

.training-section{
    background:
    linear-gradient(135deg,#f8fafc 0%,#f0fdf4 100%);
    position:relative;
}

.training-bg{
    position:absolute;
    border-radius:50%;
    filter:blur(120px);
    opacity:0.2;
}

.training-bg-1{
    width:300px;
    height:300px;
    background:#4ade80;
    top:-100px;
    left:-100px;
}

.training-bg-2{
    width:350px;
    height:350px;
    background:#bbf7d0;
    bottom:-120px;
    right:-120px;
}

.training-card{
    background:rgba(255,255,255,0.75);
    backdrop-filter:blur(14px);
    border-radius:30px;
    padding:35px;
    height:100%;
    transition:0.5s;
    box-shadow:0 20px 50px rgba(0,0,0,0.08);
    border:1px solid rgba(255,255,255,0.4);
}

.training-card:hover{
    transform:translateY(-12px);
}

.training-top{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:30px;
}

.training-icon{
    width:85px;
    height:85px;
    background:
    linear-gradient(135deg,#22c55e,#166534);
    border-radius:24px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:36px;
    color:#fff;
    box-shadow:0 15px 40px rgba(34,197,94,0.3);
}

.training-badge{
    background:#dcfce7;
    color:#166534;
    padding:10px 18px;
    border-radius:50px;
    font-size:13px;
    font-weight:600;
}

.training-title{
    font-size:28px;
    margin-bottom:20px;
    color:#111827;
}

.training-text{
    color:#555;
    line-height:1.9;
}

.training-list{
    list-style:none;
    padding:0;
    margin:25px 0;
}

.training-list li{
    margin-bottom:12px;
    color:#222;
}

.training-btn{
    color:#16a34a;
    font-weight:600;
    text-decoration:none;
    font-size:17px;
}

/* MOBILE */

@media(max-width:991px){

    .market-card h4,
    .training-title{
        font-size:24px;
    }

}

/* =========================
TESTIMONIAL SECTION
========================= */

.testimonial-section{
    background:
    linear-gradient(135deg,#f8fafc 0%,#ecfccb 100%);
    position:relative;
}

.testimonial-bg{
    position:absolute;
    border-radius:50%;
    filter:blur(120px);
    opacity:0.2;
}

.testimonial-bg-1{
    width:300px;
    height:300px;
    background:#4ade80;
    top:-100px;
    left:-100px;
}

.testimonial-bg-2{
    width:350px;
    height:350px;
    background:#bbf7d0;
    bottom:-120px;
    right:-120px;
}

.testimonial-card{
    background:rgba(255,255,255,0.75);
    backdrop-filter:blur(16px);
    border-radius:30px;
    padding:35px;
    height:100%;
    transition:0.5s;
    border:1px solid rgba(255,255,255,0.5);
    box-shadow:0 20px 50px rgba(0,0,0,0.08);
}

.testimonial-card:hover{
    transform:translateY(-12px);
}

.testimonial-top{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:25px;
}

.testimonial-profile{
    display:flex;
    align-items:center;
    gap:15px;
}

.testimonial-user{
    width:70px;
    height:70px;
    border-radius:50%;
    object-fit:cover;
}

.testimonial-profile h5{
    margin:0;
    font-weight:700;
}

.testimonial-profile span{
    color:#666;
}

.testimonial-rating{
    color:#facc15;
}

.testimonial-text{
    line-height:1.9;
    color:#555;
    font-size:17px;
}

.testimonial-footer{
    margin-top:25px;
}

.testimonial-footer span{
    background:#dcfce7;
    color:#166534;
    padding:10px 18px;
    border-radius:50px;
    font-size:14px;
    font-weight:600;
}

/* =========================
WHITE LABEL SECTION
========================= */

.white-label-section{
    background:
    linear-gradient(135deg,#052e16 0%,#14532d 100%);
    position:relative;
}

.white-label-bg{
    position:absolute;
    width:600px;
    height:600px;
    background:#4ade80;
    border-radius:50%;
    filter:blur(180px);
    opacity:0.08;
    top:-200px;
    right:-150px;
}

.white-label-text{
    font-size:20px;
    line-height:1.9;
    color:rgba(255,255,255,0.85);
}

.white-feature{
    background:rgba(255,255,255,0.08);
    backdrop-filter:blur(14px);
    border-radius:18px;
    padding:18px;
    text-align:center;
    font-weight:600;
}

.white-btn{
    background:#d9f99d;
    color:#111;
    padding:16px 38px;
    border-radius:50px;
    font-weight:700;
    transition:0.4s;
}

.white-btn:hover{
    background:#fff;
    transform:translateY(-4px);
}

.white-image-wrapper{
    position:relative;
}

.white-glow{
    position:absolute;
    width:400px;
    height:400px;
    background:#84cc16;
    border-radius:50%;
    filter:blur(120px);
    opacity:0.2;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
}

.white-img{
    position:relative;
    z-index:2;
    animation:floatImage 4s ease-in-out infinite;
}

.white-floating-card{
    position:absolute;
    background:#fff;
    color:#111;
    padding:16px 24px;
    border-radius:18px;
    font-weight:700;
    bottom:20px;
    right:20px;
    z-index:5;
    box-shadow:0 15px 40px rgba(0,0,0,0.2);
}

@keyframes floatImage{
    0%{transform:translateY(0px);}
    50%{transform:translateY(-15px);}
    100%{transform:translateY(0px);}
}

/* =========================
BLOG SECTION
========================= */

.blog-section{
    background:
    linear-gradient(135deg,#f8fafc 0%,#f0fdf4 100%);
    position:relative;
}

.blog-bg{
    position:absolute;
    width:400px;
    height:400px;
    background:#bbf7d0;
    border-radius:50%;
    filter:blur(150px);
    opacity:0.25;
    top:-120px;
    left:-100px;
}

.blog-card{
    background:#fff;
    border-radius:30px;
    overflow:hidden;
    transition:0.5s;
    box-shadow:0 20px 50px rgba(0,0,0,0.08);
    height:100%;
}

.blog-card:hover{
    transform:translateY(-12px);
}

.blog-image-wrapper{
    position:relative;
    overflow:hidden;
}

.blog-image{
    width:100%;
    transition:0.5s;
}

.blog-card:hover .blog-image{
    transform:scale(1.08);
}

.blog-category{
    position:absolute;
    top:20px;
    left:20px;
    background:#16a34a;
    color:#fff;
    padding:10px 18px;
    border-radius:50px;
    font-size:13px;
    font-weight:600;
}

.blog-content{
    padding:30px;
}

.blog-meta{
    color:#16a34a;
    font-weight:600;
    margin-bottom:15px;
}

.blog-title{
    font-size:26px;
    margin-bottom:18px;
    color:#111827;
}

.blog-text{
    color:#555;
    line-height:1.9;
}

.blog-btn{
    display:inline-block;
    margin-top:20px;
    color:#16a34a;
    font-weight:700;
    text-decoration:none;
}

@media(max-width:991px){

    .blog-title{
        font-size:22px;
    }

    .white-floating-card{
        display:none;
    }

}

/* =========================
FOOTER SECTION
========================= */

.footer-section{
    background:
    linear-gradient(135deg,#02140b 0%,#052e16 50%,#14532d 100%);
    color:#fff;
    padding:100px 0 40px;
    position:relative;
}

.footer-bg{
    position:absolute;
    border-radius:50%;
    filter:blur(150px);
    opacity:0.1;
}

.footer-bg-1{
    width:350px;
    height:350px;
    background:#22c55e;
    top:-120px;
    left:-120px;
}

.footer-bg-2{
    width:450px;
    height:450px;
    background:#84cc16;
    bottom:-180px;
    right:-180px;
}

.footer-logo{
    font-size:34px;
    font-weight:800;
    color:#d9f99d;
}

.footer-text{
    color:rgba(255,255,255,0.75);
    line-height:1.9;
}

.footer-title{
    font-size:24px;
    margin-bottom:30px;
    color:#fff;
    position:relative;
}

.footer-title::after{
    content:"";
    width:60px;
    height:4px;
    background:#84cc16;
    position:absolute;
    left:0;
    bottom:-12px;
    border-radius:50px;
}

.footer-links{
    list-style:none;
    padding:0;
    margin:0;
}

.footer-links li{
    margin-bottom:16px;
}

.footer-links a{
    color:rgba(255,255,255,0.75);
    text-decoration:none;
    transition:0.4s;
}

.footer-links a:hover{
    color:#d9f99d;
    padding-left:8px;
}

.footer-social{
    display:flex;
    gap:15px;
}

.footer-social a{
    width:50px;
    height:50px;
    background:rgba(255,255,255,0.08);
    border-radius:18px;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:20px;
    transition:0.4s;
}

.footer-social a:hover{
    background:#84cc16;
    color:#111;
    transform:translateY(-5px);
}

.footer-contact-item{
    display:flex;
    gap:15px;
    margin-bottom:20px;
    align-items:flex-start;
}

.footer-contact-icon{
    width:45px;
    height:45px;
    background:rgba(255,255,255,0.08);
    border-radius:14px;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#d9f99d;
    flex-shrink:0;
}

.newsletter-box{
    background:rgba(255,255,255,0.06);
    padding:25px;
    border-radius:24px;
    backdrop-filter:blur(14px);
}

.newsletter-input{
    border:none;
    border-radius:50px 0 0 50px;
    padding:14px 20px;
}

.newsletter-btn{
    background:#84cc16;
    color:#111;
    border-radius:0 50px 50px 0;
    font-weight:700;
    padding:0 24px;
}

.footer-divider{
    border-color:rgba(255,255,255,0.1);
    margin:50px 0 30px;
}

.copyright-text{
    color:rgba(255,255,255,0.65);
}

.footer-bottom-links{
    display:flex;
    justify-content:end;
    gap:25px;
    flex-wrap:wrap;
}

.footer-bottom-links a{
    color:rgba(255,255,255,0.7);
    text-decoration:none;
    transition:0.4s;
}

.footer-bottom-links a:hover{
    color:#d9f99d;
}

/* =========================
BACK TO TOP
========================= */

.back-to-top{
    position:fixed;
    bottom:30px;
    right:30px;
    width:55px;
    height:55px;
    border:none;
    border-radius:18px;
    background:
    linear-gradient(135deg,#22c55e,#84cc16);
    color:#111;
    font-size:22px;
    z-index:999;
    opacity:0;
    visibility:hidden;
    transition:0.4s;
    box-shadow:0 15px 40px rgba(34,197,94,0.35);
}

.back-to-top.show{
    opacity:1;
    visibility:visible;
}

.back-to-top:hover{
    transform:translateY(-5px);
}

/* MOBILE */

@media(max-width:991px){

    .footer-section{
        padding:80px 0 30px;
    }

    .footer-logo{
        font-size:28px;
    }

    .footer-bottom-links{
        justify-content:start;
    }

}


