    /* Gallery Section CSS */
    #image-gallery {
        position: relative;
        overflow: hidden;
    }
    
    #image-gallery:before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        /* background: url('https://images.unsplash.com/photo-1551135049-8a33b2f2c3c1?ixlib=rb-4.0.3&auto=format&fit=crop&w=2000&q=80'); */
        background-size: cover;
        background-position: center;
        opacity: 0.03;
        z-index: 0;
    }
    
    #image-gallery .container {
        position: relative;
        z-index: 1;
    }
    
    .gallery-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        margin-bottom: 40px;
    }
    
    .gallery-item {
        border-radius: var(--radius);
        overflow: hidden;
        box-shadow: var(--shadow);
        cursor: pointer;
        transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        position: relative;
        aspect-ratio: 1/1;
    }
    
    .gallery-item:hover {
        transform: translateY(-10px) scale(1.02);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
        z-index: 2;
    }
    
    .gallery-item-inner {
        width: 100%;
        height: 100%;
        position: relative;
        overflow: hidden;
    }
    
    .gallery-item img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        transition: transform 0.6s ease;
    }
    
    .gallery-item:hover img {
        transform: scale(1.1);
    }
    
    .gallery-overlay {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
        color: white;
        padding: 20px;
        transform: translateY(100%);
        transition: transform 0.4s ease;
        display: flex;
        justify-content: space-between;
        align-items: flex-end;
    }
    
    .gallery-item:hover .gallery-overlay {
        transform: translateY(0);
    }
    
    .gallery-text h3 {
        color: white;
        margin-bottom: 5px;
        font-size: 1.2rem;
    }
    
    .gallery-text p {
        color: rgba(255,255,255,0.8);
        margin-bottom: 0;
        font-size: 0.9rem;
    }
    
    .gallery-icon {
        background: var(--primary);
        width: 40px;
        height: 40px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.2rem;
        animation: pulse 2s infinite;
    }
    
    @keyframes pulse {
        0% { transform: scale(1); }
        50% { transform: scale(1.1); }
        100% { transform: scale(1); }
    }
    
    .gallery-cta {
        text-align: center;
        margin-top: 40px;
        padding-top: 30px;
        border-top: 2px dashed var(--secondary);
    }
    
    /* Lightbox Modal */
    .gallery-lightbox {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.95);
        z-index: 9999;
        opacity: 0;
        transition: opacity 0.3s ease;
    }
    
    .gallery-lightbox.active {
        display: block;
        opacity: 1;
    }
    
    .lightbox-content {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%) scale(0.9);
        max-width: 90%;
        max-height: 80%;
        transition: transform 0.3s ease;
    }
    
    .gallery-lightbox.active .lightbox-content {
        transform: translate(-50%, -50%) scale(1);
    }
    
    .lightbox-content img {
        max-width: 100%;
        max-height: 70vh;
        object-fit: contain;
        border-radius: 10px;
        box-shadow: 0 10px 40px rgba(0,0,0,0.5);
    }
    
    .lightbox-nav {
        position: absolute;
        top: 50%;
        width: 100%;
        display: flex;
        justify-content: space-between;
        padding: 0 20px;
        transform: translateY(-50%);
    }
    
    .lightbox-nav button {
        background: var(--primary);
        color: white;
        border: none;
        width: 50px;
        height: 50px;
        border-radius: 50%;
        font-size: 1.5rem;
        cursor: pointer;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .lightbox-nav button:hover {
        background: var(--primary-dark);
        transform: scale(1.1);
    }
    
    .lightbox-close {
        position: absolute;
        top: 20px;
        right: 20px;
        background: var(--primary);
        color: white;
        border: none;
        width: 50px;
        height: 50px;
        border-radius: 50%;
        font-size: 1.8rem;
        cursor: pointer;
        z-index: 10001;
    }
    
    .lightbox-caption {
        position: absolute;
        bottom: 20px;
        left: 0;
        right: 0;
        text-align: center;
        color: white;
        padding: 20px;
        background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    }
    
    .lightbox-counter {
        position: absolute;
        top: 20px;
        left: 20px;
        background: rgba(0,0,0,0.7);
        color: white;
        padding: 8px 15px;
        border-radius: 20px;
        font-size: 0.9rem;
    }
    
    /* Responsive Design */
    @media (min-width: 768px) {
        .gallery-grid {
            grid-template-columns: repeat(3, 1fr);
            gap: 25px;
        }
        
        .gallery-item {
            aspect-ratio: 4/3;
        }
    }
    
    @media (min-width: 992px) {
        .gallery-grid {
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
        }
    }
    
    @media (max-width: 480px) {
        .gallery-grid {
            grid-template-columns: 1fr;
            gap: 15px;
        }
        
        .gallery-item {
            aspect-ratio: 16/9;
        }
    }
