@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
    font-family: "Plus Jakarta Sans", sans-serif;
    transition: all 0.3s ease-in-out;
}

body{
    overflow-x: hidden;
}

/* NAVIGATION---------------START--------------HERE------------------- */

nav {
    transition: all 0.5s ease-in-out;
    border-bottom: 1px solid #d1d1d1;
}

nav .nav-bar{
    display: flex;
    align-items: center;
    justify-content: center;
    list-style: none;
    width: 65%;
}

nav .nav-active-item{
    margin: 0 15px;
    padding: 3px 0;
    position: relative;
}

nav .nav-active-item::before{
    content: '';
    background: #BFF747;
    width: 100%;
    height: 2px;
    position: absolute;
    bottom: 0;
    right: 0;
    transform: scale(0);
    transform-origin: right;
    transition: all 0.5s ease-in-out;
}

nav .nav-active-item.active::before{
    content: '';
    background: #BFF747;
    width: 100%;
    height: 2px;
    position: absolute;
    bottom: 0;
    right: 0;
    transform: scale(1);
}

nav .nav-active-item:hover::before{
    transform: scale(1);
}

nav .nav-active-link{
    color: #000;
    font-weight: 600;
    text-decoration: none;
}

nav .nav-active-item:hover .nav-active-link{
    color: #BFF747;
}

nav .nav-active-item.active .nav-active-link{
    color: #BFF747;
}

nav .icn{
    color: #000000;
    width: 40px;
    aspect-ratio: 1/1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100px;
    text-decoration: none;
    background: #BFF747;
    font-size: 20px;
    margin: 0 5px;
    cursor: pointer;
}

nav .icn:hover{
    background: #BFF747;
    color: #FFF;
}

nav .nav-show-btn,.nav-hide-btn{
    display: none;
}

@media only screen and (max-width: 992px){
    nav .nav-bar {
        display: block;
        width: 300px;
        height: 100%;
        position: fixed;
        top: 0;
        left: -100%;
        background: #FFF;
        box-shadow: 0 0 10px 0;
        z-index: 2;
        transition: all 0.3s ease-in-out;
    }
    nav .nav-active-item{
        width: max-content;
        margin: 25px;
    }
    nav .nav-hide{
        width: 50px;
        aspect-ratio: 1/1;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #BFF747;
        color: #000;
        text-decoration: none;
        border-radius: 100px;
        font-size: 20px;
        margin: 20px 20px 40px auto;
    }
    nav .nav-info{
        display: none !important;
    }
    nav .nav-show-btn,.nav-hide-btn{
        display: block;
    }
}

/* NAVIGATION---------------ENDS--------------HERE------------------- */

/* BANNER---------------START--------------HERE------------------- */

