  * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Arial', sans-serif;
            
            min-height: 100vh;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .section-header {
            margin-bottom: 40px;
        }

        .section-header h2 {
            font-size: 2.5rem;
            color: rgb(226, 116, 5);
            margin-bottom: 10px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }

        .subtitle {
            color: rgba(233, 112, 7, 0.997);
            font-size: 1.2rem;
            margin: 0;
        }

        .text-center {
            text-align: center;
        }

        .vedic-gallery-section {
            padding: 80px 0;
        }
        
        .vedic-gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 20px;
            margin-top: 30px;
        }
        
        .vedic-gallery__item {
            position: relative;
            overflow: hidden;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            aspect-ratio: 4/3;
        }
        
        .vedic-gallery__item:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.2);
        }

        .vedic-gallery__inner {
            position: relative;
            width: 100%;
            height: 100%;
        }
        
        .vedic-gallery__thumb {
            width: 100%;
            height: 100%;
        }

        .vedic-gallery__thumb img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .vedic-gallery__item:hover .vedic-gallery__thumb img {
            transform: scale(1.05);
        }
        
        .vedic-gallery__content {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(0,0,0,0.5);
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        .vedic-gallery__item:hover .vedic-gallery__content {
            opacity: 1;
        }
        
        .vedic-gallery__icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 50px;
            height: 50px;
            background: rgba(255,255,255,0.9);
            border-radius: 50%;
            color: #e65c00;
            font-size: 1.5rem;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .vedic-gallery__icon:hover {
            background: #e65c00;
            color: white;
            transform: scale(1.1);
        }
        
        /* Lightcase Customizations */
        #lightcase-info {
            background: rgba(0,0,0,0.7);
        }
        
        #lightcase-close {
            color: white;
            font-size: 2rem;
            opacity: 0.8;
            transition: opacity 0.3s;
        }
        
        #lightcase-close:hover {
            opacity: 1;
        }
        
        /* Responsive adjustments */
        @media (max-width: 768px) {
            .vedic-gallery-grid {
                grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            }
            
            .section-header h2 {
                font-size: 2rem;
            }
        }
        
        @media (max-width: 576px) {
            .vedic-gallery-grid {
                grid-template-columns: 1fr;
                gap: 15px;
            }
            
            .vedic-gallery-section {
                padding: 40px 0;
            }
        }