.elementor-15277 .elementor-element.elementor-element-312a4ce{--display:flex;}.elementor-15277 .elementor-element.elementor-element-7632ed0{width:100%;max-width:100%;}.elementor-15277 .elementor-element.elementor-element-7632ed0.elementor-element{--align-self:center;}/* Start custom CSS for html, class: .elementor-element-7632ed0 */.gallery-container {
            display: flex;
            gap: 10px;
            width: 100%;
            height: 500px;
            padding: 10px;
        }

        .gallery-panel {
            flex: 1;
            border-radius: 0.75rem;
            cursor: pointer;
            overflow: hidden;
            transition: flex 0.4s linear;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            position: relative;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
        }

        .gallery-panel:hover {
            flex: 2;
        }

        .gallery-panel img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .gallery-panel:hover img {
            transform: scale(1.1);
        }

        /* Content overlay styling */
        .gallery-panel-content {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
            color: white;
            padding: 20px;
            transform: translateY(100%);
            transition: transform 0.3s ease;
        }

        .gallery-panel:hover .gallery-panel-content {
            transform: translateY(0);
        }

        .gallery-panel-content h3 {
            font-size: 1.2rem;
            margin-bottom: 8px;
            font-weight: bold;
        }

        .gallery-panel-content p {
            font-size: 0.9rem;
            margin-bottom: 12px;
            line-height: 1.4;
            opacity: 0.9;
        }

        .gallery-panel-content button {
            background: rgba(255, 255, 255, 0.2);
            border: 1px solid rgba(255, 255, 255, 0.3);
            color: white;
            padding: 8px 16px;
            border-radius: 20px;
            cursor: pointer;
            font-size: 0.8rem;
            transition: all 0.3s ease;
        }

        .gallery-panel-content button:hover {
            background: rgba(255, 255, 255, 0.3);
            border-color: rgba(255, 255, 255, 0.5);
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            h1 {
                font-size: 1.5rem;
                margin-bottom: 20px;
            }

            .gallery-container {
                flex-direction: column;
                height: auto;
                gap: 10px;
            }

            .gallery-panel {
                height: 200px;
            }

            .gallery-panel:hover {
                flex: 1;
            }
        }/* End custom CSS */