/* ══════════════════════════════════════════
   Gandhi Immigration – Why Us Section
   ══════════════════════════════════════════ */

.gandhi-why {
    background: #f8fafd;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

/* Subtle background pattern */
.gandhi-why::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 8% 50%, rgba(1, 85, 158, 0.05) 0%, transparent 55%),
        radial-gradient(circle at 92% 20%, rgba(245, 125, 38, 0.06) 0%, transparent 45%);
    pointer-events: none;
}

/* ── Layout ── */
.gandhi-why-inner {
    max-width: 1340px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    gap: 80px;
    position: relative;
    z-index: 1;
}

/* ══════════════════════════════════════════
   Left: Content
   ══════════════════════════════════════════ */
.gandhi-why-content {
    flex: 1;
    min-width: 0;
}

/* Badge */
.gandhi-why-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #F57D26;
    background: rgba(245, 125, 38, 0.08);
    border: 1.5px solid rgba(245, 125, 38, 0.3);
    border-radius: 50px;
    padding: 7px 18px;
    margin-bottom: 24px;
}

.gandhi-why-badge i {
    font-size: 13px;
}

/* Heading */
.gandhi-why-heading {
    font-family: 'Inter', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #000000;
    line-height: 1.3;
    margin: 0 0 10px;
}

.gandhi-why-heading span {
    color: #01559E;
}

/* ── Feature grid ── */
.gandhi-why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 44px;
}

.gandhi-why-card {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: #ffffff;
    border: 1px solid #eaf0f8;
    border-radius: 14px;
    padding: 18px 20px;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    cursor: default;
}

.gandhi-why-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(1, 85, 158, 0.1);
    border-color: #01559E;
}

.gandhi-why-card-icon {
    flex-shrink: 0;
    width: 34px;
    height: 34px;
    background: #01559E;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 12px;
    margin-top: 1px;
    transition: background 0.25s ease;
}

.gandhi-why-card:hover .gandhi-why-card-icon {
    background: #F57D26;
}

.gandhi-why-card-text {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #344155;
    line-height: 1.55;
    margin: 0;
}

/* ── Button row ── */
.gandhi-why-btn-row {
    display: flex;
    align-items: center;
    gap: 24px;
}

.gandhi-why-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 34px;
    background: #F57D26;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    letter-spacing: 0.02em;
    box-shadow: 0 6px 24px rgba(245, 125, 38, 0.35);
    transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.gandhi-why-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.12), transparent);
    pointer-events: none;
}

.gandhi-why-btn:hover {
    background: #e06a15;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(245, 125, 38, 0.45);
    color: #ffffff;
}

.gandhi-why-btn i {
    font-size: 13px;
    transition: transform 0.25s ease;
}

.gandhi-why-btn:hover i {
    transform: translateX(4px);
}

/* ══════════════════════════════════════════
   Right: Image
   ══════════════════════════════════════════ */
.gandhi-why-image {
    flex: 0 0 480px;
    position: relative;
}

/* Blue block behind image */
.gandhi-why-image-bg {
    position: absolute;
    top: 30px;
    right: -20px;
    width: 88%;
    height: 90%;
    background: #01559E;
    border-radius: 20px;
    z-index: 0;
}

.gandhi-why-image img {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 520px;
    object-fit: cover;
    border-radius: 20px;
    display: block;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

/* Floating experience badge */
.gandhi-why-image-badge {
    position: absolute;
    bottom: 36px;
    left: -24px;
    z-index: 3;
    background: #ffffff;
    border-radius: 16px;
    padding: 16px 22px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.14);
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1;
    border-top: 4px solid #F57D26;
}

.gandhi-why-image-badge-num {
    font-family: 'Inter', sans-serif;
    font-size: 34px;
    font-weight: 900;
    color: #01559E;
    letter-spacing: -0.03em;
}

.gandhi-why-image-badge-num sup {
    font-size: 18px;
    vertical-align: super;
    color: #F57D26;
}

.gandhi-why-image-badge-label {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 600;
    color: #7a8a9a;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-top: 6px;
    text-align: center;
}

/* ══════════════════════════════════════════
   Responsive
   ══════════════════════════════════════════ */
@media (max-width: 1100px) {
    .gandhi-why-image {
        flex: 0 0 420px;
    }

    .gandhi-why-image img {
        height: 460px;
    }

    .gandhi-why-heading {
        font-size: 36px;
    }
}

@media (max-width: 900px) {
    .gandhi-why-inner {
        gap: 50px;
    }

    .gandhi-why-image {
        flex: 0 0 360px;
    }

    .gandhi-why-image img {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .gandhi-why {
        padding: 70px 0;
    }

    .gandhi-why-inner {
        flex-direction: column;
        padding: 0 20px;
        gap: 50px;
    }

    .gandhi-why-content {
        order: 2;
    }

    .gandhi-why-image {
        flex: none;
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
        order: 1;
    }

    .gandhi-why-image img {
        height: 340px;
    }

    .gandhi-why-image-badge {
        left: 10px;
        bottom: -20px;
    }

    .gandhi-why-heading {
        font-size: 30px;
    }

    .gandhi-why-grid {
        grid-template-columns: 1fr 1fr;
    }

    .gandhi-why-btn {
        text-align: center;
    }
}

@media (max-width: 520px) {
    .gandhi-why-heading {
        font-size: 26px;
    }

    .gandhi-why-grid {
        grid-template-columns: 1fr;
    }

    .gandhi-why-btn-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .gandhi-why-image img {
        height: 280px;
    }

    .gandhi-why-image-bg {
        right: -10px;
    }
}
