/* ==========================================================================
   Steam Harbour Logistics — Main Stylesheet
   Figma: Steam Harbour (Homepage v5 / Services v2 / About Us v2)
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Design Tokens
   -------------------------------------------------------------------------- */
:root {
  --sh-cyan: #00b1c5;
  --sh-cyan-dark: #038e9d;
  --sh-green: #a1cc3a;
  --sh-green-light: #bae64f;
  --sh-heading: #324049;
  --sh-slate: #364650;
  --sh-body: #4a5155;
  --sh-dark: #282d23;
  --sh-footer-bg: #000708;
  --sh-footer-bar: #000303;
  --sh-footer-muted: #a8a9ac;
  --sh-footer-icon: #b5b3b8;
  --sh-surface: #f6f9ff;
  --sh-border: rgba(0, 0, 0, 0.2);
  --sh-radius: 20px;
  --sh-font-body: "Archivo", sans-serif;
  --sh-font-display: "Pathway Extreme", "Archivo", sans-serif;
}

/* --------------------------------------------------------------------------
   2. Base
   -------------------------------------------------------------------------- */
html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--sh-font-body);
  font-size: 18px;
  font-weight: 400;
  line-height: 30px;
  letter-spacing: 0.36px;
  color: var(--sh-body);
  background-color: #ffffff;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: var(--sh-cyan);
  text-decoration: none;
  transition: color 0.25s ease;
}

a:hover {
  color: var(--sh-cyan-dark);
}

/* Custom 1440px container to match the 1410px Figma content width */
.container-sh {
  width: 100%;
  max-width: 1440px;
  margin-inline: auto;
  padding-inline: 15px;
}

/* --------------------------------------------------------------------------
   3. Typography / Section Titles
   -------------------------------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
  color: var(--sh-heading);
  font-weight: 700;
}

.section-head {
  margin-bottom: 40px;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 22px;
  font-weight: 700;
  line-height: 24px;
  letter-spacing: 0.44px;
  text-transform: uppercase;
  color: var(--sh-heading);
  margin-bottom: 8px;
}

.dropdown-toggle::after{
  display: none;
}

.section-badge img {
  width: 21px;
  height: 15px;
  flex-shrink: 0;
}

.section-badge .leaf-end {
  transform: scaleX(-1);
}

.section-title {
  font-size: 60px;
  font-weight: 700;
  line-height: 1.09;
  letter-spacing: 1.2px;
  color: var(--sh-heading);
  margin-bottom: 0;
}

.section-title--display {
  font-family: var(--sh-font-display);
  line-height: 1.35;
}

.section-title .text-accent,
.section-badge .text-accent {
  color: var(--sh-cyan);
}

.section-head--light .section-badge,
.section-head--light .section-title {
  color: #ffffff;
}

.section-lead {
  font-size: 18px;
  line-height: 30px;
  letter-spacing: 0.36px;
  color: var(--sh-body);
  max-width: 990px;
  margin-inline: auto;
}

/* Intro paragraph with green left rule (About page) */
.lead-rule {
  position: relative;
  font-size: 22px;
  line-height: 34px;
  letter-spacing: 0.44px;
  color: var(--sh-body);
  padding-left: 27px;
  border-left: 2px solid var(--sh-green);
}

/* --------------------------------------------------------------------------
   4. Buttons
   -------------------------------------------------------------------------- */
.btn-sh {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 14px 25px;
  border-radius: 60px;
  border: 1px solid transparent;
  font-size: 18px;
  font-weight: 700;
  line-height: 21px;
  letter-spacing: 0;
  text-transform: capitalize;
  transition: background-color 0.25s ease, color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.btn-sh img {
  width: 22px;
  height: 22px;
  transition: transform 0.25s ease;
}

.btn-sh:hover img {
  transform: translateX(4px);
}

.btn-sh-green {
  background-color: var(--sh-green);
  color: #ffffff;
}

.btn-sh-green:hover {
  background-color: #8fb930;
  color: #ffffff;
  box-shadow: 0 8px 20px rgba(161, 204, 58, 0.35);
}

.btn-sh-white {
  background-color: #ffffff;
  border-color: rgba(255, 255, 255, 0.22);
  color: var(--sh-green);
}

.btn-sh-white:hover {
  background-color: #f4f8ea;
  color: var(--sh-green);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

/* Round slider arrows */
.slider-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0;
  border-radius: 50%;
  border: 1px solid var(--sh-border);
  background-color: #ffffff;
  transition: background-color 0.25s ease, border-color 0.25s ease;
}

.slider-arrow img {
  width: 20px;
  height: 20px;
}

.slider-arrow--next img {
  transform: scaleX(-1);
}

.slider-arrow:hover {
  background-color: var(--sh-cyan);
  border-color: var(--sh-cyan);
}

.slider-arrow:hover img {
  filter: brightness(0) invert(1);
}

.slider-arrow--next:hover img {
  transform: scaleX(-1);
  filter: brightness(0) invert(1);
}

/* --------------------------------------------------------------------------
   5. Header / Navigation
   -------------------------------------------------------------------------- */
.site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1030;
  padding: 15px 20px 0;
  transition: background-color 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease;
}

.site-header .navbar {
  padding: 0;
}

.site-header .navbar-brand {
  padding: 0;
}

.site-header .navbar-brand img {
  height: 84px;
  width: auto;
}

.site-header .navbar-brand .logo-light {
  display: none;
}

.site-header--light .navbar-brand .logo-light {
  display: block;
}

.site-header--light .navbar-brand .logo-dark {
  display: none;
}

.site-header .nav-link {
  font-size: 22px;
  font-weight: 500;
  line-height: 24px;
  color: var(--sh-heading);
  padding: 8px 15px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: color 0.25s ease;
}

.site-header .nav-link .caret {
  width: 18px;
  height: 18px;
}

.site-header .nav-link .caret-light,
.site-header--light .nav-link .caret-dark {
  display: none;
}

.site-header--light .nav-link .caret-light {
  display: inline-block;
}

.site-header .nav-link:hover,
.site-header .nav-link.active {
  color: var(--sh-cyan);
}

.site-header--light .nav-link {
  color: #ffffff;
}

.site-header--light .nav-link:hover,
.site-header--light .nav-link.active {
  color: var(--sh-green);
}

.site-header .btn-sh {
  padding: 14px 25px;
}

.site-header .dropdown-menu {
  border: 0;
  border-radius: 12px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
  padding: 10px 0;
  margin-top: 8px;
}

.site-header .dropdown-item {
  font-size: 17px;
  font-weight: 500;
  padding: 8px 22px;
  color: var(--sh-heading);
}

.site-header .dropdown-item:hover {
  background-color: rgba(0, 177, 197, 0.08);
  color: var(--sh-cyan);
}

/* Sticky state — always solid white with dark links */
.site-header.is-sticky {
  position: fixed;
  padding: 8px 20px;
  background-color: #ffffff;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
  animation: header-slide-down 0.35s ease;
}

.site-header.is-sticky .navbar-brand img {
  height: 62px;
}

.site-header.is-sticky .nav-link {
  color: var(--sh-heading);
}

.site-header.is-sticky .nav-link:hover,
.site-header.is-sticky .nav-link.active {
  color: var(--sh-cyan);
}

.site-header.is-sticky .navbar-brand .logo-light {
  display: none;
}

.site-header.is-sticky .navbar-brand .logo-dark {
  display: block;
}

.site-header.is-sticky .nav-link .caret-light {
  display: none;
}

.site-header.is-sticky .nav-link .caret-dark {
  display: inline-block;
}

@keyframes header-slide-down {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}

