:root {
    --bg: #f7f7fb;
    --surface: #ffffff;
    --surface-alt: #f6f5fe;
    --text: #12162a;
    --muted: #59607a;
    --line: #e7e9f4;
    --hero: #071238;
    --hero-soft: #0d1d58;
    --primary: #5468ff;
    --primary-strong: #6f46ff;
    --primary-soft: #eef0ff;
    --mint: #e8fbf6;
    --gold: #fff6d8;
    --shadow: 0 18px 40px rgba(35, 43, 86, 0.08);
    --container: 1240px;
    --radius-xl: 28px;
    --radius-lg: 20px;
    --radius-md: 16px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-width: 320px;
    font-family: "Inter", sans-serif;
    color: var(--text);
    background: var(--bg);
}

a {
    color: inherit;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.container {
    width: min(var(--container), calc(100% - 48px));
    margin: 0 auto;
}

.site-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 20;
    background-color: #f7f7fb;
}

.nav-shell {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    padding: 5px 0;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: #fff;
}

.brand-mark {
    display: grid;
    place-items: center;
    width: 44px;
    aspect-ratio: 1;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--primary), var(--primary-strong));
    font-size: 0.95rem;
    font-weight: 800;
    letter-spacing: 0.02em;
    box-shadow: 0 10px 26px rgba(84, 104, 255, 0.35);
}

.brand-lockup {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.brand-lockup strong,
.brand-lockup span {
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: 0.23em;
}

.brand-lockup span {
    margin-top: 4px;
    font-size: 0.84rem;
    opacity: 0.9;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 28px;
}

.site-nav a {
    position: relative;
    color: rgb(108 72 254);
    font-size: 0.95rem;
    font-weight: 500;
    text-decoration: none;
}

.site-nav a:hover {
    background: linear-gradient(135deg, var(--primary), var(--primary-strong));
    padding:10px;
    border-radius: 999px;
    color:white;
}

.site-nav a.active::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -10px;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--primary), var(--primary-strong));
}

.nav-cta {
    padding: 14px 26px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--primary), var(--primary-strong));
    box-shadow: 0 18px 28px rgba(84, 104, 255, 0.24);
}

.menu-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    width: 48px;
    height: 48px;
    padding: 0;
    border: 1px solid rgb(36 37 215);
    border-radius: 14px;
    background: rgb(105 77 254);
    cursor: pointer;
}

.menu-toggle span:not(.sr-only) {
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: #fff;
}

.hero {
    position: relative;
    overflow: hidden;
    padding: 124px 0 82px;
    background:
        radial-gradient(circle at 18% 24%, rgba(92, 112, 255, 0.18), transparent 24%),
        radial-gradient(circle at 80% 18%, rgba(79, 134, 255, 0.14), transparent 20%),
        linear-gradient(180deg, #071238 0%, #071132 100%);
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle, rgba(255, 255, 255, 0.55) 1px, transparent 1px),
        radial-gradient(circle, rgba(255, 255, 255, 0.4) 1px, transparent 1px);
    background-size: 140px 140px, 210px 210px;
    background-position: 10% 24%, 70% 12%;
    opacity: 0.22;
    pointer-events: none;
}

.hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 0.94fr) minmax(460px, 1.06fr);
    gap: 28px;
    align-items: center;
}

.hero-copy {
    max-width: 560px;
    color: #fff;
    padding-top: 25px;
}

.hero-copy h1 {
    margin: 0;
    font-size: clamp(3rem, 2vw, 5.1rem);
    line-height: 1.02;
    font-weight: 800;
}

