/*=========================================================
PROJECTS STATS
=========================================================*/

.projects-stats{

    padding:120px 0;

    background:#fff;

}

.stat-card{

    background:#fff;

    border-radius:20px;

    padding:45px 30px;

    text-align:center;

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

    transition:.35s;

    height:100%;

}

.stat-card:hover{

    transform:translateY(-10px);

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

}

.stat-card i{

    font-size:48px;

    color:var(--primary);

    margin-bottom:20px;

}

.stat-card h2{

    font-size:52px;

    font-weight:800;

    color:var(--secondary);

    margin-bottom:10px;

}

.stat-card span{

    font-size:17px;

    color:#666;

}

/*=========================================================
PROJECT GALLERY
=========================================================*/

.projects-gallery{

    padding:120px 0;

}

.project-filter{

    display:flex;

    justify-content:center;

    flex-wrap:wrap;

    gap:15px;

    margin:60px 0;

}

.project-filter button{

    border:none;

    background:#fff;

    padding:12px 28px;

    border-radius:50px;

    font-weight:600;

    transition:.3s;

    box-shadow:0 10px 25px rgba(0,0,0,.05);

}

.project-filter button.active,

.project-filter button:hover{

    background:var(--primary);

    color:#fff;

}

.project-card{

    position:relative;

    overflow:hidden;

    border-radius:20px;

}

.project-card img{

    width:100%;

    height:380px;

    object-fit:cover;

    transition:.6s;

}

.project-overlay{

    position:absolute;

    inset:0;

    background:linear-gradient(

        rgba(8,35,75,.15),

        rgba(8,35,75,.95)

    );

    display:flex;

    flex-direction:column;

    justify-content:flex-end;

    padding:35px;

    color:#fff;

    opacity:0;

    transition:.4s;

}

.project-card:hover img{

    transform:scale(1.12);

}

.project-card:hover .project-overlay{

    opacity:1;

}

.project-category{

    display:inline-block;

    width:max-content;

    background:var(--primary);

    padding:8px 18px;

    border-radius:50px;

    font-size:13px;

    margin-bottom:15px;

}

.project-overlay h4{

    font-size:24px;

    font-weight:700;

    margin-bottom:10px;

}

.project-overlay p{

    margin-bottom:20px;

}

.project-overlay a{

    width:55px;

    height:55px;

    border-radius:50%;

    background:#fff;

    color:var(--primary);

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:24px;

    text-decoration:none;

}

/*=========================================================
FEATURED PROJECT
=========================================================*/

.featured-project{

    padding:130px 0;

    background:#fff;

}

.featured-image{

    overflow:hidden;

    border-radius:25px;

    box-shadow:0 25px 70px rgba(0,0,0,.12);

}

.featured-image img{

    width:100%;

    display:block;

    transition:.5s;

}

.featured-image:hover img{

    transform:scale(1.05);

}

.featured-description{

    margin:30px 0;

    line-height:1.9;

    color:#666;

}

.project-info{

    display:grid;

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

    gap:20px;

    margin:40px 0;

}

.info-item{

    display:flex;

    gap:15px;

    align-items:flex-start;

}

.info-item i{

    color:var(--primary);

    font-size:26px;

}

.info-item strong{

    display:block;

    color:var(--secondary);

}

.info-item span{

    color:#666;

}

.featured-list{

    list-style:none;

    padding:0;

    margin:40px 0;

}

.featured-list li{

    margin-bottom:15px;

    font-size:17px;

}

.featured-list i{

    color:var(--primary);

    margin-right:10px;

}

/*=========================================================
PROJECTS TRUST
=========================================================*/

.projects-trust{

    position: relative;

    padding: 140px 0;

    background: #F8FAFC;

    overflow: hidden;

}

/*------------------------------------
SECTION HEADER
------------------------------------*/

.projects-trust .section-header{

    max-width: 850px;

    margin: 0 auto 90px;

    text-align: center;

}

.projects-trust .section-badge{

    display: inline-block;

    padding: 10px 28px;

    border-radius: 50px;

    background: rgba(14,78,166,.10);

    color: var(--primary);

    font-size: 14px;

    font-weight: 700;

    letter-spacing: 1px;

    text-transform: uppercase;

    margin-bottom: 25px;

}

.projects-trust .section-title{

    font-size: 54px;

    font-weight: 800;

    color: var(--secondary);

    line-height: 1.2;

    margin-bottom: 30px;

}

.projects-trust .section-description{

    font-size: 19px;

    color: #667085;

    line-height: 1.9;

}

/*------------------------------------
TRUST CARD
------------------------------------*/

.trust-card{

    background: #fff;

    border: 1px solid #EDF2F7;

    border-radius: 22px;

    padding: 45px 35px;

    height: 100%;

    text-align: center;

    transition: all .35s ease;

    box-shadow: 0 20px 55px rgba(15,23,42,.06);

}

.trust-card:hover{

    transform: translateY(-10px);

    box-shadow: 0 30px 70px rgba(14,78,166,.12);

    border-color: rgba(14,78,166,.25);

}

/*------------------------------------
ICON
------------------------------------*/

.trust-icon{

    width: 90px;

    height: 90px;

    margin: 0 auto 30px;

    border-radius: 22px;

    display: flex;

    justify-content: center;

    align-items: center;

    background: linear-gradient(
        135deg,
        var(--primary),
        var(--secondary)
    );

    box-shadow: 0 15px 35px rgba(14,78,166,.25);

}

.trust-icon i{

    color: #fff;

    font-size: 34px;

}

/*------------------------------------
TITLE
------------------------------------*/

.trust-card h4{

    font-size: 28px;

    font-weight: 700;

    color: var(--secondary);

    margin-bottom: 18px;

}

/*------------------------------------
TEXT
------------------------------------*/

.trust-card p{

    font-size: 17px;

    color: #667085;

    line-height: 1.8;

    margin-bottom: 0;

}

/*------------------------------------
RESPONSIVE
------------------------------------*/

@media (max-width:991px){

    .projects-trust{

        padding: 110px 0;

    }

    .projects-trust .section-title{

        font-size: 42px;

    }

}

@media (max-width:768px){

    .projects-trust{

        padding: 90px 0;

    }

    .projects-trust .section-header{

        margin-bottom: 60px;

    }

    .projects-trust .section-title{

        font-size: 34px;

    }

    .projects-trust .section-description{

        font-size: 17px;

    }

    .trust-card{

        padding: 35px 25px;

    }

    .trust-icon{

        width: 75px;

        height: 75px;

    }

    .trust-icon i{

        font-size: 28px;

    }

}

.projects-cta {
    background: url(../images/projects/projects-cta.jpg) center center;
}