/* Global styling and background */
html,
body {
  margin: 0;
  padding: 0;
  min-height: 100%;
  background: linear-gradient(135deg, var(--brand-blue) 0%, var(--brand-green) 60%, var(--brand-lime) 100%);

  font-family: 'Poppins', sans-serif;
  color: #f6fbff;
  overflow-x: hidden;
}

/* give breathing room between stacked sections */
section+section {
  margin-top: clamp(4rem, 8vw, 8rem);
}

.section-block {
  position: relative;
  overflow: visible;
}

.lead-copy {
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  line-height: 1.65;
}

.service-copy {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  line-height: 1.75;
  margin-bottom: 0;
}

.service-list {
  padding-left: 0;
  margin: 0;
  display: grid;
  gap: 0.4rem;
  font-size: clamp(0.95rem, 1.6vw, 1.05rem);
}

.service-list li {
  position: relative;
  padding-left: 1.25rem;
}

.service-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #dfffd2;
}

.service-image {
  max-width: clamp(260px, 52vw, 560px);
  width: 100%;
  display: block;
  margin: 0 auto;
}

.ship-secondary {
  margin-left: clamp(0rem, 5vw, 4rem);
}

@media (max-width: 991.98px) {
  .section-block {
    text-align: center;
  }

  .section-block .air-label-wrap,
  .section-block .d-flex.align-items-start {
    justify-content: center;
  }

  .service-list {
    justify-content: center;
  }

  .ship-secondary {
    margin-left: 0;
  }
}

@media (max-width: 575.98px) {

  .lead-copy,
  .service-copy {
    font-size: 1rem;
  }
}

:root {
  --brand-blue: #2A6F96;
  --brand-blue-bright: #2A6F96;
  --brand-green: #8ec751;
  --brand-green-dark: #6eb52a;
  --brand-lime: #b7dd70;
  --brand-cream: #cfe4a2;
  --brand-text-dark: #0b3d65;
  --lg-bg-color: rgba(255, 255, 255, 0.25);
  --lg-highlight: rgba(255, 255, 255, 0.75);
  --lg-text: #ffffff;
  --lg-red: #fb4268;
  --lg-grey: #444739;
}

/* Navbar styles */
.custom-glass-nav {
  background: transparent;
  border: none;
  box-shadow: none !important;
  padding: 0;
  width: auto;
}

/* Navbar defaults from Index (do not force width) */
/* Let Bootstrap flexbox manage available space without overriding width */

@media (max-width: 1199.98px) {
  .custom-glass-nav {
    width: 100%;
    border-radius: 16px !important;
    /* avoid tall pill bubble on tablet/down */
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
  }

  .navbar-nav .nav-link {
    font-size: 0.95rem;
    padding: 0.35rem 0;
  }

  .navbar-toggler {
    padding: 0.25rem 0.5rem;
  }

  .navbar-toggler-icon {
    width: 24px;
    height: 18px;
  }
}

.navbar.navbar-dark .nav-link,
.navbar .nav-link {
  color: #ffffff !important;
  font-weight: 500;
  transition: color 0.3s ease, transform 0.2s ease;
}

.navbar .nav-link:hover {
  color: #ffffff;
  transform: scale(1.05);
}

.navbar .nav-link.active {
  font-weight: 700;
}

.custom-glass-nav .navbar-toggler {
  border-color: rgba(255, 255, 255, 0.4);
}

/* Visible hamburger without relying on navbar-dark */
.custom-glass-nav .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3e%3cpath stroke='rgba(255,255,255,0.95)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Navbar logo */
.navbar-brand img {
  max-height: 50px;
  width: auto;
}

/* Bigger desktop logo (used on home hero) */
@media (min-width: 992px) {
  .navbar-brand--large img {
    max-height: 70px;
    height: 100px;
  }
}


/* Transparent Navbar */
header {
  z-index: 999;
}

.navbar {
  background-color: transparent !important;
  padding-top: 0.5rem;
  /* was 1rem */
  padding-bottom: 0.5rem;
  /* was 1rem */
}

/* Header layout helpers */
header>.container-fluid {
  display: flex;
  align-items: center;
  gap: clamp(0.5rem, 2vw, 1.5rem);
  justify-content: space-between;
  flex-wrap: wrap;
}

header>.container-fluid .navbar {
  margin-left: auto;
  margin-right: 0;
  flex: 1 1 auto;
}

header>.container-fluid .navbar .navbar-collapse {
  justify-content: flex-end !important;
}

@media (max-width: 991.98px) {
  header>.container-fluid {
    flex-direction: column;
    align-items: stretch !important;
    gap: 0.5rem;
  }

  header>.container-fluid .navbar {
    width: 100%;
    margin-left: 0;
  }

  header>.container-fluid .navbar .navbar-collapse {
    justify-content: center !important;
  }
}



/* Global image defaults */
img {
  max-width: 100%;
  height: auto;
}