/* Mobile toggler */
.site-header .navbar-toggler {
  border: 1px solid rgba(255, 255, 255, 0.4);
  padding: 8px 10px;
}

.site-header .navbar-toggler:focus {
  box-shadow: none;
}

.site-header .navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(50,64,73,1)' stroke-width='2.5' stroke-linecap='round' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

.site-header--light .navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255,255,255,1)' stroke-width='2.5' stroke-linecap='round' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

.site-header.is-sticky .navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(50,64,73,1)' stroke-width='2.5' stroke-linecap='round' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

/* --------------------------------------------------------------------------
   6. Floating Contact Rail
   -------------------------------------------------------------------------- */
.contact-rail {
  position: fixed;
  top: 40%;
  right: 0;
  z-index: 1040;
  display: flex;
  flex-direction: column;
  width: 50px;
  background-color: var(--sh-cyan);
  border-radius: 10px 0 0 10px;
  box-shadow: 0 0 20px rgba(93, 93, 93, 0.4);
  overflow: hidden;
}

.contact-rail a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  transition: opacity 0.25s ease;
}

.contact-rail a:hover {
  opacity: 0.85;
}

.contact-rail a img {
  width: 24px;
  height: 24px;
}

.contact-rail .rail-whatsapp {
  background-color: var(--sh-green);
}

.contact-rail .rail-map {
  background-color: var(--sh-slate);
}

/* --------------------------------------------------------------------------
   7. Hero Banners
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  border-radius: 40px;
  overflow: hidden;
  background-color: #fbf7f8;
  background-size: cover;
  background-position: center;
}

.hero--home {
  min-height: 920px;
  display: flex;
  align-items: center;
  /* Poster image is the fallback shown before the video plays or if it fails */
  background: #05131b url("../images/hero-home.jpg") center / cover no-repeat;
}

/* Background video layer */
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
}

/* Dark gradient sitting on top of the video, behind the content */
.hero-media-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(rgba(6, 0, 36, 0.6), rgba(6, 0, 36, 0.55));
}

.hero--home .container-sh {
  position: relative;
  z-index: 2;
}

/* Respect users who prefer reduced motion — show the poster image instead */
@media (prefers-reduced-motion: reduce) {
  .hero-video {
    display: none;
  }
}

.hero--home .hero-content {
  max-width: 640px;
  padding-top: 60px;
}

.hero--home .hero-title {
  font-family: var(--sh-font-display);
  font-size: 60px;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 1.2px;
  color: #ffffff;
  margin: 12px 0 24px;
}

.hero--home .hero-title .text-accent {
  color: var(--sh-cyan);
}

.hero--home .hero-text {
  color: #ffffff;
  max-width: 600px;
  margin-bottom: 40px;
}

.hero--home .section-badge {
  color: #ffffff;
  margin-bottom: 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

/* Play button */
.hero-play {
  position: absolute;
  top: 45%;
  left: 64.5%;
  width: 119px;
  height: 119px;
  border: 0;
  padding: 0;
  background: transparent;
  z-index: 3;
}

.hero-play img {
  width: 100%;
  height: 100%;
}

.hero-play::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.5);
  animation: play-pulse 2s ease-out infinite;
}

@keyframes play-pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}

/* Inner-page hero (Services / About) */
.hero--inner {
  min-height: 650px;
  display: flex;
  align-items: center;
}

.hero--inner .hero-content {
  padding-top: 90px;
  max-width: 760px;
}

.hero--inner .section-badge {
  color: var(--sh-slate);
  margin-bottom: 0;
}

.hero--inner .hero-title {
  font-size: 60px;
  font-weight: 700;
  line-height: 65px;
  letter-spacing: 1.2px;
  color: var(--sh-slate);
  text-shadow: 0 4px 44px rgba(255, 255, 255, 0.45);
  margin-top: 12px;
  margin-bottom: 0;
}

.hero--inner .hero-title .text-accent {
  color: var(--sh-cyan);
}

.hero--services {
  background-image:
    linear-gradient(rgba(6, 20, 27, 0.55), rgba(6, 20, 27, 0.5)),
    url("../images/page-3-main-Image.jpeg");
  background-size: cover, cover;
  background-position: center, center;
}

.hero--about {
  background-image:
    linear-gradient(rgba(6, 20, 27, 0.55), rgba(6, 20, 27, 0.5)),
    url("../images/about-us-landing.jpeg");
  background-size: cover, cover;
  background-position: center, center;
}

.hero--industries {
  background-image:
    linear-gradient(rgba(6, 20, 27, 0.6), rgba(6, 20, 27, 0.55)),
    url("../images/industry-we-serve.jpeg");
  background-size: cover, cover;
  background-position: center, center;
}

/* Dark banner → light title & badge so the page title stays clearly legible */
.hero--services .section-badge,
.hero--about .section-badge,
.hero--industries .section-badge {
  color: #ffffff;
}

.hero--services .hero-title,
.hero--about .hero-title,
.hero--industries .hero-title {
  color: #ffffff;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
}

/* Industry detail icon badge */
.industry-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background-color: var(--sh-cyan);
  margin-bottom: 22px;
}

.industry-icon img {
  width: 34px;
  height: 34px;
  filter: brightness(0) invert(1);
}

/* Inner-page title banners (Knowledge Sharing, Career, CMS, Contact, Quote, 404) */
.hero--banner {
  background-size: cover;
  background-position: center;
}

.hero--banner .section-badge,
.hero--banner .hero-title {
  color: #ffffff;
}

.hero--banner .hero-title {
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
}

.hero--banner .breadcrumb-sh {
  color: rgba(255, 255, 255, 0.85);
}

.hero--banner .breadcrumb-sh a {
  color: #ffffff;
}

.hero--banner .breadcrumb-sh a:hover {
  color: var(--sh-green);
}

.hero--banner .breadcrumb-sh li + li::before {
  color: rgba(255, 255, 255, 0.4);
}

.hero--kb {
  background-image:
    linear-gradient(rgba(6, 20, 27, 0.62), rgba(6, 20, 27, 0.55)),
    url("../images/knowledge-sharing.jpeg");
  background-size: cover, cover;
  background-position: center, center;
}

.hero--career {
  background-image:
    linear-gradient(rgba(6, 20, 27, 0.62), rgba(6, 20, 27, 0.55)),
    url("../images/about-team.jpg");
  background-size: cover, cover;
  background-position: center, center;
}

.hero--cms {
  background-image:
    linear-gradient(rgba(6, 20, 27, 0.62), rgba(6, 20, 27, 0.55)),
    url("../images/about-building.jpg");
  background-size: cover, cover;
  background-position: center, center;
}

.hero--contact {
  background-image:
    linear-gradient(rgba(6, 20, 27, 0.62), rgba(6, 20, 27, 0.55)),
    url("../images/contact-us.jpeg");
  background-size: cover, cover;
  background-position: center, center;
}

.hero--quote {
  background-image:
    linear-gradient(rgba(6, 20, 27, 0.62), rgba(6, 20, 27, 0.55)),
    url("../images/get-quote-landing.jpeg");
  background-size: cover, cover;
  background-position: center, center;
}

.hero--404 {
  background-image:
    linear-gradient(rgba(6, 20, 27, 0.62), rgba(6, 20, 27, 0.55)),
    url("../images/service-transportation.jpg");
  background-size: cover, cover;
  background-position: center, center;
}

/* --------------------------------------------------------------------------
   8. Home — Why Choose
   -------------------------------------------------------------------------- */
