/* 
 * Haris Mahmood (Pvt) Ltd. — Premium Corporate Stylesheet v2.0
 * Brand Colors:
 *   Deep Navy   #124F86
 *   Dark Blue   #0D4275
 *   Royal Blue  #246FB5
 *   Light Blue  #4B8DCA
 *   Ice Blue    #F3F7FA
 *   White       #FFFFFF
 *   Charcoal    #171717
 *   Light Gray  #E7ECF1
 */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Poppins:wght@400;500;600;700;800;900&display=swap');

/* ─── CSS Custom Properties ─────────────────────────────────────── */
:root {
  --navy: #124F86;
  --dark-blue: #0D4275;
  --royal: #246FB5;
  --light-blue: #4B8DCA;
  --ice: #F3F7FA;
  --charcoal: #171717;
  --gray: #E7ECF1;
  --white: #FFFFFF;
  --text-body: #4a5568;
  --ease: cubic-bezier(0.165, 0.84, 0.44, 1);
  --trans: all 0.4s var(--ease);
  --shadow-sm: 0 4px 15px rgba(13, 66, 117, 0.08);
  --shadow-md: 0 10px 35px rgba(13, 66, 117, 0.12);
  --shadow-lg: 0 20px 60px rgba(13, 66, 117, 0.18);
  --radius: 10px;
}

/* ─── Base Reset ─────────────────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden; /* prevent right-side white space on mobile */
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--text-body);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.75;
  font-size: 15.5px;
  max-width: 100vw; /* ensure body never exceeds viewport */
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Poppins', sans-serif;
  color: var(--dark-blue);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.4px;
}

a {
  text-decoration: none;
  transition: var(--trans);
}

img {
  display: block;
  max-width: 100%;
}

/* ─── Utility Classes ───────────────────────────────────────────── */
.text-navy {
  color: var(--navy) !important;
}

.text-royal {
  color: var(--royal) !important;
}

.text-light-blue {
  color: var(--light-blue) !important;
}

.bg-navy {
  background-color: var(--navy) !important;
}

.bg-dark-blue {
  background-color: var(--dark-blue) !important;
}

.bg-royal {
  background-color: var(--royal) !important;
}

.bg-ice {
  background-color: var(--ice) !important;
}

.max-w-700 {
  max-width: 700px;
}

.section-label {
  display: inline-block;
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--royal);
  background: rgba(36, 111, 181, 0.08);
  padding: 6px 16px;
  border-radius: 30px;
  margin-bottom: 16px;
}

.highlight-blue {
  background: linear-gradient(120deg, var(--royal) 0%, var(--light-blue) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 800;
}

/* ─── Animations ─────────────────────────────────────────────────── */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

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

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }

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

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@keyframes pulse-ring {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(36, 111, 181, .6);
  }

  70% {
    transform: scale(1.1);
    box-shadow: 0 0 0 12px rgba(36, 111, 181, 0);
  }

  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(36, 111, 181, 0);
  }
}

@keyframes shimmer {
  0% {
    background-position: -200% center;
  }

  100% {
    background-position: 200% center;
  }
}

@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

@keyframes counterUp {
  from {
    opacity: 0;
    transform: scale(0.7);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

.animate-fade-in {
  animation: fadeInUp 0.8s var(--ease) both;
}

.animate-fade-in-2 {
  animation: fadeInUp 0.8s 0.2s var(--ease) both;
}

.animate-fade-in-3 {
  animation: fadeInUp 0.8s 0.4s var(--ease) both;
}

.animate-slide-left {
  animation: fadeInLeft 0.8s var(--ease) both;
}

.animate-float {
  animation: float 4s ease-in-out infinite;
}

/* scroll-reveal (JS adds .is-visible) */
.reveal {
  opacity: 0;
  transform: translateY(35px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}

.reveal-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.92);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}

.reveal-fade {
  opacity: 0;
  transition: opacity .8s var(--ease);
}

.reveal.is-visible,
.reveal-left.is-visible,
.reveal-right.is-visible,
.reveal-scale.is-visible,
.reveal-fade.is-visible {
  opacity: 1;
  transform: none;
}

/* ─── Navbar ─────────────────────────────────────────────────────── */
.navbar-custom {
  padding: 20px 0;
  background: transparent;
  transition: var(--trans);
  z-index: 1050;
}

.navbar-custom.navbar-sticky {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 4px 30px rgba(13, 66, 117, 0.10);
  padding: 10px 0;
}

/* On mobile, make sticky navbar fully solid — no blur artifacts */
@media (max-width: 991px) {
  .navbar-custom.navbar-sticky {
    background: #ffffff !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }
  /* Non-sticky (transparent) navbar on mobile — dark gradient so text is readable */
  .navbar-custom:not(.navbar-sticky) {
    background: linear-gradient(180deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.15) 100%) !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }
  /* Non-sticky: brand text stays white */
  .navbar-custom:not(.navbar-sticky) .navbar-brand {
    color: #fff !important;
  }
  /* Non-sticky: toggler icon visible on dark bg — white lines */
  .navbar-custom:not(.navbar-sticky) .navbar-toggler {
    border-color: rgba(255,255,255,0.5) !important;
  }
  .navbar-custom:not(.navbar-sticky) .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255%2C255%2C255%2C0.95%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
    filter: none !important;
  }
  /* Sticky: brand text switches to dark blue */
  .navbar-custom.navbar-sticky .navbar-brand {
    color: var(--dark-blue) !important;
  }
  /* Sticky: toggler uses dark blue lines */
  .navbar-custom.navbar-sticky .navbar-toggler {
    border-color: rgba(13, 66, 117, 0.3) !important;
  }
  .navbar-custom.navbar-sticky .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2813%2C66%2C117%2C0.95%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
    filter: none !important;
  }
}

.navbar-custom .navbar-brand {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 21px;
  color: #fff !important;
  letter-spacing: -0.4px;
  white-space: nowrap;
  transition: var(--trans);
}

.navbar-logo-bg {
  background: #ffffff;
  padding: 4px;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25), 0 2px 4px rgba(0, 0, 0, 0.12);
  transition: var(--trans);
  overflow: hidden;
}

.navbar-logo {
  height: 85%;
  width: 85%;
  object-fit: contain;
  transition: var(--trans);
}

.navbar-custom.navbar-sticky .navbar-logo-bg {
  width: 40px;
  height: 40px;
  padding: 3px;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.18);
}

.navbar-custom.navbar-sticky .navbar-logo {
  height: 85%;
  width: 85%;
}

/* Footer brand logo background white circle */
.footer-logo-bg {
  background: #ffffff;
  padding: 4px;
  border-radius: 50%;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.28), 0 2px 4px rgba(0, 0, 0, 0.15);
  overflow: hidden;
}

.footer-logo {
  height: 85%;
  width: 85%;
  object-fit: contain;
}

.navbar-custom.navbar-sticky .navbar-brand {
  color: var(--dark-blue) !important;
}

.navbar-custom .nav-link {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  color: rgba(255, 255, 255, .92) !important;
  padding: 8px 15px !important;
  position: relative;
  transition: var(--trans);
  white-space: nowrap;
}

.navbar-custom .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--light-blue);
  border-radius: 2px;
  transition: width .3s var(--ease), left .3s var(--ease);
}

.navbar-custom .nav-link:hover::after,
.navbar-custom .nav-link.active::after {
  width: 80%;
  left: 10%;
}

.navbar-custom .nav-link:hover,
.navbar-custom .nav-link.active {
  color: #fff !important;
}

.navbar-custom.navbar-sticky .nav-link {
  color: var(--charcoal) !important;
}

.navbar-custom.navbar-sticky .nav-link::after {
  background: var(--royal);
}

.navbar-custom.navbar-sticky .nav-link:hover,
.navbar-custom.navbar-sticky .nav-link.active {
  color: var(--royal) !important;
}

/* Tighten nav at xl breakpoint to prevent wrapping */
@media (min-width: 1200px) and (max-width: 1500px) {
  .navbar-custom .navbar-brand {
    font-size: 17px;
  }

  .navbar-custom .nav-link {
    font-size: 14px;
    padding: 8px 10px !important;
    letter-spacing: 0.2px;
  }

  .ms-lg-3 {
    margin-left: 0.4rem !important;
  }

  .navbar-custom .btn-royal {
    font-size: 13px;
    padding: 10px 18px;
  }
}

/* Dropdown */
.navbar-custom .dropdown-menu {
  border: none;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 10px;
  min-width: 240px;
  border-top: 3px solid var(--royal);
  margin-top: 8px !important;
  animation: fadeInUp .25s var(--ease) both;
}

.navbar-custom .dropdown-item {
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: var(--charcoal);
  padding: 10px 16px;
  border-radius: 6px;
  transition: var(--trans);
}

.navbar-custom .dropdown-item:hover {
  background: var(--ice);
  color: var(--royal);
  padding-left: 22px;
}

/* Mobile */
@media (max-width: 1199px) {
  .navbar-collapse {
    background: var(--dark-blue);
    padding: 12px 20px 20px;
    border-radius: 0 0 12px 12px;
    margin-top: 0;
    box-shadow: 0 10px 30px rgba(0,0,0,.4);
    border-top: 1px solid rgba(255,255,255,.1);
    width: 100%;
  }

  .navbar-custom.navbar-sticky .navbar-collapse {
    background: var(--white);
    border-top: 1px solid var(--gray);
    box-shadow: 0 8px 24px rgba(13,66,117,.12);
  }

  .navbar-custom .navbar-collapse .nav-link {
    color: rgba(255, 255, 255, .9) !important;
    padding: 12px 0 !important;
    border-bottom: 1px solid rgba(255,255,255,.07);
    font-size: 15px !important;
  }

  .navbar-custom .navbar-collapse .nav-link::after {
    display: none;
  }

  .navbar-custom.navbar-sticky .navbar-collapse .nav-link {
    color: var(--charcoal) !important;
    border-bottom-color: var(--gray);
  }

  .navbar-custom .dropdown-menu {
    box-shadow: none;
    margin-top: 0 !important;
    background: rgba(255, 255, 255, .07);
    border-top: none;
    border-radius: 8px;
    padding: 4px 0 8px 12px;
  }

  .navbar-custom.navbar-sticky .dropdown-menu {
    background: var(--ice);
  }

  .navbar-custom .dropdown-item {
    color: rgba(255, 255, 255, .82);
  }

  .navbar-custom.navbar-sticky .dropdown-item {
    color: var(--charcoal);
  }

  /* Request a Quote button in mobile menu */
  .navbar-collapse .ms-lg-3 {
    padding: 14px 0 4px;
  }
  .navbar-collapse .ms-lg-3 .btn-royal {
    width: 100%;
    text-align: center;
    justify-content: center;
  }
}

