:root {
  --navy: #052b5c;
  --ocean: #0d6efd;
  --deep: #003c71;
  --orange: #ff8b2b;
  --bg: #f6f9fc;
  --white: #ffffff;
  --text: #11263c;
  --text2: #65758b;
  --border: #e7edf4;
  --shadow-sm: 0 2px 10px rgba(5, 43, 92, 0.06);
  --shadow-md: 0 12px 40px rgba(5, 43, 92, 0.1);
  --shadow-lg: 0 30px 80px rgba(5, 43, 92, 0.18);
  --ease: cubic-bezier(0.22, 0.68, 0, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
.font-display {
  font-family: "Manrope", sans-serif;
  color: var(--navy);
  letter-spacing: -0.02em;
}

a {
  text-decoration: none;
  color: inherit;
}

p {
    text-align: justify;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

.wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}

@media (max-width: 768px) {
  .wrap {
    padding: 0 20px;
  }
}

section {
  position: relative;
}

::selection {
  background: #0d6efd;
  color: #fff;
}

/* Reveal animations */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.9s var(--ease),
    transform 0.9s var(--ease);
}

.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.94);
  transition:
    opacity 0.9s var(--ease),
    transform 0.9s var(--ease);
}

.reveal-scale.in {
  opacity: 1;
  transform: scale(1);
}

@media (prefers-reduced-motion: reduce) {

  .reveal,
  .reveal-scale {
    transition: none;
    opacity: 1;
    transform: none;
  }
}

/* Eyebrow label */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ocean);
  margin-bottom: 18px;
}

.eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: #0d6efd;
  display: inline-block;
}

.section-title {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.12;
  margin-bottom: 20px;
}

@media (min-width: 1024px) {
  .section-title {
    font-size: 40px;
  }
}

.section-sub {
  color: var(--text2);
  font-size: 18px;
  max-width: 620px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 14px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  border: none;
  position: relative;
  overflow: hidden;
  transition:
    transform 0.35s var(--ease),
    box-shadow 0.35s var(--ease),
    background 0.35s var(--ease);
  white-space: nowrap;
}

.btn-primary {
  background: var(--ocean);
  color: #fff;
  transition: all 0.3s ease-in-out;
}

.btn-primary:hover {
  background-color: #0a50ba;
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(6px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.16);
}

.btn-dark {
  background: var(--navy);
  color: #fff;
}

.btn-dark:hover {
  background: var(--deep);
  transform: translateY(-3px);
}

.btn-orange {
  background: #0d6efd;
  color: #fff;
}

.btn-orange:hover {
  transform: translateY(-3px);
}

.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.35);
  transform: scale(0);
  border-radius: 50%;
  opacity: 0;
}

.btn:active::after {
  transform: scale(3);
  opacity: 1;
  transition:
    transform 0.5s,
    opacity 0.8s;
}

/* ===== HEADER (two-tier: logo row, then full nav row below) ===== */
header {
  width: 100%;
  display: flex;
  flex-direction: column;
  transition:
    background 0.4s var(--ease),
    box-shadow 0.4s var(--ease),
    border-color 0.4s var(--ease);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;

}

.header-top {
  height: 64px;
  display: flex;
  align-items: center;
  transition:
    height 0.4s var(--ease),
    background 0.4s var(--ease);
  width: 100%;
}

header.scrolled .header-top {
  height: 0;
  overflow: hidden;
}

@media (max-width: 1079px) {
  header.scrolled .header-top {
    height: 64px;
    overflow: visible;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(14px);
  }

  header.scrolled .header-top .logo {
    color: var(--navy);
  }
}

.header-top .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.header-utility {
  display: none;
  align-items: center;
  gap: 26px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 13.5px;
  font-weight: 500;
}

@media (min-width: 860px) {
  .header-utility {
    display: flex;
  }
}

.header-utility a {
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.3s;
}

.header-utility a:hover {
  color: #fff;
}

.header-utility svg {
  width: 15px;
  height: 15px;
  color: #0d6efd;
}

header.scrolled .header-utility {
  color: var(--text2);
}

header.scrolled .header-utility a:hover {
  color: var(--navy);
}

.header-nav {
  height: 74px;
  display: flex;
  align-items: center;
  /*background: rgba(5, 43, 92, 0.32);*/
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  transition:
    background 0.4s var(--ease),
    height 0.4s var(--ease),
    border-color 0.4s var(--ease),
    box-shadow 0.4s var(--ease);
    border-bottom: 4px solid rgb(27 163 239);
}

.header-nav .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  position: relative;
}

header.scrolled .header-top {
  height: 0;
  opacity: 0;
  overflow: hidden;
  margin: 0;
}

header.scrolled .header-nav {
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  box-shadow: var(--shadow-sm);
  border-color: var(--border);
  height: 82px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  font-size: 20px;
  color: #fff;
  transition: color 0.4s;
}

.logo img {
  height: 75px;
}

header.scrolled .logo {
  color: var(--navy);
}

.logo .mark {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--ocean), var(--deep));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.logo .mark svg {
  width: 22px;
  height: 22px;
}

.logo small {
  display: block;
  font-family: "Inter";
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.7);
}

header.scrolled .logo small {
  color: var(--text2);
}

nav.main-nav {
  display: none;
}

@media (min-width: 1080px) {
  nav.main-nav {
    display: flex;
    align-items: center;
    gap: 2px;
  }
}

nav.main-nav>ul {
  display: flex;
  align-items: center;
  gap: 6px;
}

nav.main-nav>ul>li {
  position: relative;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 10px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 14.5px;
  /*color: rgba(255, 255, 255, 0.92);*/
  color: black;
  position: relative;
  transition: color 0.3s;
}

header.scrolled .nav-link {
  color: var(--text);
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 6px;
  height: 2px;
  background: #0d6efd;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease);
}

.nav-link:hover::after {
  transform: scaleX(1);
}

.nav-link .chev {
  width: 9px;
  height: 9px;
  transition: transform 0.3s;
}

li.has-mega:hover .chev {
  transform: rotate(180deg);
}

.nav-cta {}

@media (max-width: 1079px) {
  .nav-cta {
    display: none;
  }
}

.mega {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  width: 640px;
  background: #fff;
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  padding: 28px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px 24px;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.3s var(--ease),
    transform 0.3s var(--ease),
    visibility 0.3s;
  border: 1px solid var(--border);
}

