/* MLFF */
:root {
    --green: #8cc63f;
    --deep: #0f172a;
    --soft-white: #f8fafc;
    --glass: rgba(255, 255, 255, 0.9);
    --deepskyblue: deepskyblue;
    --navy: #1F2B48;
    --lightGray: #c5c5c5;
}

.lightGray {
    color: var(--lightGray);
}

.bg-navy {
    background-color: var(--navy);
}

.text-green {
    color: var(--green);
}

.bg-green {
    background-color: var(--green);
}

/* Hero Visuals */
.border-green-glow {
    border: 1px solid rgba(118, 186, 27, 0.3);
    box-shadow: 0 0 30px rgba(118, 186, 27, 0.2);
}

.benefit-tag {
    background: #f8fafc;
    padding: 10px 15px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--navy);
}

/* Step Cards */
.step-card {
    background: white;
    border-radius: 15px;
    position: relative;
    border: 1px solid #eee;
    transition: 0.3s;
}

.step-card:hover {
    border-color: var(--green);
    transform: translateY(-5px);
}

.step-num {
    font-size: 3rem;
    font-weight: 900;
    color: rgba(118, 186, 27, 0.1);
    position: absolute;
    top: 5px;
    right: 15px;
}

/* Strength Box */
.strength-box {
    padding: 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    height: 100%;
}

.benefit-item {
    background: #f8fafc;
    padding: 15px;
    border-radius: 10px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #1F2B48;
    border: 1px solid #edf2f7;
    transition: 0.3s;
}

.benefit-item:hover {
    background: #fff;
    border-color: #76ba1b;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.capability-card {
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    border: 1px solid #eef0f2;
    height: 100%;
    transition: all 0.4s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.02);
}

.capability-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(31, 43, 72, 0.1);
}

.cap-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.cap-header i {
    font-size: 1.5rem;
    color: var(--green);
    margin-right: 15px;
    width: 45px;
    height: 45px;
    background: rgba(118, 186, 27, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
}

.cap-header h5 {
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0;
    font-size: 1.1rem;
}

.cap-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.cap-list li,
.cap-list p {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
    font-size: 0.9rem;
    color: #6c757d;
}

.cap-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--green);
    font-weight: bold;
}

/* Highlighted wide cards */
.highlight-card {
    background: var(--navy);
}

.highlight-card .cap-header h5,
.highlight-card .cap-list li,
.highlight-card .cap-list p {
    color: #fff;
}

.highlight-card .cap-list li::before {
    color: var(--green);
}

.green-variant {
    background: var(--green);
}

.green-variant .cap-header i {
    background: #fff;
    color: var(--green);
}

.green-variant .cap-header h5,
.green-variant .cap-list li {
    color: #fff;
}

.green-variant .cap-list li::before {
    color: var(--navy);
}

.border-green-thin {
    border: 1px solid rgba(118, 186, 27, 0.3);
}

.tracking-wider {
    letter-spacing: 2px;
}

/* For Option 1: Image Hover Effect */
.dashboard-stack img {
    transition: transform 0.5s ease, z-index 0s;
    cursor: pointer;
}

.dashboard-stack img:hover {
    transform: scale(1.05) translateY(-10px);
    z-index: 10 !important;
    opacity: 1 !important;
}

.benefit-tag-modern {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 15px 20px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.benefit-tag-modern:hover {
    background: rgba(118, 186, 27, 0.1);
    border-color: #76ba1b;
    transform: translateX(10px);
}

.benefit-tag-modern.highlight {
    background: rgba(118, 186, 27, 0.05);
    border-left: 4px solid #76ba1b;
}

.dashboard-preview {
    position: relative;
    overflow: hidden;
    transition: transform 0.4s ease;
}

.dashboard-preview:hover {
    transform: scale(1.03);
    z-index: 5;
}

.ui-label {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: rgba(11, 17, 32, 0.85);
    color: #76ba1b;
    padding: 4px 12px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.85rem;
    backdrop-filter: blur(5px);
}

.ccc-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
}

.ccc-card:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: #76ba1b;
    transform: translateY(-10px);
}

.border-green-glow {
    border: 1px solid rgba(118, 186, 27, 0.4);
    box-shadow: 0 0 15px rgba(118, 186, 27, 0.1);
}

/* Icon Styling */
.ccc-icon-wrap {
    width: 45px;
    height: 45px;
    background: rgba(118, 186, 27, 0.1);
    color: #76ba1b;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-size: 1.2rem;
}

.icon-sm {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
}

.accuracy-badge {
    border: 2px dashed #76ba1b !important;
}

.dashboard-window {
    background: #fff;
    transition: transform 0.4s ease;
}

.dashboard-window:hover {
    transform: scale(1.02);
}

.window-header .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
}

.feature-card-horizontal {
    transition: transform 0.3s ease;
}

.feature-card-horizontal:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1) !important;
}

#subsystems .feature-img-wrap {
    min-width: 180px;
    max-width: 180px;
}

#subsystems .feature-card-vertical img {
    height: 240px;
    object-fit: fill;
}

/* .feature-img-wrap {
    min-width: 180px;
    max-width: 180px;
} */

.feature-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Vertical Card Styling */
.feature-card-vertical img {
    /* height: 160px; */
    width: 100%;
    object-fit: cover;
}

.x-small {
    font-size: 0.85rem;
    line-height: 1.4;
}

.tracking-widest {
    letter-spacing: 4px;
}

@media (max-width: 991px) {
    .order-2 {
        order: 2 !important;
    }

    .order-1 {
        order: 1 !important;
    }
}