:root {
    --navy: #1f3c88;
    --navy-light: #2d4fa3;
    --orange: #ff9d3c;
    --card-bg: #ffffff;
}

#why-us {
    padding-top: 80px;
    padding-bottom: 80px;
}

#why-us h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 18px;
}

#why-us p.section-desc {
    font-size: 1rem;
    max-width: 720px;
    margin: 0 auto 50px;
    line-height: 1.7;
    color: #444;
}

.why-card {
    background: var(--card-bg);
    border-radius: 22px;
    padding: 65px 28px 45px !important;
    text-align: center;
    position: relative;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.07);
    transition: 0.3s ease;
    overflow: visible;
    min-height: 260px;
    margin-bottom: 40px;
}

.why-card::before {
    content: "";
    position: absolute;
    top: -28px;
    left: 50%;
    transform: translateX(-50%);
    width: 115px;
    height: 60px;
    background: var(--navy-light);
    border-radius: 50px 50px 0 0;
    z-index: -1;
}

.why-card::after {
    content: "";
    position: absolute;
    bottom: -26px;
    left: 50%;
    transform: translateX(-50%);
    width: 88%;
    height: 28px;
    background: var(--navy);
    border-radius: 18px;
    z-index: -1;
}

.why-card i {
    color: var(--navy) !important;
    font-size: 2.4rem !important;
    margin-bottom: 15px;
}

.why-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.12);
}

@media (max-width: 991px) {
    .why-card {
        margin-bottom: 50px;
        padding: 60px 25px 40px !important;
    }

    #why-us {
        padding-top: 60px;
        padding-bottom: 60px;
    }
}

@media (max-width: 575px) {

    #why-us h2 {
        font-size: 1.45rem !important;
        margin-bottom: 12px;
    }

    #why-us p.section-desc {
        font-size: 0.9rem !important;
        line-height: 1.55;
        padding: 0 14px;
        margin-bottom: 40px;
        color: #555;
        text-align: center;
    }

    .why-card {
        padding: 55px 22px 38px !important;
        margin-bottom: 55px;
    }

    #why-us .container {
        padding-left: 18px !important;
        padding-right: 18px !important;
    }

    .why-card::before {
        width: 95px;
        height: 52px;
    }

    .why-card::after {
        height: 24px;
    }

    .why-card i {
        font-size: 2rem !important;
    }
}
