/* ===== GALLERY WRAPPER ===== */

.ptv-gallery-wrapper {
padding:100px 0;
background:linear-gradient(180deg,#0c0c0c,#111);
}

/* ===== HEADING ===== */

.ptv-gallery-main-heading{
color:#fba931;
font-weight:700;
text-shadow: 0 0 20px rgba(255,169,49,1);
    font-size: 3rem;
}

.ptv-gallery-subtext{
color:#bbb;
margin-top:10px;
}

/* ===== CARD ===== */

.ptv-gallery-card{
overflow:hidden;
border-radius:18px;
margin-bottom:25px;
cursor:pointer;
}

/* ⭐ FIXED IMAGE SIZE */

.ptv-gallery-img{
width:100%;
height:260px;
object-fit:cover;
transition:0.4s;
}

.ptv-gallery-card:hover .ptv-gallery-img{
transform:scale(1.08);
}

/* ===== LIGHTBOX ===== */

.ptv-gallery-lightbox{
position:fixed;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,0.95);
display:none;
justify-content:center;
align-items:center;
z-index:9999;
}

.ptv-gallery-lightbox img{
max-width:90%;
max-height:90%;
border-radius:12px;
box-shadow:0 0 25px #fba931;
}

/* CLOSE BUTTON */

.ptv-gallery-close{
position:absolute;
top:30px;
right:40px;
font-size:40px;
color:#fba931;
cursor:pointer;
}

/* ===== RESPONSIVE ===== */

@media(max-width:768px){

.ptv-gallery-img{
height:200px;
}

.ptv-gallery-main-heading{
font-size:28px;
}

}