.why-choose {
  position: relative;
  padding: 130px 0 120px;
  overflow: hidden;
  /*background-image:
    linear-gradient(180deg, #ffffff 0%, #ffffff 30%, rgba(255, 255, 255, 0.55) 55%, rgba(255, 255, 255, 0) 85%),
    url("../images/why-choose-bg.jpg");*/
    background-image: linear-gradient(180deg, #ffffff 0%, #ffffff 16%, rgba(255, 255, 255, 0.1) 33%, rgba(255, 255, 255, 0) 39%), url("../images/why-choose-bg.jpg");
  background-size: 100% 100%, cover;
  background-position: center, center bottom;
  background-repeat: no-repeat;
}

.why-choose .why-ship {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(1556px, 96%);
  z-index: 1;
  pointer-events: none;
}

.why-choose .section-head,
.why-choose .section-lead {
  position: relative;
  z-index: 2;
}

.why-cards {
  position: relative;
  z-index: 2;
  margin-top: 265px !important;
}

.why-card {
  position: relative;
  display: flex;
  align-items: center;
  max-width: 318px;
  min-height: 134px;
  margin-bottom: 30px;
}

.why-card-box {
  display: flex;
  align-items: center;
  width: 281px;
  min-height: 134px;
  padding: 30px 38px;
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: var(--sh-radius);
  box-shadow: 0 7px 45px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(2px);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why-card:hover .why-card-box {
  transform: translateY(-4px);
  box-shadow: 0 14px 45px rgba(0, 0, 0, 0.14);
}

.why-card-title {
  font-size: 22px;
  font-weight: 600;
  line-height: 30px;
  color: var(--sh-dark);
  margin: 0;
}

.why-card-icon {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 74px;
  height: 74px;
  border-radius: 50%;
  background-color: var(--sh-cyan);
  flex-shrink: 0;
  z-index: 1;
}

.why-card-icon img {
  width: 40px;
  height: 40px;
}

/* icons face the center ship */
.why-card--left {
  justify-content: flex-start;
}

.why-card--left .why-card-box {
  justify-content: flex-end;
  text-align: right;
  padding-right: 60px;
}

.why-card--left .why-card-icon {
  right: 0;
}

.why-card--right {
  justify-content: flex-end;
  margin-left: auto;
}

.why-card--right .why-card-box {
  margin-left: auto;
  text-align: left;
  padding-left: 60px;
}

.why-card--right .why-card-icon {
  left: 0;
}

/* --------------------------------------------------------------------------
   9. Home — Stats
   -------------------------------------------------------------------------- */
.stats {
  padding: 130px 0 60px;
}

.stats-heading {
  font-size: 36px;
  font-weight: 700;
  line-height: 46px;
  letter-spacing: 0.72px;
  color: var(--sh-heading);
  max-width: 360px;
  margin: 0;
}

.stats-divider {
  width: 1px;
  align-self: stretch;
  background-color: #efefef;
}

.stat-number {
  font-size: 80px;
  font-weight: 700;
  line-height: 92px;
  letter-spacing: 1.6px;
  color: var(--sh-green);
}

.stat-label {
  font-size: 18px;
  font-weight: 500;
  line-height: 30px;
  letter-spacing: 0.36px;
  color: var(--sh-body);
}

/* --------------------------------------------------------------------------
   10. Home — Services Slider
   -------------------------------------------------------------------------- */
.services-slider-section {
  padding: 70px 0 90px;
  overflow: hidden;
}

.services-slider-wrap {
  position: relative;
}

.services-track {
  display: flex;
  gap: 30px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding: 10px 4px 25px;
}

.services-track::-webkit-scrollbar {
  display: none;
}

.service-card {
  position: relative;
  flex: 0 0 348px;
  height: 537px;
  border-radius: var(--sh-radius);
  overflow: hidden;
  scroll-snap-align: start;
  display: block;
}

.service-card img.service-card-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.service-card:hover img.service-card-img {
  transform: scale(1.05);
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(171px 160px at 12% 0%, rgba(0, 0, 0, 0.45), transparent 70%);
  z-index: 1;
}

.service-card::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 250px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.9) 100%);
  z-index: 1;
}

.service-card-icon {
  position: absolute;
  top: 35px;
  left: 35px;
  width: 50px;
  height: 50px;
  z-index: 2;
}

.service-card-title {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 40px;
  text-align: center;
  font-size: 22px;
  font-weight: 700;
  line-height: 24px;
  letter-spacing: 0.44px;
  color: #ffffff;
  z-index: 2;
  margin: 0;
}

.services-slider-wrap .slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
}

.services-slider-wrap .slider-arrow--prev {
  left: -10px;
}

.services-slider-wrap .slider-arrow--next {
  right: -10px;
}

/* --------------------------------------------------------------------------
   11. Home — Industries We Serve (tabs)
   -------------------------------------------------------------------------- */
.industries {
  position: relative;
  min-height: 1051px;
  overflow: hidden;
}

.industries-media {
  position: absolute;
  inset: 0 0 0 28%;
  border-radius: var(--sh-radius);
  overflow: hidden;
}

.industries-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.industries-media::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 383px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.9) 100%);
}

.industries-caption {
  position: absolute;
  left: 40%;
  right: 40px;
  bottom: 46px;
  color: #ffffff;
  font-size: 22px;
  line-height: 30px;
  z-index: 3;
}

.industries-panel {
  position: relative;
  width: 36.5%;
  min-width: 560px;
  min-height: 1051px;
  background-color: var(--sh-cyan);
  border-radius: 0 50px 50px 0;
  padding: 139px 35px 80px 0;
  z-index: 2;
}

.industries-panel .section-badge,
.industries-panel .panel-title {
  color: #ffffff;
}

.industries-panel .panel-title {
  font-size: 60px;
  font-weight: 700;
  line-height: 66px;
  letter-spacing: 1.2px;
  margin: 8px 0 0;
}

.industries-list {
  list-style: none;
  padding: 0;
  margin: 84px 0 0;
}

.industries-item {
  margin-bottom: 50px;
}

.industries-link {
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
  color: #ffffff;
  font-size: 32px;
  font-weight: 500;
  line-height: 37px;
}

.industries-link .ind-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background-color: #ffffff;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}

.industries-link .ind-icon img {
  width: 33px;
  height: 33px;
}

.industries-link .ind-label {
  position: relative;
  z-index: 2;
}

.industries-link:hover {
  color: #eaffca;
}

/* Active item — white band across the panel */
.industries-item.active .industries-link {
  color: var(--sh-cyan);
}

.industries-item.active .industries-link .ind-icon {
  background-color: var(--sh-cyan);
}

.industries-item.active .industries-link .ind-icon img {
  filter: brightness(0) invert(1);
}

.industries-item.active .industries-link::before {
  content: "";
  position: absolute;
  top: -25px;
  bottom: -25px;
  left: -100vw;
  right: -35px;
  background-color: #ffffff;
  z-index: 1;
}

/* Accordion body — hidden on desktop (the top media is used instead) */
.industries-collapse {
  display: none;
}

/* --------------------------------------------------------------------------
   12. Home — Shipping Lines
   -------------------------------------------------------------------------- */
.shipping-lines {
  padding: 100px 0 60px;
}

.line-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 90px;
  margin-bottom: 70px;
}

.line-logo img {
  max-height: 90px;
  max-width: 273px;
  width: auto;
  object-fit: contain;
  transition: opacity 0.3s ease, filter 0.3s ease;
}

.line-logo:hover img {
  opacity: 1;
  filter: grayscale(0);
}

.line-logo--oocl img {
  opacity: 1;
  filter: none;
}

/* --------------------------------------------------------------------------
   13. Home — Businesses Worldwide
   -------------------------------------------------------------------------- */
