:root {
--navy: #05388e;
--teal: #00a788;
--teal2: #00a781;
--white: #ffffff;
--light: #f1f6fd;
--dark: #040e22;
--text: #1a2540;
--muted: #6b7a99;
--bdr: #dde4f2;
--fd: "Cormorant Garamond", Georgia, serif;
--fb: "Plus Jakarta Sans", system-ui, sans-serif;
}
*,
*::before,
*::after {
box-sizing: border-box;
margin: 0;
padding: 0;
}
html {
scroll-behavior: smooth;
overflow-x: hidden;
max-width: 100%;
}
body {
font-family: var(--fb);
color: var(--text);
background: #fff;
overflow-x: hidden;
max-width: 100%;
-webkit-font-smoothing: antialiased;
}
h1,
h2,
h3,
h4 {
font-family: var(--fd);
font-weight: 700;
}
img {
max-width: 100%;
display: block;
}
::-webkit-scrollbar {
width: 4px;
}
::-webkit-scrollbar-track {
background: var(--dark);
}
::-webkit-scrollbar-thumb {
background: var(--teal);
border-radius: 4px;
}

/* ═════════════════════ NAVBAR ═════════════════════ */
.navbar {
background: rgba(4, 14, 34, 0.93);
backdrop-filter: blur(20px);
-webkit-backdrop-filter: blur(20px);
padding: 0.85rem 0;
position: fixed !important;
width: 100%;
top: 0;
left: 0;
z-index: 1050;
border-bottom: 1px solid rgba(255, 255, 255, 0.06);
transition: background 0.4s, padding 0.3s;
}
.navbar.scrolled {
background: rgba(4, 14, 34, 0.99);
padding: 0.6rem 0;
}
.brand-logo {
width: 34px;
height: 34px;
background: var(--teal);
border-radius: 7px;
display: flex;
align-items: center;
justify-content: center;
flex-shrink: 0;
}
.brand-name {
font-family: var(--fb);
font-weight: 800;
font-size: 1.15rem;
color: #fff;
}
.brand-name em {
color: var(--teal);
font-style: normal;
}
.brand-sub {
font-size: 0.6rem;
color: rgba(255, 255, 255, 0.32);
letter-spacing: 1.5px;
text-transform: uppercase;
display: block;
}
.nav-link {
color: rgba(255, 255, 255, 0.7) !important;
font-family: var(--fb);
font-size: 0.78rem;
font-weight: 600;
letter-spacing: 0.8px;
text-transform: uppercase;
padding: 0.45rem 0.85rem !important;
transition: color 0.22s;
}
.nav-link:hover {
color: var(--teal) !important;
}
.nav-cta {
background: var(--teal) !important;
color: #fff !important;
border-radius: 6px;
padding: 0.45rem 1.3rem !important;
font-weight: 700 !important;
transition: background 0.22s, transform 0.2s !important;
}
.nav-cta:hover {
background: #fff !important;
transform: translateY(-1px);
}
.navbar-toggler {
border: none;
background: rgba(255, 255, 255, 0.08);
border-radius: 6px;
padding: 0.38rem 0.6rem;
position: relative;
z-index: 1060;
}
.navbar-brand img {
height: 42px;
width: auto;
}
.navbar-toggler:focus {
box-shadow: none;
}
@media (max-width: 991px) {
#nb {
background: rgba(4, 14, 34, 0.98);
border-radius: 0 0 10px 10px;
padding: 0 0.5rem 0.75rem;
margin-top: 0.25rem;
}
}

.brand-text {
display: flex;
flex-direction: column;
overflow: hidden;
line-height: 1.2;
color: white;
margin-left: 10px;
}

.brand-text .line1,
.brand-text .line2 {
white-space: nowrap;
overflow: hidden;
display: block;
/* border-right: 2px solid #5bc8ff; */
}

/* Line 1 — types first, then cursor blinks 3x */
.brand-text .line1 {
font-size: clamp(0.65rem, 1.2vw, 0.82rem);
width: 0;
animation: type1 1.4s steps(22, end) 0.3s forwards, blink 0.7s step-end 0.3s 3;
}

/* Line 2 — starts after line 1 finishes */
.brand-text .line2 {
font-size: clamp(0.7rem, 1.3vw, 0.82rem);
width: 0;
animation: type2 1.2s steps(18, end) 1.9s forwards, blink 0.7s step-end 1.9s 3,
cursor-hide 0s linear 4.5s forwards; /* hides cursor when done */
}

@keyframes type1 {
from {
width: 0;
}
to {
width: 22ch;
} /* match character count of line 1 */
}

@keyframes type2 {
from {
width: 0;
}
to {
width: 18ch;
} /* match character count of line 2 */
}

@keyframes blink {
0%,
100% {
border-right-color: #5bc8ff;
}
50% {
border-right-color: transparent;
}
}

@keyframes cursor-hide {
to {
border-right-color: transparent;
}
}

/* Responsive — shrink font on mobile */
@media (max-width: 768px) {
.brand-text .line1 {
font-size: 0.75rem;
}
.brand-text .line2 {
font-size: 0.75rem;
}
}