.banner {
    width: 100%;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.banner h1{
    font-size: 50px;
    font-weight: 500;
}

.banner h1 span{
    color: #BFF747;
    font-weight: 900;
}

.banner p{
    color: #7a7a7a;
}

.bttn {
    width: 150px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    border: 1px solid #000;
    border-radius: 100px;
    color: #000;
    position: relative;
    z-index: 1;
    text-decoration: none;
    overflow: hidden;
}
.bttn:before {
    content: '';
    background: #BFF747;
    position: absolute;
    top: 0;
    left: 50%;
    right: 50%;
    bottom: 0;
    opacity: 0;
    z-index: -1;
    transition: 0.5s all ease-in-out;
}
.bttn:hover, .bttn:focus {
    color: #FFF;
    border-color: #BFF747;
}
.bttn:hover:before, .bttn:focus:before {
    left: 0;
    right: 0;
    opacity: 1;
    transition: 0.5s all ease-in-out;
}

.banner .b-icns{
    background: #BFF747;
    width: 80px;
    aspect-ratio: 1/1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100px;
    font-size: 30px;
    position: absolute;
    animation: updown 4s linear infinite;
}
@keyframes updown {
    0%,100%{
        transform: translateY(-10px);
    }50%{
        transform: translateY(10px);
    }
}

.banner .client {
    background: #bff74783;
    width: 250px;
    padding: 20px;
    border-radius: 20px;
    position: absolute;
    bottom: 0;
    left: 0;
    animation: rightleft 4s linear infinite;
}
@keyframes rightleft {
    0%,100%{
        transform: translateX(-10px);
    }5%{
        transform: translateX(10px);
    }
}

.banner small{
    background: #BFF747;
    width: 50px;
    aspect-ratio: 1/1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100px;
}

.bd-shape{
    position: absolute;
    z-index: -1;
}

@media only screen and (max-width: 1200px){
    .banner h1{
        font-size: 40px;
    }
}
@media only screen and (max-width: 992px){
    .banner img{
        padding: 0 !important;
    }
    .banner .banner-content {
        padding: 0 !important;
    }
    .banner h1{
        font-size: 30px;
    }
}
@media only screen and (max-width: 767px){

    .banner .banner-content {
        padding: 20px 0 !important;
        text-align: center;
    }
    .banner h1{
        font-size: 30px;
    }
    .bd-shape{
        width: 250px !important;
    }
    .banner .bttn{
        margin: 0 auto;
    }
}

/* BANNER---------------ENDS--------------HERE------------------- */

/* BRAND---------------START--------------HERE------------------- */

.brand {
    background: #BFF747;
    padding: 20px 0;
    margin: 60px 0 0 0;
}

.brand .swiper-wrapper{
    transition-timing-function: linear !important;
}

/* BRAND---------------ENDS--------------HERE------------------- */

/* ABOUT---------------START--------------HERE------------------- */

.about h1{
    font-size: 45px;
}

.about h1 span{
    color: #BFF747;
    font-weight: 700;
} 

.abt-shape{
    position: absolute;
    z-index: -1;
    animation: move 5s linear infinite;
}
@keyframes move {
    0%{
        transform: rotate(0deg) translateY(-80px);
    }50%{
        transform: rotate(180deg) translateY(80px);
    }100%{
        transform: rotate(360deg) translateY(-80px);
    }
}

@media only screen and (max-width: 1200px){
    .about .about-content{
        padding: 0 !important;
    }  
}
@media only screen and (max-width: 992px){
    .about .about-content {
        margin: 0 !important;
    }
    .about h1 {
        font-size: 30px;
    }
    .about p{
        font-size: 14px;
    }
}
@media only screen and (max-width: 767px){
    .about .about-content {
        margin: 20px 0 !important;
        text-align: center;
    }
    .about .bttn{
        margin: 0 auto;
    }
}


/* ABOUT---------------ENDS--------------HERE------------------- */

/* SERVICES---------------START--------------HERE------------------- */

.service h1 span{
    color: #BFF747;
    font-weight: 900;
}

.service .s-btn{
    color: #BFF747;
    font-weight: 600;
    text-decoration: none;
}

.service .ser-info{
    border: 1px solid #c7c7c7;
    border-radius: 20px;
    padding: 35px 15px;
    margin-bottom: 25px;
    background: #FFF;
}

@media only screen and (max-width: 1200px){
    .service h4{
        font-size: 20px;
    }
}
@media only screen and (max-width: 992px){
    .service img{
        height: 250px !important;
    }
    .service .ser-content{
        margin: 20px 0;
    }
}
@media only screen and (max-width: 767px){
    .service .service-title{
        flex-direction: column;
        text-align: center;
    }
    .service h1{
        font-size: 30px;
    }
}

/* SERVICES---------------ENDS--------------HERE------------------- */

/* WHAT---------------START--------------HERE------------------- */

.what h1{
    font-size: 40px;
}

.what h1 span{
    color:#BFF747;
    font-weight: 900;
}

.what .what-info{
    background: linear-gradient(0deg, rgba(191,247,71,1) 10%, rgba(255,255,255,0) 100%);
    padding: 50px 20px;
    border-radius: 40px;
    border: 1px solid #BFF747;
}

.what small{
    width: 80px;
    aspect-ratio: 1/1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #BFF747;
    border-radius: 100px;
    font-size: 30px;
    margin: 0 auto;
}

.what p{
    color:#7a7a7a;
}

@media only screen and (max-width: 1200px){
    .what h4{
        font-size: 20px;
    }
    .what p {
        font-size: 14px;
    }
    .what h1 {
        font-size: 35px;
    }
}
@media only screen and (max-width: 992px){
    .what .what-content {
        text-align: center;
        margin: 20px 0 !important;
        padding: 0 !important;
    }
    .what .bttn{
        margin: 0 auto;
    }
}
@media only screen and (max-width: 767px){
    .what .what-info {
        margin: 20px 0 !important;
    }
    .what .bttn{
        margin: 0 auto;
    }
}

/* WHAT---------------ENDS--------------HERE------------------- */

/* WHY---------------START--------------HERE------------------- */

.why h1 span{
    color: #BFF747;
    font-weight: 900 ;
}

.why p{
    color: #7a7a7a;
}

.why h4{
    color: #BFF747;
}

.why .why-title{
    border-bottom: 1px solid #CACACA;
}

.why .why-content{
    border-bottom: 1px solid #cacaca;
}

.why .why-img-1{
    animation: move 6s linear infinite;
}
@keyframes move {
    0%{
        transform: rotate(0deg);
    }50%{
        transform: rotate(180deg);  
    }100%{
        transform: rotate(360deg); 
    }
}

.why .why-img-2{
    position: absolute;
    top: 0;
    left: 50%;
    top: 50%;
    width: 350px;
    transform: translate(-50% , -50%);
}

@media only screen and (max-width: 1200px){
    .why h4 {
        font-size: 20px;
    }
    .why .why-img-2{
        width: 300px;
    }
}
@media only screen and (max-width: 992px){
    .why h4 {
        font-size: 15px;
    }
    .why p {
        font-size: 13px;
    }
    .why .why-img-2 {
        width: 250px;
    }
}
@media only screen and (max-width: 767px){
    .why img.why-img-1 {
        display: none;
    }
    .why .why-img-2 {
        display: none;
    } 
    .why .why-content{
        text-align: center;
        margin: 0 !important;
        border: none;
    }
    .why h4 {
        font-size: 20px;
    }
    .why p {
        font-size: 14px;
    }
    .abt-shape{
        width: 150px;
    }
    .why .why-title {
        flex-direction: column;
        text-align: center;
    }
    .why .bttn{
        margin-top: 20px;
    }
    .why h1{
        font-size: 35px;
    }
}

/* WHY---------------ENDS--------------HERE------------------- */

/* KEY---------------START--------------HERE------------------- */

.key h1 span{
    color: #BFF747;
    font-weight: 900; 
}

.key h2{
    color: #BFF747;
    font-size: 60px;
    font-weight: 700;
}

.key sub{
    color: #BFF747;
    font-size: 40px;
    font-weight: 700;
}

.key p{
    color: #7a7a7a;
}

.key .key-info{
    padding: 20px;
    border-bottom: 1px solid #CACACA;
    border-right: 1px solid #CACACA;
}

@media only screen and (max-width: 992px){
    .key h1{
        width: 100% !important;
    }
    .key p {
        font-size: 14px;
    }
}
@media only screen and (max-width: 767px){
    .key img{
        height: 250px !important;
    }
    .key .key-content{
        margin: 20px 0 !important;
        text-align: center;
    }
    .key .key-info {
        padding: 10px;
    }
    .key h2 {
        font-size: 50px;
    }
    .key .key-info .d-flex {
        justify-content: center;
    }
}

/* KEY---------------ENDS--------------HERE------------------- */

/* PRICE---------------START--------------HERE------------------- */

.price p{
    color: #7a7a7a;
}

.price h1 span{
    color: #BFF747;
    font-weight: 900;
}

.price .price-info{
    border-bottom: 1px solid #CACACA;
    padding: 30px 0;
}

.price .price-content-2{
    border: 2px solid #CACACA;
    backdrop-filter: blur(10px);
    padding: 30px 20px;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.price h3{
    color: #BFF747;
    font-size: 50px;
    font-weight: 700;
}

.price li{
    color: #7a7a7a;
    font-size: 14px;
}

.price .strip{
    color: #000;
    background: #BFF747;
    text-align: center;
    padding: 6px 0;
    position: absolute;
    transform: rotate(40deg);
    width: 200px;
    top: 20px;
    right: -60px;
    font-weight: 600;
    font-size: 14px;
}

@media only screen and (max-width: 992px){
    .price .price-content {
        text-align: center;
    }
    .price .price-info {
        text-align: left;
    }
}
@media only screen and (max-width: 767px){
    .price .price-content-2 {
        margin: 10px 0;
    }
}

/* PRICE---------------ENDS--------------HERE------------------- */

/* HOW---------------START--------------HERE------------------- */

.how h1 span{
    color: #BFF747;
    font-weight: 900;
}

.how p{
    color: #7a7a7a;
}

.how .how-info{
    border: 2px solid #CACACA;
    padding: 30px 20px;
    border-radius: 20px;
    margin: 20px 0;
}

.how h2{
    color: #BFF747;
    font-size: 60px;
}

@media only screen and (max-width: 992px){
    .how h4{
        font-size: 20px;
    }
    .how p {
        font-size: 14px;
    }
}
@media only screen and (max-width: 767px){
    .how .how-content{
        text-align: center;
        margin: 0 !important;
        padding: 0 !important;
    }
    .how .bttn{
        margin: 0 auto;
    }
    .how .how-info{
        text-align: left;
        padding: 20px 12px;
    }
    .how h4{
        font-size: 18px;
    }
}

/* HOW---------------ENDS--------------HERE------------------- */

/* TESTIMONIAL---------------START--------------HERE------------------- */

.testimonial h1 span{
    color: #BFF747;
    font-weight: 900;
}

.testimonial p{
    color: #7a7a7a;
}

.testimonial .test-content{
    border: 2px solid #CACACA;
    border-radius: 20px;
    padding: 30px 20px;
}

@media only screen and (max-width: 767px){
    .testimonial .test-title {
        flex-direction: column;
        text-align: center;
    }
    .testimonial .bttn {
        margin-top: 20px;
    }
    .testimonial h1{
        font-size: 35px;
    }
}

/* TESTIMONIAL---------------ENDS--------------HERE------------------- */

/* BLOG---------------STRAT--------------HERE------------------- */

.blog .overflow-hidden{
    border-radius: 10px;
}

.blog .blog-content:hover img{
    transform: scale(1.1);
}

.blog h1 span{
    color: #BFF747;
    font-weight: 900;
}

.blog .b-btn{
    color: #BFF747;
    font-weight: 600;
    text-decoration: none;
}

@media only screen and (max-width: 992px){
    .blog .blog-title {
        flex-direction: column;
        text-align: center;
    }
    .blog .bttn{
        margin-top: 20px;
    }
    .blog h1{
        font-size: 35px;
    }
}

/* BLOG---------------ENDS--------------HERE------------------- */

/* FOOTER---------------START--------------HERE------------------- */

.footer {
    border-top: 1px solid #CACACA;
    border-bottom: 1px solid #CACACA;
    padding: 100px 0;
}

.footer h1{
    font-size: 35px;
}

.footer h1 span{
    color: #BFF747;
    font-weight: 900;
}

.footer #name{
    border: 2px solid #CACACA;
    width: 100%;
    height: 45px;
    background: transparent;
    padding: 0 15px;
    border-radius: 100px;
}

.footer #name:focus{
    outline: none;
}