.worldwide {
  background-color: var(--sh-surface);
  padding: 130px 0;
}

.worldwide-map {
  display: block;
  /*max-width: 1098px;*/
  margin: 40px auto 45px;
}

.regions-title {
  font-size: 36px;
  font-weight: 700;
  line-height: 46px;
  color: #0d0000;
  margin-bottom: 14px;
}

.regions-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.regions-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 600;
  line-height: 40px;
  letter-spacing: 0.36px;
  color: var(--sh-body);
}

.regions-list li img {
  width: 25px;
  height: 18px;
  flex-shrink: 0;
}

/* --------------------------------------------------------------------------
   14. Home — Testimonials
   -------------------------------------------------------------------------- */
.testimonials {
  padding: 130px 0;
  overflow: hidden;
}

.testimonials-wrap {
  position: relative;
}

.testimonials-track {
  display: flex;
  gap: 30px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding: 10px 4px;
}

.testimonials-track::-webkit-scrollbar {
  display: none;
}

.testimonial-card {
  flex: 0 0 450px;
  min-height: 405px;
  border: 1px solid var(--sh-border);
  border-radius: var(--sh-radius);
  padding: 40px;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
}

.testimonial-card .quote-mark {
  width: 37px;
  height: 30px;
  margin-bottom: 25px;
}

.testimonial-text {
  font-size: 18px;
  line-height: 32px;
  letter-spacing: 0.36px;
  color: var(--sh-body);
  flex-grow: 1;
}

.testimonial-person {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 25px;
}

/*.testimonial-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-image: url("../images/people-collage.jpg");
  background-size: 662px 662px;
  flex-shrink: 0;
}*/

.testimonial-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-image: url("../images/testimonial-1.png");
  background-size: 61px;
  background-position: center !important;
  background-repeat: no-repeat;
  flex-shrink: 0;
}

.testimonial-avatar--1 {
  background-position: -274px -264px;
}

.testimonial-avatar--2 {
  background-position: -14px -400px;
}

.testimonial-avatar--3 {
  background-position: -136px -268px;
}

.testimonial-name {
  font-size: 20px;
  font-weight: 600;
  line-height: 23px;
  color: #000512;
  margin: 0 0 7px;
}

.testimonial-role {
  font-size: 16px;
  font-weight: 700;
  line-height: 17px;
  color: #45474e;
  margin: 0;
}

.testimonials-wrap .slider-arrow {
  position: absolute;
  top: 45%;
  z-index: 3;
}

.testimonials-wrap .slider-arrow--prev {
  left: -85px;
}

.testimonials-wrap .slider-arrow--next {
  right: -85px;
}

/* --------------------------------------------------------------------------
   15. Home — Trusted Logos
   -------------------------------------------------------------------------- */
.trusted {
  padding: 0 0 130px;
}

.trusted-logos {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
  margin-top: 65px;
  opacity: 0.5;
}

.trusted-logos img {
  max-height: 111px;
  max-width: 173px;
  object-fit: contain;
  transition: filter 0.3s ease;
}

.trusted-logos img:hover {
  filter: grayscale(0);
}

/* --------------------------------------------------------------------------
   16. CTA Section (shared)
   -------------------------------------------------------------------------- */
.cta {
  position: relative;
  min-height: 643px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: #0a6e79;
}

/* Ship image, flipped horizontally so the containers sit on the right */
.cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../images/cta-aerial.jpg");
  background-size: cover;
  background-position: center 65%;
  transform: scaleX(-1);
  z-index: 0;
}

/* Teal gradient over the left (water) side where the text sits */
.cta::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #038e9d 0%, rgba(0, 85, 95, 0) 100%);
  z-index: 1;
}

.cta-inner {
  position: relative;
  z-index: 2;
  max-width: 670px;
  padding: 90px 0;
}

.cta .section-badge,
.cta .cta-title,
.cta .cta-text {
  color: #ffffff;
}

.cta-title {
  font-size: 60px;
  font-weight: 700;
  line-height: 65px;
  letter-spacing: 1.2px;
  margin: 8px 0 25px;
}

.cta-text {
  max-width: 540px;
  margin-bottom: 35px;
}

/* --------------------------------------------------------------------------
   17. Footer (shared)
   -------------------------------------------------------------------------- */
.site-footer {
  background-color: var(--sh-footer-bg);
  color: #ffffff;
}

.footer-main {
  padding: 60px 0;
}

.footer-logo img {
  width: 130px;
  height: auto;
}

.footer-title {
  font-size: 22px;
  font-weight: 700;
  line-height: 24px;
  letter-spacing: 0.44px;
  color: #ffffff;
  margin-bottom: 24px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li a {
  display: inline-block;
  font-size: 18px;
  line-height: 40px;
  color: #ffffff;
  opacity: 0.9;
  transition: color 0.25s ease, opacity 0.25s ease;
}

.footer-links li a:hover {
  color: var(--sh-green);
  opacity: 1;
}

.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-contact li {
  display: flex;
  gap: 10px;
  font-size: 18px;
  line-height: 30px;
  color: rgba(255, 255, 255, 0.8);
}

.footer-contact li img {
  width: 22px;
  height: 22px;
  margin-top: 4px;
  flex-shrink: 0;
}

.footer-contact li a {
  color: rgba(255, 255, 255, 0.8);
}

.footer-contact li a:hover {
  color: var(--sh-green);
}

.footer-contact li a.footer-mail {
  color: var(--sh-cyan);
}

.footer-bar {
  background-color: var(--sh-footer-bar);
  padding: 25px 0;
  font-size: 18px;
  line-height: 21px;
  color: #cccece;
}

.footer-bar .sep {
  color: #ffffff;
  margin-inline: 12px;
}

.footer-bar a {
  color: #cccece;
}

.footer-bar a:hover {
  color: #ffffff;
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 20px;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.footer-social a:hover {
  opacity: 0.7;
  transform: translateY(-2px);
}

.footer-social img {
  max-width: 60px;
  max-height: 60px;
}

/* --------------------------------------------------------------------------
   18. Services page
   -------------------------------------------------------------------------- */
.services-intro {
  padding: 130px 0 40px;
}

.service-detail {
  padding: 42px 0;
}

.service-detail-media {
  border-radius: var(--sh-radius);
  overflow: hidden;
  height: 100%;
  max-height: 837px;
}

.service-detail-media img {
  width: 100%;
  height: 100%;
  aspect-ratio: 705 / 837;
  object-fit: cover;
  border-radius: var(--sh-radius);
}

.service-detail-title {
  font-size: 60px;
  font-weight: 700;
  line-height: 65px;
  letter-spacing: 1.2px;
  color: var(--sh-heading);
  margin-bottom: 30px;
}

.service-detail-text p {
  margin-bottom: 20px;
}

.service-detail .btn-sh {
  margin-top: 20px;
}

/* --------------------------------------------------------------------------
   19. About page
   -------------------------------------------------------------------------- */
.who-we-are {
  padding: 130px 0;
}

.who-we-are .section-title--display {
  line-height: 1.2;
}

.who-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.66fr 1fr;
  grid-auto-rows: 318px;
  gap: 20px;
}

.who-grid figure {
  position: relative;
  margin: 0;
  border-radius: var(--sh-radius);
  overflow: hidden;
}

.who-grid figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.who-badge {
  position: absolute;
  top: 50%;
  left: 66%;
  transform: translate(-50%, -50%);
  width: 151px;
  min-height: 131px;
  background-color: var(--sh-cyan);
  border: 10px solid #ffffff;
  border-radius: var(--sh-radius);
  padding: 8px 14px;
  color: #ffffff;
  z-index: 2;
}

.who-badge .who-badge-number {
  font-size: 54px;
  font-weight: 700;
  line-height: 60px;
  letter-spacing: 1.2px;
}

.who-badge .who-badge-label {
  font-size: 14px;
  font-weight: 600;
  line-height: 16px;
  letter-spacing: 0.28px;
}

/* Founder / vision */
.founder {
  position: relative;
  background-color: var(--sh-surface);
}

.founder-media {
  position: relative;
  min-height: 716px;
  height: 100%;
}

.founder-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.founder-quote-card {
  position: absolute;
  right: -85px;
  top: 217px;
  width: 381px;
  background-color: #ffffff;
  border-radius: var(--sh-radius);
  box-shadow: 5px 5px 0 var(--sh-green), 0 0 24px rgba(0, 0, 0, 0.07);
  padding: 35px;
  z-index: 2;
}

.founder-quote-card .quote-text {
  font-size: 18px;
  line-height: 32px;
  letter-spacing: 0.36px;
  color: var(--sh-body);
  margin-bottom: 28px;
}

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

.founder-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-image: url("../images/people-collage.jpg");
  background-size: 662px 662px;
  background-position: -144px -264px;
  flex-shrink: 0;
}