.hero-copy h1 span {
    background: linear-gradient(135deg, #79a7ff, #7e5cff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-copy p {
    margin: 28px 0 0;
    max-width: 520px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.12rem;
    line-height: 1.75;
}

.hero-actions,
.footer-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin-top: 34px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 58px;
    padding: 0 28px;
    border-radius: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.btn:hover,
.btn:focus-visible {
    transform: translateY(-1px);
}

.btn-primary {
    color: #fff;
    background: linear-gradient(135deg, var(--primary), var(--primary-strong));
    box-shadow: 0 18px 32px rgba(84, 104, 255, 0.3);
}

.btn-secondary {
    color: #fff;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.34);
}

.btn-outline {
    color: var(--primary);
    background: #fff;
    border: 1px solid #ccd3ff;
}

.hero-note {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-top: 34px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
}

.hero-note-icon,
.flag-mark {
    display: inline-block;
    flex: 0 0 auto;
}

.hero-note-icon {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: inset 0 0 0 5px rgba(84, 104, 255, 0.24);
}

.flag-mark {
    width: 18px;
    height: 12px;
    border-radius: 2px;
    background:
        linear-gradient(180deg, #df2330 0 50%, #fff 50% 100%),
        linear-gradient(90deg, #fff 0 50%, #df2330 50% 100%);
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.18);
}

.hero-visual {
    display: flex;
    justify-content: flex-end;
}

.globe {
    position: relative;
    width: min(100%, 700px);
    aspect-ratio: 1 / 0.92;
    border-radius: 50%;
    overflow: hidden; /* IMPORTANT */
    
    background:
        radial-gradient(circle at 62% 48%, rgba(160, 197, 255, 0.18), transparent 18%),
        radial-gradient(circle at 32% 28%, rgba(255, 255, 255, 0.2), transparent 7%),
        radial-gradient(circle at 60% 46%, rgba(255, 255, 255, 0.18), transparent 5%),
        radial-gradient(circle at 40% 64%, rgba(255, 255, 255, 0.12), transparent 4%),
        radial-gradient(circle at 42% 42%, #183e97 0%, #0a1b55 52%, #050f2f 76%, transparent 77%);

    box-shadow:
        inset -40px -40px 80px rgba(0, 0, 0, 0.38),
        0 0 80px rgba(57, 104, 255, 0.22);
}

/* 🔥 Image fit inside globe */
.globe-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* important */
    border-radius: 50%;
    opacity: 0.9; /* optional for blend */
}

.globe::before,
.globe::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.globe::before {
    inset: 4%;
    border: 1px solid rgba(132, 164, 255, 0.38);
}

.globe::after {
    inset: 12% 8% 18% 14%;
    background:
        radial-gradient(circle at 58% 28%, rgba(255, 255, 255, 0.88) 0 0.5%, transparent 0.7%),
        radial-gradient(circle at 54% 37%, rgba(255, 255, 255, 0.8) 0 0.45%, transparent 0.65%),
        radial-gradient(circle at 47% 46%, rgba(255, 255, 255, 0.72) 0 0.38%, transparent 0.58%),
        radial-gradient(circle at 60% 41%, rgba(255, 255, 255, 0.82) 0 0.44%, transparent 0.64%),
        radial-gradient(circle at 66% 54%, rgba(255, 255, 255, 0.62) 0 0.3%, transparent 0.5%),
        radial-gradient(circle at 52% 62%, rgba(255, 255, 255, 0.55) 0 0.34%, transparent 0.54%);
    opacity: 0.9;
}

.globe-ring,
.globe-lat {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(165, 189, 255, 0.22);
}

.ring-one {
    inset: 18% 10%;
}

.ring-two {
    inset: 8% 20%;
}

.ring-three {
    inset: 28% 8%;
}

.ring-four {
    inset: 12% 12%;
    transform: rotate(22deg);
}

.globe-lat {
    left: 11%;
    right: 11%;
    height: 32%;
    border-left: 0;
    border-right: 0;
}

.lat-one {
    top: 20%;
}

.lat-two {
    top: 36%;
}

.lat-three {
    top: 52%;
}

.globe-dot {
    position: absolute;
    width: 6px;
    aspect-ratio: 1;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 0 22px rgba(255, 255, 255, 0.85);
}

.dot-one {
    top: 20%;
    left: 30%;
}

.dot-two {
    top: 47%;
    right: 12%;
}

.dot-three {
    bottom: 18%;
    right: 30%;
}

.globe-pin {
    position: absolute;
    top: 48%;
    left: 54%;
    display: flex;
    align-items: center;
    gap: 14px;
}

.pin-core {
    position: relative;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 0 0 10px rgba(111, 70, 255, 0.18), 0 0 30px rgba(255, 255, 255, 0.6);
}

.pin-core::before {
    content: "";
    position: absolute;
    inset: 4px;
    border-radius: 50%;
    background: var(--primary);
}

.pin-label {
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.22);
    color: #fff;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.04em;
}

.globe-arc {
    position: absolute;
    border-radius: 50%;
    border-top: 1px solid rgba(173, 198, 255, 0.42);
    border-left: 1px solid transparent;
    border-right: 1px solid transparent;
    border-bottom: 1px solid transparent;
    transform-origin: center;
}

.arc-one {
    width: 44%;
    height: 22%;
    top: 39%;
    left: 22%;
    transform: rotate(-14deg);
}

.arc-two {
    width: 60%;
    height: 28%;
    top: 34%;
    left: 14%;
    transform: rotate(20deg);
}

.arc-three {
    width: 52%;
    height: 26%;
    top: 42%;
    left: 18%;
    transform: rotate(48deg);
}

.section {
    padding: 74px 0;
}

.section-head {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 28px;
    margin-bottom: 28px;
}

.section-kicker {
    margin: 0 0 10px;
    color: var(--primary-strong);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.section-head h2,
.delivery-copy h2,
.why-intro h2,
.testimonial-copy h2,
.footer-cta h2 {
    margin: 0;
    font-size: clamp(2rem, 4vw, 2.5rem);
    line-height: 1.12;
}

.section-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    white-space: nowrap;
}

.card-grid {
    display: grid;
    gap: 22px;
}

.four-up {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.info-card,
.testimonial-card,
.stats-bar,
.map-panel,
.mini-feature {
    background: #f1f0f5;
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    
}

.mini-feature{
 height:285px;
}

.info-card {
    display: flex;
    flex-direction: column;
    min-height: 270px;
    padding: 24px;
    border-radius: 24px;
}

.card-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    border-radius: 18px;
    margin-bottom: 22px;
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--primary-strong);
    background: var(--primary-soft);
}

