/*=========================================
Google Font
=========================================*/

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

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    color:#222;
    background:#fff;
    overflow-x:hidden;
}

a{
    text-decoration:none;
}

ul{
    list-style:none;
    margin:0;
    padding:0;
}

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

.container{
    max-width:1320px;
}


/*=========================================
Header
=========================================*/

.main-header{

    position:absolute;
    top:0;
    left:0;
    width:100%;
    z-index:999;

    background:#ffffff;

    box-shadow:0 5px 20px rgba(0,0,0,.05);

}

.navbar{

    padding:10px 0;

}

.navbar-brand img{

    height:110px;

}

.navbar-nav{

    gap:28px;

}

.nav-link{

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

}

.nav-link:hover{

    color:#0b5d35;

}

.nav-link.active{

    color:#0b5d35;

}

.header-right{

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

}

.phone{

    color:#0b5d35;
    font-weight:700;
    font-size:18px;

}

.phone i{

    margin-right:8px;

}

.quote-btn{

    background:#c89122;

    color:#fff;

    padding:15px 23px;

    border-radius:10px;

    font-weight:600;

    transition:.3s;

}

.quote-btn:hover{

    background:#0b5d35;
    color:#fff;

}



/*=========================================
Hero
=========================================*/

.hero{

    position:relative;

    padding-top:140px;
    padding-bottom:80px;

    background:url("../images/ban.webp");

    background-size:cover;

    background-position:center;

}

.hero::before{

    content:"";

    position:absolute;

    inset:0;

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

}

.hero .container{

    position:relative;
    z-index:5;

}

.hero-wrapper{

    display:flex;

    align-items:center;

    justify-content:space-between;

    gap:30px;

}


.hero-tag{

    color:#c89122;

    font-size:16px;

    font-weight:700;

    letter-spacing:2px;

    text-transform:uppercase;

}

.hero-content h1{

    font-size:55px;

    font-weight:800;

    color:#063c27;

    line-height:1.1;

    margin:15px 0;

}

.hero-content h2{

    font-family:'Caveat',cursive;

    font-size:68px;

    color:#c89122;

    margin-bottom:20px;

    font-weight:700;

}

.hero-content p{

    font-size:18px;

    line-height:32px;

    color:#444;

    max-width:640px;

}


/*=========================================
Checklist
=========================================*/

.hero-list{

    margin-top:35px;

    display:grid;

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

    gap:18px;

}

.hero-list div{

    display:flex;

    align-items:center;

    font-size:17px;

    font-weight:600;

}

.hero-list i{

    color:#0b5d35;

    margin-right:12px;

    font-size:24px;

}


/*=========================================
Buttons
=========================================*/

.hero-btns{

    margin-top:40px;

    display:flex;

    gap:18px;

}

.btn-call{

    background:#0b5d35;

    color:#fff;

    padding:18px 34px;

    border-radius:12px;

    font-size:17px;

    font-weight:600;

    transition:.3s;

}

.btn-call:hover{

    background:#094428;

    color:#fff;

}

.btn-call i{

    margin-right:8px;

}

.btn-service{

    border:2px solid #0b5d35;

    color:#0b5d35;

    padding:18px 34px;

    border-radius:12px;

    font-weight:600;

    transition:.3s;

}

.btn-service:hover{

    background:#0b5d35;

    color:#fff;

}


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

.hero-image{

    width:45%;

    position:relative;

}

.hero-image img{

    width:100%;

}


/*=========================================
Animation
=========================================*/

.hero-content{

    animation:fadeLeft 1s ease;

}

.hero-image{

    animation:fadeRight 1s ease;

}

@keyframes fadeLeft{

    from{

        opacity:0;
        transform:translateX(-50px);

    }

    to{

        opacity:1;
        transform:translateX(0);

    }

}

@keyframes fadeRight{

    from{

        opacity:0;
        transform:translateX(50px);

    }

    to{

        opacity:1;
        transform:translateX(0);

    }

}
/*=========================================
QUOTE FORM
=========================================*/

.quote-box{

    width:420px;
    background:#0c4d2d;
    border-radius:25px;
    padding:35px;
    color:#fff;

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

    position:relative;
    overflow:hidden;

}

.quote-box::before{

    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:6px;
    background:#c89223;

}

.quote-box h3{

    font-size:42px;
    font-weight:800;
    text-align:center;
    margin-bottom:5px;
    color:#fff;

}

.quote-box>span{

    display:block;
    text-align:center;
    color:#d8e6dc;
    margin-bottom:28px;
    font-size:16px;

}

.quote-box form{

    display:flex;
    flex-direction:column;
    gap:15px;

}

