@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
:root {
    --navy: #062b59;
    --navy-2: #0a3b73;
    --orange: #ff681f;
    --orange-dark: #e95613;
    --ink: #10233f;
    --muted: #637188;
    --line: #e4e9f0;
    --soft: #f6f8fb;
    --white: #fff;
    --shadow: 0 15px 40px rgba(2, 34, 72, 0.12);
    --radius: 16px;
    --container: 1180px;
}

* {
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    margin: 0;
    font-family: 'Inter',sans-serif;
    color: var(--ink);
    background: #fff;
    line-height: 1.6;
}
img {
    max-width: 100%;
    display: block;
}
a {
    text-decoration: none;
    color: inherit;
}
button,
input {
    font: inherit;
}
section {
    scroll-margin-top: 90px;
}
.container {
    width: min(var(--container), calc(100% - 40px));
    margin-inline: auto;
}
.eyebrow {
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #011c47;
    margin-bottom: 8px;
    text-align: left;
}
.process {
    height: stretch;
    display: grid;
    gap: 30px;
}
.section-title {
    margin: 0 0 12px;
    font-size: clamp(1.9rem, 3vw, 3rem);
    line-height: 1.1;
    letter-spacing: -0.03em;
}
.section-copy {
    max-width: 700px;
    color: var(--muted);
    margin: 0;
}
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 48px;
    padding: 0 22px;
    border-radius: 8px;
    border: 1px solid transparent;
    font-size: 0.88rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    cursor: pointer;
    transition: 0.25s ease;
}
.btn:hover {
    transform: translateY(-2px);
}
.btn-primary {
    background: var(--orange);
    color: #fff;
    box-shadow: 0 10px 25px rgba(255, 104, 31, 0.22);
}
.btn-primary:hover {
    background: var(--orange-dark);
}
.btn-outline {
    border-color: #fff;
    color: #fff;
    background: transparent;
}
.btn-dark {
    background: var(--navy);
    color: #fff;
}
.btn-light {
    background: #fff;
    color: var(--navy);
}

/* topbar */
.topbar {
    background: #041f42;
    color: #dce8f7;
    font-size: 0.77rem;
}
.topbar-inner {
    min-height: 34px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}
.topbar-group {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}
.topbar a:hover {
    color: #fff;
}

/* header */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(11, 43, 83, 0.08);
}
.nav-wrap {
    min-height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: max-content;
}
.logo-mark {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: linear-gradient(145deg, var(--navy), #0f5da8);
    color: #fff;
    font-size: 1.35rem;
    font-weight: 900;
    display: grid;
    place-items: center;
    position: relative;
    box-shadow: 0 8px 18px rgba(6, 43, 89, 0.18);
}
.logo-mark:after {
    content: "";
    width: 18px;
    height: 5px;
    background: var(--orange);
    border-radius: 99px;
    position: absolute;
    right: -5px;
    top: 8px;
    transform: rotate(-18deg);
}
.logo-text strong {
    display: block;
    font-size: 1.22rem;
    line-height: 1;
    font-weight: 900;
    letter-spacing: 0.03em;
    color: var(--navy);
}
.logo-text span {
    font-size: 0.72rem;
    letter-spacing: 0.23em;
    font-weight: 800;
    color: var(--muted);
}
.logo-text em {
    font-style: normal;
    color: var(--orange);
}
.nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
    font-size: 0.88rem;
    font-weight: 700;
}
.nav-links a {
    position: relative;
}
.nav-links a:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 0;
    height: 2px;
    background: var(--orange);
    transition: 0.25s;
}
.nav-links a:hover:after {
    width: 100%;
}
.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}
.menu-btn {
    display: none;
    width: 44px;
    height: 44px;
    border: 0;
    background: var(--soft);
    border-radius: 10px;
    color: var(--navy);
    font-size: 1.45rem;
    cursor: pointer;
}

