*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

body{
    background:black;
}

/* Gallery Section */
.gallery-section{
    padding:80px 5%;
    text-align:center;
    overflow:hidden;
}

.gallery-heading{
     color:#ff8c2b;
     font-size:42px;
    font-family:'Oswald',sans-serif;
    font-weight:700;
    text-transform:uppercase;
    margin-bottom:15px;
}

.gallery-description{
    max-width:700px;
    margin:0 auto 50px;
    color:#ffffff;
    font-size:17px;
    line-height:1.7;
}

/* Gallery Grid */
.gallery-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
    max-width:1200px;
    margin:auto;
}

/* Gallery Item */
.gallery-item{
    position:relative;
    overflow:hidden;
    border-radius:15px;
    height:280px; /* Image size control */
    cursor:pointer;
    opacity:0;
    transform:translateY(50px);
    transition:all .8s ease;
    box-shadow:0 8px 25px rgba(0,0,0,0.15);
}

.gallery-item.show{
    opacity:1;
    transform:translateY(0);
}

.gallery-item img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:0.6s ease;
}

/* Overlay */
.gallery-item::after{
    content:'';
    position:absolute;
    inset:0;
    background:rgba(0,0,0,0.35);
    opacity:0;
    transition:0.4s ease;
}

.gallery-item::before{
    content:'+91 6376242797';
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    color:#fff;
    font-size:20px;
    font-weight:600;
    opacity:0;
    z-index:2;
    transition:0.4s ease;
}

/* Hover Effects */
.gallery-item:hover img{
    transform:scale(1.08);
}

.gallery-item:hover::after{
    opacity:1;
}

.gallery-item:hover::before{
    opacity:1;
}

/* Tablet */
@media (max-width: 992px){

    .gallery-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .gallery-item{
        height:250px;
    }

    .gallery-heading{
        font-size:40px;
    }
}

/* Mobile */
@media (max-width: 576px){

    .gallery-section{
        padding:60px 20px;
    }

    .gallery-heading{
        font-size:32px;
    }

    .gallery-description{
        font-size:15px;
        margin-bottom:30px;
    }

    .gallery-grid{
        grid-template-columns:1fr;
        gap:15px;
    }

    .gallery-item{
        height:220px;
    }
}