/* Desktop nav spacing */
@media (max-width: 991.98px) {
  .custom-glass-nav {
    width: 100%;
    border-radius: 16px !important;
    padding-top: 0.25rem;
    /* was 0.5rem */
    padding-bottom: 0.25rem;
    /* was 0.5rem */
  }

  .navbar-nav .nav-link {
    font-size: 0.95rem;
    padding: 0.35rem 0;
  }

  .navbar-toggler {
    padding: 0.25rem 0.5rem;
  }

  .navbar-toggler-icon {
    width: 24px;
    height: 18px;
  }
}

/* Hero section */
.hero-section {
  position: relative;
  min-height: clamp(400px, 60vh, 600px);
  padding: clamp(2.5rem, 5vw, 3.5rem) 0 clamp(2rem, 4vw, 3rem);
  color: #ffffff;
  background: transparent;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.bg-shape-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
  pointer-events: none;
}

.hero-ellipse {
  position: absolute;
  pointer-events: none;
  z-index: 0 !important;
  max-width: none;
}

.hero-ellipse-left {
  width: min(70vw, 760px);
  top: 50%;
  left: clamp(-36rem, -30vw, -22rem);
  transform: translateY(-50%);
}

.hero-ellipse-right {
  width: min(50vw, 600px);
  top: clamp(-6rem, 4vh, 3rem);
  right: clamp(-6rem, -8vw, -2rem);
}

@media (max-width: 991.98px) {

  .hero-ellipse-left,
  .hero-ellipse-right {
    opacity: 0.5;
    width: clamp(320px, 80vw, 520px);
  }
}

@media (max-width: 575.98px) {

  .hero-ellipse-left,
  .hero-ellipse-right {
    display: none;
  }
}


.hero-section .row {
  position: relative;
  z-index: 2;
}

.snap-section,
.section,
.poster-section,
.about-us-section,
.contact-hero,
.contact-brand-section,
.section1 {
  position: relative;
}

.snap-section>.container,
.section>.container,
.poster-section>.container,
.about-us-section>.container,
.contact-hero__content,
.contact-brand__badge,
.section1 .why-choose-glass,
.section1 .stats-glass {
  position: relative;
  z-index: 2;
}

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

.about-section>.container,
.about-section>.container-fluid,
.air-section>.container,
.air-section>.container-fluid,
.sea-section>.container,
.sea-section>.container-fluid,
.trucking-section>.container,
.trucking-section>.container-fluid,
.clearance-section>.container,
.clearance-section>.container-fluid,
.warehouse-section>.container,
.warehouse-section>.container-fluid {
  position: relative;
  z-index: 2;
}

.hero-gradient {
  position: absolute;
  inset: 0;
  /* background: linear-gradient(130deg, rgba(94, 164, 194, 0.92) 0%, rgba(117, 186, 167, 0.9) 45%, rgba(167, 217, 126, 0.9) 100%); */
}

/* Contact page */
.contact-page {
  background: none;
}

.contact-main {
  display: flex;
  flex-direction: column;
  gap: clamp(4rem, 6vw, 5rem);
}

.contact-hero {
  position: relative;
  padding: 0 0 clamp(3rem, 6vw, 4.5rem);
  overflow: hidden;
}

.contact-hero__shapes::before,
.contact-hero__shapes::after {
  content: "";
  position: absolute;
  z-index: 0;
  pointer-events: none;
}

.contact-hero__shapes::before {
  inset: -24% -6% 20% -18%;
  background: none;
  transform: rotate(-6deg);
}

.contact-hero__shapes::after {
  inset: 18% -20% -28% 32%;
  background: none;
  transform: rotate(12deg);
}

.contact-hero__content {
  position: relative;
  z-index: 1;
}

.contact-heading {
  font-size: clamp(2.4rem, 5vw, 3.4rem);
  letter-spacing: 0.14em;
  line-height: 1;
  margin-top: 0;
  color: #ffffff;
}

.contact-cards {
  display: grid;
  gap: 0.85rem;
}

.contact-card {
  display: grid;
  grid-template-columns: 72px 1fr;
  align-items: flex-start;
  gap: 1.5rem;
  padding: clamp(2rem, 4vw, 2.6rem);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.35);
  box-shadow: 0 18px 42px rgba(8, 54, 66, 0.25);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.contact-card__icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background: rgba(142, 199, 81, 0.85);
  color: #ffffff;
  font-size: 2rem;
  box-shadow: 0 12px 20px rgba(8, 60, 72, 0.28);
}

.contact-card__title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1.75rem;
  color: var(--brand-blue);
  text-transform: capitalize;
}

.contact-card__text {
  font-size: 0.95rem;
  color: rgba(11, 56, 72, 0.9);
  margin-bottom: 0.4rem;
}

.contact-form-card {
  padding: clamp(2rem, 4vw, 2.6rem);
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.35);
  box-shadow: 0 22px 48px rgba(9, 46, 72, 0.28);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.contact-form-card__title {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 600;
  color: var(--brand-blue);
  margin-bottom: 1.75rem;
}

.contact-form .form-label {
  font-weight: 500;
  color: rgba(8, 52, 72, 0.85);
}