.quote-box input,
.quote-box select{

    width:100%;
    height:60px;
    border:none;
    outline:none;

    border-radius:10px;

    background:#fff;

    padding:0 18px;

    font-size:16px;

    color:#444;

}

.quote-box input::placeholder{

    color:#888;

}

.quote-box select{

    cursor:pointer;

}

.quote-box button{

    width:100%;
    height:62px;

    border:none;

    border-radius:10px;

    background:#c89223;

    color:#fff;

    font-size:18px;

    font-weight:700;

    margin-top:8px;

    transition:.3s;

}

.quote-box button:hover{

    background:#b07d16;

}

.quote-bottom{

    margin-top:28px;

    display:flex;

    justify-content:space-between;

    align-items:center;

    flex-wrap:wrap;

    gap:15px;

}

.quote-bottom span{

    color:#fff;

    font-size:15px;

    font-weight:600;

}

.quote-bottom i{

    color:#d6b05f;

    margin-right:8px;

}


/*=========================================
FEATURE STRIP
=========================================*/

.hero-features{

    margin-top:-45px;
    position:relative;
    z-index:20;

}

.hero-features .container{

    background:#fff;

    border-radius:22px;

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

    padding:35px;

}

.feature-box{

    display:flex;

    align-items:flex-start;

    gap:18px;

    padding:10px 18px;

    height:100%;

    transition:.3s;

    border-right:1px solid #ececec;

}

.hero-features .col-lg-3:last-child .feature-box{

    border-right:none;

}

.feature-box:hover{

    transform:translateY(-6px);

}

.feature-box i{

    font-size:42px;

    color:#0b5d35;

    min-width:50px;

}

.feature-box h5{

    font-size:20px;

    font-weight:700;

    color:#063c27;

    margin-bottom:8px;

}

.feature-box p{

    font-size:15px;

    color:#666;

    line-height:1.7;

    margin:0;

}


/*=========================================
FORM INPUT ICON SPACE
(OPTIONAL)
=========================================*/

.quote-box .input-group{

    position:relative;

}

.quote-box .input-group i{

    position:absolute;

    left:18px;

    top:50%;

    transform:translateY(-50%);

    color:#0b5d35;

}

.quote-box .input-group input,
.quote-box .input-group select{

    padding-left:48px;

}


/*=========================================
HOVER EFFECTS
=========================================*/

.quote-box{

    transition:.4s;

}

.quote-box:hover{

    transform:translateY(-6px);

    box-shadow:0 30px 70px rgba(0,0,0,.28);

}


/*=========================================
SMALL ANIMATION
=========================================*/

@keyframes floatCard{

    0%{
        transform:translateY(0);
    }

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

    100%{
        transform:translateY(0);
    }

}

.quote-box{

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

}
/*=========================================
Sticky Header
=========================================*/

.main-header.sticky{

    position:fixed;
    animation:header .4s ease;
    box-shadow:0 10px 30px rgba(0,0,0,.08);

}

@keyframes header{

    from{

        transform:translateY(-100%);

    }

    to{

        transform:translateY(0);

    }

}


/*=========================================
Back To Top
=========================================*/

.back-to-top{

    position:fixed;
    right:25px;
    bottom:25px;

    width:50px;
    height:50px;

    border:none;

    border-radius:50%;

    background:#0b5d35;

    color:#fff;

    cursor:pointer;

    opacity:0;

    visibility:hidden;

    transition:.3s;

    z-index:9999;

}

.back-to-top.show{

    opacity:1;

    visibility:visible;

}

.back-to-top:hover{

    background:#c89223;

}


/*=========================================
Ripple Effect
=========================================*/

.quote-box button,
.quote-btn,
.btn-call{

    position:relative;
    overflow:hidden;

}

.ripple{

    position:absolute;

    border-radius:50%;

    transform:scale(0);

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

    animation:ripple .6s linear;

}

@keyframes ripple{

    to{

        transform:scale(4);

        opacity:0;

    }

}


/*=========================================
Input Focus
=========================================*/

.input-group.active input,
.input-group.active select{

    border:2px solid #c89223;

}

/*==============================
ABOUT HOME
==============================*/

.about-home{

    padding:90px 0 50px;

}

.about-image{

    position:relative;

    border-radius:25px;

    overflow:hidden;

}

.about-image img{

    width:100%;

    border-radius:25px;

    display:block;

}

