/* Sticky Glass Header */
header[data-elementor-type="header"],
.elementor-location-header {
    position: fixed !important;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: transparent;
}

body.admin-bar header[data-elementor-type="header"],
body.admin-bar .elementor-location-header {
    top: var(--wp-admin--admin-bar--height, 32px);
}
@media screen and (max-width: 782px) {
    body.admin-bar header[data-elementor-type="header"],
    body.admin-bar .elementor-location-header {
        top: 46px;
    }
}

.header-is-sticky {
    background: rgba(255, 255, 255, 0.85) !important;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 4px 20px rgba(17, 24, 39, 0.05);
}

/* Marquee Gallery */
.agc-marquee-container-a25874ff {
    overflow: hidden;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    display: flex;
    flex-direction: column;
}

.marquee-row {
    display: flex;
    width: 200%;
}

.row-left .marquee-track {
    animation: marqueeLeft 40s linear infinite;
    display: flex;
    will-change: transform;
}

.row-right .marquee-track {
    animation: marqueeRight 40s linear infinite;
    display: flex;
    will-change: transform;
}

.marquee-item img {
    border-radius: 16px;
    object-fit: cover;
    width: auto;
    max-width: none;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    transition: transform 0.4s ease;
}

.marquee-item img:hover {
    transform: scale(1.02);
}

@keyframes marqueeLeft {
    0% { transform: translateX(0); }
    100% { transform: translateX(-33.3333%); }
}

@keyframes marqueeRight {
    0% { transform: translateX(-33.3333%); }
    100% { transform: translateX(0); }
}
