.project-two__single {
            position: relative;
            background-color: #ffffff;
            border-radius: 0.75rem;
            box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
            overflow: hidden;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .project-two__single:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
        }

        .video-popup {
            display: block;
            text-decoration: none;
            cursor: pointer;
        }

        .project-two__single-img .inner {
            position: relative;
            overflow: hidden;
        }

        .project-two__single-img img {
            width: 100%;
            height: 250px;
            object-fit: cover;
            display: block;
            transition: transform 0.4s ease;
        }

        .video-popup:hover img {
            transform: scale(1.05);
        }

        .project-card__content {
            padding: 1.25rem;
        }

        .project-card__title {
            font-size: 1.25rem;
            font-weight: 700;
            color: #1f2937;
            margin-bottom: 0.5rem;
        }

        .project-card__category {
            font-size: 0.875rem;
            color: #6b7280;
            font-weight: 500;
        }

        .faq-three__video-box {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            background-color: rgba(0, 0, 0, 0.4);
            opacity: 0;
            transition: opacity 0.4s ease;
            pointer-events: none;
        }

        .video-popup:hover .faq-three__video-box {
            opacity: 1;
        }

        .faq-three__video-icon {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background-color: white;
            color: #1f2937;
            font-size: 20px;
            transform: scale(0.8);
            transition: transform 0.4s ease;
        }

        .video-popup:hover .faq-three__video-icon {
            transform: scale(1);
        }

        .modal-lightbox {
            display: none;
            position: fixed;
            z-index: 1000;
            padding-top: 60px;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            overflow: auto;
            background-color: rgba(0, 0, 0, 0.9);
            -webkit-backdrop-filter: blur(5px);
            backdrop-filter: blur(5px);
        }

        .modal-content-wrapper {
            margin: auto;
            display: block;
            width: 85%;
            max-width: 800px;
            text-align: center;
            animation-name: zoom;
            animation-duration: 0.5s;
        }

        #modalImage {
            width: 100%;
            height: auto;
            border-radius: 8px;
        }

        .close-modal {
            position: absolute;
            top: 15px;
            right: 35px;
            color: #f1f1f1;
            font-size: 40px;
            font-weight: bold;
            transition: 0.3s;
            cursor: pointer;
        }

        #caption {
            margin: auto;
            display: block;
            width: 80%;
            max-width: 700px;
            text-align: center;
            color: #ccc;
            padding: 20px 0;
            line-height: 1.6;
            font-size: 1rem;
        }

        @keyframes zoom {
            from {
                transform: scale(0.8)
            }

            to {
                transform: scale(1)
            }
        }