/* ============================================================
   Kesaree Shipping — Babaji Shivram Reference Style
   Navy #0a1628 | Orange #f47b20 | White
   ============================================================ */

:root {
  --navy: #0a1628;
  --navy-dark: #040c1a;
  --navy-mid: #152238;
  --orange: #f47b20;
  --orange-light: #ff9a4a;
  --orange-dark: #c55a00;
  --orange-dim: rgba(244, 123, 32, 0.1);
  --peach: #fdf3ee;
  --grey-card: #e8eaed;
  --white: #ffffff;
  --text-body: #3d4f66;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--text-body);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--navy);
}

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

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

/* ── Loader ── */
#page-loader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  transition: opacity 0.6s, visibility 0.6s;
}

#page-loader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-logo img {
  width: 200px;
  animation: loaderPulse 2s ease-in-out infinite;
}

@keyframes loaderPulse {

  0%,
  100% {
    transform: scale(1)
  }

  50% {
    transform: scale(1.05)
  }
}

.loader-bar {
  width: 180px;
  height: 3px;
  background: #eee;
  border-radius: 2px;
  overflow: hidden;
}

.loader-fill {
  height: 100%;
  background: var(--orange);
  animation: loadBar 1.5s ease forwards;
}

@keyframes loadBar {
  to {
    width: 100%;
  }
}

.loader-text {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #999;
}

/* ── Navbar (Reference Style) ── */
.navbar-ref {
  background: var(--white);
  padding: 14px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}

.navbar-ref.scrolled {
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.07);
}

.navbar-ref .navbar-brand img {
  height: 54px;
  width: auto;
}

.navbar-ref .nav-center {
  display: flex;
  align-items: center;
  justify-content: right;
  gap: 6px;
  flex: 1;
}

.navbar-ref .nav-link {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--navy) !important;
  padding: 8px 14px !important;
  position: relative;
}

.navbar-ref .nav-link:hover,
.navbar-ref .nav-link.active {
  color: var(--orange) !important;
}

.btn-pill-orange {
  background: var(--orange);
  color: #fff !important;
  border: none;
  padding: 11px 28px;
  border-radius: 50px;
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-pill-orange:hover {
  background: var(--orange-light);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(244, 123, 32, 0.35);
}

/* ── Hero Cinematic (Full-Width Banner) ── */
.hero-cinematic {
  position: relative;
  min-height: calc(100vh - 82px);
  min-height: calc(100dvh - 82px);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-cinematic-bg {
  position: absolute;
  inset: -5%;
  background: url('../images/aerial-view-cargo-ship-cargo-container-harbor.jpg') center/cover no-repeat;
  animation: heroKenBurns 22s ease-in-out infinite alternate;
  filter: brightness(0.45) saturate(1.15) contrast(1.08);
}

@keyframes heroKenBurns {
  from {
    transform: scale(1);
  }

  to {
    transform: scale(1.1);
  }
}

.hero-cinematic-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(4, 12, 26, 0.55) 0%, rgba(4, 12, 26, 0.35) 40%, rgba(4, 12, 26, 0.82) 100%),
    linear-gradient(135deg, rgba(10, 22, 40, 0.7) 0%, transparent 55%);
}

.hero-cinematic-vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, transparent 30%, rgba(4, 12, 26, 0.55) 100%);
  pointer-events: none;
}

.hero-light-trails {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 55%;
  width: 100%;
  pointer-events: none;
  z-index: 1;
}

.trail-path {
  stroke-dasharray: 1200;
  stroke-dashoffset: 1200;
  animation: drawTrail 4s ease forwards;
}

.trail-1 {
  animation-delay: 0.5s;
}

.trail-2 {
  animation-delay: 1.2s;
}

.trail-3 {
  animation-delay: 1.8s;
}

@keyframes drawTrail {
  to {
    stroke-dashoffset: 0;
  }
}

.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.hero-particles span {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #ffd700;
  box-shadow: 0 0 8px #ffd700, 0 0 16px rgba(244, 123, 32, 0.6);
  animation: sparkFloat 6s ease-in-out infinite;
}

.hero-particles span:nth-child(1) {
  top: 15%;
  right: 12%;
  animation-delay: 0s;
}

.hero-particles span:nth-child(2) {
  top: 25%;
  right: 22%;
  animation-delay: 0.8s;
  background: #00e5ff;
  box-shadow: 0 0 8px #00e5ff;
}

.hero-particles span:nth-child(3) {
  top: 10%;
  right: 30%;
  animation-delay: 1.5s;
  width: 3px;
  height: 3px;
}

.hero-particles span:nth-child(4) {
  top: 35%;
  right: 8%;
  animation-delay: 2.2s;
  background: #f47b20;
  box-shadow: 0 0 10px #f47b20;
}

.hero-particles span:nth-child(5) {
  top: 20%;
  right: 40%;
  animation-delay: 0.4s;
}

.hero-particles span:nth-child(6) {
  top: 8%;
  right: 18%;
  animation-delay: 3s;
  width: 5px;
  height: 5px;
}

.hero-particles span:nth-child(7) {
  top: 30%;
  right: 35%;
  animation-delay: 1.8s;
  background: #00e5ff;
  box-shadow: 0 0 8px #00e5ff;
}

.hero-particles span:nth-child(8) {
  top: 18%;
  right: 5%;
  animation-delay: 2.8s;
}

.hero-particles span:nth-child(9) {
  top: 40%;
  right: 25%;
  animation-delay: 0.6s;
}

.hero-particles span:nth-child(10) {
  top: 12%;
  right: 45%;
  animation-delay: 3.5s;
  width: 3px;
  height: 3px;
  background: #f47b20;
  box-shadow: 0 0 8px #f47b20;
}

@keyframes sparkFloat {

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

  20% {
    opacity: 1;
    transform: translateY(-8px) scale(1);
  }

  80% {
    opacity: 0.6;
    transform: translateY(-20px) scale(0.8);
  }
}

.hero-cinematic-content {
  position: relative;
  z-index: 2;
  padding: 60px 0 100px;
  max-width: 780px;
}

.hero-cinematic-logo img {
  height: 72px;
  width: auto;
  margin-bottom: 28px;
  filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.4));
}

.hero-cinematic-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.6rem);
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.12;
  letter-spacing: 0.02em;
  background: linear-gradient(135deg, #ffe066 0%, #ffd700 25%, #f47b20 70%, #ffb347 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 2px 12px rgba(255, 180, 0, 0.25));
}

.hero-gold-line {
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, #ffd700, #f47b20);
  border-radius: 2px;
  margin: 22px 0;
  box-shadow: 0 0 12px rgba(255, 215, 0, 0.5);
}

.hero-cinematic-sub {
  font-family: var(--font-heading);
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 600;
  color: rgba(255, 255, 255, 0.95);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 14px;
  line-height: 1.5;
}

.hero-cinematic-desc {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.85;
  max-width: 520px;
  margin-bottom: 36px;
}

.hero-cinematic-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.btn-hero-glow {
  background: var(--orange);
  color: #fff;
  padding: 14px 36px;
  border-radius: 50px;
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: all 0.35s;
  box-shadow: 0 8px 32px rgba(244, 123, 32, 0.45), 0 0 20px rgba(244, 123, 32, 0.2);
}

.btn-hero-glow:hover {
  background: var(--orange-light);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(244, 123, 32, 0.55);
}

.btn-hero-outline {
  background: transparent;
  color: #fff;
  padding: 13px 32px;
  border-radius: 50px;
  border: 2px solid rgba(255, 255, 255, 0.35);
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: all 0.35s;
  backdrop-filter: blur(4px);
}

.btn-hero-outline:hover {
  border-color: #ffd700;
  color: #ffd700;
  background: rgba(255, 215, 0, 0.08);
  transform: translateY(-3px);
}

.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.hero-scroll-hint span {
  font-size: 0.65rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
}

.scroll-indicator {
  width: 22px;
  height: 36px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 11px;
  position: relative;
}

.scroll-indicator::after {
  content: '';
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: var(--orange);
  border-radius: 2px;
  animation: scrollBounce 1.8s ease-in-out infinite;
}

@keyframes scrollBounce {

  0%,
  100% {
    opacity: 1;
    top: 6px;
  }

  50% {
    opacity: 0.3;
    top: 18px;
  }
}

/* Hero animations */
.animate-hero {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.9s ease forwards;
}

.animate-hero.d1 {
  animation-delay: 0.2s;
}

.animate-hero.d2 {
  animation-delay: 0.4s;
}

.animate-hero.d3 {
  animation-delay: 0.6s;
}

.animate-hero.d4 {
  animation-delay: 0.8s;
}

.animate-hero.d5 {
  animation-delay: 1.1s;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: none;
  }
}

/* ── Hero Reference (legacy) ── */
.hero-ref {
  position: relative;
  background: var(--white);
  padding: 60px 0 80px;
  overflow: hidden;
  min-height: 85vh;
  display: flex;
  align-items: center;
}

.btn-circle-cta {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.4;
  transition: all 0.35s;
  box-shadow: 0 12px 36px rgba(244, 123, 32, 0.35);
}

.btn-circle-cta:hover {
  background: var(--orange-light);
  color: #fff;
  transform: scale(1.06);
}

/* ── About Split Section (Ref Image 1 Style) ── */
.about-split {
  position: relative;
  padding: 100px 0;
  background: var(--white);
  overflow: hidden;
}

.about-split-decor-curve {
  position: absolute;
  top: 0;
  left: 0;
  width: 140px;
  height: 140px;
  border-bottom-right-radius: 100%;
  background: rgba(10, 22, 40, 0.04);
  pointer-events: none;
}

.about-split-decor-circle {
  position: absolute;
  bottom: -60px;
  right: -40px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: rgba(244, 123, 32, 0.07);
  pointer-events: none;
}

.about-split-decor-dots {
  position: absolute;
  bottom: 80px;
  right: 100px;
  width: 70px;
  height: 70px;
  background-image: radial-gradient(var(--orange) 2px, transparent 2px);
  background-size: 11px 11px;
  opacity: 0.3;
  pointer-events: none;
}

