/* ══════════════════════════════════════════
   Gandhi Immigration – Hero Section
   ══════════════════════════════════════════ */

.gandhi-hero {
    position: relative;
    width: 100%;
    min-height: 600px;
    background-color: #ffffff;
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
    overflow: hidden;
}

@media (min-width: 1025px) {
    .gandhi-hero {
        padding: 48px 80px;
    }
}

/* ── Inner layout ── */
.gandhi-hero-inner {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    max-width: 1340px;
    margin: 0 auto;
    padding: 0 30px;
    min-height: 600px;
}

/* ── Left content ── */
.gandhi-hero-content {
    flex: 0 1 550px;
    padding-right: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Badge */
.gandhi-hero-badge {
    display: inline-flex;
    align-items: center;
    align-self: flex-start;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #F57D26;
    margin-bottom: 20px;
    padding: 6px 16px;
    background: transparent;
    border: 1px solid #F57D26;
    border-radius: 30px;
}

.gandhi-hero-badge-arrow {
    font-size: 8px;
    color: #F57D26;
}

.gandhi-hero-badge-icon {
    font-size: 16px;
    color: #F57D26;
}

/* Heading */
.gandhi-hero-heading {
    font-size: 48px;
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 18px;
}

.gandhi-hero-h-black {
    color: #000000;
}

.gandhi-hero-h-blue {
    color: #01559E;
}

/* Description */
.gandhi-hero-desc {
    font-size: 15px;
    font-weight: 400;
    color: #000000;
    line-height: 1.6;
    margin-bottom: 16px;
    max-width: 480px;
}

.gandhi-hero-sub-desc {
    font-size: 14px;
    font-weight: 400;
    color: #000000;
    line-height: 1.5;
    margin-top: 10px;
    margin-bottom: 0;
    max-width: 400px;
}

/* Button + Airplane row */
.gandhi-hero-btn-row {
    display: flex;
    align-items: center;
    gap: 20px;
}

.gandhi-hero-btn {
    display: inline-block;
    padding: 14px 32px;
    background: #F57D26;
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 30px;
    transition: background 0.3s ease, transform 0.2s ease;
    flex-shrink: 0;
}

.gandhi-hero-btn:hover {
    background: #e06a15;
    transform: translateY(-2px);
}

/* Airplane image — inline next to button */
.gandhi-hero-airplane {
    margin-bottom: -50px;
}

.gandhi-hero-airplane img {
    max-width: 280px;
    height: auto;
}

/* ── Right image ── */
.gandhi-hero-image {
    flex: 0 1 580px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.gandhi-hero-image img {
    max-width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: top center;
    display: block;
}

/* ══════════════════════════════════════════
   Responsive
   ══════════════════════════════════════════ */
@media (max-width: 1024px) {
    .gandhi-hero-inner {
        padding: 0 20px;
        min-height: 500px;
    }

    .gandhi-hero-heading {
        font-size: 40px;
    }

    .gandhi-hero-content {
        flex: 0 1 480px;
        padding-right: 20px;
    }

    .gandhi-hero-image {
        flex: 0 1 460px;
    }

    .gandhi-hero-airplane img {
        max-width: 220px;
    }
}

@media (max-width: 768px) {
    .gandhi-hero {
        min-height: auto;
    }

    .gandhi-hero-inner {
        flex-direction: column;
        text-align: center;
        padding: 40px 20px 0;
        min-height: auto;
        align-items: center;
    }

    .gandhi-hero-content {
        flex: none;
        width: 100%;
        padding-right: 0;
        margin-bottom: 30px;
        order: 2;
    }

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

    .gandhi-hero-desc,
    .gandhi-hero-sub-desc {
        max-width: 100%;
    }

    .gandhi-hero-badge {
        align-self: center;
    }

    .gandhi-hero-btn-row {
        justify-content: center;
        flex-wrap: wrap;
    }

    .gandhi-hero-btn {
        margin-top: 8px;
    }

    .gandhi-hero-airplane img {
        max-width: 180px;
    }

    .gandhi-hero-image {
        flex: none;
        width: 100%;
        max-width: 400px;
        order: 1;
    }
}

@media (max-width: 480px) {
    .gandhi-hero-heading {
        font-size: 28px;
    }

    .gandhi-hero-btn {
        padding: 12px 24px;
        font-size: 13px;
    }
}