.about-image::before{

    content:"";

    position:absolute;

    left:-20px;
    top:50px;

    width:90px;
    height:120px;

    background-image:radial-gradient(#c89122 2px, transparent 2px);

    background-size:12px 12px;

    z-index:-1;

}

.about-content .sub-title{

    color:#c89122;

    font-weight:700;

    letter-spacing:2px;

    font-size:14px;

    display:block;

    margin-bottom:12px;

}

.about-content h2{

    font-size:44px;

    font-weight:700;

    color:#063c27;

    line-height:1.25;

    margin-bottom:20px;

}

.about-content p{

    color:#666;

    font-size:17px;

    line-height:30px;

    margin-bottom:30px;

}

.about-list{

    list-style:none;

    padding:0;

    margin:0;

}

.about-list li{

    display:flex;

    align-items:center;

    margin-bottom:18px;

    font-size:17px;

    font-weight:500;

    color:#333;

}

.about-list li i{

    color:#0b7d3b;

    font-size:20px;

    margin-right:14px;

}

/*=========================================
Counter Section
=========================================*/

.counter-section{
    padding:10px 0;
    background:#fff;
}

/*=========================================
Counter Card
=========================================*/

.counter-card{

    position:relative;

    display:flex;
    align-items:center;
    gap: 10px;
    padding: 8px 13px;

    background:#fff;

    border-radius:25px;

    overflow:hidden;

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

    transition:all .35s ease;

}

/* Top Gradient Line */

.counter-card::before{

    content:"";

    position:absolute;

    left:22px;
    right:22px;
    top:0;

    height:4px;

    border-radius:50px;

    background:#c89122;

}

/* Hover */

.counter-card:hover{

    transform:translateY(-8px);

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

}

/*=========================================
Icon
=========================================*/

.counter-icon{

    width:72px;
    height:72px;

    min-width:72px;

    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    background:#c89122;

}

.counter-icon i{

    color:#fff;

    font-size:30px;

}

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

.counter-content h2{

    margin:0;

     font-size: 32px;
    font-weight:700;

    color:#111;

    line-height:1;

}

.counter-content p{

    margin-top:10px;
    margin-bottom:0;

    color:#666;

    font-size:18px;

    font-weight:500;

    line-height:1.6;

}

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

@media(max-width:991px){

.counter-card{

    padding:24px;

}

.counter-content h2{

    font-size:38px;

}

.counter-content p{

    font-size:16px;

}

}

@media(max-width:767px){

.counter-card{

    padding:22px;

    border-radius:20px;

}

.counter-icon{

    width:62px;
    height:62px;
    min-width:62px;

}

.counter-icon i{

    font-size:26px;

}

.counter-content h2{

    font-size:32px;

}

.counter-content p{

    font-size:15px;

}

}

@media(max-width:480px){

.counter-card{

    flex-direction:column;
    text-align:center;

}

.counter-content p{

    margin-top:8px;

}

}

/*=============================
WHY US
=============================*/

.why-us{

    padding:100px 0;

    background:#f8f8f5;

}

.section-title{

    max-width:850px;

    margin:auto;

}

.section-badge{

    display:inline-block;

    background:#c89122;

    color:#fff;

    padding:10px 22px;

    border-radius:50px;

    font-size:13px;

    letter-spacing:2px;

    font-weight:600;

    margin-bottom:20px;

}


.section-title h2 span{

    color:#c89122;

}

.section-title p{

    color:#666;

    font-size:18px;

    line-height:32px;

}

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

.why-card{

    background:#fff;

    border-radius:18px;

    padding:35px;

    display:flex;

    gap:25px;

    align-items:flex-start;

    border-left:5px solid #c89122;

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

    transition:.35s;

    height:100%;

}

.why-card:hover{

    transform:translateY(-10px);

    border-left-color:#0c4d2d;

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

}

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

.why-icon{

    width:72px;

    height:72px;

    min-width:72px;

    border-radius:50%;

    background:#0c4d2d;

    color:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    position:relative;

}

.why-icon::after{

    content:"";

    position:absolute;

    width:84px;

    height:84px;

    border:2px dashed #c89122;

    border-radius:50%;

}

.why-icon i{

    font-size:28px;

}

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

.why-content h4{

    font-size:24px;

    color:#0c4d2d;

    font-weight:700;

    margin-bottom:15px;

}

.why-content p{

    margin:0;

    color:#666;

    line-height:30px;

    font-size:17px;

}

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

@media(max-width:991px){

.section-title h2{

    font-size:38px;

}

.why-card{

    padding:28px;

}

}

@media(max-width:767px){

.section-title h2{

    font-size:30px;

}

.section-title p{

    font-size:16px;

    line-height:28px;

}

.why-card{

    flex-direction:column;

    text-align:center;

    border-left:none;

    border-top:5px solid #c89122;

}

.why-icon{

    margin:auto;

}

.why-content h4{

    font-size:22px;

}

}

/*==================================
Services
==================================*/

.services-section{

    padding:100px 0;

}

.sub-heading{

    display:inline-block;

    background:#c89122;

    color:#fff;

    padding:8px 20px;

    border-radius:40px;

    font-size:13px;

    font-weight:600;

    letter-spacing:2px;

    margin-bottom:20px;

}

.section-title{

    max-width:760px;

    margin:auto;

}

.section-title h2{

    font-size:48px;

    color:#0c4d2d;

    font-weight:700;

}

.section-title h2 span{

    color:#c89122;

}

.section-title p{

    margin-top:20px;

    color:#666;

    line-height:30px;

}

/* Card */

.service-card{

    background:#fff;

    border-radius:20px;

    overflow:hidden;

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

    transition:.4s;

    height:100%;

}

.service-card:hover{

    transform:translateY(-10px);

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

}

.service-img{

    overflow:hidden;

}

.service-img img{

    width:100%;

    height:240px;

    object-fit:cover;

    transition:.5s;

}

.service-card:hover img{

    transform:scale(1.1);

}

.service-content{

    padding:30px;

    position:relative;

}

.service-icon{

    width:70px;

    height:70px;

    border-radius:50%;

    background:#0c4d2d;

    color:#fff;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:28px;

    margin-top:-65px;

    margin-bottom:20px;

    border:5px solid #fff;

}

.service-icon i{

    color:#fff;

}

.service-content h3{

    font-size:26px;

    color:#0c4d2d;

    margin-bottom:15px;

    font-weight:700;

}

.service-content p{

    color:#666;

    line-height:28px;

}

.service-content a{

    display:inline-flex;

    align-items:center;

    gap:10px;

    color:#c89122;

    font-weight:600;

    margin-top:15px;

    transition:.3s;

}

.service-content a:hover{

    color:#0c4d2d;

}

.service-content a i{

    transition:.3s;

}

.service-content a:hover i{

    transform:translateX(6px);

}
/*=========================================
Pricing Section
=========================================*/

.pricing-section{

    padding:100px 0;

    background:blanchedalmond;

}

.section-heading{

    max-width:760px;

    margin:auto;

}

.pricing-badge{

    display:inline-block;

    padding:8px 22px;

    background:rgba(200,145,34,.12);

    color:#c89122;

    border-radius:30px;

    font-size:13px;

    font-weight:600;

    margin-bottom:15px;

}

.section-heading h2{

    font-size:44px;

    font-weight:700;

    color:#0c4d2d;

    margin-bottom:15px;

}

.section-heading p{

    color:#666;

    font-size:17px;

    line-height:30px;

}

/*=========================================
Price Card
=========================================*/

.price-box{

    position:relative;

    background:#fff;

    border-radius:18px;

    text-align:center;

    padding:40px 20px;

    overflow:hidden;

    height:100%;

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

    transition:.35s;

}

/* Top Border */

.price-box::before{

    content:"";

    position:absolute;

    left:0;

    top:0;

    width:100%;

    height:4px;

    background:linear-gradient(
        90deg,
        #0c4d2d,
        #c89122
    );

}

.price-box:hover{

    transform:translateY(-10px);

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

}

/*=========================================
Featured Card
=========================================*/

.featured{

    transform:scale(1.03);

}

.featured::before{

    height:5px;

}

.popular-tag{

    position:absolute;

    top:15px;

    left:50%;

    transform:translateX(-50%);

    background:#c89122;

    color:#fff;

    padding:6px 18px;

    border-radius:30px;

    font-size:11px;

    font-weight:600;

    letter-spacing:1px;

}

/*=========================================
Icon
=========================================*/

.price-icon{

    width:68px;

    height:68px;

    margin:auto;

    margin-bottom:20px;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    color:#fff;

    font-size:28px;

    background:linear-gradient(
        180deg,
        #0c4d2d,
        #c89122
    );

}

.price-icon i{

    color:#fff;

}

/*=========================================
Typography
=========================================*/

.price-box h3{

    color:#0c4d2d;

    font-size:42px;

    font-weight:700;

    margin-bottom:12px;

}

.price-box h5{

    color:#222;

    font-size:20px;

    font-weight:600;

    margin-bottom:6px;

}

.price-box p{

    color:#777;

    font-size:15px;

    margin-bottom:0;

}

/*=========================================
Bottom Note
=========================================*/

.pricing-note{

    margin-top:60px;

}

.pricing-note p{

    color:#777;

    font-size:14px;

    margin-bottom:25px;

}

.pricing-btn{

    display:inline-block;

    background:#0c4d2d;

    color:#fff;

    padding:14px 35px;

    border-radius:40px;

    font-weight:600;

    transition:.3s;

}

.pricing-btn:hover{

    background:#c89122;

    color:#fff;

}

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

@media(max-width:991px){

.section-heading h2{

    font-size:36px;

}

.price-box{

    padding:35px 20px;

}

.price-box h3{

    font-size:36px;

}

}

@media(max-width:767px){

.pricing-section{

    padding:70px 0;

}

.section-heading h2{

    font-size:30px;

}

.section-heading p{

    font-size:15px;

}

.price-box{

    padding:30px 18px;

}

.price-icon{

    width:60px;
    height:60px;

    font-size:24px;

}

.price-box h3{

    font-size:30px;

}

.price-box h5{

    font-size:18px;

}

}

@media(max-width:576px){

.price-box{

    padding:25px 15px;

}

.pricing-note{

    margin-top:40px;

}

.pricing-btn{

    width:100%;

    text-align:center;

}

}
/*=========================================
Premium Card Animation
=========================================*/

.price-box{

    position: relative;
    isolation: isolate;
    transition: all .35s ease;
}

.price-box::after{

    content:"";

    position:absolute;

    inset:0;

    background:linear-gradient(
        180deg,
        rgba(12,77,45,.03),
        rgba(200,145,34,.03)
    );

    opacity:0;

    transition:.35s;

    z-index:-1;

}

.price-box:hover::after{

    opacity:1;

}

.price-box:hover{

    transform:translateY(-12px);

    box-shadow:0 22px 55px rgba(12,77,45,.12);

}

/*=========================================
Icon Animation
=========================================*/

.price-icon{

    transition:.4s;

}

.price-box:hover .price-icon{

    transform:rotate(10deg) scale(1.08);

}

/*=========================================
Price Animation
=========================================*/

.price-box h3{

    transition:.3s;

}

.price-box:hover h3{

    color:#c89122;

}

/*=========================================
Heading Animation
=========================================*/

.price-box h5{

    transition:.3s;

}

.price-box:hover h5{

    color:#0c4d2d;

}

/*=========================================
Bottom Border Animation
=========================================*/

.price-box span.line{

    position:absolute;

    bottom:0;

    left:50%;

    width:0;

    height:3px;

    background:#c89122;

    transform:translateX(-50%);

    transition:.35s;

}

.price-box:hover span.line{

    width:100%;

}

/*=========================================
Button
=========================================*/

.pricing-btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    gap:10px;

}

