/*==========================================
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;
}

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

.project-intro{
    position:relative;
}

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

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

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

/*==========================================
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;
}

/*==========================================
PROJECT FILTER
==========================================*/

.project-filter{
    margin-bottom:50px;
}

.project-filter button{
    border:none;
    outline:none;
    background:#fff;
    color:var(--primary);
    padding:12px 28px;
    margin:8px;
    border-radius:50px;
    font-weight:600;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    transition:.35s;
}

.project-filter button:hover,
.project-filter button.active{
    background:var(--secondary);
    color:var(--primary);
    transform:translateY(-3px);
}

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

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

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

.project-image{
    position:relative;
    overflow:hidden;
}

.project-image img{
    width:100%;
    height:280px;
    object-fit:cover;
    transition:.45s;
}

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

/*==========================================
PROJECT IMAGE OVERLAY
==========================================*/

.project-overlay{
    position:absolute;
    inset:0;
    background:rgba(27,36,51,.75);
    display:flex;
    align-items:center;
    justify-content:center;
    opacity:0;
    visibility:hidden;
    transition:all .35s ease;
}

.project-card:hover .project-overlay{
    opacity:1;
    visibility:visible;
}

.project-overlay .btn{
    transform:translateY(20px);
    transition:all .35s ease;
}

.project-card:hover .project-overlay .btn{
    transform:translateY(0);
}

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

.project-content{
    padding:30px;
}

.project-category{
    display:inline-block;
    background:rgba(212,175,55,.12);
    color:var(--secondary);
    font-size:14px;
    font-weight:700;
    padding:6px 14px;
    border-radius:30px;
    margin-bottom:15px;
    text-transform:uppercase;
    letter-spacing:.5px;
}

.project-content h4{
    font-size:24px;
    font-weight:700;
    color:var(--primary);
    margin-bottom:18px;
    transition:.3s;
}

.project-card:hover .project-content h4{
    color:var(--secondary);
}

/*==========================================
PROJECT INFO LIST
==========================================*/

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

.project-info li{
    display:flex;
    align-items:center;
    margin-bottom:12px;
    color:#666;
    font-size:15px;
}

.project-info li:last-child{
    margin-bottom:0;
}

.project-info i{
    width:34px;
    height:34px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-right:12px;
    background:rgba(212,175,55,.12);
    color:var(--secondary);
    font-size:14px;
}

/*==========================================
ONGOING PROJECT
==========================================*/

.ongoing-project{
    position:relative;
}

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

.ongoing-project img:hover{
    transform:scale(1.03);
}

.ongoing-project p{
    line-height:1.9;
    margin-bottom:20px;
}


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

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

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

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

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

.feature-box h6{
    font-size:20px;
    font-weight:700;
    color:var(--primary);
    margin-bottom:12px;
}

.feature-box p{
    margin:0;
    font-size:15px;
    color:#6c757d;
    line-height:1.8;
}
/*==========================================
IMAGE EFFECTS
==========================================*/

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

.project-card:hover .project-image::after{
    opacity:1;
}

/*==========================================
COMMON SPACING
==========================================*/

.projects-section,
.ongoing-project{
    position:relative;
}

.project-card,
.feature-box,
.project-overlay,
.project-image img{
    transition:all .35s ease;
}

/*==========================================
PROJECT STATISTICS
==========================================*/

.counter-section{
    position:relative;
}

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

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

.counter-box h2{
    font-size:52px;
    font-weight:800;
    color:var(--secondary);
    margin-bottom:15px;
}

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

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

/*==========================================
PROJECT PROCESS
==========================================*/

.process-section{
    position:relative;
}

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

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

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

.process-icon{
    width:90px;
    height:90px;
    margin:0 auto 25px;
    border-radius:20px;
    display:flex;
    align-items:center;
    justify-content:center;
    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{
    color:var(--primary);
    font-weight:700;
    margin-bottom:15px;
}

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

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

.why-project{
    position:relative;
}

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

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

.why-project .feature-box{
    padding:30px 25px;
}

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

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

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

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

.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;
}

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

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

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

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

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

.faq-section{
    position:relative;
}

.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-size:18px;
    font-weight:700;
    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:24px 28px;
    background:#fff;
    color:#666;
    line-height:1.9;
}

/*==========================================
TESTIMONIAL SECTION
==========================================*/

.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:20px;
}

.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;
    border-radius:50%;
    object-fit:cover;
    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;
}

/*==========================================
BUTTON EFFECTS
==========================================*/

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

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

/*==========================================
IMAGE EFFECTS
==========================================*/

img{
    transition:.4s ease;
}

.project-image img:hover,
.why-project img:hover,
.ongoing-project img:hover{
    transform:scale(1.05);
}

/*==========================================
GLOBAL CARD ANIMATION
==========================================*/

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

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

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

@media (max-width:991px){

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

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

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

.project-card,
.counter-box,
.process-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;
}

.project-content{
    padding:25px;
}

.counter-box,
.process-card,
.testimonial-card{
    padding:28px;
}

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

.accordion-body{
    padding:20px;
}

.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;
}

.project-filter button{
    display:block;
    width:100%;
    margin:10px 0;
}

.project-content{
    padding:22px;
}

.project-image img{
    height:220px;
}

.counter-box h2{
    font-size:40px;
}

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

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

.testimonial-card{
    padding:25px;
}

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

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

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

}

/*==========================================
PROJECT FILTER
==========================================*/

.project-filter button{

    padding:14px 32px;
    margin:5px;
    border:none;
    border-radius:50px;
    background:#fff;
    color:#1B2433;
    font-weight:600;
    box-shadow:0 8px 20px rgba(0,0,0,.08);
    transition:.35s ease;
}

.project-filter button:hover,
.project-filter button.active{

    background:#D4AF37;
    color:#fff;

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