/**
 * Custom Component Styles
 * Workflow carousel, logo glow effects
 * Note: Floating badge styles are in pilot.css
 */

/* ============================================
   Workflow Image Carousel
============================================ */
.workflow-carousel {
    position: relative;
    width: 100%;
    min-height: 300px;
}

.workflow-carousel .carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    cursor: pointer;
    pointer-events: none;
}

.workflow-carousel .carousel-slide.active {
    position: relative;
    opacity: 1;
    pointer-events: auto;
}

.workflow-carousel .carousel-slide img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
    transition: transform 0.4s ease;
}

.workflow-carousel .carousel-slide img:hover {
    transform: translateY(-4px);
}

.workflow-carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
    position: relative;
    z-index: 10;
}

.workflow-carousel-indicators .indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(51, 102, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.workflow-carousel-indicators .indicator.active {
    background: #3366FF;
    transform: scale(1.3);
}

.workflow-carousel-indicators .indicator:hover {
    background: rgba(51, 102, 255, 0.6);
}

/* Carousel paused indicator */
.workflow-carousel.paused .carousel-slide.active img {
    box-shadow: 0 25px 60px rgba(51, 102, 255, 0.25);
}

/* Responsive carousel */
@media (max-width: 991px) {
    .workflow-carousel {
        min-height: 200px;
    }
}

@media (max-width: 576px) {
    .workflow-carousel {
        min-height: 150px;
    }
    .workflow-carousel-indicators {
        gap: 8px;
    }
    .workflow-carousel-indicators .indicator {
        width: 8px;
        height: 8px;
    }
}

/* ============================================
   Logo Glow Effect
============================================ */
.navbar-brand .logo-display {
    filter: drop-shadow(0 0 12px rgba(255, 255, 255, 0.7))
            drop-shadow(0 0 25px rgba(51, 102, 255, 0.4));
    transition: filter 0.3s ease;
}

.navbar-brand .logo-display:hover {
    filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.9))
            drop-shadow(0 0 35px rgba(51, 102, 255, 0.6));
}

.navbar.sticked .navbar-brand .logo-scrolled {
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.12));
}

/* ============================================
   Magnific Popup Scroll Fix
============================================ */
.mfp-no-scroll-jump.mfp-bg,
.mfp-no-scroll-jump.mfp-wrap {
    position: fixed !important;
}

html.mfp-helper {
    height: auto !important;
}

body.mfp-helper {
    height: auto !important;
    overflow: hidden !important;
}
    height: auto !important;
    overflow: hidden !important;
}
