/* Gallery Tabs Styles */
.gallery-tabs {
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 10px;
}

.gallery-tabs .nav-item {
    margin: 0;
}

.gallery-tabs .nav-link {
    border-radius: 30px;
    padding: 12px 25px;
    font-weight: 600;
    color: #666;
    background: #f8f9fa;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.gallery-tabs .nav-link:hover {
    background: #e9ecef;
    color: #333;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.gallery-tabs .nav-link.active {
    background: linear-gradient(135deg, #000000 0%, #535353 100%);
    color: white;
    border-color: #ffffff;
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.gallery-tabs .nav-link i {
    font-size: 14px;
}

/* Gallery Item Styles */
.gallery-item {
    position: relative;
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

.gallery-item.hidden {
    display: none;
}

.service-badge {
    position: absolute;
    top: 10px;
    left: 25px;
    z-index: 10;
}

.service-badge .badge {
    font-size: 12px;
    padding: 6px 12px;
    border-radius: 20px;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    display: none;
}

/* Responsive */
@media (max-width: 768px) {
    .gallery-tabs {
        justify-content: flex-start !important;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: thin;
    }

    .gallery-tabs .nav-link {
        padding: 10px 20px;
        font-size: 14px;
        white-space: nowrap;
    }
}

