@charset "UTF-8";

/* =============================================
   # ROOT VARIABLES - Design Tokens
   ============================================= */
:root {
  --bs-primary: #185893;
  --bs-primary-rgb: 24, 88, 147;
  --bs-primary-dark: #12406e;
  --bs-primary-light: #e6f0f8;

  --bs-light: #ffffff;
  --bs-light-rgb: 255, 255, 255;
  --bs-dark: #212529;
  --bs-dark-rgb: 33, 37, 41;
  --bs-black: #000000;
  --bs-gray: #6c757d;
  --bs-gray-rgb: 108, 117, 125;
  --bs-gray-light: #f8f9fa;
  --bs-border-color: #dee2e6;

  --font-body: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-heading: 'Raleway', sans-serif;
  --bs-body-font-family: var(--font-body);
  --bs-body-font-size: 1.025rem;
  --bs-body-font-weight: 400;
  --bs-body-line-height: 1.65;

  --text-color: var(--bs-dark);
  --heading-color: var(--bs-dark);
  --accent-color: var(--bs-primary);
  --contrast-color: var(--bs-light);

  --section-padding: 100px 0;
  --container-max-width: 1280px;

  --border-radius: 8px;
  --border-radius-pill: 50px;

  --shadow-sm: 0 4px 15px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 10px 30px rgba(24, 88, 147, 0.12);
}

@media (prefers-reduced-motion: no-preference) {
  :root { scroll-behavior: smooth; }
}

/* =============================================
   # RESETS & BASE STYLES
   ============================================= */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding-top: 72px; /* fixed header offset — single declaration */
  font-family: var(--bs-body-font-family);
  font-size: var(--bs-body-font-size);
  font-weight: var(--bs-body-font-weight);
  line-height: var(--bs-body-line-height);
  color: var(--text-color);
  background-color: var(--bs-light);
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
}

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.2;
  color: var(--heading-color);
  margin-top: 0;
  margin-bottom: 1rem;
}

h1, .h1 { font-size: 2.8rem; }
h2, .h2 { font-size: 2.25rem; }
h3, .h3 { font-size: 1.85rem; }
h4, .h4 { font-size: 1.5rem; }
h5, .h5 { font-size: 1.25rem; }
h6, .h6 { font-size: 1.1rem; }

@media (max-width: 991px) {
  h1, .h1 { font-size: 2.4rem; }
  h2, .h2 { font-size: 2rem; }
}

p {
  margin-bottom: 1.25rem;
}

/* Global anchor — intentionally neutral so component styles win */
a {
  color: var(--accent-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

/* 
  No global a:hover color override here.
  Each component (nav, footer, body copy) sets its own hover.
  Body-copy links that need a hover colour get it via:
  .prose a:hover  or  .content a:hover
*/

ul, ol {
  padding-left: 1.2rem;
}

/* Reset list style inside nav/header so ul padding doesn't bleed */
.mms-nav ul,
.mms-mobile-panel ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.container {
  width: 100%;
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* =============================================
   # SECTIONS
   ============================================= */
section,
.section {
  padding: var(--section-padding);
  scroll-margin-top: 90px;
  overflow: hidden;
}

.hero {
  padding: 140px 0 100px;
  scroll-margin-top: 0;
}

@media (max-width: 1199px) {
  section,
  .section {
    padding: 80px 0;
    scroll-margin-top: 70px;
  }

  .hero {
    padding: 100px 0 80px;
  }
}

.bg-light    { background-color: var(--bs-gray-light); }
.bg-primary  { background-color: var(--bs-primary); color: var(--contrast-color); }

/* =============================================
   # BUTTONS
   ============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 32px;
  font-size: 1.02rem;
  font-weight: 600;
  border-radius: var(--border-radius-pill);
  text-align: center;
  transition: all 0.35s ease;
  border: none;
  cursor: pointer;
  white-space: nowrap;
}

.btn-primary {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
  background-color: var(--bs-primary-dark);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  color: var(--contrast-color); /* prevent global a:hover from overriding */
}

.btn-secondary {
  background-color: transparent;
  color: var(--heading-color);
  border: 2px solid var(--heading-color);
}

.btn-secondary:hover {
  background-color: var(--heading-color);
  color: var(--contrast-color);
  transform: translateY(-3px);
}

.btn-lg {
  padding: 16px 40px;
  font-size: 1.1rem;
}

@media (max-width: 576px) {
  .btn {
    padding: 12px 24px;
    font-size: 1rem;
  }
}

/* =============================================
   # UTILITIES
   ============================================= */
.text-primary { color: var(--bs-primary) !important; }
.text-center  { text-align: center; }
.shadow-sm    { box-shadow: var(--shadow-sm); }

/* =============================================
   # HEADER
   ============================================= */
/* =============================================
   # HEADER (Improved & Fixed)
   ============================================= */
.mms-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(24, 88, 147, 0.12);
  transition: box-shadow 0.35s ease, background 0.35s ease;
}

.mms-header.scrolled {
  box-shadow: 0 6px 25px rgba(24, 88, 147, 0.12);
  background: rgba(255, 255, 255, 0.99);
}

.mms-header-inner {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 28px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

/* Brand */
.mms-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: inherit;
  flex-shrink: 0;
}

.mms-brand img {
  width: 54px;
  height: 54px;
  object-fit: contain;
}
/* 
.mms-brand-text .brand-main {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--bs-primary);
  letter-spacing: 0.02em;
}

.mms-brand-text .brand-sub {
  font-size: 0.68rem;
  font-weight: 500;
  color: var(--bs-gray);
  letter-spacing: 0.08em;
  text-transform: uppercase;
} */
 .mms-brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.mms-brand-text .brand-main {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--bs-primary);
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.mms-brand-text .brand-sub {
  font-size: 0.68rem;
  font-weight: 500;
  color: var(--bs-gray);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

/* Desktop Nav */
/* .mms-nav ul {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
} */

/* .mms-nav .nav-link {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 18px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--bs-dark);
  text-decoration: none;
  border-radius: var(--border-radius-pill);
  transition: all 0.3s ease;
  white-space: nowrap;
} */

/* Desktop Nav — vertical dropdown anchor */
.mms-nav ul {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}
 .mms-nav .nav-link {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 20px;
  font-size: 0.9rem;
  font-weight: 600; /* stronger */
  letter-spacing: 0.02em;
  color: var(--bs-dark);
  border-radius: var(--border-radius-pill);
  transition: all 0.25s ease;
  position: relative;
}

.mms-nav .nav-link:hover,
.mms-nav .nav-link.active {
  background-color: var(--bs-primary);
  color: white;
}
.mms-nav .nav-link::after {
  content: "";
  position: absolute;
  bottom: 6px;
  left: 20px;
  width: 0%;
  height: 2px;
  background: var(--bs-primary);
  transition: width 0.3s ease;
}

.mms-nav .nav-link:hover::after,
.mms-nav .nav-link.active::after {
  width: calc(100% - 40px);
}

/* Dropdown */
.has-dropdown {
  position: relative;
}

.has-dropdown > a {
  gap: 4px;
}

.bi-chevron-down {
  /* font-size: 0.85rem; */
  transition: transform 0.3s ease;
  font-size: 0.75rem;
  opacity: 0.6;
}


.has-dropdown:hover .bi-chevron-down {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  /* top: 100%; */
  left: 10%;
  transform: translateX(-50%) translateY(10px);
  /* min-width: 280px; */
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
  border-radius: 16px;
  /* box-shadow: 0 20px 50px rgba(24, 88, 147, 0.18); */
  padding: 12px 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 9999;
  /* border: 1px solid rgba(24, 88, 147, 0.1); */
  top: 110%;
  min-width: 300px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 12px 30px rgba(24, 88, 147, 0.12);
  padding: 8px 0;
  border: 1px solid rgba(24, 88, 147, 0.08);
}


.has-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

/* .dropdown-menu li a {
  display: block;
  padding: 12px 24px;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--heading-color);
  text-decoration: none;
  transition: all 0.25s ease;
} */
/* 
.dropdown-menu li a:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 88%);
  color: var(--accent-color);
  padding-left: 32px;
} */

/* Tailored icons in dropdown */
/* .dropdown-menu li a {
  padding: 12px 24px;
  display: block;
  padding: 12px 24px;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--heading-color);
  text-decoration: none;
  transition: all 0.25s ease;
} */

/* .dropdown-menu li a i {
  font-size: 1.15rem;
  width: 22px;                 
  color: var(--bs-primary);     
  flex-shrink: 0;
} */

 .dropdown-menu li a:hover {
  background: var(--bs-primary-light);
  color: var(--bs-primary-dark);
}
 .dropdown-menu li a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 20px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--bs-dark);
  transition: all 0.2s ease;
}