.contact-form .form-control,
.contact-form .form-select {
  border-radius: 18px;
  border: 1px solid rgba(9, 76, 115, 0.22);
  background: rgba(255, 255, 255, 0.6);
  box-shadow: inset 0 2px 6px rgba(10, 48, 72, 0.12);
  color: rgba(9, 56, 74, 0.9);
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
  border-color: rgba(11, 61, 101, 0.55);
  box-shadow: 0 0 0 0.2rem rgba(11, 61, 101, 0.18);
}

.contact-btn {
  min-width: 140px;
  border-radius: 999px;
  padding: 0.65rem 1.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.contact-btn--primary {
  background: linear-gradient(135deg, var(--brand-green), var(--brand-green-dark));
  color: #f6fbff;
  border: none;
  box-shadow: 0 16px 28px rgba(11, 61, 101, 0.28);
}

.contact-btn--ghost {
  background: none;
  border: 2px solid rgba(11, 61, 101, 0.35);
  color: rgba(11, 61, 101, 0.85);
}

.contact-btn--primary:hover {
  color: #ffffff;
}

.contact-btn--ghost:hover {
  color: var(--brand-blue);
  border-color: rgba(11, 61, 101, 0.6);
}

.contact-map-section {
  position: relative;
  padding: clamp(4rem, 6vw, 5rem) 0;
}

.contact-map-wrapper {
  position: relative;
  width: min(940px, 92vw);
  margin: 0 auto;
  border-radius: clamp(30px, 5vw, 48px);
  overflow: hidden;
  box-shadow: 0 26px 52px rgba(9, 46, 72, 0.32);
}

.contact-map {
  width: 100%;
  height: clamp(320px, 55vw, 480px);
  border: 0;
}

.contact-brand-section {
  position: relative;
  padding: clamp(5rem, 7vw, 6rem) 0 clamp(4rem, 6vw, 5rem);
}

.contact-brand__badge {
  width: min(620px, 88vw);
  margin: 0 auto;
  padding: clamp(2rem, 4vw, 3rem);
  border-radius: clamp(32px, 5vw, 48px);
  background: none;
  box-shadow: 0 20px 36px rgba(9, 48, 74, 0.28);
}

.contact-brand__logo {
  width: clamp(120px, 18vw, 180px);
  height: auto;
  margin-bottom: 1rem;
}

.contact-brand__name {
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  font-weight: 600;
  color: var(--brand-blue);
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

@media (max-width: 991.98px) {
  .contact-main {
    gap: clamp(3rem, 8vw, 4.5rem);
  }

  .contact-hero {
    padding: clamp(4rem, 9vw, 5rem) 0 clamp(3rem, 8vw, 4.2rem);
  }

  .contact-cards {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .contact-card {
    grid-template-columns: 1fr;
    text-align: center;
    padding: clamp(1.25rem, 4vw, 1.75rem);
  }

  .contact-card__icon {
    margin: 0 auto 0.8rem;
  }

  .contact-form-card {
    padding: clamp(1.8rem, 5vw, 2.2rem);
    border-radius: 28px;
  }

  .contact-brand__badge {
    padding: clamp(2rem, 7vw, 2.6rem);
  }

  .contact-brand__logo {
    width: clamp(160px, 32vw, 220px);
  }
}

@media (min-width: 992px) {
  .contact-form-wrapper {
    padding-top: 160px;
  }
}

@media (max-width: 575.98px) {
  .contact-heading {
    font-size: clamp(2rem, 8vw, 2.4rem);
  }

  .contact-card__icon {
    width: 60px;
    height: 60px;
    font-size: 1.6rem;
  }

  .contact-form-card {
    padding: 1.6rem;
    border-radius: 24px;
  }

  .contact-form .form-control,
  .contact-form .form-select {
    padding: 0.65rem 0.9rem;
  }
}

.hero-layout {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 3vw, 2rem);
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 560px;
  margin-right: auto;
}

.hero-title {
  font-size: clamp(1.25rem, 3vw, 3.1rem);
  line-height: 1.1;
  letter-spacing: 0.04em;
  font-weight: 600;
}

.hero-lead {
  font-size: 0.875rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.88);
}

.small-text-block p {
  font-size: 0.75rem;
  line-height: 1.3;
  font-family: 'Poppins', sans-serif;
}

.hero-lower-content {
  position: relative;
  z-index: 2;
  margin-top: clamp(1rem, 3vw, 2.75rem);
}


.hero-art {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  padding: clamp(1.8rem, 3vw, 3rem);
  margin-left: auto;
  margin-right: clamp(-10rem, -14vw, -5rem);
  border-radius: clamp(200px, 32vw, 260px);
  background: transparent;
  z-index: 2;
}

@media (max-width: 991.98px) {
  .hero-art {
    margin-left: 0;
    margin-right: 0;
  }
}

.hero-ribbon {
  margin-top: clamp(1rem, 0vw, 0.1rem);
  display: flex;
  justify-content: flex-start;
}

/* CTA hover/focus animation */
.hero-cta {
  position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 16px 32px rgba(0, 128, 0, 0.35);
}

.hero-cta::after {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.25), transparent 60%);
  opacity: 0;
  transition: opacity 0.25s ease;
  pointer-events: none;
}