/* hero */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    color: #fff;
    overflow: hidden;
    position: relative;
    background: radial-gradient(circle at 75% 24%, rgba(77, 168, 255, 0.32), transparent 25%),
        linear-gradient(110deg, rgba(2, 31, 66, 0.98) 0%, rgba(3, 38, 77, 0.93) 42%, rgba(4, 45, 82, 0.55) 100%);
}
.hero:before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("images/hero.gif");
    background-size: cover;
    mask-image: linear-gradient(to right, transparent, black 55%, black);
    /* opacity: .25; */
	    background-position: 0px -122px;
}
.hero-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1;
    gap: 48px;
    align-items: center;
    padding: 86px 0 74px;
}
.hero h1 {
    margin: 0;
    font-size: 55px;
    line-height: 66px;
    letter-spacing: -.045em;
    max-width: 900px;
    margin-top: 20px;
}
.hero h1 span {
    color: var(--orange);
}
.hero-sub {
    font-size: 1.05rem;
    color: #d7e5f5;
    max-width: 590px;
    margin: 24px 0 30px;
}
.hero-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}
.hero-stats {
    margin-top: 44px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    max-width: 680px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}
.hero-stat {
    padding: 22px 14px 0 0;
}
.hero-stat strong {
    display: block;
    font-size: 1.35rem;
}
.hero-stat span {
    display: block;
    font-size: 0.74rem;
    color: #c6d7eb;
}