.card-icon.blue {
    color: #3988ff;
    background: #eaf3ff;
}

.card-icon.mint {
    color: #23b07e;
    background: var(--mint);
}

.card-icon.gold {
    width: auto;
    min-width: 58px;
    padding: 0 14px;
    color: #c99400;
    background: var(--gold);
}

.info-card h3,
.feature-item h3,
.mini-feature h3,
.footer-col h3 {
    margin: 0;
    font-size: 1.7rem;
    line-height: 1.2;
}

.info-card h3 {
    font-size: 1.6rem;
}

.info-card p,
.delivery-copy p,
.mini-feature p,
.testimonial-card p,
.footer-brand p,
.footer-col p,
.footer-col a,
.footer-bottom p,
.hero-copy p {
    font-size: 1rem;
    line-height: 1.7;
}

.info-card p,
.delivery-copy p,
.mini-feature p,
.footer-brand p,
.footer-col p,
.footer-col a,
.footer-bottom p {
    color: var(--muted);
}

.info-card a {
    margin-top: auto;
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
}

.delivery-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
    gap: 34px;
    align-items: center;
}

.map-panel {

    border-radius: 28px;
}

.map-surface {
    position: relative;
    min-height: 309px;
    border-radius: 24px;
    background:
        radial-gradient(circle at 20% 34%, rgba(111, 70, 255, 0.08), transparent 20%),
        radial-gradient(circle at 72% 44%, rgba(84, 104, 255, 0.1), transparent 22%),
        linear-gradient(180deg, #fbfbff 0%, #f4f6ff 100%);
    overflow: hidden;
}

.map-surface::before {
    content: "";
    position: absolute;
    inset: 8% 4%;
    background-image:
        radial-gradient(circle, rgba(123, 130, 200, 0.22) 1px, transparent 1px),
        radial-gradient(circle, rgba(123, 130, 200, 0.16) 1px, transparent 1px);
    background-size: 8px 8px, 10px 10px;
    background-position: 0 0, 24px 20px;
    mask-image:
        radial-gradient(circle at 20% 32%, #000 0 18%, transparent 19%),
        radial-gradient(circle at 47% 27%, #000 0 19%, transparent 20%),
        radial-gradient(circle at 54% 57%, #000 0 22%, transparent 23%),
        radial-gradient(circle at 82% 60%, #000 0 15%, transparent 16%),
        radial-gradient(circle at 28% 70%, #000 0 14%, transparent 15%);
    opacity: 0.8;
}

.map-hub,
.map-node {
    position: absolute;
    z-index: 2;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 10px 24px rgba(83, 95, 171, 0.2);
}

.map-hub {
    left: 48%;
    top: 49%;
    width: 72px;
    height: 72px;
    color: var(--primary-strong);
    font-weight: 800;
}

.map-node {
    width: 44px;
    height: 44px;
}

.node-us {
    left: 18%;
    top: 26%;
}

.node-eu {
    left: 47%;
    top: 20%;
}

.node-africa {
    left: 62%;
    top: 31%;
}

.node-asia {
    left: 77%;
    top: 57%;
}

.node-aus {
    left: 24%;
    top: 66%;
}

.map-curve {
    position: absolute;
    z-index: 1;
    border-top: 2px solid rgba(100, 113, 255, 0.2);
    border-left: 2px solid transparent;
    border-right: 2px solid transparent;
    border-radius: 50%;
}

.curve-one {
    left: 24%;
    top: 28%;
    width: 31%;
    height: 28%;
    transform: rotate(10deg);
}

.curve-two {
    left: 44%;
    top: 22%;
    width: 22%;
    height: 28%;
    transform: rotate(-14deg);
}

.curve-three {
    left: 51%;
    top: 36%;
    width: 30%;
    height: 26%;
    transform: rotate(18deg);
}

.curve-four {
    left: 24%;
    top: 52%;
    width: 31%;
    height: 19%;
    transform: rotate(-12deg);
}

.delivery-copy p {
    margin: 18px 0 0;
}

.feature-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-top: 28px;
}

.feature-item {
    display: flex;
    gap: 14px;
}

.feature-icon,
.mini-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 14px;
    flex: 0 0 auto;
    background: #ffffff;
    color: var(--primary-strong);
    font-size: 1.35rem;
    font-weight: 800;
}

.feature-item h3,
.mini-feature h3 {
    font-size: 1.05rem;
}

.why-grid {
    display: grid;
    grid-template-columns: 1.2fr repeat(4, 1fr);
    gap: 20px;
    align-items: start;
}

.why-intro h2 {
    margin-bottom: 26px;
}

.mini-feature {
    padding: 22px;
    border-radius: 22px;
}

.mini-feature p {
    margin: 14px 0 0;
}

.stats-bar {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 0;
    margin-top: 24px;
    border-radius: 22px;
    overflow: hidden;
}

.stat {
    padding: 22px;
    text-align: center;
    border-right: 1px solid var(--line);
}

.stat:last-child {
    border-right: 0;
}

.stat strong {
    display: block;
    font-size: 2rem;
    line-height: 1;
}

.stat span {
    display: block;
    margin-top: 8px;
    color: var(--muted);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: 1.1fr repeat(1, 1fr);
    gap: 20px;
    align-items: start;
}

.testimonial-card {
    min-height: 230px;
    /*padding: 22px;*/
    border-radius: 22px;
}

.stars {
    color: #f6b600;
    letter-spacing: 0.18em;
    font-size: 0.92rem;
}

.testimonial-card p {
    margin: 14px 0 18px;
    color: var(--text);
}

.person {
    display: flex;
    align-items: center;
    gap: 12px;
}

.avatar {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ffd9d5, #ffe9b0);
    color: #5e4b39;
    font-size: 0.85rem;
    font-weight: 700;
}

.person strong {
    display: block;
    font-size: 0.96rem;
}

.person span:last-child {
    color: var(--muted);
    font-size: 0.88rem;
}

.site-footer {
    color: #fff;
    background: #071238;
}

.footer-cta {
    background: linear-gradient(90deg, #091744 0%, #12154b 55%, #8a4eff 100%);
}

.footer-cta-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    padding: 34px 0;
}

.footer-cta h2 {
    color: #fff;
}

.footer-cta p {
    margin: 10px 0 0;
    color: rgba(255, 255, 255, 0.76);
}

.footer-main {
    padding: 34px 0 18px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.45fr repeat(4, 1fr);
    gap: 26px;
}

.footer-brand-lockup {
    margin-bottom: 18px;
}

.footer-brand p {
    max-width: 260px;
    color: rgba(255, 255, 255, 0.74);
}

.socials {
    display: flex;
    gap: 10px;
    margin-top: 16px;
}

.socials span {
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: #fff;
    font-size: 0.8rem;
    font-weight: 700;
}

.footer-col h3 {
    margin-bottom: 14px;
    color: #fff;
    font-size: 1rem;
}

.footer-col a,
.footer-col p {
    display: block;
    margin: 0 0 10px;
    color: rgba(255, 255, 255, 0.74);
    text-decoration: none;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    margin-top: 22px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.68);
    margin: 0;
}

@media (max-width: 1180px) {
    .hero-grid,
    .delivery-grid,
    .why-grid,
    .testimonial-grid,
    .footer-grid,
    .footer-cta-row {
        grid-template-columns: 1fr;
    }

    .hero-visual {
        justify-content: center;
    }

    .four-up,
    .feature-row {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 900px) {
    body.menu-open {
        overflow: hidden;
    }

    .container {
        width: min(var(--container), calc(100% - 28px));
    }

    .menu-toggle {
        display: inline-flex;
    }

    .site-nav {
        position: absolute;
        top: calc(100% + 8px);
        left: 14px;
        right: 14px;
        display: grid;
        gap: 12px;
        padding: 18px;
        border-radius: 18px;
        background: rgba(10, 18, 56, 0.96);
        border: 1px solid rgba(255, 255, 255, 0.1);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-8px);
        transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
    }

    .site-nav.is-open {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .nav-cta {
        text-align: center;
    }

    .hero {
        padding-top: 108px;
    }

    .hero-copy h1 {
        font-size: clamp(2.6rem, 12vw, 4rem);
    }

    .hero-copy p {
        font-size: 1rem;
    }

    .globe {
        width: min(100%, 540px);
    }

    .section-head {
        align-items: start;
        flex-direction: column;
    }

    .four-up,
    .feature-row,
    .stats-bar {
        grid-template-columns: 1fr;
    }

    .stat {
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .stat:last-child {
        border-bottom: 0;
    }

    .footer-bottom {
        flex-direction: column;
    }
}

@media (max-width: 640px) {
    .hero {
        padding-bottom: 56px;
    }

    .hero-grid {
        gap: 18px;
    }
    
   .footer-cta-row {
    display: flex;
    flex-direction: column; /* ðŸ”¥ main change */
    align-items: flex-start; /* left align */
    gap: 15px;
    padding: 34px 0;
}
    .hero-actions,
    .footer-actions {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    .hero-note {
        flex-wrap: wrap;
    }

    .globe-pin {
        top: 50%;
        left: 49%;
        gap: 8px;
    }

    .pin-label {
        font-size: 0.72rem;
        padding: 7px 10px;
    }

    .info-card,
    .mini-feature,
    .testimonial-card {
        min-height: auto;
    }
    
   
}
.arrow::before {
    content: "â†’";
    display: inline-block;
    margin-left: 6px;
    transition: 0.3s;
}

.section-link:hover .arrow::before {
    transform: translateX(6px);
}

/* PANEL */
.map-panel {
    
}

/* MAP SURFACE */
.map-surface {
    position: relative;
    /*height: 420px;*/
    border-radius: 25px;
    overflow: hidden;

    background: url('images/Frame 2 (9).png') no-repeat center;
    background-size: contain; /* 🔥 main fix */
}

/* CENTER HUB */
.map-hub {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

    width: 85px;
    height: 85px;
    border-radius: 50%;
    background: #fff;
    color: #4f46e5;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;

    box-shadow:
        0 0 0 12px rgba(99,102,241,0.1),
        0 0 0 24px rgba(99,102,241,0.05);
}

/* NODES */
.map-node {
    position: absolute;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #fff;
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);

    animation: float 3s ease-in-out infinite;
}

.map-node img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* NODE POSITIONS */
.node-us { top: 25%; left: 15%; }
.node-eu { top: 18%; left: 48%; }
.node-africa { top: 32%; left: 63%; }
.node-asia { top: 60%; left: 78%; }
.node-aus { top: 68%; left: 28%; }

/* CURVES */
.map-curve {
    position: absolute;
    border-top: 2px dashed rgba(99,102,241,0.5);
    border-radius: 50%;
}

/* CURVE POSITIONS */
.curve-one {
    top: 28%;
    left: 20%;
    width: 35%;
    height: 30%;
    transform: rotate(10deg);
}

.curve-two {
    top: 20%;
    left: 45%;
    width: 25%;
    height: 30%;
    transform: rotate(-15deg);
}

.curve-three {
    top: 38%;
    left: 55%;
    width: 30%;
    height: 28%;
    transform: rotate(20deg);
}

.curve-four {
    top: 55%;
    left: 28%;
    width: 30%;
    height: 20%;
    transform: rotate(-10deg);
}

/* FLOAT ANIMATION */
@keyframes float {
    0%,100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

/* RESPONSIVE */
@media(max-width:768px){
    .map-surface {
        height: 300px;
    }

    .map-node {
        width: 40px;
        height: 40px;
    }

    .map-hub {
        width: 60px;
        height: 60px;
        font-size: 12px;
    }
}

.testimonial-card {
    width: 580px;
    height: 230px;
    overflow: hidden;
    border-radius: 20px;
}

.testimonial-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* 📱 Mobile responsive */
@media (max-width: 600px) {
    .testimonial-card {
        width: 100%;
        height: auto;
        aspect-ratio: 580 / 230; /* keeps same ratio */
    }
}

.global-section {
    text-align: center;
    padding: 60px 20px;
}

.global-heading {
    font-size: 32px;
    font-weight: 700;
    color: #ffffff; /* bright */
    margin-bottom: 15px;

    /* 🔥 gradient highlight (modern SaaS look) */
    background: linear-gradient(90deg, #7539f8, #5468ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.global-para {
    font-size: 16px;
    color: #12162a;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}