.about-split-label {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-body);
  margin-bottom: 16px;
}

.about-split-title {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin-bottom: 22px;
}

.about-split-title .line-orange {
  color: var(--orange);
  display: block;
}

.about-split-title .line-navy {
  color: var(--navy);
  display: block;
}

.about-split-desc {
  font-size: 0.92rem;
  color: var(--text-body);
  line-height: 1.85;
  max-width: 520px;
  margin-bottom: 32px;
  text-transform: capitalize;
}

.about-split-visual {
  position: relative;
  animation: aboutFloat 6s ease-in-out infinite;
}

@keyframes aboutFloat {

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

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

.about-img-slider {
  position: relative;
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.about-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.08);
  transition: opacity 0.8s ease, transform 6s ease;
  filter: grayscale(40%) contrast(1.05);
}

.about-slide.active {
  opacity: 1;
  transform: scale(1);
  animation: aboutKenBurns 8s ease-in-out infinite alternate;
}

@keyframes aboutKenBurns {
  from {
    transform: scale(1);
  }

  to {
    transform: scale(1.06);
  }
}

.about-split-badge {
  position: absolute;
  bottom: -18px;
  right: -18px;
  background: var(--orange);
  color: #fff;
  padding: 26px 22px;
  max-width: 170px;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.25;
  z-index: 3;
  box-shadow: 0 12px 36px rgba(244, 123, 32, 0.35);
}

.about-line-art {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 2;
  opacity: 0.85;
}

.about-ref-dots {
  display: flex;
  gap: 8px;
  margin-top: 36px;
  justify-content: center;
}

.about-ref-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ddd;
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
}

.about-ref-dots span.active {
  background: var(--orange);
  transform: scale(1.2);
}

/* Legacy about-ref (about page) */
.about-ref {
  padding: 90px 0;
  background: var(--white);
}

.about-ref-img-wrap {
  position: relative;
  border-radius: 4px;
  overflow: visible;
}

.about-ref-img-wrap img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  filter: grayscale(100%);
  border-radius: 4px;
}

.about-ref-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--orange);
  color: #fff;
  padding: 28px 24px;
  max-width: 180px;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 800;
  line-height: 1.25;
}

.about-ref-heading {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 2.5vw, 1.85rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.35;
  text-transform: capitalize;
  margin-bottom: 20px;
}

.about-ref-text {
  font-size: 0.92rem;
  color: var(--text-body);
  line-height: 1.85;
  margin-bottom: 32px;
}

.stats-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-bottom: 32px;
}

.stat-inline-item {
  text-align: left;
}

.stat-inline-num {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
}

.stat-inline-label {
  font-size: 0.82rem;
  color: var(--navy);
  font-weight: 600;
  margin-top: 6px;
  text-transform: capitalize;
}

.btn-circle-read {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: var(--font-heading);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  line-height: 1.35;
  transition: all 0.35s;
}

.btn-circle-read:hover {
  background: var(--orange-light);
  color: #fff;
  transform: scale(1.05);
}

/* ── Services Reference (Slanted Cards) ── */
.services-ref {
  padding: 80px 0 48px;
  background: var(--white);
  position: relative;
  overflow: hidden;
}

.services-ref-decor-dots {
  position: absolute;
  top: 60px;
  right: 40px;
  width: 90px;
  height: 90px;
  background-image: radial-gradient(rgba(10, 22, 40, 0.15) 2px, transparent 2px);
  background-size: 12px 12px;
  pointer-events: none;
}

.services-ref-header {
  margin-bottom: 56px;
}

.services-ref-split {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0 40px;
  align-items: stretch;
}

.services-ref-left {
  display: flex;
  align-items: center;
}

.services-big-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.08;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  margin: 0;
}

.services-big-title .word-orange {
  color: var(--orange);
  display: block;
}

.services-big-title .word-navy {
  color: var(--navy);
  display: block;
}

.services-ref-divider {
  width: 2px;
  background: linear-gradient(to bottom, transparent, var(--navy) 15%, var(--navy) 85%, transparent);
  opacity: 0.2;
  min-height: 140px;
  align-self: center;
}

.services-ref-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 8px 0;
}

.services-ref-subtitle {
  font-family: var(--font-heading);
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  font-weight: 700;
  color: var(--navy);
  text-transform: capitalize;
  line-height: 1.45;
  margin-bottom: 16px;
}

.services-ref-desc {
  font-size: 0.9rem;
  color: var(--text-body);
  line-height: 1.85;
  margin: 0;
  max-width: 480px;
}

.services-carousel-wrap {
  position: relative;
  overflow: hidden;
  padding: 12px 0 28px;
}

.services-carousel-track {
  display: flex;
  gap: 28px;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 16px 4px;
}

.service-slant-card {
  flex: 0 0 calc(33.333% - 19px);
  min-width: 290px;
  position: relative;
  min-height: 300px;
  padding-top: 20px;
}

.service-slant-base {
  position: absolute;
  bottom: 0;
  left: 8px;
  right: 8px;
  height: 88%;
  background: var(--grey-card);
  transform: skewX(-5deg);
  border-radius: 2px;
  transition: opacity 0.45s ease;
}

.service-slant-card:hover .service-slant-base {
  opacity: 0;
}

.service-slant-panel {
  position: relative;
  background: var(--white);
  margin: 0 0 0 16px;
  padding: 36px 30px 40px;
  transform: skewX(-5deg);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.07);
  min-height: 280px;
  transition: transform 0.45s ease, box-shadow 0.45s ease, border-color 0.45s ease;
  border: 1px solid rgba(0, 0, 0, 0.04);
  overflow: hidden;
}

.service-slant-hover-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.12);
  transition: opacity 0.55s ease, transform 0.65s ease;
  z-index: 0;
}

.service-slant-hover-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(4, 12, 26, 0.88) 0%, rgba(10, 22, 40, 0.55) 100%);
  opacity: 0;
  transition: opacity 0.45s ease;
  z-index: 1;
}

.service-slant-card:hover .service-slant-panel {
  transform: skewX(-5deg) translateY(-10px);
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.18);
  border-color: transparent;
}

.service-slant-card:hover .service-slant-hover-bg {
  opacity: 1;
  transform: scale(1);
}

.service-slant-card:hover .service-slant-hover-overlay {
  opacity: 1;
}

.service-slant-inner {
  transform: skewX(5deg);
  position: relative;
  z-index: 2;
  transition: color 0.35s ease;
}

.service-slant-icon {
  width: 56px;
  height: 56px;
  background: #eceef1;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  color: var(--navy);
  margin-bottom: 22px;
  transition: background 0.35s ease, color 0.35s ease, transform 0.35s ease;
}

.service-slant-card:hover .service-slant-icon {
  background: var(--orange);
  color: #fff;
  transform: scale(1.05);
}

.service-slant-card h4 {
  font-family: var(--font-heading);
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 14px;
  line-height: 1.35;
  transition: color 0.35s ease;
}

.service-slant-card:hover h4 {
  color: #fff;
}

.service-slant-card p {
  font-size: 0.84rem;
  color: var(--text-body);
  line-height: 1.75;
  margin-bottom: 18px;
  font-style: italic;
  transition: color 0.35s ease;
}

.service-slant-card:hover p {
  color: rgba(255, 255, 255, 0.92);
}

.service-slant-card .learn-more {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.35s ease, gap 0.25s ease;
}

.service-slant-card:hover .learn-more {
  color: #fff;
  gap: 10px;
}

.service-slant-card .learn-more::after {
  content: '\2192';
  font-size: 0.85rem;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 8px;
}

.carousel-dots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: #ddd;
  cursor: pointer;
  padding: 0;
  transition: background 0.3s, transform 0.3s;
}

.carousel-dots button.active {
  background: var(--orange);
  transform: scale(1.2);
}

.carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid #eee;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
  transition: all 0.3s;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.carousel-nav:hover {
  background: var(--orange);
  color: #fff;
  border-color: var(--orange);
}

.carousel-nav.prev {
  left: -10px;
}

.carousel-nav.next {
  right: -10px;
}

/* ── Efficiency Section ── */
.efficiency-section {
  padding: 28px 0 12px;
  background: linear-gradient(180deg, #fafbfc 0%, #f0f2f5 100%);
  position: relative;
  overflow: hidden;
}

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

.efficiency-row {
  min-height: unset;
  position: relative;
  z-index: 2;
}

.efficiency-bg-art {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.22;
  pointer-events: none;
  z-index: 1;
}

.efficiency-title {
  font-family: var(--font-heading);
  font-size: clamp(1.55rem, 2.8vw, 2.35rem);
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.1;
  letter-spacing: 0.01em;
  margin-bottom: 0;
}

.efficiency-title .orange {
  color: var(--orange);
  display: block;
}

.efficiency-title .navy {
  color: var(--navy);
  display: block;
}

.efficiency-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-bottom: 0;
  padding-right: 20px;
}

.efficiency-circle {
  width: 260px;
  height: 260px;
  border-radius: 50%;
  overflow: hidden;
  border: 5px solid var(--white);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
  position: relative;
  padding: 0;
  cursor: pointer;
  background: #000;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.efficiency-video-trigger:hover {
  transform: scale(1.04);
  box-shadow: 0 22px 60px rgba(244, 123, 32, 0.25);
}

.efficiency-circle video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.efficiency-play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(10, 22, 40, 0.35);
  transition: opacity 0.35s ease, background 0.35s ease;
  z-index: 2;
}

.efficiency-play-overlay.hidden {
  opacity: 0;
  pointer-events: none;
}

.efficiency-video-trigger:hover .efficiency-play-overlay {
  background: rgba(10, 22, 40, 0.25);
}

.efficiency-play-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--orange);
  padding-left: 5px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, background 0.3s ease;
}

.efficiency-video-trigger:hover .efficiency-play-icon {
  transform: scale(1.1);
  background: var(--orange);
  color: #fff;
}