.dropdown-menu li a i {
  font-size: 1rem;
  width: 20px;
  color: var(--bs-primary);
}


/* Optional: stronger hover effect on icon too */
.dropdown-menu li a:hover i {
  color: var(--bs-primary-dark);
}

.dropdown-menu::before {
  content: "";
  position: absolute;
  top: 0;
  left: 20px;
  width: 40px;
  height: 3px;
  background: var(--bs-primary);
  border-radius: 2px;
}


/* CTA */
.mms-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  background: var(--bs-primary);
  color: white;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: var(--border-radius-pill);
  text-decoration: none;
  transition: all 0.35s ease;
  white-space: nowrap;
}

.mms-cta:hover {
  background: var(--bs-primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(24, 88, 147, 0.3);
}

/* --- Hamburger ------------------------------ */
.mms-hamburger {
  display: none;
  background: none;
  border: 1.5px solid rgba(24, 88, 147, 0.25);
  border-radius: 8px;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  padding: 0;
  cursor: pointer;
  flex-shrink: 0;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.mms-hamburger:hover {
  border-color: var(--bs-primary);
  background: rgba(24, 88, 147, 0.05);
}

.mms-hamburger span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--bs-primary);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}

.mms-hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.mms-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.mms-hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* --- Mobile Nav ----------------------------- */
.mms-mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
  pointer-events: none;
}

.mms-mobile-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(18, 64, 110, 0.55);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mms-mobile-panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(320px, 88vw);
  height: 100%;
  background: #fff;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 88px 24px 32px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mms-mobile-nav.open {
  display: block;
  pointer-events: all;
}

.mms-mobile-nav.open .mms-mobile-backdrop { opacity: 1; }
.mms-mobile-nav.open .mms-mobile-panel    { transform: translateX(0); }

.mms-mobile-panel a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--bs-dark);
  text-decoration: none;
  border-radius: 10px;
  transition: background 0.2s ease, color 0.2s ease;
}

.mms-mobile-panel a:hover,
.mms-mobile-panel a.active {
  background: var(--bs-primary);
  color: #fff;
}

.mob-section-title {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--bs-gray);
  padding: 16px 16px 6px;
  margin-top: 4px;
}

.mob-sub a {
  font-size: 0.88rem;
  color: var(--bs-gray);
  padding: 9px 16px 9px 28px;
}

.mob-sub a:hover {
  background: var(--bs-primary-light);
  color: var(--bs-primary);
}

.mms-mobile-cta {
  margin-top: auto;
  padding-top: 24px;
  border-top: 1px solid rgba(24, 88, 147, 0.1);
}

.mms-mobile-cta a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px;
  background: var(--bs-primary);
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: var(--border-radius-pill);
  text-decoration: none;
  transition: background 0.25s ease;
}

.mms-mobile-cta a:hover {
  background: var(--bs-primary-dark);
  color: #fff;
}

/* --- Responsive breakpoint ------------------ */
@media (max-width: 1248px) {
  .mms-nav,
  .mms-cta        { display: none; }
  .mms-hamburger  { display: flex; }
}


/* =============================================
   # HERO
   ============================================= */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  background: #0a1f35;
}

/* Dark navy base — shows before images load */
.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, #0a1f35 0%, #0d2d4a 40%, #0f3a5c 70%, #12406e 100%);
  z-index: 1;
}

/* Subtle nav-chart grid overlay */
.hero-grid {
  position: absolute;
  inset: 0;
  z-index: 2;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

/* Compass watermark */
/* .hero-compass {
  position: absolute;
  right: 6%;
  top: 50%;
  transform: translateY(-50%);
  width: clamp(160px, 20vw, 260px);
  height: clamp(160px, 20vw, 260px);
  opacity: 0.07;
  z-index: 3;
  pointer-events: none;
  opacity: 0.02;   
} */
 .hero-compass {
  position: absolute;
  right: 6%;
  top: 50%;
  transform: translateY(-50%);
  width: clamp(160px, 20vw, 260px);
  height: clamp(160px, 20vw, 260px);
  /* opacity: 0.07; */
  opacity: 0.02;          /* single line; keep this */
  z-index: 10;
  pointer-events: none;
}

/* Swiper sits above bg layers, below content */
.hero .swiper {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 4;
}

.hero .swiper-slide {
  width: 100%;
  height: 100%;
}

.hero .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Dark overlay so text stays readable over any photo */
  filter: brightness(0.38);
}

