/* ==========================================================
   PROJECTS SECTION
========================================================== */

.projects{

    padding:100px 0;

    background:#F8FAFB;

}

/* ==========================
   GRID
========================== */

.projects-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

}

/* ==========================
   CARD
========================== */

.project-card{

    background:#ffffff;

    border-radius:18px;

    overflow:hidden;

    border:1px solid #e8e8e8;

    transition:.35s ease;

}

.project-card:hover{

    transform:translateY(-10px);

    box-shadow:0 20px 45px rgba(0,0,0,.10);

}

/* ==========================
   PROJECT IMAGE
========================== */

.project-card{

    display:flex;

    flex-direction:column;

}

.project-card img{

    width:100%;

    height:260px;

    min-height:260px;

    max-height:260px;

    object-fit:cover;

    object-position:center;

    display:block;

    transition:transform .5s ease;

    background:#f5f5f5;

}

.project-card:hover img{

    transform:scale(1.05);

}

/* ==========================
   CONTENT
========================== */

.project-content{

    padding:28px;

}

.project-category{

    display:inline-block;

    padding:6px 14px;

    border-radius:25px;

    background:#EAF8F0;

    color:#00A651;

    font-size:13px;

    font-weight:700;

    margin-bottom:18px;

}

.project-content h3{

    font-size:26px;

    font-weight:700;

    color:#222;

    margin-bottom:16px;

}

.project-content p{

    color:#666;

    line-height:1.8;

    margin-bottom:24px;

}

.project-content .read-more{

    color:#00A651;

    font-weight:700;

    transition:.3s;

}

.project-content .read-more:hover{

    padding-left:6px;

}