/* Gallery Section */
.gallery-card {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.gallery-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: all 0.3s ease;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: rgba(0, 51, 102, 0.8); */
    display: flex;
    align-items: end;
    opacity: 0.5;
    transition: all 0.3s ease;
    padding: 0px;
}

.gallery-card:hover .gallery-overlay {
    background: rgba(0, 51, 102, 0.8);
    opacity: 1;
}

.gallery-card:hover img {
    transform: scale(1.1);
}

.gallery-info {
    text-align: center;
    color: var(--white);
    padding: 5px 15px;
    background: #000000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;

}

.gallery-info h4 {
    font-size: 20px;
    margin-bottom: 5px;
}

.gallery-info p {
    margin-bottom: 15px;
    font-size: 14px;
}

.gallery-view-btn {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: var(--accent-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.gallery-view-btn:hover {
    background: var(--white);
    color: var(--accent-color);
    transform: scale(1.1);
}
