

/*==========================================
        FLOATING CONTACT BUTTONS
==========================================*/

.floating-contact{
    position:fixed;
    right:20px;
    bottom:20px;
    display:flex;
    flex-direction:column;
    gap:15px;
    z-index:99999;
}

/* Common */

.float-btn{
    display:flex;
    align-items:center;
    gap:12px;
    padding:14px 22px;
    border-radius:50px;
    color:#fff;
    text-decoration:none;
    font-size:17px;
    font-weight:600;
    box-shadow:0 8px 20px rgba(0,0,0,.25);
    transition:.3s;
}

/* Hover */

.float-btn:hover{
    transform:translateY(-4px) scale(1.03);
}

/* WhatsApp */

.float-btn.whatsapp{
    background:#25D366;
    animation:whatsappPulse 2s infinite;
}

.float-btn.whatsapp i{
    font-size:28px;
}

/* Call */

.float-btn.call{
    background:#178D3C;
    animation:callGlow 2s infinite;
}

@keyframes callGlow{

0%{
    box-shadow:0 0 0 0 rgba(23,141,60,.7);
}

70%{
    box-shadow:0 0 0 18px rgba(23,141,60,0);
}

100%{
    box-shadow:0 0 0 0 rgba(23,141,60,0);
}

}
/* Pulse */

@keyframes whatsappPulse{

0%{
box-shadow:0 0 0 0 rgba(37,211,102,.6);
}

70%{
box-shadow:0 0 0 18px rgba(37,211,102,0);
}

100%{
box-shadow:0 0 0 0 rgba(37,211,102,0);
}

}

/* Mobile */

@media(max-width:768px){

.floating-contact{
right:15px;
bottom:15px;
}

.float-btn{
width:60px;
height:60px;
padding:0;
justify-content:center;
border-radius:50%;
}

.float-btn span{
display:none;
}

.float-btn i{
font-size:30px;
}

}

/*==========================================
        GOOGLE FONT & RESET
==========================================*/

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:#f8f8f8;
    color:#222;
    line-height:1.6;
}

a{
    text-decoration:none;
    color:inherit;
}

img{
    max-width:100%;
    display:block;
}

ul{
    list-style:none;
}

.container{
    width:90%;
    max-width:1280px;
    margin:auto;
}

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

.header{
    position:fixed;
    width:100%;
    top:0;
    left:0;
    z-index:999;
    background:#fff;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
}

.header .container{

    display:flex;
    justify-content:space-between;
    align-items:center;
    height:90px;

}

.logo img{

    height:65px;

}

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

.nav-menu{

    display:flex;
    align-items:center;
    gap:35px;

}

.nav-menu li{

    position:relative;

}

.nav-menu a{

    font-size:15px;
    font-weight:600;
    color:#222;
    transition:.3s;

}

.nav-menu a:hover,
.nav-menu a.active{

    color:#1D8D41;

}

.nav-menu a::after{

    content:'';
    position:absolute;
    left:0;
    bottom:-10px;
    width:0;
    height:3px;
    background:#1D8D41;
    transition:.3s;
    border-radius:20px;

}

.nav-menu a:hover::after,
.nav-menu a.active::after{

    width:100%;

}

/*==========================
      CALL BUTTON
===========================*/

.call-btn{

    background:#188D3F;
    color:#fff;
    padding:15px 28px;
    border-radius:40px;
    display:flex;
    align-items:center;
    gap:10px;
    font-weight:600;
    transition:.3s;

}

.call-btn:hover{

    transform:translateY(-3px);

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

}

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

.hero{

    margin-top:90px;

   background: url("../images/hero-bg.jpg");

    background-size:cover;

    background-position:center;

    position:relative;

    overflow:hidden;

    padding:90px 0 120px;

}

.hero::before{

    content:'';

    position:absolute;

    left:0;

    top:0;

    width:100%;

    height:100%;

    /*background:linear-gradient(*/
    /*    90deg,*/
    /*    rgba(255,255,255,.96),*/
    /*    rgba(255,255,255,.35)*/
    /*);*/

}

.hero-grid{

    position:relative;

    z-index:10;

    display:grid;

    grid-template-columns:1.1fr .9fr;

    align-items:center;

    gap:30px;

}

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

