  /* EV Gallery with Filters */
        .filter-buttons .btn {
            margin: 0 5px;
            border-radius: 50px;
        }
        
          /* Image Gallery Section */
        .gallery-item-wrapper {
            position: relative;
            border-radius: 10px;
            overflow: hidden;
            cursor: pointer;
        }
        .gallery-item-wrapper .gallery-item {
            transition: transform 0.3s;
        }
        .gallery-item-wrapper:hover .gallery-item {
            transform: scale(1.1);
        }
        .gallery-zoom-icon {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            color: white;
            font-size: 3rem;
            opacity: 0;
            transition: opacity 0.3s;
            pointer-events: none;
        }
        .gallery-item-wrapper:hover .gallery-zoom-icon {
            opacity: 1;
        }
        .gallery-item-wrapper::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0,0,0,0.4);
            opacity: 0;
            transition: opacity 0.3s;
        }
        .gallery-item-wrapper:hover::after {
            opacity: 1;
        }

        #galleryModal .modal-dialog {
            max-width: 90vw;
            height: 90vh;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        #galleryModal .modal-content {
            background-color: transparent;
            border: none;
            height: 100%;
        }
        #galleryModal .modal-body {
            display: flex;
            align-items: center;
        }
        #galleryModal .btn-close {
            position: absolute;
            top: 15px;
            right: 15px;
            z-index: 1060;
            filter: invert(1) grayscale(100%) brightness(200%);
            font-size: 1.5rem;
        }
        #galleryModal .carousel-control-prev,
        #galleryModal .carousel-control-next {
            z-index: 1056;
        }
        #modal-gallery-img {
            max-height: 90vh;
            object-fit: contain;
        }