/* PAGE BACKGROUND */
.home-bg {
    background: #f4f7f6;
}

/* HERO */
.hero-wrapper {
    background: #ffffff;
    border-radius: 18px;
    padding: 3rem;
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

.hero-title {
    font-size: 2.6rem;
    font-weight: 700;
    color: #1f6f43;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: #5f6f67;
    max-width: 520px;
}

.hero-link {
    font-weight: 600;
    color: #1f6f43;
    text-decoration: none;
}

.hero-link:hover {
    text-decoration: underline;
}

/* CASE CARDS */
.case-card {
    background: #ffffff;
    border-radius: 14px;
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 12px 25px rgba(0,0,0,0.06);
    transition: transform .2s ease, box-shadow .2s ease;
}

.case-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 35px rgba(0,0,0,0.08);
}

.case-left {
    display: flex;
    align-items: center;
    gap: 14px;
}

.case-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
}

.case-icon img {
    width: 28px;
}

/* ICON COLORS */
/* .case-icon.success { background: #1f8f55; }
.case-icon.warning { background: #f4a100; }
.case-icon.primary { background: #0d6efd; } */

/* TEXT */
.case-title {
    font-weight: 700;
    color: #1f2933;
}

.case-sub {
    font-size: 0.85rem;
    color: #7b8a83;
}

/* COUNTS */
.case-count {
    font-size: 2.4rem;
    font-weight: 800;
}

.case-count.success { color: #1f8f55; }
.case-count.warning { color: #f4a100; }
.case-count.primary { color: #0d6efd; }

.case-icon img {
    width: 60px;   /* increase size */
    height: 60px;  /* optional, keeps it square */
}
.step-card {
    border-radius: 14px;
    transition: all 0.3s ease;
}

.step-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

.step-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto;
    border-radius: 50%;
    color: #fff;
    font-size: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
}