.hero-cta:hover,
.hero-cta:focus-visible {
  transform: translateY(-1px) scale(1.03);
  box-shadow: 0 18px 36px rgba(0, 128, 0, 0.45);
}

.hero-cta:hover::after,
.hero-cta:focus-visible::after {
  opacity: 1;
}

.hero-ribbon-card {
  display: inline-flex;
  flex-direction: column;
  gap: 0.4rem;
  padding: clamp(1.5rem, 3vw, 2.2rem) clamp(2.2rem, 5vw, 3.4rem);
  background: rgba(206, 236, 154, 0.127);
  color: var(--brand-blue-bright);
  border-radius: clamp(46px, 6vw, 60px);
  box-shadow: 0 26px 48px rgba(9, 41, 72, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.68);
}

.hero-ribbon-eyebrow {
  font-size: clamp(1.1rem, 2.5vw, 1.6rem);
  font-weight: 500;
  color: white;
}

.hero-ribbon-title {
  font-size: clamp(1.4rem, 3vw, 2.8rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #ffffff;
  white-space: nowrap;
  /* keep the company name on a single line */
}

@media (max-width: 1000.98px) {
  .hero-copy {
    margin: 0 auto;
    text-align: center;
  }

  .hero-section {
    padding-top: clamp(6rem, 16vw, 8.5rem);
    padding-bottom: clamp(3rem, 10vw, 5.5rem);
  }

  .hero-ribbon {
    margin-top: clamp(2.8rem, 8vw, 3.5rem);
    justify-content: center;
  }

  .hero-ribbon-card {
    border-radius: 40px;
    text-align: center;
  }

}

@media (max-width: 575.98px) {
  .hero-title {
    letter-spacing: 0.08em;
  }
}

@media (max-width: 767.98px) {
  .hero-section {
    text-align: center;
    min-height: auto;
    padding: clamp(3rem, 9vw, 4.5rem) 0 clamp(2.5rem, 8vw, 3.5rem);
  }

  .hero-copy {
    margin-left: auto;
    margin-right: auto;
  }

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

  .poster-section .row {
    text-align: center;
  }

  .poster-section .row [class*="col"] {
    text-align: center;
  }

  .poster-section .row img {
    margin-left: auto;
    margin-right: auto;
  }

  .poster-section ul {
    margin-left: auto;
    margin-right: auto;
    text-align: left;
  }
}

/* Index layout */
.footer-section {
  position: relative;
  width: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  background: transparent;
  z-index: 1;
}

.footer-gradient {
  position: absolute;
  inset: 0;
  background: radial-gradient(60% 80% at 20% 110%, rgba(4, 56, 95, 0.26), transparent 70%);
  z-index: 0;
  pointer-events: none;
}

/* If .footer-card must be full-bleed even inside wrappers, use this: */
.footer-card {
  position: relative;
  z-index: 2;
  width: 100%;
  margin: 0;
  border-radius: 36px 36px 0 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(1.5rem, 4vw, 3rem);
  padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1rem, 3vw, 2rem);
  background: var(--brand-cream);
  box-shadow: 0 -18px 36px rgba(9, 52, 78, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.45);
}

.footer-section .container-fluid {
  padding-left: 0;
  padding-right: 0;
}

.footer-card__logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.6rem;
  text-align: left;
}

.footer-card__logo img {
  width: clamp(90px, 8vw, 120px);
  height: auto;
}

.footer-card__logo p {
  margin: 0;
  font-size: clamp(0.95rem, 1.6vw, 1.1rem);
  letter-spacing: 0.12em;
  font-weight: 600;
  color: var(--brand-blue-bright);
}

.footer-card__nav {
  display: flex;
  flex: 1 1 auto;
  gap: clamp(1.5rem, 5vw, 4rem);
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--brand-text-dark);
  flex-wrap: wrap;
  justify-content: center;
}

.footer-card__nav a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-card__nav a:hover {
  color: var(--brand-blue);
}

.footer-card__social {
  display: flex;
  justify-content: flex-end;
  flex: 0 0 auto;
  gap: clamp(1.1rem, 3vw, 1.8rem);
}

.footer-card__social a {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background: var(--brand-blue);
  color: #f1fbff;
  font-size: 1.25rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.footer-card__social a:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 22px rgba(0, 42, 70, 0.35);
}

.footer-visual {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(1.25rem, 4vw, 2rem);
  text-align: center;
  color: var(--brand-text-dark);
  letter-spacing: 0.12em;
}

.footer-visual__logo {
  width: clamp(180px, 16vw, 240px);
  height: auto;
  filter: drop-shadow(0 18px 32px rgba(9, 52, 78, 0.2));
}

.footer-visual__name {
  margin: 0;
  font-size: clamp(1.1rem, 2.4vw, 1.6rem);
  font-weight: 700;
  text-transform: uppercase;
}