/* ─── Buttons ────────────────────────────────────────────────────── */
.btn-royal {
  background: linear-gradient(135deg, var(--royal) 0%, var(--navy) 100%);
  color: var(--white) !important;
  border: none;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 12.5px;
  text-transform: uppercase;
  letter-spacing: .8px;
  padding: 13px 30px;
  border-radius: 5px;
  box-shadow: 0 6px 20px rgba(36, 111, 181, .30);
  transition: var(--trans);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  text-decoration: none;
  isolation: isolate;
}

.btn-royal::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--navy) 0%, var(--dark-blue) 100%);
  opacity: 0;
  transition: opacity .4s var(--ease);
  z-index: -1;
}

.btn-royal:hover::before {
  opacity: 1;
}

.btn-royal:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(13, 66, 117, .40);
  color: var(--white) !important;
}

.btn-outline-white {
  color: var(--white) !important;
  border: 2px solid rgba(255, 255, 255, .7);
  background: transparent;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 12.5px;
  text-transform: uppercase;
  letter-spacing: .8px;
  padding: 11px 30px;
  border-radius: 5px;
  transition: var(--trans);
  white-space: nowrap;
}

.btn-outline-white:hover {
  background: var(--white);
  color: var(--navy) !important;
  border-color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(255, 255, 255, .2);
}

.btn-outline-royal {
  color: var(--royal) !important;
  border: 2px solid var(--royal);
  background: transparent;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 12.5px;
  text-transform: uppercase;
  letter-spacing: .8px;
  padding: 11px 30px;
  border-radius: 5px;
  transition: var(--trans);
}

.btn-outline-royal:hover {
  background: var(--royal);
  color: var(--white) !important;
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

/* ─── Hero Section ───────────────────────────────────────────────── */
.hero-slider {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  color: var(--white);
  overflow: hidden; /* prevent geo shapes from causing horizontal scroll */
}

.hero-slider::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13, 66, 117, .92) 0%, rgba(18, 79, 134, .82) 60%, rgba(36, 111, 181, .70) 100%);
  z-index: 1;
}

.hero-slider .hero-bg-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  animation: heroZoom 18s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  from {
    transform: scale(1.05);
  }

  to {
    transform: scale(1.12);
  }
}

/* Geometric decorators */
.hero-slider::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 130px;
  background: var(--white);
  clip-path: polygon(0 60%, 100% 0, 100% 100%, 0 100%);
  z-index: 2;
}

/* Hero right side 3D logo */
.hero-3d-logo-container {
  display: inline-block;
  transform-style: preserve-3d;
  transition: transform 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

.hero-3d-logo {
  max-height: 380px;
  width: auto;
  object-fit: contain;
  border-radius: 24px;
  box-shadow: 0 0 25px rgba(255, 255, 255, 0.5), 0 10px 30px rgba(0, 0, 0, 0.35);
  transform: translateZ(30px);
  will-change: transform;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-3d-logo-container:hover .hero-3d-logo {
  box-shadow: 0 0 35px rgba(255, 255, 255, 0.7), 0 15px 40px rgba(0, 0, 0, 0.45);
}

.hero-geo-1,
.hero-geo-2 {
  position: absolute;
  border-radius: 50%;
  z-index: 1;
  pointer-events: none;
}

.hero-geo-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(75, 141, 202, .15) 0%, transparent 70%);
  top: -150px;
  right: -150px;
  animation: float 8s ease-in-out infinite;
}

.hero-geo-2 {
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(255, 255, 255, .06) 0%, transparent 70%);
  bottom: 100px;
  left: -80px;
  animation: float 6s ease-in-out infinite reverse;
}

.hero-content {
  position: relative;
  z-index: 3;
  padding: 160px 0 180px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--light-blue);
  background: rgba(75, 141, 202, .15);
  border: 1px solid rgba(75, 141, 202, .3);
  padding: 8px 20px;
  border-radius: 30px;
  margin-bottom: 24px;
}

.hero-eyebrow::before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--light-blue);
  animation: pulse-ring 2s infinite;
}

.hero-content h1 {
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  font-weight: 900;
  color: var(--white);
  letter-spacing: -1.5px;
  line-height: 1.05;
  text-shadow: 0 4px 20px rgba(0, 0, 0, .15);
  margin-bottom: 16px;
}

.hero-content .hero-tagline {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(255, 255, 255, .75);
  font-weight: 400;
  letter-spacing: .3px;
  margin-bottom: 32px;
  max-width: 620px;
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 60px;
}

.hero-stats {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  gap: 0;
  position: relative;
  z-index: 3;
  padding: 22px 32px;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 14px;
  backdrop-filter: blur(8px);
  max-width: 560px;
}

.hero-stat-item {
  text-align: center;
  flex: 1;
  padding: 0 20px;
}

.hero-stat-item .stat-num {
  font-family: 'Poppins', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  display: block;
}

.hero-stat-item .stat-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255, 255, 255, .6);
  margin-top: 4px;
  display: block;
}

.hero-stat-divider {
  width: 1px;
  height: 44px;
  background: rgba(255, 255, 255, .18);
  flex-shrink: 0;
}

/* ─── Hero Floating Features Bar ─────────────────────────────────── */
.hero-floating-features {
  position: relative;
  z-index: 10;
  margin-top: -90px; /* Overlap the hero transition */
  margin-bottom: 20px;
  background: transparent;
}

.features-bar {
  background: var(--white);
  border-radius: 100px;
  box-shadow: 0 20px 45px rgba(13, 66, 117, 0.15);
  padding: 24px 40px;
  border: 1px solid rgba(255, 255, 255, 0.85);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
  animation: floatCard 6s ease-in-out infinite;
}

@keyframes floatCard {
  0%, 100% {
    transform: translateY(0);
    box-shadow: 0 20px 45px rgba(13, 66, 117, 0.15);
  }
  50% {
    transform: translateY(-8px);
    box-shadow: 0 32px 55px rgba(13, 66, 117, 0.22);
  }
}

.features-bar:hover {
  animation-play-state: paused;
  transform: translateY(-12px) scale(1.01);
  box-shadow: 0 38px 65px rgba(13, 66, 117, 0.28);
}



.features-bar-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--dark-blue);
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 15px;
  transition: var(--trans);
}

.features-bar-item i {
  font-size: 22px;
  color: var(--royal);
  transition: var(--trans);
}

.features-bar-item:hover {
  color: var(--royal);
  transform: translateY(-2px);
}

.features-bar-item:hover i {
  color: var(--light-blue);
  transform: scale(1.15);
}

@media (max-width: 991px) {
  .hero-floating-features {
    margin-top: -45px;
    margin-bottom: 30px;
  }
  .features-bar {
    border-radius: 24px;
    padding: 24px 16px;
  }
  .features-bar-item {
    flex-direction: column;
    justify-content: center;
    text-align: center;
    font-size: 13px;
    gap: 8px;
  }
  .features-bar-item i {
    font-size: 20px;
  }
}

/* ─── Section Common Layout ──────────────────────────────────────── */
.section-pad {
  padding: 100px 0;
}

.section-pad-sm {
  padding: 70px 0;
}

.section-heading {
  text-align: center;
  margin-bottom: 60px;
}

.section-heading h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: var(--dark-blue);
  margin-bottom: 16px;
}

.section-heading p {
  font-size: 16px;
  color: var(--text-body);
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.8;
}

/* Diagonal dividers */
.section-diagonal-top {
  clip-path: polygon(0 5%, 100% 0, 100% 100%, 0 100%);
  margin-top: -40px;
  padding-top: 140px !important;
}

.section-diagonal-bottom {
  clip-path: polygon(0 0, 100% 0, 100% 95%, 0 100%);
  padding-bottom: 140px !important;
}

/* ─── Premium Cards ───────────────────────────────────────────────── */
.premium-card {
  border: 1px solid rgba(13, 66, 117, .07);
  border-radius: 14px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: var(--trans);
  overflow: hidden;
  height: 100%;
}

.premium-card:hover {
  transform: translateY(-12px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(36, 111, 181, .18);
}

.premium-card .card-img-top {
  transition: transform .5s var(--ease);
  overflow: hidden;
}

.premium-card:hover .card-img-top {
  transform: scale(1.06);
}

/* Icon card */
.card-icon-wrap {
  width: 68px;
  height: 68px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(36, 111, 181, .12) 0%, rgba(75, 141, 202, .08) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  transition: var(--trans);
  font-size: 2rem;
  color: var(--royal);
}

.premium-card:hover .card-icon-wrap {
  background: linear-gradient(135deg, var(--royal) 0%, var(--light-blue) 100%);
  color: var(--white);
  transform: rotate(-5deg) scale(1.1);
}

/* ─── Company Intro Section ──────────────────────────────────────── */
.intro-image-wrap {
  position: relative;
  border-radius: 16px;
  overflow: visible;
}

.intro-image-wrap img {
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 1;
}

.intro-image-wrap::before {
  content: '';
  position: absolute;
  inset: -14px;
  border: 3px solid var(--light-blue);
  border-radius: 20px;
  opacity: .25;
  z-index: 0;
}

.intro-badge {
  position: absolute;
  bottom: 30px;
  left: -20px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--royal) 100%);
  color: var(--white);
  padding: 20px 24px;
  border-radius: 12px;
  box-shadow: var(--shadow-md);
  z-index: 2;
  max-width: 210px;
}

.intro-badge .badge-year {
  font-family: 'Poppins', sans-serif;
  font-size: 1.6rem;
  font-weight: 900;
  display: block;
  line-height: 1;
}

.intro-badge .badge-text {
  font-size: 12px;
  color: rgba(255, 255, 255, .75);
  margin-top: 6px;
  line-height: 1.4;
  display: block;
}

