/* ================= BANNER ================= */

.why-banner {
    height: 350px;
    background: linear-gradient(rgb(24 54 109 / 75%), rgb(4 48 56 / 75%)), url(../assets/images/why-us-banner.jpg) center / cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.banner-overlay h1 {
    color: #fff;
    font-size: 42px;
    font-weight: 700;
}

.banner-overlay p {
    color: #e0f9ff;
    margin-top: 10px;
}

/* ================= GRID SECTION ================= */

.why-grid-section {
    padding: 100px 0;
    background: #f3f9ff;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    color: #0f3d91;
    font-size: 34px;
    font-weight: 600;
}

.section-title p {
    color: #555;
    margin-top: 10px;
}

/* GRID */

.why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

/* CARD */

.why-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    transition: 0.4s ease;
}

.why-card:hover {
    transform: translateY(-10px);
}

/* IMAGE */

.why-card img {
    width: 100%;
    height: 230px;
    object-fit: cover;
}

/* CONTENT */

.card-content {
    padding: 30px;
}

.card-content h3 {
    color: #0f3d91;
    font-size: 22px;
    margin-bottom: 15px;
}

.card-content p {
    color: #555;
    font-size: 15px;
    line-height: 1.7;
}

/* ================= RESPONSIVE ================= */

@media(max-width:992px) {
    .why-grid {
        grid-template-columns: 1fr;
    }

    .why-banner {
        height: 280px;
    }

    .banner-overlay h1 {
        font-size: 30px;
    }
}

@media(max-width:576px) {
    .card-content {
        padding: 20px;
    }

    .card-content h3 {
        font-size: 18px;
    }

    .card-content p {
        font-size: 14px;
    }
}