/*==================================================
    FEATURED PROJECTS SECTION
==================================================*/

.featured-projects{

    padding:100px 0;

    background:#f8fafc;

}

/*==================================================
    SECTION HEADING
==================================================*/

.featured-projects .section-heading{

    max-width:800px;

    margin:0 auto 70px;

    text-align:center;

}

.featured-projects .section-badge{

    display:inline-block;

    padding:8px 22px;

    background:#e8f8ef;

    color:#00A651;

    border-radius:50px;

    font-size:15px;

    font-weight:700;

    margin-bottom:20px;

}

.featured-projects .section-heading h2{

    font-size:44px;

    font-weight:800;

    color:#1f2937;

    line-height:1.3;

    margin-bottom:18px;

}

.featured-projects .section-heading p{

    font-size:17px;

    color:#6b7280;

    line-height:1.8;

}

/*==================================================
    GRID
==================================================*/

.featured-projects-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

}

/*==================================================
    CARD
==================================================*/

.project-card{

    background:#ffffff;

    border-radius:22px;

    overflow:hidden;

    border:1px solid #e5e7eb;

    transition:.35s ease;

    display:flex;

    flex-direction:column;

    height:100%;

}

.project-card:hover{

    transform:translateY(-8px);

    border-color:#00A651;

    box-shadow:0 18px 40px rgba(0,0,0,.10);

}

/*==================================================
    IMAGE
==================================================*/

.project-image{

    position:relative;

    overflow:hidden;

    height:240px;

}

.project-image img{

    width:100%;

    height:100%;

    object-fit:cover;

    display:block;

    transition:.5s;

}

.project-card:hover .project-image img{

    transform:scale(1.08);

}

/*==================================================
    CONTENT
==================================================*/

.project-content{

    padding:30px;

    display:flex;

    flex-direction:column;

    flex:1;

}

/*==================================================
    CATEGORY BADGE
==================================================*/

.project-category{

    display:inline-block;

    align-self:flex-start;

    padding:8px 18px;

    background:#ecfdf3;

    color:#00A651;

    border-radius:40px;

    font-size:14px;

    font-weight:700;

    margin-bottom:18px;

}

/*==================================================
    TITLE
==================================================*/

.project-content h3{

    font-size:26px;

    font-weight:700;

    color:#1f2937;

    line-height:1.4;

    margin-bottom:18px;

}

/*==================================================
    DESCRIPTION
==================================================*/

.project-content p{

    color:#6b7280;

    font-size:16px;

    line-height:1.8;

    margin-bottom:25px;

    flex:1;

}

/*==================================================
    TECHNOLOGY TAGS
==================================================*/

.project-tech{

    display:flex;

    flex-wrap:wrap;

    gap:10px;

    margin-bottom:30px;

}

.project-tech span{

    padding:8px 16px;

    background:#f3f4f6;

    border-radius:30px;

    font-size:14px;

    font-weight:600;

    color:#374151;

    transition:.3s;

}

.project-card:hover .project-tech span{

    background:#00A651;

    color:#ffffff;

}

/*==================================================
    BUTTON
==================================================*/

.project-content .btn{

    margin-top:auto;

    align-self:flex-start;

    padding:12px 28px;

    border-radius:8px;

    font-weight:600;

    transition:.3s;

}
/*==================================================
    BUTTON HOVER
==================================================*/

.project-content .btn:hover{

    transform:translateY(-2px);

}

/*==================================================
    LARGE DESKTOP
==================================================*/

@media (min-width:1400px){

    .featured-projects{

        padding:120px 0;

    }

}

/*==================================================
    LAPTOP
==================================================*/

@media (max-width:1200px){

    .featured-projects-grid{

        gap:24px;

    }

    .project-content{

        padding:25px;

    }

    .project-content h3{

        font-size:23px;

    }

}

/*==================================================
    TABLET
==================================================*/

@media (max-width:992px){

    .featured-projects{

        padding:80px 0;

    }

    .featured-projects .section-heading{

        margin-bottom:50px;

    }

    .featured-projects .section-heading h2{

        font-size:36px;

    }

    .featured-projects-grid{

        grid-template-columns:repeat(2,1fr);

    }

}

/*==================================================
    MOBILE
==================================================*/

@media (max-width:768px){

    .featured-projects-grid{

        grid-template-columns:1fr;

    }

    .project-image{

        height:220px;

    }

    .project-content{

        padding:22px;

    }

    .project-content h3{

        font-size:22px;

    }

}

/*==================================================
    SMALL MOBILE
==================================================*/

@media (max-width:576px){

    .featured-projects{

        padding:65px 0;

    }

    .featured-projects .section-heading{

        margin-bottom:40px;

    }

    .featured-projects .section-heading h2{

        font-size:30px;

    }

    .featured-projects .section-heading p{

        font-size:15px;

    }

    .project-image{

        height:200px;

    }

    .project-content{

        padding:20px;

    }

    .project-category{

        font-size:13px;

    }

    .project-content h3{

        font-size:20px;

    }

    .project-content p{

        font-size:15px;

    }

    .project-tech{

        gap:8px;

    }

    .project-tech span{

        font-size:13px;

        padding:7px 14px;

    }

    .project-content .btn{

        width:100%;

        text-align:center;

    }

}