.efficiency-circle-accent {
  position: absolute;
  top: -8px;
  right: 12px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--orange);
  z-index: 3;
  box-shadow: 0 6px 20px rgba(244, 123, 32, 0.35);
}

/* Video Modal */
.video-modal {
  position: fixed;
  inset: 0;
  z-index: 100000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.video-modal.open {
  opacity: 1;
  visibility: visible;
}

.video-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 12, 26, 0.88);
  backdrop-filter: blur(6px);
}

.video-modal-content {
  position: relative;
  z-index: 2;
  width: min(920px, 92vw);
  animation: modalIn 0.4s ease;
}

@keyframes modalIn {
  from {
    transform: scale(0.92);
    opacity: 0;
  }

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

.video-modal-close {
  position: absolute;
  top: -48px;
  right: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: var(--orange);
  color: #fff;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.25s;
}

.video-modal-close:hover {
  background: var(--orange-light);
}

.video-modal-frame {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.4);
  border: 3px solid rgba(255, 255, 255, 0.1);
}

.video-modal-frame video {
  width: 100%;
  display: block;
  background: #000;
  aspect-ratio: 16/9;
  object-fit: cover;
}

/* ── Dual Feature Cards ── */
.dual-cards-section {
  padding: 0 0 90px;
}

.dual-card {
  padding: 48px 40px;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  transition: transform 0.35s;
}

.dual-card:hover {
  transform: translateY(-4px);
}

.dual-card.orange {
  background: var(--orange);
  color: #fff;
}

.dual-card.grey {
  background: var(--grey-card);
  color: var(--navy);
}

.dual-card h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 16px;
  text-transform: capitalize;
}

.dual-card.orange h3 {
  color: #fff;
}

.dual-card.grey h3 {
  color: var(--navy);
}

.dual-card p {
  font-size: 0.9rem;
  line-height: 1.8;
  opacity: 0.9;
  margin-bottom: 32px;
  flex: 1;
}

.dual-card .btn-circle-read {
  width: 100px;
  height: 100px;
  font-size: 0.62rem;
  align-self: flex-start;
}

.dual-card.orange .btn-circle-read {
  background: #fff;
  color: var(--navy);
}

.dual-card.grey .btn-circle-read {
  background: var(--orange);
  color: #fff;
}

.dual-card.orange .btn-circle-read:hover {
  background: var(--navy);
  color: #fff;
}

/* ── Why Choose Premium ── */
.why-premium {
  padding: 56px 0 64px;
  background: linear-gradient(160deg, #f8f9fb 0%, #fff 40%, #fdf3ee 100%);
  position: relative;
  overflow: hidden;
}

.why-premium-decor {
  position: absolute;
  top: -80px;
  left: -80px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(244, 123, 32, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.why-premium-decor::after {
  content: '';
  position: absolute;
  bottom: -200px;
  right: -120px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(10, 22, 40, 0.04) 0%, transparent 70%);
}

.why-premium-header {
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
}

.why-premium-title {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.15;
  margin-bottom: 12px;
}

.why-premium-title .word-orange {
  color: var(--orange);
}

.why-premium-title .word-navy {
  color: var(--navy);
}

.why-premium-sub {
  font-size: 0.92rem;
  color: var(--text-body);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
}

.why-card {
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 12px;
  padding: 32px 26px 28px;
  height: 100%;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.why-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), var(--orange-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.why-card::after {
  content: '';
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: var(--orange-dim);
  opacity: 0;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.why-card:hover {
  transform: translateY(-8px);
  border-color: rgba(244, 123, 32, 0.25);
  box-shadow: 0 20px 48px rgba(244, 123, 32, 0.12);
}

.why-card:hover::before {
  transform: scaleX(1);
}

.why-card:hover::after {
  opacity: 1;
  transform: scale(1.2);
}

.why-card-num {
  position: absolute;
  top: 16px;
  right: 20px;
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: rgba(10, 22, 40, 0.06);
  line-height: 1;
  transition: color 0.35s ease;
}

.why-card:hover .why-card-num {
  color: rgba(244, 123, 32, 0.15);
}

.why-card-icon {
  width: 58px;
  height: 58px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--orange-dim), rgba(244, 123, 32, 0.06));
  border: 1px solid rgba(244, 123, 32, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  color: var(--orange);
  margin-bottom: 18px;
  transition: all 0.4s ease;
  position: relative;
  z-index: 1;
}

.why-card:hover .why-card-icon {
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: #fff;
  border-color: transparent;
  transform: scale(1.08) rotate(-4deg);
  box-shadow: 0 8px 24px rgba(244, 123, 32, 0.35);
}

.why-card h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
  transition: color 0.3s;
}

.why-card:hover h4 {
  color: var(--orange);
}

.why-card p {
  font-size: 0.84rem;
  color: var(--text-body);
  line-height: 1.7;
  margin: 0;
  position: relative;
  z-index: 1;
}

/* Legacy why-ref */
.why-ref {
  padding: 56px 0;
  background: #f8f9fb;
}

.why-ref .section-heading {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 800;
  text-transform: uppercase;
  color: var(--navy);
  text-align: center;
  margin-bottom: 40px;
}

.why-grid-item {
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.06);
  padding: 24px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  transition: all 0.35s;
  height: 100%;
}

.why-grid-item:hover {
  border-color: var(--orange);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.06);
}

.why-grid-item i {
  width: 40px;
  height: 40px;
  min-width: 40px;
  background: var(--orange-dim);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  font-size: 0.85rem;
}

.why-grid-item span {
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--navy);
}

/* ── Page Header (Inner Pages) ── */
.page-header {
  position: relative;
  padding: 140px 0 70px;
  background: var(--navy);
  overflow: hidden;
}

.page-header-bg {
  position: absolute;
  inset: 0;
  background: url('../images/aerial-view-cargo-ship-cargo-container-harbor.jpg') center/cover;
  opacity: 0.2;
}

.page-header-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(4, 12, 26, 0.95), rgba(10, 22, 40, 0.88));
}

.page-header-content {
  position: relative;
  z-index: 2;
}

.page-header h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: #fff;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.breadcrumb-custom {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}

.breadcrumb-custom a {
  color: rgba(255, 255, 255, 0.5);
}

.breadcrumb-custom a:hover {
  color: var(--orange);
}

.breadcrumb-custom .active {
  color: var(--orange);
}

/* ── Inner Page Sections ── */
.section-padding {
  padding: 90px 0;
}

.section-tag {
  /* display: inline-flex; */
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section-tag::before {
  content: '';
  width: 22px;
  height: 2px;
  background: var(--orange);
}

.section-title {
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 800;
  margin-bottom: 16px;
  text-transform: capitalize;
}

.section-desc {
  font-size: 0.92rem;
  color: var(--text-body);
  line-height: 1.85;
  max-width: 620px;
}

.bg-alt {
  background: #f8f9fb;
}

.bg-white-section {
  background: var(--white);
}

.stats-section {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  padding: 72px 0;
}

.stat-item {
  text-align: center;
  padding: 20px;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.65);
  font-weight: 500;
}

.cta-banner {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  border-radius: 8px;
  padding: 48px 40px;
  position: relative;
  overflow: hidden;
}

.cta-banner h3 {
  color: #fff;
  font-size: clamp(1.3rem, 2.5vw, 1.7rem);
  margin-bottom: 10px;
  text-transform: uppercase;
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 0;
  max-width: 520px;
}

.bg-navy {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.85);
}

.bg-navy .section-title,
.bg-navy h2,
.bg-navy h3 {
  color: #fff;
}

.bg-navy .section-desc {
  color: rgba(255, 255, 255, 0.65);
}

/* Service detail, founder, contact — keep from before */
.service-detail {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 8px;
  padding: 36px 40px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0 32px;
  margin-bottom: 20px;
  transition: all 0.35s;
}

.service-detail:hover {
  border-color: var(--orange);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.07);
  transform: translateX(4px);
}

.service-detail-icon {
  width: 64px;
  height: 64px;
  background: var(--orange-dim);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--orange);
}

.service-detail h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.service-detail p {
  font-size: 0.9rem;
  line-height: 1.85;
  margin-bottom: 14px;
}

.service-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  padding: 0;
}

.service-features li {
  background: var(--orange-dim);
  border: 1px solid rgba(244, 123, 32, 0.25);
  border-radius: 6px;
  padding: 5px 12px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--navy);
}

.founder-card {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 8px;
  padding: 32px;
  display: flex;
  gap: 22px;
  transition: all 0.35s;
  height: 100%;
  border-top: 3px solid var(--orange);
}

.founder-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.08);
}

.founder-avatar {
  width: 72px;
  height: 72px;
  min-width: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 800;
  color: #fff;
}

.founder-name {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.founder-title {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}

.founder-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.founder-tag {
  background: var(--orange-dim);
  border-radius: 4px;
  padding: 4px 10px;
  font-size: 0.75rem;
  font-weight: 500;
}

.vision-item {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 8px;
  padding: 22px 26px;
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 14px;
  transition: all 0.3s;
}

.vision-item:hover {
  border-color: var(--orange);
  transform: translateX(6px);
}

.vision-num {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--orange);
  width: 36px;
  flex-shrink: 0;
}

.vision-item p {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--navy);
  margin: 0;
}

.img-zoom-wrap {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.1);
}

.img-zoom-wrap img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform 0.6s;
}

.img-zoom-wrap:hover img {
  transform: scale(1.06);
}

.solution-card {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.35s;
  height: 100%;
}

.solution-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.08);
  border-color: var(--orange);
}

.solution-img {
  height: 180px;
  overflow: hidden;
}

.solution-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.solution-card:hover .solution-img img {
  transform: scale(1.08);
}

.solution-body {
  padding: 24px;
}

