/*=====================================
    Google Font
======================================*/

:root{

    --primary:#15803d;
    --primary-dark:#0d6a2f;
    --secondary:#edf8ef;

    --heading:#18212c;
    --text:#5d6674;

    --white:#ffffff;

    --border:#e8ecef;

    --shadow:0 12px 40px rgba(0,0,0,.08);

    --radius:22px;

    --transition:.35s ease;

}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{

    font-family:'Outfit',sans-serif;

    color:var(--text);

    background:#f7faf8;

    overflow-x:hidden;

}

a{
    text-decoration:none;
}

img{

    max-width:100%;
    display:block;

}

section{

    position:relative;

}


/*==========================
    Navbar
===========================*/

.navbar{

    background:#fff !important;

    border-bottom:1px solid #ececec;

    z-index:999;

}

.logo{

    width:155px;

}

.navbar-brand h5{

    font-size:18px;
    font-weight:700;
    color:var(--primary);
    line-height:1;

}

.navbar-brand small{

    color:#666;

    letter-spacing:2px;

}

.nav-link{

    color:#232323;

    font-weight:500;

    margin:0 10px;

    position:relative;

}

.nav-link:hover{

    color:var(--primary);

}

.nav-link.active{

    color:var(--primary);

}

.nav-link.active::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-8px;

    width:100%;

    height:2px;

    background:var(--primary);

}

.btn{

    border-radius:12px;

    font-weight:600;

    padding:12px 22px;

}

.btn-success{

    background:var(--primary);

    border:none;

}

.btn-success:hover{

    background:var(--primary-dark);

}

.btn-outline-success{

    border:1px solid var(--primary);

    color:var(--primary);

}

.btn-outline-success:hover{

    background:var(--primary);

}



/*==========================
        Hero
===========================*/

.hero-section{

    padding:90px 0 160px;

    background:url(../img/hero-bg.png) center center;

    background-size:cover;

    position:relative;

}

.hero-section::before{

    content:"";

    position:absolute;

    inset:0;

    background:linear-gradient(90deg,
        rgba(255,255,255,.96) 0%,
        rgba(255,255,255,.82) 34%,
        rgba(255,255,255,.15) 65%,
        rgba(255,255,255,0) 100%);

}


.hero-section .container{

    position:relative;

    z-index:2;

}



.hero-tag{

    display:inline-flex;

    align-items:center;

    gap:10px;

    background:#fff;

    color:var(--primary);

    border-radius:50px;

    padding:10px 20px;

    margin-bottom:24px;

    box-shadow:var(--shadow);

    font-weight:600;

}


.hero-tag::before{

    content:"";

    width:10px;

    height:10px;

    background:var(--primary);

    border-radius:50%;

}



.hero-section h1{

    color:#000;

    font-size:48px;

    font-weight:800;

    line-height:1.15;

    margin-bottom:25px;

}

.hero-section h1 strong{
    color:var(--primary);
}



.hero-section p{

	color: #7f7e7e;
    font-size:18px;

    line-height:1.9;

    max-width:540px;

    margin-bottom:35px;

}



/*==========================
Feature Icons
===========================*/

.hero-features{

    display:flex;

    gap:22px;

    flex-wrap:wrap;

    margin-bottom:40px;

}

.feature-item{

    display:flex;

    align-items:center;

    gap:12px;

}

.feature-item .icon{

    width:62px;

    height:62px;

    border-radius:18px;

    background:#fff;

    display:flex;

    justify-content:center;

    align-items:center;

    box-shadow:var(--shadow);

    color:var(--primary);

    font-size:22px;

    transition:var(--transition);

}

.feature-item:hover .icon{

    transform:translateY(-6px);

}

.feature-item h6{

    margin:0;

    font-size:16px;

    color:#1d1d1d;

    font-weight:600;

}



/*==========================
CTA
===========================*/

