.projects-page{
    padding:80px 0;
}

.projects-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(340px,1fr));
    gap:30px;
    margin-top:50px;
}

.project-card{

    background:white;

    border-radius:16px;

    padding:35px;

    box-shadow:0 10px 30px rgba(0,0,0,.06);

    transition:.3s;
}

.project-card:hover{

    transform:translateY(-8px);

    box-shadow:0 20px 40px rgba(0,0,0,.10);

}

.project-card h3{

    font-size:28px;

    margin-bottom:15px;

}

.project-card p{

    color:#6b7280;

    line-height:1.8;

    margin-bottom:25px;

}

.tech-stack{

    display:flex;

    flex-wrap:wrap;

    gap:10px;

}

.tech-stack span{

    background:#eef4ff;

    color:#2563eb;

    padding:8px 15px;

    border-radius:999px;

    font-size:14px;

    font-weight:600;

}
.projects{

    padding:20px 0 90px;

}

.projects-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));

    gap:28px;

}

.project-card{

    background:white;

    border-radius:16px;

    padding:35px;

    box-shadow:0 10px 30px rgba(0,0,0,.06);

    transition:.3s;

}

.project-card:hover{

    transform:translateY(-6px);

}

.project-card h2{

    margin-bottom:18px;

    font-size:28px;

}

.project-card p{

    color:#555;

    line-height:1.8;

    margin-bottom:25px;

}

.tags{

    display:flex;

    flex-wrap:wrap;

    gap:10px;

}

.tags span{

    background:#eef4ff;

    color:#2563eb;

    padding:8px 16px;

    border-radius:999px;

    font-size:14px;

    font-weight:600;

}
.projects-page{

    padding:80px 0;

}

.page-title{

    font-size:44px;

    margin-bottom:15px;

}

.page-subtitle{

    max-width:700px;

    color:#666;

    margin-bottom:60px;

}

.project-card{

    background:#fff;

    border-radius:14px;

    padding:40px;

    margin-bottom:35px;

    box-shadow:0 8px 25px rgba(0,0,0,.06);

}

.project-card h2{

    margin-bottom:10px;

}

.project-card h4{

    color:#2563eb;

    margin-bottom:30px;

}

.project-section{

    margin-bottom:25px;

}

.project-section strong{

    display:block;

    margin-bottom:8px;

}

.project-tech{

    display:flex;

    flex-wrap:wrap;

    gap:10px;

    margin-top:25px;

}

.project-tech span{

    background:#eef4ff;

    color:#2563eb;

    padding:8px 14px;

    border-radius:20px;

    font-size:14px;

}

.project-status{

    margin-top:25px;

    color:#555;

}