@media (max-width: 991px) {
  .hero .swiper-button-next,
  .hero .swiper-button-prev { display: none; }
}

/* Swiper nav buttons */
.swiper-button-next,
.swiper-button-prev {
  color: #fff;
  background: rgba(24, 88, 147, 0.55);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  transition: background 0.25s;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  background: rgba(24, 88, 147, 0.9);
}

.swiper-button-next::after,
.swiper-button-prev::after { font-size: 18px; }

.swiper-pagination-bullet {
  background: rgba(255,255,255,0.5);
  opacity: 1;
  width: 8px;
  height: 8px;
}

.swiper-pagination-bullet-active {
  background: #4ca3dd;
  width: 24px;
  border-radius: 4px;
  transition: width 0.3s ease;
}

/* Hero text content — above everything */
.hero-content {
  position: absolute;
  inset: 0;
  z-index: 10;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 6% 100px;
  max-width: 700px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50px;
  padding: 6px 14px;
  margin-bottom: 24px;
  width: fit-content;
}

.hero-eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #4ca3dd;
  flex-shrink: 0;
}

.hero-eyebrow span {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
}

.hero-content h1 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 18px;
  text-shadow: none;
}

.hero-content h1 em {
  font-style: normal;
  color: #4ca3dd;
}

.hero-content p {
  font-size: clamp(0.9rem, 1.5vw, 1.05rem);
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 480px;
}

/* CTA buttons */
.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 28px;
  background: var(--bs-primary);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: var(--border-radius-pill);
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.25s ease, transform 0.25s ease;
  white-space: nowrap;
}

.hero-btn-primary:hover {
  background: var(--bs-primary-dark);
  color: #fff;
  transform: translateY(-2px);
}

.hero-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  background: transparent;
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
  font-weight: 500;
  border-radius: var(--border-radius-pill);
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.25);
  cursor: pointer;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.hero-btn-secondary:hover {
  border-color: rgba(255,255,255,0.6);
  color: #fff;
  background: rgba(255,255,255,0.06);
}

/* Slide position indicators */
.hero-slide-indicator {
  position: absolute;
  right: 5%;
  bottom: 100px;
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
}

.hero-slide-indicator span {
  display: block;
  width: 2px;
  height: 28px;
  background: rgba(255,255,255,0.2);
  border-radius: 2px;
  position: relative;
  overflow: hidden;
}

.hero-slide-indicator span.active::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: #4ca3dd;
  animation: indicatorFill 5s linear infinite;
}

/* @keyframes indicatorFill {
  from { transform: translateY(-100%); }
  to   { transform: translateY(0); }
} */
@keyframes indicatorFill {
  0%   { transform: translateY(-100%); }
  10%  { transform: translateY(-100%); } /* stays hidden briefly */
  100% { transform: translateY(0);      /* then fills */
}
}

/* Stats bar */
/* .hero-stats {
  position: absolute;
  bottom: 0;
  left: 0; right: 0;
  z-index: 10;
  display: flex;
  justify-content: center;
}

.hero-stat {
  flex: 1;
  max-width: 200px;
  padding: 16px 20px;
  background: rgba(255,255,255,0.04);
  border-top: 1px solid rgba(255,255,255,0.08);
  border-right: 1px solid rgba(255,255,255,0.06);
  text-align: center;
}

.hero-stat:last-child { border-right: none; }

.hero-stat-num {
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  margin-bottom: 4px;
}

.hero-stat-label {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}
 */
/* Responsive */
@media (max-width: 768px) {
  .hero-content { padding: 0 5% 90px; }
  .hero-slide-indicator { display: none; }
  .hero-compass { display: none; }
  .hero-stat { padding: 12px 10px; }
  .hero-stat-num { font-size: 1.1rem; }
}

@media (max-width: 480px) {
  .hero-stats { display: none; }
  .hero-content { padding-bottom: 40px; justify-content: flex-end; }
}

/* =============================================
   # HOME ABOUT SECTION
   ============================================= */
.home-about .about-image {
  position: relative;
  padding-bottom: 44px; /* room for badge overflow */
}

.home-about .about-image img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.12);
}

.home-about .about-image .experience-badge {
  position: absolute;
  bottom: 0;
  right: 30px;
  background: var(--bs-primary);
  color: var(--bs-light);
  padding: 22px 26px;
  border-radius: 10px;
  box-shadow: 0 12px 28px rgba(24, 88, 147, 0.35);
  text-align: center;
  min-width: 130px;
}

.home-about .about-image .experience-badge .years {
  display: block;
  font-size: 38px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -1px;
}

.home-about .about-image .experience-badge .text {
  font-size: 12px;
  display: block;
  opacity: 0.85;
  margin-top: 5px;
  letter-spacing: 0.04em;
}

@media (max-width: 576px) {
  .home-about .about-image .experience-badge {
    right: 16px;
    padding: 16px 18px;
  }
  .home-about .about-image .experience-badge .years {
    font-size: 30px;
  }
}

/* --- About Content -------------------------------- */
.home-about .about-content {
  padding-left: 10px;
}

/* Eyebrow label with leading rule */
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--bs-primary);
  margin-bottom: 14px;
  font-weight: 600;
}

.section-eyebrow::before {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--bs-primary);
  border-radius: 2px;
  flex-shrink: 0;
}

.home-about .about-content h2 {
  font-size: clamp(1.6rem, 2.5vw, 2rem);
  font-weight: 700;
  line-height: 1.25;
  color: var(--heading-color);
  margin-bottom: 16px;
}

.home-about .about-content .lead {
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--bs-dark);
  margin-bottom: 14px;
  line-height: 1.65;
}

.home-about .about-content p {
  color: var(--bs-gray);
  margin-bottom: 16px;
  line-height: 1.75;
  font-size: 0.975rem;
}

/* --- Feature Cards -------------------------------- */
.home-about .feature-item {
  padding: 20px;
  border-radius: var(--border-radius);
  background: var(--bs-gray-light);
  border: 1px solid var(--bs-border-color);
  height: 100%;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.home-about .feature-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(24, 88, 147, 0.10);
  border-color: rgba(24, 88, 147, 0.2);
}