.hero-btn{

    background:var(--primary);

    color:#fff;

    border-radius:60px;

    padding:18px 34px;

    display:inline-flex;

    align-items:center;

    font-weight:600;

    box-shadow:0 10px 30px rgba(15,120,40,.25);

}

.hero-btn:hover{

    background:var(--primary-dark);

    color:#fff;

    transform:translateY(-3px);

}



/*==========================
Hero Image
===========================*/

.hero-image{

    position:relative;

}

.hero-image img{

    width:100%;

}



/*==========================
Floating Stats
===========================*/

.stats-box{

    background:#fff;

    border-radius:28px;

    box-shadow:var(--shadow);

    margin-top:-80px;

    position:relative;

    z-index:10;

    padding:45px 30px;

}

.stat{

    padding:15px;

}

.stat i{

    width:72px;

    height:72px;

    background:#eefaf2;

    color:var(--primary);

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    margin:auto;

    font-size:28px;

    margin-bottom:15px;

}

.stat h3{

    color:#121212;

    font-weight:800;

    margin-bottom:8px;

}

.stat p{

    margin:0;

    color:#777;

}



/*==========================
Hover
===========================*/

.stat,
.feature-item,
.btn,
.nav-link{

    transition:var(--transition);

}

.stat:hover{

    transform:translateY(-8px);

}


.py-100{
    padding:100px 0;
}

.about-form-section{
    background:#fff;
}

/*=========================
    Left Content
==========================*/

.section-subtitle{

    display:inline-block;

    font-size:14px;

    font-weight:700;

    letter-spacing:1px;

    color:var(--primary);

    margin-bottom:18px;

    text-transform:uppercase;

}

.section-title{

    font-size:48px;

    font-weight:700;

    line-height:1.2;

    color:var(--heading);

    margin-bottom:25px;

}

.section-title span{

    color:var(--primary);

}

.section-text{

    color:var(--text);

    line-height:1.9;

    font-size:17px;

    margin-bottom:35px;

}

/*=========================
      Bullet List
==========================*/

.about-list{

    list-style:none;

    margin:0 0 40px;

    padding:0;

}

.about-list li{

    display:flex;

    align-items:center;

    margin-bottom:18px;

    color:#444;

    font-weight:500;

}

.about-list i{

    width:26px;

    height:26px;

    border-radius:50%;

    background:#eaf8ee;

    color:var(--primary);

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:14px;

    margin-right:15px;

}

/*=========================
      Button
==========================*/

.about-btn{

    background:var(--primary);

    color:#fff;

    border-radius:60px;

    padding:15px 28px;

    display:inline-flex;

    align-items:center;

    gap:18px;

    font-weight:600;

    transition:.3s;

}

.about-btn span{

    width:38px;

    height:38px;

    background:#fff;

    color:var(--primary);

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

}

.about-btn:hover{

    background:var(--primary-dark);

    color:#fff;

    transform:translateY(-4px);

}

/*=========================
      Form Card
==========================*/

.dealer-form{

    background:#fff;

    border-radius:28px;

    padding:50px;

    box-shadow:var(--shadow);

    border:1px solid #eef1f4;

}

.dealer-form h3{

    text-align:center;

    font-size:34px;

    margin-bottom:45px;

    font-weight:700;

    color:#202020;

}

/*=========================
      Labels
==========================*/

.dealer-form label{

    font-size:14px;

    color:#555;

    font-weight:600;

    margin-bottom:10px;

    display:block;

}

/*=========================
      Inputs
==========================*/

.form-control,
.form-select{

    border:none;

    border-bottom:2px solid #dfe5e9;

    border-radius:0;

    background:transparent;

    box-shadow:none;

    padding:12px 0;

    font-size:15px;

    transition:.3s;

}

.form-select{
    border:none;
    border-bottom:2px solid #dfe5e9;
    border-radius:0;
    padding:12px 28px 12px 0;
    background:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%2317863a' viewBox='0 0 16 16'%3E%3Cpath d='M2 5l6 6 6-6' stroke='%2317863a' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E")
        no-repeat right center;
    background-size:14px;
}