/* ═════════════════════ HERO ═════════════════════ */
#heroWrap {
position: relative;
width: 100%;
}
#heroCarousel {
width: 100%;
}
#heroCarousel .carousel-item {
display: flex !important;
}
.hero-slide {
height: 100vh;
min-height: 580px;
width: 100%;
position: relative;
overflow: hidden;
display: flex;
align-items: center;
padding-top: 70px;
padding-bottom: 80px;
}
.hero-slide::before {
content: "";
position: absolute;
inset: 0;
z-index: 1;
background: linear-gradient(
115deg,
rgba(4, 14, 34, 0.9) 30%,
rgba(0, 167, 136, 0.12) 100%
);
}
.hero-bg {
position: absolute;
inset: 0;
background-size: cover;
background-position: center center;
transform: scale(1.06);
transition: transform 7s ease;
z-index: 0;
will-change: transform;
}
.carousel-item.active .hero-bg {
transform: scale(1);
}
.slide-1 .hero-bg {
background-image: url("https://www.maritserv.net/bateliishipping/assets/images/banner.webp");
}
.slide-2 .hero-bg {
background-image: url("https://www.maritserv.net/bateliishipping/assets/images/feeder.jpg");
}
.slide-3 .hero-bg {
background-image: url("https://www.maritserv.net/bateliishipping/assets/images/feeder.jpg");
}
.hero-content {
position: relative;
z-index: 2;
width: 100%;
}
.hero-eyebrow {
display: inline-flex;
align-items: center;
gap: 10px;
color: var(--teal);
font-size: 0.7rem;
font-weight: 700;
letter-spacing: 3px;
text-transform: uppercase;
margin-bottom: 1rem;
}
.hero-eyebrow::before {
content: "";
width: 28px;
height: 2px;
background: var(--teal);
display: block;
}
.hero-title {
font-family: var(--fd);
font-size: clamp(2.6rem, 6vw, 5.2rem);
font-weight: 700;
color: #fff;
line-height: 1.05;
letter-spacing: -0.5px;
margin-bottom: 1.2rem;
}
.hero-title .accent {
color: var(--teal);
font-style: italic;
}
.hero-desc {
color: rgba(255, 255, 255, 0.68);
font-size: clamp(0.88rem, 1.5vw, 1.03rem);
max-width: 520px;
line-height: 1.78;
margin-bottom: 2rem;
font-weight: 300;
}
.btns-wrap {
display: flex;
flex-wrap: wrap;
gap: 12px;
align-items: center;
}
.btn-ph {
background: var(--teal);
color: #fff;
padding: 0.82rem 2rem;
border-radius: 6px;
font-family: var(--fb);
font-weight: 700;
font-size: 0.84rem;
border: none;
text-decoration: none;
display: inline-block;
transition: background 0.22s, transform 0.2s, box-shadow 0.22s;
white-space: nowrap;
}
.btn-ph:hover {
background: var(--teal2);
transform: translateY(-2px);
box-shadow: 0 8px 26px rgba(0, 167, 136, 0.42);
color: #fff;
}
.btn-oh {
background: transparent;
color: #fff;
padding: 0.8rem 1.8rem;
border-radius: 6px;
font-family: var(--fb);
font-weight: 600;
font-size: 0.84rem;
border: 1.5px solid rgba(255, 255, 255, 0.35);
text-decoration: none;
display: inline-block;
transition: border-color 0.22s, color 0.22s;
white-space: nowrap;
}
.btn-oh:hover {
border-color: var(--teal);
color: var(--teal);
}
.hstats-bar {
position: absolute;
bottom: 0;
left: 0;
right: 0;
z-index: 20;
background: rgba(4, 14, 34, 0.75);
backdrop-filter: blur(14px);
-webkit-backdrop-filter: blur(14px);
border-top: 1px solid rgba(255, 255, 255, 0.07);
}
.hstat {
padding: 1rem 0;
text-align: center;
border-right: 1px solid rgba(255, 255, 255, 0.07);
}
.hstat:last-child {
border-right: none;
}
.hstat-n {
font-family: var(--fd);
font-size: clamp(1.5rem, 2.5vw, 2rem);
font-weight: 700;
color: var(--teal);
display: block;
line-height: 1;
}
.hstat-l {
font-size: 0.62rem;
color: rgba(255, 255, 255, 0.45);
letter-spacing: 1px;
text-transform: uppercase;
margin-top: 3px;
display: block;
}
.carousel-control-prev,
.carousel-control-next {
width: 42px;
height: 42px;
background: rgba(0, 167, 136, 0.82);
border-radius: 50%;
top: 50%;
transform: translateY(-50%);
opacity: 1;
bottom: auto;
}
.carousel-control-prev {
left: 14px;
}
.carousel-control-next {
right: 14px;
}
.carousel-indicators {
bottom: 90px;
}
.carousel-indicators button {
width: 22px;
height: 3px;
border-radius: 2px;
background: rgba(255, 255, 255, 0.32);
border: none;
transition: width 0.3s, background 0.3s;
}
.carousel-indicators button.active {
background: var(--teal);
width: 42px;
}

/* ═════════════════════ SECTION SHARED ═════════════════════ */
section {
padding: clamp(60px, 9vw, 110px) 0;
}
.sec-ey {
display: inline-flex;
align-items: center;
gap: 8px;
color: var(--teal);
font-size: 0.68rem;
font-weight: 700;
letter-spacing: 2.8px;
text-transform: uppercase;
margin-bottom: 0.65rem;
}
.sec-ey::before {
content: "";
width: 22px;
height: 2px;
background: var(--teal);
display: block;
}
.sec-title {
font-family: var(--fd);
font-size: clamp(2rem, 3.8vw, 3.2rem);
font-weight: 700;
color: var(--navy);
line-height: 1.12;
}
.sec-title .ac {
color: var(--teal);
font-style: italic;
}
.sec-desc {
color: var(--muted);
font-size: 0.95rem;
line-height: 1.8;
font-weight: 300;
}
.dteal {
width: 46px;
height: 2.5px;
background: linear-gradient(90deg, var(--teal), var(--teal2));
border-radius: 2px;
margin: 0.9rem 0 1.4rem;
}
.dteal.mx-auto {
margin-left: auto;
margin-right: auto;
}