.solution-body h4 {
  font-size: 1rem;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.solution-body p {
  font-size: 0.85rem;
  line-height: 1.7;
  margin: 0;
}

.process-step {
  text-align: center;
  padding: 24px 16px;
}

.process-num {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
}

.process-step h5 {
  font-size: 0.95rem;
  margin-bottom: 6px;
  text-transform: uppercase;
}

.process-step p {
  font-size: 0.82rem;
  color: var(--text-body);
  margin: 0;
  line-height: 1.6;
}

/* Contact */
.contact-info-item {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}

.contact-info-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: var(--orange-dim);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  font-size: 1rem;
}

.contact-info-text h5 {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 4px;
}

.contact-info-text p,
.contact-info-text a {
  font-size: 0.9rem;
  color: var(--text-body);
  line-height: 1.7;
  margin: 0;
}

.contact-info-text a:hover {
  color: var(--orange);
}

.contact-form-wrap {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 8px;
  padding: 36px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
}

.contact-form-wrap h3 {
  font-size: 1.25rem;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.form-control-kesaree {
  background: #f5f7fa;
  border: 1.5px solid rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  padding: 12px 14px;
  font-size: 0.88rem;
  width: 100%;
  transition: border-color 0.25s;
}

.form-control-kesaree:focus {
  border-color: var(--orange);
  outline: none;
  box-shadow: 0 0 0 3px rgba(244, 123, 32, 0.12);
}

.form-label-kesaree {
  font-size: 0.7rem;
  font-weight: 700;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 5px;
  display: block;
}

.map-wrap {
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.08);
  height: 260px;
  margin-top: 20px;
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.form-success {
  display: none;
  text-align: center;
  padding: 12px;
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.3);
  border-radius: 8px;
  color: #16a34a;
  font-weight: 600;
  margin-top: 12px;
  font-size: 0.88rem;
}

.btn-kesaree {
  background: var(--orange);
  color: #fff;
  border: none;
  padding: 13px 28px;
  border-radius: 50px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-kesaree:hover {
  background: var(--orange-light);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(244, 123, 32, 0.35);
}

/* ── Footer Reference ── */
.footer-ref {
  background: var(--peach);
  padding-top: 64px;
}

.footer-ref-logo img {
  height: 56px;
  margin-bottom: 16px;
}

.footer-ref-desc {
  font-size: 0.85rem;
  color: var(--navy);
  line-height: 1.8;
  max-width: 300px;
  margin-bottom: 20px;
}

.footer-ref h5 {
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--orange);
  display: inline-block;
}

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

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

.footer-ref-links a {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  transition: color 0.25s;
}

.footer-ref-links a:hover {
  color: var(--orange);
}

.footer-ref-contact li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 0.85rem;
  color: var(--navy);
  line-height: 1.6;
}

.footer-ref-contact i {
  color: var(--orange);
  margin-top: 3px;
  width: 16px;
}

.footer-ref-social {
  display: flex;
  gap: 10px;
}

.footer-ref-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  transition: all 0.3s;
}

.footer-ref-social a:hover {
  background: var(--orange);
  transform: translateY(-3px);
}

.footer-ref-bar {
  background: var(--orange);
  padding: 16px 0;
  margin-top: 48px;
  text-align: center;
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.04em;
}

/* ── Scroll Reveal ── */
.reveal,
.reveal-left,
.reveal-right {
  opacity: 0;
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal {
  transform: translateY(32px);
}

.reveal-left {
  transform: translateX(-36px);
}

.reveal-right {
  transform: translateX(36px);
}

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

/* ── About Page ── */
.about-page {
  background: var(--white);
}

.t-orange {
  color: var(--orange);
  display: block;
}

.t-navy {
  color: var(--navy);
  display: block;
}

/* Hero */
.about-hero {
  padding: 40px 0 56px;
  background: var(--white);
  overflow: hidden;
  position: relative;
}

.about-hero::before {
  content: '';
  position: absolute;
  right: -120px;
  top: 50%;
  transform: translateY(-50%);
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(244, 123, 32, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.about-hero .container {
  position: relative;
  z-index: 1;
}

.about-hero-row {
  align-items: stretch;
}

.about-hero-row>[class*="col"] {
  display: flex;
}

.about-hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 8px 24px 8px 0;
}

.about-hero-title {
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  font-weight: 900;
  line-height: 1.06;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin-bottom: 28px;
}

.about-hero-desc {
  font-size: 1.08rem;
  line-height: 1.8;
  color: var(--navy);
  max-width: 520px;
  margin-bottom: 40px;
}

.about-cta-split {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: transform 0.35s ease;
}

.about-cta-split:hover {
  transform: translateX(6px);
}

.about-cta-circle {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--orange);
  color: var(--navy);
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 800;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.35s ease;
}

.about-cta-split:hover .about-cta-circle {
  transform: scale(1.08);
}

.about-cta-text {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-left: -2px;
}

.about-hero-visual {
  position: relative;
  padding: 12px 12px 12px 40px;
  width: 100%;
  height: 100%;
  min-height: 420px;
  max-width: 560px;
  margin-left: auto;
  margin-right: -48px;
  transform: translateX(56px);
  display: flex;
  flex-direction: column;
}

.about-hero-accent {
  position: absolute;
  left: 0;
  top: 8%;
  width: 55%;
  height: 84%;
  background: var(--orange);
  border-radius: 12px;
  z-index: 0;
  opacity: 0.92;
  animation: accentPulse 4s ease-in-out infinite;
}

@keyframes accentPulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.02);
  }
}

.about-hero-img-main {
  position: relative;
  z-index: 1;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 28px 70px rgba(10, 22, 40, 0.18);
  flex: 1;
  width: 100%;
  height: 100%;
  min-height: 380px;
}

.about-hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.08);
  transition: opacity 1.2s ease, transform 6s ease;
}

.about-hero-img.active {
  opacity: 1;
  transform: scale(1);
  animation: heroKenBurns 8s ease-in-out infinite alternate;
}

@keyframes heroKenBurns {
  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(1.06);
  }
}

.about-hero-badge {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  padding: 12px 18px;
  border-radius: 50px;
  box-shadow: 0 10px 32px rgba(10, 22, 40, 0.12);
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.about-hero-badge i {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
}

.about-hero-badge.badge-ship {
  top: 12%;
  left: -8px;
}

.about-hero-badge.badge-air {
  bottom: 14%;
  right: -12px;
}

.about-transport-art {
  position: relative;
  padding: 20px;
}

.transport-svg {
  width: 100%;
  max-width: 520px;
  margin-left: auto;
  display: block;
}

.transport-svg .draw-path {
  stroke-dasharray: 800;
  stroke-dashoffset: 800;
  animation: drawLine 2.5s ease forwards;
}

.transport-svg .draw-path:nth-child(2) {
  animation-delay: 0.2s;
}

.transport-svg .draw-path:nth-child(3) {
  animation-delay: 0.35s;
}

.transport-svg .draw-path:nth-child(4) {
  animation-delay: 0.5s;
}

.transport-svg .draw-path:nth-child(5) {
  animation-delay: 0.65s;
}

.transport-svg .draw-path:nth-child(6) {
  animation-delay: 0.8s;
}

.transport-svg .draw-path:nth-child(7) {
  animation-delay: 0.95s;
}

.transport-svg .draw-path:nth-child(8) {
  animation-delay: 1.1s;
}

.transport-svg .draw-path:nth-child(9) {
  animation-delay: 1.25s;
}

.transport-svg .float-el {
  animation: drawLine 2.5s ease forwards, floatY 4s ease-in-out 2.5s infinite;
}

@keyframes drawLine {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes floatY {

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

  50% {
    transform: translateY(-8px)
  }
}

/* Heritage */
.about-heritage {
  position: relative;
  padding: 72px 0;
  overflow: hidden;
}

.about-heritage-map {
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='800' height='400' viewBox='0 0 800 400'%3E%3Cpath d='M100 200 Q200 150 300 200 T500 200 T700 180' fill='none' stroke='%230a1628' stroke-width='0.5' opacity='0.06'/%3E%3Ccircle cx='400' cy='200' r='180' fill='none' stroke='%230a1628' stroke-width='0.5' opacity='0.04'/%3E%3C/svg%3E") center/cover no-repeat;
  opacity: 0.6;
  pointer-events: none;
}

.about-globe-wrap {
  position: relative;
  max-width: 420px;
  margin: 0 auto;
}

.about-globe {
  width: 340px;
  height: 340px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto;
  border: 4px solid rgba(244, 123, 32, 0.15);
  box-shadow: 0 20px 60px rgba(10, 22, 40, 0.12);
  animation: floatY 5s ease-in-out infinite;
}

.about-globe img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-float-stat {
  position: absolute;
  background: var(--orange);
  color: #fff;
  padding: 16px 22px;
  border-radius: 12px;
  box-shadow: 0 12px 32px rgba(244, 123, 32, 0.3);
  z-index: 2;
  transition: transform 0.35s ease;
}

.about-float-stat:hover {
  transform: scale(1.05);
}

.about-float-stat.stat-top {
  top: 20px;
  left: -10px;
}

.about-float-stat.stat-bottom {
  bottom: 30px;
  right: -10px;
}

.about-float-stat .stat-val {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 900;
  line-height: 1;
}

.about-float-stat .stat-lbl {
  font-size: 0.72rem;
  font-weight: 700;
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

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

.animate-float.delay {
  animation-delay: 1.5s;
}

.about-heritage-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.15;
  margin-bottom: 20px;
}

.about-heritage-text {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text-body);
  margin-bottom: 16px;
}

.about-read-more {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--navy);
  text-decoration: underline;
  text-underline-offset: 4px;
  display: inline-block;
  margin-bottom: 32px;
  transition: color 0.3s;
}

.about-read-more:hover {
  color: var(--orange);
}

.about-team-stat {
  display: flex;
  align-items: center;
  gap: 16px;
}

.about-team-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--grey-card);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  font-size: 1.2rem;
}

.about-team-num {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--navy);
  line-height: 1;
}

.about-team-lbl {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
}

/* Vision */
.about-vision-ref {
  position: relative;
  padding: 90px 0 100px;
  overflow: hidden;
  background: var(--white);
}

.about-vision-ref .container {
  position: relative;
  z-index: 2;
}