.form-control:focus,
.form-select:focus{

    border-color:var(--primary);

    box-shadow:none;

}

/* Remove Bootstrap Arrow */

.form-select{

    background-position:right .3rem center;

}

/*=========================
      Placeholder
==========================*/

::placeholder{

    color:#9a9a9a;

}

/*=========================
      Submit Button
==========================*/

.submit-btn{

    margin-top:15px;

    background:var(--primary);

    color:#fff;

    border:none;

    border-radius:60px;

    padding:15px 28px;

    display:inline-flex;

    align-items:center;

    gap:16px;

    transition:.3s;

    font-weight:600;

}

.submit-btn span{

    width:36px;

    height:36px;

    background:#fff;

    color:var(--primary);

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

}

.submit-btn:hover{

    background:var(--primary-dark);

    transform:translateY(-3px);

}

/*==================================
      Work Process
===================================*/

.work-process{

    background:#fff;

    padding:90px 0;

}

.section-heading h2{

    font-size:42px;

    font-weight:700;

    color:#222;

}

.section-heading span{

    color:#16853d;

}

.process-card{

    position:relative;

    background:#fff;

    border-radius:18px;

    padding:55px 22px 30px;

    text-align:center;

    box-shadow:0 8px 25px rgba(0,0,0,.06);

    transition:.35s;

    height:100%;

}

.process-card:hover{

    transform:translateY(-8px);

}

.process-icon{

    width:64px;

    height:64px;

    border-radius:50%;

    background:#16853d;

    color:#fff;

    display:flex;

    justify-content:center;

    align-items:center;

    position:absolute;

    left:50%;

    transform:translateX(-50%);

    top:-32px;

    font-size:22px;

    box-shadow:0 8px 18px rgba(22,133,61,.35);

}

.process-card h3{

    font-size:34px;

    font-weight:700;

    color:#222;

    margin-bottom:12px;

}

.process-card h5{

    font-size:20px;

    font-weight:600;

    margin-bottom:12px;

    color:#222;

}

.process-card p{

    color:#666;

    line-height:1.7;

    margin:0;

    font-size:15px;

}

/* dotted connector */

.line{

    position:absolute;

    width:100%;

    height:2px;

    border-top:2px dashed #b9d9c4;

    top:-2px;

    left:50%;

    transform:translateX(50%);

}

.process-card.last .line{

    display:none;

}


/*==========================================
        WHY CHOOSE US
==========================================*/


.py-100{
    padding:100px 0;
}

.why-choose-section{

    position:relative;

    background:url(images/why-bg.jpg) center center;

    background-size:cover;

    overflow:hidden;

}

.why-choose-section::before{

    content:"";

    position:absolute;

    inset:0;

    background:rgba(8,52,20,.78);

}

.why-choose-section .container{

    position:relative;

    z-index:2;

}

/*==========================
LEFT CONTENT
===========================*/

.section-tag{

    display:inline-block;

    color:#c6e5ca;

    font-size:13px;

    font-weight:700;

    letter-spacing:1.5px;

    margin-bottom:18px;

}

.why-content h2{

    color:#fff;

    font-size:42px;

    line-height:1.2;

    font-weight:700;

    margin-bottom:25px;

}

.why-content h2 span{

    display:block;

    color:#d5f254;

}

.why-content p{

    color:#d9e8dc;

    font-size:17px;

    line-height:1.9;

    margin-bottom:40px;

}

/*==========================
BUTTON
===========================*/

.partner-btn{

    background:#fff;

    color:#1b1b1b;

    border-radius:60px;

    padding:14px 26px;

    display:inline-flex;

    align-items:center;

    gap:18px;

    font-weight:600;

    transition:.35s;

}

