/*==========================================
PAGE BANNER
==========================================*/

.page-banner{
    position:relative;
    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
    padding:180px 0 120px;
    overflow:hidden;
}

.page-banner .overlay{
    position:absolute;
    inset:0;
    background:rgba(27,36,51,.72);
}

.banner-content{
    position:relative;
    z-index:2;
    color:#fff;
    text-align:center;
}

.banner-content h1{
    font-size:56px;
    font-weight:800;
    margin-bottom:20px;
    color:#fff;
}

.banner-content p{
    max-width:760px;
    margin:0 auto 30px;
    font-size:18px;
    line-height:1.8;
    color:rgba(255,255,255,.90);
}

.breadcrumb{
    margin:0;
}

.breadcrumb-item,
.breadcrumb-item a{
    color:#fff;
    text-decoration:none;
}

.breadcrumb-item.active{
    color:var(--secondary);
}

.breadcrumb-item+.breadcrumb-item::before{
    color:#fff;
}

/*==========================================
INTRODUCTION
==========================================*/

.services-intro{
    position:relative;
}

.services-intro img{
    width:100%;
    border-radius:20px;
    box-shadow:0 20px 45px rgba(0,0,0,.12);
    transition:.4s;
}

.services-intro img:hover{
    transform:scale(1.02);
}

.services-intro p{
    margin-bottom:20px;
    line-height:1.9;
}

/*==========================================
SECTION TITLE
==========================================*/

.section-title{
    margin-bottom:50px;
}

.section-title span{
    display:inline-block;
    color:var(--secondary);
    font-weight:700;
    letter-spacing:1px;
    text-transform:uppercase;
    margin-bottom:12px;
}

.section-title h2{
    font-size:42px;
    font-weight:800;
    color:var(--primary);
    margin-bottom:20px;
}

.section-title p{
    max-width:720px;
    margin:auto;
    color:#666;
    line-height:1.8;
}

/*==========================================
SERVICE CARDS
==========================================*/

.services-section{
    position:relative;
}

.service-card{
    background:#fff;
    border-radius:20px;
    padding:35px;
    box-shadow:0 15px 35px rgba(0,0,0,.08);
    transition:all .35s ease;
    overflow:hidden;
    position:relative;
}

.service-card::before{
    content:"";
    position:absolute;
    left:0;
    top:0;
    width:5px;
    height:0;
    background:var(--secondary);
    transition:.35s;
}

.service-card:hover::before{
    height:100%;
}

.service-card:hover{
    transform:translateY(-10px);
    box-shadow:0 25px 55px rgba(0,0,0,.12);
}

.service-card h4{
    font-size:24px;
    font-weight:700;
    margin-bottom:18px;
    color:var(--primary);
}

.service-card p{
    color:#666;
    line-height:1.8;
    margin-bottom:20px;
}

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

.service-icon{
    width:80px;
    height:80px;
    border-radius:20px;
    background:rgba(212,175,55,.12);
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:25px;
    transition:.35s;
}

.service-icon i{
    font-size:34px;
    color:var(--secondary);
    transition:.35s;
}

.service-card:hover .service-icon{
    background:var(--secondary);
    transform:rotate(-5deg);
}

.service-card:hover .service-icon i{
    color:var(--primary);
}

/*==========================================
BUTTON SPACING
==========================================*/

.service-card .btn{
    margin-top:15px;
}

/*==========================================
SERVICE HIGHLIGHTS
==========================================*/

.service-highlights{
    position:relative;
}

.service-highlights img{
    width:100%;
    border-radius:20px;
    box-shadow:0 20px 45px rgba(0,0,0,.10);
    transition:.4s ease;
}

.service-highlights img:hover{
    transform:scale(1.02);
}

.service-highlights p{
    margin-bottom:20px;
    line-height:1.9;
}

/*==========================================
FEATURE BOXES
==========================================*/

.feature-box{
    background:#fff;
    border-radius:18px;
    padding:25px 20px;
    text-align:center;
    box-shadow:0 12px 30px rgba(0,0,0,.08);
    transition:all .35s ease;
    height:100%;
}

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

.feature-box i,
.feature-icon{
    width:70px;
    height:70px;
    margin:0 auto 20px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:18px;
    background:rgba(212,175,55,.12);
    color:var(--secondary);
    font-size:30px;
    transition:.35s;
}

.feature-box:hover i,
.feature-box:hover .feature-icon{
    background:var(--secondary);
    color:var(--primary);
    transform:rotate(-6deg);
}

.feature-box h5,
.feature-box h6{
    font-weight:700;
    color:var(--primary);
    margin-bottom:10px;
}

.feature-box p{
    color:#666;
    line-height:1.8;
    margin-bottom:0;
}

