/* ===============================
   FEATURED PROJECTS
================================= */

.featured-projects{
    padding:110px 0;
    background:#F8FAFC;
}

.section-title{
    text-align:center;
    max-width:700px;
    margin:0 auto 70px;
}

.section-title span{
    display:inline-block;
    color:#C9A227;
    font-size:16px;
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;
    margin-bottom:12px;
}

.section-title h2{
    font-size:46px;
    color:#0F172A;
    margin-bottom:20px;
    line-height:1.2;
}

.section-title p{
    color:#64748B;
    font-size:18px;
    line-height:1.8;
}

.projects-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:35px;
}

.project-card{
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    transition:.4s ease;
    box-shadow:0 12px 35px rgba(0,0,0,.08);
}

.project-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 45px rgba(0,0,0,.15);
}

.project-image{
    position:relative;
    overflow:hidden;
}

.project-image img{
    width:100%;
    display:block;
    transition:.5s ease;
}

.project-card:hover .project-image img{
    transform:scale(1.08);
}

.project-category{
    position:absolute;
    top:20px;
    left:20px;
    background:#C9A227;
    color:#fff;
    padding:8px 18px;
    border-radius:30px;
    font-size:14px;
    font-weight:700;
}

.project-content{
    padding:28px;
}

.project-content h3{
    font-size:24px;
    color:#0F172A;
    margin-bottom:15px;
}

.project-content p{
    color:#64748B;
    line-height:1.8;
    margin-bottom:25px;
}

.project-info{
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.project-info span{
    color:#64748B;
    font-size:15px;
}

.project-info i{
    color:#C9A227;
    margin-right:6px;
}

.project-info a{
    color:#0F172A;
    font-weight:700;
    text-decoration:none;
    transition:.3s;
}

.project-info a:hover{
    color:#C9A227;
}

.project-info a i{
    margin-left:8px;
    transition:.3s;
}

.project-info a:hover i{
    transform:translateX(6px);
}

.projects-btn{
    text-align:center;
    margin-top:60px;
}

/* ===============================
   RESPONSIVE
================================= */

@media(max-width:991px){

.projects-grid{
    grid-template-columns:repeat(2,1fr);
}

.section-title h2{
    font-size:38px;
}

}

@media(max-width:768px){

.projects-grid{
    grid-template-columns:1fr;
}

.section-title{
    margin-bottom:50px;
}

.section-title h2{
    font-size:32px;
}

.project-content{
    padding:22px;
}

.project-content h3{
    font-size:22px;
}

.project-info{
    flex-direction:column;
    align-items:flex-start;
    gap:12px;
}

}