/* ─── Timeline ───────────────────────────────────────────────────── */
.timeline-wrap {
  position: relative;
  padding: 50px 0;
}

.timeline-wrap::before {
  content: '';
  position: absolute;
  top: 85px;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--royal), var(--light-blue), var(--royal), transparent);
  z-index: 0;
}

.timeline-item {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 16px;
  transition: var(--trans);
}

.timeline-dot {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--dark-blue) 0%, var(--royal) 100%);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 13px;
  border: 4px solid var(--white);
  box-shadow: 0 8px 24px rgba(18, 79, 134, .22);
  transition: var(--trans);
}

.timeline-item:hover .timeline-dot {
  transform: scale(1.2) rotate(8deg);
  background: linear-gradient(135deg, var(--royal) 0%, var(--light-blue) 100%);
  box-shadow: 0 12px 30px rgba(36, 111, 181, .35);
}

.timeline-item h5 {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.timeline-item p {
  font-size: 13.5px;
  color: var(--text-body);
  line-height: 1.6;
}

@media (max-width: 767px) {
  .timeline-wrap::before {
    left: 34px;
    top: 0;
    width: 3px;
    height: 100%;
    right: auto;
  }

  .timeline-item {
    display: flex;
    align-items: flex-start;
    text-align: left;
    margin-bottom: 40px;
  }

  .timeline-dot {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    margin: 0 20px 0 5px;
  }

  .timeline-body {
    padding-top: 6px;
  }
}

/* ─── Mission / Vision Cards ─────────────────────────────────────── */
.mv-card {
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 16px;
  padding: 40px;
  transition: var(--trans);
  height: 100%;
}

.mv-card:hover {
  background: rgba(255, 255, 255, .09);
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, .2);
}

.mv-icon {
  width: 64px;
  height: 64px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(75, 141, 202, .3) 0%, rgba(36, 111, 181, .2) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--light-blue);
  margin-bottom: 24px;
}

.mv-card h3 {
  color: var(--white);
  font-size: 1.4rem;
  margin-bottom: 16px;
}

.mv-card p {
  color: rgba(255, 255, 255, .72);
  font-style: italic;
  line-height: 1.8;
}

/* Core Values */
.value-card {
  border-radius: 18px;
  padding: 40px 32px 36px;
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .10);
  transition: var(--trans);
  text-align: center;
  height: 100%;
  position: relative;
  overflow: hidden;
  cursor: default;
}

.value-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(255, 255, 255, .07) 0%, rgba(255, 255, 255, 0) 60%);
  transition: opacity .4s var(--ease);
}

.value-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--royal), var(--light-blue));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .45s var(--ease);
  border-radius: 0 0 18px 18px;
}

.value-card:hover::after {
  transform: scaleX(1);
}

.value-card:hover {
  background: rgba(255, 255, 255, .09);
  border-color: rgba(75, 141, 202, .35);
  transform: translateY(-10px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, .3);
}

.value-num {
  font-family: 'Poppins', sans-serif;
  font-size: 5rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 4px;
  background: linear-gradient(135deg, rgba(75, 141, 202, .18) 0%, rgba(36, 111, 181, .06) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  transition: var(--trans);
}

.value-card:hover .value-num {
  background: linear-gradient(135deg, rgba(75, 141, 202, .35) 0%, rgba(36, 111, 181, .18) 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

.value-icon-wrap {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(36, 111, 181, .25) 0%, rgba(75, 141, 202, .15) 100%);
  border: 1px solid rgba(75, 141, 202, .25);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 2rem;
  color: var(--light-blue);
  transition: var(--trans);
  position: relative;
  z-index: 1;
}

.value-card:hover .value-icon-wrap {
  background: linear-gradient(135deg, var(--royal) 0%, var(--light-blue) 100%);
  border-color: transparent;
  color: var(--white);
  transform: scale(1.12) rotate(-6deg);
  box-shadow: 0 12px 30px rgba(36, 111, 181, .4);
}

.value-card h4 {
  font-size: 15px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.value-card p {
  font-size: 14px;
  color: rgba(255, 255, 255, .58);
  margin: 0;
  line-height: 1.75;
  position: relative;
  z-index: 1;
}

/* ─── Products Big Cards ─────────────────────────────────────────── */
.product-feature-card {
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-lg);
  transition: var(--trans);
  cursor: pointer;
  display: flex;
  flex-direction: column;
}

.product-food {
  background: linear-gradient(160deg, var(--dark-blue) 0%, rgba(18, 79, 134, .95) 100%);
}

.product-construction {
  background: linear-gradient(160deg, var(--royal) 0%, rgba(13, 66, 117, .95) 100%);
}

.product-feature-card:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: 0 30px 70px rgba(13, 66, 117, .25);
}

.product-card-image-wrapper {
  width: 100%;
  height: 250px;
  overflow: hidden;
  position: relative;
}

.product-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.product-feature-card:hover .product-card-img {
  transform: scale(1.06);
}

.product-feature-card .card-content {
  padding: 30px;
  position: relative;
  z-index: 1;
}

.product-feature-card h3 {
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
}

.product-feature-card p {
  color: rgba(255, 255, 255, .72);
  font-size: 14.5px;
  margin-bottom: 24px;
}

.product-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}

.product-tag {
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .2);
  color: var(--white);
  font-size: 12px;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 20px;
  backdrop-filter: blur(4px);
}

/* ─── Cargo Ship Illustration ────────────────────────────────────── */
@keyframes shipSail {
  0% {
    transform: translateX(-60px);
  }

  100% {
    transform: translateX(60px);
  }
}

@keyframes shipBob {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-5px);
  }
}

@keyframes smokeDrift {
  0% {
    opacity: .4;
    transform: translateY(0) scale(1);
  }

  100% {
    opacity: 0;
    transform: translateY(-20px) scale(1.8);
  }
}

@keyframes waveDrift {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.ship-illustration {
  position: relative;
  margin: 0 auto 50px;
  max-width: 860px;
  overflow: hidden;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(243, 247, 250, 0) 0%, rgba(36, 111, 181, .06) 60%, rgba(36, 111, 181, .14) 100%);
  border: 1px solid rgba(36, 111, 181, .1);
  padding: 10px 0 0;
}

.cargo-ship-svg {
  width: 100%;
  height: auto;
  display: block;
  animation: shipBob 4s ease-in-out infinite;
}

/* Smoke puff animations */
.smoke-puff {
  animation: smokeDrift 2.5s ease-out infinite;
}

.smoke-1 {
  animation-delay: 0s;
}

.smoke-2 {
  animation-delay: 0.7s;
}

.smoke-3 {
  animation-delay: 1.4s;
}

/* Animated water shimmer line */
.water-line {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 200%;
  height: 6px;
  background: repeating-linear-gradient(90deg,
      transparent 0px,
      transparent 18px,
      rgba(36, 111, 181, .35) 18px,
      rgba(36, 111, 181, .35) 36px);
  animation: waveDrift 2.5s linear infinite;
  border-radius: 0 0 16px 16px;
}

/* ─── Supply Chain Process ───────────────────────────────────────── */
.process-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
  position: relative;
}

.process-grid::before {
  content: '';
  position: absolute;
  top: 54px;
  left: 10%;
  right: 10%;
  height: 3px;
  background: linear-gradient(90deg, var(--gray), var(--royal), var(--light-blue), var(--royal), var(--gray));
  z-index: 0;
  background-size: 200% 100%;
  animation: lineFlow 3s linear infinite;
}

@keyframes lineFlow {
  0% {
    background-position: 200% 0;
  }

  100% {
    background-position: -200% 0;
  }
}

/* Staggered entrance for each node */
.process-node {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 10px;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .5s var(--ease), transform .5s var(--ease);
}

.process-node.in-view {
  opacity: 1;
  transform: translateY(0);
}

.process-circle {
  width: 108px;
  height: 108px;
  border-radius: 50%;
  border: 3px solid var(--gray);
  background: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  box-shadow: var(--shadow-sm);
  transition: var(--trans);
  position: relative;
  cursor: pointer;
}

/* Ripple ring on hover */
.process-circle::before {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 2px solid transparent;
  transition: border-color .3s var(--ease), inset .3s var(--ease);
}

.process-node:hover .process-circle::before {
  border-color: rgba(36, 111, 181, .25);
  inset: -14px;
}

/* Second outer ring */
.process-circle::after {
  content: '';
  position: absolute;
  inset: -20px;
  border-radius: 50%;
  border: 1px solid transparent;
  transition: border-color .4s .1s var(--ease), inset .4s .1s var(--ease);
}

.process-node:hover .process-circle::after {
  border-color: rgba(36, 111, 181, .10);
  inset: -22px;
}

.process-circle .step-badge {
  position: absolute;
  top: -5px;
  right: -5px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy) 0%, var(--royal) 100%);
  color: var(--white);
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--white);
  box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease);
}

.process-node:hover .process-circle .step-badge {
  transform: scale(1.2) rotate(10deg);
}

.process-circle i {
  font-size: 2rem;
  color: var(--royal);
  transition: var(--trans);
}

.process-node:hover .process-circle {
  border-color: var(--royal);
  background: linear-gradient(135deg, var(--navy) 0%, var(--royal) 100%);
  transform: translateY(-10px) scale(1.08);
  box-shadow: 0 16px 40px rgba(18, 79, 134, .2);
}

.process-node:hover .process-circle i {
  color: var(--white);
}

.process-node h5 {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--dark-blue);
  transition: color .3s;
}

.process-node p {
  font-size: 12.5px;
  color: var(--text-body);
  margin-top: 6px;
  line-height: 1.5;
  transition: color .3s;
}

.process-node:hover h5 {
  color: var(--royal);
}

@media (max-width: 1199px) {
  .process-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .process-grid::before {
    display: none;
  }

  .process-node {
    margin-bottom: 30px;
  }
}

@media (max-width: 575px) {
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ─── Global Presence Mini Section ──────────────────────────────── */
.location-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1px solid var(--gray);
  padding: 10px 18px;
  border-radius: 30px;
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--dark-blue);
  transition: var(--trans);
  box-shadow: var(--shadow-sm);
}