li.has-mega:hover .mega {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.mega a {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 12px;
  border-radius: 12px;
  transition: background 0.25s;
}

.mega a:hover {
  background: var(--bg);
}

.mega .ic {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: linear-gradient(135deg, #eaf2ff, #f6f9fc);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--ocean);
}

.mega .ic svg {
  width: 18px;
  height: 18px;
}

.mega h5 {
  font-size: 14.5px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 2px;
}

.mega p {
  font-size: 12.5px;
  color: var(--text2);
  line-height: 1.4;
}

/* Simple Dropdown */
.has-dropdown {
  position: relative;
}
.dropdown {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  width: 220px;
  background: #fff;
  border-radius: 8px;
  box-shadow: var(--shadow-lg);
  padding: 12px 7px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease), visibility 0.3s;
  border: 1px solid var(--border);
  list-style: none;
  z-index: 100;
  margin: 0;
}
li.has-dropdown:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.dropdown li a {
  display: block;
  padding: 12px 16px;
  color: var(--navy);
  font-weight: 500;
  font-size: 14.5px;
  border-radius: 10px;
  transition: background 0.25s, color 0.25s;
}
.dropdown li a:hover {
  background: var(--bg);
  color: var(--primary);
}

.head-right {
  display: flex;
  align-items: center;
  gap: 18px;
}

.burger {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  transition: border-color 0.3s;
}

header.scrolled .burger {
  border-color: var(--border);
}

.burger span {
  width: 20px;
  height: 2px;
  background: #fff;
  transition: background 0.3s;
}

header.scrolled .burger span {
  background: var(--navy);
}

@media (min-width: 1080px) {
  .burger {
    display: none;
  }
}

/* Mobile menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--navy);
  z-index: 1100;
  transform: translateY(-100%);
  transition: transform 0.5s var(--ease);
  display: flex;
  flex-direction: column;
  padding: 32px;
  overflow-y: auto;
}

.mobile-menu.open {
  transform: translateY(0);
}

.mobile-menu .close-x {
  align-self: flex-end;
  width: 44px;
  height: 44px;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  border-radius: 12px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.mobile-menu ul {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mobile-menu a {
  color: #fff;
  font-size: 26px;
  font-weight: 700;
  font-family: "Manrope";
  /*padding: 14px 0;*/
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu .btn {
  margin-top: 30px;
  width: 100%;
}

.mobile-dropdown-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-dropdown-toggle a {
  border-bottom: none;
  flex: 1;
}

/* Styles the chevron arrow and sets up the rotation animation */
.mob-chev {
  width: 24px;
  height: 24px;
  color: #fff;
  transition: transform 0.3s var(--ease);
  cursor: pointer;
  padding: 10px;
  box-sizing: content-box;
}

/* Rotates the chevron 180 degrees when the menu is 'open' */
.mobile-has-dropdown.open .mob-chev {
  transform: rotate(180deg);
}

/* Hides the sub-menu by default and styles the dark background */
.mobile-dropdown-menu {
  display: none !important;
  margin-top: 0 !important;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  padding: 10px 20px;
  margin-bottom: 6px;
}

/* Shows the sub-menu when the 'open' class is toggled by JavaScript */
.mobile-has-dropdown.open .mobile-dropdown-menu {
  display: flex !important;
}

/* Slightly smaller font for sub-menu items to differentiate them */
.mobile-dropdown-menu a {
  font-size: 18px;
  font-weight: 500;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* Removes the bottom border on the last item so it looks clean */
.mobile-dropdown-menu li:last-child a {
  border-bottom: none;
}


/* ===== HERO ===== */
.hero {
  height: 100vh;
  min-height: 720px;
  position: relative;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: #08213f;
}

.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-bg video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  /*transform: translate(-50%, -50%) scale(1.02);*/
  transform: translate(-50%, -50%);
  object-fit: cover;
}

.hero-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
      rgba(3, 20, 42, 0.5) 0%,
      rgba(3, 20, 42, 0.08) 32%,
      rgba(3, 20, 42, 0.1) 55%,
      rgba(3, 20, 42, 0.85) 100%);
}

.hero-content {
  position: relative;
  z-index: 3;
  width: 100%;
  padding-top: 170px;
  padding-bottom: 64px;
}

.hero .wrap {
  display: block;
}

.hero-loc {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 20px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 7px 15px;
  border-radius: 999px;
  backdrop-filter: blur(6px);
  background: rgba(3, 20, 42, 0.25);
}

.hero-loc svg {
  width: 13px;
  height: 13px;
}

.hero h1 {
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -0.03em;
  max-width: 640px;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.35);
}

@media (min-width: 640px) {
  .hero h1 {
    font-size: 48px;
  }
}

@media (min-width: 1200px) {
  .hero h1 {
    font-size: 46px;
  }
}

.hero p.lead {
  color: rgba(255, 255, 255, 0.85);
  font-size: 16.5px;
  max-width: 420px;
  margin: 18px 0 30px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 54px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(10px);
  max-width: 640px;
}

@media (min-width: 720px) {
  .hero-stats {
    grid-template-columns: repeat(4, 1fr);
  }
}

.stat-card {
  background: rgba(3, 20, 42, 0.35);
  padding: 16px 18px;
  display: flex;
  align-items: baseline;
  gap: 8px;
  flex-wrap: wrap;
  transition: background 0.4s;
}

.stat-card:hover {
  background: rgba(3, 20, 42, 0.55);
}

.stat-card .num {
  font-family: "Manrope";
  font-weight: 800;
  font-size: 22px;
  color: #fff;
}

.stat-card .num span {
  color: #0d6efd;
}

.stat-card .lbl {
  color: rgba(255, 255, 255, 0.65);
  font-size: 11.5px;
  font-weight: 500;
}

.mk-cnt {
  margin-top: 40px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  transform: translateX(-50%);
  left: 50%;
}

.hero-wave {
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  z-index: 2;
  line-height: 0;
}

.hero-wave svg {
  width: 100%;
  height: auto;
  display: block;
}

.hero-wave .wv1 {
  animation: waveMove 18s linear infinite;
}

.hero-wave .wv2 {
  animation: waveMove 26s linear infinite reverse;
  opacity: 0.5;
}

@keyframes waveMove {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.scroll-cue {
  position: absolute;
  bottom: 110px;
  right: 40px;
  z-index: 3;
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.6);
}

@media (min-width: 900px) {
  .scroll-cue {
    display: flex;
  }
}

.scroll-cue .line {
  width: 1px;
  height: 46px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.8), transparent);
  animation: scrollLine 2.2s var(--ease) infinite;
}

@keyframes scrollLine {
  0% {
    transform: scaleY(0);
    transform-origin: top;
  }

  50% {
    transform: scaleY(1);
    transform-origin: top;
  }

  51% {
    transform-origin: bottom;
  }

  100% {
    transform: scaleY(0);
    transform-origin: bottom;
  }
}

.scroll-cue span {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

/* ===== WAYPOINT RAIL (signature element) ===== */
.rail {
  position: fixed;
  right: 26px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 900;
  display: none;
  flex-direction: column;
  align-items: flex-end;
  gap: 0;
}

@media (min-width: 1280px) {
  .rail {
    display: flex;
  }
}

.rail-line {
  position: absolute;
  right: 5px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: repeating-linear-gradient(180deg,
      var(--border) 0 6px,
      transparent 6px 12px);
}

.rail-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 0;
  cursor: pointer;
}

.rail-label {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--text2);
  text-transform: uppercase;
  opacity: 0;
  transform: translateX(8px);
  transition: all 0.35s var(--ease);
  white-space: nowrap;
}

.rail-item:hover .rail-label,
.rail-item.active .rail-label {
  opacity: 1;
  transform: translateX(0);
  color: var(--navy);
}

.rail-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--border);
  position: relative;
  z-index: 2;
  transition: all 0.35s var(--ease);
  flex-shrink: 0;
}

.rail-item.active .rail-dot {
  background: #0d6efd;
  border-color: #0d6efd;
  box-shadow: 0 0 0 5px rgba(255, 139, 43, 0.18);
}

.rail-item:hover .rail-dot {
  border-color: var(--ocean);
}

