/* ══════════════════════════════════════════
   Gandhi Immigration – About Values Section
   ══════════════════════════════════════════ */

.gandhi-about-values-section {
    padding: 80px 0;
    background: #fff;
}

.gandhi-values-container {
    max-width: 1340px;
    margin: 0 auto;
    padding: 0 30px;
    text-align: center;
}

/* ── Badge ── */
.gandhi-values-badge-wrapper {
    margin-bottom: 60px;
}

.gandhi-values-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #F57D26;
    padding: 6px 16px;
    border: 1px solid #F57D26;
    border-radius: 30px;
}

.gandhi-values-badge-arrow {
    font-size: 8px;
}

.gandhi-values-badge-icon {
    font-size: 16px;
}

/* ── Grid ── */
.gandhi-values-grid {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.gandhi-value-card {
    position: relative;
    flex: 1 1 calc(25% - 24px);
    min-width: 250px;
    margin-bottom: 40px;
    transition: transform 0.3s ease;
}

.gandhi-value-card:hover {
    transform: translateY(-6px);
}

.gandhi-value-icon-box {
    background: #01559E;
    width: 68px;
    height: 68px;
    position: absolute;
    top: -12px;
    left: -12px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(1, 85, 158, 0.2);
}

.gandhi-value-icon-box img {
    width: 36px;
    height: 36px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.gandhi-value-content-box {
    background: #F8F9FA;
    padding: 20px 15px 20px 65px;
    border-radius: 12px;
    text-align: left;
    min-height: 90px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

.gandhi-value-card:hover .gandhi-value-content-box {
    background: #01559E;
    box-shadow: 0 10px 30px rgba(1, 85, 158, 0.2);
}

.gandhi-value-card:hover .gandhi-value-title {
    color: #ffffff;
}

.gandhi-value-card:hover .gandhi-value-desc {
    color: rgba(255, 255, 255, 0.85);
}

.gandhi-value-icon-box {
    transition: background 0.3s ease, transform 0.3s ease;
}

.gandhi-value-card:hover .gandhi-value-icon-box {
    background: #F57D26;
    transform: scale(1.1);
}

.gandhi-value-title {
    font-size: 20px;
    font-weight: 700;
    color: #222;
    margin: 0 0 4px;
}

.gandhi-value-desc {
    font-size: 14px;
    color: #444;
    margin: 0;
    line-height: 1.4;
    font-weight: 500;
    width: 140px;
}

/* ── Responsive ── */
@media (max-width: 1200px) {
    .gandhi-values-grid {
        justify-content: center;
    }

    .gandhi-value-card {
        flex: 0 0 calc(50% - 20px);
    }
}

@media (max-width: 768px) {
    .gandhi-about-values-section {
        padding: 20px 0;
    }

    .gandhi-values-badge-wrapper {
        margin-bottom: 40px;
    }

    .gandhi-value-card {
        flex: 0 0 100%;
    }
}