.bg-soft {
    background-color: #FAFCFF;
}

.orange-bg {
    background-color: #FB6000;
}

.orange-border {
    border: 1px solid #FB6000;
}

.icon-box {
    width: 42px;
    height: 42px;
    background-color: rgba(251, 96, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    color: #FB6000;
}

.spec-label {
    font-size: 0.85rem;
    color: #6c757d;
}

.spec-value {
    font-weight: 600;
    color: #001546;
}

.tab-orange {
    border: 1px solid #FB6000;
    color: #FB6000;
    background: #fff;
    border-radius: 8px;
    padding: 6px 18px;
    font-weight: 500;
}

.tab-orange.active {
    background: #FB6000;
    color: #fff;
}

/* Application Cards Hover Effect */
section .card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

section .card:hover {
    transform: translateY(-8px); /* MOVE UP */
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

/* Optional: icon animation */
section .card .icon-box i {
    transition: color 0.3s ease, transform 0.3s ease;
}

section .card:hover .icon-box i {
    color: #FB6000; /* brand accent */
    transform: scale(1.1);
}
