/* Minification failed. Returning unminified contents.
(32,38): run-time error CSS1034: Expected closing parenthesis, found ','
(32,38): run-time error CSS1042: Expected function, found ','
(32,42): run-time error CSS1062: Expected semicolon or closing curly-brace, found ')'
 */


.feature-included {
    color: #2fe622;
}


.buttonmargin{
    margin-top: 10px;
    margin-bottom: 20px;
}


.tagnumber{
    font-style: italic;
    font-weight:bold;
}

.even {
    background-color: rgba(230, 126, 34, 0.2);
}

.orangy {
    color: rgba(230, 126, 34, 1) !important;
}

.fady{
    opacity: 0.1;
}

.header-main {
    background-color: rgb(12, 64, 109, .5);
/*    background: url('../assets/img/Header Banner.png') 50% 50% no-repeat;*/
    background-size: auto;
    background-size: cover;
    color: white;
}

.buffer-top{
    margin-top: 30px;
}

.screen-shots{
    max-height: 400px;
}
/*.wall-text {
    color: white;
}*/

/* ===== Make hero less "blocky" ===== */

/* Add a soft gradient veil so content sits on a smoother surface */
.hero-wrap {
    position: relative;
}

    .hero-wrap:before {
        content: "";
        position: absolute;
        left: -12px;
        right: -12px;
        top: -12px;
        bottom: -12px;
        background: radial-gradient(ellipse at 20% 15%, rgba(0,0,0,.30), rgba(0,0,0,.05) 60%, rgba(0,0,0,0) 100%);
        pointer-events: none;
    }

/* Panel becomes a "glass" card, not a dark block */
.hero-panel {
    background: rgba(10, 12, 14, 0.26); /* lighter */
    border: 1px solid rgba(255,255,255,0.08); /* subtler border */
    border-radius: 14px; /* softer corners */
    padding: 1.25rem 1.25rem; /* slightly smaller */
    box-shadow: 0 18px 50px rgba(0,0,0,.30);
    backdrop-filter: blur(10px);
}

/* Reduce the big FIXSIM word a bit */
.hero-copy .orangy {
    font-size: 2.6rem !important;
}

/* Slightly smaller H1 so it doesn't dominate as a "block" */
.hero-copy h1 {
    font-size: 2.35rem;
}

/* Video frame: soften borders and shadow */
.hero-video-frame {
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,0.10);
    box-shadow: 0 18px 50px rgba(0,0,0,.30);
    background: rgba(0,0,0,.08);
}

/* Trust strip: make it feel like part of hero, not a separate slab */
.hero-trust {
    background: rgba(255,255,255,0.84);
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: 14px;
    padding: .6rem .9rem;
    box-shadow: 0 10px 30px rgba(0,0,0,.18);
}

    /* Tighter trust items */
    .hero-trust .trust-item {
        margin-right: 1rem;
        margin-bottom: .15rem;
    }

/* Mobile: reduce visual weight */
@media (max-width: 991px) {
    .hero-panel {
        padding: 1.1rem;
    }

    .hero-copy h1 {
        font-size: 2.0rem;
    }
}
.hero-video-frame {
    border: 1px solid rgba(255,255,255,.10) !important;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 18px 55px rgba(0,0,0,.30);
    background: rgba(0,0,0,.08);
}

/* ===== FIXSIM article polish ===== */

.fixsim-workflow h1 {
    letter-spacing: -0.4px;
}

.fixsim-workflow h2 {
    margin-top: 2.2rem;
    margin-bottom: 0.75rem;
    font-weight: 700;
}

    /* section divider */
    .fixsim-workflow h2:not(:first-of-type) {
        padding-top: 1.25rem;
        border-top: 1px solid #eee;
    }

/* stronger cards */
.fixsim-workflow .card {
    border-radius: 8px;
    transition: box-shadow .15s ease;
}

    .fixsim-workflow .card:hover {
        box-shadow: 0 6px 18px rgba(0,0,0,.06);
    }

/* comparison columns visual separation */
.fixsim-workflow .border-right {
    border-right: 1px solid #ececec !important;
}

/* callouts */
.fixsim-workflow .border-warning {
    border-left-width: 4px !important;
}

.fixsim-workflow .border-success {
    border-left-width: 4px !important;
}

/* CTA bar improvement */
.fixsim-workflow .bg-primary {
    background: linear-gradient(90deg,#d67a2c,#c96c1f);
    box-shadow: 0 8px 20px rgba(0,0,0,.12);
}

/* tighten text rhythm */
.fixsim-workflow p {
    line-height: 1.55;
}

/* ===== FIXSIM flow diagram ===== */

.fixsim-flow .mb-2 {
    position: relative;
    padding: 6px 0;
    font-weight: 500;
}

    /* vertical connector line */
    .fixsim-flow .mb-2:not(:last-child)::after {
        content: "";
        position: absolute;
        left: 50%;
        top: 100%;
        width: 2px;
        height: 18px;
        background: #e6e6e6;
        transform: translateX(-50%);
    }

/* arrows */
.fixsim-flow .fa-chevron-down {
    display: none; /* hide fontawesome arrows */
}

/* subtle step bubbles */
.fixsim-flow .col-md-6 .mb-2 {
    border-radius: 6px;
}

/* old way */
.fixsim-flow .col-md-6:first-child .mb-2 {
    color: #666;
}

/* new way highlight */
.fixsim-flow .col-md-6:last-child .mb-2 {
    color: #2b2b2b;
}

.fixsim-flow .text-success {
    font-weight: 700;
}

/* timeline bars */

.flow-time {
    max-width: 280px;
    margin: 20px auto 0 auto;
    text-align: center;
}

.flow-bar {
    height: 8px;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}

    .flow-bar.slow {
        background: linear-gradient(90deg,#e3e3e3,#cfcfcf);
    }

    .flow-bar.fast {
        background: linear-gradient(90deg,#28a745,#7bd88f);
    }

    /* animated indicator */
    .flow-bar::after {
        content: "";
        position: absolute;
        top: 0;
        left: -40px;
        width: 40px;
        height: 100%;
        background: rgba(255,255,255,.6);
        animation: flowmove 2.2s linear infinite;
    }

@keyframes flowmove {
    from {
        left: -40px;
    }

    to {
        left: 100%;
    }
}

.flow-label {
    font-size: 13px;
    color: #777;
    margin-top: 6px;
}

/* technical credibility line */
.cred-line {
    font-size: 13px;
    opacity: .85;
    letter-spacing: .2px;
}


.bg-primary {
    background: linear-gradient(180deg,#c8742d 0%,#b56423 100%);
}

    .bg-primary .border {
        border-color: rgba(0,0,0,.08) !important;
    }

