.manikant {
            max-width: 1200px;
            margin: 0 auto;
            padding: 25px;
            background-color: white;
            border-radius: 10px;
            box-shadow: 0 0 20px rgba(0, 0, 0, 0.08);
        }

        h1 {
            text-align: center;
            margin-bottom: 30px;
            color: #444;
        }

        .manikanta-gallery {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            grid-gap: 20px;
        }

        .manikanta-item {
            position: relative;
            overflow: hidden;
            border-radius: 8px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            cursor: pointer;
            height: 0;
            padding-bottom: 75%; /* 4:3 Aspect Ratio */
            background-color: #ddd;
        }

        .manikanta-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
        }

        .manikanta-item img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .manikanta-item:hover img {
            transform: scale(1.05);
        }

        .manikanta-caption {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 15px;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
            color: white;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .manikanta-item:hover .manikanta-caption {
            opacity: 1;
        }

        /* Lightbox styles */
        .manikanta-lightbox {
            display: none;
            position: fixed;
            z-index: 1000;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.9);
            justify-content: center;
            align-items: center;
            padding: 40px;
        }

        .manikanta-lightbox.active {
            display: flex;
        }

        .manikanta-lightbox-content {
            position: relative;
            max-width: 90%;
            max-height: 80%;
        }

        .manikanta-lightbox-img {
            display: block;
            max-width: 100%;
            max-height: 80vh;
            border-radius: 4px;
            box-shadow: 0 5px 25px rgba(0, 0, 0, 0.4);
        }

        .manikanta-lightbox-caption {
            position: absolute;
            bottom: -40px;
            left: 0;
            width: 100%;
            text-align: center;
            color: white;
            font-size: 18px;
            padding: 10px;
        }

        .manikanta-close {
            position: absolute;
            top: 20px;
            right: 30px;
            color: white;
            font-size: 30px;
            font-weight: bold;
            cursor: pointer;
            z-index: 1001;
        }

        .manikanta-nav {
            position: absolute;
            top: 50%;
            width: 60px;
            height: 60px;
            background-color: rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            cursor: pointer;
            transform: translateY(-50%);
            transition: background-color 0.3s ease;
            color: white;
            font-size: 30px;
            font-weight: bold;
            user-select: none;
        }

        .manikanta-nav:hover {
            background-color: rgba(255, 255, 255, 0.4);
        }

        .manikanta-prev {
            left: 20px;
        }

        .manikanta-next {
            right: 20px;
        }

        /* Responsive adjustments */
        @media (max-width: 768px) {
            .manikanta-gallery {
                grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
                grid-gap: 15px;
            }
            
            .manikanta-nav {
                width: 45px;
                height: 45px;
                font-size: 22px;
            }
        }

        @media (max-width: 480px) {
            .manikanta-gallery {
                grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
                grid-gap: 10px;
            }
            
            h1 {
                font-size: 24px;
                margin-bottom: 20px;
            }
            
            .manikanta-nav {
                width: 35px;
                height: 35px;
                font-size: 18px;
            }
            
            .manikanta-lightbox {
                padding: 20px;
            }
        }