/* ===== TRUSTED CLIENTS ===== */
.clients {
  padding: 64px 0;
  background: #fff;
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

.clients .cap {
  text-align: center;
  color: var(--text2);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 34px;
}

.marquee {
  display: flex;
  width: max-content;
  animation: scrollX 32s linear infinite;
}

.marquee:hover {
  animation-play-state: paused;
}

@keyframes scrollX {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.marquee .item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 190px;
  height: 70px;
  margin: 0 18px;
  filter: grayscale(1) opacity(0.45);
  transition: filter 0.4s;
  font-family: "Manrope";
  font-weight: 800;
  font-size: 20px;
  color: var(--navy);
}

.marquee .item:hover {
  filter: grayscale(0) opacity(1);
}

/* ===== ABOUT ===== */
.about {
  padding: 130px 0;
  background: var(--bg);
}

@media (max-width: 768px) {
  .about {
    padding: 60px 0;
  }
}

.about .wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: 70px;
  align-items: center;
}

@media (min-width: 1000px) {
  .about .wrap {
    grid-template-columns: 1fr 1fr;
  }
}

.about-img {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-img img {
  height: 600px;
  object-fit: cover;
  transition: transform 1.2s var(--ease);
}

@media (max-width: 768px) {
  .about-img img {
    height: 350px;
    object-position: left;
  }
}

.about-img:hover img {
  transform: scale(1.05);
}

.about-badge {
  position: absolute;
  bottom: 26px;
  left: 26px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 18px 22px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 14px;
}

.about-badge .n {
  font-family: "Manrope";
  font-weight: 800;
  font-size: 26px;
  color: var(--ocean);
}

.about-badge .t {
  font-size: 12px;
  color: var(--text2);
  max-width: 120px;
  line-height: 1.3;
}

.timeline {
  margin: 36px 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  border-left: 2px solid var(--border);
  padding-left: 28px;
}

.t-item {
  position: relative;
  padding-bottom: 26px;
}

.t-item:last-child {
  padding-bottom: 0;
}

.t-item::before {
  content: "";
  position: absolute;
  left: -34px;
  top: 4px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--ocean);
  border: 3px solid #fff;
  box-shadow: 0 0 0 2px var(--ocean);
}

.t-item h4 {
  font-size: 16px;
  margin-bottom: 3px;
}

.t-item p {
  color: var(--text2);
  font-size: 14.5px;
}

/* ===== SERVICES ===== */
.services {
  padding: 100px 0;
  background: #fff;
}

@media (max-width: 768px) {
  .services {
    padding: 60px 0;
  }
}

.services-head {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-bottom: 64px;
}

@media (min-width: 900px) {
  .services-head {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
  }
}

.svc-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 26px;
}

@media (min-width: 680px) {
  .svc-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1080px) {
  .svc-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.svc-card {
  border-radius: 20px;
  overflow: hidden;
  background: var(--bg);
  border: 1px solid var(--border);
  transition:
    transform 0.5s var(--ease),
    box-shadow 0.5s var(--ease);
  cursor: pointer;
}

.svc-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.svc-img {
  height: 190px;
  position: relative;
}

.svc-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}

.svc-card:hover .svc-img img {
  transform: scale(1.12);
}

.svc-ic {
  position: absolute;
  bottom: -24px;
  left: 22px;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--ocean), var(--deep));
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 24px rgba(13, 110, 253, 0.35);
  z-index: 999;
}

.svc-ic svg {
  width: 24px;
  height: 24px;
  color: #fff;
}

.svc-body {
  padding: 36px 22px 26px;
}

.svc-body h3 {
  font-size: 19px;
  margin-bottom: 10px;
}

.svc-body p {
  color: var(--text2);
  font-size: 14.5px;
  margin-bottom: 18px;
}

.svc-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ocean);
  font-weight: 700;
  font-size: 13.5px;
}

.svc-arrow svg {
  width: 16px;
  height: 16px;
  transition: transform 0.35s var(--ease);
}

.svc-card:hover .svc-arrow svg {
  transform: translateX(6px);
}

/* ===== FLEET ===== */
.fleet {
  padding: 130px 0;
  background: var(--navy);
  position: relative;
  overflow: hidden;
  color: #fff;
}

@media (max-width: 768px) {
  .fleet {
    padding: 60px 0;
  }
}

.fleet::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.06;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.6) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.6) 1px, transparent 1px);
  background-size: 44px 44px;
}

.fleet .wrap {
  position: relative;
  z-index: 2;
}

.fleet-head {
  max-width: 600px;
  margin-bottom: 60px;
}

.fleet-head h2 {
  color: #fff;
}

.fleet-head p {
  color: rgba(255, 255, 255, 0.65);
}

.fleet-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.fleet-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  overflow: hidden;
  transition:
    transform 0.5s var(--ease),
    background 0.5s;
}

@media (min-width: 860px) {
  .fleet-card {
    grid-template-columns: 340px 1fr;
  }
}

.fleet-card:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.07);
}

.fleet-img {
  height: 240px;
  overflow: hidden;
}

@media (min-width: 860px) {
  .fleet-img {
    height: auto;
  }
}

.fleet-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fleet-info {
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
}

.fleet-info h3 {
  color: #fff;
  font-size: 24px;
}

.fleet-tag {
  color: #0d6efd;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.fleet-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
}

.fleet-specs div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.fleet-specs .k {
  font-size: 11.5px;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.fleet-specs .v {
  font-family: "Manrope";
  font-weight: 700;
  font-size: 17px;
  color: #fff;
}

.fleet-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  width: fit-content;
  border-bottom: 1.5px solid #0d6efd;
  padding-bottom: 3px;
}

/* ===== WHY CHOOSE US ===== */
.why {
  padding: 130px 0;
  background: #fff;
}

.why .wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
  align-items: center;
}

@media (min-width: 1000px) {
  .why .wrap {
    grid-template-columns: 0.9fr 1.1fr;
  }
}

.why-visual {
  position: relative;
  border-radius: 24px;
  background: linear-gradient(135deg, #eaf2ff, var(--bg));
  padding: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 420px;
}

.why-visual svg {
  width: 100%;
  max-width: 340px;
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

@media (min-width: 600px) {
  .why-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.why-card {
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition:
    transform 0.4s var(--ease),
    border-color 0.4s,
    box-shadow 0.4s;
}

.why-card:hover {
  transform: translateY(-6px);
  border-color: transparent;
  box-shadow: var(--shadow-md);
}

.why-card .ic {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ocean);
}

.why-card:hover .ic {
  background: var(--ocean);
  color: #fff;
}

.why-card .ic svg {
  width: 22px;
  height: 22px;
  transition: transform 0.4s;
}

.why-card:hover .ic svg {
  transform: rotate(-8deg) scale(1.1);
}

.why-card h4 {
  font-size: 16px;
}

.why-card p {
  font-size: 13.5px;
  color: var(--text2);
}

/* ===== INDUSTRIES ===== */
.industries {
  padding: 110px 0;
  background: var(--bg);
}

.ind-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

@media (min-width: 700px) {
  .ind-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.ind-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 30px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  transition: all 0.4s var(--ease);
}

.ind-card:hover {
  border-color: var(--ocean);
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.ind-card .ic {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--ocean), var(--deep));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.ind-card .ic svg {
  width: 22px;
  height: 22px;
}

.ind-card h5 {
  font-size: 14.5px;
}

/* ===== NUMBERS ===== */
.numbers {
  padding: 110px 0;
  background: linear-gradient(135deg, var(--deep), var(--navy));
  position: relative;
  overflow: hidden;
}

.numbers::after {
  content: "";
  position: absolute;
  right: -120px;
  top: -120px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle,
      rgba(255, 139, 43, 0.18),
      transparent 70%);
}

.num-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  position: relative;
  z-index: 2;
}