.home-about .feature-item .icon {
  font-size: 28px;
  color: var(--bs-primary);
  margin-bottom: 12px;
  display: block;
  line-height: 1;
}

.home-about .feature-item h4 {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 7px;
  color: var(--heading-color);
}

.home-about .feature-item p {
  font-size: 0.83rem;
  color: var(--bs-gray);
  margin: 0;
  line-height: 1.55;
}

/* --- CTA Buttons ---------------------------------- */
.home-about .cta-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* Reuse your global .btn + .btn-primary from main.css */
/* Override border-radius here to match pill style */
.home-about .cta-wrapper .btn {
  border-radius: var(--border-radius-pill);
  padding: 11px 26px;
  font-size: 0.9rem;
}

.home-about .cta-wrapper .btn-outline {
  background: transparent;
  color: var(--bs-primary);
  border: 1.5px solid var(--bs-primary);
  transition: all 0.25s ease;
}

.home-about .cta-wrapper .btn-outline:hover {
  background: var(--bs-primary);
  color: var(--bs-light);
}

/* --- Certifications / Partners -------------------- */
/* .home-about .certifications-row {
  border-top: 1px solid var(--bs-border-color);
  margin-top: 60px;
  padding-top: 40px;
} */

/* .home-about .certifications-row .certification-title {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--bs-gray);
  margin-bottom: 0;
}

.home-about .certifications {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 36px;
}

.home-about .certifications .certification-item {
  flex: 0 0 120px;
  text-align: center;
  opacity: 0.45;
  filter: grayscale(100%);
  transition: opacity 0.3s ease, filter 0.3s ease, transform 0.3s ease;
}

.home-about .certifications .certification-item img {
  max-width: 100%;
  height: auto;
}

.home-about .certifications .certification-item:hover {
  opacity: 1;
  filter: grayscale(0%);
  transform: translateY(-4px);
} */

/* --- Mercury partners / clients */
.mercury-partners-row {
  border-top: 1px solid var(--bs-border-color);
  margin-top: 60px;
  padding-top: 40px;
}

.mercury-partners-row .partner-title {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--bs-gray);
  margin-bottom: 0;
}

.mercury-partners-swiper-container {
  padding: 0 12px;
}

.mercury-partners-swiper .swiper-wrapper {
  align-items: center;
}

.mercury-partners-swiper img {
  max-width: 140px;
  height: 40px;
  object-fit: contain;
  margin: 0 auto;
  opacity: 0.7;                         /* slightly muted, not full grayscale */
  filter: none;                        /* removed grayscale */
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.mercury-partners-swiper .swiper-slide {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.mercury-partners-swiper .swiper-slide:hover img {
  opacity: 1;
  transform: translateY(-2px) scale(1.05);
}

/* Pagination */
.mercury-partners-swiper .swiper-pagination-bullet {
  background: rgba(255,255,255,0.4);
  opacity: 1;
}

.mercury-partners-swiper .swiper-pagination-bullet-active {
  background: var(--bs-primary);
}

/* --- Responsive ----------------------------------- */
@media (max-width: 992px) {
  .home-about .about-content {
    margin-top: 56px;
    padding-left: 0;
  }
}

@media (max-width: 768px) {
  .home-about .about-image img {
    height: 340px;
  }
  .home-about .certifications {
    gap: 24px;
  }
}

/* @media (max-width: 576px) {
  .home-about .certifications .certification-item {
    flex: 0 0 100px;
  }
} */


/* =============================================
   # SERVICES TILES SECTION
   ============================================= */
.mms-tiles-section {
  padding: 70px 0;
}

.mms-tiles-section .tiles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* --- Card ----------------------------------- */
.tile-card {
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 8px 32px rgba(24, 88, 147, 0.10);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tile-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 48px rgba(24, 88, 147, 0.18);
}

/* --- Image ---------------------------------- */
.tile-img {
  position: relative;
  overflow: hidden;
  height: 220px;
  background: #0d2d4a; /* fallback before lazy image loads */
  flex-shrink: 0;
}

.tile-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.tile-card:hover .tile-img img {
  transform: scale(1.04);
}

/* Gradient vignette at bottom of image */
.tile-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 45%, rgba(10, 31, 53, 0.5) 100%);
  pointer-events: none;
}

/* --- Body ----------------------------------- */
.tile-body {
  background: var(--bs-primary);
  padding: 26px 24px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
}

/* Top separator line */
.tile-body::before {
  content: '';
  position: absolute;
  top: 0;
  left: 24px;
  right: 24px;
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
}

/* Eyebrow tag */
.tile-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

.tile-tag::before {
  content: '';
  display: block;
  width: 16px;
  height: 1.5px;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 2px;
  flex-shrink: 0;
}

/* Heading */
.tile-body h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
  margin: 0;
}

/* Lead line */
.tile-lead {
  font-size: 0.83rem;
  color: rgba(255, 255, 255, 0.55);
  margin: 0;
}

/* List */
.tile-body ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.tile-body ul li {
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.75);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.45;
}

/* Dot bullet */
.tile-body ul li::before {
  content: '';
  display: block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #4ca3dd;
  flex-shrink: 0;
  margin-top: 5px;
}

.tile-body ul li a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  transition: color 0.2s ease;
}

.tile-body ul li a:hover {
  color: #fff;
}

.tile-body ul li span {
  color: rgba(255, 255, 255, 0.75);
}

/* CTA button */
.tile-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 600;
  border-radius: var(--border-radius-pill);
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: background 0.25s ease, border-color 0.25s ease;
  width: fit-content;
  margin-top: auto;
}

.tile-btn:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.5);
  color: #fff;
}

/* --- Responsive ----------------------------- */
@media (max-width: 991px) {
  .mms-tiles-section .tiles-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .mms-tiles-section .tiles-grid {
    grid-template-columns: 1fr;
  }

  .tile-img {
    height: 200px;
  }
}

/* =============================================
   # SHOWCASE / SERVICE INTRO SECTION
   ============================================= */
.mms-showcase {
  padding: 0;
  overflow: hidden;
}

/* Each row is a full-width 50/50 split */
.showcase-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
}

/* Reverse layout: text left, image right */
.showcase-row--reverse {
  direction: rtl; /* flips column order without changing markup */
}

.showcase-row--reverse > * {
  direction: ltr; /* restore text direction inside children */
}

/* --- Image half ----------------------------- */
.showcase-img {
  position: relative;
  overflow: hidden;
  background: #0d2d4a;
  min-height: 400px;
}