.footer-shape {
  position: absolute;
  pointer-events: none;
  z-index: 0;
}

.footer-shape--left {
  left: clamp(-16rem, -14vw, -8rem);
  bottom: clamp(-8rem, -10vw, -4rem);
  width: clamp(360px, 52vw, 620px);
  height: auto;
}

.footer-shape--right {
  right: clamp(-14rem, -12vw, -6rem);
  top: clamp(-6rem, -8vw, -2rem);
  width: clamp(320px, 48vw, 560px);
  height: auto;
}

@media (max-width: 991.98px) {
  .footer-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.75rem;
    border-radius: 32px 32px 0 0;
  }

  .footer-card__logo {
    align-items: center;
    text-align: center;
  }

  .footer-card__nav {
    gap: 1.75rem;
  }

  .footer-card__social {
    justify-content: center;
  }
}

@media (max-width: 575.98px) {
  .footer-section {
    padding: clamp(0.5rem, 2vw, 1rem) clamp(0.5rem, 3vw, 1rem) clamp(0.5rem, 2vw, 1rem);
  }

  .footer-card {
    border-radius: 28px 28px 0 0;
    padding: 0.75rem;
  }

  .footer-card__nav {
    gap: 1.2rem;
  }

  .footer-card__nav a {
    font-size: 0.95rem;
  }

  .footer-card__social a {
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
  }

  .footer-visual__logo {
    width: clamp(150px, 36vw, 200px);
  }

  .footer-visual__name {
    font-size: clamp(1rem, 4.4vw, 1.3rem);
  }
}

/* Glass navigation inspired layout */


.glass-nav-list {
  position: relative;
  list-style: none;
  margin: 0;
  padding: 0.3rem 0.45rem;
  display: flex;
  flex-direction: row;
  gap: 0.65rem;
  width: 100%;
  border-radius: 999px;
  /* background: rgba(8, 17, 26, 0.25); */
  border: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.15),
    inset 0 20px 35px rgba(0, 0, 0, 0.18);
  --bubble-left: 0px;
  --bubble-width: 0px;
  --bubble-opacity: 0;
  z-index: 2;
}

.glass-nav-list::after {
  content: none;
}

.glass-nav-list::before {
  content: "";
  position: absolute;
  top: 50%;
  left: var(--bubble-left);
  width: var(--bubble-width);
  height: calc(100% - 0.9rem);
  transform: translateY(-50%);
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.86), rgba(216, 236, 255, 0.52));
  border: 1px solid rgba(255, 255, 255, 0.68);
  box-shadow:
    inset 0 1px 3px rgba(255, 255, 255, 0.6),
    0 8px 18px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(12px) saturate(160%);
  -webkit-backdrop-filter: blur(12px) saturate(160%);
  opacity: var(--bubble-opacity);
  transition: left 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    width 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.38s ease;
  pointer-events: none;
  z-index: 1;
}

.glass-nav-list .nav-link {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  text-decoration: none;
  color: var(--lg-text) !important;
  font-weight: 500;
  letter-spacing: 0.045em;
  text-transform: uppercase;
  font-size: 0.8rem;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.24);
  transition: color 0.28s ease, transform 0.28s ease, letter-spacing 0.28s ease, background 0.28s ease;
}

.glass-nav-list .nav-link .nav-label {
  font-size: inherit;
  letter-spacing: inherit;
}

.glass-nav-list .nav-link:hover,
.glass-nav-list .nav-link:focus-visible {
  color: var(--lg-grey) !important;
  transform: translateY(-1px);
  letter-spacing: 0.06em;
  background: rgba(255, 255, 255, 0.5);
}

.glass-nav-list .nav-link.active {
  color: var(--lg-red) !important;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-shadow: none;
  background: rgba(255, 255, 255, 0.6);
}

@media (min-width: 992px) {
  .custom-glass-nav {
    padding: 1rem;
    border-radius: 999px;
    background: transparent;
    border: none;
    box-shadow: none !important;
  }

  .glass-nav-shell {
    margin-left: auto !important;
    margin-right: 0 !important;
    width: auto;
    padding: 0.4rem 0.55rem;
  }

  .glass-nav-list {
    gap: 0.65rem;
    padding: 0.35rem 0.5rem;
  }

  .glass-nav-list .nav-link {
    padding: 0.6rem 0.9rem;
    min-width: auto;
  }
}

@media (max-width: 991.98px) {
  .custom-glass-nav .navbar-collapse {
    width: 100%;
    background: rgba(4, 18, 28, 0.35);
    border-radius: 1.75rem;
    padding: 0.5rem 0.75rem;
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.24);
  }

  .glass-nav-shell {
    width: 100%;
    margin-inline: 0;
    padding: 0.35rem 0;
    border-radius: 2rem;
  }

  .glass-nav-list {
    flex-direction: column;
    align-items: stretch;
    gap: 0.5rem;
    padding: 0;
    border: none;
    background: transparent;
    box-shadow: none;
  }

  .glass-nav-list::before {
    display: none;
  }

  .glass-nav-list::after {
    display: none;
  }

  .glass-nav-list .nav-link {
    width: 100%;
    justify-content: flex-start;
    padding: 0.6rem 0.9rem;
    background: transparent;
    border-radius: 0;
    letter-spacing: 0.04em;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
    box-shadow: none;
  }

  .glass-nav-list .nav-link.active {
    background: rgba(255, 255, 255, 0.25);
    color: #ffffff !important;
    font-weight: 700;
    text-shadow: none;
  }
}