.partner-btn span{

    width:38px;

    height:38px;

    border-radius:50%;

    background:var(--primary);

    color:#fff;

    display:flex;

    justify-content:center;

    align-items:center;

}

.partner-btn:hover{

    transform:translateY(-4px);

    color:#111;

    background:#f4f4f4;

}

/*==========================
FEATURE CARD
===========================*/

.feature-box{

    background:#fff;

    border-radius:20px;

    padding:30px;

    min-height:220px;

    transition:.35s;

    box-shadow:var(--shadow);

    border:1px solid rgba(255,255,255,.25);

}

.feature-box:hover{

    transform:translateY(-8px);

}

.feature-icon{

    width:54px;

    height:54px;

    border-radius:50%;

    background:#edf9ef;

    color:var(--primary);

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:22px;

    margin-bottom:22px;

}

.feature-box h5{

    font-size:21px;

    font-weight:700;

    color:#222;

    line-height:1.4;

    margin-bottom:14px;

}

.feature-box p{

    color:#666;

    font-size:15px;

    line-height:1.8;

    margin:0;

}

/*==========================
CARD HOVER
===========================*/

.feature-box:hover .feature-icon{

    background:var(--primary);

    color:#fff;

}

/*==========================================
        Benefits Section
==========================================*/

.benefits-section{

    padding:90px 0;

    background:#fff;

}

.benefits-wrapper{

    background:#fff;

    border-radius:22px;

    border:1px solid #edf0f2;

    box-shadow:0 10px 35px rgba(0,0,0,.06);

    padding:50px;

}

.benefits-wrapper .section-title{

    max-width:760px;

    margin:auto auto 40px;

}

.benefits-wrapper h2{

    font-size:40px;

    font-weight:700;

    color:#202020;

}

.benefits-wrapper h2 span{

    color:#17863a;

}

.benefits-wrapper p{

    color:#666;

    line-height:1.8;

    margin-top:18px;

    font-size:17px;

}

.benefit-card{

    background:#fff;

    border:1px solid #ececec;

    border-radius:18px;

    padding:32px 18px;

    text-align:center;

    transition:.35s;

    height:100%;

}

.benefit-card:hover{

    transform:translateY(-6px);

    box-shadow:0 15px 35px rgba(0,0,0,.08);

}

.benefit-icon{

    width:60px;

    height:60px;

    margin:auto;

    border-radius:50%;

    background:#edf8ef;

    color:#17863a;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:24px;

    margin-bottom:18px;

    transition:.3s;

}

.benefit-card:hover .benefit-icon{

    background:#17863a;

    color:#fff;

}

.benefit-card h5{

    font-size:19px;

    font-weight:600;

    line-height:1.5;

    color:#222;

    margin:0;

}

.testimonial-section{

    padding:90px 0;

    background:#f8fbf8;

}

.quote-icon{

    color:#17863a;

    font-size:34px;

}

.section-title h2{

    font-weight:700;
	color: #000;
    margin-top:10px;

}

.section-title span{

    color:#17863a;

}

.testimonialSwiper{

    padding:15px 15px 60px;

}

.testimonial-card{

    background:#fff;

    border-radius:18px;

    padding:30px;

    border:1px solid #ececec;

    box-shadow:0 8px 30px rgba(0,0,0,.06);

    height:100%;

}

.stars{

    color:#ffb400;

    font-size:18px;

    margin-bottom:20px;

}

.testimonial-card p{

    color:#555;

    line-height:1.8;

    min-height:110px;

}

.user{

    display:flex;

    align-items:center;

    margin-top:20px;

}

.user i{

    font-size:48px;

    color:#17863a;

    margin-right:15px;

}

.user h6{

    margin:0;

    font-weight:700;

}

.user span{

    color:#777;

}

.swiper-button-next,
.swiper-button-prev{

    width:45px;

    height:45px;

    border-radius:50%;

    background:#17863a;

    color:#fff;

}