.showcase-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.showcase-row:hover .showcase-img img {
  transform: scale(1.03);
}

/* Dark overlay for visual depth */
.showcase-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10, 31, 53, 0.25) 0%,
    transparent 60%
  );
  pointer-events: none;
}

/* --- Text half ------------------------------ */
.showcase-text {
  background: var(--bs-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 48px;
  position: relative;
}

/* Subtle grid watermark on text panel */
.showcase-text::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}

/* Accent bar on the inner edge */
.showcase-text::after {
  content: '';
  position: absolute;
  top: 15%;
  bottom: 15%;
  width: 3px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 2px;
}

/* Bar on right edge for normal rows */
.showcase-row:not(.showcase-row--reverse) .showcase-text::after {
  right: 0;
}

/* Bar on left edge for reversed rows */
.showcase-row--reverse .showcase-text::after {
  left: 0;
}

.showcase-text-inner {
  position: relative;
  z-index: 1;
  max-width: 480px;
}

/* Eyebrow — reuses .section-eyebrow but white version */
.showcase-text .section-eyebrow {
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 14px;
}

.showcase-text .section-eyebrow::before {
  background: rgba(255, 255, 255, 0.4);
}

.showcase-text h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 2.5vw, 1.85rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.25;
  margin-bottom: 16px;
}

.showcase-text p {
  font-size: 0.975rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.75;
  margin-bottom: 28px;
}

/* CTA button */
.showcase-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 11px 26px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 0.88rem;
  font-weight: 600;
  border-radius: var(--border-radius-pill);
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.22);
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.showcase-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.55);
  color: #fff;
  transform: translateX(4px);
}

/* --- Divider between rows ------------------- */
.showcase-row + .showcase-row {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

/* --- Responsive ----------------------------- */
@media (max-width: 991px) {
  .showcase-row,
  .showcase-row--reverse {
    grid-template-columns: 1fr;
    direction: ltr;
    min-height: unset;
  }

  .showcase-img {
    min-height: 280px;
  }

  /* On mobile, always put image on top */
  .showcase-row--reverse .showcase-img {
    order: -1;
  }

  .showcase-text {
    padding: 44px 28px;
  }

  .showcase-text::after {
    display: none;
  }
}

@media (max-width: 576px) {
  .showcase-text {
    padding: 36px 20px;
  }
}

/* Theme variants — replaces the old #milele-theme1 / #milele-theme2 IDs */
.showcase-text.theme-primary { background: var(--bs-primary); }
.showcase-text.theme-dark    { background: var(--bs-dark); }

/* Ghost button variant (outlined, less emphasis) */
.showcase-btn-ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.15);
}

.showcase-btn-ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.4);
}


/* =============================================
   # FINAL CTA SECTION
   ============================================= */
.mms-final-cta {
  padding: 100px 0;
  background: #0a1f35;
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Grid watermark — same pattern used in hero */
.cta-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  pointer-events: none;
}

/* Radial glow behind content */
.cta-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 260px;
  background: radial-gradient(ellipse, rgba(24, 88, 147, 0.45) 0%, transparent 70%);
  pointer-events: none;
}

/* Compass watermark */
.cta-compass {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: clamp(300px, 50vw, 560px);
  height: clamp(300px, 50vw, 560px);
  opacity: 0.04;
  pointer-events: none;
}

/* Inner content */
.cta-inner {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin: 0 auto;
}

/* Eyebrow with flanking rules */
.cta-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 20px;
}

.cta-eyebrow::before,
.cta-eyebrow::after {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: rgba(255, 255, 255, 0.25);
  border-radius: 2px;
}

/* Heading */
.mms-final-cta h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.25;
  margin-bottom: 20px;
}

/* Divider */
.cta-divider {
  width: 40px;
  height: 2px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 2px;
  margin: 0 auto 24px;
}

/* Body copy */
.mms-final-cta p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.75;
  max-width: 480px;
  margin: 0 auto 36px;
}

/* --- Buttons -------------------------------- */
.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.cta-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 13px 30px;
  background: var(--bs-primary);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: var(--border-radius-pill);
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.cta-btn-primary:hover {
  background: var(--bs-primary-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(24, 88, 147, 0.45);
}

.cta-btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 13px 30px;
  background: rgba(255, 255, 255, 0.07);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: var(--border-radius-pill);
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.18);
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.cta-btn-whatsapp:hover {
  background: rgba(37, 211, 102, 0.15);
  border-color: rgba(37, 211, 102, 0.5);
  color: #fff;
  transform: translateY(-2px);
}

/* --- Trust bar ------------------------------ */
.cta-trust {
  margin-top: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

.cta-trust-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.35);
  letter-spacing: 0.02em;
}

.cta-trust-item svg {
  opacity: 0.5;
  flex-shrink: 0;
}

.cta-trust-sep {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  flex-shrink: 0;
}

/* --- Responsive ----------------------------- */
@media (max-width: 576px) {
  .mms-final-cta { padding: 70px 0; }
  .cta-compass   { display: none; }

  .cta-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .cta-btn-primary,
  .cta-btn-whatsapp {
    justify-content: center;
  }

  .cta-trust { gap: 12px; }
  .cta-trust-sep { display: none; }
}

/* =============================================
   # GLOBAL FOOTER
   ============================================= */
.global-footer {
  background: #0a1f35;  /* deeper navy — distinct from CTA's same bg */
  color: #fff;
  position: relative;
  overflow: hidden;
  /* no section padding — footer controls its own spacing */
  padding: 0;
}

/* Grid watermark — consistent with hero and CTA */
.footer-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 50px 50px;
  pointer-events: none;
}

/* --- Main grid ------------------------------ */
.footer-main {
  position: relative;
  z-index: 1;
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 64px 28px 48px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.4fr;
  gap: 48px;
}

/* --- Brand column --------------------------- */
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-logo-row {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.footer-logo {
  width: 48px;
  height: 48px;
  object-fit: contain;
  flex-shrink: 0;
}

.footer-brand-text .brand-main {
  display: block;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
}

.footer-brand-text .brand-sub {
  display: block;
  font-size: 0.68rem;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 2px;
}

.footer-slogan {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.65;
  max-width: 280px;
  margin: 0;
}

/* Social icons */
.social-links {
  display: flex;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.social-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.65);
  font-size: 1rem;
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.social-item a:hover {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.3);
  color: #fff;
}

