       .gallery-container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .gallery-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 40px;
            flex-wrap: wrap;
            gap: 20px;
        }
        
        .gallery-title {
            font-size: 26px;
            font-weight: 800;
            background: linear-gradient(45deg, #ff0033, #ff9999);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
            position: relative;
            padding-bottom: 10px;
        }
        
        .gallery-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100px;
            height: 4px;
            background: linear-gradient(90deg, #ff0033, #ff9999);
            border-radius: 2px;
        }
        
        .gallery-filters {
            display: flex;
            gap: 15px;
            flex-wrap: wrap;
        }
        
        .filter-btn {
            background: rgba(255, 255, 255, 0.1);
            color: white;
            border: none;
            padding: 10px 20px;
            border-radius: 30px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .filter-btn.active, .filter-btn:hover {
            background: linear-gradient(45deg, #ff0033, #ff3366);
            transform: translateY(-2px);
        }
        
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 25px;
            perspective: 1000px;
        }
        
        .gallery-item {
            border-radius: 16px;
            overflow: hidden;
            position: relative;
            transform-style: preserve-3d;
            transition: transform 0.5s ease, box-shadow 0.5s ease;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
            cursor: pointer;
            aspect-ratio: 4/3;
        }
        
        .gallery-item:hover {
            transform: translateZ(20px) rotateY(5deg) rotateX(5deg);
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.6), 0 0 30px rgba(255, 0, 51, 0.3);
            z-index: 2;
        }
        
        .gallery-image {
            width: 100%;
            height: 100%;
            position: absolute;
            top: 0;
            left: 0;
        }
        
        .gallery-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .gallery-item:hover .gallery-image img {
            transform: scale(1.1);
        }
        
        .gallery-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
            padding: 25px 20px;
            transform: translateZ(15px);
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        .gallery-item:hover .gallery-overlay {
            opacity: 1;
        }
        
        .gallery-content {
            position: relative;
            z-index: 2;
        }
        
        .gallery-item-title {
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 10px;
            line-height: 1.3;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
        }
        
        .gallery-item-desc {
            font-size: 14px;
            color: #ccc;
            line-height: 1.5;
            margin-bottom: 15px;
        }
        
        .gallery-meta {
            display: flex;
            align-items: center;
            gap: 15px;
            font-size: 12px;
            color: #ccc;
        }
        
        .gallery-meta-item {
            display: flex;
            align-items: center;
            gap: 5px;
        }
        
        .gallery-meta-item i {
            color: #ff0033;
        }
        
        .gallery-bottom-shadow {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 150px;
            background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
            z-index: 1;
            border-radius: 0 0 16px 16px;
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        .gallery-item:hover .gallery-bottom-shadow {
            opacity: 1;
        }
        
        .gallery-view-more {
            text-align: center;
            margin-top: 50px;
        }
        
        .view-more-btn {
            background: linear-gradient(45deg, #ff0033, #ff3366);
            color: white;
            border: none;
            padding: 15px 40px;
            border-radius: 50px;
            font-weight: 700;
            font-size: 16px;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(255, 0, 51, 0.4);
            transform: translateZ(20px);
            display: inline-flex;
            align-items: center;
            gap: 10px;
            position: relative;
            overflow: hidden;
            text-decoration: none;
        }
        
        .view-more-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: 0.5s;
        }
        
        .view-more-btn:hover::before {
            left: 100%;
        }
        
        .view-more-btn:hover {
            transform: translateZ(20px) translateY(-5px);
            box-shadow: 0 10px 20px rgba(255, 0, 51, 0.6);
            background: linear-gradient(45deg, #ff3366, #ff0033);
        }
        
        /* Lightbox Modal */
        .gallery-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.9);
            z-index: 1000;
            justify-content: center;
            align-items: center;
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        .gallery-modal.active {
            display: flex;
            opacity: 1;
        }
        
        .modal-content {
            max-width: 90%;
            max-height: 90%;
            transform-style: preserve-3d;
            transform: scale(0.9);
            transition: transform 0.3s ease;
        }
        
        .modal-content img {
            max-width: 100%;
            max-height: 80vh;
            border-radius: 10px;
            box-shadow: 0 0 30px rgba(255, 0, 51, 0.5);
        }
        
        .gallery-modal.active .modal-content {
            transform: scale(1);
        }
        
        .close-modal {
            position: absolute;
            top: 20px;
            right: 20px;
            font-size: 30px;
            color: white;
            cursor: pointer;
            transition: color 0.3s ease;
            z-index: 1001;
        }
        
        .close-modal:hover {
            color: #ff0033;
        }

      @media (max-width: 1100px) {
		  .filter-btn {
			  font-size:13px;
		  }
		  
		  .gallery-title

 {
    font-size: 26px;
    font-weight: 800;
    background: linear-gradient(45deg, #ff0033, #ff9999);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
    padding-bottom: 10px;
		  
}
}