@import url('https://fonts.bunny.net/css?family=amita:700');

.gallery-section {
    padding: 4rem 1rem;
    background-color: #f5f7fa;
}

.gallery-title::after {
    content: '';
    width: 80px;
    height: 4px;
    background-color: #1d9c8d;
    display: block;
    margin: 1rem auto 0;
    border-radius: 2px;
}

.gallery-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.img-container {
    width: 400px;
    height: 400px;
    overflow: hidden;
    border-radius: 10px;
    background-color: white;
    border: 5px solid #084265;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}


.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}


.img-container:hover {
    transform: scale(1.03);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.gallery-img:hover {
    transform: scale(1.05);
}
.galleryheader{
    font-size: 42px;
}
.heading{
    font-size: 3rem !important;
    font-weight: 700;
    position: relative;
    color: var(--color-primary);
    font-family: 'Russo One', sans-serif;
    margin-bottom: 3rem;
}