/* Gallery Styles */
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 30px;
}

.gallery-image {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.gallery-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(6, 126, 255, 0.9), rgba(13, 110, 253, 0.8));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 10px;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover .gallery-image img {
    transform: scale(1.1);
}

.gallery-content {
    text-align: center;
    color: white;
    padding: 20px;
}

.gallery-content h5 {
    margin-bottom: 10px;
    font-size: 1.5rem;
}

.gallery-content p {
    margin-bottom: 15px;
    font-size: 1rem;
    opacity: 0.9;
}

.gallery-content .badge {
    font-size: 0.9rem;
    padding: 8px 16px;
}

/* Responsive Gallery */
@media (max-width: 768px) {
    .gallery-image img {
        height: 250px;
    }
    
    .gallery-content h5 {
        font-size: 1.3rem;
    }
    
    .gallery-content p {
        font-size: 0.9rem;
    }
}

/* Work Stats */
.work-stat {
    padding: 20px;
    text-align: center;
    transition: transform 0.3s ease;
}

.work-stat:hover {
    transform: translateY(-5px);
}

.work-stat i {
    margin-bottom: 15px;
}

.work-stat h3 {
    color: #fff;
    margin-bottom: 10px;
}

.work-stat p {
    color: #adb5bd;
    margin: 0;
}

/* Custom badge colors */
.badge.bg-purple {
    background-color: #6f42c1 !important;
}

.badge.bg-orange {
    background-color: #fd7e14 !important;
}

.badge.bg-indigo {
    background-color: #6610f2 !important;
}

.badge.bg-green {
    background-color: #198754 !important;
}