/* Delay modifiers (unified) */
.delay-1 {
  animation-delay: 0.2s;
}

.delay-2 {
  animation-delay: 0.4s;
}

.delay-3 {
  animation-delay: 0.6s;
}

.delay-4 {
  animation-delay: 0.8s;
}

.delay-5 {
  animation-delay: 1s;
}

.delay-6 {
  animation-delay: 1.2s;
}

.delay-7 {
  animation-delay: 1.4s;
}



/* Responsive typography for service titles */
/* Improve readability of lead text */
p.lead {
  font-size: clamp(1rem, 2.8vw, 1.25rem);
}

/* Inline stats (mobile under About text) */
.stats-inline .stat-number {
  font-size: 1.25rem;
  font-weight: 700;
}

.stats-inline .stat-label {
  font-size: 0.9rem;
  opacity: 0.9;
}

.about-stats-wrapper {
  position: relative;
  padding: clamp(1.2rem, 3vw, 1.8rem);
  border-radius: clamp(22px, 4vw, 32px);
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 3vw, 1.5rem);
}

.about-stats-wrapper .about-stats-bg {
  position: absolute;
  top: 50%;
  left: 70%;
  width: 140%;
  /* reduced for a tighter halo */
  max-width: none;
  height: auto;
  transform: translate(20%, -40%);
  /* nudged up by 10% after horizontal shift */
  pointer-events: none;
  z-index: 1;
  filter: drop-shadow(0 20px 35px rgba(9, 52, 78, 0.28));
}

.about-stats-wrapper .stats-inline,
.about-stats-wrapper .about-stat {
  position: relative;
  z-index: 2;
  margin-bottom: 0 !important;
}

.about-stats-wrapper .stats-inline {
  gap: clamp(1rem, 6vw, 2rem);
}

.about-stats-wrapper--mobile {
  margin: clamp(1.5rem, 5vw, 2.5rem) auto 0;
  width: min(100%, 480px);
}

.about-stats-wrapper--desktop {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-end;
  margin-left: auto;
  min-width: clamp(240px, 26vw, 320px);
}

@media (max-width: 991.98px) {
  .about-stats-wrapper {
    align-items: center;
  }

  .about-stats-wrapper .about-stats-bg {
    width: 190%;
  }

  .about-stats-wrapper .stats-inline {
    justify-content: center;
  }
}

@media (max-width: 575.98px) {
  .about-stats-wrapper {
    padding: 1.25rem;
  }

  .about-stats-wrapper .about-stats-bg {
    width: 220%;
  }
}

/* Scroll Fade Animation */
@keyframes scrollFadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.scroll-fade {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  will-change: opacity, transform;
}

.scroll-fade.show {
  animation: scrollFadeUp 1s ease forwards;
}





/* Product title overlay - mobile adjustments */
@media (max-width: 576px) {
  .title-focus {
    font-size: 0.9rem !important;
    padding: 0.4rem 0.75rem !important;
    top: auto !important;
    bottom: 0.75rem !important;
    right: 0.75rem !important;
    left: auto !important;
    transform: none !important;
    position: static !important;
    display: inline-flex !important;
    margin: 1rem auto 0 !important;
  }
}

@media (max-width: 991.98px) {
  .title-focus {
    position: static !important;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    margin: 1rem auto 0 !important;
    transform: none !important;
    left: auto !important;
    right: auto !important;
    top: auto !important;
    bottom: auto !important;
    text-align: center;
  }

  .product-image {
    max-height: 280px !important;
  }
}

/* Common Section Styling */
.about-section,
.air-section,
.sea-section,
.trucking-section,
.clearance-section,
.warehouse-section {
  padding: clamp(4rem, 7vw, 6rem) 0;
}

.poster-section {
  margin-top: 0;
}

.poster-container {
  position: relative;
  z-index: 2;
  padding: 0 clamp(1.75rem, 6vw, 3.5rem);
  max-width: 1100px;
}

/* Poster layout sections */
.air-section,
.sea-section,
.trucking-section,
.clearance-section,
.warehouse-section {
  position: relative;
  color: #ffffff;
  overflow: hidden;
}

.about-section {
  position: relative;
  overflow: hidden;
  color: #ffffff;
}

.air-copy {
  max-width: 640px;
  font-size: clamp(1.05rem, 2.4vw, 1.18rem);
  line-height: 1.9;
  letter-spacing: 0.04em;
  text-transform: none;
  text-shadow: 0 6px 14px rgba(6, 32, 52, 0.35);
}

