      .gallery-section{
    background: #f8f9fa;
}

.gallery-title{
    font-size: 42px;
    font-weight: 700;
    color: #222;
}

.gallery-subtitle{
    color: #777;
    margin-top: 10px;
}

.gallery-card{
    overflow: hidden;
    border-radius: 20px;
    position: relative;
    cursor: pointer;
}

.gallery-card img{
    width: 100%;
    height: 320px;
    object-fit: cover;
    border-radius: 20px;
    transition: 0.5s ease;
}

.gallery-card:hover img{
    transform: scale(1.08);
}
  