.gallery-section {
    background: #f8f9fa;
}

.gallery-filter {
    margin-bottom: 40px;
}

.gallery-filter button {
    background: transparent;
    border: 2px solid #e0e0e0;
    padding: 10px 25px;
    margin: 5px;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    color: #333;
}

.gallery-filter button:hover,
.gallery-filter button.active {
   background: var(--bg-deep-teal);
    border-color: var(--bg-deep-teal);
    color: #fff;
}

.gallery-grid {
    margin: 0 -15px;
}

.gallery-item {
    padding: 0 15px;
    margin-bottom: 30px;
}

.gallery-box {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.gallery-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.gallery-img {
    position: relative;
    overflow: hidden;
    height: 300px;
}

.gallery-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-box:hover .gallery-img img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-box:hover .gallery-overlay {
    opacity: 1;
}

.gallery-content {
    text-align: center;
    color: #fff;
    padding: 20px;
}

.gallery-content h4 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #fff;
    font-family: var(--font-roboto);
}

.gallery-content p {
    font-size: 14px;
    margin-bottom: 15px;
    opacity: 0.9;
    font-family: var(--font-roboto);
}

.gallery-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    background: var(--main-color, #1e88e5);
    color: #fff;
    border-radius: 50%;
    margin: 0 5px;
    transition: all 0.3s ease;
}

.gallery-links a:hover {
    background: #fff;
    color: var(--main-color, #1e88e5);
    transform: scale(1.1);
}
.gslide-description {
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    padding: 15px;
}

.glightbox-clean .gslide-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
}

.glightbox-clean .gslide-desc {
    font-size: 14px;
    opacity: 0.9;
}