.founder-person .person-name {
  font-size: 20px;
  font-weight: 600;
  line-height: 23px;
  color: var(--sh-cyan);
  margin: 0 0 5px;
}

.founder-person .person-role {
  font-size: 16px;
  font-weight: 600;
  line-height: 18px;
  color: #45474e;
  margin: 0;
}

.founder-body {
  padding: 105px 0 105px 100px;
}

/* Timeline */
.timeline {
  padding: 130px 0;
  position: relative;
}

.timeline-body {
  position: relative;
  margin-top: 40px;
  padding: 36px 0;
}

/* Vertical slider viewport — shows exactly two milestones at a time */
.timeline-viewport {
  position: relative;
  height: 720px;
  overflow: hidden;
}

.timeline-viewport .timeline-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  background-color: rgba(0, 0, 0, 0.2);
  z-index: 1;
}

.timeline-track {
  transition: transform 0.6s cubic-bezier(0.65, 0, 0.35, 1);
  will-change: transform;
}

.timeline-row {
  position: relative;
  height: 360px;
  display: flex;
  align-items: center;
}

.timeline-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 180px;
  align-items: center;
  width: 100%;
}

.timeline-row:nth-child(even) .timeline-media {
  order: 2;
}

.timeline-row:nth-child(even) .timeline-text {
  order: 1;
}

/* Up / down navigation arrows on the centre line */
.tl-nav {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 30px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  transition: opacity 0.25s ease;
}

.tl-nav img {
  width: 22px;
  height: 21px;
  max-width: none;
}

.tl-nav--up {
  top: 0;
}

.tl-nav--down {
  bottom: 0;
}

.tl-nav:hover {
  opacity: 0.65;
}

.tl-nav.is-disabled {
  opacity: 0.2;
  pointer-events: none;
}

.timeline-year {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  gap: 10px;
  background-color: #ffffff;
  padding: 10px;
  z-index: 2;
  font-size: 30px;
  font-weight: 600;
  line-height: 29px;
  letter-spacing: 0.6px;
  color: var(--sh-cyan);
}

.timeline-year::before,
.timeline-year::after {
  content: "";
  width: 20px;
  height: 1px;
  background-color: rgba(0, 177, 197, 0.5);
}

.timeline-media {
  border-radius: var(--sh-radius);
  overflow: hidden;
  height: 300px;
}

.timeline-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.timeline-title {
  font-size: 22px;
  font-weight: 600;
  line-height: 34px;
  letter-spacing: 0.44px;
  color: var(--sh-green);
  margin-bottom: 12px;
}


/* Our Business (vision / mission / values) */
.our-business {
  position: relative;
  isolation: isolate;
  padding: 130px 0 0;
}

.our-business::before {
  content: "";
  position: absolute;
  inset: 0 0 260px 0;
  background-color: var(--sh-cyan);
  z-index: -1;
}

.our-business .section-badge,
.our-business h2,
.our-business p {
  color: #ffffff;
}

.vm-row {
  position: relative;
  margin-top: 25px;
}

.vm-divider {
  position: absolute;
  top: 23px;
  left: 50%;
  transform: translateX(-50%);
  width: min(548px, 40%);
  height: 1px;
  background-color: rgba(255, 255, 255, 0.5);
}

.vm-emblem {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 86px;
  height: 86px;
  border-radius: 50%;
  background-color: #ffffff;
  border: 5px solid var(--sh-green);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.vm-emblem img {
  width: 61px;
  height: 71px;
  object-fit: contain;
}

.vm-title {
  font-size: 36px;
  font-weight: 400;
  line-height: 46px;
  letter-spacing: 0.72px;
  color: #ffffff;
  margin-bottom: 25px;
}

.vm-title .text-accent {
  color: var(--sh-green-light);
}

.vm-col p {
  max-width: 600px;
  margin-inline: auto;
}

.values-title {
  font-size: 36px;
  font-weight: 400;
  line-height: 46px;
  letter-spacing: 0.72px;
  color: #ffffff;
  text-align: center;
  margin: 60px 0 10px;
}

.values-title .text-accent {
  color: var(--sh-green-light);
}

.values-slider {
  position: relative;
}

.values-track {
  display: flex;
  align-items: stretch;
  gap: 30px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  padding: 15px 2px 25px;
}

.values-track::-webkit-scrollbar {
  display: none;
}

/* 3 slides per view on desktop (two 30px gaps subtracted) */
.values-track > .value-card {
  flex: 0 0 calc((100% - 60px) / 3);
  scroll-snap-align: start;
}

.value-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background-color: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: var(--sh-radius);
  overflow: visible;
  height: auto;
}

/* Modifier kept in markup but neutralised so every slide aligns equally */
.value-card--raised {
  transform: none;
}

/* Staggered middle card on desktop, matching the Figma "Our Business" design */
@media (min-width: 992px) {
  .value-card--raised {
    transform: translateY(-60px);
  }

  .values-track {
    padding-top: 70px;
  }
}

.value-card-media {
  height: 290px;
  border-radius: var(--sh-radius) var(--sh-radius) 0 0;
  overflow: hidden;
}

.value-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.value-card-icon {
  position: absolute;
  top: 247px;
  left: 50%;
  transform: translateX(-50%);
  width: 86px;
  height: 86px;
  border-radius: 50%;
  background-color: var(--sh-green);
  border: 6px solid #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.value-card-icon img {
  width: 46px;
  height: 46px;
}

.value-card-body {
  padding: 63px 45px 45px;
  text-align: center;
}

.value-card-title {
  font-size: 25px;
  font-weight: 600;
  line-height: 32px;
  color: var(--sh-heading);
  margin-bottom: 15px;
}

.value-card-body p {
  color: var(--sh-body);
  margin: 0;
}

.values-arrows {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 35px;
}

.values-arrows .slider-arrow {
  background-color: transparent;
  border-color: rgba(0, 0, 0, 0.1);
}

/* Reliable operations */
.reliable-ops {
  padding: 100px 0 130px;
}

.reliable-media {
  position: relative;
  border-radius: var(--sh-radius);
}

.reliable-media::after {
  content: "";
  position: absolute;
  inset: 10px -10px -10px 10px;
  background-color: var(--sh-green);
  border-radius: var(--sh-radius);
  z-index: 0;
}

.reliable-media img {
  position: relative;
  width: 100%;
  height: 538px;
  object-fit: cover;
  border-radius: var(--sh-radius);
  z-index: 1;
}