/* --- Column headings ----------------------- */
.footer-col-heading {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Trailing rule */
.footer-col-heading::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(255,255,255,0.08);
}

/* --- Quick links --------------------------- */
.quick-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.quick-links a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color 0.2s ease, padding-left 0.2s ease;
}

/* Dot bullet */
.quick-links a::before {
  content: '';
  display: block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  flex-shrink: 0;
  transition: background 0.2s ease;
}

.quick-links a:hover {
  color: #fff;
  padding-left: 4px;
}

.quick-links a:hover::before {
  background: #4ca3dd;
}

/* --- Contact list -------------------------- */
.contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
}

.contact-list li i {
  font-size: 14px;
  color: rgba(255,255,255,0.3);
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-list a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color 0.2s ease;
}

.contact-list a:hover {
  color: #fff;
}

/* --- Bottom bar ---------------------------- */
.footer-bottom {
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 20px 28px;
  max-width: var(--container-max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.copyright-text {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.28);
  margin: 0;
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-links a {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.28);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-bottom-links a:hover {
  color: rgba(255,255,255,0.65);
}

/* --- Responsive ----------------------------- */
@media (max-width: 991px) {
  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }

  /* Brand spans full width on tablet */
  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-slogan {
    max-width: 100%;
  }
}

@media (max-width: 576px) {
  .footer-main {
    grid-template-columns: 1fr;
    padding: 48px 20px 36px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    padding: 16px 20px;
  }
}


/* =============================================
   # ABOUT PAGE
   ============================================= */
.mms-about-page {
  background: var(--bs-light);
}

/* Heading — scoped so it doesn't override global h1 sizes elsewhere */
.about-page-h1 {
  font-family: var(--font-heading);
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--heading-color);
  line-height: 1.2;
  margin-bottom: 16px;
}

.mms-about-page .about-lead {
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--bs-dark);
  line-height: 1.7;
  margin-bottom: 14px;
}

.mms-about-page p {
  color: var(--bs-gray);
  line-height: 1.75;
}

/* --- Highlight cards ----------------------- */
.about-highlight-cards {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 26px 0;
}

.about-highlight-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 18px;
  border-radius: var(--border-radius);
  background: var(--bs-gray-light);
  border: 1px solid var(--bs-border-color);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.about-highlight-card:hover {
  border-color: rgba(24, 88, 147, 0.2);
  box-shadow: 0 6px 20px rgba(24, 88, 147, 0.07);
}

.ahc-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: var(--bs-primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 18px;
  color: var(--bs-primary);
}

.ahc-body h5 {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 3px;
}

.ahc-body p {
  font-size: 0.8rem;
  color: var(--bs-gray);
  margin: 0;
  line-height: 1.45;
}

/* --- Action row ---------------------------- */
.about-action-row {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 28px;
}

/* Reuses global .btn .btn-primary */

.about-phone-block {
  display: flex;
  align-items: center;
  gap: 10px;
}

.about-phone-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--bs-primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bs-primary);
  font-size: 15px;
  flex-shrink: 0;
}

.about-phone-label {
  display: block;
  font-size: 0.68rem;
  color: var(--bs-gray);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
}

.about-phone-number {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--bs-primary);
  text-decoration: none;
  transition: color 0.2s ease;
}

.about-phone-number:hover {
  color: var(--bs-primary-dark);
}

/* --- Image block --------------------------- */
.about-image-block {
  position: relative;
  padding: 0 0 44px 0;
}

.about-image-block img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 14px;
  display: block;
  box-shadow: var(--shadow-md);
}

.about-counter-badge {
  position: absolute;
  bottom: 0;
  left: -10px;
  background: var(--bs-primary);
  color: var(--bs-light);
  padding: 20px 24px;
  border-radius: 10px;
  box-shadow: 0 12px 28px rgba(24, 88, 147, 0.3);
  text-align: center;
  min-width: 140px;
}

.about-counter-badge .counter-value {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -1px;
}

.about-counter-badge .counter-text {
  display: block;
  font-size: 0.72rem;
  opacity: 0.82;
  margin-top: 5px;
  letter-spacing: 0.04em;
}

.about-accent-badge {
  position: absolute;
  top: 20px;
  right: -10px;
  background: var(--bs-light);
  border: 1px solid var(--bs-border-color);
  border-radius: var(--border-radius-pill);
  padding: 8px 16px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--bs-primary);
  box-shadow: var(--shadow-sm);
  white-space: nowrap;
}

/* --- Mission row --------------------------- */
.about-mission-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  background: var(--bs-gray-light);
  border-radius: 14px;
  padding: 40px;
  margin-top: 60px;
  border: 1px solid var(--bs-border-color);
}

.about-mission-col h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Left accent bar on mission headings */
.about-mission-col h3::before {
  content: '';
  display: block;
  width: 3px;
  height: 18px;
  background: var(--bs-primary);
  border-radius: 2px;
  flex-shrink: 0;
}

.about-mission-col > p {
  font-size: 0.92rem;
  color: var(--bs-gray);
  line-height: 1.75;
  margin: 0;
}

.about-mission-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.about-mission-col ul li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 0.88rem;
  color: var(--bs-gray);
  line-height: 1.55;
}

.about-mission-col ul li::before {
  content: '';
  display: block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #4ca3dd;
  flex-shrink: 0;
  margin-top: 6px;
}

.about-mission-col ul li strong {
  color: var(--heading-color);
  font-weight: 600;
}

/* --- Responsive ----------------------------- */
@media (max-width: 992px) {
  .about-image-block {
    margin-top: 20px;
  }
}

@media (max-width: 768px) {
  .about-image-block img {
    height: 340px;
  }

  .about-accent-badge {
    right: 0;
  }

  .about-mission-row {
    grid-template-columns: 1fr;
    padding: 28px 24px;
    margin-top: 40px;
  }
}

