/* =========================================
   PROJECT FILTER SECTION
========================================= */

.project-filter-section{
    width:100%;
    padding:80px 20px;
    background:#f8f8f8;
    overflow:hidden;
}

.filter-top{
    width:100%;
    max-width:1400px;
    margin:auto;
    display:flex;
    justify-content:space-between;
    align-items:flex-end;
    gap:30px;
    margin-bottom:50px;
    flex-wrap:wrap;
}

.filter-heading{
    flex:1;
    min-width:280px;
}

.section-tag{
    display:inline-block;
    padding:8px 18px;
    background:#111;
    color:#fff;
    font-size:12px;
    letter-spacing:2px;
    border-radius:30px;
    margin-bottom:18px;
}

.filter-heading h2{
    font-size:48px;
    line-height:1.2;
    margin-bottom:20px;
    color:#111;
    font-weight:700;
}

.filter-heading p{
    font-size:17px;
    line-height:1.7;
    color:#666;
    max-width:700px;
}

/* =========================================
   FILTER BUTTONS
========================================= */

.filter-buttons{
    display:flex;
    gap:15px;
    flex-wrap:wrap;
    justify-content:flex-start;
}

.filter-btn{
    padding:14px 28px;
    border:none;
    background:#fff;
    color:#111;
    cursor:pointer;
    border-radius:50px;
    font-size:15px;
    font-weight:600;
    transition:0.3s ease;
    box-shadow:0 5px 15px rgba(0,0,0,0.08);
}

.filter-btn:hover{
    background:#111;
    color:#fff;
    transform:translateY(-2px);
}

.filter-btn.active{
    background:#111;
    color:#fff;
}

/* =========================================
   PROJECT GRID
========================================= */

.project-grid{
    width:100%;
    max-width:1400px;
    margin:auto;

    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

/* =========================================
   PROJECT CARD
========================================= */

.project-card{
    background:#fff;
    border-radius:24px;
    overflow:hidden;
    transition:0.4s ease;
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
}

.project-card.hide{
    display:none;
}

.project-card:hover{
    transform:translateY(-8px);
}

.project-link{
    text-decoration:none;
    color:inherit;
    display:block;
}

.project-image{
    position:relative;
    width:100%;
    height:280px;
    overflow:hidden;
}

.project-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:0.5s ease;
}

.project-card:hover img{
    transform:scale(1.08);
}

/* =========================================
   BADGES
========================================= */

.status-badge{
    position:absolute;
    top:20px;
    left:20px;
    padding:10px 18px;
    border-radius:40px;
    color:#fff;
    font-size:13px;
    font-weight:600;
}

.completed-badge{
    background:#0f9d58;
}

.ongoing-badge{
    background:#f4b400;
}

.upcoming-badge{
    background:#4285f4;
}

/* =========================================
   CONTENT
========================================= */

.project-content{
    padding:28px;
}

.project-content h3{
    font-size:26px;
    margin-bottom:14px;
    color:#111;
}

.project-content p{
    font-size:15px;
    line-height:1.8;
    color:#666;
    margin-bottom:25px;
}

.project-footer{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:15px;
    flex-wrap:wrap;
}

.view-project{
    font-weight:600;
    color:#111;
}

/* =========================================
   TABLET
========================================= */

@media(max-width:991px){

    .project-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .filter-heading h2{
        font-size:38px;
    }

}

/* =========================================
   MOBILE
========================================= */

@media(max-width:768px){

    .project-filter-section{
        padding:60px 15px;
    }

    .filter-top{
        flex-direction:column;
        align-items:flex-start;
    }

    .filter-heading h2{
        font-size:30px;
    }

    .filter-heading p{
        font-size:15px;
    }

    .filter-buttons{
        width:100%;
        overflow-x:auto;
        padding-bottom:10px;
        flex-wrap:nowrap;
    }

    .filter-btn{
        white-space:nowrap;
        padding:12px 22px;
        font-size:14px;
    }

    .project-grid{
        grid-template-columns:1fr;
        gap:24px;
    }

    .project-image{
        height:240px;
    }

    .project-content{
        padding:22px;
    }

    .project-content h3{
        font-size:22px;
    }

}

/* =========================================
   SMALL MOBILE
========================================= */

@media(max-width:480px){

    .filter-heading h2{
        font-size:26px;
    }

    .project-image{
        height:220px;
    }

}



/* CARD ANIMATION */

.project-card{
    opacity:1;
    transform:translateY(0);
    transition:
    opacity 0.4s ease,
    transform 0.4s ease;
}

/* SHOW */

.project-card.show{
    opacity:1;
    transform:translateY(0);
    visibility:visible;
    pointer-events:auto;
    position:relative;
}

/* HIDE ANIMATION */

.project-card.hide{
    opacity:0;
    transform:translateY(20px);
}

/* REMOVE FROM LAYOUT */

.project-card.hidden-card{
    display:none;
}





/* Toggle menu */