.swiper-button-next:after,
.swiper-button-prev:after{

    font-size:18px;

    font-weight:700;

}

.swiper-pagination-bullet{

    background:#17863a;

    opacity:.35;

}

.swiper-pagination-bullet-active{

    opacity:1;

}

.why-us-section{

    position:relative;

    padding:100px 0;

    overflow:hidden;

    background:
        radial-gradient(circle at top right,#eef9f0 0%,transparent 35%),
        radial-gradient(circle at bottom left,#eef9f0 0%,transparent 35%),
        #ffffff;

}

/* decorative */

.why-us-section::before{

    content:"";

    position:absolute;

    width:300px;

    height:300px;

    background:#edf9ef;

    border-radius:50%;

    top:-120px;

    right:-120px;

    filter:blur(50px);

    opacity:.8;

}

.why-us-section::after{

    content:"";

    position:absolute;

    width:260px;

    height:260px;

    background:#edf9ef;

    border-radius:50%;

    left:-100px;

    bottom:-100px;

    filter:blur(60px);

}

/*==========================
Section Heading
===========================*/

.section-badge{

    display:inline-flex;

    align-items:center;

    gap:10px;

    background:#edf9ef;

    color:var(--primary);

    padding:12px 22px;

    border-radius:50px;

    font-weight:600;

}

.section-title{

    font-size:42px;

    font-weight:700;

    color:var(--heading);

}

.section-title span{

    color:var(--primary);

}

.section-desc{

    max-width:720px;

    margin:auto;

    margin-top:18px;

    line-height:1.9;

    color:#545454;

    font-size:17px;

}

/*==========================
Feature Cards
===========================*/

.feature-card{

    background:#fff;

    border-radius:24px;

    padding:35px;

    margin-bottom:30px;

    border:1px solid var(--border);

    box-shadow:var(--shadow);

    transition:.35s;

    position:relative;

    overflow:hidden;

}

.feature-card::before{

    content:"";

    position:absolute;

    left:0;

    top:0;

    width:4px;

    height:100%;

    background:var(--primary);

    transform:scaleY(0);

    transition:.35s;

}

.feature-card:hover{

    transform:translateY(-10px);

}

.feature-card:hover::before{

    transform:scaleY(1);

}

.feature-icon{

    width:70px;

    height:70px;

    border-radius:20px;

    background:#edf9ef;

    display:flex;

    justify-content:center;

    align-items:center;

    color:var(--primary);

    font-size:28px;

    margin-bottom:25px;

    transition:.3s;

}

.feature-card:hover .feature-icon{

    background:var(--primary);

    color:#fff;

    transform:rotate(-8deg);

}

.feature-card h4{

    font-size:24px;

    font-weight:700;

    color:#222;

    margin-bottom:15px;

}

.feature-card p{

    color:#666;

    line-height:1.8;

    margin-bottom:25px;

}

.feature-card a{

    color:var(--primary);

    font-weight:600;

    text-decoration:none;

}

.feature-card a i{

    margin-left:8px;

    transition:.3s;

}

.feature-card:hover a i{

    transform:translateX(6px);

}

/*==========================
Center Circle
===========================*/

.trust-circle{

    display:flex;

    justify-content:center;

    align-items:center;

}

.circle{

    width:320px;

    height:320px;

    border-radius:50%;

    background:linear-gradient(135deg,#17863a,#0f6f2d);

    color:#fff;

    display:flex;

    flex-direction:column;

    justify-content:center;

    align-items:center;

    text-align:center;

    box-shadow:0 20px 60px rgba(23,134,58,.30);

    position:relative;

}

.circle::before{

    content:"";

    position:absolute;

    inset:15px;

    border:2px dashed rgba(255,255,255,.25);

    border-radius:50%;

}

.circle i{

    font-size:48px;

    margin-bottom:18px;

}

.circle h2{

    font-size:68px;

    font-weight:800;

    margin-bottom:10px;

}

.circle span{

    font-size:18px;

}

.circle strong{

    display:block;

    font-size:24px;

}

/*==========================
Mini Cards
===========================*/

.mini-card{

    background:#fff;

    border-radius:18px;

    border:1px solid var(--border);

    box-shadow:0 10px 25px rgba(0,0,0,.05);

    padding:30px;

    text-align:center;

    transition:.35s;

    height:100%;

}

.mini-card:hover{

    transform:translateY(-8px);

}

.mini-card i{

    font-size:36px;

    color:var(--primary);

    margin-bottom:18px;

}

.mini-card h5{

    font-size:20px;

    font-weight:700;

}

.mini-card p{

    margin-top:10px;

    color:#666;

}
/*=====================================
        CTA SECTION
======================================*/

.cta-section{

    padding:80px 0;

    background:#fff;

}

.cta-wrapper{

    position:relative;

    padding:45px 60px;

    border-radius:30px;

    overflow:hidden;

    background:
    linear-gradient(rgba(18,117,44,.90),
    rgba(18,117,44,.90)),
    url(images/cta-bg.jpg);

    background-size:cover;

    background-position:center;

}

/* Decorative Pattern */

.cta-wrapper::before{

    content:"";

    position:absolute;

    width:350px;

    height:350px;

    background:rgba(255,255,255,.05);

    border-radius:50%;

    top:-170px;

    left:-120px;

}

/*=======================*/

.cta-icon{

    width:150px;

    height:150px;

    border-radius:50%;

    border:3px solid rgba(255,255,255,.6);

    display:flex;

    justify-content:center;

    align-items:center;

    color:#fff;

    font-size:58px;

    margin:auto;

    position:relative;

}

.cta-icon::before{

    content:"";

    position:absolute;

    inset:12px;

    border:2px solid rgba(255,255,255,.35);

    border-radius:50%;

}

/*=======================*/

.cta-content h2{

    color:#fff;

    font-size:46px;

    font-weight:700;

    line-height:1.3;

    margin-bottom:18px;

}

.cta-content h2 span{

    display:block;

}

.cta-content p{

    color:#edf5ef;

    font-size:18px;

    line-height:1.8;

    margin:0;

}

/*=======================*/

.cta-btn{

    display:inline-flex;

    align-items:center;

    gap:18px;

    background:#fff;

    color:#17863a;

    font-weight:700;

    padding:18px 28px;

    border-radius:60px;

    text-decoration:none;

    transition:.35s;

}

.cta-btn span{

    width:40px;

    height:40px;

    border-radius:50%;

    background:#17863a;

    color:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

}

.cta-btn:hover{

    background:#f8f8f8;

    color:#17863a;

    transform:translateY(-4px);

}

.cta-btn:hover span{

    transform:translateX(4px);

}


/*==============================
        FOOTER
==============================*/

.footer{

    background:#075326;

    color:#fff;

    padding:80px 0 20px;

    position:relative;

    overflow:hidden;

}

.footer::before{

    content:"";

    position:absolute;

    inset:0;

    background:url(images/footer-pattern.png);

    opacity:.04;

}

/*----------------*/

.footer .container{

    position:relative;

    z-index:2;

}

/*----------------*/

.footer-logo{

    display:flex;

    align-items:center;

    margin-bottom:25px;

}

.footer-logo img{

    width:180px;

    margin-right:15px;

}

.footer-logo h4{

    margin:0;

    font-size:30px;

    font-weight:700;

}

.footer-logo small{

    color:#b9d8c3;

}

/*----------------*/

.footer-about{

    color:#d6e6da;

    line-height:1.9;

    max-width:320px;

    margin-bottom:30px;

}

/*----------------*/

.footer h5{

    margin-bottom:25px;

    font-size:22px;

    font-weight:700;

}

.footer ul{

    list-style:none;

    padding:0;

    margin:0;

}

.footer ul li{

    margin-bottom:14px;

}

.footer ul li a{

    color:#dce8df;

    text-decoration:none;

    transition:.3s;

}

.footer ul li a:hover{

    color:#ffffff;

    padding-left:6px;

}

/*----------------*/

.contact-list li{

    display:flex;

    align-items:flex-start;

    margin-bottom:18px;

}

.contact-list i{

    color:#69d081;

    width:22px;

    margin-top:5px;

}

.contact-list span,

.contact-list a{

    color:#dce8df;

    text-decoration:none;

    line-height:1.8;

}

/*----------------*/

.social-links{

    display:flex;

    gap:12px;

}

.social-links a{

    width:42px;

    height:42px;

    border-radius:50%;

    background:rgba(255,255,255,.08);

    display:flex;

    justify-content:center;

    align-items:center;

    color:#fff;

    transition:.3s;

}

.social-links a:hover{

    background:#22c55e;

    transform:translateY(-5px);

}

/*----------------*/

.footer hr{

    border-color:rgba(255,255,255,.12);

    margin:55px 0 20px;

}

/*----------------*/

.footer-bottom{

    display:flex;

    justify-content:space-between;

    align-items:center;

    flex-wrap:wrap;

}

.footer-bottom p{

    margin:0;

    color:#d5e6d8;

}

.footer-bottom div{

    display:flex;

    gap:15px;

}

.footer-bottom a{

    color:#d5e6d8;

    text-decoration:none;

}

.footer-bottom a:hover{

    color:#fff;

}

/*=========================
Responsive
==========================*/

@media(max-width:991px){

.footer{

text-align:center;

}

.footer-logo{

justify-content:center;

}

.footer-about{

margin:auto auto 25px;

}

.contact-list li{

justify-content:center;

}

.footer-bottom{

justify-content:center;

gap:20px;

}

}

@media(max-width:576px){

.footer{

padding:60px 0 20px;

}

.footer-logo{

flex-direction:column;

}

.footer-logo img{

margin:0 0 15px;

}

.footer-logo h4{

font-size:24px;

}

.footer h5{

margin-top:10px;

}

}

/*=======================
Responsive
========================*/

@media(max-width:991px){

.cta-wrapper{

padding:40px;

text-align:center;

}

.cta-icon{

margin-bottom:30px;

}

.cta-content{

margin-bottom:30px;

}

.cta-content h2{

font-size:34px;

}

}

@media(max-width:576px){

.cta-wrapper{

padding:30px 25px;

}

.cta-icon{

width:110px;

height:110px;

font-size:40px;

}

.cta-content h2{

font-size:28px;

}

.cta-content p{

font-size:15px;

}

.cta-btn{

width:100%;

justify-content:center;

}

}

/*==========================
Responsive
===========================*/

@media(max-width:1200px){

.section-title{

    font-size:44px;

}

.circle{

    width:280px;

    height:280px;

}

}

@media(max-width:992px){

.why-us-section{

    padding:80px 0;

}

.section-title{

    font-size:38px;

}

.trust-circle{

    margin:40px 0;

}

.counter-wrapper{

    flex-wrap:wrap;

}

.counter-item{

    width:50%;

    margin-bottom:30px;

}

.counter-item::after{

    display:none;

}

}

@media(max-width:768px){

.section-title{

    font-size:30px;

}

.feature-card{

    padding:25px;

}

.circle{

    width:230px;

    height:230px;

}

.circle h2{

    font-size:50px;

}

.counter-wrapper{

    padding:25px;

}

.counter-item{

    width:100%;

}

}

@media(max-width:576px){

.section-badge{

    font-size:14px;

}

.section-desc{

    font-size:15px;

}

.feature-card h4{

    font-size:21px;

}

.feature-icon{

    width:60px;

    height:60px;

    font-size:24px;

}

.mini-card{

    padding:22px;

}

}

/*=============================
Responsive
=============================*/

@media(max-width:992px){

.benefits-wrapper{

padding:35px;

}

.benefits-wrapper h2{

font-size:32px;

}

}

@media(max-width:768px){

.benefits-wrapper{

padding:25px;

}

.benefits-wrapper h2{

font-size:28px;

}

.benefits-wrapper p{

font-size:15px;

}

.benefit-card{

padding:25px 15px;

}

.benefit-card h5{

font-size:17px;

}

}

/*==========================
RESPONSIVE
===========================*/

@media(max-width:1200px){

.why-content h2{

    font-size:44px;

}

.feature-box{

    min-height:230px;

}

}

@media(max-width:992px){

.py-100{

    padding:70px 0;

}

.why-content{

    text-align:center;

    margin-bottom:35px;

}

.partner-btn{

    justify-content:center;

}

.why-content h2{

    font-size:38px;

}

}

@media(max-width:768px){

.hero-section{
    background-position: left;
}

.why-content h2{

    font-size:32px;

}

.feature-box{

    min-height:auto;

    padding:25px;

}

.feature-box h5{

    font-size:19px;

}

.partner-btn{

    width:100%;

}

}

@media(max-width:576px){

.py-100{

    padding:60px 0;

}

.why-content h2{

    font-size:28px;

}

.why-content p{

    font-size:15px;

}

.feature-box{

    text-align:center;

}

.feature-icon{

    margin:0 auto 20px;

}

}


/*=========================
Responsive
=========================*/

@media(max-width:991px){

.line{

display:none;

}

.process-card{

margin-top:35px;

}

.section-heading h2{

font-size:34px;

}

}

@media(max-width:576px){

.process-card{

padding:50px 20px 25px;

}

.section-heading h2{

font-size:28px;

}

.process-card h3{

font-size:28px;

}

.process-card h5{

font-size:18px;

}

}

/*=========================
      Responsive
==========================*/

@media(max-width:1200px){

.section-title{

    font-size:42px;

}

.dealer-form{

    padding:40px;

}

}

@media(max-width:992px){

.py-100{

    padding:70px 0;

}

.section-title{

    font-size:38px;

}

.dealer-form{

    margin-top:20px;

}

}

@media(max-width:768px){

.section-title{

    font-size:32px;

}

.dealer-form{

    padding:30px 22px;

}

.dealer-form h3{

    font-size:28px;

}

.submit-btn{

    width:100%;

    justify-content:center;

}

.about-btn{

    width:100%;

    justify-content:center;

}

}

@media(max-width:576px){

.section-title{

    font-size:28px;

}

.section-text{

    font-size:15px;

}

.about-list li{

    font-size:15px;

}

.dealer-form{

    padding:25px 18px;

}

}



/*==========================
Responsive
===========================*/

@media(max-width:1200px){

.hero-section h1{

    font-size:48px;

}

}


@media(max-width:992px){

.hero-section{

    padding:70px 0 120px;

    text-align:center;

}

.hero-section h1{

    font-size:42px;

}

.hero-section p{

    margin:auto auto 35px;

}

.hero-features{

    justify-content:center;

}

.hero-btn{

    margin-bottom:50px;

}

.hero-image{

    margin-top:20px;

}

.stats-box{

    margin-top:-50px;

}

}


@media(max-width:768px){

.hero-section h1{

    font-size:34px;

}

.hero-features{

    gap:18px;

}

.feature-item{

    width:100%;

    justify-content:center;

}

.stats-box{

    padding:25px;

}

.stat{

    margin-bottom:25px;

}

.navbar-brand h5{

    font-size:16px;

}

}


@media(max-width:576px){

.hero-section{

    padding:60px 0 110px;

}

.hero-tag{

    font-size:14px;

}

.hero-section h1{

    font-size:30px;

}

.hero-section p{

    font-size:16px;

}

.hero-btn{

    width:100%;

    justify-content:center;

}

}