:root {
  /* --primary-color: #71ca00; */
  --primary-color: #14a94c;
  --primary-color-rgb: 113, 202, 0;
}


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

.advanced-section{
    padding:100px 0;
    background:#f8fbff;
    position:relative;
    overflow:hidden;
}

/* SECTION TITLE */

.section-badge{
    display:inline-block;
    padding:10px 22px;
    background:#e9fff2;
    color:#16c76b;
    border-radius:50px;
    font-size:14px;
    font-weight:600;
    margin-bottom:20px;
}

.section-title{
    font-size:58px;
    font-weight:800;
    line-height:1.2;
    margin-bottom:20px;
    color:#111;
}

.section-title span{
    color:#16c76b;
}

.section-desc{
    font-size:17px;
    line-height:1.9;
    color:#666;
    max-width:650px;
}

/* BROCHURE BUTTON */

.brochure-btn{
    display:inline-flex;
    align-items:center;
    gap:10px;
    padding:16px 34px;
    border-radius:60px;
    background:#16c76b;
    color:#fff;
    text-decoration:none;
    font-weight:700;
    transition:.4s;
    box-shadow:0 15px 40px rgba(22,199,107,.2);
}

.brochure-btn:hover{
    transform:translateY(-5px);
    color:#fff;
}

/* FEATURE CARDS */

.feature-card{
    position:relative;
    background:#fff;
    border-radius:28px;
    padding:35px 30px;
    margin-bottom:30px;
    box-shadow:0 20px 45px rgba(0,0,0,.06);
    transition:.4s;
    overflow:hidden;
}

.feature-card:hover{
    transform:translateY(-8px);
}

/* TOP BORDER EFFECT */

.feature-card::before{
    content:'';
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:5px;
    background:#16c76b;
}

/* NUMBER */

.feature-number{
    position:absolute;
    top:20px;
    right:25px;
    font-size:48px;
    font-weight:800;
    color:rgba(0,0,0,.06);
}

/* ICON */

.feature-icon{
    width:75px;
    height:75px;
    border-radius:22px;
    background:#16c76b;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:34px;
    margin-bottom:25px;
    color:#fff;
    box-shadow:0 10px 30px rgba(22,199,107,.2);
}

.dark-icon{
    background:#111;
}

/* CONTENT */

.feature-content h4{
    font-size:28px;
    font-weight:700;
    margin-bottom:12px;
    color:#111;
}

.feature-content p{
    font-size:15px;
    line-height:1.9;
    color:#666;
    margin:0;
}

/* CENTER IMAGE */

.bike-image-wrapper{
    position:relative;
    display:inline-block;
}

.glow-circle{
    position:absolute;
    width:350px;
    height:350px;
    background:#16c76b;
    border-radius:50%;
    filter:blur(100px);
    opacity:.12;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
}

.bike-image{
    position:relative;
    z-index:2;
    max-width:115%;
    animation:floatBike 4s ease-in-out infinite;
}

/* FLOAT ANIMATION */

@keyframes floatBike{

    0%{
        transform:translateY(0px);
    }

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

    100%{
        transform:translateY(0px);
    }

}

/* RESPONSIVE */

@media(max-width:991px){

    .advanced-section{
        padding:70px 0;
    }

    .section-title{
        font-size:42px;
    }

    .section-desc{
        margin-bottom:30px;
    }

    .bike-image{
        max-width:80%;
    }

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

    .feature-icon{
        margin:auto auto 25px;
    }

    .feature-number{
        right:20px;
        top:15px;
    }

}

@media(max-width:600px){

    .section-title{
        font-size:34px;
    }

    .feature-content h4{
        font-size:24px;
    }

    .feature-card{
        padding:30px 25px;
    }

}