@media (min-width: 800px) {
  .num-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.num-item {
  text-align: center;
  color: #fff;
}

.num-item .big {
  font-family: "Manrope";
  font-weight: 800;
  font-size: 52px;
  color: #fff;
}

.num-item .big .suf {
  color: #0d6efd;
}

.num-item .lbl {
  color: rgba(255, 255, 255, 0.65);
  font-size: 14px;
  margin-top: 6px;
}

/* ===== PROJECTS ===== */
.projects {
  padding: 130px 0;
  background: #fff;
}

.proj-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}

@media (min-width: 720px) {
  .proj-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1080px) {
  .proj-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.proj-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  height: 340px;
  cursor: pointer;
}

.proj-card:nth-child(1) {
  grid-row: span 2;
  height: 100%;
}

@media (max-width: 1079px) {
  .proj-card:nth-child(1) {
    height: 340px;
  }
}

.proj-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}

.proj-card:hover img {
  transform: scale(1.1);
}

.proj-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
      transparent 40%,
      rgba(3, 20, 42, 0.9) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 26px;
}

.proj-tag {
  align-self: flex-start;
  background: #0d6efd;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 14px;
}

.proj-overlay h4 {
  color: #fff;
  font-size: 20px;
  margin-bottom: 6px;
}

.proj-overlay p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 13.5px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.proj-more {
  margin-top: 14px;
  opacity: 0;
  transform: translateY(8px);
  transition: all 0.4s var(--ease);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-weight: 600;
  font-size: 13.5px;
  width: fit-content;
}

.proj-card:hover .proj-more {
  opacity: 1;
  transform: translateY(0);
}

/* ===== HSEQ ===== */
.hseq {
  padding: 120px 0;
  background: var(--navy);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.hseq .wrap {
  position: relative;
  z-index: 2;
}

.hseq-head {
  max-width: 640px;
  margin-bottom: 56px;
}

.hseq-head h2 {
  color: #fff;
}

.hseq-head p {
  color: rgba(255, 255, 255, 0.65);
}

.hseq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

@media (min-width: 800px) {
  .hseq-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.glass-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(14px);
  border-radius: 20px;
  padding: 32px 24px;
  transition:
    transform 0.4s var(--ease),
    background 0.4s;
}

.glass-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.1);
}

.glass-card .ic {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(255, 139, 43, 0.18);
  color: #0d6efd;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.glass-card .ic svg {
  width: 22px;
  height: 22px;
}

.glass-card h4 {
  color: #fff;
  font-size: 18px;
  margin-bottom: 8px;
}

.glass-card p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 13.5px;
}

.cert-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 50px;
}

.cert-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  padding: 12px 20px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 13px;
  font-weight: 600;
}

.cert-badge svg {
  width: 16px;
  height: 16px;
  color: #0d6efd;
}

/* ===== TESTIMONIALS ===== */
.testi {
  padding: 130px 0;
  background: var(--bg);
}

@media (max-width: 768px) {
  .testi {
    padding: 60px 0;
  }
}

.testi-wrap {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}

.quote-mark {
  font-family: "Manrope";
  font-size: 120px;
  color: var(--ocean);
  opacity: 0.15;
  line-height: 0;
  position: relative;
  top: 40px;
}

.testi-slide {
  display: none;
}

.testi-slide.active {
  display: block;
  animation: fadeUp 0.6s var(--ease);
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(14px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.testi-text {
  font-family: "Manrope";
  font-size: 24px;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.5;
  margin-bottom: 34px;
}

@media (min-width: 800px) {
  .testi-text {
    font-size: 28px;
  }
}

.testi-person {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.testi-person img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #fff;
  box-shadow: var(--shadow-sm);
}

.testi-person h5 {
  font-size: 15.5px;
}

.testi-person span {
  color: var(--text2);
  font-size: 13.5px;
}

.testi-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 44px;
}

.testi-dots button {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: none;
  background: var(--border);
  cursor: pointer;
  transition: all 0.3s;
}

.testi-dots button.active {
  background: var(--ocean);
  width: 26px;
  border-radius: 6px;
}

/* ===== NEWS ===== */
.news {
  padding: 130px 0;
  background: #fff;
}

.news-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}

@media (min-width: 780px) {
  .news-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.news-card {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition:
    transform 0.4s var(--ease),
    box-shadow 0.4s;
  cursor: pointer;
}

.news-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
}

.news-img {
  height: 210px;
  overflow: hidden;
}

.news-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}

.news-card:hover .news-img img {
  transform: scale(1.1);
}

.news-body {
  padding: 26px;
}

.news-tag {
  display: inline-block;
  background: #eaf2ff;
  color: var(--ocean);
  font-size: 11.5px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 14px;
}

.news-body h4 {
  font-size: 18px;
  margin-bottom: 10px;
  line-height: 1.3;
}

.news-date {
  color: var(--text2);
  font-size: 13px;
  margin-bottom: 16px;
}

.news-read {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--navy);
  font-weight: 700;
  font-size: 13.5px;
}

.news-read svg {
  width: 15px;
  height: 15px;
  transition: transform 0.35s var(--ease);
}

.news-card:hover .news-read svg {
  transform: translateX(5px);
}

/* ===== CTA BANNER ===== */
.cta-banner {
  position: relative;
  padding: 140px 0;
  text-align: center;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(3, 20, 42, 0.75), rgba(5, 43, 92, 0.88)),
    url("../img/cta-bg.png") center/cover;
}

@media (max-width: 768px) {
  .cta-banner {
    padding: 60px 0;
  }
}

.cta-banner h2 {
  color: #fff;
  font-size: 38px;
  max-width: 700px;
  margin: 0 auto 20px;
}

@media (min-width: 800px) {
  .cta-banner h2 {
    font-size: 52px;
  }
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.75);
  max-width: 520px;
  margin: 0 auto 42px;
  font-size: 17px;
}

.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== FOOTER ===== */
footer {
  /* background: #03182f;
  color: rgba(255, 255, 255, 0.7); */
  /* padding: 100px 0 0; */
}

.foot-top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 50px;
  padding-bottom: 70px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

@media (min-width: 900px) {
  .foot-top {
    grid-template-columns: 1.4fr 1fr 1fr 1fr 1.3fr;
  }
}

.foot-brand .logo {
  color: #fff;
  margin-bottom: 18px;
}

.foot-brand p {
  font-size: 14px;
  line-height: 1.7;
  max-width: 280px;
  margin-bottom: 22px;
  color: rgba(255, 255, 255, 0.5);
}

.foot-coord {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.04em;
  margin-bottom: 22px;
}

.socials {
  display: flex;
  gap: 10px;
}