.hero-art {
    position: relative;
    min-height: 430px;
}
.globe {
    position: absolute;
    width: 420px;
    height: 420px;
    border: 1px solid rgba(125, 201, 255, 0.28);
    border-radius: 50%;
    right: -40px;
    top: 0;
    box-shadow:
        inset 0 0 80px rgba(57, 144, 232, 0.16),
        0 0 90px rgba(25, 110, 189, 0.15);
}
.globe:before,
.globe:after {
    content: "";
    position: absolute;
    inset: 50% 0 auto;
    height: 1px;
    background: rgba(125, 201, 255, 0.2);
}
.globe:after {
    inset: 0 50% 0 auto;
    width: 1px;
    height: auto;
}
.route {
    position: absolute;
    border: 1px dashed rgba(255, 255, 255, 0.35);
    border-radius: 50%;
}
.route.r1 {
    width: 350px;
    height: 150px;
    right: 0;
    top: 90px;
    transform: rotate(-14deg);
}
.route.r2 {
    width: 270px;
    height: 110px;
    right: 60px;
    top: 160px;
    transform: rotate(22deg);
}
.ship {
    position: absolute;
    right: 30px;
    bottom: 32px;
    width: 410px;
    height: 110px;
    background: linear-gradient(155deg, #314d6b 0 49%, #122b46 50%);
    clip-path: polygon(4% 32%, 78% 32%, 100% 62%, 88% 100%, 17% 100%, 0 58%);
    filter: drop-shadow(0 18px 12px rgba(0, 0, 0, 0.28));
}
.ship:before {
    content: "";
    position: absolute;
    left: 76px;
    top: -96px;
    width: 255px;
    height: 102px;
    background:
        linear-gradient(#f04e23 0 0) 0 0/48px 30px,
        linear-gradient(#e7a01e 0 0) 52px 0/48px 30px,
        linear-gradient(#1187a9 0 0) 104px 0/48px 30px,
        linear-gradient(#f04e23 0 0) 156px 0/48px 30px,
        linear-gradient(#e7a01e 0 0) 208px 0/48px 30px,
        linear-gradient(#1187a9 0 0) 26px 34px/48px 30px,
        linear-gradient(#f04e23 0 0) 78px 34px/48px 30px,
        linear-gradient(#e7a01e 0 0) 130px 34px/48px 30px,
        linear-gradient(#1187a9 0 0) 182px 34px/48px 30px,
        linear-gradient(#f04e23 0 0) 52px 68px/48px 30px,
        linear-gradient(#e7a01e 0 0) 104px 68px/48px 30px,
        linear-gradient(#1187a9 0 0) 156px 68px/48px 30px;
    background-repeat: no-repeat;
}
.truck {
    position: absolute;
    left: 10px;
    bottom: 0;
    width: 200px;
    height: 74px;
    border-radius: 12px 12px 6px 6px;
    background: linear-gradient(90deg, #f6f7f9 0 58%, var(--orange) 58%);
    box-shadow: 0 16px 26px rgba(0, 0, 0, 0.28);
}
.truck:before {
    content: "";
    position: absolute;
    right: 0;
    top: -28px;
    width: 74px;
    height: 30px;
    background: var(--orange);
    clip-path: polygon(30% 0, 100% 0, 100% 100%, 0 100%);
}
.truck:after {
    content: "●     ●";
    position: absolute;
    left: 30px;
    bottom: -22px;
    color: #0f1f31;
    font-size: 34px;
    letter-spacing: 72px;
}
.plane {
    position: absolute;
    right: 18px;
    top: 55px;
    font-size: 5.7rem;
    transform: rotate(-10deg);
    filter: drop-shadow(0 8px 8px rgba(0, 0, 0, 0.25));
}
.hero-badge {
    position: absolute;
    right: 10px;
    top: 190px;
    padding: 16px 18px;
    border-radius: 12px;
    background: rgba(4, 31, 64, 0.62);
    border: 1px solid rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(10px);
    font-size: 0.78rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

/* brands */
.brands {
    padding: 20px 0 26px;
    border-bottom: 1px solid var(--line);
}
.brands-label {
    text-align: center;
    font-size: 0.76rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--navy);
    margin-bottom: 16px;
}
.brand-row {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 18px;
    align-items: center;
}
.brand {
    min-height: 44px;
    display: grid;
    place-items: center;
    color: #32435a;
    font-weight: 900;
    font-size: 1rem;
    filter: grayscale(0.1);
}

/* about */
.about {
    padding: 86px 0;
}
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.08fr;
    gap: 64px;
    align-items: center;
}
.visual-card {
    min-height: 430px;
    border-radius: 22px;
    overflow: hidden;
    position: relative;
    background-image: url("images/hero.gif");
    background-size: cover;
}
.visual-label.row {
    display: flex;
    gap: 15px;
    justify-content: center;
    align-items: center;
}
.visual-label.row i {
    font-size: 65px;
}

.visual-label {
    position: absolute;
    z-index: 3;
    left: 24px;
    bottom: 24px;
    background: #fff;
    padding: 14px 18px;
    border-radius: 12px;
    font-weight: 900;
    color: var(--navy);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}
.about-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 30px;
    margin: 24px 0 28px;
    padding: 0;
    list-style: none;
}
.about-list li {
    position: relative;
    padding-left: 24px;
    color: #33455d;
    font-size: 0.93rem;
}
.about-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--orange);
    font-weight: 900;
}

/* services */
.services {
    padding: 84px 0;
    background: var(--soft);
}
.section-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 34px;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}
.service-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 420px;
    transition: 0.25s ease;
}
.service-card:hover {
    transform: translateY(-7px);
    box-shadow: var(--shadow);
}
.service-top {
    padding: 20px;
    color: #fff;
    background: var(--navy);
    display: flex;
    gap: 10px;
    justify-content: center;
    align-items: center;
}
.service-card:nth-child(even) .service-top {
    background: var(--orange);
}
.service-icon {
    font-size: 1.55rem;
}
.service-top h3 {
    margin: 0;
    font-size: 1.05rem;
    text-transform: uppercase;
    line-height: 1.25;
}
.service-body {
    padding: 18px 20px;
    flex: 1;
}
.service-body ul {
    margin: 0;
    padding-left: 18px;
    color: #5e6d81;
    font-size: 0.88rem;
}
.service-image {
    height: 150px;
    background: url("images/ship.png");
    position: relative;
    background-size: cover;
}
.service-card.card-2 .service-image {
    background: url("images/truck.png");
    background-size: cover;
}
.service-card.card-3 .service-image {
    background: url("images/delivery.png");
    background-size: cover;
}
.service-card.card-4 .service-image {
    background: url("images/man-power.png");
    background-size: cover;
}
.service-link {
    margin: 0 20px 20px;
    background-color: var(--navy);
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    color: #fff;
    padding: 5px 15px;
}
.org {
    background-color: #f85f02;
}

/* industries */
.industries {
    padding: 58px 0 76px;
}
.industries-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
    margin-top: 28px;
}
.industry {
    text-align: center;
    padding: 14px 6px;
    border-radius: 12px;
    border: 1px solid transparent;
    transition: 0.2s;
    border: 1px solid #17baff;
}
.industry:hover {
    border-color: var(--line);
    background: #fff;
    box-shadow: 0 8px 18px rgba(6, 43, 89, 0.08);
}
.industry span {
    display: block;
    font-size: 1.65rem;
    margin-bottom: 8px;
}
.industry small {
    font-weight: 700;
    color: #4d5f77;
}

/* choose */
.choose {
    color: #fff;
    background-image: url("images/img-2.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: right;
    background-color: #011c47;
}
.choose-grid {
    display: grid;
    grid-template-columns: 1.25fr 0.75fr;
    min-height: 310px;
}
.choose-left {
    padding: 54px 50px 52px 0;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
}
.choose-list {
    margin: 20px 0 0;
    padding: 0;
    list-style: none;
}
.choose-list li {
    margin: 8px 0;
    font-size: 0.9rem;
    padding-left: 22px;
    position: relative;
}
.choose-list li:before {
    content: "●";
    position: absolute;
    left: 0;
    color: var(--orange);
}
.metric-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}
.metric {
    padding: 15px;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 14px;
    background: rgba(255, 255, 255, .05);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    
}
.metric strong {
    display: block;
    font-size: 1.65rem;
}
.metric span {
    font-size: 0.75rem;
    color: #cbd9e9;
}
.choose-right {
    padding: 44px 0 34px 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    position: relative;
    overflow: hidden;
}
.choose-right h3 {
    font-size: 1.65rem;
    line-height: 1.1;
    margin: 0 0 10px;
    max-width: 250px;
}
.choose-right p {
    max-width: 280px;
    font-size: 0.9rem;
    margin: 0 0 20px;
    color: #fff0e8;
}
.partners {
    background: #fff;
    border-radius: 10px;
    padding: 10px 12px;
    display: flex;
    gap: 12px;
    color: #30445f;
    font-weight: 900;
    position: relative;
    z-index: 2;
}

/* network process */
.network-process {
    padding: 84px 0;
}
.np-grid {
    display: grid;
    grid-template-columns: 1fr 1.05fr;
    gap: 60px;
    align-items: center;
}
.map-card {
    background-size: contain;

    text-align: center;
}
.map-shape {
    position: absolute;
    inset: 42px 34px 60px;
    background: #dce8f3;
    clip-path: polygon(
        4% 28%,
        15% 17%,
        25% 22%,
        32% 13%,
        45% 18%,
        53% 10%,
        69% 19%,
        82% 15%,
        95% 30%,
        86% 43%,
        92% 56%,
        77% 62%,
        72% 82%,
        59% 69%,
        48% 77%,
        36% 62%,
        25% 70%,
        13% 56%,
        3% 48%
    );
}
.pin {
    position: absolute;
    color: var(--orange);
    font-size: 1.2rem;
}
.pin.p1 {
    left: 17%;
    top: 33%;
}
.pin.p2 {
    left: 44%;
    top: 29%;
}
.pin.p3 {
    left: 61%;
    top: 45%;
}
.pin.p4 {
    left: 72%;
    top: 30%;
}
.pin.p5 {
    left: 82%;
    top: 58%;
}
.map-caption {
    position: absolute;
    left: 24px;
    bottom: 18px;
    font-weight: 900;
    color: var(--navy);
}
.process-row {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 8px;
    margin: 34px 0 28px;
}
.step {
    text-align: center;
    position: relative;
}
.step:not(:last-child):after {
    content: "";
    position: absolute;
    top: 27px;
    left: 63%;
    width: 76%;
    height: 2px;
    background: #d5deea;
}
.step-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    margin: auto;
    border: 2px solid var(--navy);
    background: #fff;
    display: grid;
    place-items: center;
    font-size: 1.25rem;
    position: relative;
    z-index: 2;
}
.step b {
    display: block;
    margin-top: 10px;
    font-size: 0.76rem;
    line-height: 1.25;
}
.step small {
    font-size: 0.64rem;
    color: var(--muted);
}

/* testimonials */
.testimonials {
    padding: 76px 0;
    background: var(--soft);
}
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 30px;
}
.quote {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 8px 20px rgba(6, 43, 89, 0.05);
}
.stars {
    color: #ff9b22;
    letter-spacing: 0.12em;
}
.quote p {
    color: #485b73;
    font-size: 0.92rem;
}
.quote strong {
    display: block;
    margin-top: 16px;
}
.quote small {
    color: var(--muted);
}

/* footer */
footer {
    background: #062b59;
    color: #d7e4f2;
}
.footer-top {
    padding: 58px 0 38px;
    display: grid;
    grid-template-columns: 1.25fr 0.8fr 1fr 1fr 1.2fr;
    gap: 34px;
}
.footer-logo .logo-text strong {
    color: #fff;
}
.footer-logo p {
    font-size: 0.85rem;
    color: #b8c9dd;
    max-width: 250px;
}
.socials {
    display: flex;
    gap: 10px;
    margin-top: 18px;
}
.socials a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.18);
}
.footer-col h4 {
    color: #fff;
    margin: 0 0 16px;
    font-size: 0.9rem;
    text-transform: uppercase;
}
.footer-col a,
.footer-col p {
    display: block;
    font-size: 0.82rem;
    color: #c0d0e0;
    margin: 7px 0;
}
.newsletter {
    display: flex;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    margin-top: 12px;
}
.newsletter input {
    border: 0;
    outline: 0;
    padding: 12px;
    width: 100%;
    min-width: 0;
}
.newsletter button {
    border: 0;
    background: var(--orange);
    color: #fff;
    padding: 0 14px;
    font-weight: 800;
    cursor: pointer;
}
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding: 18px 0;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    font-size: 0.75rem;
    color: #aebfd2;
}
.floating-actions {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.float-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: #fff;
    background: var(--navy);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
    font-size: 1.1rem;
}

.btn-dark {
    background: var(--navy);
    color: #fff;
    width: fit-content;
    height: 10px;
    margin: auto;
}
.btn-dark {
    background: var(--navy);
    color: #fff;
    width: fit-content;
    height: 10px;
}

/* responsive */
@media (max-width: 1080px) {
    .nav-links {
        gap: 18px;
    }
    .nav-links a:nth-last-child(2) {
        display: none;
    }
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .industries-grid {
        grid-template-columns: repeat(5, 1fr);
    }
    .footer-top {
        grid-template-columns: 1.2fr repeat(2, 1fr);
    }
    .footer-col:nth-child(4),
    .footer-col:nth-child(5) {
        margin-top: 10px;
    }
}
@media (max-width: 860px) {
    .topbar-group:last-child {
        display: none;
    }
    .nav-links {
        position: absolute;
        left: 20px;
        right: 20px;
        top: 80px;
        background: #fff;
        border: 1px solid var(--line);
        border-radius: 14px;
        box-shadow: var(--shadow);
        padding: 18px;
        display: none;
        flex-direction: column;
        align-items: stretch;
    }
    .nav-links.open {
        display: flex;
    }
    .nav-links a:nth-last-child(2) {
        display: block;
    }
    .nav-actions .btn {
        display: none;
    }
    .menu-btn {
        display: block;
    }
    .hero-inner,
    .about-grid,
    .np-grid {
        grid-template-columns: 1fr;
    }
    .hero {
        min-height: auto;
    }
    .hero-art {
        min-height: 390px;
    }
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    .brand-row {
        grid-template-columns: repeat(4, 1fr);
    }
    .about-grid {
        gap: 34px;
    }
    .choose {
        background: var(--navy);
    }
    .choose-grid {
        grid-template-columns: 1fr;
    }
    .choose-left {
        padding: 48px 0;
    }
    .choose-right {
        background: var(--orange);
        padding: 42px 32px;
        min-height: 250px;
    }
    .testimonial-grid {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 640px) {
    .container {
        width: min(100% - 28px, var(--container));
    }
    .topbar-inner {
        justify-content: center;
    }
    .topbar-group {
        gap: 12px;
        font-size: 0.7rem;
    }
    .logo-text strong {
        font-size: 1rem;
    }
    .logo-text span {
        font-size: 0.6rem;
    }
    .hero-inner {
        padding: 56px 0;
    }
    .hero h1 {
        font-size: 2.65rem;
    }
    .hero-art {
        min-height: 310px;
    }
    .globe {
        width: 300px;
        height: 300px;
        right: -80px;
    }
    .ship {
        width: 300px;
        right: -10px;
    }
    .ship:before {
        transform: scale(0.75);
        transform-origin: left bottom;
        left: 52px;
    }
    .truck {
        width: 150px;
        transform: scale(0.88);
        transform-origin: left bottom;
    }
    .plane {
        font-size: 4.5rem;
    }
    .hero-badge {
        right: 0;
        top: 120px;
    }
    .brands {
        overflow: hidden;
    }
    .brand-row {
        grid-template-columns: repeat(2, 1fr);
    }
    .about,
    .services,
    .network-process,
    .testimonials {
        padding: 60px 0;
    }
    .about-list {
        grid-template-columns: 1fr;
    }
    .services-grid {
        grid-template-columns: 1fr;
    }
    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .section-head {
        align-items: flex-start;
        flex-direction: column;
    }
    .choose-left {
        grid-template-columns: 1fr;
    }
    .metric-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .process-row {
        grid-template-columns: repeat(3, 1fr);
        row-gap: 24px;
    }
    .step:nth-child(3):after,
    .step:nth-child(6):after {
        display: none;
    }
    .footer-top {
        grid-template-columns: 1fr 1fr;
    }
    .footer-logo {
        grid-column: 1/-1;
    }
    .footer-col:last-child {
        grid-column: 1/-1;
    }
    .footer-bottom {
        flex-direction: column;
    }
}


/* =========================================
   QUICK LOGISTICS QUOTE CTA
========================================= */

.logistics-cta {
    width: 100%;
    padding: 0px 60px 80px 60px;
    background: #f5f8fc;
}

.cta-container {
  max-width: 1420px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 60px;

  padding: 34px 44px;
  border: 1px solid #dce5f0;
  border-radius: 20px;

  background:
    radial-gradient(
      circle at 75% 50%,
      rgba(232, 241, 255, 0.9),
      transparent 42%
    ),
    #ffffff;

  box-sizing: border-box;
}


/* LEFT CONTENT */

.cta-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.cta-label {
  display: block;
  margin-bottom: 12px;

  color: #ff641d;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.5px;
}

.cta-content h2 {
  margin: 0;

  color: #0d3566;
  font-size: 34px;
  line-height: 1.15;
  font-weight: 800;
}

.cta-line {
  width: 78px;
  height: 2px;

  margin: 17px 0 18px;

  background: #ff641d;
}

.cta-content p {
  max-width: 300px;
  margin: 0;

  color: #405a78;
  font-size: 15px;
  line-height: 1.6;
}


/* FEATURES */

.cta-features {
  display: flex;
  gap: 28px;
  margin-top: 26px;
}

.cta-feature {
  text-align: center;
}

.feature-icon {
  width: 44px;
  height: 44px;

  margin: 0 auto 8px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 10px;

  background: #ffffff;
  color: #2484ff;

  font-size: 24px;

  box-shadow: 0 5px 18px rgba(31, 77, 126, 0.08);
}

.cta-feature span {
  display: block;

  color: #173b66;
  font-size: 10px;
  font-weight: 700;
  white-space: nowrap;
}


/* =========================================
   FORM
========================================= */

.cta-form {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;

  margin-bottom: 12px;
}

.cta-form input,
.cta-form select,
.cta-form textarea {
  width: 100%;
  box-sizing: border-box;

  border: 1px solid #d7e0eb;
  border-radius: 7px;

  background: #ffffff;

  padding: 13px 14px;

  color: #173b66;
  font-family: inherit;
  font-size: 13px;

  outline: none;

  transition: 0.2s ease;
}

.cta-form input,
.cta-form select {
  height: 43px;
}

.cta-form textarea {
  height: 44px;
  resize: none;
}

.cta-form input::placeholder,
.cta-form textarea::placeholder {
  color: #8a99ad;
}

.cta-form input:focus,
.cta-form select:focus,
.cta-form textarea:focus {
  border-color: #ff641d;
  box-shadow: 0 0 0 3px rgba(255, 100, 29, 0.08);
}


/* BUTTON */

.quote-btn {
  width: fit-content;

  margin-top: 2px;
  padding: 13px 22px;

  border: 0;
  border-radius: 7px;

  background: #ff641d;
  color: #ffffff;

  font-size: 12px;
  font-weight: 800;

  cursor: pointer;

  box-shadow: 0 8px 20px rgba(255, 100, 29, 0.18);

  transition: 0.25s ease;
}

.quote-btn span {
  margin-left: 7px;
  font-size: 17px;
}

.quote-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(255, 100, 29, 0.28);
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 1000px) {

  .cta-container {
    grid-template-columns: 1fr;
    gap: 35px;
    padding: 35px;
  }

  .cta-content p {
    max-width: 500px;
  }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {

  .logistics-cta {
    padding: 35px 15px;
  }

  .cta-container {
    padding: 25px 18px;
    border-radius: 15px;
  }

  .cta-content h2 {
    font-size: 28px;
  }

  .cta-features {
    gap: 15px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-bottom: 12px;
  }

  .cta-form input,
  .cta-form select {
    height: 45px;
  }

  .cta-form textarea {
    height: 100px;
  }

  .quote-btn {
    width: 100%;
    text-align: center;
  }

}


.brand-marquee {
  width: 100%;
  overflow: hidden;
}

.brand-row {
  display: flex;
  align-items: center;
  width: max-content;
  animation: brandScroll 20s linear infinite;
}

.brand {
    flex: 0 0 auto;
    width: 107px;
    height: 80px;
    margin-right: 10px;
    align-items: center;
    justify-content: center;
    margin-left: 10px;
    display: flex;
}
.brand img {
    max-width: 130px;
    max-height: 50px;
    width: auto;
    height: 44px;
    object-fit: contain;
}

@keyframes brandScroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}



/* ================================
   Jet Sea Logistics Services
================================ */

.jsl-services {
width: 100%;
    padding: 60px 50px 0px 20px;
    box-sizing: border-box;
    background: #fff;
}

.jsl-services-container {
  max-width: 1200px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}


/* Card */
.jsl-service-card {
  padding: 32px 28px;

  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border: 1px solid #eeeeee;

  box-sizing: border-box;

  transition: all 0.3s ease;
	    background: #f6f8fb;
    border: 1px solid var(--line);
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;

    transition: 0.25s ease;
}


/* Icon */
.jsl-service-icon {
  width: 120px;
  height: 120px;

  display: flex;
  align-items: center;
  justify-content: center;

  margin-bottom: 10px;
}

.jsl-service-icon img {
  max-width: 75px;
  max-height: 75px;
  width: auto;
  height: auto;

  object-fit: contain;
}


/* Heading */
.jsl-service-card h3 {
  margin: 0 0 14px;

  font-family: Arial, Helvetica, sans-serif;
  font-size: 20px;
  line-height: 1.25;
  font-weight: 700;

  color: #111;
}


/* Description */
.jsl-service-card p {
  margin: 0;

  max-width: 360px;

  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  font-weight: 400;

  color: #637188;
}


/* Hover */
.jsl-service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}


/* ================================
   Tablet
================================ */

@media (max-width: 991px) {

  .jsl-services {
    padding: 40px 20px;
  }

  .jsl-services-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
  }

  .jsl-service-card {
    min-height: 390px;
    padding: 28px 22px;
  }

  .jsl-service-card h3 {
    font-size: 24px;
  }

  .jsl-service-card p {
    font-size: 17px;
  }
}


/* ================================
   Mobile
================================ */

@media (max-width: 767px) {

  .jsl-services {
    padding: 35px 15px;
  }

  .jsl-services-container {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .jsl-service-card {
    min-height: auto;
    padding: 30px 20px;
  }

  .jsl-service-icon {
    width: 100px;
    height: 100px;
    margin-bottom: 8px;
  }

  .jsl-service-icon img {
    max-width: 90px;
    max-height: 90px;
  }

  .jsl-service-card h3 {
    font-size: 23px;
    margin-bottom: 12px;
  }

  .jsl-service-card p {
    max-width: 500px;
    font-size: 16px;
    line-height: 1.55;
  }
}


/* ================================
   Small Mobile
================================ */

@media (max-width: 480px) {

  .jsl-services {
    padding: 25px 12px;
  }

  .jsl-service-card {
    padding: 25px 18px;
  }

  .jsl-service-card h3 {
    font-size: 21px;
  }

  .jsl-service-card p {
    font-size: 15px;
  }
}