        /* -------------------- GALLERY STYLES -------------------- */
        .gallery-section {
            padding: 80px 0;
            background: #f8f9fa;
        }
        .wpo-section-title {
            text-align: center;
            margin-bottom: 30px;
        }
        .wpo-section-title h2 {
            font-size: 2.4rem;
            font-weight: 700;
            color: #006d2c;
            margin-bottom: 15px;
        }
        .wpo-section-title p {
            color: #253041;
  font-size: 17px;
            max-width: 600px;
            margin: 0 auto;
        }
        .gallery-grid {
            margin-top: 20px;
        }
        .gallery-item {
            margin-bottom: 30px;
        }
        .gallery-card {
            position: relative;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            background: #fff;
            cursor: pointer;
        }
        .gallery-card img {
            width: 100%;
            height: 260px;
            object-fit: cover;
            display: block;
            transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            transform: scale(1);
        }
        /* Zoom In Effect on Hover */
        .gallery-card:hover img {
            transform: scale(1.12);
        }
        .gallery-card .overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(0deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0) 100%);
            color: #fff;
            padding: 25px 15px 18px 15px;
            text-align: center;
            opacity: 0;
            transition: opacity 0.4s ease;
            pointer-events: none;
        }
        .gallery-card:hover .overlay {
            opacity: 1;
        }
        .gallery-card .overlay span {
            font-size: 1.1rem;
            font-weight: 600;
            letter-spacing: 1px;
            text-transform: uppercase;
            background: rgba(255, 255, 255, 0.35);
            padding: 6px 20px;
            border-radius: 30px;
            display: inline-block;
            backdrop-filter: blur(4px);
            border: 1px solid rgba(255, 255, 255, 0.2);
        }
        .gallery-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 18px 35px rgba(0, 0, 0, 0.18);
        }

        /* -------------------- LIGHTBOX STYLES -------------------- */
        .lightbox-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.92);
            z-index: 9999;
            justify-content: center;
            align-items: center;
            animation: lightboxFadeIn 0.3s ease;
            backdrop-filter: blur(4px);
        }
        .lightbox-overlay.active {
            display: flex;
        }
        .lightbox-content {
            position: relative;
            max-width: 92%;
            max-height: 92%;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }
        .lightbox-content img {
            max-width: 100%;
            max-height: 78vh;
            border-radius: 10px;
            box-shadow: 0 15px 50px rgba(0, 0, 0, 0.7);
            object-fit: contain;
            background: #111;
            border: 2px solid rgba(255, 255, 255, 0.1);
            transition: transform 0.2s ease;
        }
        .lightbox-caption {
            color: #fff;
            font-size: 1.2rem;
            margin-top: 18px;
            font-weight: 400;
            letter-spacing: 0.5px;
            text-shadow: 0 2px 12px rgba(0, 0, 0, 0.9);
            background: rgba(0, 0, 0, 0.4);
            padding: 8px 28px;
            border-radius: 40px;
            backdrop-filter: blur(4px);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }
        /* Close button */
        .lightbox-close {
            position: absolute;
            top: -50px;
            right: -10px;
            font-size: 24px !important;
            color: #fff;
            cursor: pointer;
            transition: transform 0.25s, color 0.25s;
            line-height: 1;
            padding: 0 15px;
            background: rgba(0, 0, 0, 0.3);
            border-radius: 50%;
            width: 60px;
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
            backdrop-filter: blur(4px);
            border: 1px solid rgba(255, 255, 255, 0.15);
        }
        .lightbox-close:hover {
            transform: rotate(90deg) scale(1.1);
            color: #f44336;
            background: rgba(255, 255, 255, 0.1);
        }
        /* Navigation arrows */
        .lightbox-prev,
        .lightbox-next {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            font-size: 2.8rem;
            color: #fff;
            cursor: pointer;
            user-select: none;
            padding: 0;
            background: rgba(0, 0, 0, 0.4);
            border-radius: 50%;
            transition: background 0.3s, transform 0.2s;
            line-height: 1;
            width: 60px;
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
            backdrop-filter: blur(4px);
            border: 1px solid rgba(255, 255, 255, 0.12);
            text-shadow: 0 0 15px rgba(0,0,0,0.8);
        }
        .lightbox-prev {
            left: -80px;
        }
        .lightbox-next {
            right: -80px;
        }
        .lightbox-prev:hover,
        .lightbox-next:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: translateY(-50%) scale(1.12);
            border-color: rgba(255, 255, 255, 0.3);
        }
        .lightbox-prev i,
        .lightbox-next i {
            font-size: 24px;
        }

        /* counter */
        .lightbox-counter {
            position: absolute;
            bottom: -45px;
            left: 50%;
            transform: translateX(-50%);
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.9rem;
            background: rgba(0, 0, 0, 0.4);
            padding: 4px 18px;
            border-radius: 30px;
            backdrop-filter: blur(4px);
            border: 1px solid rgba(255, 255, 255, 0.08);
            letter-spacing: 0.5px;
        }

        @keyframes lightboxFadeIn {
            from { opacity: 0; transform: scale(0.92); }
            to { opacity: 1; transform: scale(1); }
        }

        /* -------------------- RESPONSIVE -------------------- */
        @media (max-width: 1200px) {
            .lightbox-prev { left: -30px; }
            .lightbox-next { right: -30px; }
            .lightbox-prev, .lightbox-next {
                width: 50px;
                height: 50px;
                font-size: 2rem;
            }
            .lightbox-close {
                width: 50px;
                height: 50px;
                font-size: 2.2rem;
                top: -40px;
                right: 0;
            }
        }
        @media (max-width: 992px) {
            .col-lg-3 { flex: 0 0 33.333%; max-width: 33.333%; }
            .lightbox-prev { left: 0; }
            .lightbox-next { right: 0; }
            .lightbox-prev, .lightbox-next {
                width: 44px;
                height: 44px;
                font-size: 1.5rem;
                background: rgba(0, 0, 0, 0.6);
            }
            .lightbox-close {
                width: 44px;
                height: 44px;
                font-size: 1.8rem;
                top: -35px;
                right: 0;
            }
        }
        @media (max-width: 768px) {
            .col-md-4 { flex: 0 0 50%; max-width: 50%; }
            .gallery-card img { height: 200px; }
            .gallery-section { padding: 50px 0; }
            .wpo-section-title h2 { font-size: 1.8rem; }
            .lightbox-content img { max-height: 65vh; }
            .lightbox-caption { font-size: 0.95rem; padding: 6px 18px; }
            .lightbox-prev, .lightbox-next {
                width: 38px;
                height: 38px;
                font-size: 1.2rem;
            }
            .lightbox-close {
                width: 38px;
                height: 38px;
                font-size: 1.5rem;
                top: -30px;
            }
            .lightbox-prev i, .lightbox-next i { font-size: 1.2rem; }
        }
        @media (max-width: 480px) {
            .col-6 { flex: 0 0 50%; max-width: 50%; padding: 0 10px; }
            .gallery-card img { height: 150px; }
            .gallery-item { margin-bottom: 20px; }
            .gallery-card .overlay span { font-size: 0.75rem; padding: 4px 12px; }
            .lightbox-prev, .lightbox-next {
                width: 32px;
                height: 32px;
                font-size: 1rem;
            }
            .lightbox-close {
                width: 32px;
                height: 32px;
                font-size: 1.2rem;
                top: -25px;
            }
            .lightbox-caption { font-size: 0.8rem; padding: 4px 14px; }
            .lightbox-counter { font-size: 0.7rem; bottom: -35px; }
        }