/* ═════════════════════ ABOUT ═════════════════════ */
.about-img-wrap {
position: relative;
border-radius: 20px;
overflow: hidden;
box-shadow: 0 20px 60px rgba(5, 56, 142, 0.18);
}
.about-img-wrap img {
width: 100%;
height: clamp(260px, 40vw, 460px);
object-fit: cover;
}
.about-badge {
position: absolute;
bottom: -16px;
right: -16px;
background: var(--teal);
color: #fff;
border-radius: 14px;
padding: 1.3rem 1.7rem;
box-shadow: 0 12px 32px rgba(0, 167, 136, 0.38);
text-align: center;
}
.about-badge strong {
font-family: var(--fd);
font-size: 3rem;
font-weight: 700;
display: block;
line-height: 1;
}
.about-badge span {
font-size: 0.72rem;
opacity: 0.85;
}
.feat {
display: flex;
align-items: flex-start;
gap: 13px;
margin-bottom: 1.2rem;
}
.feat-icon {
flex-shrink: 0;
width: 42px;
height: 42px;
background: rgba(0, 167, 136, 0.1);
border-radius: 10px;
display: flex;
align-items: center;
justify-content: center;
color: var(--teal);
font-size: 1.1rem;
}
.feat-text strong {
display: block;
font-family: var(--fb);
font-weight: 700;
font-size: 0.9rem;
color: var(--navy);
margin-bottom: 2px;
}
.feat-text p {
margin: 0;
color: var(--muted);
font-size: 0.84rem;
line-height: 1.65;
}

/* ═════════════════════ SERVICES ═════════════════════ */
#services {
background: var(--light);
}
.svc-card {
background: #fff;
border-radius: 14px;
overflow: hidden;
box-shadow: 0 4px 22px rgba(5, 56, 142, 0.07);
transition: transform 0.35s cubic-bezier(0.22, 0.68, 0, 1.2), box-shadow 0.35s;
height: 100%;
}
.svc-card:hover {
transform: translateY(-9px);
box-shadow: 0 22px 58px rgba(5, 56, 142, 0.16);
}
.svc-img {
position: relative;
overflow: hidden;
height: 210px;
}
.svc-img img {
width: 100%;
height: 100%;
object-fit: cover;
transition: transform 0.55s ease;
}
.svc-card:hover .svc-img img {
transform: scale(1.08);
}
.svc-overlay {
position: absolute;
inset: 0;
background: linear-gradient(0deg, rgba(5, 56, 142, 0.5) 0%, transparent 55%);
}
.svc-badge {
position: absolute;
bottom: 14px;
left: 17px;
width: 44px;
height: 44px;
background: var(--teal);
border-radius: 10px;
display: flex;
align-items: center;
justify-content: center;
color: #fff;
font-size: 1.15rem;
box-shadow: 0 5px 18px rgba(0, 167, 136, 0.42);
}
.svc-body {
padding: 1.35rem 1.45rem 1.5rem;
}
.svc-body h5 {
font-family: var(--fb);
font-weight: 700;
font-size: 0.97rem;
color: var(--navy);
margin-bottom: 0.42rem;
}
.svc-body p {
color: var(--muted);
font-size: 0.84rem;
line-height: 1.65;
margin: 0;
}
.svc-lnk {
display: inline-flex;
align-items: center;
gap: 6px;
color: var(--teal);
font-size: 0.78rem;
font-weight: 700;
margin-top: 0.9rem;
text-decoration: none;
transition: gap 0.2s;
}
.svc-lnk:hover {
gap: 11px;
color: var(--teal2);
}

/* ═════════════════════ STATS BANNER ═════════════════════ */
#stats {
background: linear-gradient(135deg, var(--navy) 0%, #063fa8 100%);
padding: clamp(50px, 7vw, 80px) 0;
}
.sb {
text-align: center;
padding: 0.5rem 0.8rem;
}
.sb .n {
font-family: var(--fd);
font-size: clamp(2.4rem, 4vw, 3.6rem);
font-weight: 700;
color: #fff;
line-height: 1;
display: block;
}
.sb .n span {
color: var(--teal);
}
.sb .l {
color: rgba(255, 255, 255, 0.5);
font-size: 0.72rem;
letter-spacing: 1.2px;
margin-top: 0.4rem;
text-transform: uppercase;
display: block;
}