.footer .f-btn{
    width: 60px;
    aspect-ratio: 1/1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #BFF747;
    color: #000;
    text-decoration: none;
    border-radius: 100px;
    font-size: 20px;
    margin-left: 10px;
}

.footer li a{
    color: #7a7a7a;
    text-decoration: none;
    font-weight: 500;
}

.footer li a:hover{
    color: #BFF747;
}

@media only screen and (max-width: 992px){
    .footer .footer-content{
        margin: 20px 0;
    }
}
@media only screen and (max-width: 767px){
    .footer h1{
        font-size: 30px;
    }
}

/* FOOTER---------------ENDS--------------HERE------------------- */

/* BANNER_2---------------START--------------HERE------------------- */

.banner-2{
    width: 100%;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-2 h1{
    font-size: 50px;
}

.banner-2 a{
    color: #BFF747;
    text-decoration: none;
}

/* BANNER_2---------------ENDS--------------HERE------------------- */

/* CONTACTS---------------START--------------HERE------------------- */

.address small{
    background: #BFF747;
    width: 80px;
    aspect-ratio: 1/1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100px;
    font-size: 30px;
    margin: 0 auto;
}

.contact h1 span{
    color: #BFF747;
}

.contact #name{
    padding: 0 10px;
    width: 100%;
    height: 45px;
    padding: 0 10px;
    border-radius: 5px;
    border: 1px solid #CACACA;
    margin-bottom: 20px;
    font-size: 14px;
}

.contact #name:focus{
    outline: none;
}

@media only screen and (max-width: 767px){
    .address .add-content{
        margin: 20px 0;
    }
    .contact .contact-content{
        margin: 20px 0;
        text-align: center;
    }
    .contact .bttn{
        margin: 0 auto;
    } 
}

/* CONTACTS---------------ENDS--------------HERE------------------- */