.about-vision-rings {
  position: absolute;
  right: 4%;
  top: 50%;
  transform: translateY(-50%);
  width: min(560px, 55vw);
  height: min(560px, 55vw);
  pointer-events: none;
  z-index: 0;
}

.vision-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(10, 22, 40, 0.09);
  animation: visionRingPulse 5s ease-in-out infinite;
}

.vision-ring.ring-1 {
  inset: 0;
}

.vision-ring.ring-2 {
  inset: 44px;
  animation-delay: 0.6s;
}

.vision-ring.ring-3 {
  inset: 88px;
  animation-delay: 1.2s;
}

.vision-ring.ring-4 {
  inset: 132px;
  animation-delay: 1.8s;
}

.vision-ring.ring-5 {
  inset: 176px;
  animation-delay: 2.4s;
  border-color: rgba(244, 123, 32, 0.12);
}

@keyframes visionRingPulse {

  0%,
  100% {
    opacity: 0.35;
    transform: scale(1);
  }

  50% {
    opacity: 0.85;
    transform: scale(1.015);
  }
}

.about-vision-rings::after {
  content: '';
  position: absolute;
  inset: -20px;
  border-radius: 50%;
  border: 1px solid rgba(10, 22, 40, 0.04);
  animation: visionRingSpin 40s linear infinite;
}

@keyframes visionRingSpin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.about-years-badge {
  position: absolute;
  top: 48px;
  right: 48px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 12px 22px 12px 12px;
  background: rgba(232, 234, 237, 0.65);
  border-radius: 50px;
  backdrop-filter: blur(4px);
}

.about-vision-row {
  align-items: flex-end;
  padding-top: 60px;
}

.about-vision-left {
  padding-bottom: 20px;
}

.years-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--grey-card);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  font-size: 1.1rem;
}

.years-num {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--orange);
  line-height: 1;
}

.years-lbl {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--navy);
}

.about-vision-heading {
  font-size: clamp(2.4rem, 4.5vw, 3.4rem);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.05;
  margin-bottom: 14px;
}

.about-vision-heading .word-orange {
  color: var(--orange);
  display: block;
}

.about-vision-heading .word-navy {
  color: var(--navy);
  display: block;
}

.about-vision-sub {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 16px;
}

.about-vision-desc {
  font-size: 0.92rem;
  line-height: 1.75;
  color: var(--text-body);
  max-width: 400px;
}

.vision-stack {
  position: relative;
  z-index: 2;
  padding: 10px 0 10px 10px;
  min-height: 420px;
}

.vision-stack-card {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  background: var(--white);
  border-radius: 16px;
  padding: 26px 30px;
  margin-bottom: -28px;
  box-shadow: 0 10px 36px rgba(10, 22, 40, 0.09);
  border: 1px solid rgba(10, 22, 40, 0.05);
  cursor: pointer;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 1;
  width: 88%;
}

.vision-stack-card:last-child {
  margin-bottom: 0;
}

.vision-stack-card.card-offset-left {
  margin-left: 0;
  margin-right: auto;
}

.vision-stack-card.card-offset-right {
  margin-left: auto;
  margin-right: -8px;
  width: 94%;
  transform: translateX(36px);
}

.vision-stack-card .v-icon {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  transition: all 0.4s ease;
}

.vision-stack-card h4 {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 8px;
  line-height: 1.35;
  transition: color 0.4s;
}

.vision-stack-card p {
  font-size: 0.84rem;
  line-height: 1.65;
  color: var(--text-body);
  margin: 0;
  transition: color 0.4s;
}

.vision-stack-card:hover,
.vision-stack-card.active {
  background: var(--orange);
  z-index: 5;
  box-shadow: 0 20px 52px rgba(244, 123, 32, 0.38);
}

.vision-stack-card.card-offset-left:hover,
.vision-stack-card.card-offset-left.active {
  transform: translateX(-10px) scale(1.02);
}

.vision-stack-card.card-offset-right:hover,
.vision-stack-card.card-offset-right.active {
  transform: translateX(20px) scale(1.02);
}

.vision-stack-card:hover .v-icon,
.vision-stack-card.active .v-icon {
  background: #fff;
  color: var(--orange);
}

.vision-stack-card:hover h4,
.vision-stack-card:hover p,
.vision-stack-card.active h4,
.vision-stack-card.active p {
  color: #fff;
}

/* Mission */
.about-mission {
  position: relative;
  padding: 80px 0;
  overflow: hidden;
}

.about-mission-art {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 320px;
  opacity: 0.5;
  pointer-events: none;
}

.about-mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: center;
  position: relative;
}

.about-mission-photo {
  position: relative;
  z-index: 1;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(10, 22, 40, 0.15);
}

.about-mission-photo img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.about-mission-grid:hover .about-mission-photo img {
  transform: scale(1.04);
}

.about-mission-box {
  background: var(--orange);
  color: #fff;
  padding: 48px 44px;
  margin-left: -60px;
  position: relative;
  z-index: 2;
  border-radius: 4px;
  box-shadow: 0 24px 64px rgba(244, 123, 32, 0.3);
}

.about-mission-box h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 900;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 8px;
}

.about-mission-box h3 {
  font-size: 1rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 20px;
}

.about-mission-box p {
  font-size: 0.9rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.92);
  margin: 0;
}

/* Team */
.about-team {
  padding: 80px 0 64px;
  background: var(--white);
}

.about-team-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 900;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 8px;
}

.about-team-sub {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 48px;
}

.team-card {
  background: var(--white);
  border-radius: 16px;
  padding: 40px 32px;
  text-align: center;
  box-shadow: 0 12px 40px rgba(10, 22, 40, 0.08);
  border: 1px solid rgba(10, 22, 40, 0.05);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.team-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 24px 56px rgba(10, 22, 40, 0.14);
}

.team-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  color: #fff;
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 4px solid var(--orange);
  transition: transform 0.4s ease;
  overflow: hidden;
}

.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  border-radius: 50%;
  display: block;
}

.team-card:hover .team-photo {
  transform: scale(1.06);
}

.team-name {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 6px;
}

.team-role {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--orange);
  margin-bottom: 8px;
}

.team-exp {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 12px;
}

.team-desc {
  font-size: 0.85rem;
  color: var(--text-body);
  margin: 0;
}

/* Why compact on about */
.why-premium-compact {
  padding: 56px 0;
  background: var(--peach);
}

.why-mini {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 20px 12px;
  background: var(--white);
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 16px rgba(10, 22, 40, 0.05);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  height: 100%;
}

.why-mini i {
  font-size: 1.3rem;
  color: var(--orange);
}

.why-mini span {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.why-mini:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(10, 22, 40, 0.1);
}

/* ── Services Page ── */
.services-page {
  background: var(--white);
}

.nav-dropdown-wrap {
  position: relative;
  display: inline-block;
}

.nav-dropdown-wrap .dropdown-toggle::after {
  margin-left: 6px;
  vertical-align: middle;
  border-top-color: var(--navy);
}

.services-ref-dropdown {
  border: none;
  border-radius: 8px;
  box-shadow: 0 16px 48px rgba(10, 22, 40, 0.12);
  padding: 10px 0;
  min-width: 240px;
  margin-top: 8px !important;
}

.services-ref-dropdown .dropdown-item {
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--navy);
  padding: 12px 22px;
  transition: all 0.3s ease;
}

.services-ref-dropdown .dropdown-item:hover,
.services-ref-dropdown .dropdown-item.active {
  background: var(--orange);
  color: #fff;
}

.svc-hero {
  padding: 40px 0 56px;
  background: var(--white);
  overflow: hidden;
}

.svc-hero-row {
  align-items: stretch;
}

.svc-hero-row>[class*="col"] {
  display: flex;
}

.svc-hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 8px 24px 8px 0;
}

.svc-hero-title {
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  font-weight: 900;
  line-height: 1.06;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.svc-hero-title .word-orange {
  color: var(--orange);
  display: block;
}

.svc-hero-title .word-navy {
  color: var(--navy);
  display: block;
}

.svc-hero-sub {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 32px;
}

.svc-globe-wrap {
  width: 100%;
  height: 100%;
  min-height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
}

.svc-globe-svg {
  width: 100%;
  max-width: 480px;
  animation: svcGlobeFloat 5s ease-in-out infinite;
}

@keyframes svcGlobeFloat {

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

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

.svc-arc {
  fill: none;
  stroke-dasharray: 400;
  stroke-dashoffset: 400;
  animation: svcArcDraw 4s ease-in-out infinite;
}

.svc-arc.arc-2 {
  animation-delay: 0.8s;
}

.svc-arc.arc-3 {
  animation-delay: 1.6s;
}

.svc-arc.arc-4 {
  animation-delay: 2.4s;
  stroke-dasharray: 8 6;
}

@keyframes svcArcDraw {
  0% {
    stroke-dashoffset: 400;
    opacity: 0.1;
  }

  40%,
  60% {
    stroke-dashoffset: 0;
    opacity: 0.4;
  }

  100% {
    stroke-dashoffset: -400;
    opacity: 0.1;
  }
}

.svc-detail-section {
  padding: 72px 0;
  background: var(--white);
}

.svc-detail-section.svc-alt {
  background: var(--peach);
}

.svc-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.svc-detail-grid.reverse .svc-detail-visual {
  order: 2;
}

.svc-detail-grid.reverse .svc-detail-content {
  order: 1;
}

.svc-detail-visual {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 56px rgba(10, 22, 40, 0.12);
}

.svc-detail-visual img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.svc-detail-grid:hover .svc-detail-visual img {
  transform: scale(1.04);
}

.svc-detail-tag {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
}

.svc-detail-content h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 16px;
  line-height: 1.15;
}

.svc-detail-content h2 .word-orange {
  color: var(--orange);
}

.svc-detail-content p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text-body);
  margin-bottom: 24px;
}

.svc-feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
}

.svc-feature-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--navy);
  padding: 8px 0;
  border-bottom: 1px solid rgba(10, 22, 40, 0.06);
}

