/*==========================================================
Section : Product Showcase
Version : 2.0
Author  : Erwin Echon
==========================================================*/
/*==========================================================
SHOWCASE WORKSPACE
==========================================================*/
.mbi-showcase-stage {
    margin-top: 2rem;
    margin-bottom: 5rem;
}

.mbi-showcase-workspace {
    position: relative;
    max-width: 1320px;
    margin: 0 auto;
    min-height: 840px;
    display: flex;
    justify-content: center;
    align-items: center;
    isolation: isolate;
}

/*==========================================================
BACKGROUND GLOW
==========================================================*/
.mbi-showcase-glow {
    position: absolute;
    width: 980px;
    height: 980px;
    border-radius: 50%;
    background:
        radial-gradient(
            circle,
            rgba(0,45,172,.10) 0%,
            rgba(0,45,172,.04) 45%,
            transparent 72%
        );
    filter: blur(40px);
    z-index: 1;
}

/*==========================================================
MAIN PRODUCT
==========================================================*/
.mbi-showcase-main {
    position: relative;
    width: 920px;
    overflow: hidden;
    border-radius: 28px;
    background: #fff;
    border: 1px solid rgba(0,45,172,.08);
    box-shadow:
        0 24px 70px rgba(15,23,42,.12);
    transition: all .4s ease;
    z-index: 10;
}

.mbi-showcase-main img {
    display: block;
    width: 100%;
    height: auto;
}

.mbi-showcase-main:hover {
    transform:
        translateY(-10px)
        scale(1.01);
}
/*==========================================================
PREVIEW SCREENS
==========================================================*/
.mbi-showcase-preview {
    position: absolute;
    width: 300px;
    overflow: hidden;
    border-radius: 22px;
    background: rgba(255,255,255,.96);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,.55);
    box-shadow:
        0 18px 50px rgba(15,23,42,.12);
    transition: all .35s ease;
    z-index: 6;
}

.mbi-showcase-preview img {
    display: block;
    width: 100%;
    height: auto;
}

.mbi-showcase-employee {
    left: 120px;
    bottom: 70px;
    transform: rotate(-8deg);
}

.mbi-showcase-payslip {
    right: 120px;
    bottom: 70px;
    transform: rotate(8deg);
}

.mbi-showcase-employee:hover {
    transform:
        rotate(-5deg) translateY(-8px);
}

.mbi-showcase-payslip:hover {
    transform:
        rotate(5deg) translateY(-8px);
}

/*==========================================================
SHOWCASE CALLOUTS
==========================================================*/
.mbi-showcase-callout {
    position: absolute;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    max-width: 240px;
    padding: 18px;
    background: rgba(255,255,255,.72);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1px solid rgba(255,255,255,.60);
    border-radius: 20px;
    box-shadow:
        0 20px 50px rgba(15,23,42,.08);
    transition: all .35s ease;
    z-index: 30;
}

.mbi-showcase-callout:hover {
    transform:
        translateY(-6px);
}

.mbi-callout-dot {
    width: 12px;
    height: 12px;
    margin-top: 6px;
    border-radius: 50%;
    background: var(--mbi-secondary);
    box-shadow:
        0 0 0 6px rgba(4,120,99,.12);
    flex-shrink: 0;
}

.mbi-callout-content h6 {
    margin: 0 0 .5rem;
    font-size: 1rem;
    font-weight: 700;
    color: var(--mbi-heading);
}

.mbi-callout-content p {
    margin: 0;
    font-size: .88rem;
    line-height: 1.65;
    color: var(--mbi-text);
}

.mbi-callout-overview {
    top: 50px;
    right: 70px;
}

.mbi-callout-employees {
    left: 40px;
    top: 260px;
}

.mbi-callout-computation {
    right: 20px;
    top: 330px;
}

.mbi-callout-compliance {
    left: 180px;
    bottom: 90px;
}

.mbi-showcase-preview-group {
    display: contents;
}