.socials a {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.socials a:hover {
  background: var(--ocean);
  border-color: var(--ocean);
}

.socials svg {
  width: 25px;
  height: 25px;
}

.foot-col h5 {
  color: #fff;
  font-size: 14.5px;
  margin-bottom: 22px;
  letter-spacing: 0.04em;
}

.foot-col ul {
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.foot-col a {
  font-size: 14px;
  transition:
    color 0.3s,
    padding-left 0.3s;
}

.foot-col a:hover {
  color: #fff;
  padding-left: 4px;
}

.foot-contact li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  margin-bottom: 16px;
}

.foot-contact svg {
  width: 16px;
  height: 16px;
  color: #0d6efd;
  flex-shrink: 0;
  margin-top: 2px;
}

.newsletter {
  display: flex;
  margin-top: 6px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.newsletter input {
  flex: 1;
  background: transparent;
  border: none;
  padding: 14px 16px;
  color: #fff;
  font-size: 13.5px;
  outline: none;
}

.newsletter button {
  background: #0d6efd;
  border: none;
  padding: 0 18px;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
}

.foot-bottom {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 30px 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
}

@media (min-width: 700px) {
  .foot-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

.foot-bottom .links {
  display: flex;
  gap: 26px;
}

.foot-bottom a:hover {
  color: #fff;
}

/* Styles moved from about-us.html */

.inner-hero {
  height: 50vh;
  min-height: 450px;
  position: relative;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: #08213f;
  background-image: url('../img/pop.jpg');
  background-size: cover;
  background-position: center;
}

@media (max-width: 768px) {
  .inner-hero {
    min-height: 370px;
  }
}

.inner-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(3, 20, 42, 0.7) 0%, rgba(3, 20, 42, 0.4) 50%, rgba(3, 20, 42, 0.9) 100%);
}

.inner-hero-content {
  position: relative;
  z-index: 3;
  width: 100%;
  padding-bottom: 64px;
  text-align: center;
}

@media (min-width: 900px) {
  .inner-hero-content {
    padding-bottom: 120px;
  }
}

.inner-hero h1 {
  font-size: 40px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
}

.about-content-section {
  padding: 100px 0;
  background: var(--white);
}

@media (max-width: 768px) {
  .about-content-section {
    padding: 60px 0;
  }
}

.about-content-section p {
  font-size: 18px;
  color: var(--text2);
  margin-bottom: 24px;
  max-width: 800px;
}

.clients-section {
  padding: 100px 0;
  background: var(--bg);
}

@media (max-width: 768px) {
  .clients-section {
    padding: 60px 0;
  }
}

.clients-section h3 {
  text-align: center;
  font-size: 38px;
  margin-bottom: 60px;
  color: var(--navy);
}

/*.clients-grid {*/
/*  display: grid;*/
/*  grid-template-columns: repeat(2, 1fr);*/
/*  gap: 16px;*/
/*  max-width: 1200px;*/
/*  margin: 0 auto;*/
/*  padding: 0;*/
/*}*/

.clients-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
    justify-content: center; /* This perfectly centers the last row */
}

/* Default to 2 columns for mobile */
.logo-slot {
    width: calc(50% - 8px); /* Account for the 16px gap */
}

@media (min-width: 900px) {
    .clients-grid {
        padding: 0 70px;
    }
    
    /* 4 columns for desktop */
    .logo-slot {
        width: calc(25% - 12px); /* Account for the 16px gap across 4 items */
    }
}

@media (min-width: 640px) {
  .clients-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }
}

@media (min-width: 900px) {
  .clients-grid {
    grid-template-columns: repeat(4, 1fr);
    padding: 0 70px;
  }
}

.logo-slot {
  position: relative;
  height: 110px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: all 0.4s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (min-width: 640px) {
  .logo-slot {
    height: 160px;
    border-radius: 16px;
  }
}

.logo-slot:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 30px #0d6efd17;
  border-color: #0d6efd;
}

.logo-face {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-face img {
  width: 85%;
  height: 75%;
  max-width: 200px;
  max-height: 90px;
  object-fit: contain;
  /* opacity: 0.5;
      filter: grayscale(100%); */
  transition: all 0.5s ease;
}

.logo-slot:hover .logo-face img {
  /* opacity: 1;
      filter: grayscale(0%); */
  transform: scale(1.08);
}

.logo-slot .front {
  animation: crossfade-front 14s infinite;
}

.logo-slot .back {
  animation: crossfade-back 14s infinite;
}

.logo-slot:nth-child(even) .front,
.logo-slot:nth-child(even) .back {
  animation-delay: -2.5s;
}

.logo-slot:nth-child(3n) .front,
.logo-slot:nth-child(3n) .back {
  animation-delay: -5s;
}

@keyframes crossfade-front {

  0%,
  40% {
    opacity: 1;
    visibility: visible;
  }

  50%,
  90% {
    opacity: 0;
    visibility: hidden;
  }

  100% {
    opacity: 1;
    visibility: visible;
  }
}

@keyframes crossfade-back {

  0%,
  40% {
    opacity: 0;
    visibility: hidden;
  }

  50%,
  90% {
    opacity: 1;
    visibility: visible;
  }

  100% {
    opacity: 0;
    visibility: hidden;
  }
}


.ceo-dark-section {
  padding: 120px 0;
  background: var(--navy);
  color: #fff;
  position: relative;
}

@media (max-width: 768px) {
  .ceo-dark-section {
    padding: 80px 0;
  }
}

.ceo-dark-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 50px;
  align-items: center;
}

@media (min-width: 900px) {
  .ceo-dark-grid {
    grid-template-columns: 5fr 7fr;
    gap: 60px;
  }
}

.ceo-dark-img-wrap {
  position: relative;
}

.ceo-dark-img-wrap img {
  width: 100%;
  border-radius: 8px;
  position: relative;
  z-index: 2;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
  display: block;
}

.ceo-dark-img-wrap::before {
  content: "";
  position: absolute;
  top: -20px;
  left: -20px;
  width: 100px;
  height: 100px;
  border-top: 4px solid #0d6efd;
  border-left: 4px solid #0d6efd;
  border-radius: 8px 0 0 0;
  z-index: 3;
}

.ceo-dark-img-wrap::after {
  content: "";
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 100px;
  height: 100px;
  border-bottom: 4px solid #0d6efd;
  border-right: 4px solid #0d6efd;
  border-radius: 0 0 8px 0;
  z-index: 3;
}

.ceo-dark-eyebrow {
  color: #0d6efd;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 2px;
  font-size: 13px;
  margin-bottom: 16px;
  display: block;
}

.ceo-dark-title {
  font-size: 40px;
  color: #fff;
  margin-top: 0;
  margin-bottom: 30px;
  line-height: 1.1;
}

.ceo-dark-text {
  font-size: 18px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 300;
}

.ceo-dark-signature {
  margin-top: 40px;
  border-left: 3px solid #0d6efd;
  padding-left: 20px;
}

.ceo-dark-name {
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  margin: 0 0 5px 0;
}

.ceo-dark-role {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
}


.mv-section {
  padding: 100px 0;
  background: #ffffff;
  position: relative;
}

@media (max-width: 768px) {
  .mv-section {
    padding: 60px 0;
  }
}

/*.mv-grid {*/
/*  display: grid;*/
/*  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));*/
/*  gap: 40px;*/
/*  position: relative;*/
/*}*/