/* ═════════════════════ COVERAGE — MAP ═════════════════════ */
#coverage {
background: var(--dark);
overflow: hidden;
position: relative;
}
#coverage::before {
content: "";
position: absolute;
inset: 0;
background: radial-gradient(
ellipse 80% 55% at 50% 40%,
rgba(0, 167, 136, 0.07) 0%,
transparent 70%
);
pointer-events: none;
z-index: 0;
}
#coverage .container {
position: relative;
z-index: 1;
}
#coverage .sec-title {
color: #fff;
}
.map-outer {
position: relative;
margin-top: 2.8rem;
border-radius: 18px;
overflow: hidden;
border: 1px solid rgba(255, 255, 255, 0.07);
background: #030e28;
box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
aspect-ratio: 965.3 / 508.66;
width: 100%;
}
.map-outer > .map-svg-wrap {
position: absolute;
inset: 0;
width: 100%;
height: 100%;
}
.map-outer > .map-svg-wrap svg {
width: 100%;
height: 100%;
display: block;
}
.map-vignette {
position: absolute;
inset: 0;
z-index: 2;
pointer-events: none;
background: linear-gradient(
to right,
rgba(3, 14, 40, 0.55) 0%,
transparent 15%,
transparent 85%,
rgba(3, 14, 40, 0.55) 100%
),
linear-gradient(
to bottom,
rgba(3, 14, 40, 0.4) 0%,
transparent 20%,
transparent 80%,
rgba(3, 14, 40, 0.6) 100%
);
}
.map-dots-layer {
position: absolute;
inset: 0;
z-index: 5;
}
.mdot-wrap {
position: absolute;
transform: translate(-50%, -50%);
cursor: pointer;
}
.mdot {
width: 10px;
height: 10px;
border-radius: 50%;
background: var(--teal);
position: relative;
box-shadow: 0 0 6px rgba(0, 167, 136, 0.7);
}
.mdot.gold {
background: #f5c518;
box-shadow: 0 0 8px rgba(245, 197, 24, 0.8);
width: 13px;
height: 13px;
}
.mdot::before,
.mdot::after {
content: "";
position: absolute;
border-radius: 50%;
border: 1.5px solid currentColor;
inset: -3px;
animation: pr 2.2s ease-out infinite;
}
.mdot::after {
animation-delay: 1.1s;
}
.mdot {
color: var(--teal);
}
.mdot.gold {
color: #f5c518;
}
@keyframes pr {
0% {
transform: scale(0.7);
opacity: 0.9;
}
100% {
transform: scale(2.6);
opacity: 0;
}
}
.mtt {
position: absolute;
bottom: calc(100% + 12px);
left: 50%;
transform: translateX(-50%) translateY(5px);
background: rgba(5, 30, 80, 0.97);
border: 1px solid rgba(0, 167, 136, 0.35);
border-radius: 10px;
padding: 0.55rem 0.9rem;
white-space: nowrap;
pointer-events: none;
opacity: 0;
transition: opacity 0.22s, transform 0.22s;
z-index: 20;
box-shadow: 0 8px 26px rgba(0, 0, 0, 0.5);
}
.mtt::after {
content: "";
position: absolute;
top: 100%;
left: 50%;
transform: translateX(-50%);
border: 5px solid transparent;
border-top-color: rgba(5, 30, 80, 0.97);
}
.mdot-wrap:hover .mtt {
opacity: 1;
transform: translateX(-50%) translateY(0);
}
.tt-c {
font-family: var(--fb);
font-weight: 700;
font-size: 0.78rem;
color: #fff;
display: block;
margin-bottom: 2px;
}
.tt-p {
font-size: 0.66rem;
color: var(--teal);
letter-spacing: 0.7px;
text-transform: uppercase;
}
.map-lines-svg {
position: absolute;
inset: 0;
z-index: 3;
width: 100%;
height: 100%;
pointer-events: none;
overflow: visible;
}
.map-legend {
position: absolute;
bottom: 14px;
left: 16px;
z-index: 10;
display: flex;
align-items: center;
gap: 14px;
flex-wrap: wrap;
}
.leg-item {
display: flex;
align-items: center;
gap: 6px;
}
.leg-dot {
width: 9px;
height: 9px;
border-radius: 50%;
flex-shrink: 0;
}
.leg-lbl {
font-size: 0.63rem;
color: rgba(255, 255, 255, 0.48);
letter-spacing: 0.4px;
}
.map-hint {
position: absolute;
top: 12px;
right: 14px;
z-index: 10;
font-size: 0.63rem;
color: rgba(255, 255, 255, 0.25);
font-style: italic;
}
.cpills {
display: flex;
flex-wrap: wrap;
gap: 9px;
margin-top: 2rem;
justify-content: center;
}
.cpill {
display: inline-flex;
align-items: center;
gap: 7px;
background: rgba(255, 255, 255, 0.05);
border: 1px solid rgba(255, 255, 255, 0.09);
border-radius: 50px;
padding: 0.42rem 0.95rem;
font-size: 0.78rem;
font-weight: 600;
color: rgba(255, 255, 255, 0.75);
transition: background 0.25s, border-color 0.25s, transform 0.2s;
cursor: default;
}
.cpill:hover {
background: rgba(0, 167, 136, 0.16);
border-color: var(--teal);
color: #fff;
transform: translateY(-3px);
}
.cpill .fl {
font-size: 1.05rem;
}
.cpill .pt {
color: var(--teal);
font-size: 0.66rem;
margin-left: 2px;
}

/* ═════════════════════ WHY US ═════════════════════ */
.why-card {
background: #fff;
border-radius: 14px;
padding: clamp(1.4rem, 3vw, 2.1rem);
box-shadow: 0 4px 22px rgba(5, 56, 142, 0.07);
border: 1px solid var(--bdr);
transition: transform 0.32s, box-shadow 0.32s, border-color 0.32s;
position: relative;
overflow: hidden;
height: 100%;
}
.why-card::after {
content: "";
position: absolute;
bottom: 0;
left: 0;
height: 3px;
width: 0;
background: linear-gradient(90deg, var(--navy), var(--teal));
transition: width 0.4s ease;
}
.why-card:hover {
transform: translateY(-8px);
box-shadow: 0 20px 56px rgba(5, 56, 142, 0.15);
border-color: transparent;
}
.why-card:hover::after {
width: 100%;
}
.why-n {
font-family: var(--fd);
font-size: 4.5rem;
font-weight: 700;
color: rgba(5, 56, 142, 0.05);
line-height: 1;
position: absolute;
top: 10px;
right: 16px;
}
.why-icon {
width: 50px;
height: 50px;
background: linear-gradient(135deg, var(--navy), var(--teal));
border-radius: 12px;
display: flex;
align-items: center;
justify-content: center;
color: #fff;
font-size: 1.25rem;
margin-bottom: 1rem;
box-shadow: 0 6px 18px rgba(5, 56, 142, 0.2);
}
.why-card h5 {
font-family: var(--fb);
font-weight: 700;
font-size: 0.95rem;
color: var(--navy);
margin-bottom: 0.5rem;
}
.why-card p {
color: var(--muted);
font-size: 0.84rem;
line-height: 1.68;
margin: 0;
}