@media (max-width: 576px) {
  .about-counter-badge {
    left: 0;
  }

  .about-action-row {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* =============================================
   # CONTACT / QUOTE SECTION
   ============================================= */
.mms-contact {
  background: var(--bs-gray-light);
}

/* Section header */
.contact-section-header {
  text-align: center;
  margin-bottom: 52px;
}

.contact-section-header h2 {
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 12px;
}

.contact-section-header p {
  font-size: 0.975rem;
  color: var(--bs-gray);
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.7;
}

/* --- Layout grid --------------------------- */
.contact-grid {
  display: grid;
  grid-template-columns: 38% 1fr;
  gap: 28px;
  align-items: start;
}

/* --- Info panel (blue left column) --------- */
.contact-info-panel {
  background: var(--bs-primary);
  border-radius: 16px;
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

/* Grid watermark — consistent with hero/footer */
.contact-info-panel::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}

.contact-info-header {
  position: relative;
  z-index: 1;
  margin-bottom: 24px;
}

.contact-info-header h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.contact-info-header p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.65;
  margin: 0;
}

/* Info cards */
.contact-info-cards {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: auto;
}

.contact-info-card {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 10px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
  transition: background 0.2s ease;
}

.contact-info-card:hover {
  background: rgba(255,255,255,0.14);
}

.contact-icon-box {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 15px;
  color: #fff;
}

.contact-info-card h4 {
  font-size: 0.78rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 4px;
}

.contact-info-card p,
.contact-info-card a {
  display: block;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.65);
  margin: 0;
  line-height: 1.55;
  text-decoration: none;
  transition: color 0.2s ease;
}

.contact-info-card a:hover {
  color: #fff;
}

/* Social row */
.contact-social {
  position: relative;
  z-index: 1;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.contact-social-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 10px;
}

.contact-social-icons {
  display: flex;
  gap: 8px;
}

.contact-social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.7);
  font-size: 14px;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
}

.contact-social-icons a:hover {
  background: rgba(255,255,255,0.18);
  color: #fff;
}

/* --- Right column: form + map -------------- */
.contact-form-panel {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-form-card {
  background: var(--bs-light);
  border-radius: 16px;
  padding: 32px;
  border: 1px solid var(--bs-border-color);
  box-shadow: var(--shadow-sm);
}

.contact-form-card h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 6px;
}

.contact-form-card > p {
  font-size: 0.86rem;
  color: var(--bs-gray);
  margin-bottom: 24px;
  line-height: 1.6;
}

/* Form grid */
.contact-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.contact-form-full {
  grid-column: 1 / -1;
}

.contact-form-group {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.contact-form-group label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--bs-dark);
  letter-spacing: 0.02em;
}

.contact-control {
  width: 100%;
  padding: 11px 14px;
  font-size: 0.88rem;
  color: var(--bs-dark);
  background: var(--bs-gray-light);
  border: 1px solid var(--bs-border-color);
  border-radius: var(--border-radius);
  outline: none;
  font-family: var(--bs-body-font-family);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.contact-control:focus {
  border-color: var(--bs-primary);
  box-shadow: 0 0 0 3px rgba(24, 88, 147, 0.1);
  background: var(--bs-light);
}

select.contact-control { cursor: pointer; }

textarea.contact-control {
  resize: vertical;
  min-height: 120px;
}

/* Feedback messages */
.contact-feedback {
  font-size: 0.82rem;
  padding: 10px 14px;
  border-radius: var(--border-radius);
  margin-bottom: 12px;
  display: none;
}

.contact-feedback.loading { background: var(--bs-primary-light); color: var(--bs-primary); }
.contact-feedback.error   { background: #fef2f2; color: #b91c1c; }
.contact-feedback.success { background: #f0fdf4; color: #15803d; }

/* Submit button */
.contact-submit-btn {
  width: 100%;
  padding: 13px;
  background: var(--bs-primary);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 600;
  font-family: var(--bs-body-font-family);
  border: none;
  border-radius: var(--border-radius-pill);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: background 0.25s ease, transform 0.25s ease;
}

.contact-submit-btn:hover {
  background: var(--bs-primary-dark);
  transform: translateY(-2px);
}

.contact-submit-btn:disabled {
  opacity: 0.65;
  cursor: not-allowed;
  transform: none;
}

/* Map */
.contact-map-card {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--bs-border-color);
  height: 220px;
  box-shadow: var(--shadow-sm);
}

.contact-map-card iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* --- Responsive ----------------------------- */
@media (max-width: 991px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-info-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
}

@media (max-width: 600px) {
  .contact-form-grid {
    grid-template-columns: 1fr;
  }

  .contact-info-cards {
    grid-template-columns: 1fr;
  }

  .contact-form-card {
    padding: 24px 18px;
  }
}



/* Preloader Styles */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--bs-light);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999999;
  transition: opacity 0.6s cubic-bezier(0.77, 0, 0.175, 1), visibility 0.6s;
}

#preloader.preloader-hidden {
  opacity: 0;
  visibility: hidden;
}

.preloader-content {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.preloader-icon {
  font-size: 2.5rem;
  color: var(--bs-primary);
  margin-bottom: 20px;
  animation: pulseAnchor 2s infinite ease-in-out;
}

.preloader-text {
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: 4px;
  color: var(--bs-primary);
  font-size: 0.85rem;
  margin-top: 15px;
  text-transform: uppercase;
}


/* Premium Loading Bar */
.preloader-bar-container {
  width: 150px;
  height: 2px;
  background-color: var(--bs-primary-light);
  border-radius: var(--border-radius-pill);
  overflow: hidden;
  position: relative;
}

.preloader-bar {
  width: 100%;
  height: 100%;
  background-color: var(--bs-primary);
  position: absolute;
  left: -100%;
  animation: loadingBar 1.5s infinite cubic-bezier(0.4, 0, 0.2, 1);
}

/* Animations */
@keyframes pulseAnchor {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(0.9); opacity: 0.7; }
}

@keyframes loadingBar {
  0% { left: -100%; }
  50% { left: 0; }
  100% { left: 100%; }
}

/* Back to Top Premium Button */
.back-to-top {
  position: fixed;
  right: 30px;
  bottom: 30px;
  width: 50px;
  height: 50px;
  background-color: var(--bs-light);
  color: var(--bs-primary);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.2rem;
  z-index: 9999;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--bs-primary-light);
}

.back-to-top.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top i {
  transition: transform 0.3s ease;
  z-index: 2;
}

.back-to-top:hover {
  background-color: var(--bs-primary);
  color: var(--bs-light);
}

.back-to-top:hover i {
  transform: translateY(-3px);
}

/* Scroll Progress Ring */
.progress-circle {
  position: absolute;
  top: 0;
  left: 0;
  width: 50px;
  height: 50px;
}

.progress-circle path {
  fill: none;
  stroke: var(--bs-primary);
  stroke-width: 2;
  stroke-dasharray: 307.919, 307.919;
  stroke-dashoffset: 307.919;
  transition: stroke-dashoffset 10ms linear;
}