.ops-feature {
  text-align: center;
  max-width: 280px;
  margin-inline: auto;
}

.ops-feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background-color: var(--sh-green);
  margin: 0 auto 20px;
}

.ops-feature-icon img {
  width: 40px;
  height: 40px;
}

.ops-feature p {
  color: var(--sh-heading);
  margin: 0;
}

/* --------------------------------------------------------------------------
   19b. Image hover zoom (same effect as the homepage service cards)
   -------------------------------------------------------------------------- */
.service-detail-media,
.value-card-media,
.timeline-media,
.who-grid figure,
.industries-media,
.blog-card-media,
.recent-post-thumb,
.post-featured {
  overflow: hidden;
}

.service-detail-media img,
.value-card-media img,
.timeline-media img,
.who-grid figure img,
.reliable-media img,
.industries-media img,
.blog-card-media img,
.recent-post-thumb img,
.post-featured img {
  transition: transform 0.4s ease;
}

.service-detail:hover .service-detail-media img,
.value-card:hover .value-card-media img,
.timeline-media:hover img,
.who-grid figure:hover img,
.reliable-media:hover img,
.industries-media:hover img,
.blog-card:hover .blog-card-media img,
.recent-post:hover .recent-post-thumb img,
.post-featured:hover img {
  transform: scale(1.05);
}

/* --------------------------------------------------------------------------
   20. Reveal animations
   -------------------------------------------------------------------------- */
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(35px);
    transition: opacity 0.7s ease, transform 0.7s ease;
    transition-delay: var(--reveal-delay, 0s);
    will-change: opacity, transform;
  }

  .reveal.revealed {
    opacity: 1;
    transform: none;
  }
}

/* --------------------------------------------------------------------------
   21. Responsive
   -------------------------------------------------------------------------- */
@media (max-width: 1799.98px) {
  .testimonials-wrap .slider-arrow--prev {
    left: -20px;
  }

  .testimonials-wrap .slider-arrow--next {
    right: -20px;
  }
}

@media (max-width: 1499.98px) {
  .site-header .nav-link {
    font-size: 18px;
    padding: 8px 10px;
  }

  .site-header .navbar-brand img {
    height: 64px;
  }

  .industries-panel {
    min-width: 480px;
  }

  .industries-link {
    font-size: 26px;
  }
}

@media (max-width: 1399.98px) {
  .section-title,
  .hero--home .hero-title,
  .hero--inner .hero-title,
  .cta-title,
  .service-detail-title {
    font-size: 48px;
    line-height: 1.15;
  }

  .stat-number {
    font-size: 60px;
    line-height: 72px;
  }

  .founder-quote-card {
    right: 15px;
  }

  .founder-body {
    padding-left: 40px;
  }
}

@media (max-width: 1199.98px) {
  .site-header .nav-link {
    font-size: 16px;
    padding: 8px 7px;
  }

  .site-header .btn-sh {
    padding: 11px 18px;
    font-size: 16px;
  }

  .hero--home {
    min-height: 780px;
  }

  .hero-play {
    left: auto;
    right: 10%;
  }

  .why-choose {
    padding-bottom: 60px;
  }

  .industries {
    min-height: 0;
  }

  .industries-panel {
    width: 100%;
    min-width: 0;
    min-height: 0;
    border-radius: 0;
    padding: 80px 30px 60px;
  }

  /* Mobile/tablet: convert to an accordion — hide the shared top media & caption */
  .industries-media,
  .industries-caption {
    display: none;
  }

  .industries-link {
    align-items: center;
  }

  /* Chevron indicator */
  .industries-link::after {
    content: "";
    width: 11px;
    height: 11px;
    margin-left: auto;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg);
    transition: transform 0.3s ease;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
  }

  .industries-item.active .industries-link::after {
    transform: rotate(-135deg);
  }

  /* Inline collapse body */
  .industries-collapse {
    display: block;
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.45s ease;
  }

  .industries-item.active .industries-collapse {
    max-height: 460px;
  }

  .industries-collapse-inner {
    padding: 18px 0 4px;
  }

  .industries-collapse-inner img {
    display: block;
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 14px;
    margin-bottom: 14px;
  }

  .industries-collapse-inner p {
    color: #ffffff;
    font-size: 16px;
    line-height: 26px;
    margin: 0;
  }

  .industries-item.active .industries-link::before {
    left: -30px;
    right: -30px;
    top: -12px;
    bottom: -12px;
    border-radius: 12px;
  }

  .industries-list {
    margin-top: 40px;
  }

  .industries-item {
    margin-bottom: 20px;
  }

  .founder-media {
    min-height: 520px;
  }

  .founder-quote-card {
    top: auto;
    bottom: 40px;
  }
}

@media (max-width: 991.98px) {
  body {
    font-size: 16px;
    line-height: 28px;
  }

  .section-title,
  .hero--home .hero-title,
  .hero--inner .hero-title,
  .cta-title,
  .service-detail-title {
    font-size: 38px;
  }

  .section-badge {
    font-size: 18px;
  }

  /* Collapsed mobile nav */
  .site-header {
    padding: 10px 0;
    background-color: rgba(6, 20, 27, 0.92);
  }

  .site-header--dark-mobile {
    background-color: #ffffff;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.06);
  }

  .site-header .navbar-brand img {
    height: 54px;
  }

  .site-header .navbar-collapse {
    background-color: #ffffff;
    border-radius: 14px;
    padding: 15px 20px;
    margin-top: 12px;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.15);
  }

  .site-header .navbar-collapse .nav-link {
    color: var(--sh-heading) !important;
    font-size: 18px;
    padding: 10px 5px;
  }

  .site-header .navbar-collapse .nav-link .caret-light {
    display: none !important;
  }

  .site-header .navbar-collapse .nav-link .caret-dark {
    display: inline-block !important;
  }

  .site-header .navbar-collapse .btn-sh {
    margin: 10px 0 5px;
  }

  .hero--home {
    min-height: 660px;
    border-radius: 25px;
  }

  .hero--inner {
    min-height: 480px;
    border-radius: 25px;
  }

  .hero-play {
    display: none;
  }

  .why-choose {
    padding-top: 80px;
    padding-bottom: 0;
  }

  .why-choose .why-ship {
    position: static;
    transform: none;
    width: 100%;
    margin-top: 10px;
  }

  .why-cards {
    margin-top: 30px !important;
  }

  .why-card,
  .why-card--right {
    margin-inline: auto;
  }

  .stats {
    padding: 80px 0 30px;
  }

  .stats-divider {
    display: none;
  }

  .stat-number {
    font-size: 48px;
    line-height: 58px;
  }

  .services-slider-section,
  .worldwide,
  .testimonials,
  .who-we-are,
  .timeline {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .shipping-lines {
    padding: 70px 0 30px;
  }

  .line-logo {
    margin-bottom: 40px;
    height: 70px;
  }

  .line-logo img {
    max-height: 64px;
    max-width: 200px;
  }

  .trusted {
    padding-bottom: 80px;
  }

  .trusted-logos {
    justify-content: center;
  }

  .trusted-logos img {
    max-height: 80px;
    max-width: 130px;
  }

  .cta {
    min-height: 0;
  }

  .cta-inner {
    padding: 70px 0;
  }

  .services-intro {
    padding: 80px 0 20px;
  }

  .service-detail {
    padding: 30px 0;
  }

  .service-detail-media img {
    aspect-ratio: auto;
    max-height: 460px;
  }

  .service-detail-title {
    margin-top: 25px;
  }

  .who-grid {
    grid-auto-rows: 220px;
    margin-top: 40px;
  }

  .founder-body {
    padding: 60px 24px;
  }

  .founder-media {
    min-height: 480px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
  }

  .founder-quote-card {
    position: relative;
    inset: auto;
    margin: 0;
    width: min(381px, 100%);
  }

  /* Timeline: disable the vertical slider and stack milestones on mobile */
  .timeline-body {
    padding: 0;
  }

  .tl-nav,
  .timeline-viewport .timeline-line,
  .timeline-year::before,
  .timeline-year::after {
    display: none;
  }

  .timeline-viewport {
    height: auto;
    overflow: visible;
  }

  .timeline-track {
    transform: none !important;
  }

  .timeline-row {
    height: auto;
    display: flex;
    flex-direction: column;
    padding: 22px 0;
  }

  .timeline-grid {
    grid-template-columns: 1fr;
    column-gap: 0;
    row-gap: 16px;
  }

  .timeline-row:nth-child(even) .timeline-media,
  .timeline-row:nth-child(even) .timeline-text {
    order: 0;
  }

  .timeline-media {
    height: 240px;
  }

  .timeline-year {
    order: -1;
    align-self: flex-start;
    position: static;
    transform: none;
    display: inline-flex;
    padding: 0;
    margin-bottom: 14px;
  }

  .our-business {
    padding-top: 80px;
    padding-bottom: 50px;
  }

  .our-business::before {
    bottom: 0;
  }

  .vm-divider,
  .vm-emblem {
    display: none;
  }

  .vm-col {
    margin-bottom: 40px;
  }

  /* 2 slides per view on tablet */
  .values-track > .value-card {
    flex-basis: calc((100% - 30px) / 2);
  }

  .reliable-ops {
    padding-top: 70px;
    padding-bottom: 80px;
  }

  .reliable-media {
    margin-top: 40px;
  }

  .footer-main {
    padding: 45px 0 20px;
  }

  .footer-main [class*="col-"] {
    margin-bottom: 30px;
  }
}

