/*=========================================
PROJECT GRID
=========================================*/

.projects-section{

    padding:100px 0;

    background:#F8FAFC;

}

.projects-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:35px;

}

.project-card{

    background:#fff;

    border-radius:25px;

    overflow:hidden;

    transition:.4s;

    box-shadow:0 15px 35px rgba(0,0,0,.08);

}

.project-card:hover{

    transform:translateY(-10px);

    box-shadow:0 25px 55px rgba(30,166,232,.22);

}

.project-card img{

    width:100%;

    height:230px;

    object-fit:cover;

}

.project-content{

    padding:30px;

}

.project-tag{

    display:inline-block;

    background:#E0F2FE;

    color:#0284C7;

    padding:8px 16px;

    border-radius:25px;

    font-size:13px;

    font-weight:600;

    margin-bottom:18px;

}

.project-content h3{

    font-size:26px;

    color:#081B29;

    margin-bottom:15px;

}

.project-content p{

    color:#64748B;

    line-height:1.8;

    margin-bottom:25px;

}

.project-content a{

    color:#1EA6E8;

    font-weight:700;

}
/*=========================================
PROJECT FILTER
=========================================*/

.project-filter{

    padding:50px 0;

    background:#F8FAFC;

}

.filter-buttons{

    display:flex;

    justify-content:center;

    align-items:center;

    flex-wrap:wrap;

    gap:18px;

}

.filter-buttons button{

    background:#ffffff;

    color:#081B29;

    border:1px solid #DCE3EA;

    border-radius:50px;

    padding:14px 28px;

    font-size:15px;

    font-weight:600;

    cursor:pointer;

    transition:0.35s ease;

    box-shadow:0 5px 15px rgba(0,0,0,.05);

}

.filter-buttons button:hover{

    background:#1EA6E8;

    color:#ffffff;

    border-color:#1EA6E8;

    transform:translateY(-3px);

    box-shadow:0 12px 25px rgba(30,166,232,.25);

}

.filter-buttons button.active{

    background:#1EA6E8;

    color:#ffffff;

    border-color:#1EA6E8;

    box-shadow:0 12px 25px rgba(30,166,232,.30);

}
/*=========================================
PROJECT GALLERY
=========================================*/

.project-category{

    padding:90px 0;

}

.project-category h2{

    font-size:42px;
    color:#ffffff;

    margin-bottom:40px;

    position:relative;

    font-weight:700;

}


.project-category h2::after{

    content:"";

    width:90px;

    height:4px;

    background:#1EA6E8;

    position:absolute;

    left:0;

    bottom:-12px;

    border-radius:20px;

}

.project-gallery{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));

    gap:30px;

}

.project-gallery img{

    width:100%;
    height:300px;

    object-fit:contain;

    background:#fff;

    border-radius:20px;

}

.project-gallery img:hover{

    transform:scale(1.03);

    box-shadow:0 25px 60px rgba(30,166,232,.22);

}