.air-list {
  list-style: none;
  margin: 0.4rem 0 0;
  padding: 0;
  font-size: 1rem;
  letter-spacing: 0.01em;
  text-transform: none;
  text-shadow: 0 4px 8px rgba(6, 32, 52, 0.25);
}

.air-list li {
  margin-bottom: 0.1rem;
  display: block;
}

.air-list li::before {
  content: "•";
  font-size: 1.5em;
  color: rgba(255, 255, 255, 0.92);
  text-shadow: 0 4px 12px rgba(8, 43, 70, 0.45);
}

.air-label-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
  z-index: 2;
}

.air-label {
  position: relative;
  width: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.55rem, 1.8vw, 0.9rem);
  border-radius: 999px;
  background: linear-gradient(102deg, rgba(182, 222, 109, 0.9) 0%, rgba(147, 209, 98, 0.9) 100%);
  color: rgba(13, 30, 52, 0.92);
  font-weight: 700;
  letter-spacing: 0.35rem;
  font-size: clamp(1.1rem, 2.4vw, 1.45rem);
  text-shadow: 0 6px 12px rgba(8, 35, 60, 0.32);
  box-shadow: 0 22px 45px rgba(24, 74, 31, 0.3);
  padding-left: clamp(2.2rem, 5vw, 3.6rem);
  padding-right: clamp(2.2rem, 5vw, 3.6rem);
  text-transform: uppercase;
}

/* .air-label::after {
  content: "";
  position: absolute;
  left: clamp(-2.5rem, -6vw, -1.5rem);
  top: 50%;
  transform: translateY(-50%);
  width: clamp(90px, 18vw, 160px);
  height: clamp(36px, 9vw, 72px);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.22);
  filter: blur(0.5px);
  z-index: -1;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.18);
} */

.air-plane {
  max-width: clamp(340px, 46vw, 540px);
  width: 100%;
  height: auto;
  filter: drop-shadow(0 32px 65px rgba(9, 52, 78, 0.35));
  margin: 0 auto;
}

.air-plane--flipped {
  transform: scaleX(-1);
  transform-origin: center center;
}



.sea-copy {
  max-width: 620px;
}

.sea-list {
  list-style: none;
  margin-top: clamp(1.4rem, 4vw, 2rem);
  margin-bottom: 0;
  padding-left: 0;
  margin-left: 10rem;
  /* move list to the right */
}

.sea-list li::before {
  content: "•";
}

.sea-ship {
  position: relative;
  z-index: 2;
  max-width: clamp(360px, 52vw, 560px);
  width: 100%;
  height: auto;
  filter: drop-shadow(0 30px 60px rgba(6, 31, 67, 0.35));
  margin-top: clamp(1.8rem, 4vw, 2.8rem);
  margin-left: -26rem;
  margin-right: auto;
}



.trucking-copy {
  font-size: clamp(1.05rem, 2.3vw, 1.2rem);
  line-height: 1.9;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-shadow: 0 6px 14px rgba(6, 32, 52, 0.35);
  max-width: 540px;
}

.trucking-art {
  position: relative;
  z-index: 2;
  max-width: clamp(420px, 56vw, 660px);
  filter: drop-shadow(0 32px 65px rgba(9, 52, 78, 0.35));
  margin: clamp(1.5rem, 5vw, 2.4rem) auto 0;
}

.clearance-copy {
  font-size: clamp(1.05rem, 2.3vw, 1.2rem);
  line-height: 1.9;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-shadow: 0 6px 14px rgba(6, 32, 52, 0.35);
  max-width: 580px;
  margin: 0;
}

.clearance-art {
  max-width: clamp(260px, 42vw, 360px);
  filter: drop-shadow(0 26px 58px rgba(9, 52, 78, 0.35));
  margin-top: clamp(1.5rem, 5vw, 2.3rem);
}

.warehouse-copy {
  font-size: clamp(1.05rem, 2.3vw, 1.2rem);
  line-height: 1.9;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-shadow: 0 6px 14px rgba(6, 32, 52, 0.35);
  max-width: 520px;
}

.warehouse-art {
  max-width: clamp(360px, 50vw, 580px);
  filter: drop-shadow(0 28px 60px rgba(9, 52, 78, 0.32));
  margin: clamp(1.5rem, 5vw, 2.4rem) auto 0;
}

@media (max-width: 992px) {

  .air-copy,
  .sea-copy,
  .trucking-copy,
  .clearance-copy,
  .warehouse-copy {
    margin: 0 auto;
    text-align: center;
  }

  .air-plane,
  .sea-ship,
  .trucking-art,
  .clearance-art,
  .warehouse-art {
    margin: clamp(2rem, 9vw, 3.2rem) auto 0;
  }
}

/* Section Colors */

.section6 {
  min-height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-section.section6 {
  justify-content: flex-start;
}

:root {
  --sticky-offset: 64px;
}

[id] {
  scroll-margin-top: var(--sticky-offset);
}

/* Decorative rectangle in About section */
#about {
  position: relative;
  overflow: hidden;
}