/* ═════════════════════ CEO ═════════════════════ */
#ceo {
background: linear-gradient(140deg, #f0f6ff 0%, #e6f5f1 100%);
}
.ceo-img-outer {
position: relative;
display: inline-block;
max-width: 420px;
width: 100%;
}
.ceo-frame {
position: absolute;
inset: -13px;
border: 2px solid rgba(0, 167, 136, 0.28);
border-radius: 20px;
pointer-events: none;
}
.ceo-img-outer img {
width: 100%;
border-radius: 16px;
object-fit: cover;
display: block;
box-shadow: 0 22px 60px rgba(5, 56, 142, 0.2);
position: relative;
z-index: 1;
max-height: 460px;
}
.ceo-tag {
position: absolute;
bottom: 20px;
left: -20px;
background: var(--navy);
color: #fff;
border-radius: 10px;
padding: 0.85rem 1.3rem;
box-shadow: 0 10px 28px rgba(5, 56, 142, 0.32);
z-index: 2;
}
.ceo-tag strong {
font-family: var(--fb);
font-weight: 800;
font-size: 0.86rem;
display: block;
}
.ceo-tag span {
font-size: 0.68rem;
color: var(--teal);
}
.exp-pill {
display: inline-flex;
align-items: center;
gap: 7px;
background: var(--teal);
color: #fff;
border-radius: 50px;
padding: 0.42rem 1rem;
font-size: 0.76rem;
font-weight: 700;
margin-bottom: 1.2rem;
}
.ceo-quote {
border-left: 3px solid var(--teal);
padding-left: 1.2rem;
margin: 1.3rem 0;
color: var(--muted);
font-family: var(--fd);
font-size: 1.1rem;
font-style: italic;
line-height: 1.7;
}
.ceo-bds {
display: flex;
gap: 11px;
flex-wrap: wrap;
margin-top: 1.4rem;
}
.ceo-bd {
background: #fff;
border-radius: 8px;
padding: 0.85rem 1.2rem;
text-align: center;
min-width: 95px;
box-shadow: 0 3px 14px rgba(5, 56, 142, 0.08);
}
.ceo-bd strong {
font-family: var(--fd);
font-size: 1.5rem;
font-weight: 700;
color: var(--navy);
display: block;
}
.ceo-bd span {
font-size: 0.68rem;
color: var(--muted);
line-height: 1.35;
display: block;
}

/* ═════════════════════ FOOTER ═════════════════════ */
footer {
background: var(--dark);
color: rgba(255, 255, 255, 0.5);
padding: 62px 0 26px;
}
.ft-brand {
font-family: var(--fb);
font-size: 1.2rem;
font-weight: 800;
color: #fff;
}
.ft-brand em {
color: var(--teal);
font-style: normal;
}
.ft-sub {
font-size: 0.6rem;
color: rgba(255, 255, 255, 0.28);
letter-spacing: 1.5px;
text-transform: uppercase;
display: block;
}
.ft-h {
font-family: var(--fb);
font-weight: 700;
font-size: 0.8rem;
color: #fff;
letter-spacing: 1.1px;
text-transform: uppercase;
margin-bottom: 1rem;
}
.ft-ul {
list-style: none;
padding: 0;
margin: 0;
}
.ft-ul li {
margin-bottom: 0.58rem;
}
.ft-ul a {
color: rgba(255, 255, 255, 0.48);
font-size: 0.84rem;
text-decoration: none;
transition: color 0.2s;
}
.ft-ul a:hover {
color: var(--teal);
}
.ft-hr {
border-color: rgba(255, 255, 255, 0.07);
margin: 2.4rem 0 1.4rem;
}
.ft-copy {
font-size: 0.76rem;
color: rgba(255, 255, 255, 0.28);
}
#btt {
position: fixed;
bottom: 26px;
right: 26px;
width: 42px;
height: 42px;
background: var(--teal);
color: #fff;
border: none;
border-radius: 50%;
font-size: 0.95rem;
display: flex;
align-items: center;
justify-content: center;
box-shadow: 0 5px 17px rgba(0, 167, 136, 0.38);
cursor: pointer;
opacity: 0;
transform: translateY(16px);
transition: opacity 0.3s, transform 0.3s;
z-index: 998;
}
#btt.show {
opacity: 1;
transform: translateY(0);
}

