/* Staggered Entrance Animation for JetEngine Listings */
body:not(.elementor-editor-active) .jet-listing-grid__item {
    opacity: 0;
    animation: galleryFadeUp 0.6s ease-out forwards;
}

/* Keyframes for the Slide-Up Effect */
@keyframes galleryFadeUp {
    0% {
        opacity: 0;
        transform: translate3d(0, 30px, 0);
    }
    100% {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

/* Staggered Delays (Nth-Child) */
body:not(.elementor-editor-active) .jet-listing-grid__item:nth-child(1) { animation-delay: 0.1s; }
body:not(.elementor-editor-active) .jet-listing-grid__item:nth-child(2) { animation-delay: 0.2s; }
body:not(.elementor-editor-active) .jet-listing-grid__item:nth-child(3) { animation-delay: 0.3s; }
body:not(.elementor-editor-active) .jet-listing-grid__item:nth-child(4) { animation-delay: 0.4s; }
body:not(.elementor-editor-active) .jet-listing-grid__item:nth-child(5) { animation-delay: 0.5s; }
body:not(.elementor-editor-active) .jet-listing-grid__item:nth-child(6) { animation-delay: 0.6s; }
body:not(.elementor-editor-active) .jet-listing-grid__item:nth-child(7) { animation-delay: 0.7s; }
body:not(.elementor-editor-active) .jet-listing-grid__item:nth-child(8) { animation-delay: 0.8s; }








/* Animated Brand Gradient */
.brand-animated-gradient {
    background: linear-gradient(-45deg, #FE5D3A, #045258, #FE5D3A, #045258);
    background-size: 400% 400% !important;
    animation: brandGradientMove 10s ease infinite !important;
}

@keyframes brandGradientMove {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}



@keyframes meshMove {
    0% { background-position: 0% 0%; }
    50% { background-position: 100% 100%; }
    100% { background-position: 0% 0%; }
}

.brand-mesh-gradient {
    background: radial-gradient(circle at 50% 50%, #FE5D3A 0%, transparent 50%),
                radial-gradient(circle at 100% 0%, #045258 0%, transparent 50%),
                radial-gradient(circle at 0% 100%, #045258 0%, transparent 50%);
    background-color: #FE5D3A; /* Base color */
    background-size: 200% 200%;
    animation: meshMove 8s ease-in-out infinite alternate;
}

.glass-panel {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 20px;
}


/* This triggers as soon as the page loads, ignoring scroll position */
.staggered-list .elementor-icon-list-item {
    animation: fadeInUpStagger 0.8s ease forwards;
    opacity: 0;
}

@keyframes fadeInUpStagger {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Apply staggered delays manually */
.staggered-list .elementor-icon-list-item:nth-child(1) { animation-delay: 0.5s; }
.staggered-list .elementor-icon-list-item:nth-child(2) { animation-delay: 0.7s; }
.staggered-list .elementor-icon-list-item:nth-child(3) { animation-delay: 0.9s; }