.svc-feature-list li i {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--orange-dim);
  color: var(--orange);
  font-size: 0.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.svc-detail-link {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  transition: color 0.3s;
}

.svc-detail-link i {
  margin-left: 8px;
  transition: transform 0.3s;
}

.svc-detail-link:hover {
  color: var(--orange);
}

.svc-detail-link:hover i {
  transform: translateX(4px);
}

.svc-process {
  padding: 72px 0;
  background: var(--white);
}

.svc-process-title {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.svc-process-title .word-orange {
  color: var(--orange);
}

.svc-process-title .word-navy {
  color: var(--navy);
}

.svc-process-sub {
  font-size: 0.92rem;
  color: var(--text-body);
  margin-bottom: 40px;
}

.svc-process-step {
  text-align: center;
  padding: 28px 16px;
  background: var(--peach);
  border-radius: 12px;
  height: 100%;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.svc-process-step:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(10, 22, 40, 0.08);
}

.svc-process-step .step-num {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--orange);
  margin-bottom: 10px;
}

.svc-process-step h5 {
  font-size: 0.92rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 8px;
  text-transform: uppercase;
}

.svc-process-step p {
  font-size: 0.82rem;
  color: var(--text-body);
  margin: 0;
  line-height: 1.6;
}

/* Service Hub Grid */
.svc-hub-section {
  padding: 64px 0 72px;
  background: var(--white);
}

.svc-hub-layout {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  grid-template-rows: auto auto;
  gap: 20px 28px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

.svc-hub-side {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.svc-hub-box {
  border: 2px dashed rgba(10, 22, 40, 0.3);
  border-radius: 14px;
  padding: 16px 12px;
  text-align: center;
  font-family: var(--font-heading);
  font-size: clamp(0.68rem, 1.2vw, 0.78rem);
  font-weight: 700;
  color: var(--navy);
  background: var(--white);
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1.35;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: default;
}

.svc-hub-box:hover {
  border-color: var(--orange);
  border-style: solid;
  color: var(--orange);
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 10px 28px rgba(244, 123, 32, 0.18);
}

.svc-hub-center {
  width: 210px;
  height: 210px;
  border-radius: 50%;
  border: 2px solid rgba(10, 22, 40, 0.1);
  background: #f8f9fb;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  flex-shrink: 0;
  animation: hubCenterPulse 4s ease-in-out infinite;
  box-shadow: 0 12px 40px rgba(10, 22, 40, 0.06);
}

@keyframes hubCenterPulse {

  0%,
  100% {
    box-shadow: 0 12px 40px rgba(10, 22, 40, 0.06);
  }

  50% {
    box-shadow: 0 16px 48px rgba(244, 123, 32, 0.12);
  }
}

.svc-hub-center img {
  width: 130px;
  height: auto;
  object-fit: contain;
}

.svc-hub-years {
  position: absolute;
  bottom: 22px;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--orange);
  letter-spacing: 0.04em;
}

.svc-hub-footer {
  grid-column: 1 / -1;
  display: flex;
  justify-content: center;
}

.svc-hub-wide {
  max-width: 520px;
  width: 100%;
  min-height: 58px;
  font-size: 0.82rem;
}

/* Case Study */
.svc-case-study {
  padding: 0 0 80px;
  background: var(--white);
}

.svc-case-wrap {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  min-height: 380px;
}

.svc-case-img {
  position: absolute;
  right: 0;
  top: 0;
  width: 72%;
  height: 100%;
  border-radius: 0 0 0 80px;
  overflow: hidden;
  z-index: 1;
}

.svc-case-img img {
  width: 100%;
  height: 100%;
  min-height: 380px;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.svc-case-wrap:hover .svc-case-img img {
  transform: scale(1.04);
}

.svc-case-orange {
  position: relative;
  z-index: 2;
  width: 52%;
  max-width: 520px;
  background: var(--orange);
  background-image: repeating-linear-gradient(90deg,
      transparent,
      transparent 18px,
      rgba(0, 0, 0, 0.04) 18px,
      rgba(0, 0, 0, 0.04) 20px);
  padding: 48px 44px 48px 48px;
  border-radius: 0 16px 16px 0;
  color: #fff;
  margin-top: 40px;
  box-shadow: 0 24px 64px rgba(244, 123, 32, 0.35);
  animation: caseSlideIn 0.9s ease forwards;
}

@keyframes caseSlideIn {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }

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

.svc-case-orange h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 900;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 14px;
  letter-spacing: 0.02em;
}

.svc-case-orange p {
  font-size: 0.92rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 32px;
}

.svc-case-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.svc-case-stat .stat-lbl {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 6px;
}

.svc-case-stat .stat-val {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 900;
  color: #fff;
  line-height: 1;
}

.svc-case-logo-badge {
  position: absolute;
  right: calc(52% - 60px);
  top: 50%;
  transform: translateY(-50%);
  z-index: 4;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 12px 40px rgba(10, 22, 40, 0.15);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 12px;
  border: 3px solid rgba(244, 123, 32, 0.2);
}

.svc-case-logo-badge img {
  width: 72px;
  height: auto;
  object-fit: contain;
}

.svc-case-logo-badge span {
  font-family: var(--font-heading);
  font-size: 0.62rem;
  font-weight: 800;
  color: var(--orange);
  margin-top: 4px;
  letter-spacing: 0.03em;
}

/* ── Solutions Page ── */
.solutions-page {
  background: var(--white);
}

.sol-hero {
  padding: 40px 0 48px;
  background: var(--white);
  position: relative;
  overflow: hidden;
}

.sol-hero-dots {
  position: absolute;
  right: 40px;
  bottom: 40px;
  width: 60px;
  height: 60px;
  background-image: radial-gradient(circle, rgba(10, 22, 40, 0.18) 1.5px, transparent 1.5px);
  background-size: 12px 12px;
  opacity: 0.5;
  pointer-events: none;
}

.sol-hero-row {
  align-items: stretch;
}

.sol-hero-row>[class*="col"] {
  display: flex;
}

.sol-hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 8px 24px 8px 0;
}

.sol-hero-title {
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  font-weight: 900;
  line-height: 1.06;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.sol-hero-title .word-orange {
  color: var(--orange);
  display: block;
}

.sol-hero-title .word-navy {
  color: var(--navy);
  display: block;
}

.sol-hero-sub {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.65;
  max-width: 460px;
  margin-bottom: 32px;
}

.sol-puzzle-art {
  width: 100%;
  height: 100%;
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sol-puzzle-svg {
  width: 100%;
  max-width: 480px;
  animation: svcGlobeFloat 5s ease-in-out infinite;
}

.sol-puzzle-svg .puzzle-line {
  stroke-dasharray: 600;
  stroke-dashoffset: 600;
  animation: drawLine 3s ease forwards;
}

.sol-puzzle-svg .puzzle-line:nth-child(2) {
  animation-delay: 0.4s;
}

.sol-puzzle-svg .puzzle-line:nth-child(4) {
  animation-delay: 0.8s;
}

.sol-puzzle-svg .puzzle-line:nth-child(5) {
  animation-delay: 1.2s;
}

.sol-best-header {
  padding: 56px 0 64px;
  background: var(--white);
}

.sol-best-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.sol-best-title .word-orange {
  color: var(--orange);
}

.sol-best-title .word-navy {
  color: var(--navy);
}

.sol-best-desc {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy);
  max-width: 680px;
  margin: 0 auto;
  line-height: 1.7;
}

.sol-block {
  position: relative;
  padding: 72px 0;
  overflow: hidden;
  background: var(--white);
}

.sol-brush {
  position: absolute;
  width: 55%;
  height: 80%;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 50% 40% 60% 50%;
  background: radial-gradient(ellipse at center, rgba(253, 243, 238, 0.95) 0%, rgba(253, 243, 238, 0.4) 55%, transparent 75%);
  pointer-events: none;
  z-index: 0;
  animation: solBrushPulse 6s ease-in-out infinite;
}

@keyframes solBrushPulse {

  0%,
  100% {
    opacity: 0.85;
    transform: translateY(-50%) scale(1);
  }

  50% {
    opacity: 1;
    transform: translateY(-50%) scale(1.03);
  }
}

.sol-brush.brush-right {
  right: -8%;
}

.sol-brush.brush-left {
  left: -8%;
}

.sol-dots {
  position: absolute;
  width: 50px;
  height: 120px;
  background-image: radial-gradient(circle, rgba(10, 22, 40, 0.15) 1.5px, transparent 1.5px);
  background-size: 10px 10px;
  pointer-events: none;
  z-index: 0;
  opacity: 0.6;
}

.sol-dots.dots-right {
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
}

.sol-dots.dots-left {
  left: 24px;
  top: 30%;
}

.sol-block .container {
  position: relative;
  z-index: 1;
}

.sol-block-text h2 {
  font-size: clamp(1.4rem, 2.8vw, 2rem);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.2;
  margin-bottom: 20px;
}

.sol-block-text h2 .word-orange {
  color: var(--orange);
}

.sol-block-text h2 .word-navy {
  color: var(--navy);
}

.sol-block-text p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text-body);
  max-width: 480px;
  margin: 0;
}

.sol-block-img {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 56px rgba(10, 22, 40, 0.12);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.sol-block-img:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 64px rgba(10, 22, 40, 0.16);
}

.sol-block-img img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.sol-block-img:hover img {
  transform: scale(1.04);
}

.sol-logo-img {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 56px rgba(10, 22, 40, 0.12);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.sol-logo-img:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 64px rgba(10, 22, 40, 0.16);
}

.sol-kesaree-logo {
  width: 100% !important;
  height: 320px !important;
  object-fit: cover !important;
  display: block;
  transition: transform 0.6s ease;
}

.sol-logo-img:hover .sol-kesaree-logo {
  transform: scale(1.04);
}

/* Tech mockup */
.sol-tech-card {
  background: var(--white);
  padding: 0;
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sol-tech-mock {
  width: 100%;
  padding: 28px 32px;
  font-family: var(--font-body);
}

.mock-header {
  display: flex;
  gap: 6px;
  margin-bottom: 20px;
}

.mock-header span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--grey-card);
}

