/* Banner */
.page-banner{
    background: linear-gradient(135deg,#28a745,#6bcf6b);
    padding: 120px 20px;
    text-align: center;
    color: #fff;
}

.page-banner h1{
    margin: 0;
    font-size: 42px;
    font-weight: 700;
}

/* Gallery Section */
.gallery-images{
    padding: 60px 8%;
    background: #f8f9fa;
}

/* Grid */
.gallery-grid{
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(300px,1fr));
    gap: 30px;
}

/* Card */
.gallery-card{
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
}

.gallery-card:hover{
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

/* Image */
.gallery-card img{
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.gallery-card:hover img{
    transform: scale(1.05);
}

/* Title */
.gallery-card h3{
    text-align: center;
    padding: 15px;
    margin: 0;
    color: #333;
    font-size: 18px;
    font-weight: 600;
}

/* Tablet */
@media(max-width:992px){

    .page-banner h1{
        font-size: 34px;
    }

    .gallery-grid{
        grid-template-columns: repeat(2,1fr);
        gap: 20px;
    }

    .gallery-card img{
        height: 220px;
    }
}

/* Mobile */
@media(max-width:768px){

    .page-banner{
        padding: 60px 15px;
    }

    .page-banner h1{
        font-size: 28px;
    }

    .gallery-images{
        padding: 40px 20px;
    }

    .gallery-grid{
        grid-template-columns: 1fr;
    }

    .gallery-card img{
        height: 220px;
    }

    .gallery-card h3{
        font-size: 16px;
    }
}