.mv-grid {
    display: grid;
    /* Forces exactly 2 columns of 320px */
    grid-template-columns: repeat(2, 588px); 
    gap: 40px;
    justify-content: center;
}

/* Targets the 3rd card specifically */
.mv-card:nth-child(3) {
    grid-column: 1 / -1; /* Spans across all columns */
    justify-self: center; /* Centers it within that spanned space */
    width: 588px; /* Keeps it the same size as the others */
}

@media (max-width: 1250px) {
    .mv-grid {
        /* Changes to a single column on smaller screens */
        grid-template-columns: 588px; 
    }
    
    .mv-card:nth-child(3) {
        /* Stops it from spanning since there's only one column now */
        grid-column: auto; 
    }
}

/* Optional: For mobile phones, make it flexible instead of a fixed 588px */
@media (max-width: 650px) {
    .mv-grid {
        grid-template-columns: 1fr; 
        padding: 0 20px;
    }
    
    .mv-card:nth-child(3) {
        width: 100%; 
    }
}

.mv-card {
  background: #f8fafc;
  border: 1px solid rgba(0, 0, 0, 0.03);
  border-radius: 20px;
  padding: 50px 40px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  z-index: 1;
}

.mv-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
}

.mv-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: #0d6efd;
}

.mv-icon-bg {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 160px;
  height: 160px;
  color: rgba(234, 88, 12, 0.04);
  z-index: -1;
  transform: rotate(-10deg);
}

.mv-title {
  font-size: 32px;
  color: var(--navy);
  margin: 0 0 20px 0;
  display: flex;
  align-items: center;
  gap: 15px;
}

.mv-icon-small {
  width: 32px;
  height: 32px;
  color: #0d6efd;
}

.mv-text {
  color: var(--text);
  font-size: 17px;
  line-height: 1.8;
  margin: 0;
}


.values-section {
  padding: 100px 0;
  background: var(--bg);
  position: relative;
  /*display: none;*/
}

@media (max-width: 768px) {
  .values-section {
    padding: 60px 0;
  }
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.value-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  cursor: default;
}

.value-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 4px;
  background: var(--navy);
  transition: width 0.3s ease, background 0.3s ease;
  z-index: 0;
}

.value-card:hover::before {
  width: 100%;
  background: #0d6efd;
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(234, 88, 12, 0.15);
}

.value-icon {
  width: 24px;
  height: 24px;
  color: #0d6efd;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  transition: color 0.3s ease;
}

.value-text {
  font-size: 16px;
  font-weight: 600;
  color: var(--navy);
  position: relative;
  z-index: 1;
  transition: color 0.3s ease;
  margin: 0;
  line-height: 1.4;
}

.value-card:hover .value-icon,
.value-card:hover .value-text {
  color: #ffffff;
}


.team-section {
  padding: 100px 0;
  /*background: white;*/
  background: var(--bg);
}

@media (max-width: 768px) {
  .team-section {
    padding: 60px 0;
  }
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
  margin-top: 60px;
  max-width: 1150px;
  margin-left: auto;
  margin-right: auto;
}

.team-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(5, 43, 92, 0.08);
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  height: 480px;
}

@media (max-width: 768px) {
  .team-card {
    height: 400px;
  }
}

.team-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 50px rgba(5, 43, 92, 0.15);
}

.team-img-wrap {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.team-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.team-card:hover .team-img-wrap img {
  transform: scale(1.08);
}

/* Glassmorphism Floating Panel */
.team-info {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  padding: 24px 20px;
  border-radius: 18px;
  background: rgb(255, 255, 255);
  backdrop-filter: blur(24px) saturate(200%);
  -webkit-backdrop-filter: blur(24px) saturate(200%);
  border: 1px solid rgba(255, 255, 255, 0.6);
  z-index: 2;
  text-align: center;
  transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.team-card:hover .team-info {
  bottom: 32px;
  background: rgb(255, 255, 255);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.8);
}

.team-name {
  font-size: 20px;
  color: var(--navy);
  margin-bottom: 4px;
  font-weight: 800;
  line-height: 1.2;
}

.team-role {
  font-size: 14px;
  color: #0d6efd;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  display: block;
}

.about-content-section .about-us-main-img {
  width: 100%;
  border-radius: 12px;
  box-shadow: var(--shadow-md);
  height: 550px;
  object-fit: cover;
}


/* ============ VESSEL LISTING (CUSTOM MODERN DESIGN) ============ */
.vessel-list {
  display: flex;
  flex-direction: column;
  gap: 60px;
  max-width: 1100px;
  margin: 0 auto;
}

.vessel-card {
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border: 1px solid rgba(5, 43, 92, 0.1);
  border-radius: 0;
  transition: border-color 0.4s ease;
  position: relative;
}

.vessel-card:hover {
  border-color: #0d6efd;
}

@media (min-width: 900px) {
  .vessel-card {
    flex-direction: row;
    align-items: stretch;
    height: 380px;
  }
}

.vessel-img {
  position: relative;
  overflow: hidden;
  height: 280px;
  border-bottom: 1px solid rgba(5, 43, 92, 0.1);
}

@media (min-width: 900px) {
  .vessel-img {
    height: auto;
    width: 45%;
    flex-shrink: 0;
    border-bottom: none;
    border-right: 1px solid rgba(5, 43, 92, 0.1);
  }
}

.vessel-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.vessel-card:hover .vessel-img img {
  transform: scale(1.05);
}

.vessel-info {
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex-grow: 1;
  background: #fafafa;
}

@media (min-width: 900px) {
  .vessel-info {
    padding: 50px;
  }
}

.vessel-tag {
  display: inline-block;
  align-self: flex-start;
  padding: 4px 10px;
  background: transparent;
  color: #0d6efd;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  border: 1px solid #0d6efd;
  margin-bottom: 20px;
}

.vessel-tag.secondary {
  border-color: var(--navy);
  color: var(--navy);
}

.vessel-info h3 {
  font-size: 28px;
  color: var(--navy);
  margin-bottom: 30px;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.vessel-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-bottom: 30px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  border-left: 1px solid rgba(0, 0, 0, 0.08);
}

.spec-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 16px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  border-right: 1px solid rgba(0, 0, 0, 0.08);
  background: #ffffff;
}