.hero-left h1{

    font-size:68px;

    line-height:1.05;

    font-weight:800;

    color:#111;

}

.hero-left h1 span{

    color:#178D3C;

}

.hero-left p{

    margin:30px 0;

    font-size:28px;

    color:#555;

}
.hero-icons .item h4{
    color: #000;
    font-weight: 700;
    text-shadow:
        -1px -1px 0 #fff,
         1px -1px 0 #fff,
        -1px  1px 0 #fff,
         1px  1px 0 #fff;
}

.hero-icons .item span{
    color: #000;
    text-shadow:
        -1px -1px 0 #fff,
         1px -1px 0 #fff,
        -1px  1px 0 #fff,
         1px  1px 0 #fff;
}

/*==========================
      ICON BOXES
===========================*/

.hero-icons{
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 20px;
    margin-top: 40px;
    margin-left: -20px;
}
.hero-icons .item{

    text-align:center;

}

.hero-icons .icon{

    width:75px;

    height:75px;

    background:#178D3C;

    color:#fff;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:32px;

    margin:auto;

    transition:.3s;

}

.hero-icons .item:hover .icon{

    transform:rotate(360deg);

}

.hero-icons h4{

    margin-top:18px;

    font-size:18px;

    font-weight:700;

}

.hero-icons span{

    font-size:14px;

    color:#666;

}

/*==========================
      BUTTONS
===========================*/

.hero-buttons{

    margin-top:40px;

    display:flex;

    gap:20px;

}

.btn{

    padding:16px 36px;

    border-radius:40px;

    display:inline-flex;

    align-items:center;

    gap:12px;

    font-weight:700;

    transition:.3s;

}

.btn.green{

    background:#178D3C;

    color:#fff;

}

.btn.green:hover{

    background:#106D2D;

}

.btn.outline{

    border:2px solid #178D3C;

    color:#178D3C;

    background:#fff;

}

.btn.outline:hover{

    background:#178D3C;

    color:#fff;

}

/*==========================
        HERO IMAGES
===========================*/

.hero-right{

    display:flex;

    align-items:flex-end;

    justify-content:center;

    gap:30px;

}

.hero-right .bike{

    width:520px;

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

}

.hero-right .battery{

    width:220px;

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

}

@keyframes float{

    0%{
        transform:translateY(0);
    }

    50%{
        transform:translateY(-15px);
    }

    100%{
        transform:translateY(0);
    }

}
/*==========================================
        FLOATING FEATURE SECTION
==========================================*/

.floating-card{

    position:relative;

    margin-top:-70px;

    z-index:20;

}

.feature-grid{

    background:#fff;

    border-radius:30px;

    padding:40px;

    display:grid;

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

    gap:25px;

    box-shadow:0 20px 45px rgba(0,0,0,.10);

}

.feature{

    display:flex;

    align-items:center;

    gap:18px;

    transition:.35s;

    cursor:pointer;

}

.feature:hover{

    transform:translateY(-8px);

}

.feature:hover .circle{

    background:#178D3C;

    color:#fff;

}

.circle{

    width:75px;

    height:75px;

    border-radius:50%;

    background:#EEF8F0;

    display:flex;

    align-items:center;

    justify-content:center;

    color:#178D3C;

    font-size:32px;

    transition:.35s;

    flex-shrink:0;

}

.feature h3{

    font-size:18px;

    font-weight:700;

    color:#111;

    margin-bottom:5px;

}

.feature p{

    font-size:14px;

    color:#777;

}

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

.about{

    padding:110px 0;

    background:#fafafa;

}

.about-grid{

    display:grid;

    grid-template-columns:1.1fr .9fr;

    gap:50px;

    align-items:center;

}

/*==============================
        IMAGE SECTION
==============================*/

.about-left{

    position:relative;

    overflow:hidden;

    border-radius:35px;

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

}

.about-left img{

    width:100%;

    height:650px;

    object-fit:cover;

}

.about-left::after{

    content:'';

    position:absolute;

    inset:0;

    background:linear-gradient(
        90deg,
        rgba(6,80,30,.92),
        rgba(6,80,30,.35)
    );

}

.about-left .content{

    position:absolute;

    left:60px;

    top:50%;

    transform:translateY(-50%);

    z-index:2;

    color:#fff;

    width:75%;

}