#about .poster-container {
  position: relative;
  z-index: 2;
}

.about-rect {
  position: absolute;
  right: -10vw;
  top: 68%;
  transform: translateY(-20%);
  width: clamp(520px, 50vw, 920px);
  max-width: 940px;
  height: auto;
  z-index: 1;
  pointer-events: none;
}

@media (max-width: 991.98px) {
  .about-rect {
    display: none;
  }

  /* hide on mobile */
}

/* Decorative shape in Air section */
#air {
  position: relative;
}

#air {
  position: relative;
}

.air-rect {
  position: absolute;
  left: clamp(-14rem, -12vw, -6rem);
  top: 50%;
  transform: translateY(-55%);
  width: clamp(260px, 34vw, 420px);
  z-index: -1;
  opacity: 0.95;
  pointer-events: none;
}

.air-rect>img {
  width: 100%;
  height: auto;
  display: block;
}

.air-rect__list-wrapper {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  text-align: left;
}

.air-rect__list-wrapper .air-list {
  width: 100%;
  margin: 0;
  justify-items: flex-start;
}

@media (max-width: 991.98px) {
  .air-rect {
    left: clamp(-10rem, -8vw, -4rem);
    width: clamp(220px, 60vw, 320px);
    transform: translateY(-50%);
  }

  .air-rect__list-wrapper {
    padding: 1.25rem;
  }

  .air-rect__list-wrapper .air-list {
    font-size: 0.9rem;
  }
}

/* Decorative shapes in Sea & Trucking sections */
#sea {
  position: relative;
}

.sea-ellipse,
.shape-ellipse-right {
  position: absolute;
  right: clamp(-16rem, -6vw, -10rem);
  top: 60%;
  transform: translateY(-50%);
  width: clamp(340px, 50vw, 640px);
  height: auto;
  z-index: 0;
  pointer-events: none;
}

#trucking {
  position: relative;
}

.truck-polygon,
.shape-poly-left {
  position: absolute;
  left: clamp(-12rem, -10vw, -5rem);
  top: 60%;
  transform: translateY(-50%);
  width: clamp(340px, 52vw, 580px);
  height: auto;
  z-index: 0;
  pointer-events: none;
}

#clearance {
  position: relative;
}

.clearance-star,
.shape-star-left {
  position: absolute;
  left: clamp(-14rem, -10vw, -6rem);
  bottom: clamp(-6rem, -10vw, -3rem);
  width: clamp(360px, 58vw, 640px);
  height: auto;
  z-index: 0;
  pointer-events: none;
}

#warehouse {
  position: relative;
}

.warehouse-star,
.shape-star-right {
  position: absolute;
  right: clamp(-14rem, -12vw, -6rem);
  top: clamp(-10rem, -12vw, -4rem);
  width: clamp(320px, 54vw, 620px);
  height: auto;
  z-index: 0;
  pointer-events: none;
}

.shape-poly-right {
  position: absolute;
  right: clamp(-16rem, -12vw, -8rem);
  bottom: clamp(-6rem, -10vw, -3rem);
  width: clamp(340px, 50vw, 580px);
  height: auto;
  pointer-events: none;
  z-index: 0;
}

/* Subpage shape adjustments */
.shape-subpage.shape-rect-left {
  left: clamp(-20rem, -16vw, -9rem);
  width: clamp(220px, 40vw, 360px);
  opacity: 0.85;
}

.shape-subpage.shape-ellipse-right {
  right: clamp(-20rem, -16vw, -9rem);
  width: clamp(240px, 42vw, 480px);
  opacity: 0.85;
}

.shape-subpage.shape-poly-left {
  left: clamp(-20rem, -16vw, -12rem);
  width: clamp(260px, 44vw, 520px);
  opacity: 0.82;
}

.shape-subpage.shape-star-right {
  right: clamp(-20rem, -16vw, -9rem);
  width: clamp(260px, 46vw, 520px);
  opacity: 0.78;
}

.shape-subpage.shape-star-left {
  left: clamp(-20rem, -16vw, -9rem);
  width: clamp(280px, 48vw, 540px);
  opacity: 0.8;
}

.shape-subpage.shape-poly-right {
  right: clamp(-20rem, -16vw, -9rem);
  width: clamp(280px, 46vw, 540px);
  opacity: 0.82;
}

/* Responsive spacing for footer visual */
.footer-visual-spacing {
  margin-bottom: 3rem;
}

@media (min-width: 992px) {
  .footer-visual-spacing {
    margin-bottom: 8rem;
  }
}

/* Glass highlight box */
.highlight-box {
  background: rgba(142, 199, 81, 0.85);
  /* Green glass tint */
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 30px;
  padding: 2rem;
  box-shadow: 0 18px 42px rgba(8, 54, 66, 0.25);
  color: #fff;
  /* Ensure text is readable */
}

.highlight-box p {
  color: #0b3d65;
  /* Dark text for contrast inside the box, similar to logo text */
}

/* Specific text color for the company name if needed */
.highlight-box .fw-bold {
  color: #0b3d65;
}