/*==========================================
SERVICE LIST
==========================================*/

.service-list{
    margin:0;
    padding:0;
    list-style:none;
}

.service-list li{
    display:flex;
    align-items:center;
    gap:12px;
    margin-bottom:14px;
    color:#555;
    line-height:1.7;
}

.service-list li:last-child{
    margin-bottom:0;
}

.service-list i{
    width:24px;
    height:24px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    background:rgba(212,175,55,.15);
    color:var(--secondary);
    font-size:12px;
    flex-shrink:0;
}

/*==========================================
QUALITY IMAGE
==========================================*/

.quality-image{
    position:relative;
}

.quality-image img{
    width:100%;
    border-radius:22px;
    box-shadow:0 18px 40px rgba(0,0,0,.12);
    transition:.4s;
}

.quality-image img:hover{
    transform:scale(1.03);
}

/*==========================================
IMAGE DECORATION
==========================================*/

.image-box{
    position:relative;
    overflow:hidden;
    border-radius:20px;
}

.image-box img{
    width:100%;
    transition:.45s ease;
}

.image-box:hover img{
    transform:scale(1.08);
}

.image-box::after{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(
        to top,
        rgba(0,0,0,.20),
        transparent
    );
    opacity:0;
    transition:.35s;
}

.image-box:hover::after{
    opacity:1;
}

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

.services-section,
.process-section,
.cta-section{
    position:relative;
}

.services-section .section-title,
.service-highlights .section-title{
    margin-bottom:45px;
}

.service-card .btn{
    margin-top:20px;
    width:auto;
}

/*==========================================
SMOOTH TRANSITIONS
==========================================*/

.service-card,
.feature-box,
.image-box,
.service-icon,
.feature-icon{
    transition:all .35s ease;
}

/*==========================================
CONSTRUCTION PROCESS
==========================================*/

.process-section{
    position:relative;
}

.process-card{
    position:relative;
    background:#fff;
    padding:40px 30px;
    text-align:center;
    border-radius:20px;
    box-shadow:0 15px 35px rgba(0,0,0,.08);
    transition:all .35s ease;
    height:100%;
    overflow:hidden;
}

.process-card:hover{
    transform:translateY(-10px);
    box-shadow:0 25px 50px rgba(0,0,0,.12);
}

.process-number{
    position:absolute;
    top:20px;
    right:25px;
    font-size:48px;
    font-weight:800;
    color:rgba(212,175,55,.12);
}

.process-icon{
    width:90px;
    height:90px;
    margin:0 auto 25px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:20px;
    background:rgba(212,175,55,.12);
    transition:.35s;
}

.process-icon i{
    font-size:36px;
    color:var(--secondary);
    transition:.35s;
}

.process-card:hover .process-icon{
    background:var(--secondary);
    transform:rotate(-8deg);
}

.process-card:hover .process-icon i{
    color:var(--primary);
}

.process-card h5{
    font-weight:700;
    color:var(--primary);
    margin-bottom:15px;
}

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

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

.why-services{
    position:relative;
}

.why-services img{
    width:100%;
    border-radius:20px;
    box-shadow:0 18px 45px rgba(0,0,0,.10);
    transition:.4s;
}

.why-services img:hover{
    transform:scale(1.03);
}

.feature-box{
    border:1px solid rgba(0,0,0,.05);
}

.feature-box .feature-icon{
    width:70px;
    height:70px;
    border-radius:18px;
    margin:0 auto 18px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:rgba(212,175,55,.12);
}

.feature-box .feature-icon i{
    font-size:30px;
    color:var(--secondary);
}

/*==========================================
SERVICE INCLUSIONS
==========================================*/

.inclusion-section{
    position:relative;
}

.inclusion-section .service-card{
    padding:35px;
}

.inclusion-section .service-card h4{
    margin-bottom:20px;
}

.inclusion-section .service-list li{
    padding:10px 0;
    border-bottom:1px solid rgba(0,0,0,.06);
}

.inclusion-section .service-list li:last-child{
    border-bottom:none;
}

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

.cta-section{
    position:relative;
    overflow:hidden;
    text-align:center;
    padding:100px 0;
    background:
        linear-gradient(
            rgba(27,36,51,.92),
            rgba(27,36,51,.92)
        ),
        url('../images/banners/cta-bg.jpg');

    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
}

.cta-section::before{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(
        135deg,
        rgba(212,175,55,.08),
        transparent
    );
}

.cta-section .container{
    position:relative;
    z-index:2;
}

.cta-section h2{
    color:#fff;
    font-size:46px;
    font-weight:800;
    margin-bottom:20px;
}

.cta-section p{
    max-width:760px;
    margin:0 auto 35px;
    color:rgba(255,255,255,.90);
    line-height:1.9;
}