.about-left span{

    display:inline-block;

    color:#A8F0B5;

    letter-spacing:3px;

    font-size:14px;

    font-weight:600;

}

.about-left h2{

    margin:20px 0;

    font-size:54px;

    line-height:1.15;

    font-weight:800;

}

.about-left p{

    font-size:17px;

    color:#f5f5f5;

    margin-bottom:35px;

}

/*======================================
        ADVANTAGE SECTION
=======================================*/

.about-right{

    padding:20px;

}

.about-right h2{

    font-size:42px;

    font-weight:800;

    color:#111;

    margin-bottom:45px;

}

.stats{

    display:grid;

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

    gap:25px;

}

/*==============================
        STAT CARD
==============================*/

.stats div{

    background:#fff;

    border-radius:25px;

    padding:35px;

    text-align:center;

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

    transition:.35s;

}

.stats div:hover{

    transform:translateY(-10px);

    box-shadow:0 20px 45px rgba(0,0,0,.15);

}

.stats i{

    font-size:42px;

    color:#178D3C;

    margin-bottom:18px;

}

.stats h3{

    font-size:42px;

    color:#178D3C;

    font-weight:800;

    margin-bottom:8px;

}

.stats span{

    display:block;

    color:#777;

    font-size:16px;

}

/*==============================
      DECORATION
==============================*/

.about{

    position:relative;

}

.about::before{

    content:'';

    position:absolute;

    width:260px;

    height:260px;

    background:#1D8D41;

    opacity:.05;

    border-radius:50%;

    left:-80px;

    top:80px;

}

