/*=========================================
        HOW IT WORKS
=========================================*/

.ev-process{
    padding:100px 0;
    background:linear-gradient(180deg,#ffffff 0%,#f7faf8 100%);
    overflow:hidden;
}

.section-heading{
    text-align:center;
    max-width:750px;
    margin:0 auto 70px;
}

.section-heading span{
    display:inline-block;
    padding:8px 22px;
    background:#e8fff2;
    color:#12a84b;
    border-radius:30px;
    font-size:14px;
    font-weight:600;
    letter-spacing:1px;
    margin-bottom:20px;
}

.section-heading h2{
    font-size:48px;
    font-weight:700;
    line-height:1.25;
    color:#222;
    margin-bottom:20px;
}

.section-heading p{
    font-size:17px;
    color:#666;
    line-height:1.8;
}

.process-wrapper{

    display:grid;
    grid-template-columns:48% 52%;
    gap:70px;
    align-items:center;

}


/*======================
Image
======================*/

.process-image{

    position:relative;

}

.process-image::before{

    content:"";
    position:absolute;
    width:380px;
    height:380px;
    background:#17b95d;
    border-radius:50%;
    left:-70px;
    top:-40px;
    opacity:.08;

}

.process-image::after{

    content:"";
    position:absolute;
    width:260px;
    height:260px;
    background:#17b95d;
    border-radius:50%;
    right:-50px;
    bottom:-50px;
    opacity:.06;

}

.process-image img{

    width:100%;
    display:block;
    border-radius:30px;
    position:relative;
    z-index:2;
    box-shadow:0 30px 60px rgba(0,0,0,.15);
    transition:.5s;

}

.process-image img:hover{

    transform:scale(1.03);

}


/*======================
Timeline
======================*/

.process-content{

    position:relative;
    padding-left:45px;

}

.process-content::before{

    content:"";
    position:absolute;
    left:20px;
    top:10px;
    width:3px;
    height:92%;
    background:#d8e8dd;

}


/*======================
Cards
======================*/

.process-item{

    position:relative;
    display:flex;
    align-items:flex-start;
    gap:25px;

    margin-bottom:35px;

    background:#fff;
    padding:28px;

    border-radius:22px;

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

    transition:.35s;

}

.process-item:last-child{

    margin-bottom:0;

}

.process-item:hover{

    transform:translateY(-8px);

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

}


/*======================
Number Circle
======================*/

.number{

    width:58px;
    height:58px;

    min-width:58px;

    border-radius:50%;

    background:linear-gradient(135deg,#18b95d,#0b8d43);

    color:#fff;

    font-size:20px;

    font-weight:700;

    display:flex;

    align-items:center;

    justify-content:center;

    position:relative;

    z-index:2;

}

.number::before{

    content:"";

    position:absolute;

    width:18px;

    height:18px;

    border-radius:50%;

    background:#fff;

    border:5px solid #18b95d;

    left:-36px;

}


/*======================
Content
======================*/

.info h3{

    font-size:24px;

    margin-bottom:10px;

    color:#222;

}

.info p{

    color:#666;

    line-height:1.8;

    font-size:15px;

}


/*======================
Hover
======================*/

.process-item:hover .number{

    transform:rotate(360deg);

    transition:.6s;

}

.process-item:hover h3{

    color:#18b95d;

}


/*======================
Responsive
======================*/

@media(max-width:991px){

.process-wrapper{

grid-template-columns:1fr;

gap:50px;

}

.process-content{

padding-left:25px;

}

.section-heading h2{

font-size:38px;

}

}


@media(max-width:768px){

.ev-process{

padding:70px 0;

}

.section-heading{

margin-bottom:45px;

}

.section-heading h2{

font-size:30px;

}

.process-content::before{

left:16px;

}

.number::before{

left:-31px;

}

.process-item{

padding:22px;

gap:18px;

}

.info h3{

font-size:20px;

}

}
/*=========================================
        PERFECT FOR
=========================================*/

.perfect-users{

    padding:100px 0;

    background:linear-gradient(180deg,#f6fbf8 0%,#ffffff 100%);

    position:relative;

    overflow:hidden;

}

/* Decorative Background */

.perfect-users::before{

    content:"";

    position:absolute;

    width:350px;

    height:350px;

    background:#18b95d;

    border-radius:50%;

    opacity:.05;

    top:-120px;

    left:-120px;

}

.perfect-users::after{

    content:"";

    position:absolute;

    width:250px;

    height:250px;

    background:#18b95d;

    border-radius:50%;

    opacity:.05;

    right:-80px;

    bottom:-80px;

}

/* Grid */

.users-grid{

    display:grid;

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

    gap:30px;

    margin-top:60px;

    position:relative;

    z-index:2;

}

/* Card */

.user-card{

    background:#fff;

    border-radius:24px;

    padding:40px 25px;

    text-align:center;

    transition:.4s;

    border:1px solid #eef2ef;

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

    position:relative;

    overflow:hidden;

}

/* Green Hover Overlay */

.user-card::before{

    content:"";

    position:absolute;

    width:100%;

    height:0;

    left:0;

    bottom:0;

    background:linear-gradient(135deg,#17b95d,#0a9443);

    transition:.45s;

    z-index:0;

}

.user-card:hover::before{

    height:100%;

}

/* Icon */

.user-card i{

    width:90px;

    height:90px;

    display:flex;

    align-items:center;

    justify-content:center;

    margin:0 auto 25px;

    border-radius:50%;

    background:#e9fff1;

    color:#17b95d;

    font-size:38px;

    transition:.4s;

    position:relative;

    z-index:2;

}

/* Heading */

.user-card h4{

    font-size:22px;

    color:#222;

    font-weight:600;

    position:relative;

    z-index:2;

    transition:.4s;

}

/* Hover Effects */

.user-card:hover{

    transform:translateY(-12px);

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

}

.user-card:hover i{

    background:#fff;

    color:#18b95d;

    transform:rotateY(180deg) scale(1.08);

}

.user-card:hover h4{

    color:#fff;

}

/* Small Glow */

.user-card:hover{

    border-color:#18b95d;

}

/* Responsive */

@media(max-width:991px){

.users-grid{

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

gap:25px;

}

}

@media(max-width:768px){

.perfect-users{

padding:70px 0;

}

.users-grid{

grid-template-columns:1fr;

gap:20px;

}

.user-card{

padding:35px 20px;

}

.user-card i{

width:80px;

height:80px;

font-size:34px;

}

.user-card h4{

font-size:20px;

}

}
/*=========================================
        WHY BATTERY SWAPPING
=========================================*/

.swap-section{

    padding:100px 0;

    background:#ffffff;

    position:relative;

    overflow:hidden;

}

.swap-section::before{

    content:"";

    position:absolute;

    width:450px;

    height:450px;

    border-radius:50%;

    background:#19b85d;

    opacity:.05;

    top:-180px;

    right:-150px;

}

.swap-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:70px;

    align-items:center;

}

.swap-content span{

    display:inline-block;

    padding:8px 20px;

    border-radius:30px;

    background:#e8fff2;

    color:#17b95d;

    font-weight:600;

    font-size:14px;

    margin-bottom:18px;

}

.swap-content h2{

    font-size:46px;

    color:#222;

    margin-bottom:20px;

    line-height:1.2;

}

.swap-content p{

    color:#666;

    line-height:1.9;

    margin-bottom:18px;

    font-size:16px;

}

/*============================
Image
============================*/

.swap-image{

    position:relative;

}

.swap-image img{

    width:100%;

    border-radius:30px;

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

    transition:.5s;

}

.swap-image:hover img{

    transform:scale(1.04);

}

/*============================
Stats
============================*/

.swap-stats{

    display:flex;

    gap:25px;

    margin-top:40px;

}

.swap-stats div{

    flex:1;

    text-align:center;

    padding:28px 20px;

    border-radius:20px;

    background:#fff;

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

    transition:.35s;

}

.swap-stats div:hover{

    transform:translateY(-8px);

    background:linear-gradient(135deg,#18b95d,#0b8e42);

}

.swap-stats h3{

    font-size:38px;

    color:#18b95d;

    margin-bottom:8px;

    transition:.3s;

}

.swap-stats p{

    margin:0;

    color:#555;

    font-weight:500;

    transition:.3s;

}

.swap-stats div:hover h3,

.swap-stats div:hover p{

    color:#fff;

}


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

.ride-banner{

    padding:90px 20px;

    background:linear-gradient(135deg,#12a84b,#1ecb6d);

    text-align:center;

    color:#fff;

    border-radius:40px;

    margin:80px auto;

    position:relative;

    overflow:hidden;

}

.ride-banner::before{

    content:"";

    position:absolute;

    width:350px;

    height:350px;

    border-radius:50%;

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

    left:-120px;

    top:-120px;

}

.ride-banner::after{

    content:"";

    position:absolute;

    width:250px;

    height:250px;

    border-radius:50%;

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

    right:-80px;

    bottom:-80px;

}

.ride-banner .container{

    position:relative;

    z-index:2;

}

.ride-banner h2{

    font-size:52px;

    margin-bottom:20px;

    font-weight:700;

}

.ride-banner p{

    max-width:700px;

    margin:0 auto 35px;

    font-size:18px;

    line-height:1.8;

}

.ride-banner .btn{

    padding:16px 40px;

    font-size:18px;

    border-radius:50px;

    display:inline-flex;

    align-items:center;

    gap:10px;

    background:#fff;

    color:#16a34a;

    font-weight:700;

    text-decoration:none;

    transition:.35s;

}

.ride-banner .btn:hover{

    transform:translateY(-5px);

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

}

.tagline{

    margin-top:35px;

    font-size:26px;

    font-weight:600;

    letter-spacing:1px;

    opacity:.95;

}


/*=========================================
        Responsive
=========================================*/

@media(max-width:991px){

.swap-grid{

grid-template-columns:1fr;

gap:50px;

}

.swap-content h2{

font-size:38px;

}

.swap-stats{

flex-wrap:wrap;

}

.swap-stats div{

flex:0 0 calc(50% - 13px);

}

.ride-banner h2{

font-size:40px;

}

}

@media(max-width:768px){

.swap-section{

padding:70px 0;

}

.swap-content h2{

font-size:30px;

}

.swap-stats{

flex-direction:column;

}

.swap-stats div{

flex:1;

}

.ride-banner{

padding:60px 25px;

border-radius:25px;

margin:60px 15px;

}

.ride-banner h2{

font-size:30px;

}

.ride-banner p{

font-size:16px;

}

.tagline{

font-size:20px;

}

.ride-banner .btn{

padding:14px 28px;

font-size:16px;

}

}
/*====================================
    POWER YOUR RIDE
====================================*/

.power-ride{

    padding:100px 0;

    background:#f8fbf9;

}

.power-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:60px;

    align-items:center;

    margin-bottom:70px;

}

.power-content span{

    display:inline-block;

    padding:8px 20px;

    background:#e7fff0;

    color:#18b95d;

    border-radius:30px;

    font-size:14px;

    font-weight:600;

    margin-bottom:20px;

}

.power-content h2{

    font-size:46px;

    color:#222;

    line-height:1.2;

    margin-bottom:20px;

}

.power-content .subtitle{

    font-size:24px;

    color:#18b95d;

    font-weight:700;

    margin-bottom:15px;

}

.power-content p{

    color:#666;

    line-height:1.9;

    margin-bottom:18px;

}

.power-image img{

    width:100%;

    border-radius:25px;

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

    transition:.4s;

}

.power-image img:hover{

    transform:scale(1.03);

}

/* Feature Cards */

.power-features{

    display:grid;

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

    gap:25px;

}

.power-card{

    background:#fff;

    border-radius:20px;

    padding:35px 20px;

    text-align:center;

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

    transition:.35s;

}

.power-card:hover{

    background:#18b95d;

    transform:translateY(-8px);

}

.power-card i{

    font-size:42px;

    color:#18b95d;

    margin-bottom:18px;

    transition:.35s;

}

.power-card h4{

    font-size:20px;

    margin-bottom:8px;

    color:#222;

    transition:.35s;

}

.power-card p{

    color:#666;

    margin:0;

    transition:.35s;

}

.power-card:hover i,

.power-card:hover h4,

.power-card:hover p{

    color:#fff;

}

/* Responsive */

@media(max-width:991px){

.power-grid{

grid-template-columns:1fr;

}

.power-features{

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

}

.power-content h2{

font-size:36px;

}

}

@media(max-width:768px){

.power-ride{

padding:70px 0;

}

.power-features{

grid-template-columns:1fr;

}

.power-content h2{

font-size:30px;

}

}