/* ===============================
   GALLERY SECTION
================================ */
.pspl-project-gallery{
    padding:80px 4%;
    background:#f4f7fc;
}

/* ===============================
   FILTER
================================ */
.pspl-filter{
    text-align:center;
    margin-bottom:40px;
}
.pspl-filter button{
    background:#ffffff;
    border:1px solid #dcdfe5;
    padding:10px 24px;
    margin:6px;
    border-radius:6px;
    font-weight:600;
    font-size:14px;
    cursor:pointer;
    transition:all 0.3s ease;
}
.pspl-filter button:hover{
    background:#0b2c4d;
    color:#fff;
    border-color:#0b2c4d;
}
.pspl-filter button.active{
    background:#0b2c4d;
    color:#fff;
    border-color:#0b2c4d;
}

/* ===============================
   GALLERY GRID – 4 IN ONE LINE
================================ */
.pspl-gallery-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:24px;
}

@media(max-width:1024px){
    .pspl-gallery-grid{
        grid-template-columns:repeat(3,1fr);
    }
}
@media(max-width:768px){
    .pspl-gallery-grid{
        grid-template-columns:repeat(2,1fr);
    }
}
@media(max-width:480px){
    .pspl-gallery-grid{
        grid-template-columns:1fr;
    }
}

/* ===============================
   CARD
================================ */
.pspl-gallery-item{
    background:#ffffff;
    border-radius:12px;
    overflow:hidden;
    text-decoration:none;
    display:flex;
    flex-direction:column;
    box-shadow:0 8px 22px rgba(0,0,0,0.12);
    transition:all 0.35s ease;
}
.pspl-gallery-item:hover{
    transform:translateY(-6px);
    box-shadow:0 18px 42px rgba(0,0,0,0.18);
}

/* ===============================
   IMAGE – AUTO FIT (NO CUT)
================================ */
.pspl-thumb{
    background:#f1f3f6;
    padding:12px;
    display:flex;
    align-items:center;
    justify-content:center;
}
.pspl-thumb img{
    width:100%;
    height:160px;
    object-fit:contain;   /* 🔥 image kabhi cut nahi hogi */
    display:block;
}

/* ===============================
   TITLE + SHORT DESC
================================ */
.pspl-info{
    padding:16px 14px 18px;
    text-align:center;
    flex-grow:1;
}
.pspl-info h4{
    margin:0 0 8px;
    font-size:15px;
    font-weight:600;
    color:#0b2c4d;
}
.pspl-info p{
    margin:0;
    font-size:13px;
    color:#555;
    line-height:1.5;
}