.location-pill:hover {
  background: var(--royal);
  color: var(--white);
  border-color: var(--royal);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.location-pill i {
  color: var(--royal);
  transition: color .3s;
}

.location-pill:hover i {
  color: rgba(255, 255, 255, .8);
}

/* ─── Awards Section ─────────────────────────────────────────────── */
.award-card {
  background: var(--white);
  border: 1px solid var(--gray);
  border-radius: 14px;
  padding: 32px;
  height: 100%;
  position: relative;
  overflow: hidden;
  transition: var(--trans);
  box-shadow: var(--shadow-sm);
}

.award-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--royal), var(--light-blue));
}

.award-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(36, 111, 181, .15);
}

.award-year-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--navy) 0%, var(--royal) 100%);
  color: var(--white);
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 16px;
}

.award-card h5 {
  font-size: 16px;
  font-weight: 700;
  color: var(--dark-blue);
  margin-bottom: 8px;
}

.award-card .org {
  font-size: 13px;
  color: var(--text-body);
}

.award-trophy {
  position: absolute;
  bottom: 20px;
  right: 20px;
  font-size: 4rem;
  color: rgba(255, 193, 7, .12);
}

/* ─── Awards Split (Recognition of Excellence) ─────────────── */
.awards-split-wrap {
  align-items: stretch;
}

.awards-split-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.12;
  color: var(--dark-blue);
  margin-bottom: 18px;
  text-transform: uppercase;
}

.awards-split-title .highlight-blue {
  font-weight: 900;
}

.awards-split-desc {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-body);
  margin-bottom: 24px;
  max-width: 420px;
}

.awards-split-photo {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

/* Right numbered panel */
.awards-split-panel {
  position: relative;
  background: #091c36;
  border-radius: 24px;
  padding: 45px 35px;
  height: 100%;
  overflow: visible;
  /* Pill overflow enabled */
  box-shadow: var(--shadow-lg);
  max-width: 480px;
  margin-left: auto;
}

/* Photographic background layer */
.awards-panel-photo {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  border-radius: 24px;
  overflow: hidden;
}

.awards-panel-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
  opacity: .45;
  filter: saturate(0.9) brightness(0.85);
}

.awards-panel-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(8, 28, 59, 0.4) 0%, rgba(13, 40, 79, 0.25) 100%);
  z-index: 1;
}

/* Hide background bar charts to let dynamic AI image stand out */
.awards-chart-bg,
.awards-panel-photo-bars {
  display: none !important;
}

.award-row {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  margin-top: var(--off, 0px);
  margin-bottom: 24px;
  width: 100%;
}

.award-row:last-child {
  margin-bottom: 0;
}

/* Alternating horizontal alignment for the pills */
@media (min-width: 992px) {
  .award-row.is-left {
    transform: translateX(-95px);
  }

  .award-row.is-right {
    transform: translateX(95px);
  }
}

.award-num {
  flex: 0 0 auto;
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #104c8a 0%, #0b345f 100%);
  color: var(--white);
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 700;
  border: 3px solid #3672b7;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  z-index: 4;
  position: relative;
}

/* Hide connector line */
.award-line {
  display: none !important;
}

.award-pill {
  flex: 0 1 auto;
  background: linear-gradient(90deg, #104c8a 0%, #082545 100%);
  border: none;
  border-radius: 30px;
  padding: 12px 24px 12px 36px;
  margin-left: -24px;
  /* Pull overlap under circle badge */
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(4px);
  z-index: 3;
  position: relative;
}

.award-row:hover .award-pill {
  background: linear-gradient(90deg, #165ca4 0%, #0c335e 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
}

.award-pill-title {
  font-family: 'Poppins', sans-serif;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--white);
  line-height: 1.4;
  margin: 0;
}

.award-pill-org {
  display: none !important;
  /* Hide org subtitles on homepage */
}

@media (max-width: 991px) {
  .awards-split-panel {
    max-width: 100%;
    margin-left: 0;
    padding: 35px 25px;
  }

  .award-row {
    transform: none !important;
    margin-top: 15px !important;
    margin-bottom: 15px !important;
  }

  .award-pill {
    max-width: calc(100% - 24px);
  }
}

@media (max-width: 767px) {
  .awards-split-panel {
    padding: 30px 20px;
  }

  .award-pill-title {
    font-size: 13.5px;
  }
}

#awards {
  overflow: hidden;
}

/* ─── Why Choose Us ──────────────────────────────────────────────── */
.why-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 22px 24px;
  background: var(--white);
  border-radius: 12px;
  border: 1px solid var(--gray);
  box-shadow: var(--shadow-sm);
  transition: var(--trans);
  height: 100%;
}

.why-item:hover {
  transform: translateX(6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(36, 111, 181, .18);
  background: linear-gradient(135deg, rgba(243, 247, 250, 1) 0%, rgba(255, 255, 255, 1) 100%);
}

.why-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(36, 111, 181, .12) 0%, rgba(75, 141, 202, .08) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--royal);
  flex-shrink: 0;
  transition: var(--trans);
}

.why-item:hover .why-icon {
  background: linear-gradient(135deg, var(--royal) 0%, var(--light-blue) 100%);
  color: var(--white);
}

.why-item h6 {
  font-size: 15px;
  font-weight: 700;
  color: var(--dark-blue);
  margin-bottom: 4px;
}

.why-item p {
  font-size: 13.5px;
  color: var(--text-body);
  margin: 0;
  line-height: 1.6;
}

/* About Us Beautification Enhancements */
.choose-us-card {
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
}

.choose-us-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md) !important;
  border-left-color: var(--light-blue) !important;
  background-color: var(--white) !important;
}

/* Premium Org Chart Styling */
.org-chart-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.org-card {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
  padding: 16px 24px;
  border-radius: 16px;
  width: 100%;
  max-width: 360px;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.org-icon-bg {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--white);
  flex-shrink: 0;
}

.org-card-body {
  text-align: left;
}

.org-badge {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
  display: block;
  margin-bottom: 2px;
}

.org-title {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 0;
  text-transform: uppercase;
  letter-spacing: 0px;
}

.org-card-ceo .org-title,
.org-card-consultant .org-title {
  color: var(--white) !important;
}

/* Card Specific Themes */
.org-card-ceo {
  background: linear-gradient(135deg, #0d2242 0%, #1a3e6a 100%) !important;
  color: var(--white) !important;
  box-shadow: 0 10px 25px rgba(13, 34, 66, 0.25) !important;
}

.org-card-ceo .org-badge {
  color: var(--light-blue);
}

.org-card-consultant {
  background: linear-gradient(135deg, #104c8a 0%, #246fb5 100%) !important;
  color: var(--white) !important;
  box-shadow: 0 10px 25px rgba(36, 111, 181, 0.2) !important;
}

.org-card-consultant .org-badge {
  color: rgba(255, 255, 255, 0.7);
}

.org-card-offices {
  background: linear-gradient(135deg, #e4eef6 0%, #d4e5f2 100%) !important;
  color: var(--navy) !important;
  border: 1px solid rgba(186, 222, 255, 0.5) !important;
  box-shadow: 0 10px 25px rgba(186, 222, 255, 0.3) !important;
}

.org-card-offices .org-icon-bg {
  background: rgba(36, 111, 181, 0.12);
  color: var(--royal);
}

.org-card-offices .org-badge {
  color: var(--royal);
}

.org-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(13, 34, 66, 0.35) !important;
}

/* Connector Lines */
.org-connector-vertical {
  width: 2px;
  height: 35px;
  background: linear-gradient(to bottom, var(--royal), var(--light-blue));
  position: relative;
}

.org-connector-vertical::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 8px solid var(--light-blue);
}

/* Division Cards */
.org-division-card {
  border-radius: 16px !important;
  background: var(--white);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  border: 1px solid rgba(18, 79, 134, 0.08) !important;
}

.org-division-card .div-icon {
  font-size: 1.2rem;
  color: var(--royal);
}

.org-division-card .div-list {
  font-size: 12.5px;
  color: var(--text-body);
}

.org-division-card .div-list li {
  padding: 4px 0;
  border-bottom: 1px dashed rgba(0, 0, 0, 0.04);
}

.org-division-card .div-list li:last-child {
  border-bottom: none;
}

.org-division-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(18, 79, 134, 0.12);
  border-color: rgba(36, 111, 181, 0.2) !important;
}

/* ─── CTA Section ────────────────────────────────────────────────── */
.cta-section {
  position: relative;
  background: linear-gradient(135deg, var(--dark-blue) 0%, var(--navy) 50%, #1a5da0 100%);
  background-size: 200% 200%;
  animation: gradientShift 8s ease infinite;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

/* ─── Partnership Card ───────────────────────────────────────────── */
.partnership-card {
  border-radius: 18px;
  padding: 50px;
  background: var(--white);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray);
  text-align: center;
  transition: var(--trans);
}

.partnership-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 70px rgba(13, 66, 117, .15);
}

.partner-logo-wrap {
  width: 160px;
  height: 80px;
  margin: 0 auto 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--ice);
  border-radius: 10px;
  padding: 16px;
  border: 1px solid var(--gray);
}

.partner-logo-wrap img {
  max-height: 55px;
  object-fit: contain;
}

/* ─── Page Hero (inner pages) ────────────────────────────────────── */
.page-hero {
  position: relative;
  padding: 150px 0 110px;
  background: linear-gradient(135deg, rgba(13, 66, 117, .96) 0%, rgba(18, 79, 134, .92) 100%);
  color: var(--white);
  text-align: center;
  overflow: hidden;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 70px;
  background: var(--white);
  clip-path: polygon(0 70%, 100% 0, 100% 100%, 0 100%);
  z-index: 1;
  pointer-events: none;
}

/* Hero content must sit above the wave */
.page-hero .container {
  position: relative;
  z-index: 2;
}

.page-hero h1 {
  font-size: clamp(1.8rem, 5vw, 3.2rem);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 14px;
  letter-spacing: -1px;
}

@media (max-width: 767px) {
  .page-hero {
    padding: 110px 16px 90px;
  }
  .page-hero::after {
    height: 50px;
    clip-path: polygon(0 60%, 100% 0, 100% 100%, 0 100%);
  }
  .page-hero h1 {
    font-size: clamp(1.6rem, 6vw, 2.2rem) !important;
    letter-spacing: -0.5px;
  }
  .page-hero .subtitle {
    font-size: 13.5px !important;
    padding-bottom: 8px;
  }
}