.cta-section .btn{
    margin:8px;
    min-width:190px;
}

/*==========================================
ANIMATIONS
==========================================*/

.process-card,
.service-card,
.feature-box{
    transition:all .35s ease;
}

.process-card:hover,
.service-card:hover,
.feature-box:hover{
    transform:translateY(-10px);
}

.process-icon,
.feature-icon,
.service-icon{
    transition:all .35s ease;
}

.process-card:hover .process-icon,
.feature-box:hover .feature-icon,
.service-card:hover .service-icon{
    box-shadow:0 12px 25px rgba(212,175,55,.25);
}

/*==========================================
FAQ SECTION
==========================================*/

.accordion{
    max-width:900px;
    margin:0 auto;
}

.accordion-item{
    border:none;
    border-radius:18px !important;
    overflow:hidden;
    margin-bottom:20px;
    box-shadow:0 12px 30px rgba(0,0,0,.08);
}

.accordion-button{
    background:#fff;
    color:var(--primary);
    font-weight:700;
    font-size:18px;
    padding:22px 28px;
    box-shadow:none !important;
}

.accordion-button:not(.collapsed){
    background:var(--secondary);
    color:var(--primary);
}

.accordion-button::after{
    filter:brightness(.2);
}

.accordion-body{
    padding:25px 28px;
    color:#666;
    line-height:1.9;
    background:#fff;
}

/*==========================================
TESTIMONIALS
==========================================*/

.testimonial-section{
    position:relative;
}

.testimonial-card{
    position:relative;
    background:#fff;
    padding:35px;
    border-radius:20px;
    box-shadow:0 15px 35px rgba(0,0,0,.08);
    transition:all .35s ease;
    height:100%;
}

.testimonial-card:hover{
    transform:translateY(-10px);
    box-shadow:0 25px 55px rgba(0,0,0,.12);
}

.testimonial-card::before{
    content:"\201C";
    position:absolute;
    top:15px;
    right:25px;
    font-size:80px;
    font-family:Georgia,serif;
    color:rgba(212,175,55,.12);
}

.testimonial-rating{
    color:#FFC107;
    font-size:18px;
    letter-spacing:2px;
    margin-bottom:18px;
}

.testimonial-card p{
    color:#666;
    line-height:1.9;
    margin-bottom:25px;
}

.testimonial-user{
    display:flex;
    align-items:center;
}

.testimonial-user img{
    width:70px;
    height:70px;
    object-fit:cover;
    border-radius:50%;
    border:3px solid var(--secondary);
    margin-right:15px;
}

.testimonial-user h5{
    margin-bottom:5px;
    font-weight:700;
    color:var(--primary);
}

.testimonial-user span{
    color:#777;
    font-size:14px;
}

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

img{
    transition:.4s ease;
}

.btn{
    transition:all .35s ease;
}

.btn:hover{
    transform:translateY(-3px);
}

.service-card,
.process-card,
.feature-box,
.testimonial-card{
    transition:all .35s ease;
}

/*==========================================
RESPONSIVE
==========================================*/

@media (max-width:991px){

.page-banner{
    padding:150px 0 100px;
}

.banner-content h1{
    font-size:44px;
}

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

.process-card,
.service-card,
.testimonial-card{
    margin-bottom:30px;
}

.cta-section{
    padding:80px 0;
}

.cta-section h2{
    font-size:38px;
}

}

@media (max-width:767px){

.page-banner{
    padding:130px 0 80px;
}

.banner-content h1{
    font-size:34px;
}

.banner-content p{
    font-size:16px;
}

.section-title h2{
    font-size:30px;
}

.service-card{
    padding:30px;
}

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

.accordion-button{
    font-size:16px;
    padding:18px 20px;
}

.accordion-body{
    padding:20px;
}

.testimonial-card{
    padding:28px;
}

.testimonial-user{
    flex-direction:column;
    text-align:center;
}

.testimonial-user img{
    margin-right:0;
    margin-bottom:15px;
}

.cta-section h2{
    font-size:30px;
}

.cta-section p{
    font-size:16px;
}

}

@media (max-width:576px){

.banner-content h1{
    font-size:28px;
}

.section-title h2{
    font-size:26px;
}

.service-icon,
.process-icon,
.feature-icon{
    width:70px;
    height:70px;
}

.service-icon i,
.process-icon i,
.feature-icon i{
    font-size:28px;
}

.service-card,
.process-card,
.testimonial-card{
    padding:25px;
}

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

.cta-section .btn{
    width:100%;
    margin:8px 0;
}

.hero-buttons{
    display:flex;
    flex-direction:column;
}

}

/*==========================================
END OF FILE
==========================================*/