
        .portfolio-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .portfolio-item {
            margin-bottom: 30px;
            overflow: hidden;
            position: relative;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            height: 100%; /* Ensure all items have same height */
        }
        
        .portfolio-item:hover {
            box-shadow: 0 15px 30px rgba(0,0,0,0.2);
        }
        
        .portfolio-image {
            position: relative;
            overflow: hidden;
            border-radius: 10px 10px 0 0;
            background: #f0f0f0;
            height: 250px; /* Fixed height for all images */
            width: 100%;
        }
        
        .portfolio-image img {
            width: 100%;
            height: 100%;
            object-fit: cover; /* This ensures images fill the container without distortion */
            transition: all 0.5s ease;
            border-radius: 10px 10px 0 0;
        }
        
        .portfolio-item:hover .portfolio-image img {
            transform: scale(1.1);
        }
        
        .portfolio-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.8);
            opacity: 0;
            transition: all 0.4s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 20px;
            border-radius: 10px;
        }
        
        .portfolio-item:hover .portfolio-overlay {
            opacity: 1;
        }
        
        .portfolio-content {
            color: white;
            transform: translateY(20px);
            transition: all 0.4s ease;
            width: 100%;
        }
        
        .portfolio-item:hover .portfolio-content {
            transform: translateY(0);
        }
        
        .portfolio-content h3 {
            font-size: 22px;
            margin-bottom: 10px;
            color: #FFD700;
        }
        
        .portfolio-content p {
            margin-bottom: 20px;
            font-size: 14px;
            line-height: 1.4;
        }
        
        .portfolio-btn {
            display: inline-block;
            padding: 8px 20px;
            background: #FFD700;
            color: #000;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            border: 2px solid #FFD700;
        }
        
        .portfolio-btn:hover {
            background: transparent;
            color: #FFD700;
        }
        
        .portfolio-links {
            margin-top: 15px;
        }
        
        .portfolio-links a {
            display: inline-block;
            width: 40px;
            height: 40px;
            line-height: 40px;
            background: rgba(255,215,0,0.3);
            color: #FFD700;
            border-radius: 50%;
            margin: 0 5px;
            transition: all 0.3s ease;
        }
        
        .portfolio-links a:hover {
            background: #FFD700;
            color: #000;
        }
        
        .search-container {
            text-align: center;
            margin: 30px 0;
            position: relative;
        }
        
        .search-bar {
            max-width: 500px;
            margin: 0 auto;
            position: relative;
        }
        
        .search-bar input {
            width: 100%;
            padding: 12px 20px;
            border: 2px solid #FFD700;
            border-radius: 30px;
            font-size: 16px;
            outline: none;
            background: rgba(255, 255, 255, 0.1);
            color: #fff;
        }
        
        .search-bar input:focus {
            border-color: #FFD700;
            box-shadow: 0 0 0 0.2rem rgba(255, 215, 0, 0.25);
        }
        
        .search-bar input::placeholder {
            color: rgba(255, 255, 255, 0.7);
        }
        
        .search-bar button {
            position: absolute;
            right: 5px;
            top: 5px;
            background: #FFD700;
            border: none;
            border-radius: 50%;
            width: 40px;
            height: 40px;
            cursor: pointer;
            color: #000;
            transition: all 0.3s ease;
        }
        
        .search-bar button:hover {
            background: #000;
            color: #FFD700;
        }
        
        .no-results {
            text-align: center;
            padding: 50px;
            color: #FFD700;
            font-size: 18px;
            display: none;
        }
        
        /* New Filter Button Styles */
        .filter-btn {
            margin: 5px;
            color: #FFD700; 
            border: 1px solid #FFD700;
            background: transparent;
            padding: 8px 15px;
            border-radius: 5px;
            transition: all 0.3s;
            font-size: 14px;
        }
        .filter-btn:hover {
            background: #FFD700;
            color: #000;
        }
        .filter-btn.active {
            background: #FFD700;
            color: #000;
            border-color: #FFD700;
        }

        /* Video Thumbnail Styles */
        .video-thumbnail {
            position: relative;
            cursor: pointer;
            height: 100%;
        }
        
        .play-button {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 60px;
            height: 60px;
            background: rgba(255, 215, 0, 0.9);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #000;
            font-size: 24px;
            transition: all 0.3s ease;
            opacity: 0.9;
        }
        
        .video-thumbnail:hover .play-button {
            background: #FFD700;
            transform: translate(-50%, -50%) scale(1.1);
            opacity: 1;
        }
        
        .play-button i {
            margin-left: 3px;
        }

        /* Image Lightbox Styles */
        .image-lightbox {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.95);
            display: none;
            justify-content: center;
            align-items: center;
            z-index: 9999;
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        .image-lightbox.active {
            display: flex;
            opacity: 1;
        }
        
        .lightbox-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            cursor: pointer;
        }
        
        .lightbox-content {
            position: relative;
            max-width: 90%;
            max-height: 90%;
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
            transform: scale(0.7);
            transition: transform 0.3s ease;
            overflow: hidden;
        }
        
        .image-lightbox.active .lightbox-content {
            transform: scale(1);
        }
        
        .lightbox-close {
            position: absolute;
            top: 15px;
            right: 15px;
            background: rgba(255, 215, 0, 0.9);
            border: none;
            border-radius: 50%;
            width: 40px;
            height: 40px;
            color: #000;
            font-size: 18px;
            cursor: pointer;
            z-index: 10;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .lightbox-close:hover {
            background: #FFD700;
            transform: rotate(90deg);
        }
        
        .lightbox-image-container {
            width: 100%;
            background: #000;
            display: flex;
            justify-content: center;
            align-items: center;
        }
        
        .lightbox-image-container img {
            max-width: 100%;
            max-height: 80vh;
            object-fit: contain;
        }
        
        .lightbox-info {
            padding: 20px;
            color: white;
            background: #1a1a1a;
            text-align: center;
        }
        
        .lightbox-info h3 {
            color: #FFD700;
            margin-bottom: 10px;
            font-size: 24px;
        }
        
        .lightbox-info p {
            color: #ccc;
            line-height: 1.6;
        }

        /* Video Modal Styles */
        .video-modal {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.9);
            display: none;
            justify-content: center;
            align-items: center;
            z-index: 9999;
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        .video-modal.active {
            display: flex;
            opacity: 1;
        }
        
        .modal-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            cursor: pointer;
        }
        
        .modal-content {
            position: relative;
            background: #1a1a1a;
            border-radius: 15px;
            max-width: 90%;
            max-height: 90%;
            width: 800px;
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
            transform: scale(0.7);
            transition: transform 0.3s ease;
            overflow: hidden;
        }
        
        .video-modal.active .modal-content {
            transform: scale(1);
        }
        
        .modal-close {
            position: absolute;
            top: 15px;
            right: 15px;
            background: rgba(255, 215, 0, 0.9);
            border: none;
            border-radius: 50%;
            width: 40px;
            height: 40px;
            color: #000;
            font-size: 18px;
            cursor: pointer;
            z-index: 10;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .modal-close:hover {
            background: #FFD700;
            transform: rotate(90deg);
        }
        
        .video-container {
            width: 100%;
            background: #000;
        }
        
        .video-container video {
            width: 100%;
            height: auto;
            display: block;
        }
        
        .video-info {
            padding: 20px;
            color: white;
        }
        
        .video-info h3 {
            color: #FFD700;
            margin-bottom: 10px;
            font-size: 24px;
        }
        
        .video-info p {
            color: #ccc;
            line-height: 1.6;
        }
        
        /* Responsive Design for Modals */
        @media (max-width: 768px) {
            .modal-content,
            .lightbox-content {
                width: 95%;
                max-height: 80%;
            }
            
            .video-info,
            .lightbox-info {
                padding: 15px;
            }
            
            .video-info h3,
            .lightbox-info h3 {
                font-size: 20px;
            }
            
            /* Adjust image height for mobile */
            .portfolio-image {
                height: 200px;
            }
        }

        /* Lazy loading styles */
        .lazy-image {
            opacity: 0;
            transition: opacity 0.3s;
        }
        
        .lazy-image.loaded {
            opacity: 1;
        }

        /* See More Buttons */
        .see-more-container {
            text-align: center;
            margin-top: 40px;
            display: none;
        }
        
        .see-more-button {
            display: inline-flex;
            align-items: center;
            padding: 12px 30px;
            background: #FFD700;
            color: #000;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            border: 2px solid #FFD700;
        }
        
        .see-more-button:hover {
            background: transparent;
            color: #FFD700;
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(255, 215, 0, 0.2);
        }
        
        .see-more-icon {
            margin-left: 10px;
        }
        
        /* Ensure consistent grid layout */
        .portfolio-gallery {
            display: flex;
            flex-wrap: wrap;
        }
        
        .portfolio-gallery .col-12 {
            display: flex;
        }