@media (max-width: 400px) {
  .page-hero {
    padding: 100px 14px 80px;
  }
  .page-hero::after {
    height: 40px;
  }
}

.page-hero .subtitle {
  color: var(--light-blue);
  font-size: 1.05rem;
  font-weight: 500;
  max-width: 600px;
  margin: 0 auto;
}

.page-hero .breadcrumb {
  justify-content: center;
}

.page-hero .breadcrumb-item,
.page-hero .breadcrumb-item a {
  color: rgba(255, 255, 255, .65);
  font-size: 13px;
}

.page-hero .breadcrumb-item.active,
.page-hero .breadcrumb-item+.breadcrumb-item::before {
  color: rgba(255, 255, 255, .4);
}

/* ─── Map ────────────────────────────────────────────────────────── */
#map {
  height: 540px;
  width: 100%;
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.custom-map-marker div {
  background: var(--royal);
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 3px solid var(--white);
  box-shadow: 0 0 12px rgba(0, 0, 0, .4);
  animation: pulse-ring 2s infinite;
}

/* ─── Forms ──────────────────────────────────────────────────────── */
.form-control,
.form-select {
  border: 1.5px solid var(--gray);
  border-radius: 8px;
  padding: 13px 16px;
  font-size: 14.5px;
  color: var(--charcoal);
  background: var(--white);
  transition: var(--trans);
}

.form-control:focus,
.form-select:focus {
  border-color: var(--light-blue);
  box-shadow: 0 0 0 4px rgba(75, 141, 202, .15);
  outline: none;
}

.form-label {
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--dark-blue);
  margin-bottom: 7px;
}

/* ─── Border Flow Steps ──────────────────────────────────────────── */
.flow-step {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 24px 28px;
  background: var(--white);
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  border-left: 5px solid var(--royal);
  transition: var(--trans);
}

.flow-step:hover {
  transform: translateX(10px);
  border-left-color: var(--navy);
  box-shadow: var(--shadow-md);
}

.flow-step .step-num {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--ice);
  color: var(--navy);
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 2px solid var(--gray);
}

.flow-step h5 {
  font-size: 16px;
  font-weight: 700;
  color: var(--dark-blue);
  margin-bottom: 5px;
}

.flow-step p {
  font-size: 13.5px;
  color: var(--text-body);
  margin: 0;
  line-height: 1.6;
}

/* ─── Footer ─────────────────────────────────────────────────────── */
.site-footer {
  background: linear-gradient(180deg, var(--dark-blue) 0%, #091e3a 100%);
  color: var(--white);
  padding-top: 80px;
  padding-bottom: 30px;
  position: relative;
  overflow: hidden;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--navy), var(--royal), var(--light-blue), var(--royal), var(--navy));
}

.footer-brand h5 {
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.3px;
  margin-bottom: 14px;
}

.footer-brand p {
  color: rgba(255, 255, 255, .55);
  font-size: 14px;
  line-height: 1.8;
}

.footer-heading {
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--light-blue);
  margin-bottom: 22px;
}

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

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: rgba(255, 255, 255, .52);
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 7px;
  transition: var(--trans);
}

.footer-links a::before {
  content: '›';
  font-size: 18px;
  line-height: 1;
  color: rgba(36, 111, 181, .6);
  transition: var(--trans);
}

.footer-links a:hover {
  color: var(--white);
  padding-left: 4px;
}

.footer-links a:hover::before {
  color: var(--royal);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
}

.footer-contact-item .contact-icon {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: rgba(36, 111, 181, .15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  color: var(--light-blue);
  flex-shrink: 0;
  margin-top: 1px;
}

.footer-contact-item a,
.footer-contact-item span {
  color: rgba(255, 255, 255, .58);
  font-size: 13.5px;
  line-height: 1.6;
  transition: var(--trans);
}

.footer-contact-item a:hover {
  color: var(--white);
}

.footer-socials {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.footer-social-btn {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, .65);
  font-size: 16px;
  transition: var(--trans);
}

.footer-social-btn:hover {
  background: var(--royal);
  border-color: var(--royal);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .07);
  margin-top: 60px;
  padding-top: 24px;
  font-size: 13px;
  color: rgba(255, 255, 255, .35);
}

.footer-bottom a {
  color: rgba(255, 255, 255, .4);
}

.footer-bottom a:hover {
  color: rgba(255, 255, 255, .8);
}

/* ─── WhatsApp Float ─────────────────────────────────────────────── */
.whatsapp-widget {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 1060;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  color: var(--white) !important;
  text-decoration: none !important;
  box-shadow: 0 8px 28px rgba(37, 211, 102, .4);
  animation: float 3s ease-in-out infinite;
  transition: background .3s, transform .3s, box-shadow .3s;
}

.whatsapp-widget:hover {
  background: #1da855;
  transform: scale(1.12);
  box-shadow: 0 14px 40px rgba(37, 211, 102, .55);
  color: var(--white) !important;
}

/* ─── Admin Panel ────────────────────────────────────────────────── */
.admin-wrapper {
  display: flex;
  min-height: 100vh;
}

.admin-sidebar {
  width: 265px;
  background: linear-gradient(180deg, var(--dark-blue) 0%, #091e3a 100%);
  color: var(--white);
  flex-shrink: 0;
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  overflow-y: auto;
  z-index: 100;
  transition: width .3s var(--ease);
}

.admin-sidebar .sidebar-brand {
  padding: 26px 22px;
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 16px;
  color: var(--white);
  background: rgba(0, 0, 0, .15);
  border-bottom: 1px solid rgba(255, 255, 255, .06);
  white-space: nowrap;
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 10px;
}

.admin-sidebar .sidebar-brand i {
  color: var(--light-blue);
  font-size: 22px;
}

.admin-nav-group {
  padding: 20px 0 0;
}

.admin-nav-group-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .3);
  padding: 0 22px;
  margin-bottom: 6px;
}

.admin-nav-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 22px;
  color: rgba(255, 255, 255, .7);
  font-size: 14px;
  font-weight: 500;
  transition: var(--trans);
  border-left: 3px solid transparent;
  text-decoration: none;
}

.admin-nav-link i {
  font-size: 17px;
  width: 20px;
  text-align: center;
}

.admin-nav-link:hover,
.admin-nav-link.active {
  background: rgba(255, 255, 255, .06);
  color: var(--white);
  border-left-color: var(--light-blue);
  padding-left: 28px;
}

.admin-content {
  margin-left: 265px;
  flex-grow: 1;
  background: #f0f4f9;
  min-height: 100vh;
  transition: margin-left .3s var(--ease);
}

.admin-topbar {
  background: var(--white);
  border-bottom: 1px solid var(--gray);
  padding: 16px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 90;
  box-shadow: var(--shadow-sm);
}

.admin-body {
  padding: 30px;
}

.admin-stat-card {
  background: var(--white);
  border-radius: 14px;
  padding: 26px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray);
  transition: var(--trans);
  border-left: 4px solid var(--royal);
  height: 100%;
}

.admin-stat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.admin-stat-card .stat-num {
  font-family: 'Poppins', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--dark-blue);
  line-height: 1;
}

.admin-stat-card .stat-label {
  font-size: 13px;
  color: var(--text-body);
  margin-top: 4px;
}

/* ─── Responsive Tweaks ──────────────────────────────────────────── */
@media (max-width: 991px) {
  .admin-sidebar {
    width: 0;
    overflow: hidden;
  }

  .admin-sidebar.open {
    width: 265px;
  }

  .admin-content {
    margin-left: 0;
  }
}

@media (max-width: 767px) {
  .hero-content {
    padding: 130px 0 160px;
  }

  .hero-stats {
    gap: 0;
    padding: 16px 20px;
    max-width: 100%;
  }

  .hero-stat-item {
    padding: 0 12px;
  }

  .hero-stat-item .stat-num {
    font-size: 1.4rem;
  }

  .intro-badge {
    left: 10px;
    padding: 14px 18px;
  }

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

  .product-feature-card {
    min-height: 340px;
  }

  .partnership-card {
    padding: 30px;
  }
}

@media (max-width: 575px) {
  .hero-content h1 {
    font-size: 2.2rem;
  }

  .hero-stats {
    padding: 14px 10px;
  }

  .hero-stat-item {
    padding: 0 8px;
  }

  .hero-stat-item .stat-num {
    font-size: 1.2rem;
  }

  .hero-stat-item .stat-label {
    font-size: 9px;
    letter-spacing: 1px;
  }

  .hero-stat-divider {
    height: 36px;
  }
}


/* ══════════════════════════════════════════════════════
   SERVICES PAGE — sv-* classes
══════════════════════════════════════════════════════ */

/* ── Hero ─────────────────────────────────────────── */
.sv-hero {
  position: relative;
  min-height: 86vh;
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
}

.sv-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.06);
  animation: heroZoom 20s ease-in-out infinite alternate;
  z-index: 0;
}

.sv-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(9, 30, 58, .97) 0%, rgba(13, 66, 117, .91) 52%, rgba(36, 111, 181, .78) 100%);
  z-index: 1;
}

.sv-grid {
  position: absolute;
  inset: 0;
  z-index: 2;
  background-image:
    linear-gradient(rgba(255, 255, 255, .022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .022) 1px, transparent 1px);
  background-size: 55px 55px;
}

.sv-blob {
  position: absolute;
  border-radius: 50%;
  z-index: 2;
  pointer-events: none;
}

.sv-blob-1 {
  width: 650px;
  height: 650px;
  background: radial-gradient(circle, rgba(75, 141, 202, .17) 0%, transparent 70%);
  top: -180px;
  right: -150px;
  animation: float 10s ease-in-out infinite;
}

.sv-blob-2 {
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(36, 111, 181, .1) 0%, transparent 70%);
  bottom: 80px;
  left: -90px;
  animation: float 8s ease-in-out infinite reverse;
}

.sv-hero .container {
  padding-top: 150px;
  padding-bottom: 110px;
  position: relative;
  z-index: 5;
}

.sv-wave {
  display: none;
}

/* Eyebrow pill */
.sv-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: #4B8DCA;
  background: rgba(75, 141, 202, .14);
  border: 1px solid rgba(75, 141, 202, .3);
  padding: 9px 22px;
  border-radius: 30px;
  margin-bottom: 24px;
}

