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

.featured-project{
    background:#fff;
}

.featured-image{
    overflow:hidden;
    border-radius:24px;
    box-shadow:var(--shadow);
}

.featured-image img{
    width:100%;
    transition:.5s;
}

.featured-image:hover img{
    transform:scale(1.05);
}

.project-meta{
    display:flex;
    flex-direction:column;
    gap:18px;
    margin:35px 0;
}

.project-meta div{
    display:flex;
    align-items:center;
    gap:12px;
    padding:15px 18px;
    background:#f8f9fc;
    border-radius:14px;
}

.project-meta i{
    width:45px;
    height:45px;
    border-radius:12px;
    background:rgba(10,47,143,.08);
    color:var(--primary);
    display:flex;
    align-items:center;
    justify-content:center;
}

/*==================================================
PROJECTS GRID
==================================================*/

.projects-grid{
    background:#f7f8fa;
}

.project-item{
    background:#fff;
    border-radius:22px;
    overflow:hidden;
    box-shadow:var(--shadow-sm);
    transition:.35s;
    height:100%;
}

.project-item:hover{
    transform:translateY(-10px);
    box-shadow:var(--shadow);
}

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

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

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

.project-status{
    position:absolute;
    top:20px;
    left:20px;
    background:var(--secondary);
    color:#fff;
    padding:8px 16px;
    border-radius:40px;
    font-size:12px;
    font-weight:600;
}

.project-body{
    padding:28px;
}

.project-body h3{
    margin-bottom:15px;
}

.project-body p{
    line-height:1.8;
    margin-bottom:25px;
}

.project-body ul{
    margin-bottom:25px;
}

.project-body ul li{
    display:flex;
    align-items:center;
    gap:10px;
    margin-bottom:14px;
    color:#555;
}

.project-body ul li i{
    color:var(--primary);
    width:18px;
}

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

@media(max-width:991px){

    .featured-project{
        text-align:center;
    }

    .project-meta div{
        justify-content:center;
    }

}

@media(max-width:768px){

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

    .project-body{
        padding:22px;
    }

    .project-meta{
        gap:12px;
    }

}