.pricing-btn i{

    transition:.3s;

}

.pricing-btn:hover i{

    transform:translateX(6px);

}

/*=========================================
Section Background Pattern
=========================================*/

.pricing-section{

    position:relative;

    overflow:hidden;

}

.pricing-section::before{

    content:"";

    position:absolute;

    width:280px;

    height:280px;

    background:#c89122;

    opacity:.04;

    border-radius:50%;

    top:-140px;

    left:-140px;

}

.pricing-section::after{

    content:"";

    position:absolute;

    width:320px;

    height:320px;

    background:#0c4d2d;

    opacity:.04;

    border-radius:50%;

    right:-150px;

    bottom:-150px;

}

/*=========================================
Fade Animation
=========================================*/

.price-box{

    animation:fadeUp .7s ease both;

}

.price-box:nth-child(2){

    animation-delay:.1s;

}

.price-box:nth-child(3){

    animation-delay:.2s;

}

.price-box:nth-child(4){

    animation-delay:.3s;

}

.price-box:nth-child(5){

    animation-delay:.4s;

}

.price-box:nth-child(6){

    animation-delay:.5s;

}

@keyframes fadeUp{

    from{

        opacity:0;

        transform:translateY(40px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}
/*==================================
PROCESS SECTION
==================================*/

.process-section{
background: blanchedalmond;
padding:100px 0px;
}

.process-subtitle{

    display:inline-block;

    background:#c89122;

    color:#fff;

    padding:8px 20px;

    border-radius:30px;

    font-size:13px;

    letter-spacing:2px;

    font-weight:600;

}

.section-title h2{

    margin-top:18px;

    color:#063c27;

    font-size:46px;

    font-weight:700;

}

.section-title h2 span{

    color:#c89122;

}

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

.process-wrapper{

    display:grid;

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

    gap:25px;

    margin-top:70px;

    position:relative;

}

/* dotted line */

.process-wrapper::before{

    content:"";

    position:absolute;

    left:8%;

    right:8%;

    top:62px;

    border-top:3px dashed #c89122;

}

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

.process-item{

    position:relative;

    text-align:center;

    z-index:2;

}

.process-icon{

    width:120px;

    height:120px;

    margin:auto;

    border-radius:50%;

    background:#fff;

    border:3px solid #e9e9e9;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:42px;

    color:#063c27;

    transition:.35s;

}

.process-item:hover .process-icon{

    background:#063c27;

    border-color:#063c27;

    color:#fff;

    transform:translateY(-8px);

}

.step-number{

    width:46px;

    height:46px;

    margin:18px auto;

    border-radius:50%;

    background:#c89122;

    color:#fff;

    font-weight:700;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:18px;

    border:4px solid #fff;

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

}

.process-item h4{

    color:#063c27;

    font-size:22px;

    font-weight:700;

    margin-bottom:12px;

}

.process-item p{

    color:#666;

    line-height:28px;

    font-size:15px;

}

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

.cta-section{

    padding:90px 0;

}

.cta-wrapper{

    background:linear-gradient(90deg,#063c27,#0c4d2d);

    border-radius:24px;

    overflow:hidden;

    padding:40px 50px;

    position:relative;

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

}

/* Decorative */

.cta-wrapper::before{

    content:"";

    position:absolute;

    width:280px;
    height:280px;

    border-radius:50%;

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

    right:-120px;
    top:-100px;

}

.cta-subtitle{

    display:inline-block;

    color:#c89122;

    font-size:14px;

    font-weight:700;

    letter-spacing:2px;

    margin-bottom:15px;

}

.cta-content h2{

    color:#fff;

    font-size:42px;

    font-weight:700;

    line-height:1.3;

    margin-bottom:25px;

}

/* Features */

.cta-features{

    display:flex;

    flex-wrap:wrap;

    gap:20px;

    margin-bottom:30px;

}

.cta-features span{

    color:#fff;

    font-size:15px;

    font-weight:500;

}

.cta-features i{

    color:#c89122;

    margin-right:8px;

}

/* Button */

.cta-btn{

    display:inline-block;

    background:#c89122;

    color:#fff;

    padding:15px 34px;

    border-radius:10px;

    font-weight:600;

    transition:.35s;

}

.cta-btn:hover{

    background:#fff;

    color:#063c27;

}

/* Technician */

.cta-man{

    max-height:320px;

    margin-top:-30px;

}

/* Guarantee */

.guarantee-badge{

    width:180px;
    height:180px;

    margin:auto;

    border:4px solid #c89122;

    border-radius:50%;

    display:flex;

    flex-direction:column;

    justify-content:center;

    align-items:center;

    color:#fff;

    position:relative;

}

.guarantee-badge::before{

    content:"";

    position:absolute;

    inset:12px;

    border:2px dashed #c89122;

    border-radius:50%;

}

.guarantee-badge h3{

    font-size:46px;

    font-weight:700;

    color:#c89122;

    margin-bottom:8px;

}

.guarantee-badge span{

    text-transform:uppercase;

    font-size:14px;

    font-weight:600;

    line-height:1.5;

    text-align:center;

}

/* Hover */

.cta-wrapper:hover{

    transform:translateY(-5px);

    transition:.4s;

}
.service-area{

padding:100px 0;


}

.map-box{

position:relative;

background:#fff;

padding:25px;

border-radius:20px;

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

}

.map-box img{

width:100%;

}

.pin{

position:absolute;

width:16px;

height:16px;

background:#c89122;

border-radius:50%;

animation:pulse 2s infinite;

}

.pin::before{

content:"";

position:absolute;

width:30px;

height:30px;

left:-7px;

top:-7px;

border:2px solid #c89122;

border-radius:50%;

opacity:.5;

}

.pin1{

top:35%;

left:52%;

}

.pin2{

top:52%;

left:45%;

}

.pin3{

top:70%;

left:58%;

}

.pin4{

top:18%;

left:60%;

}

.area-card{

background:#fff;

padding:30px;

border-radius:18px;

border-top:4px solid #c89122;

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

transition:.35s;

height:100%;

}

.area-card:hover{

transform:translateY(-8px);

border-color:#063c27;

}

.area-card h4{

color:#063c27;

font-weight:700;

margin-bottom:20px;

}

.area-card ul{

margin:0;

padding:0;

list-style:none;

}

.area-card li{

padding:8px 0;

color:#555;

}

.area-card li::before{

content:"✔";

color:#c89122;

margin-right:10px;

}

@keyframes pulse{

0%{

transform:scale(1);

}

50%{

transform:scale(1.3);

}

100%{

transform:scale(1);

}

}
/*==================================
FAQ
==================================*/

.faq-section{

    padding:100px 0;

    background:#f8f8f5;

}

.faq-badge{

    display:inline-block;

    background:#c89122;

    color:#fff;

    padding:8px 22px;

    border-radius:40px;

    font-size:13px;

    font-weight:600;

    letter-spacing:2px;

    margin-bottom:20px;

}

.section-title h2{

    font-size:38px;

    color:#063c27;

    font-weight:700;

}

.section-title h2 span{

    color:#c89122;

}

.section-title p{

    max-width:700px;

    margin:auto;

    margin-top:15px;

    color:#666;

}

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

.faq-wrapper{

    max-width:900px;

    margin:auto;

}

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

.accordion-item{

    border:none;

    margin-bottom:20px;

    border-radius:15px !important;

    overflow:hidden;

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

}

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

.accordion-button{

    background:#fff;

    color:#063c27;

    font-weight:600;

    font-size:18px;

    padding:22px 25px;

    box-shadow:none !important;

}

.accordion-button:not(.collapsed){

    background:#063c27;

    color:#fff;

}

.accordion-button::after{

    filter:brightness(0);

}

.accordion-button:not(.collapsed)::after{

    filter:brightness(0) invert(1);

}

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

.accordion-body{

    padding:22px 25px;

    color:#666;

    line-height:30px;

    border-top:1px solid #eee;

}

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

.accordion-item:hover{

    transform:translateY(-4px);

    transition:.3s;

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

}

/* Left Border */

.accordion-item{

    border-left:5px solid #c89122;

}

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

@media(max-width:767px){

.faq-section{

padding:70px 0;

}

.section-title h2{

font-size:32px;

}

.accordion-button{

font-size:16px;

padding:18px;

}

.accordion-body{

padding:18px;

}

}

.service-feature{

padding:100px 0;

background:#f7f8f5;

}

.feature-list{

margin-top:60px;

display:flex;

flex-direction:column;

gap:30px;

}

.feature-card{

display:flex;

align-items:flex-start;

gap:25px;

background:#fff;

padding:20px;

border-radius:22px;

border-left:6px solid #c89122;

box-shadow:0 18px 45px rgba(0,0,0,.07);

transition:.4s;

position:relative;

overflow:hidden;

}

.feature-card::before{

content:"";

position:absolute;

top:0;

left:0;

height:100%;

width:0;

background:linear-gradient(90deg,#063c27,#0c4d2d);

opacity:.05;

transition:.4s;

}

.feature-card:hover::before{

width:100%;

}

.feature-card:hover{

transform:translateX(12px);

border-left-color:#063c27;

}

.number{

    width: 50px;
    height: 50px;
    min-width: 50px;

border-radius:20px;

background:linear-gradient(180deg,#063c27,#0c4d2d);

color:#fff;

display:flex;

justify-content:center;

align-items:center;

font-size:34px;

font-weight:800;

}

.feature-content h3{

    font-size: 26px;
    font-weight: 700;
    color: #063c27;
    margin-bottom: 5px;
    line-height: 47px;

}

.feature-content span{

display:inline-block;

color:#c89122;

font-weight:600;

margin-bottom:18px;

}

.feature-content p{

color:#666;

line-height:30px;

}

.feature-content ul{

display:flex;

flex-wrap:wrap;

gap:12px;

margin-top:25px;

padding:0;

list-style:none;

}

.feature-content li{

background:#f5f5f5;

padding:10px 18px;

border-radius:50px;

font-weight:600;

font-size:14px;

}

.feature-content li:hover{

background:#063c27;

color:#fff;

}
/*=====================================
Footer
======================================*/

.footer-section{

    background:#0f1720;

    color:#fff;

    padding:90px 0 0;

    position:relative;

}

.footer-widget h2{

    font-size:42px;

    font-weight:700;

    margin-bottom:20px;

}

.footer-widget h4{

    color:#c89122;

    margin-bottom:35px;

    position:relative;

}

.footer-widget h4::before{

    content:"";

    position:absolute;

    left:-18px;

    top:10px;

    width:8px;

    height:8px;

    background:#c89122;

}

.footer-widget p{

    color:#c7c7c7;

    line-height:30px;

}

/* Button */

.footer-btn{

    display:inline-block;

    margin-top:25px;

    background:#c89122;

    color:#fff;

    padding:15px 38px;

    border-radius:10px;

    font-weight:600;

    transition:.35s;

}

.footer-btn:hover{

    background:#0c4d2d;

    color:#fff;

}

/* Social */

.footer-social{

    margin-top:25px;

    display:flex;

    gap:15px;

}

.footer-social a{

    width:48px;

    height:48px;

    border:1px solid rgba(255,255,255,.2);

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    color:#fff;

    transition:.3s;

}

.footer-social a:hover{

    background:#c89122;

    border-color:#c89122;

}

/* Contact */

.footer-contact{

    list-style:none;

    padding:0;

}

.footer-contact li{

    display:flex;

    gap:18px;

    margin-bottom:28px;

}

.footer-contact span{

    width:55px;

    height:55px;

    background:#0c4d2d;

    border-radius:12px;

    display:flex;

    justify-content:center;

    align-items:center;

    color:#fff;

    font-size:20px;

}

.footer-contact strong{

    display:block;

    color:#c89122;

    margin-bottom:6px;

}

.footer-contact p{

    margin:0;

}

/* Bottom */

.footer-bottom{

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

    margin-top:50px;

    padding:25px 0;

}

.footer-bottom a{

    color:#fff;

    margin-left:20px;

    transition:.3s;

}

.footer-bottom a:hover{

    color:#c89122;

}

/* Scroll */

.scroll-top{

    position:absolute;

    right:25px;

    bottom:25px;

    width:48px;

    height:48px;

    background:#c89122;

    color:#fff;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    transition:.3s;

}

.scroll-top:hover{

    background:#0c4d2d;

}
.who-we-are-section{
    padding:100px 0;
    background:#f8fafb;
}

.who-left .section-tag{
    display:inline-block;
    padding:8px 18px;
    background:#c89122;
    color:#fff;
    font-size:14px;
    border-radius:30px;
    font-weight:600;
    margin-bottom:20px;
}

.who-left h2{
     font-size: 36px;
    font-weight: 700;
    color: #0c4d2d;
    line-height: 1.3;
    margin-bottom: 10px;
}

.who-left p{
    color:#666;
    line-height:1.9;
    margin-bottom:20px;
}

.about-btn{
    display:inline-block;
    margin-top:15px;
    padding:14px 34px;
    background:#0c4d2d;
    color:#fff;
    text-decoration:none;
    border-radius:50px;
    font-weight:600;
    transition:.4s;
}

.about-btn:hover{
    background:#c89122;
    color:#fff;
}

.who-card{
    background:#fff;
    border-radius:18px;
    padding:35px 30px;
    text-align:left;
    height:100%;
    transition:.4s;
    border:1px solid #ececec;
    position:relative;
    overflow:hidden;
}

.who-card::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:5px;
    height:100%;
    background:#c89122;
    transition:.4s;
}

.who-card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 45px rgba(0,0,0,.08);
}

.who-card:hover::before{
    width:100%;
    opacity:.05;
}

.who-card .icon{
    width:70px;
    height:70px;
    background:#0c4d2d;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:18px;
    font-size:28px;
    margin-bottom:25px;
}

.who-card h4{
    font-size:22px;
    font-weight:700;
    color:#0c4d2d;
    margin-bottom:15px;
}

.who-card p{
    color:#666;
    line-height:1.8;
    margin:0;
}

@media(max-width:991px){

.who-we-are-section{
padding:70px 0;
}

.who-left{
margin-bottom:40px;
}

.who-left h2{
font-size:34px;
}

}

@media(max-width:576px){

.who-left h2{
font-size:28px;
}

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

}  
/*=====================================
Breadcrumb
======================================*/

.breadcrumb-section{
    position:relative;
    padding:170px 0 90px;
    background:linear-gradient(rgba(12,77,45,.88),rgba(12,77,45,.88));
    overflow:hidden;
}

.breadcrumb-section::before{
    content:"";
    position:absolute;
    width:280px;
    height:280px;
    background:rgba(200,145,34,.12);
    border-radius:50%;
    top:-100px;
    left:-100px;
}

.breadcrumb-section::after{
    content:"";
    position:absolute;
    width:220px;
    height:220px;
    border:2px dashed rgba(255,255,255,.12);
    border-radius:50%;
    right:-80px;
    bottom:-80px;
}

.breadcrumb-content{
    position:relative;
    z-index:2;
    text-align:center;
}

.breadcrumb-content h1{
    color:#fff;
    font-size:52px;
    font-weight:700;
    margin-bottom:18px;
}

.breadcrumb{
    justify-content:center;
    margin:0;
    padding:0;
    background:none;
}

.breadcrumb-item{
    font-size:16px;
    font-weight:500;
}

.breadcrumb-item a{
    color:#fff;
    text-decoration:none;
    transition:.3s;
}

.breadcrumb-item a:hover{
    color:#c89122;
}

.breadcrumb-item.active{
    color:#c89122;
}

.breadcrumb-item + .breadcrumb-item::before{
    content:"/";
    color:#ffffff;
    padding:0 10px;
}

.breadcrumb i{
    margin-right:6px;
}

/* Responsive */

@media(max-width:991px){

.breadcrumb-section{
    padding:150px 0 70px;
}

.breadcrumb-content h1{
    font-size:42px;
}

}

@media(max-width:576px){

.breadcrumb-section{
    padding:135px 0 60px;
}

.breadcrumb-content h1{
    font-size:32px;
}

.breadcrumb-item{
    font-size:14px;
}

}