.about::after{

    content:'';

    position:absolute;

    width:180px;

    height:180px;

    border-radius:50%;

    background:#1D8D41;

    opacity:.05;

    right:40px;

    bottom:40px;

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

footer{

    background:#0D3D1E;

    color:#fff;

    padding:80px 0 0;

    position:relative;

    overflow:hidden;

}

footer::before{

    content:'';

    position:absolute;

    width:350px;

    height:350px;

    background:#1D8D41;

    opacity:.08;

    border-radius:50%;

    left:-120px;

    top:-120px;

}

footer::after{

    content:'';

    position:absolute;

    width:280px;

    height:280px;

    background:#1D8D41;

    opacity:.08;

    border-radius:50%;

    right:-100px;

    bottom:-100px;

}

.footer-grid{

    display:grid;

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

    gap:50px;

    position:relative;

    z-index:2;

}

.footer-logo{

    width:170px;

    margin-bottom:20px;

}

.footer-grid p{

    color:#d9d9d9;

    line-height:1.8;

}

.footer-grid h3{

    margin-bottom:25px;

    font-size:22px;

    font-weight:700;

    position:relative;

}

.footer-grid h3::after{

    content:'';

    position:absolute;

    left:0;

    bottom:-10px;

    width:45px;

    height:3px;

    background:#31C85A;

}

.footer-grid ul li{

    margin-bottom:14px;

}

.footer-grid ul li a{

    color:#dcdcdc;

    transition:.3s;

}

.footer-grid ul li a:hover{

    color:#35D862;

    padding-left:8px;

}

.footer-grid p i{

    color:#35D862;

    margin-right:10px;

}

.copyright{

    margin-top:60px;

    text-align:center;

    padding:20px;

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

    color:#ddd;

    font-size:14px;

}

/*==========================================
            GENERAL EFFECTS
==========================================*/

.feature,
.stats div,
.call-btn,
.btn,
.nav-menu a{

    transition:all .35s ease;

}

.hero-right img{

    filter:drop-shadow(0 25px 35px rgba(0,0,0,.18));

}

.about-left img{

    transition:1s;

}

.about-left:hover img{

    transform:scale(1.08);

}

.btn.green{

    box-shadow:0 12px 25px rgba(24,141,63,.30);

}

.btn.green:hover{

    transform:translateY(-4px);

    box-shadow:0 18px 35px rgba(24,141,63,.35);

}

.btn.outline:hover{

    transform:translateY(-4px);

}

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

::-webkit-scrollbar{

    width:10px;

}

::-webkit-scrollbar-track{

    background:#f2f2f2;

}

::-webkit-scrollbar-thumb{

    background:#178D3C;

    border-radius:20px;

}

::-webkit-scrollbar-thumb:hover{

    background:#106B2D;

}

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

@media(max-width:1200px){

.hero-grid{

grid-template-columns:1fr;

text-align:center;

}

.hero-buttons{

justify-content:center;

}

.hero-right{

margin-top:50px;

}

.about-grid{

grid-template-columns:1fr;

}

.about-right{

margin-top:40px;

}

.feature-grid{

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

}

.footer-grid{

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

}

}

/*============================*/

@media(max-width:991px){

.header .container{

flex-direction:column;

height:auto;

padding:20px 0;

}

.nav-menu{

flex-wrap:wrap;

justify-content:center;

gap:20px;

margin:20px 0;

}

.hero{

padding:70px 0;

}

.hero-left h1{

font-size:48px;

}

.hero-left p{

font-size:20px;

}

.hero-icons{

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

}

.feature-grid{

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

}

.about-left img{

height:520px;

}

.about-left h2{

font-size:42px;

}

.about-right h2{

font-size:34px;

}

.stats{

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

}

}

/*============================*/

@media(max-width:768px){

.container{

width:94%;

}

.hero-left h1{

font-size:38px;

}

.hero-buttons{

flex-direction:column;

align-items:center;

}

.hero-icons{

grid-template-columns:1fr;

}

.hero-right{

flex-direction:column;

}

.hero-right .bike{

width:100%;

}

.hero-right .battery{

width:220px;

margin-top:20px;

}

.feature-grid{

grid-template-columns:1fr;

padding:25px;

}

.feature{

text-align:left;

}

.about{

padding:80px 0;

}

.about-left img{

height:450px;

}

.about-left .content{

left:25px;

width:85%;

}

.about-left h2{

font-size:32px;

}

.about-left p{

font-size:15px;

}

.stats{

grid-template-columns:1fr;

}

.footer-grid{

grid-template-columns:1fr;

text-align:center;

}

.footer-grid h3::after{

left:50%;

transform:translateX(-50%);

}

}

/*============================*/

@media(max-width:480px){

.hero-left h1{

font-size:30px;

line-height:1.2;

}

.hero-left p{

font-size:17px;

}

.btn{

width:100%;

justify-content:center;

}

.call-btn{

padding:12px 18px;

font-size:14px;

}

.logo img{

height:55px;

}

.footer-logo{

margin:auto;

}

}

/*==========================================
            FADE ANIMATION
==========================================*/

@keyframes fadeUp{

0%{

opacity:0;

transform:translateY(40px);

}

100%{

opacity:1;

transform:translateY(0);

}

}

.hero-left,
.hero-right,
.feature,
.about-left,
.about-right,
.stats div{

animation:fadeUp .8s ease;

}
/*=====================================================
            RESPONSIVE CSS
======================================================*/

/* ---------- Large Tablets ---------- */
@media (max-width:1200px){

.container{
    width:95%;
}

.hero{
    padding:70px 0 100px;
}

.hero-grid{
    grid-template-columns:1fr;
    text-align:center;
}

.hero-left{
    max-width:800px;
    margin:auto;
}

.hero-icons{
    margin-left:0;
    justify-content:center;
}

.hero-buttons{
    justify-content:center;
}

.about-grid{
    grid-template-columns:1fr;
    gap:50px;
}

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

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

}


/* ---------- Tablet ---------- */

@media (max-width:992px){

.header{
    position:relative;
}

.header .container{
    flex-direction:column;
    height:auto;
    padding:20px 0;
}

.nav-menu{
    flex-wrap:wrap;
    justify-content:center;
    gap:18px;
    margin:20px 0;
}

.call-btn{
    margin-top:15px;
}

.hero{
    margin-top:0;
    text-align:center;
}

.hero-left h1{
    font-size:52px;
}

.hero-left p{
    font-size:22px;
}

.hero-icons{
    grid-template-columns:repeat(2,1fr);
    gap:30px;
}

.hero-buttons{
    justify-content:center;
}

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

.about-left img{
    height:500px;
}

.about-left .content{
    left:40px;
    width:80%;
}

.about-left h2{
    font-size:40px;
}

.about-right h2{
    font-size:36px;
}

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

}
/*=========================
    Mobile Menu
=========================*/

.menu-toggle{

    display:none;
    font-size:34px;
    cursor:pointer;
    color:#188D3F;

}

/* Mobile */

@media(max-width:768px){

.header .container{

    flex-direction:row;
    justify-content:space-between;
    align-items:center;
    height:80px;

}

.call-btn{

    display:none;

}

.menu-toggle{

    display:block;

}

nav{

    position:absolute;
    top:80px;
    left:0;
    width:100%;
    background:#fff;

    display:none;

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

}

nav.active{

    display:block;

}

.nav-menu{

    flex-direction:column;
    gap:0;
    padding:15px 0;

}

.nav-menu li{

    width:100%;

}

.nav-menu li a{

    display:block;
    padding:15px 25px;
    border-bottom:1px solid #eee;

}

}

/* ---------- Mobile ---------- */

@media (max-width:768px){

.container{
    width:94%;
}

/* Hero */

.hero{
    background-position:center center;
    background-size:cover;
}
.hero-left{
    text-align:center;
}

.hero-left h1{
    font-size:36px;
    line-height:1.2;
}

.hero-left p{
    font-size:18px;
    margin:20px 0;
}

.hero-icons{
    grid-template-columns:repeat(2,1fr);
    gap:20px;
    margin-left:0;
}

.hero-icons .icon{
    width:65px;
    height:65px;
    font-size:28px;
}

.hero-icons h4{
    font-size:16px;
}

.hero-icons span{
    font-size:13px;
}

.hero-buttons{
    flex-direction:column;
    align-items:center;
    gap:15px;
}

.btn{
    width:260px;
    justify-content:center;
}

/* Floating Cards */

.floating-card{
    margin-top:0;
    padding:40px 0;
}

.feature-grid{
    grid-template-columns:1fr;
    padding:25px;
}

.feature{
    gap:15px;
}

.circle{
    width:60px;
    height:60px;
    font-size:26px;
}

/* About */

.about{
    padding:60px 0;
}

.about-left img{
    height:350px;
}

.about-left .content{
    left:25px;
    width:85%;
}

.about-left h2{
    font-size:30px;
}

.about-left p{
    font-size:15px;
}

.about-right{
    padding:0;
}

.about-right h2{
    font-size:30px;
    text-align:center;
}

.stats{
    grid-template-columns:repeat(2,1fr);
    gap:15px;
}

.stats div{
    padding:25px;
}

.stats h3{
    font-size:30px;
}

.stats i{
    font-size:34px;
}

/* Footer */

.footer-grid{
    grid-template-columns:1fr;
    text-align:center;
}

.footer-grid h3::after{
    left:50%;
    transform:translateX(-50%);
}

.footer-logo{
    margin:auto;
}

}


/* ---------- Small Mobile ---------- */

@media (max-width:576px){

.logo img{
    height:55px;
}

.nav-menu{
    gap:12px;
}

.nav-menu a{
    font-size:14px;
}

.call-btn{
    width:100%;
    justify-content:center;
}

.hero-left h1{
    font-size:30px;
}

.hero-left p{
    font-size:16px;
}

.hero-icons{
    grid-template-columns:1fr 1fr;
}

.hero-icons .icon{
    width:55px;
    height:55px;
    font-size:24px;
}

.hero-icons h4{
    font-size:15px;
}

.hero-icons span{
    font-size:12px;
}

.btn{
    width:100%;
}

.feature h3{
    font-size:16px;
}

.feature p{
    font-size:13px;
}

.about-left img{
    height:300px;
}

.about-left h2{
    font-size:26px;
}

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

.stats h3{
    font-size:28px;
}

footer{
    padding-top:50px;
}

}


/* ---------- Extra Small Phones ---------- */

@media (max-width:400px){

.hero-left h1{
    font-size:26px;
}

.hero-left p{
    font-size:15px;
}

.hero-icons{
    gap:15px;
}

.hero-icons .icon{
    width:50px;
    height:50px;
    font-size:20px;
}

.hero-icons h4{
    font-size:14px;
}

.hero-icons span{
    font-size:11px;
}

.about-left .content{
    left:18px;
}

.about-left h2{
    font-size:22px;
}

.about-left p{
    font-size:14px;
}

.stats div{
    padding:18px;
}

}