  
        .video-container {
            position: relative;
            padding-bottom: 56.25%; /* 16:9 aspect ratio */
            height: 0;
            overflow: hidden;
            border-radius: 1rem;
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
        }
        .video-container iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: none;
        }

    
        #video-modal::before {
        content: "";
        position: absolute;
        top: 50%; left: 50%;
        width: 50px; height: 50px;
        border: 4px solid #fff;
        border-top-color: transparent;
        border-radius: 50%;
        animation: spin 1s linear infinite;
        transform: translate(-50%, -50%);
        }
        @keyframes spin { to { transform: translate(-50%, -50%) rotate(360deg); } }
     
        .gallery-item {
            transition: all 0.3s ease;
            cursor: pointer;
        }
        .gallery-item:hover {
            transform: scale(1.03);
        }
        .gallery-item::before {
            content: attr(data-after);
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: rgba(26, 54, 93, 0.85);
            color: white;
            padding: 1rem;
            transform: translateY(100%);
            transition: transform 0.3s ease;
        }
        .gallery-item:hover::before {
            transform: translateY(0);
        }
     
        
        /* Gallery card hover effects */
        .gallery-card {
            cursor: pointer;
            transition: transform 0.3s ease;
        }
        .gallery-card:hover {
            transform: translateY(-5px);
        }
        .gallery-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        .gallery-card:hover img {
            transform: scale(1.05);
        }
        .filter-btn.active {
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }
        
        /* PhotoSwipe customizations */
        .pswp__caption {
            text-align: center;
            background: rgba(26, 54, 93, 0.8);
            padding: 15px;
            border-radius: 4px;
            max-width: 600px;
            margin: 0 auto;
        }
        /* Prevent grid items from stretching */
        .service-card {
        align-self: start;
        }

        .service-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 30px -5px rgba(0, 0, 0, 0.15);
        }
        .nav-scrolled {
            background-color: rgba(5,159,255,255);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            padding: 0.5rem 0;
        }
        /* Lightbox styles */
        .lightbox {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.9);
            z-index: 1000;
            align-items: center;
            justify-content: center;
        }
        .lightbox.active {
            display: flex;
        }
        .lightbox-content {
            max-width: 90%;
            max-height: 90%;
        }
        .lightbox-content img {
            width: 100%;
            height: auto;
            max-height: 80vh;
            object-fit: contain;
        }
        .close-lightbox {
            position: absolute;
            top: 20px;
            right: 30px;
            color: white;
            font-size: 40px;
            cursor: pointer;
        }