/* ═════════════════════ RESPONSIVE ═════════════════════ */
@media (max-width: 575px) {
.navbar-brand img {
height: 32px;
}
.hero-slide {
padding-top: 70px;
padding-bottom: 72px;
}
.hstat {
padding: 0.7rem 0;
}
.hstat-n {
font-size: 1.3rem;
}
.hstat-l {
font-size: 0.55rem;
letter-spacing: 0.6px;
}
.about-img-wrap {
margin-bottom: 2.8rem;
}
.about-badge {
bottom: -10px;
right: -10px;
padding: 1rem 1.2rem;
}
.about-badge strong {
font-size: 2.2rem;
}
.ceo-tag {
left: -8px;
}
.ceo-frame {
inset: -7px;
}
.ceo-img-outer {
margin-bottom: 3rem;
max-width: 300px;
}
.map-hint {
display: none;
}
#btt {
bottom: 16px;
right: 16px;
width: 38px;
height: 38px;
}
.carousel-control-prev,
.carousel-control-next {
display: none;
}
.carousel-indicators {
bottom: 78px;
}
.btn-ph,
.btn-oh {
padding: 0.75rem 1.5rem;
font-size: 0.8rem;
}
}
@media (max-width: 767px) {
.hero-desc {
max-width: 100%;
}
.ceo-img-outer {
max-width: 340px;
margin-bottom: 3rem;
}
.about-img-wrap {
margin-bottom: 2.8rem;
}
}
@media (min-width: 768px) and(max-width:991px) {
.navbar-brand img {
height: 36px;
}
.hero-title {
font-size: clamp(2.8rem, 5.5vw, 4rem);
}
}
@media (min-width: 1400px) {
.hero-title {
font-size: 5.4rem;
}
}
@media (max-width: 575px) {
.mtt {
font-size: 0.7rem;
padding: 0.4rem 0.7rem;
}
.mdot {
width: 8px;
height: 8px;
}
.mdot.gold {
width: 10px;
height: 10px;
}
}
/* ═════════════════════ CONTACT MODAL ═════════════════════ */
.contact-modal .modal-content {
background: var(--dark);
border: 1px solid rgba(255, 255, 255, 0.08);
border-radius: 20px;
overflow: hidden;
}
.contact-modal .modal-header {
background: linear-gradient(135deg, var(--navy) 0%, #063fa8 100%);
border-bottom: none;
padding: 2rem 2rem 1.6rem;
}
.contact-modal .modal-title {
font-family: var(--fd);
font-size: 1.9rem;
font-weight: 700;
color: #fff;
line-height: 1.15;
}
.contact-modal .modal-title span {
color: var(--teal);
font-style: italic;
}
.contact-modal .modal-header p {
color: rgba(255, 255, 255, 0.55);
font-size: 0.84rem;
margin: 0.4rem 0 0;
font-weight: 300;
}
.contact-modal .btn-close {
filter: invert(1);
opacity: 0.6;
}
.contact-modal .btn-close:hover {
opacity: 1;
}
.contact-modal .modal-body {
padding: 2rem;
background: var(--dark);
}
.clink {
display: flex;
align-items: center;
gap: 1rem;
background: rgba(255, 255, 255, 0.04);
border: 1px solid rgba(255, 255, 255, 0.07);
border-radius: 14px;
padding: 1.1rem 1.3rem;
text-decoration: none;
transition: background 0.25s, border-color 0.25s, transform 0.22s;
margin-bottom: 0.75rem;
}
.clink:last-child {
margin-bottom: 0;
}
.clink:hover {
border-color: var(--teal);
background: rgba(0, 167, 136, 0.1);
transform: translateX(4px);
}
.clink-icon {
width: 48px;
height: 48px;
border-radius: 12px;
display: flex;
align-items: center;
justify-content: center;
font-size: 1.3rem;
flex-shrink: 0;
color: #fff;
}
.clink-icon.wa {
background: #25d366;
}
.clink-icon.vb {
background: #7360f2;
}
.clink-icon.ml {
background: var(--teal);
}
.clink-icon.ph {
background: var(--navy);
}
.clink-info strong {
display: block;
color: #fff;
font-size: 0.88rem;
font-weight: 700;
font-family: var(--fb);
margin-bottom: 2px;
}
.clink-info span {
color: rgba(255, 255, 255, 0.45);
font-size: 0.78rem;
}
.clink-arrow {
margin-left: auto;
color: rgba(255, 255, 255, 0.2);
font-size: 0.85rem;
transition: color 0.22s, transform 0.22s;
}
.clink:hover .clink-arrow {
color: var(--teal);
transform: translateX(3px);
}
.cmodal-divider {
display: flex;
align-items: center;
gap: 12px;
margin: 1.2rem 0;
}
.cmodal-divider::before,
.cmodal-divider::after {
content: "";
flex: 1;
height: 1px;
background: rgba(255, 255, 255, 0.07);
}
.cmodal-divider span {
color: rgba(255, 255, 255, 0.22);
font-size: 0.7rem;
letter-spacing: 1px;
text-transform: uppercase;
}

.cta-banner {
background: linear-gradient(135deg, var(--navy) 0%, #063fa8 100%);
position: relative;
overflow: hidden;
padding: 0;
}
.cta-banner::before {
content: "";
position: absolute;
inset: 0;
background: radial-gradient(
ellipse 55% 120% at 0% 50%,
var(--teal) -30%,
transparent 55%
),
radial-gradient(
ellipse 40% 100% at 100% 50%,
rgba(0, 167, 136, 0.1) 0%,
transparent 60%
);
pointer-events: none;
z-index: 0;
}
/* diagonal teal slash */
.cta-banner::after {
content: "";
position: absolute;
left: 0;
top: 0;
width: 320px;
height: 100%;
background: var(--teal);
clip-path: polygon(0 0, 72% 0, 55% 100%, 0 100%);
z-index: 0;
}
.cta-banner .container {
position: relative;
z-index: 1;
}
.cta-inner {
display: flex;
align-items: center;
min-height: 400px;
gap: 2rem;
}
/* cargo image sits over the teal slash */
.cta-img-wrap {
flex-shrink: 0;
width: 355px;
position: relative;
z-index: 2;
margin-left: -12px;
}
.cta-img-wrap img {
width: 100%;
height: 380px;
object-fit: cover;
object-position: center;
display: block;
filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.35));
}
.cta-text {
flex: 1;
padding: 1.8rem 0;
z-index: 2;
}
.cta-text h2 {
font-family: var(--fd);
font-size: clamp(1.6rem, 3vw, 2.5rem);
font-weight: 700;
color: #fff;
line-height: 1.1;
margin-bottom: 0.5rem;
}
.cta-text h2 em {
color: var(--teal);
font-style: italic;
}
.cta-text p {
color: rgba(255, 255, 255, 0.58);
font-size: 0.88rem;
margin: 0;
font-weight: 300;
}
.cta-action {
flex-shrink: 0;
z-index: 2;
}
.btn-cta {
display: inline-flex;
align-items: center;
gap: 8px;
background: transparent;
color: #fff;
border: 2px solid rgba(255, 255, 255, 0.6);
border-radius: 8px;
padding: 0.75rem 1.8rem;
font-family: var(--fb);
font-weight: 700;
font-size: 0.8rem;
letter-spacing: 1.2px;
text-transform: uppercase;
text-decoration: none;
transition: background 0.25s, border-color 0.25s, color 0.25s, transform 0.2s;
cursor: pointer;
}
.btn-cta:hover {
background: var(--teal);
border-color: var(--teal);
color: #fff;
transform: translateY(-2px);
box-shadow: 0 8px 24px rgba(0, 167, 136, 0.4);
}
/* badges row */
.cta-badges {
display: flex;
gap: 10px;
margin-top: 0.8rem;
flex-wrap: wrap;
}
.cta-badge {
display: inline-flex;
align-items: center;
gap: 5px;
background: rgba(255, 255, 255, 0.08);
border: 1px solid rgba(255, 255, 255, 0.12);
border-radius: 50px;
padding: 0.28rem 0.75rem;
font-size: 0.7rem;
color: rgba(255, 255, 255, 0.65);
font-weight: 600;
}
.cta-badge i {
color: var(--teal);
font-size: 0.72rem;
}