.mock-header span:first-child {
  background: #ff6b6b;
}

.mock-header span:nth-child(2) {
  background: #ffd93d;
}

.mock-header span:nth-child(3) {
  background: #6bcb77;
}

.mock-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid rgba(10, 22, 40, 0.06);
  font-size: 0.85rem;
}

.mock-label {
  color: var(--text-body);
  font-weight: 500;
}

.mock-val {
  color: var(--navy);
  font-weight: 700;
  font-family: var(--font-heading);
}

.mock-green {
  color: #2ecc71;
}

.mock-bar {
  margin-top: 20px;
  height: 8px;
  background: var(--grey-card);
  border-radius: 4px;
  overflow: hidden;
}

.mock-fill {
  height: 100%;
  width: 72%;
  background: linear-gradient(90deg, var(--orange), var(--orange-light));
  border-radius: 4px;
  animation: mockProgress 3s ease-in-out infinite alternate;
}

@keyframes mockProgress {
  from {
    width: 55%;
  }

  to {
    width: 88%;
  }
}

/* ── Contact Page ── */
.contact-page {
  background: var(--white);
}

.contact-hero {
  padding: 10px 0 0;
  background: var(--white);
  overflow: visible;
}

.contact-hero-row {
  align-items: center;
}

.contact-hero-row>[class*="col"] {
  display: flex;
}

.contact-hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  padding: 6px 0 10px;
}

.contact-hero-title {
  font-size: clamp(2.85rem, 5.8vw, 4.6rem);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 0.98;
  margin-bottom: 14px;
  letter-spacing: -0.02em;
}

.contact-hero-title .word-orange {
  color: var(--orange);
  display: block;
}

.contact-hero-title .word-navy {
  color: var(--navy);
  display: block;
}

.contact-hero-sub {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy);
  max-width: 360px;
  line-height: 1.6;
}

.contact-handshake-wrap {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.contact-mesh-img {
  width: 100%;
  max-width: 580px;
  height: auto;
  display: block;
  object-fit: contain;
  object-position: center right;
}

.contact-section-title {
  padding: 20px 0 44px;
  text-align: center;
}

.contact-section-title h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.05rem, 2.2vw, 1.35rem);
  font-weight: 700;
  color: var(--navy);
  max-width: 720px;
  margin: 0 auto;
  line-height: 1.55;
  letter-spacing: -0.01em;
}

/* Slanted Cards */
.contact-cards-section {
  padding: 0 0 80px;
}

.contact-cards-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
  max-width: 1100px;
  margin: 0 auto;
}

.contact-slant-card {
  position: relative;
  background: var(--white);
  box-shadow: 0 6px 28px rgba(10, 22, 40, 0.08);
  border-radius: 0;
  overflow: hidden;
  transition: transform 0.45s cubic-bezier(0.34, 1.2, 0.64, 1), box-shadow 0.45s ease;
  min-height: 240px;
  border: none;
  cursor: default;
}

.contact-slant-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 42%, rgba(244, 123, 32, 0.07) 50%, transparent 58%);
  transform: translateX(-120%);
  transition: transform 0.65s ease;
  pointer-events: none;
  z-index: 3;
}

.contact-slant-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--orange);
  transition: width 0.45s cubic-bezier(0.34, 1.2, 0.64, 1);
  z-index: 2;
}

.contact-slant-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 18px 48px rgba(10, 22, 40, 0.14);
}

.contact-slant-card:hover::before {
  transform: translateX(120%);
}

.contact-slant-card:hover::after {
  width: 100%;
}

.contact-slant-card.reveal {
  opacity: 0;
  transform: translateY(50px) scale(0.95);
  transition: none;
}

.contact-slant-card.reveal.visible {
  animation: contactCardIn 0.7s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes contactCardIn {
  from {
    opacity: 0;
    transform: translateY(50px) scale(0.95);
  }

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

.slant-icon-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 88px;
  height: 76px;
  background: var(--grey-card);
  clip-path: polygon(0 0, 100% 0, 0 100%);
  z-index: 4;
  transition: background 0.4s ease, transform 0.4s cubic-bezier(0.34, 1.2, 0.64, 1);
  transform-origin: top left;
}

.contact-slant-card:hover .slant-icon-wrap {
  background: var(--orange);
  transform: scale(1.08);
}

.contact-slant-card.reveal.visible .slant-icon-wrap {
  animation: slantCornerIn 0.55s cubic-bezier(0.34, 1.4, 0.64, 1) both;
}

@keyframes slantCornerIn {
  from {
    opacity: 0;
    transform: scale(0.6);
  }

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

.slant-icon-wrap.orange {
  background: var(--orange);
}

.slant-icon {
  position: absolute;
  top: 16px;
  left: 16px;
  font-size: 1.25rem;
  color: var(--orange);
  transition: color 0.35s ease, transform 0.35s cubic-bezier(0.34, 1.4, 0.64, 1);
}

.contact-slant-card:hover .slant-icon {
  color: #fff;
  transform: scale(1.2);
}

.contact-slant-card.reveal.visible .slant-icon {
  animation: slantIconPop 0.5s cubic-bezier(0.34, 1.6, 0.64, 1) 0.25s both;
}

@keyframes slantIconPop {
  from {
    transform: scale(0) rotate(-20deg);
    opacity: 0;
  }

  70% {
    transform: scale(1.25) rotate(4deg);
  }

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

.contact-slant-card:hover .slant-icon .fa-map-marker-alt {
  animation: pinBounce 0.55s ease;
}

.contact-slant-card:hover .slant-icon .fa-envelope {
  animation: envelopeWiggle 0.55s ease;
}

.contact-slant-card:hover .slant-icon .fa-phone-alt {
  animation: phoneRing 0.55s ease;
}

@keyframes pinBounce {

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

  40% {
    transform: translateY(-7px);
  }

  70% {
    transform: translateY(2px);
  }
}

@keyframes envelopeWiggle {

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

  25% {
    transform: rotate(-8deg);
  }

  75% {
    transform: rotate(8deg);
  }
}

@keyframes phoneRing {

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

  15% {
    transform: rotate(-12deg);
  }

  30% {
    transform: rotate(12deg);
  }

  45% {
    transform: rotate(-10deg);
  }

  60% {
    transform: rotate(10deg);
  }
}

.slant-icon-wrap.orange .slant-icon {
  color: #fff;
}

.slant-body {
  padding: 48px 28px 32px;
  position: relative;
  z-index: 2;
  transition: transform 0.4s ease;
}

.contact-slant-card:hover .slant-body {
  transform: translateX(4px);
}

.slant-body h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 800;
  color: var(--orange);
  margin-bottom: 16px;
  text-transform: capitalize;
  transition: color 0.35s ease, letter-spacing 0.35s ease;
}

.contact-slant-card:hover .slant-body h3 {
  letter-spacing: 0.02em;
}

.slant-body p {
  font-size: 0.88rem;
  line-height: 1.75;
  color: var(--text-body);
  margin-bottom: 12px;
  transition: transform 0.35s ease, opacity 0.35s ease;
}

.contact-slant-card:hover .slant-body p {
  transform: translateX(2px);
}

.slant-body a {
  color: var(--navy);
  font-weight: 600;
  transition: color 0.3s, transform 0.3s;
  display: inline-block;
}

.slant-body a:hover {
  color: var(--orange);
  transform: translateX(3px);
}

.text-muted-small {
  font-size: 0.78rem;
  color: #888;
}

/* Map */
.contact-map-section {
  padding: 0 0 80px;
  background: var(--white);
}

.contact-map-title {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 900;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 10px;
}

.contact-map-sub {
  font-size: 0.9rem;
  color: var(--text-body);
  margin-bottom: 32px;
}

.contact-map-wrap {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(10, 22, 40, 0.1);
  height: 420px;
  animation: mapFadeIn 1s ease forwards;
}

@keyframes mapFadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

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

.contact-map-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.map-tab {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  background: var(--orange);
  color: #fff;
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 8px 18px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.map-legend {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  background: var(--white);
  padding: 8px 14px;
  border-radius: 4px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--navy);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  gap: 8px;
}

.legend-pin {
  width: 10px;
  height: 10px;
  background: var(--orange);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
}

/* Form Section */
.contact-form-section {
  padding: 0 0 80px;
  background: var(--white);
}

.contact-form-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 0;
  align-items: stretch;
  max-width: 960px;
  margin: 0 auto;
  position: relative;
}

.contact-thank-box {
  background: var(--orange);
  color: #fff;
  padding: 48px 40px;
  border-radius: 8px 0 0 8px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 480px;
  animation: caseSlideIn 0.9s ease forwards;
}

.contact-thank-box h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 900;
  color: #fff;
  margin-bottom: 24px;
}

.contact-thank-box p {
  font-size: 0.88rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}

.thank-plane-wrap {
  position: relative;
  height: 100px;
  margin-bottom: 24px;
}

.thank-plane-svg {
  width: 100%;
  max-width: 200px;
  height: 100%;
}

.plane-trail {
  animation: planeTrail 3s ease-in-out infinite;
}

@keyframes planeTrail {

  0%,
  100% {
    stroke-dashoffset: 0;
    opacity: 0.4;
  }

  50% {
    stroke-dashoffset: 20;
    opacity: 0.8;
  }
}

.thank-plane {
  position: absolute;
  top: 20px;
  left: 0;
  font-size: 1.8rem;
  color: #fff;
  animation: planeFly 3s ease-in-out infinite;
}

@keyframes planeFly {
  0% {
    transform: translate(0, 0) rotate(0deg);
    opacity: 0.7;
  }

  50% {
    transform: translate(120px, -20px) rotate(15deg);
    opacity: 1;
  }

  100% {
    transform: translate(0, 0) rotate(0deg);
    opacity: 0.7;
  }
}