@media (max-width: 767.98px) {
  .section-title,
  .hero--home .hero-title,
  .hero--inner .hero-title,
  .cta-title,
  .service-detail-title {
    font-size: 32px;
  }

  .hero--home .hero-content {
    padding-top: 110px;
    padding-bottom: 50px;
  }

  /* Why Choose (mobile): every card left-aligned with the icon on the left */
  .why-card,
  .why-card--left,
  .why-card--right {
    justify-content: flex-end;
    margin-inline: 0;
    max-width: 320px;
  }

  .why-card--left .why-card-box,
  .why-card--right .why-card-box {
    margin-left: auto;
    margin-right: 0;
    text-align: left;
    padding-left: 60px;
    padding-right: 34px;
  }

  .why-card--left .why-card-icon,
  .why-card--right .why-card-icon {
    left: 0;
    right: auto;
  }

  .stats-heading {
    font-size: 28px;
    line-height: 38px;
    margin-bottom: 30px;
  }

  /* 1 slide per view on mobile */
  .values-track > .value-card {
    flex-basis: 100%;
  }

  .service-card {
    flex-basis: 300px;
    height: 470px;
  }

  .industries-link {
    font-size: 20px;
    line-height: 28px;
    gap: 14px;
  }

  .industries-link .ind-icon {
    width: 46px;
    height: 46px;
  }

  .industries-link .ind-icon img {
    width: 26px;
    height: 26px;
  }

  .industries-panel .panel-title {
    font-size: 34px;
    line-height: 42px;
  }

  .industries-media {
    height: 340px;
  }

  .industries-caption {
    font-size: 17px;
    line-height: 26px;
  }

  .testimonial-card {
    flex-basis: 86%;
    padding: 28px;
  }

  .testimonials-wrap .slider-arrow--prev {
    left: -8px;
  }

  .testimonials-wrap .slider-arrow--next {
    right: -8px;
  }

  .worldwide-map {
    margin: 25px auto;
  }

  .regions-title {
    font-size: 28px;
    line-height: 38px;
  }

  .who-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 240px;
  }

  .who-badge {
    left: 50%;
  }

  .founder-quote-card {
    width: min(381px, 92%);
  }

  .cta .btn-sh {
    margin-bottom: 10px;
  }

  .footer-bar {
    font-size: 15px;
    text-align: center;
  }

  .footer-social {
    justify-content: center;
    margin-top: 15px;
  }

  .contact-rail {
    width: 44px;
  }

  .contact-rail a {
    width: 44px;
    height: 44px;
  }
}

/* --------------------------------------------------------------------------
   22. Compact inner-page hero & breadcrumb
   -------------------------------------------------------------------------- */
.hero--compact {
  min-height: 420px;
  /* Top scrim keeps the white header legible over the light banner */
  background-image:
    linear-gradient(180deg, rgba(7, 28, 35, 0.5) 0%, rgba(7, 28, 35, 0.14) 12%, rgba(7, 28, 35, 0) 22%),
    linear-gradient(180deg, #e8f4f9 0%, #f5fafc 55%, #ffffff 100%);
}

.hero--compact .hero-content {
  padding-top: 110px;
}

.breadcrumb-sh {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
  font-size: 17px;
  font-weight: 500;
  color: var(--sh-body);
}

.breadcrumb-sh a {
  color: var(--sh-cyan);
}

.breadcrumb-sh li + li::before {
  content: "/";
  margin-right: 10px;
  color: rgba(0, 0, 0, 0.3);
}

.page-section {
  padding: 90px 0;
}

/* --------------------------------------------------------------------------
   23. Blog listing & detail
   -------------------------------------------------------------------------- */
.blog-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background-color: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: var(--sh-radius);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.1);
}

.blog-card-media {
  display: block;
  height: 260px;
  overflow: hidden;
}

.blog-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.blog-card:hover .blog-card-media img {
  transform: scale(1.06);
}

.blog-card-body {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  padding: 28px;
}

.blog-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  font-size: 15px;
  line-height: 1.4;
  color: var(--sh-body);
}

.blog-chip {
  display: inline-block;
  padding: 5px 15px;
  border-radius: 40px;
  background-color: rgba(0, 177, 197, 0.1);
  color: var(--sh-cyan);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.28px;
}

.blog-card-title {
  font-size: 23px;
  font-weight: 600;
  line-height: 32px;
  margin: 16px 0 10px;
}

.blog-card-title a {
  color: var(--sh-heading);
}

.blog-card-title a:hover {
  color: var(--sh-cyan);
}

.blog-card-text {
  font-size: 17px;
  line-height: 28px;
  color: var(--sh-body);
  margin-bottom: 20px;
  flex-grow: 1;
}

.read-more {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 17px;
  font-weight: 700;
  color: var(--sh-green);
}

.read-more img {
  width: 20px;
  height: 20px;
  transition: transform 0.25s ease;
}

.read-more:hover {
  color: #7ea32b;
}

.read-more:hover img {
  transform: translateX(4px);
}

.pagination-sh {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 50px;
}

.pagination-sh a,
.pagination-sh span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 44px;
  padding: 0 10px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.15);
  color: var(--sh-body);
  font-weight: 600;
  transition: all 0.25s ease;
}

.pagination-sh a:hover {
  border-color: var(--sh-cyan);
  color: var(--sh-cyan);
}

.pagination-sh .current {
  background-color: var(--sh-cyan);
  border-color: var(--sh-cyan);
  color: #ffffff;
}

/* Blog detail */
.post-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-top: 22px;
  color: var(--sh-body);
  font-size: 16px;
}

.post-featured {
  border-radius: var(--sh-radius);
  overflow: hidden;
  margin-bottom: 40px;
}

