
    .gallery-tabs .btn.active {
        background: #0d6efd;
        color: #fff;
    }

    .gallery-card img,
    .gallery-card video {
        height: 180px;
        width: 100%;
        object-fit: cover;
        border-radius: 6px;
    }

    .gallery-title {
        font-size: 14px;
        font-weight: 600;
    }



    /* 🌈 Gallery Tabs Buttons */
    .gallery-tabs .btn {
        min-width: 140px;
        font-weight: 600;
        border-radius: 30px;
        border: none;
        color: #fff;
        background: linear-gradient(135deg, #0d6efd, #20c997);
        /* blue → green */
        transition: all 0.3s ease;
    }

    /* Hover Effect */
    .gallery-tabs .btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
        background: linear-gradient(135deg, #20c997, #0d6efd);
    }

    /* Active Tab */
    .gallery-tabs .btn.active {
        background: linear-gradient(135deg, #dc3545, #fd7e14);
        /* red → orange */
        box-shadow: 0 6px 18px rgba(220, 53, 69, 0.4);
    }

    /* Mobile friendly */
    @media (max-width: 576px) {
        .gallery-tabs .btn {
            min-width: 110px;
            font-size: 14px;
        }
    }
