/* Gallery Grid */
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 20px;
            margin-bottom: 40px;
        }

        .gallery-item {
            position: relative;
            overflow: hidden;
            border-radius: 8px;
            box-shadow: 0 4px 6px rgba(0,0,0,0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            background-color: white;
            cursor: pointer;
        }

        .gallery-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 15px rgba(0,0,0,0.2);
        }

        .gallery-item img {
            width: 100%;
            height: 250px;
            object-fit: cover;
            display: block;
            transition: transform 0.3s ease;
        }

        .gallery-item:hover img {
            transform: scale(1.1);
        }

        .gallery-icon {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            color: white;
            font-size: 40px;
            opacity: 0;
            transition: opacity 0.3s ease;
            pointer-events: none;
        }

        .gallery-item:hover .gallery-icon {
            opacity: 1;
        }

        /* Bootstrap Modal Customization */
        .modal-content {
            background-color: transparent;
            border: none;
			height:auto !important;
        }

        .modal-body {
            padding: 0;
            position: relative;
			height:auto !important;
        }

        .modal-body img {
            width: 100%;
            height: auto;
            border-radius: 8px;
        }

        .modal-header {
            border: none;
            background-color: rgba(0,0,0,0.8);
            color: white;
            border-radius: 8px 8px 0 0;
        }

        .modal-header .btn-close {
            filter: invert(1);
        }

        .modal-footer {
            border: none;
            background-color: rgba(0,0,0,0.8);
            color: white;
            border-radius: 0 0 8px 8px;
        }
		
		.carousel-inner {
		  max-height: auto !important;
		}

        /* Responsive */
        @media (max-width: 768px) {
            .gallery-grid {
                grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
                gap: 15px;
            }

            .gallery-item img {
                height: 200px;
            }

            .section-title h3 {
                font-size: 24px;
            }
        }