* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        body {
            background-color: #081615;
            color: white;
            min-height: 100vh;
            overflow-x: hidden;
            position: relative;
        }
        
        .background {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            overflow: hidden;
        }

        .bubble {
            position: absolute;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(26, 105, 101, 0.8) 0%, rgba(26, 105, 101, 0.3) 100%);
            filter: blur(40px);
            opacity: 0;
            transition: opacity 1s ease-in;
        }

        .background::before, .background::after {
            content: '';
            position: absolute;
            border-radius: 50%;
            filter: blur(70px);
            opacity: 0.3;
            animation: pulsate 8s infinite alternate;
        }

        .background::before {
            width: 60vw;
            height: 60vw;
            background: radial-gradient(circle, rgba(26, 105, 101, 0.4) 0%, rgba(26, 105, 101, 0.1) 70%);
            top: -20vh;
            right: -10vw;
        }

        .background::after {
            width: 50vw;
            height: 50vw;
            background: radial-gradient(circle, rgba(124, 110, 72, 0.4) 0%, rgba(124, 110, 72, 0.1) 60%);
            bottom: -20vh;
            left: -10vw;
        }

        @keyframes pulsate {
            0% {
                opacity: 0.2;
                transform: scale(0.95);
            }
            100% {
                opacity: 0.4;
                transform: scale(1.05);
            }
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
            position: relative;
            z-index: 2;
        }
        
        .work-section {
            margin: 80px 0;
            padding: 20px;
            background: rgba(0, 0, 0, 0.3);
            border-radius: 15px;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
        }
        
        .section-title {
            font-size: 32px;
            margin-bottom: 40px;
            text-align: center;
            position: relative;
            color: white;
            text-transform: uppercase;
            letter-spacing: 2px;
            font-weight: 600;
            background: rgba(0, 0, 0, 0.5);
            padding: 15px 30px;
            border-radius: 50px;
            display: inline-block;
            margin: 0 820px 30px 0px;
            left: 50%;
            transform: translateX(-50%);
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            width: 80px;
            height: 4px;
            background: linear-gradient(to right, #ff8a00, #da1b60);
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            border-radius: 4px;
        }
        
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }
        
        .gallery-item {
            position: relative;
            overflow: visible;
            border-radius: 12px;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
            transition: transform 0.4s ease, box-shadow 0.4s ease;
            height: 300px;
            cursor: pointer;
        }
        
        .gallery-item:hover {
            transform: translateY(-10px) scale(1.03);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
        }
        
        .image-stack {
            position: relative;
            width: 100%;
            height: 100%;
        }
        
        .primary-image {
            position: absolute;
            top: 0;
            left: 0;
            width: 90%;
            height: 90%;
            object-fit: cover;
            border-radius: 12px;
            z-index: 2;
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
            transition: transform 0.4s ease;
        }
        
        .secondary-image {
            position: absolute;
            top: 10%;
            left: 10%;
            width: 90%;
            height: 90%;
            object-fit: cover;
            border-radius: 12px;
            z-index: 1;
            filter: brightness(0.7) blur(1px);
            transform: rotate(-3deg);
            transition: transform 0.4s ease;
        }
        
        .gallery-item:hover .primary-image {
            transform: rotate(2deg);
        }
        
        .gallery-item:hover .secondary-image {
            transform: rotate(-5deg) translateY(-5px);
        }
        
        .image-label {
            position: absolute;
            bottom: 15px;
            left: 0;
            right: 0;
            text-align: center;
            background: rgba(0, 0, 0, 0.7);
            padding: 10px;
            border-radius: 0 0 12px 12px;
            z-index: 3;
            font-weight: 500;
            letter-spacing: 1px;
        }
        
        .fixed-nav {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background: rgba(0, 0, 0, 0.8);
            backdrop-filter: blur(10px);
            padding: 15px 0;
            z-index: 100;
            box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.3);
        }
        
        .nav-container {
            display: flex;
            justify-content: center;
            gap: 20px;
        }
        
        .nav-link {
            background: linear-gradient(to right, #8B6F47, #A58A60);
            color: white;
            padding: 12px 25px;
            border-radius: 30px;
            text-decoration: none;
            transition: all 0.3s ease;
            font-weight: 600;
            letter-spacing: 1px;
            text-transform: uppercase;
            font-size: 14px;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
            display: flex;
            align-items: center;
            gap: 8px;
        }
        
        .nav-link:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
        }
        
        .nav-link.active {
            background: linear-gradient(to right, #C4A484, #E6D5B8);
            color: #333;
            transform: translateY(-3px);
        }
        
        /* Lightbox Styles */
        .lightbox {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.95);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 1000;
            opacity: 0;
            visibility: hidden;
            transition: all 0.4s ease;
        }
        
        .lightbox.active {
            opacity: 1;
            visibility: visible;
        }
        
        .lightbox-content {
            width: 80%;
            max-width: 900px;
            position: relative;
        }
        
        .lightbox-slide {
            display: none;
            text-align: center;
        }
        
        .lightbox-slide.active {
            display: block;
            animation: fadeIn 0.5s ease;
        }
        
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }
        
        .lightbox-img {
            max-height: 70vh;
            max-width: 100%;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        }
        
        .lightbox-caption {
            margin-top: 20px;
            font-size: 20px;
            font-weight: 500;
        }
        
        .lightbox-close {
            position: absolute;
            top: -40px;
            right: 0;
            color: white;
            font-size: 30px;
            cursor: pointer;
            background: rgba(255, 255, 255, 0.2);
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }
        
        .lightbox-close:hover {
            background: rgba(255, 255, 255, 0.3);
            transform: rotate(90deg);
        }
        
        .lightbox-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255, 255, 255, 0.2);
            color: white;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .lightbox-nav:hover {
            background: rgba(255, 255, 255, 0.3);
        }
        
        .lightbox-prev {
            left: -70px;
        }
        
        .lightbox-next {
            right: -70px;
        }
        
        .lightbox-counter {
            position: absolute;
            bottom: -50px;
            left: 0;
            right: 0;
            text-align: center;
            font-size: 18px;
            color: #ddd;
        }
        
        /* Responsive Design */
        @media (max-width: 1024px) {
            .gallery-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        @media (max-width: 768px) {
            .gallery-grid {
                grid-template-columns: 1fr;
            }
            
            .nav-container {
                gap: 10px;
            }
            
            .nav-link {
                padding: 10px 15px;
                font-size: 12px;
            }
            
            .section-title {
                font-size: 24px;
            }
            
            .lightbox-nav {
                width: 40px;
                height: 40px;
                font-size: 20px;
            }
            
            .lightbox-prev {
                left: -50px;
            }
            
            .lightbox-next {
                right: -50px;
            }
        }
        .section-header {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
}

.info-wrapper {
    position: relative;
    display: inline-block;
}

.info-btn {
    background: linear-gradient(to right, #8B6F47, #A58A60);
    margin-bottom: 10px;
    color: white;
    padding: 8px 15px;
    border-radius: 30px;
    border: none;
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.info-btn:hover {
    background: linear-gradient(to right, #C4A484, #E6D5B8);
    transform: translateY(-3px);
}

.info-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: rgba(0, 0, 0, 0.8);
    padding: 15px;
    border-radius: 10px;
    display: none;
    flex-direction: column;
    gap: 10px;
    width: 950px;
    z-index: 10;
    animation: fadeIn 0.3s ease;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
}

.info-wrapper:hover .info-dropdown {
    display: flex;
}

.info-dropdown img {
    width: 100%;
    height: auto;
    border-radius: 5px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}