.sv-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4B8DCA;
  animation: pulse-ring 2s infinite;
  flex-shrink: 0;
}

.sv-hero-h1 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.08;
  letter-spacing: -1.5px;
  margin-bottom: 20px;
  text-shadow: 0 4px 24px rgba(0, 0, 0, .18);
}

.sv-accent {
  background: linear-gradient(120deg, #4B8DCA 0%, #82c1f5 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.sv-hero-p {
  font-size: clamp(.95rem, 1.8vw, 1.15rem);
  color: rgba(255, 255, 255, .7);
  max-width: 600px;
  margin: 0 auto 32px;
  line-height: 1.85;
}

/* Quick-nav pill row */
.sv-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  padding: 18px 22px;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 16px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  max-width: 820px;
  margin: 0 auto;
}

.sv-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255, 255, 255, .09);
  border: 1px solid rgba(255, 255, 255, .14);
  color: rgba(255, 255, 255, .8) !important;
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 25px;
  text-decoration: none;
  transition: all .3s;
}

.sv-pill:hover {
  background: var(--royal);
  border-color: var(--royal);
  color: #fff !important;
  transform: translateY(-2px);
}

/* ── Stats belt ─────────────────────────────────── */
.sv-stats-belt {
  background: linear-gradient(135deg, #091e3a 0%, #0D4275 50%, #124F86 100%);
  padding: 0;
  position: relative;
  overflow: hidden;
}

.sv-stats-belt::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, .03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .03) 1px, transparent 1px);
  background-size: 40px 40px;
}

.sv-stats-belt::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--navy), var(--royal), #4B8DCA, var(--royal), var(--navy));
}

.sv-belt-item {
  padding: 48px 24px;
  position: relative;
  text-align: center;
  transition: all .35s var(--ease);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.sv-belt-item:hover {
  background: rgba(255, 255, 255, .04);
}

.sv-belt-sep::after {
  content: '';
  position: absolute;
  right: 0;
  top: 20%;
  bottom: 20%;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(75, 141, 202, .35), transparent);
}

.sv-belt-ico {
  font-size: 2rem;
  color: #4B8DCA;
  display: block;
  width: 52px;
  height: 52px;
  background: rgba(75, 141, 202, .12);
  border: 1px solid rgba(75, 141, 202, .25);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  transition: transform .35s var(--ease), color .35s, background .35s;
  flex-shrink: 0;
}

.sv-belt-item:hover .sv-belt-ico {
  transform: translateY(-4px) scale(1.15);
  color: #82c1f5;
  background: rgba(75, 141, 202, .22);
}

.sv-belt-num {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 900;
  color: #fff;
  line-height: 1;
  letter-spacing: -1px;
  text-shadow: 0 2px 20px rgba(75, 141, 202, .4);
}

.sv-belt-lbl {
  font-family: 'Poppins', sans-serif;
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .38);
  margin-top: 8px;
  font-weight: 600;
}

/* ── Service blocks ─────────────────────────────── */
.sv-block {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--gray);
  box-shadow: var(--shadow-md);
  margin-bottom: 36px;
  transition: box-shadow .4s var(--ease), transform .4s var(--ease);
}

.sv-block:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

/* Visual panel */
.sv-visual {
  position: relative;
  height: 100%;
  min-height: 400px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 28px;
}

.sv-ghost-icon {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13rem;
  color: rgba(255, 255, 255, .055);
  pointer-events: none;
  user-select: none;
}

.sv-big-num {
  position: absolute;
  top: 20px;
  left: 24px;
  font-family: 'Poppins', sans-serif;
  font-size: 5rem;
  font-weight: 900;
  color: rgba(255, 255, 255, .1);
  line-height: 1;
  letter-spacing: -4px;
  user-select: none;
}

.sv-vis-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .3;
  mix-blend-mode: luminosity;
}

.sv-chip {
  position: relative;
  z-index: 2;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 12px;
  padding: 12px 18px;
  backdrop-filter: blur(8px);
  color: #fff;
  text-align: center;
}

.sv-chip span:first-child {
  font-family: 'Poppins', sans-serif;
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
}

.sv-chip span:last-child {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255, 255, 255, .55);
  margin-top: 3px;
}

/* Content panel */
.sv-content {
  background: #fff;
}

.sv-content-r {
  padding: 44px 48px 44px 40px;
}

.sv-content-l {
  padding: 44px 40px 44px 48px;
}

.sv-svc-icon {
  width: 58px;
  height: 58px;
  border-radius: 14px;
  flex-shrink: 0;
  background: linear-gradient(135deg, rgba(36, 111, 181, .12) 0%, rgba(75, 141, 202, .07) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--royal);
  transition: all .4s var(--ease);
}

.sv-block:hover .sv-svc-icon {
  background: linear-gradient(135deg, var(--royal) 0%, var(--light-blue) 100%);
  color: #fff;
  transform: rotate(-8deg) scale(1.1);
}

.sv-svc-num {
  font-family: 'Poppins', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--royal);
  margin-bottom: 2px;
}

.sv-svc-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.3rem, 2.2vw, 1.75rem);
  font-weight: 800;
  color: var(--dark-blue);
  line-height: 1.15;
  margin: 0;
}

.sv-svc-lead {
  font-size: 15.5px;
  color: var(--dark-blue);
  font-weight: 500;
  line-height: 1.85;
  margin: 16px 0 12px;
  border-left: 3px solid var(--royal);
  padding-left: 16px;
}

.sv-svc-body {
  font-size: 14px;
  color: var(--text-body);
  line-height: 1.85;
  margin-bottom: 0;
}

.sv-feat-wrap {
  margin-top: 24px;
}

.sv-feat-hdr {
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--royal);
  margin-bottom: 12px;
}

.sv-feat {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 10px 14px;
  background: var(--ice);
  border-radius: 8px;
  border-left: 3px solid transparent;
  font-size: 13px;
  font-weight: 600;
  color: var(--dark-blue);
  transition: all .3s var(--ease);
}

.sv-feat:hover {
  border-left-color: var(--royal);
  background: #fff;
  box-shadow: var(--shadow-sm);
  transform: translateX(4px);
}

.sv-feat i {
  color: var(--royal);
  font-size: 14px;
  flex-shrink: 0;
}

/* ── Customs callout ───────────────────────────── */
.sv-callout {
  position: relative;
  padding: 100px 0;
  background: linear-gradient(135deg, var(--dark-blue) 0%, #091e3a 100%);
  overflow: hidden;
}

.sv-callout-mesh {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, .02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .02) 1px, transparent 1px);
  background-size: 50px 50px;
}

.sv-co-pill {
  display: flex;
  align-items: center;
  padding: 10px 14px;
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 10px;
  font-size: 12.5px;
  font-weight: 600;
  color: rgba(255, 255, 255, .75);
  transition: all .3s;
}

.sv-co-pill:hover {
  background: rgba(255, 255, 255, .12);
  color: #fff;
}

.sv-co-pill i {
  color: #4B8DCA;
}

.sv-co-card {
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 20px;
  padding: 40px;
  text-align: center;
  transition: all .4s var(--ease);
}

.sv-co-card:hover {
  background: rgba(255, 255, 255, .1);
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, .3);
}

.sv-co-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: rgba(75, 141, 202, .2);
  border: 2px solid rgba(75, 141, 202, .3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #4B8DCA;
  margin: 0 auto 20px;
  animation: pulse-ring 3s infinite;
}

.sv-co-card h4 {
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 1.3rem;
  margin-bottom: 12px;
}

.sv-co-card p {
  color: rgba(255, 255, 255, .55);
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 24px;
}

.sv-co-nums {
  display: flex;
  justify-content: space-around;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, .1);
}

.sv-co-nums>div {
  text-align: center;
}

.sv-co-nums b {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 1.5rem;
  font-weight: 900;
  color: #fff;
}

.sv-co-nums small {
  display: block;
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .4);
  margin-top: 3px;
}

/* ── Responsive ─────────────────────────────────── */
@media (max-width: 991px) {
  .sv-hero .container {
    padding-top: 130px;
    padding-bottom: 90px;
  }

  .sv-content-r,
  .sv-content-l {
    padding: 32px 28px;
  }

  .sv-visual {
    min-height: 300px;
  }

  .sv-callout {
    padding: 70px 0;
  }
}

@media (max-width: 767px) {
  .sv-hero .container {
    padding-top: 120px;
    padding-bottom: 70px;
  }

  .sv-hero-h1 {
    font-size: 2.3rem;
  }

  .sv-belt-sep::after {
    display: none;
  }

  .sv-belt-item {
    padding: 28px 12px;
  }

  .sv-belt-num {
    font-size: 1.8rem;
  }

  .sv-belt-ico {
    width: 42px;
    height: 42px;
    font-size: 1.4rem;
  }

  .sv-block {
    margin-bottom: 24px;
  }

  .sv-svc-title {
    font-size: 1.4rem;
  }
}

@media (max-width: 575px) {
  .sv-hero-h1 {
    font-size: 2rem;
    letter-spacing: -.5px;
  }

  .sv-content-r,
  .sv-content-l {
    padding: 24px 20px;
  }

  .sv-big-num {
    font-size: 3.5rem;
  }
}

/* ─── Staggered Vertical Awards Timeline ────────────────────────── */
.awards-timeline {
  position: relative;
  padding: 40px 0;
}

.awards-timeline::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 3px;
  background: linear-gradient(to bottom, var(--royal), var(--light-blue), var(--royal));
  transform: translateX(-50%);
  z-index: 1;
}

.awards-timeline-row {
  position: relative;
  z-index: 2;
}

.awards-timeline-center-dot {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--dark-blue) 0%, var(--royal) 100%);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 13.5px;
  border: 4px solid var(--white);
  box-shadow: 0 8px 20px rgba(18, 79, 134, 0.18);
  z-index: 4;
  transition: var(--trans);
}

.awards-timeline-row:hover .awards-timeline-center-dot {
  transform: translate(-50%, -50%) scale(1.15) rotate(8deg);
  background: linear-gradient(135deg, var(--royal) 0%, var(--light-blue) 100%);
  box-shadow: 0 12px 25px rgba(36, 111, 181, 0.3);
}

