.hero {
    position: relative;
    min-height: 20vh;
    display: flex;
    align-items: center;
    overflow: hidden;


    background:
        linear-gradient(135deg,
            rgba(0, 20, 60, 0.82) 0%,
            rgba(0, 74, 153, 0.72) 60%,
            rgba(0, 97, 194, 0.65) 100%),
        url('https://images.unsplash.com/photo-1589519160732-57fc498494f8?auto=format&fit=crop&w=1200&q=80') center / cover no-repeat;
}


.hero-h1 {
    font-family: 'Manrope', sans-serif;
    font-size: clamp(2rem, 4.5vw, 3.4rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 18px;
    max-width: 680px;
}


@media (max-width: 767px) {
    .hero {
        min-height: auto;
    }

    .hero-inner {
        padding: 80px 0 60px;
    }
}





.loc-section {
    padding: 88px 0;
    background: var(--bg);
}

/* Header */
.loc-section .loc-header {
    margin-bottom: 48px;
}

/* 3-column card grid */
.loc-section .loc-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

/* ── Card ────────────────────────────────────────── */
.loc-section .loc-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: box-shadow .25s, transform .25s;
}

.loc-section .loc-card:hover {
    box-shadow: var(--sh-lg);
    transform: translateY(-4px);
}

/* ── Image area ──────────────────────────────────── */
.loc-section .loc-img-wrap {
    position: relative;
    height: 190px;
    overflow: hidden;
}

.loc-section .loc-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .5s ease;
}

.loc-section .loc-card:hover .loc-img {
    transform: scale(1.05);
}

/* Dark gradient overlay on image */
.loc-section .loc-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
            rgba(0, 20, 60, .15) 0%,
            rgba(0, 20, 60, .55) 100%);
}

/* Country badge on image */
.loc-section .loc-flag-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    display: flex;
    align-items: center;
    gap: 7px;
    background: rgba(255, 255, 255, .15);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, .25);
    border-radius: 100px;
    padding: 5px 13px 5px 8px;
}

.loc-section .loc-flag {
    font-size: 1rem;
    line-height: 1;
}

.loc-section .loc-country-name {
    font-family: 'Manrope', sans-serif;
    font-size: .72rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: .04em;
}

/* ── Body ────────────────────────────────────────── */
.loc-section .loc-body {
    padding: 24px 24px 22px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

/* Icon + heading row */
.loc-section .loc-body-top {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}

.loc-section .loc-icon-wrap {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: var(--blue-light);
    color: var(--blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
    transition: background .22s, color .22s;
}

.loc-section .loc-card:hover .loc-icon-wrap {
    background: var(--blue);
    color: #fff;
}

/* India accent */
.loc-section .loc-icon-wrap--india {
    background: rgba(255, 153, 51, .12);
    color: #e07b00;
}

.loc-section .loc-card:hover .loc-icon-wrap--india {
    background: #e07b00;
    color: #fff;
}

.loc-section .loc-body-top h5 {
    font-family: 'Manrope', sans-serif;
    font-size: .98rem;
    font-weight: 800;
    color: var(--dark);
    margin: 0 0 2px;
    line-height: 1.2;
}

.loc-section .loc-region {
    font-size: .74rem;
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
    color: var(--muted);
    letter-spacing: .03em;
}

/* Address text */
.loc-section .loc-body p {
    font-size: .875rem;
    color: var(--mid);
    line-height: 1.7;
    margin: 0 0 12px;
    flex: 1;
}

/* Phone row */
.loc-section .loc-phone {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: .84rem;
    margin-bottom: 14px;
}

.loc-section .loc-phone i {
    color: var(--blue);
    font-size: .85rem;
}

.loc-section .loc-phone a {
    color: var(--mid);
    text-decoration: none;
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
    transition: color .18s;
}

.loc-section .loc-phone a:hover {
    color: var(--blue);
}

/* Map link */
.loc-section .loc-map-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: 'Manrope', sans-serif;
    font-size: .82rem;
    font-weight: 700;
    color: var(--blue);
    text-decoration: none;
    padding-top: 14px;
    border-top: 1px solid var(--border);
    margin-top: auto;
    transition: gap .18s, color .18s;
}

.loc-section .loc-map-link:hover {
    gap: 10px;
    color: var(--blue-mid);
}

/* ── RESPONSIVE ──────────────────────────────────── */
@media (max-width: 991px) {
    .loc-section .loc-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 767px) {
    .loc-section {
        padding: 56px 0;
    }

    .loc-section .loc-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .loc-section .loc-img-wrap {
        height: 170px;
    }
}