@media (max-width: 991px) {
.cta-banner::after {
width: 220px;
}
.cta-img-wrap {
width: 220px;
}
.cta-img-wrap img {
height: 130px;
}
}
@media (max-width: 767px) {
.cta-banner::after {
display: none;
}
.cta-banner::before {
background: radial-gradient(
ellipse 80% 60% at 50% 0%,
rgba(0, 167, 136, 0.15) 0%,
transparent 70%
);
}
.cta-inner {
flex-direction: column;
align-items: flex-start;
padding: 2rem 0;
gap: 1.2rem;
min-height: unset;
}
.cta-img-wrap {
display: none;
}
.cta-text {
padding: 0;
}
.cta-action {
width: 100%;
}
.btn-cta {
width: 100%;
justify-content: center;
}
}

.mmj-section {
background: var(--light);
padding: clamp(40px, 6vw, 70px) 0;
}
.mmj-card {
background: #fff;
border-radius: 22px;
box-shadow: 0 12px 48px rgba(5, 56, 142, 0.13), 0 2px 8px rgba(5, 56, 142, 0.06);
overflow: hidden;
display: flex;
align-items: stretch;
transition: transform 0.35s cubic-bezier(0.22, 0.68, 0, 1.2), box-shadow 0.35s;
text-decoration: none;
}
.mmj-card:hover {
transform: translateY(-6px);
box-shadow: 0 28px 72px rgba(5, 56, 142, 0.2), 0 4px 16px rgba(5, 56, 142, 0.08);
}
/* Left image panel */
.mmj-img-panel {
width: 340px;
flex-shrink: 0;
position: relative;
overflow: hidden;
}
.mmj-img-panel img {
width: 100%;
height: 100%;
object-fit: cover;
object-position: center;
display: block;
transition: transform 0.55s ease;
}
.mmj-card:hover .mmj-img-panel img {
transform: scale(1.06);
}
/* dark overlay on image */
.mmj-img-panel::after {
content: "";
position: absolute;
inset: 0;
background: linear-gradient(90deg, rgba(4, 14, 34, 0.35) 0%, transparent 70%);
}
/* partner badge on image */
.mmj-img-badge {
position: absolute;
top: 16px;
left: 16px;
z-index: 2;
background: var(--teal);
color: #fff;
font-family: var(--fb);
font-size: 0.6rem;
font-weight: 700;
letter-spacing: 2px;
text-transform: uppercase;
padding: 0.3rem 0.75rem;
border-radius: 50px;
}
/* Right content panel */
.mmj-content {
flex: 1;
padding: 2.2rem 2.4rem;
display: flex;
flex-direction: column;
justify-content: center;
position: relative;
}
/* subtle top border accent */
.mmj-content::before {
content: "";
position: absolute;
top: 0;
left: 2.4rem;
right: 2.4rem;
height: 3px;
background: linear-gradient(90deg, var(--navy), var(--teal));
border-radius: 0 0 3px 3px;
}
.mmj-eyebrow {
display: inline-flex;
align-items: center;
gap: 7px;
font-size: 0.65rem;
font-weight: 700;
letter-spacing: 2.5px;
text-transform: uppercase;
color: var(--teal);
margin-bottom: 0.7rem;
}
.mmj-eyebrow::before {
content: "";
width: 18px;
height: 2px;
background: var(--teal);
display: block;
}
.mmj-title {
font-family: var(--fd);
font-size: clamp(1.5rem, 2.5vw, 2.1rem);
font-weight: 700;
color: var(--navy);
line-height: 1.15;
margin-bottom: 0.65rem;
}
.mmj-title span {
color: var(--teal);
font-style: italic;
}
.mmj-subtitle {
color: var(--muted);
font-size: 0.88rem;
line-height: 1.7;
margin-bottom: 1.4rem;
font-weight: 300;
}
/* feature pills row */
.mmj-pills {
display: flex;
flex-wrap: wrap;
gap: 8px;
margin-bottom: 1.6rem;
}
.mmj-pill {
display: inline-flex;
align-items: center;
gap: 5px;
background: var(--light);
border: 1px solid var(--bdr);
border-radius: 6px;
padding: 0.3rem 0.75rem;
font-size: 0.72rem;
font-weight: 600;
color: var(--navy);
}
.mmj-pill i {
color: var(--teal);
font-size: 0.7rem;
}
/* bottom row: logo + button */
.mmj-footer-row {
display: flex;
align-items: center;
justify-content: space-between;
gap: 1rem;
flex-wrap: wrap;
}
.mmj-brand {
display: flex;
align-items: center;
gap: 10px;
}
.mmj-brand-icon {
width: 40px;
height: 40px;
background: linear-gradient(135deg, var(--navy), #063fa8);
border-radius: 9px;
display: flex;
align-items: center;
justify-content: center;
color: #fff;
font-size: 1.05rem;
box-shadow: 0 4px 12px rgba(5, 56, 142, 0.25);
flex-shrink: 0;
}
.mmj-brand-name {
font-family: var(--fb);
font-weight: 800;
font-size: 1.05rem;
color: var(--navy);
display: block;
line-height: 1;
}
.mmj-brand-sub {
font-size: 0.65rem;
color: var(--muted);
display: block;
margin-top: 2px;
letter-spacing: 0.3px;
}
.btn-mmj {
display: inline-flex;
align-items: center;
gap: 8px;
background: linear-gradient(135deg, var(--navy), #063fa8);
color: #fff;
border: none;
border-radius: 8px;
padding: 0.72rem 1.6rem;
font-family: var(--fb);
font-weight: 700;
font-size: 0.8rem;
letter-spacing: 0.5px;
text-decoration: none;
transition: background 0.25s, transform 0.2s, box-shadow 0.25s;
white-space: nowrap;
}
.btn-mmj:hover {
background: linear-gradient(135deg, var(--teal), var(--teal2));
color: #fff;
transform: translateY(-2px);
box-shadow: 0 8px 24px rgba(0, 167, 136, 0.35);
}
.btn-mmj i {
font-size: 0.82rem;
}

#trade-notice {
background: linear-gradient(135deg, var(--navy) 0%, #031e5c 100%);
padding: clamp(60px, 8vw, 100px) 0;
position: relative;
overflow: hidden;
}
#trade-notice::before {
content: "";
position: absolute;
inset: 0;
background: radial-gradient(
ellipse 60% 70% at 90% 50%,
rgba(0, 167, 136, 0.12) 0%,
transparent 60%
),
radial-gradient(
ellipse 40% 50% at 10% 80%,
rgba(0, 167, 136, 0.07) 0%,
transparent 60%
);
pointer-events: none;
}

/* Notice banner card — clickable trigger */
.notice-banner {
background: rgba(255, 255, 255, 0.05);
border: 1px solid rgba(0, 167, 136, 0.3);
border-radius: 18px;
padding: clamp(1.8rem, 4vw, 3rem) clamp(1.5rem, 4vw, 3rem);
display: flex;
align-items: center;
gap: clamp(1rem, 3vw, 2.5rem);
cursor: pointer;
transition: background 0.3s, border-color 0.3s, transform 0.25s, box-shadow 0.3s;
position: relative;
z-index: 1;
text-decoration: none;
flex-wrap: wrap;
}
.notice-banner:hover {
background: rgba(0, 167, 136, 0.12);
border-color: var(--teal);
transform: translateY(-4px);
box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

.notice-icon-wrap {
flex-shrink: 0;
width: clamp(56px, 8vw, 80px);
height: clamp(56px, 8vw, 80px);
background: linear-gradient(135deg, var(--teal), var(--teal2));
border-radius: 16px;
display: flex;
align-items: center;
justify-content: center;
font-size: clamp(1.4rem, 3vw, 2rem);
color: #fff;
box-shadow: 0 8px 28px rgba(0, 167, 136, 0.4);
}

.notice-text {
flex: 1;
min-width: 200px;
}
.notice-label {
font-size: 0.68rem;
font-weight: 700;
letter-spacing: 2.5px;
text-transform: uppercase;
color: var(--teal);
margin-bottom: 0.4rem;
display: block;
}
.notice-title {
font-family: var(--fd);
font-size: clamp(1.5rem, 3vw, 2.4rem);
font-weight: 700;
color: #fff;
line-height: 1.1;
margin-bottom: 0.5rem;
}
.notice-sub {
color: rgba(255, 255, 255, 0.55);
font-size: clamp(0.8rem, 1.4vw, 0.92rem);
line-height: 1.65;
font-weight: 300;
}

.notice-cta {
flex-shrink: 0;
display: inline-flex;
align-items: center;
gap: 10px;
background: var(--teal);
color: #fff;
padding: 0.85rem 2rem;
border-radius: 8px;
font-family: var(--fb);
font-weight: 700;
font-size: 0.85rem;
border: none;
cursor: pointer;
white-space: nowrap;
transition: background 0.22s, transform 0.2s, box-shadow 0.22s;
}
.notice-cta:hover {
background: var(--teal2);
transform: translateY(-2px);
box-shadow: 0 8px 24px rgba(0, 167, 136, 0.4);
}

/* Floating document preview badge */
.notice-preview-badge {
position: absolute;
top: -14px;
right: clamp(16px, 4vw, 40px);
background: var(--teal);
color: #fff;
font-family: var(--fb);
font-weight: 700;
font-size: 0.72rem;
letter-spacing: 0.8px;
padding: 0.35rem 0.9rem;
border-radius: 20px;
box-shadow: 0 4px 14px rgba(0, 167, 136, 0.4);
z-index: 2;
}

@media (max-width: 991px) {
.mmj-img-panel {
width: 240px;
}
}
@media (max-width: 767px) {
.mmj-card {
flex-direction: column;
}
.mmj-img-panel {
width: 100%;
height: 180px;
}
.mmj-img-panel::after {
background: linear-gradient(180deg, rgba(4, 14, 34, 0.3) 0%, transparent 70%);
}
.mmj-content {
padding: 1.6rem 1.4rem;
}
.mmj-content::before {
left: 1.4rem;
right: 1.4rem;
}
.btn-mmj {
width: 100%;
justify-content: center;
}
}