@media (min-width: 992px) {
  .awards-timeline-row .col-lg-6:first-child {
    padding-right: 50px;
  }

  .awards-timeline-row .col-lg-6:last-child {
    padding-left: 50px;
  }
}

@media (max-width: 991px) {
  .awards-timeline::before {
    left: 24px;
    transform: none;
  }

  .awards-timeline-center-dot {
    left: 24px !important;
    transform: translateY(-50%) !important;
    top: 40px !important;
  }

  .awards-timeline-row {
    padding-left: 65px;
    margin-bottom: 40px;
  }

  .awards-timeline-row:hover .awards-timeline-center-dot {
    transform: translateY(-50%) scale(1.15) rotate(8deg) !important;
  }
}

/* ─── Contact Info Cards ────────────────────────────────────────── */
.contact-info-card {
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  border: 1px solid rgba(18, 79, 134, 0.06) !important;
  background: var(--white) !important;
  border-radius: 12px;
}

.contact-info-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-sm);
  border-color: rgba(36, 111, 181, 0.18) !important;
}

.contact-info-card .icon-box {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(36, 111, 181, 0.12) 0%, rgba(75, 141, 202, 0.08) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  color: var(--royal);
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.contact-info-card:hover .icon-box {
  background: linear-gradient(135deg, var(--royal) 0%, var(--light-blue) 100%);
  color: var(--white);
  transform: scale(1.1) rotate(-8deg);
}

/* ─── Contact Group CTA Buttons ─────────────────────────────────── */
.cta-btn-group .btn {
  border-radius: 30px !important;
  padding: 11px 26px !important;
  font-weight: 600 !important;
  font-size: 13.5px !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  border: none !important;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
  color: var(--white) !important;
  box-shadow: 0 4px 15px rgba(13,66,117,0.06);
}
.cta-btn-call {
  background: linear-gradient(135deg, var(--dark-blue) 0%, var(--navy) 100%) !important;
}
.cta-btn-call:hover {
  transform: translateY(-3px) !important;
  box-shadow: 0 8px 20px rgba(13,66,117,0.22) !important;
}
.cta-btn-email {
  background: linear-gradient(135deg, var(--royal) 0%, var(--light-blue) 100%) !important;
}
.cta-btn-email:hover {
  transform: translateY(-3px) !important;
  box-shadow: 0 8px 20px rgba(36,111,181,0.22) !important;
}
.cta-btn-wa {
  background: linear-gradient(135deg, #075e54 0%, #128c7e 100%) !important;
}
.cta-btn-wa:hover {
  transform: translateY(-3px) !important;
  box-shadow: 0 8px 20px rgba(18,140,126,0.22) !important;
}

/* Also keep standard btn-royal for form button */
.btn-royal {
  background-color: var(--royal) !important;
  color: var(--white) !important;
  border: 1px solid var(--royal) !important;
  transition: var(--trans);
  border-radius: 8px !important;
  padding: 13px 20px !important;
}
.btn-royal:hover {
  background-color: var(--light-blue) !important;
  border-color: var(--light-blue) !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(36,111,181,0.25);
}


/* ═══════════════════════════════════════════════════════
   MOBILE RESPONSIVE FIXES — All Sections
═══════════════════════════════════════════════════════ */

/* ── Navbar mobile: brand + toggler on one line ── */
@media (max-width: 1199px) {
  /* Ensure brand never wraps onto next line */
  .navbar-custom .container-fluid {
    flex-wrap: nowrap !important;
    align-items: center;
  }
  .navbar-custom .navbar-brand {
    font-size: 16px !important;
    min-width: 0;
    overflow: visible;
  }
  .navbar-custom .navbar-brand span {
    overflow: visible;
    text-overflow: unset;
    white-space: nowrap;
    display: block;
    max-width: none; /* no truncation — show full name */
  }
}
@media (max-width: 767px) {
  .navbar-custom .navbar-brand {
    font-size: 14px !important;
    gap: 8px !important;
  }
  .navbar-custom .navbar-brand span {
    max-width: none !important;
    overflow: visible !important;
    text-overflow: unset !important;
  }
  .navbar-logo-bg {
    width: 38px !important;
    height: 38px !important;
    flex-shrink: 0;
  }
  .navbar-custom.navbar-sticky .navbar-logo-bg {
    width: 34px !important;
    height: 34px !important;
  }
  .navbar-toggler {
    padding: 6px 10px !important;
    flex-shrink: 0;
  }
}
@media (max-width: 575px) {
  .navbar-custom .navbar-brand {
    font-size: 13px !important;
  }
  .navbar-custom .navbar-brand span {
    max-width: none !important;
    overflow: visible !important;
    text-overflow: unset !important;
  }
  .navbar-logo-bg {
    width: 34px !important;
    height: 34px !important;
    padding: 3px !important;
  }
  .navbar-toggler {
    padding: 5px 9px !important;
    font-size: 13px !important;
  }
}
@media (max-width: 400px) {
  .navbar-custom .navbar-brand span {
    max-width: none !important; /* never truncate */
  }
}
.hero-side-img-col {
  display: block !important;
  perspective: 1000px;
}
.hero-side-img-col .hero-3d-logo {
  max-height: 380px;
  border-radius: 16px;
}

/* ── Intro image desktop default height ── */
.intro-section-img {
  height: 460px;
}

/* ── Tablet (≤991px) ── */
@media (max-width: 991px) {
  .hero-content {
    padding: 130px 0 80px;
  }
  .hero-side-img-col {
    text-align: center;
    padding: 0 0 60px;
    margin-top: 24px;
  }
  .hero-side-img-col .hero-3d-logo {
    max-height: 260px;
    width: auto;
    transform: none !important;
  }
  .intro-section-img {
    height: 340px;
  }
}

/* ── Mobile (≤767px) ── */
@media (max-width: 767px) {

  /* Hero: hide side image — background already shows the visual */
  .hero-side-img-col {
    display: none !important;
  }

  /* Hero text */
  .hero-content {
    padding: 100px 0 50px;
  }
  .hero-cta-group {
    margin-bottom: 24px;
    flex-direction: column;
    align-items: flex-start;
  }
  .hero-cta-group .btn {
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  /* Hero bottom wave — REMOVE on mobile, no gap */
  .hero-slider::after {
    display: none !important;
  }

  /* Remove extra top padding on intro section after hero */
  .hero-next-section {
    padding-top: 40px !important;
    margin-top: 0 !important;
  }

  /* Hero stats — 2x2 grid, clean */
  .hero-stats {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 1px !important;
    padding: 0 !important;
    max-width: 100% !important;
    background: rgba(255,255,255,.1) !important;
    border: 1px solid rgba(255,255,255,.12) !important;
    border-radius: 12px !important;
    overflow: hidden;
  }
  .hero-stat-item {
    padding: 14px 10px !important;
    background: rgba(255,255,255,.04);
    border: none !important;
  }
  .hero-stat-item:nth-child(odd) {
    border-right: 1px solid rgba(255,255,255,.1) !important;
  }
  .hero-stat-item:nth-child(1),
  .hero-stat-item:nth-child(3) {
    border-bottom: 1px solid rgba(255,255,255,.1) !important;
  }
  .hero-stat-item .stat-num {
    font-size: 1.5rem !important;
  }
  .hero-stat-item .stat-label {
    font-size: 9px !important;
    letter-spacing: 1px !important;
  }
  .hero-stat-divider {
    display: none !important;
  }

  /* Intro section row gap reduction */
  .hero-next-section .row.g-5 {
    --bs-gutter-y: 1.5rem !important;
  }

  /* Intro section */
  .intro-section-img {
    height: 220px;
  }
  .intro-badge {
    display: block !important; /* show on mobile too */
    position: static !important;
    margin-top: 12px;
    max-width: 100%;
    border-radius: 10px;
    left: auto !important;
    bottom: auto !important;
  }
  /* Intro heading smaller on mobile */
  .hero-next-section h2 {
    font-size: 1.5rem !important;
  }
  .hero-next-section p {
    font-size: 14px !important;
    line-height: 1.75 !important;
  }
  /* Button full width */
  .hero-next-section .btn-royal {
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  /* Products */
  .product-card-image-wrapper {
    height: 200px;
  }
  .product-feature-card h3 {
    font-size: 1.4rem;
  }

  /* Supply chain ship — hide on mobile, too cramped */
  .ship-illustration {
    display: none;
  }

  /* Process grid — 3 cols on mobile */
  .process-grid {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 16px 8px !important;
  }
  .process-circle {
    width: 80px;
    height: 80px;
  }
  .process-circle i {
    font-size: 1.4rem;
  }
  .process-node h5 {
    font-size: 11px;
  }
  .process-node p {
    font-size: 10px;
  }

  /* Global Presence — make auto height, hide map */
  .gp-section {
    min-height: auto !important;
    height: auto !important;
    background: linear-gradient(135deg, #ddeaf8 0%, #e8f0f9 100%) !important;
  }
  .gp-inner {
    position: relative !important;
    inset: auto !important;
    padding: 36px 12px 28px !important;
  }
  .gp-left-panel,
  .gp-right-panel {
    display: none !important;
  }
  #gp-map {
    display: none !important;
  }
  .gp-big-title {
    font-size: 1.5rem;
  }
  .gp-big-desc {
    max-width: 100%;
  }
  .gp-text-col {
    margin-bottom: 16px;
  }
  .gp-cities-row {
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
  }
  .gp-city-item {
    width: calc(25% - 10px) !important;
    flex: none !important;
  }
  .gp-city-item:nth-child(n+5) .gp-city-name {
    color: #0D4275 !important;
  }

  /* Awards photo */
  .awards-split-photo img {
    height: 160px !important;
  }

  /* Section padding */
  .section-pad {
    padding: 56px 0;
  }
  .section-heading {
    margin-bottom: 36px;
  }

  /* First section after hero — reduce top gap */
  .hero-next-section {
    padding-top: 28px !important;
  }
}

/* ── Small mobile (≤575px) ── */
@media (max-width: 575px) {

  .hero-content {
    padding: 90px 0 44px;
  }
  .hero-content h1 {
    font-size: 2rem;
  }
  .hero-stat-item .stat-num {
    font-size: 1.3rem !important;
  }

  /* Intro image */
  .intro-section-img {
    height: 220px;
  }

  /* Products */
  .product-card-image-wrapper {
    height: 170px;
  }

  /* Process grid — 2 cols on very small */
  .process-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  /* Global presence cities — 3 per row */
  .gp-city-item {
    width: calc(33.333% - 10px) !important;
  }

  /* Section headings */
  .section-heading h2 {
    font-size: 1.55rem;
  }
  .section-pad {
    padding: 52px 0;
  }

  /* Partnership card */
  .partnership-card {
    padding: 24px 16px !important;
  }
}


/* ═══════════════════════════════════════════════════════════════
   MOBILE OVERFLOW & LAYOUT FIXES
   Fixes: right-side white space, header transparency, menu UI
═══════════════════════════════════════════════════════════════ */

/* ── 1. Global overflow containment ── */
/* Prevent ANY element from causing horizontal scroll on mobile */
@media (max-width: 991px) {

  /* Wrap every section so nothing bleeds right */
  section,
  .section-pad,
  .section-pad-sm {
    overflow-x: hidden;
    max-width: 100vw;
  }

  /* intro-image-wrap::before border bleeds -14px outside — clip it on mobile */
  .intro-image-wrap::before {
    display: none;
  }

  /* awards panel overflow:visible can leak on desktop transforms */
  .awards-split-panel {
    overflow: hidden;
  }

  /* supply chain section overflow fix */
  .supply-chain-section {
    overflow: hidden;
  }

}

/* ── 2. Navbar — transparent at top, white after scroll ── */
/* These rules override Bootstrap and ensure correct mobile navbar state */
@media (max-width: 1199px) {

  /* === NOT SCROLLED (transparent state) === */
  .navbar-custom:not(.navbar-sticky) {
    background: linear-gradient(180deg,
      rgba(0, 0, 0, 0.6) 0%,
      rgba(0, 0, 0, 0.2) 80%,
      transparent 100%) !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    box-shadow: none !important;
  }

  /* Brand text white when transparent */
  .navbar-custom:not(.navbar-sticky) .navbar-brand {
    color: #ffffff !important;
  }

  /* Toggler visible on dark/transparent bg */
  .navbar-custom:not(.navbar-sticky) .navbar-toggler {
    border-color: rgba(255, 255, 255, 0.6) !important;
    background: rgba(255, 255, 255, 0.1) !important;
  }
  .navbar-custom:not(.navbar-sticky) .navbar-toggler-icon {
    /* white hamburger lines for dark background */
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255%2C255%2C255%2C0.95%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
    filter: none !important;
  }

  /* === SCROLLED (white/sticky state) === */
  .navbar-custom.navbar-sticky {
    background: #ffffff !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    box-shadow: 0 4px 20px rgba(13, 66, 117, 0.12) !important;
  }

  /* Brand text dark blue when scrolled */
  .navbar-custom.navbar-sticky .navbar-brand {
    color: var(--dark-blue) !important;
  }

  /* Toggler normal on white bg */
  .navbar-custom.navbar-sticky .navbar-toggler {
    border-color: rgba(13, 66, 117, 0.35) !important;
    background: transparent !important;
  }
  .navbar-custom.navbar-sticky .navbar-toggler-icon {
    /* dark blue hamburger lines for white background */
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2813%2C66%2C117%2C0.95%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
    filter: none !important;
  }
}

/* ── 3. Non-index pages: navbar is always sticky (white), override transparent rule ── */
/* PHP adds navbar-sticky to all non-index pages, so transparent rule never applies there */

/* ── 4. Mobile collapsed menu improvements ── */
@media (max-width: 1199px) {

  /* Full-width collapse, no gap below brand bar */
  .navbar-collapse {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    width: 100% !important;
    max-width: 100vw !important;
    border-radius: 0 0 16px 16px !important;
    padding: 16px 20px 24px !important;
    z-index: 1049;
  }

  /* Non-sticky state: dark navy menu */
  .navbar-custom:not(.navbar-sticky) .navbar-collapse {
    background: rgba(8, 24, 48, 0.97) !important;
    border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5) !important;
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
  }

  /* Sticky state: white menu */
  .navbar-custom.navbar-sticky .navbar-collapse {
    background: #ffffff !important;
    border-top: 1px solid var(--gray) !important;
    box-shadow: 0 8px 24px rgba(13, 66, 117, 0.14) !important;
  }

  /* Nav links in non-sticky collapsed menu */
  .navbar-custom:not(.navbar-sticky) .navbar-collapse .nav-link {
    color: rgba(255, 255, 255, 0.92) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07) !important;
    padding: 13px 4px !important;
    font-size: 14px !important;
  }
  .navbar-custom:not(.navbar-sticky) .navbar-collapse .nav-link:last-child {
    border-bottom: none !important;
  }

  /* Nav links in sticky collapsed menu */
  .navbar-custom.navbar-sticky .navbar-collapse .nav-link {
    color: var(--charcoal) !important;
    border-bottom: 1px solid var(--gray) !important;
    padding: 13px 4px !important;
    font-size: 14px !important;
  }
  .navbar-custom.navbar-sticky .navbar-collapse .nav-link:hover,
  .navbar-custom.navbar-sticky .navbar-collapse .nav-link.active {
    color: var(--royal) !important;
  }

  /* Dropdown menus inside collapse */
  .navbar-custom:not(.navbar-sticky) .navbar-collapse .dropdown-menu {
    background: rgba(255, 255, 255, 0.07) !important;
    border: none !important;
    box-shadow: none !important;
    border-radius: 8px !important;
    padding: 4px 0 8px 12px !important;
    margin-top: 0 !important;
  }
  .navbar-custom:not(.navbar-sticky) .navbar-collapse .dropdown-item {
    color: rgba(255, 255, 255, 0.82) !important;
    font-size: 13px !important;
    padding: 9px 14px !important;
    border-radius: 6px !important;
  }
  .navbar-custom:not(.navbar-sticky) .navbar-collapse .dropdown-item:hover {
    background: rgba(255, 255, 255, 0.1) !important;
    color: #ffffff !important;
  }

  /* Sticky dropdown inside collapse — blue hover */
  .navbar-custom.navbar-sticky .navbar-collapse .dropdown-menu {
    background: var(--ice) !important;
    border: none !important;
    box-shadow: none !important;
    border-radius: 8px !important;
    padding: 4px 0 8px 12px !important;
    margin-top: 0 !important;
  }
  .navbar-custom.navbar-sticky .navbar-collapse .dropdown-item {
    color: var(--charcoal) !important;
    font-size: 13px !important;
    padding: 9px 14px !important;
    border-radius: 6px !important;
  }
  .navbar-custom.navbar-sticky .navbar-collapse .dropdown-item:hover,
  .navbar-custom.navbar-sticky .navbar-collapse .dropdown-item:focus {
    background: rgba(36, 111, 181, 0.1) !important;
    color: var(--royal) !important;
  }

  /* Request a Quote button — full width in mobile menu */
  .navbar-collapse .ms-lg-3 {
    padding: 16px 0 4px !important;
  }
  .navbar-collapse .ms-lg-3 .btn-royal {
    width: 100% !important;
    text-align: center !important;
    justify-content: center !important;
    padding: 14px 20px !important;
  }

  /* Navbar container — make sure toggler doesn't wrap */
  .navbar-custom .container-fluid {
    flex-wrap: nowrap !important;
    position: relative;
  }
}

/* ── 5. Additional mobile overflow guards ── */
@media (max-width: 767px) {

  /* intro-image-wrap badge: keep in flow, no overflow */
  .intro-badge {
    position: static !important;
    left: auto !important;
    bottom: auto !important;
    margin-top: 14px !important;
    max-width: 100% !important;
    border-radius: 10px !important;
    display: block !important;
  }

  /* Prevent process circles' hover rings from overflowing */
  .process-circle::before,
  .process-circle::after {
    display: none !important;
  }

  /* Awards panel: remove translateX offsets that cause overflow */
  .award-row.is-left,
  .award-row.is-right {
    transform: none !important;
  }

  /* hc-section overflow guard */
  .hc-section {
    overflow: hidden !important;
  }

  /* gp-section overflow guard */
  .gp-section {
    overflow: hidden !important;
  }

  /* Remove ::after wave on hero for clean mobile */
  .hero-slider::after {
    display: none !important;
  }

  /* Container padding tighter on small screens */
  .container {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }

  /* ── Product card button — full width on mobile ── */
  .product-feature-card .card-content .btn-outline-white {
    display: block !important;
    width: 100% !important;
    text-align: center !important;
    white-space: normal !important;
    padding: 13px 16px !important;
    border-radius: 8px !important;
  }

  /* ── Navbar menu links — blue highlight on sticky/white menu ── */
  .navbar-custom.navbar-sticky .navbar-collapse .nav-link:hover,
  .navbar-custom.navbar-sticky .navbar-collapse .nav-link.active {
    color: var(--royal) !important;
    background: rgba(36, 111, 181, 0.07) !important;
    border-radius: 8px !important;
    padding-left: 10px !important;
  }
  .navbar-custom.navbar-sticky .navbar-collapse .dropdown-item:hover,
  .navbar-custom.navbar-sticky .navbar-collapse .dropdown-item:focus {
    color: var(--royal) !important;
    background: rgba(36, 111, 181, 0.08) !important;
  }
}

/* ── 6. Ensure Bootstrap rows don't overflow ── */
@media (max-width: 575px) {
  .row {
    --bs-gutter-x: 1rem;
  }

  /* Product cards — prevent overflow on very small screens */
  .product-feature-card {
    min-height: auto !important;
  }

  /* Why items — single column, no overflow */
  .why-item {
    overflow: hidden;
  }
}

/* ── 9. Floating Background Ships ────────────────── */
.bg-ship-container-local {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

/* Ensure section content sits on top of ships */
.bg-ship-container-local ~ * {
  position: relative;
  z-index: 1;
}

.floating-ship {
  position: absolute;
  top: -60px;
  will-change: transform;
  animation: floatShipDown linear infinite;
}

@keyframes floatShipDown {
  0% {
    transform: translateY(0) translateX(0) rotate(0deg);
  }
  50% {
    transform: translateY(60vh) translateX(30px) rotate(10deg);
  }
  100% {
    transform: translateY(120%) translateX(-20px) rotate(-10deg);
  }
}