.back-to-top:hover .progress-circle path {
  stroke: var(--bs-light);
}


/* WhatsApp Premium Wrapper */
.whatsapp-wrapper {
  position: fixed;
  left: 30px;
  bottom: 30px;
  display: flex;
  align-items: center;
  z-index: 9999;
}

.whatsapp-btn {
  width: 54px;
  height: 54px;
  background-color: #25D366; /* Standard WhatsApp Green */
  color: #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.8rem;
  text-decoration: none;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
  position: relative;
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.whatsapp-btn:hover {
  transform: scale(1.1);
  color: #fff;
}

/* Tooltip Styling */
.whatsapp-tooltip {
  background: var(--bs-primary);
  color: var(--bs-light);
  padding: 8px 16px;
  border-radius: var(--border-radius);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  margin-left: 15px;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-10px);
  transition: all 0.3s ease;
  box-shadow: var(--shadow-sm);
  white-space: nowrap;
  order: 2; /* Positions tooltip to the right of the button */
}

.whatsapp-wrapper:hover .whatsapp-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

/* Maritime Sonar Animations */
.sonar-wave, .sonar-wave-inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #25D366;
  opacity: 0.4;
  z-index: -1;
  pointer-events: none;
}

.sonar-wave {
  animation: sonarPulse 2s infinite;
}

.sonar-wave-inner {
  animation: sonarPulse 2s infinite 0.5s;
}

@keyframes sonarPulse {
  0% { transform: scale(1); opacity: 0.4; }
  100% { transform: scale(1.8); opacity: 0; }
}


/* =============================================
   # SERVICE PAGE BANNER
   Used on: project-handling, damage-survey,
   loading-discharge, preshipment-inspection,
   quantity-inspection, tally
   ============================================= */
.svc-banner {
  position: relative;
  width: 100%;
  height: 52vh;
  min-height: 320px;
  max-height: 520px;
  overflow: hidden;
  background: #0a1f35; /* fallback before image loads */

  /* Override global section padding — banner is flush */
  padding: 0 !important;
  margin-bottom: 0;
}

/* Photo */
.svc-banner-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

/* Directional overlay — dark left, fades right */
.svc-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(10, 31, 53, 0.82) 0%,
    rgba(10, 31, 53, 0.5) 55%,
    rgba(10, 31, 53, 0.22) 100%
  );
  pointer-events: none;
}

/* Subtle chart-grid watermark */
.svc-banner-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 50px 50px;
  pointer-events: none;
}

/* Text content */
.svc-banner-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 6%;
  max-width: 760px;
  z-index: 2;
}

/* Eyebrow label */
.svc-banner-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 14px;
}

.svc-banner-eyebrow::before {
  content: '';
  display: block;
  width: 20px;
  height: 1.5px;
  background: rgba(255,255,255,0.4);
  border-radius: 2px;
  flex-shrink: 0;
}

/* Heading */
.svc-banner h1 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 14px;
  text-shadow: none;
}

/* Subtitle */
.svc-banner-sub {
  font-size: clamp(0.88rem, 1.5vw, 1rem);
  color: rgba(255,255,255,0.6);
  line-height: 1.65;
  max-width: 480px;
  margin-bottom: 22px;
}

/* Breadcrumb */
.svc-banner-crumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.35);
  flex-wrap: wrap;
}

.svc-banner-crumb a {
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  transition: color 0.2s ease;
}

.svc-banner-crumb a:hover {
  color: #fff;
}

.svc-banner-crumb span {
  color: rgba(255,255,255,0.2);
}

.svc-banner-crumb strong {
  color: rgba(255,255,255,0.6);
  font-weight: 500;
}

/* Blue accent line at bottom */
.svc-banner-accent {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(to right, #185893, #4ca3dd, transparent);
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .svc-banner {
    height: 56vw;
    min-height: 280px;
  }

  .svc-banner-content {
    padding: 0 5%;
  }

  .svc-banner-sub {
    display: none; /* too crowded on small screens */
  }
}

@media (max-width: 480px) {
  .svc-banner {
    min-height: 240px;
  }
}


/* =============================================
   # CAREERS PAGE
   ============================================= */
.mms-careers {
  background: var(--bs-light);
  min-height: 70vh;
  display: flex;
  align-items: center;
}

.careers-inner {
  max-width: 580px;
  margin: 0 auto;
  text-align: center;
}

/* Icon circle */
.careers-icon-wrap {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: var(--bs-primary-light);
  border: 1px solid rgba(24, 88, 147, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
  font-size: 36px;
  color: var(--bs-primary);
}

/* Reuses .section-eyebrow from main.css */

.careers-inner h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--heading-color);
  line-height: 1.25;
  margin-bottom: 16px;
}

.careers-inner > p {
  font-size: 0.975rem;
  color: var(--bs-gray);
  line-height: 1.75;
  max-width: 460px;
  margin: 0 auto 32px;
}

.careers-divider {
  width: 40px;
  height: 2px;
  background: var(--bs-border-color);
  border-radius: 2px;
  margin: 0 auto 32px;
}

/* CTA row */
.careers-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

/* Reuses global .btn .btn-primary for the first button */

.careers-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 26px;
  background: transparent;
  color: var(--bs-primary);
  font-size: 0.88rem;
  font-weight: 600;
  border-radius: var(--border-radius-pill);
  text-decoration: none;
  border: 1.5px solid var(--bs-primary);
  transition: background 0.25s ease, color 0.25s ease;
}

.careers-btn-outline:hover {
  background: var(--bs-primary);
  color: var(--bs-light);
}

/* Notice card */
.careers-notice {
  background: var(--bs-gray-light);
  border: 1px solid var(--bs-border-color);
  border-radius: 12px;
  padding: 22px 26px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  text-align: left;
  max-width: 460px;
  margin: 0 auto;
}

.careers-notice-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--bs-primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 16px;
  color: var(--bs-primary);
}

.careers-notice-body strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 5px;
}

.careers-notice-body p {
  font-size: 0.82rem;
  color: var(--bs-gray);
  line-height: 1.6;
  margin: 0;
}

/* Responsive */
@media (max-width: 480px) {
  .careers-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn,
  .careers-btn-outline {
    justify-content: center;
  }
}


/* Image label overlay — add to main.css */
.showcase-img-label {
  position: absolute;
  bottom: 14px;
  left: 14px;
  z-index: 3;
  background: rgba(10, 31, 53, 0.72);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  pointer-events: none;
  white-space: nowrap;
}