.contact-form-card {
  background: var(--white);
  padding: 48px 44px;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(10, 22, 40, 0.12);
  margin-left: -40px;
  position: relative;
  z-index: 2;
  align-self: center;
  animation: formSlideIn 0.9s ease 0.2s both;
}

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

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

.contact-field {
  margin-bottom: 24px;
}

.contact-field input,
.contact-field select,
.contact-field textarea {
  width: 100%;
  border: none;
  border-bottom: 1px solid rgba(10, 22, 40, 0.15);
  background: transparent;
  padding: 10px 0;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--navy);
  outline: none;
  transition: border-color 0.3s;
}

.contact-field input:focus,
.contact-field select:focus,
.contact-field textarea:focus {
  border-bottom-color: var(--orange);
}

.contact-field input::placeholder,
.contact-field textarea::placeholder {
  color: #aaa;
  font-weight: 400;
}

.contact-field select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%230a1628' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0 center;
}

.contact-field textarea {
  resize: vertical;
  min-height: 80px;
}

.contact-send-btn {
  display: block;
  margin: 32px auto 0;
  background: var(--orange);
  color: #fff;
  border: none;
  padding: 14px 56px;
  border-radius: 50px;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.contact-send-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(244, 123, 32, 0.4);
}

.contact-form-card .form-success {
  display: none;
  margin-top: 16px;
  text-align: center;
  font-size: 0.85rem;
  color: #2ecc71;
  font-weight: 600;
}

/* ── Responsive ── */
@media (max-width: 991.98px) {
  .navbar-ref .nav-center {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }

  .navbar-ref .nav-link {
    padding: 10px 0 !important;
  }

  .services-ref-split {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .services-ref-divider {
    width: 100%;
    height: 2px;
    min-height: auto;
    background: linear-gradient(to right, transparent, var(--navy) 20%, var(--navy) 80%, transparent);
  }

  .service-slant-card {
    flex: 0 0 calc(50% - 12px);
  }

  .about-split-badge {
    right: 10px;
    bottom: -10px;
  }

  .about-split-visual {
    animation: none;
  }

  .efficiency-section {
    padding: 24px 0 8px;
  }

  .efficiency-visual {
    justify-content: center;
    padding-right: 0;
  }

  .efficiency-circle {
    width: 220px;
    height: 220px;
  }

  .efficiency-circle-accent {
    right: calc(50% - 118px);
    width: 44px;
    height: 44px;
  }

  .efficiency-play-icon {
    width: 54px;
    height: 54px;
    font-size: 1rem;
  }

  .carousel-nav {
    display: none;
  }

  .service-detail {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .svc-detail-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .svc-detail-grid.reverse .svc-detail-visual,
  .svc-detail-grid.reverse .svc-detail-content {
    order: unset;
  }

  .svc-globe-wrap {
    min-height: 260px;
  }

  .services-ref-dropdown {
    min-width: 100%;
  }

  .svc-hub-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .svc-hub-center {
    grid-column: 1;
    grid-row: 1;
    margin: 0 auto;
  }

  .svc-hub-left {
    grid-column: 1;
    grid-row: 2;
  }

  .svc-hub-right {
    grid-column: 1;
    grid-row: 3;
  }

  .svc-hub-footer {
    grid-column: 1;
    grid-row: 4;
  }

  .svc-hub-side {
    grid-template-columns: 1fr 1fr;
  }

  .svc-case-wrap {
    min-height: auto;
    padding-bottom: 40px;
  }

  .svc-case-img {
    position: relative;
    width: 100%;
    border-radius: 0 0 40px 40px;
  }

  .svc-case-img img {
    min-height: 260px;
  }

  .svc-case-orange {
    width: 92%;
    margin: -40px auto 0;
    border-radius: 12px;
    padding: 32px 28px;
  }

  .svc-case-logo-badge {
    right: 50%;
    top: auto;
    bottom: -20px;
    transform: translateX(50%);
  }
}

@media (max-width: 767.98px) {
  .hero-cinematic {
    min-height: 85vh;
    min-height: 85dvh;
  }

  .hero-cinematic-content {
    padding: 40px 0 80px;
  }

  .hero-cinematic-logo img {
    height: 56px;
  }

  .hero-cinematic-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-ref {
    padding: 40px 0 60px;
    min-height: auto;
  }

  .service-slant-card {
    flex: 0 0 85%;
    min-width: 260px;
  }

  .dual-card {
    padding: 32px 24px;
    min-height: auto;
  }

  .stats-inline {
    gap: 20px;
  }

  .about-split {
    padding: 64px 0;
  }

  .about-split-badge {
    position: relative;
    bottom: auto;
    right: auto;
    margin: 16px auto 0;
    max-width: 100%;
    text-align: center;
  }

  .about-split-title .line-orange,
  .about-split-title .line-navy {
    display: inline;
  }

  .founder-card {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .founder-tags {
    justify-content: center;
  }

  .about-hero {
    padding: 32px 0 36px;
  }

  .about-hero-row>[class*="col"] {
    display: block;
  }

  .about-hero-content {
    padding: 0;
    height: auto;
  }

  .about-hero-title {
    font-size: 1.9rem;
  }

  .about-hero-visual {
    min-height: 280px;
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
    transform: none;
    padding-left: 24px;
  }

  .about-hero-img-main {
    min-height: 260px;
  }

  .about-hero-badge.badge-ship {
    left: 0;
  }

  .about-hero-badge.badge-air {
    right: 0;
  }

  .about-globe {
    width: 260px;
    height: 260px;
  }

  .about-float-stat.stat-top {
    left: 0;
    top: 0;
  }

  .about-float-stat.stat-bottom {
    right: 0;
    bottom: 10px;
  }

  .about-vision-ref {
    padding: 56px 0 64px;
  }

  .about-years-badge {
    position: relative;
    top: auto;
    right: auto;
    margin-bottom: 24px;
  }

  .about-vision-row {
    padding-top: 0;
    align-items: flex-start;
  }

  .vision-stack {
    padding-left: 0;
    min-height: auto;
  }

  .vision-stack-card {
    width: 100% !important;
    margin-bottom: 16px;
    transform: none !important;
  }

  .vision-stack-card.card-offset-right {
    margin-left: 0;
    margin-right: 0;
  }

  .vision-stack-card:hover,
  .vision-stack-card.active {
    transform: none !important;
  }

  .about-vision-rings {
    width: 320px;
    height: 320px;
    right: -60px;
    opacity: 0.5;
  }

  .about-mission-grid {
    grid-template-columns: 1fr;
  }

  .about-mission-box {
    margin-left: 0;
    margin-top: -40px;
    padding: 32px 24px;
  }

  .about-mission-photo img {
    height: 280px;
  }

  .about-team {
    padding: 56px 0 40px;
  }

  .svc-hero {
    padding: 32px 0 36px;
  }

  .svc-hero-row>[class*="col"] {
    display: block;
  }

  .svc-hero-content {
    padding: 0;
  }

  .svc-globe-wrap {
    min-height: 220px;
  }

  .svc-detail-section {
    padding: 48px 0;
  }

  .svc-detail-visual img {
    height: 220px;
  }

  .svc-hub-side {
    grid-template-columns: 1fr;
  }

  .svc-hub-center {
    width: 180px;
    height: 180px;
  }

  .svc-hub-center img {
    width: 110px;
  }

  .svc-case-stats {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .sol-hero-row>[class*="col"] {
    display: block;
  }

  .sol-hero-content {
    padding: 0;
  }

  .sol-puzzle-art {
    min-height: 220px;
  }

  .sol-block {
    padding: 48px 0;
  }

  .sol-block-img img {
    height: 240px;
  }

  .sol-logo-img {
    min-height: 240px;
  }

  .sol-brush {
    width: 90%;
    height: 60%;
    opacity: 0.6;
  }

  .contact-cards-row {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .contact-slant-card,
  .contact-slant-card.featured {
    transform: none;
  }

  .contact-slant-card:hover,
  .contact-slant-card.featured:hover {
    transform: translateY(-8px);
  }

  .contact-slant-card::before,
  .contact-slant-card:hover::before {
    display: none;
  }

  .contact-slant-card.reveal.visible {
    animation: none;
  }

  .contact-slant-card.reveal.visible .slant-icon-wrap,
  .contact-slant-card.reveal.visible .slant-icon {
    animation: none;
  }

  .slant-body {
    transform: none;
  }

  .slant-icon {
    transform: none;
  }

  .contact-form-grid {
    grid-template-columns: 1fr;
  }

  .contact-thank-box {
    border-radius: 12px 12px 0 0;
    min-height: auto;
  }

  .contact-form-card {
    margin-left: 0;
    margin-top: -20px;
    border-radius: 12px;
  }

  .contact-map-wrap {
    height: 300px;
  }

  .contact-hero {
    padding: 8px 0 0;
  }

  .contact-hero-row {
    min-height: auto;
  }

  .contact-hero-row>[class*="col"] {
    display: block;
  }

  .contact-handshake-wrap {
    max-width: 100%;
    margin: 0 auto;
    justify-content: center;
  }

  .contact-mesh-img {
    max-width: 100%;
  }

  .contact-section-title {
    padding: 24px 0 32px;
  }
}

/* ============================================================
   Contact Form — Validation & WhatsApp Integration Styles
   Added to support inline error messages and success banner.
   No existing rules are overridden.
   ============================================================ */

/* Inline field error text */
.field-error {
  display: none;
  margin-top: 4px;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  color: #e53935;
  letter-spacing: 0.01em;
}

/* Red underline on invalid fields (matches existing bottom-border style) */
.contact-field input.field-invalid,
.contact-field select.field-invalid,
.contact-field textarea.field-invalid {
  border-bottom-color: #e53935 !important;
}

/* Success / confirmation banner */
.form-success {
  display: none;
  margin-top: 14px;
  padding: 12px 18px;
  background: linear-gradient(90deg, #25d366 0%, #128c7e 100%);
  color: #ffffff;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  border-radius: 8px;
  text-align: center;
  letter-spacing: 0.01em;
  animation: fadeInUp 0.35s ease;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}