.spec-item .k {
  font-size: 12px;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

.spec-item .v {
  font-size: 15px;
  color: var(--navy);
  font-weight: 700;
}

.vessel-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  text-decoration: none;
  align-self: flex-start;
  transition: color 0.3s ease;
  margin-top: auto;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.vessel-cta svg {
  transition: transform 0.3s ease;
  color: #0d6efd;
}

.vessel-cta:hover {
  color: #0d6efd;
}

.vessel-cta:hover svg {
  transform: translateX(4px);
}

/* ============ CREATIVE CARD GRID DESIGN ============ */

/* ============ CREATIVE CARD GRID DESIGN ============ */
.grid-fleet {
  background: var(--white);
  padding: 100px 0;
}

@media (max-width: 768px) {
  .grid-fleet {
    padding: 60px 0;
  }
}

.grid-fleet-head {
  text-align: center;
  margin-bottom: 60px;
}

.grid-fleet-head h2 {
  font-size: 42px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 20px;
}

.grid-fleet-head p {
  color: #666;
  font-size: 18px;
  max-width: 600px;
  margin: 0 auto;
}

.vessels-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

@media (min-width: 1024px) {
  .vessels-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.vc-card {
  background: #052b5c;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(5, 43, 92, 0.1);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  display: flex;
  flex-direction: column;
  position: relative;
  border: none;
}

.vc-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(5, 43, 92, 0.2);
}

.vc-img {
  width: 100%;
  height: 280px;
  position: relative;
  overflow: hidden;
}

.vc-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.vc-card:hover .vc-img img {
  transform: scale(1.05);
}

.vc-tag {
  position: absolute;
  top: 20px;
  left: 20px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(4px);
  color: #0d6efd;
  padding: 8px 14px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  border-radius: 4px;
  z-index: 2;
  display: none;
}

.vc-tag.secondary {
  color: var(--navy);
}

.vc-info {
  padding: 24px 24px 30px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  background: #052b5c;
}

.vc-info h3 {
  font-size: 24px;
  color: #ffffff;
  font-weight: 800;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.vc-specs {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  /*margin-bottom: 20px;*/
  margin-bottom: 8px;
  padding: 16px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.vc-spec-pill {
  background: transparent;
  padding: 0;
  border: none;
  font-size: 15px;
  color: #ffffff;
  font-weight: 700;
  display: flex;
  flex-direction: column;
  align-items: center;
  /*align-items: flex-start;*/
  gap: 6px;
  text-align: center;
}

.vc-spec-pill span.lbl {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

.vc-cta {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 14px 20px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #ffffff;
  font-weight: 700;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 12px;
}

.vc-cta svg {
  transition: transform 0.3s ease;
  color: #0d6efd;
}

.vc-cta:hover {
  background: #ffffff;
  color: #052b5c;
  border-color: #ffffff;
}

.vc-cta:hover svg {
  transform: translateX(4px);
}

.breadcrumbs {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 20px;
  background: #ffffff;
  border-radius: 30px;
  /* margin-bottom: 24px; */
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.breadcrumbs a {
  color: var(--navy);
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumbs a:hover {
  color: #0d6efd;
}

.breadcrumbs svg {
  opacity: 0.4;
  color: var(--navy);
}

.breadcrumbs span {
  color: #0d6efd;
}



/* ============ SORA 1 (MODERN STANDARD) ============ */
.sora-modern {
  background-color: #f4f7f9;
  font-family: 'Inter', sans-serif;
}

/* Overview Section */
.sm-overview {
  padding: 80px 0;
  background-color: #fff;
}

.sm-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 992px) {
  .sm-grid {
    grid-template-columns: 1.2fr 1fr;
    align-items: stretch;
  }
}

.sm-img-wrap {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  height: 100%;
}

.sm-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.sm-info-card {
  background: #052b5c;
  border-radius: 12px;
  padding: 50px 40px;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: 0 20px 40px rgba(5, 43, 92, 0.15);
}

@media (max-width: 768px) {
  .sm-info-card {
    padding: 40px 25px;
  }
}

.sm-info-card h2 {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 20px;
  color: #fff;
}

.sm-info-card p {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 40px;
}

.sm-quick-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
  .sm-quick-stats {
    padding-bottom: 20px;
  }
}

.sm-q-stat {
  display: flex;
  flex-direction: column;
}

.sm-q-stat span {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #ffffff;
  margin-bottom: 5px;
}

.sm-q-stat strong {
  font-size: 20px;
  font-weight: 700;
}

.sm-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #ef6c0000;
  color: #fff;
  padding: 16px 30px;
  border-radius: 6px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  border: 2px solid white;
}

@media (max-width: 768px) {
  .sm-btn {
    padding: 12px 24px;
    font-size: 14px;
  }
}

.sm-btn:hover {
  background: #0d6efd;
  transform: translateY(-2px);
}

/* Specs Section */
.sm-specs {
  padding: 80px 0 100px;
  background: #f4f7f9;
}

.sm-specs-title {
  text-align: center;
  margin-bottom: 60px;
}

.sm-specs-title h2 {
  font-size: 36px;
  color: #052b5c;
  font-weight: 800;
}

.sm-specs-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

@media (min-width: 900px) {
  .sm-specs-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.sm-spec-block {
  background: #fff;
  border-radius: 8px;
  padding: 0;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.04);
  overflow: hidden;
  border-left: 4px solid #052b5c;
}

.sm-spec-block.accent {
  border-left-color: #ef6c00;
}

.sm-spec-block.full {
  grid-column: 1 / -1;
}

.sm-sb-head {
  background: #fafafa;
  padding: 20px 30px;
  border-bottom: 1px solid #eee;
}

.sm-sb-head h3 {
  margin: 0;
  font-size: 20px;
  color: #052b5c;
  font-weight: 700;
}

.sm-sb-body {
  padding: 20px 30px;
}

.sm-row {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid #f5f5f5;
}

.sm-row:last-child {
  border-bottom: none;
}

.sm-row .lbl {
  font-size: 14px;
  color: #666;
  font-weight: 500;
}

.sm-row .val {
  font-size: 14px;
  color: #111;
  font-weight: 600;
  text-align: right;
  max-width: 60%;
}

.sm-sb-body.two-col {
  display: grid;
  grid-template-columns: 1fr;
  column-gap: 50px;
}

@media (min-width: 768px) {
  .sm-sb-body.two-col {
    grid-template-columns: 1fr 1fr;
  }
}

/* Blueprint */
.sm-blueprint {
  background: #fff;
  padding: 80px 0;
  border-top: 1px solid #eee;
}

@media (max-width: 768px) {
  .sm-blueprint {
    padding: 60px 0;
  }
}

.sm-bp-container {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.sm-bp-container h3 {
  font-size: 28px;
  color: #052b5c;
  margin-bottom: 40px;
}

.sm-bp-container img {
  width: 100%;
  height: auto;
  display: block;
}

/* Contact Page Specific Styles - Corporate Split */
.contact-page-section {
  padding: 100px 0;
  background: var(--bg);
}

@media (max-width: 768px) {
  .contact-page-section {
    padding: 60px 0;
  }
}

.contact-split-container {
  display: flex;
  background: var(--white);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(5, 43, 92, 0.08);
  min-height: 600px;
}

@media (max-width: 992px) {
  .contact-split-container {
    flex-direction: column;
  }
}

/* LEFT PANEL - Navy */
.contact-info-panel {
  flex: 0 0 42%;
  background: var(--navy);
  color: var(--white);
  padding: 70px 60px;
  position: relative;
  overflow: hidden;
}

.contact-info-panel::after {
  content: '';
  position: absolute;
  bottom: -150px;
  right: -150px;
  width: 450px;
  height: 450px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 50%;
}

.info-list {
  margin-top: 50px;
  position: relative;
  z-index: 1;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 40px;
}

.contact-info-item:last-child {
  margin-bottom: 0;
}

.contact-icon-wrap {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgb(255 255 255 / 15%);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s var(--ease);
}

.contact-info-item:hover .contact-icon-wrap {
  background: #ffffff;
  color: #052b5c;
  transform: scale(1.1);
}

.contact-icon-wrap svg {
  width: 22px;
  height: 22px;
}

.contact-text h4 {
  font-size: 1.15rem;
  margin-bottom: 6px;
  color: var(--white);
  font-weight: 600;
}

.contact-text p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  margin: 0;
  line-height: 1.6;
}

/* RIGHT PANEL - White */
.contact-form-panel {
  flex: 1;
  padding: 70px 60px;
  background: var(--white);
}

@media (max-width: 600px) {

  .contact-info-panel,
  .contact-form-panel {
    padding: 40px 30px;
  }
}

.contact-form-panel h3 {
  font-size: 2.2rem;
  margin-bottom: 12px;
  color: var(--navy);
  font-weight: 800;
}

@media (max-width: 768px) {
  .contact-form-panel h3 {
    font-size: 1.9rem;
  }
}

.contact-info-panel h2 {
  font-size: 3rem;
  margin-bottom: 12px;
  color: var(--white);
  font-weight: 800;
}

@media (max-width: 768px) {
  .contact-info-panel h2 {
    font-size: 2.5rem;
  }
}

.contact-form-panel>p {
  color: var(--text2);
  margin-bottom: 50px;
  font-size: 1.05rem;
}

/* Form Styles */
.form-floating {
  position: relative;
  margin-bottom: 40px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

@media (max-width: 600px) {
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .form-floating {
    margin-bottom: 30px;
  }
}

.form-floating label {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  color: var(--text2);
  transition: all 0.3s var(--ease);
  pointer-events: none;
  font-size: 1.05rem;
  margin: 0;
  background-color: transparent;
}

.form-floating textarea~label {
  top: 15px;
  transform: none;
}

.form-control {
  width: 100%;
  padding: 15px 0;
  border: none;
  border-bottom: 2px solid var(--border);
  background: transparent;
  border-radius: 0;
  font-family: inherit;
  font-size: 1.05rem;
  color: var(--text);
  transition: all 0.3s var(--ease);
}

.form-control::placeholder {
  color: transparent;
}

.form-control:focus {
  outline: none;
  border-bottom-color: var(--ocean);
}

.form-control:focus~label,
.form-control:not(:placeholder-shown)~label {
  top: -15px;
  transform: none;
  font-size: 0.85rem;
  color: var(--ocean);
  font-weight: 600;
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

.btn-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: var(--navy);
  color: var(--white);
  border: none;
  padding: 18px 40px;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s var(--ease);
  font-family: inherit;
  margin-top: 10px;
}

.btn-submit:hover {
  background: #0d6efd;
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgb(13 110 253 / 25%);
}

.btn-submit svg {
  transition: transform 0.3s var(--ease);
}

.btn-submit:hover svg {
  transform: translateX(6px);
}

.map-section {
  height: 500px;
  width: 100%;
  background: #e2e8f0;
  position: relative;
}

.map-section iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* ============ QUOTE MODAL ============ */
.quote-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(5, 43, 92, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s var(--ease);
  padding: 20px;
}

.quote-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.quote-modal-content {
  background: var(--white);
  border-radius: 24px;
  width: 100%;
  max-width: 900px;
  position: relative;
  transform: translateY(40px) scale(0.95);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.3);
  overflow: hidden;
}

.quote-modal-overlay.active .quote-modal-content {
  transform: translateY(0) scale(1);
}

.quote-modal-split {
  display: flex;
  min-height: 500px;
}

.quote-modal-img {
  width: 45%;
  position: relative;
  display: none;
}

@media(min-width: 800px) {
  .quote-modal-img {
    display: block;
  }
}

.quote-modal-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.quote-modal-img-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 40px 30px;
  background: linear-gradient(to top, rgba(5, 43, 92, 0.9), transparent);
  color: var(--white);
  display: none;
}

.quote-modal-img-overlay h4 {
  font-size: 1.8rem;
  margin-bottom: 5px;
}

.quote-modal-img-overlay p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
}

.quote-modal-form-area {
  width: 100%;
  padding: 50px;
  position: relative;
}

@media(min-width: 800px) {
  .quote-modal-form-area {
    width: 55%;
  }
}

.quote-modal-close {
  position: absolute;
  top: 20px;
  right: 25px;
  background: rgba(0, 0, 0, 0.05);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: var(--text2);
  cursor: pointer;
  transition: all 0.3s;
  line-height: 1;
  z-index: 10;
}

.quote-modal-close:hover {
  background: rgb(13 110 253 / 13%);
  color: #0d6efd;
  transform: rotate(90deg);
}

.quote-modal-header {
  margin-bottom: 30px;
}

.quote-modal-header h3 {
  font-size: 2.2rem;
  color: var(--navy);
  margin-bottom: 5px;
  font-weight: 800;
}

.quote-modal-header p {
  color: var(--text2);
  font-size: 1.05rem;
  margin: 0;
}

@media(max-width: 600px) {
  .quote-modal-form-area {
    padding: 40px 25px;
  }
}

section.custom--top-footer {
  text-align: center;
  padding: 50px 0;
}

section.custom--top-footer .foot-new h2 {
  font-size: 30px;
  text-transform: uppercase;
  font-weight: 800;
  margin-bottom: 20px;
}

section.custom--top-footer .foot-new p {
  color: black;
  /* margin-bottom: 10px; */
  line-height: 2;
}

section.custom--top-footer .foot-new p span {
  line-height: 0;
  font-weight: 500;
  /* font-size: 17px; */
  color: #ff8b2b;
}



footer.custom-footer {
  text-align: center;
  padding: 50px 0 20px 0;
}

footer.custom-footer .foot-new h2 {
  font-size: 30px;
  text-transform: uppercase;
  font-weight: 800;
  margin-bottom: 20px;
}

footer.custom-footer .foot-new p {
  color: black;
  /* margin-bottom: 10px; */
  line-height: 2;
  text-align: center;
}

footer.custom-footer .foot-new p span {
  line-height: 0;
  font-weight: 500;
  /* font-size: 17px; */
  color: #0d6efd;
  margin: 0 10px;
}

footer.custom-footer .footer-second {
  background: #03182f;
  color: rgba(255, 255, 255, 0.7);
  padding: 55px 0;
}

footer.custom-footer .footer-second h5 {
  font-size: 20px;
  text-transform: uppercase;
  color: white;
  font-weight: 200;
  margin-bottom: 18px;
}

.socials {
  display: flex;
  gap: 10px;
  justify-content: center;
}

footer.custom-footer .foot-new {
  margin-bottom: 25px;
}

footer.custom-footer .footer-third {
  background: #0d6efd;
  padding: 15px 0;
  margin-bottom: 15px;
}

footer.custom-footer .footer-third p a {
  color: white;
}

footer.custom-footer .footer-third p span {
  color: white;
  margin: 0 10px;
}

.foot-bottom-cust span {
    font-size: 14px;
}

@media (max-width: 768px) {

  footer.custom-footer .footer-third p {
    display: flex;
    flex-direction: column;
  }

  footer.custom-footer .footer-third p span {
    display: none;
  }

  footer.custom-footer .foot-new h2 {
    font-size: 25px;

  }

  footer.custom-footer .foot-new p.cust-address {
    margin-bottom: 10px;
    line-height: 30px;
  }

}

footer.custom-footer .wrap {
    max-width: 100%;
    padding: 0;
}

#mission-vision-values {
  scroll-margin-top: 80px;
}

#accreditation {
  scroll-margin-top: 80px;
}

footer.custom-footer .footer-third p {
    text-align: center;
}