.post-featured img {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
}

.post-content h2 {
  font-size: 32px;
  line-height: 1.3;
  margin: 42px 0 18px;
}

.post-content h3 {
  font-size: 24px;
  line-height: 1.35;
  margin: 34px 0 14px;
}

.post-content p {
  margin-bottom: 22px;
}

.post-content ul,
.post-content ol {
  padding-left: 22px;
  margin-bottom: 25px;
}

.post-content li {
  margin-bottom: 10px;
}

.post-content li::marker {
  color: var(--sh-cyan);
}

.post-content blockquote {
  border-left: 3px solid var(--sh-green);
  border-radius: 0 var(--sh-radius) var(--sh-radius) 0;
  background-color: var(--sh-surface);
  padding: 28px 34px;
  font-size: 21px;
  line-height: 34px;
  color: var(--sh-heading);
  margin: 32px 0;
}

.post-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

/* Sidebar */
.sidebar-widget {
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: var(--sh-radius);
  padding: 30px;
  margin-bottom: 30px;
}

.widget-title {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.44px;
  margin-bottom: 22px;
}

.recent-post {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}

.recent-post:last-child {
  margin-bottom: 0;
}

.recent-post-thumb {
  flex-shrink: 0;
  width: 84px;
  height: 84px;
  border-radius: 14px;
  overflow: hidden;
}

.recent-post-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.recent-post h4 {
  font-size: 17px;
  font-weight: 600;
  line-height: 24px;
  margin: 2px 0 6px;
}

.recent-post h4 a {
  color: var(--sh-heading);
}

.recent-post h4 a:hover {
  color: var(--sh-cyan);
}

.recent-post .date {
  font-size: 14px;
  color: var(--sh-body);
}

.category-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.category-list li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  font-size: 17px;
  color: var(--sh-body);
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
}

.category-list li:last-child a {
  border-bottom: 0;
}

.category-list li a:hover {
  color: var(--sh-cyan);
}

/* --------------------------------------------------------------------------
   24. Forms (contact / quote)
   -------------------------------------------------------------------------- */
.form-card {
  background-color: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--sh-radius);
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.06);
  padding: 45px;
}

.form-sh .form-label {
  font-size: 16px;
  font-weight: 600;
  color: var(--sh-heading);
  margin-bottom: 8px;
}

.form-sh .form-label .req {
  color: #d84343;
}

.form-sh .form-control,
.form-sh .form-select {
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 12px;
  padding: 12px 18px;
  font-size: 16px;
  color: var(--sh-heading);
  background-color: #ffffff;
}

.form-sh .form-control::placeholder {
  color: #9aa1a6;
}

.form-sh .form-control:focus,
.form-sh .form-select:focus {
  border-color: var(--sh-cyan);
  box-shadow: 0 0 0 0.2rem rgba(0, 177, 197, 0.12);
}

.form-sh .invalid-feedback {
  font-size: 14px;
}

.form-sh .btn-sh {
  border: 0;
}

.form-success {
  border-radius: 12px;
}

/* Contact info blocks */
.contact-block {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: var(--sh-radius);
  padding: 26px 28px;
  margin-bottom: 20px;
  transition: box-shadow 0.3s ease;
}

.contact-block:hover {
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
}

.contact-block-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-color: var(--sh-cyan);
}

.contact-block-icon img {
  width: 26px;
  height: 26px;
  filter: brightness(0) invert(1);
}

.contact-block h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 6px;
}

.contact-block p,
.contact-block address {
  font-size: 17px;
  line-height: 28px;
  color: var(--sh-body);
  margin: 0;
  overflow-wrap: anywhere;
}

.contact-block > div {
  min-width: 0;
}

.contact-block a {
  color: var(--sh-body);
}

.contact-block a:hover {
  color: var(--sh-cyan);
}

.contact-hours {
  background-color: var(--sh-surface);
  border: 0;
}

/* --------------------------------------------------------------------------
   25. Career
   -------------------------------------------------------------------------- */
.job-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 25px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: var(--sh-radius);
  padding: 30px 35px;
  margin-bottom: 20px;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.job-card:hover {
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  transform: translateY(-3px);
}

.job-title {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 8px;
}

.job-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 18px;
  font-size: 16px;
  color: var(--sh-body);
}

.job-meta img {
  width: 18px;
  height: 18px;
  margin-right: 6px;
  vertical-align: -3px;
}

.job-type {
  display: inline-block;
  padding: 4px 14px;
  border-radius: 40px;
  background-color: rgba(161, 204, 58, 0.16);
  color: #7ea32b;
  font-size: 14px;
  font-weight: 700;
}

.career-note {
  background-color: var(--sh-surface);
  border-radius: var(--sh-radius);
  padding: 45px;
  text-align: center;
}

/* --------------------------------------------------------------------------
   26. 404 page
   -------------------------------------------------------------------------- */
.error-section {
  padding: 90px 0 110px;
  text-align: center;
}

.error-code {
  font-family: var(--sh-font-display);
  font-size: clamp(120px, 18vw, 200px);
  font-weight: 700;
  line-height: 1;
  color: var(--sh-heading);
}

.error-code .text-accent {
  color: var(--sh-cyan);
}

.error-title {
  font-size: 40px;
  margin: 20px 0 15px;
}

.error-text {
  max-width: 560px;
  margin: 0 auto 35px;
}

/* --------------------------------------------------------------------------
   27. Responsive — inner pages
   -------------------------------------------------------------------------- */
@media (max-width: 991.98px) {
  .hero--compact {
    min-height: 330px;
  }

  .page-section {
    padding: 70px 0;
  }

  .form-card {
    padding: 30px;
  }

  .post-content h2 {
    font-size: 26px;
  }

  .error-section {
    padding: 60px 0 80px;
  }

  .error-title {
    font-size: 30px;
  }
}

@media (max-width: 767.98px) {
  .blog-card-media {
    height: 220px;
  }

  .job-card {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* --------------------------------------------------------------------------
   28. Office cards (Contact page)
   -------------------------------------------------------------------------- */
.office-card {
  position: relative;
  height: 100%;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: var(--sh-radius);
  padding: 32px 28px 28px;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.office-card:hover {
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  transform: translateY(-4px);
}

.office-card .contact-block-icon {
  margin-bottom: 18px;
}

.office-card h3 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 10px;
}

.office-card address {
  font-size: 16px;
  line-height: 26px;
  color: var(--sh-body);
  margin: 0;
  overflow-wrap: anywhere;
}

.office-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  padding: 4px 14px;
  border-radius: 40px;
  background-color: rgba(161, 204, 58, 0.16);
  color: #7ea32b;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.26px;
}

.office-card--head {
  background-color: var(--sh-surface);
  border-color: rgba(0, 177, 197, 0.25);
}

.office-card--head .office-badge {
  background-color: rgba(0, 177, 197, 0.14);
  color: var(--sh-cyan);
}

/* --------------------------------------------------------------------------
   29. Mobile refinements — stats numbers, regions columns, footer
   -------------------------------------------------------------------------- */
@media (max-width: 767.98px) {
  /* "Driving Logistics…" — centre the stat numbers and labels */
  .stats .stat-number,
  .stats .stat-label {
    text-align: center;
  }

  /* "Regions We Serve" — keep the two columns aligned neatly */
  .regions-list li {
    font-size: 17px;
  }

  /* Footer — centre the logo */
  .footer-logo {
    display: block;
    text-align: center;
  }

  /* Footer — drop the leading "|" before Privacy Policy on mobile */
  .footer-bar .sep-privacy {
    display: none;
  }
}
