	:root {
  --navy: #042c53;
  --blue: #0c447c;
  --accent-blue: #185fa5;
  --light-blue: #378add;
  --soft-bg: #e6f1fb;
  --teal: #0f6e56;
  --accent-teal: #1d9e75;
  --light-teal: #e1f5ee;
  --white: #ffffff;
  --text: #042c53;
  --muted: #5f5e5a;
  --line: rgba(12, 68, 124, 0.16);
  --shadow: 0 24px 70px rgba(4, 44, 83, 0.14);
  --soft-shadow: 0 12px 34px rgba(4, 44, 83, 0.11);
  --radius: 16px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  max-width: 100%;
  overflow-x: clip;
  color: var(--text);
  background:
    radial-gradient(circle at 5% 8%, rgba(55, 138, 221, 0.2), transparent 24rem),
    radial-gradient(circle at 91% 3%, rgba(29, 158, 117, 0.14), transparent 24rem),
    linear-gradient(180deg, #f7fbff 0%, var(--soft-bg) 46%, #f8fbff 100%);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: -5rem;
  z-index: 100;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  background: var(--navy);
  color: var(--white);
}

.skip-link:focus {
  top: 1rem;
}

.page-shell {
  width: 100%;
  margin: 0;
  padding: 76px 0 0;
}

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  right: 0;
  transition: transform 0.3s ease;
}

.nav-card {
  width: 100%;
  min-height: 68px;
  margin: 0 auto;
  padding: 0 clamp(14px, 4vw, 64px);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 0 0 var(--radius) var(--radius);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 10px 35px rgba(4, 44, 83, 0.12);
  backdrop-filter: blur(22px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Plus Jakarta Sans", Inter, sans-serif;
  font-weight: 800;
  color: #ffffff;
  white-space: nowrap;
}

.brand-mark {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  color: var(--white);
  background: linear-gradient(135deg, var(--navy), var(--accent-teal));
  box-shadow: 0 12px 26px rgba(15, 110, 86, 0.24);
}

.brand-logo {
  width: 34px;
  height: 34px;
  object-fit: contain;
  border-radius: 10px;
}

.nav-links {
  justify-self: end;
  display: flex;
  gap: 7px;
  padding: 6px;
  border: 1px solid rgba(12, 68, 124, 0.08);
  border-radius: 999px;
  background: rgba(230, 241, 251, 0.68);
}

.nav-links a {
  position: relative;
  padding: 8px 14px;
  border-radius: 999px;
  color: #042C53;
  font-size: 0.88rem;
  font-weight: 700;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 5px;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  border-radius: 999px;
  background: var(--accent-teal);
  transition: transform 0.25s ease;
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after {
  transform: scaleX(1);
}

.nav-cta,
.btn {
  border: 0;
  cursor: pointer;
  border-radius: 999px;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 20px;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.nav-cta,
.btn-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--teal), var(--accent-teal));
  box-shadow: 0 16px 28px rgba(15, 110, 86, 0.24);
}

.btn-secondary {
  color: var(--navy);
  border: 1px solid rgba(4, 44, 83, 0.16);
  background: var(--white);
  box-shadow: 0 10px 24px rgba(4, 44, 83, 0.1);
}

.btn-light {
  background: var(--white);
  color: var(--navy);
}

.btn-outline {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.66);
}

.btn:hover,
.nav-cta:hover {
  transform: translateY(-2px);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 999px;
  background: var(--soft-bg);
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--navy);
  border-radius: 99px;
}

.section-card {
  position: relative;
  margin-bottom: 0;
  padding: clamp(16px, 3vw, 40px) clamp(18px, 6vw, 84px);
  border: 1px solid rgba(255, 255, 255, 0.92);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: var(--soft-shadow);
  overflow: hidden;
}


.hero {
  min-height: calc(100vh - 76px);
  padding-top: clamp(20px, 3vw, 34px);
  padding-bottom: clamp(24px, 3vw, 38px);
  display: grid;
  align-content: center;
}

.hero-bg,
.hero-bg canvas,
.hero-video,
.mesh,
.particle {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
  linear-gradient(90deg, rgba(246, 251, 255, 0.3) 0%, rgba(246, 251, 255, 0.2) 48%, rgba(230, 241, 251, 0.1) 100%),
  
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.9;
  filter: saturate(1.05) contrast(1.02);
}

.hero-bg canvas {
  width: 100%;
  height: 100%;
  z-index: 2;
  opacity: 0.72;
}

.mesh {
  z-index: 3;
  filter: blur(18px);
  opacity: 0.55;
}

.mesh-one {
  width: 360px;
  height: 360px;
  left: -120px;
  top: 10%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(55, 138, 221, 0.5), transparent 64%);
}

.mesh-two {
  width: 430px;
  height: 430px;
  left: auto;
  right: -140px;
  top: 12%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(29, 158, 117, 0.38), transparent 64%);
}

.particle {
  inset: auto;
  z-index: 4;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-teal);
  box-shadow: 0 0 24px rgba(29, 158, 117, 0.8);
  animation: float 7s ease-in-out infinite;
}

.p1 { left: 12%; top: 28%; }
.p2 { right: 22%; top: 21%; animation-delay: -2s; }
.p3 { right: 10%; bottom: 25%; animation-delay: -4s; }

.breadcrumb {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 8px;
  align-items: center;
  margin-bottom: 22px;
  color: rgba(255, 255, 255, 2);
  font-size: 0.88rem;
  font-weight: 700;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.72fr);
  align-items: center;
  gap: clamp(22px, 4vw, 54px);
}

.hero-copy {
  max-width: 760px;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  width: fit-content;
  padding: 7px 12px;
  border: 1px solid rgba(29, 158, 117, 0.2);
  border-radius: 999px;
  background: var(--light-teal);
  color: var(--teal);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Plus Jakarta Sans", Inter, sans-serif;
  line-height: 1.06;
  color: var(--navy);
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  margin-top: 14px;
  font-size: clamp(2.4rem, 4.35vw, 4.15rem);
  line-height: 1.03;
}

.hero-subtitle {
  max-width: 700px;
  color: var(--navy);
  font-size: clamp(0.98rem, 1.25vw, 1.1rem);
  font-weight: 600;
  text-shadow: 0 1px 8px rgba(255, 255, 255, 0.9);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 18px;
}

.trust-row span,
.footer-badges span,
.pill-cloud span,
.logo-track span {
  border: 1px solid rgba(12, 68, 124, 0.13);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  color: var(--blue);
  font-size: 0.8rem;
  font-weight: 800;
}

.trust-row span,
.footer-badges span {
  padding: 7px 11px;
}

.hero-visual {
  min-height: 380px;
  display: grid;
  place-items: center;
  perspective: 1200px;
}

.glass-card {
  position: relative;
  width: min(370px, 100%);
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 36px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.72), rgba(230, 241, 251, 0.45)),
    radial-gradient(circle at 50% 40%, rgba(55, 138, 221, 0.24), transparent 52%);
  box-shadow: var(--shadow), inset 0 0 80px rgba(255, 255, 255, 0.55);
  transform: rotateX(8deg) rotateY(-10deg);
  animation: float3d 7s ease-in-out infinite;
}

.glass-sphere {
  position: absolute;
  inset: 19%;
  border-radius: 50%;
  background:
    radial-gradient(circle at 34% 22%, rgba(255, 255, 255, 0.95), rgba(55, 138, 221, 0.48) 31%, rgba(4, 44, 83, 0.92) 74%),
    var(--blue);
  box-shadow: inset -26px -36px 70px rgba(4, 44, 83, 0.34), 0 34px 70px rgba(4, 44, 83, 0.24);
  display: flex;
  align-items: center;
  justify-content: center;
}

.ring {
  position: absolute;
  border-radius: 50%;
  border: 14px solid transparent;
  animation: spin 18s linear infinite;
}

.ring-a {
  inset: 9%;
  border-top-color: var(--accent-teal);
  border-right-color: var(--accent-blue);
  border-bottom-color: rgba(29, 158, 117, 0.22);
}

.ring-b {
  inset: 27%;
  border-width: 8px;
  border-left-color: rgba(255, 255, 255, 0.8);
  border-bottom-color: rgba(55, 138, 221, 0.5);
  animation-direction: reverse;
}

.data-panel {
  position: absolute;
  width: 132px;
  min-height: 76px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.74);
  backdrop-filter: blur(18px);
  box-shadow: 0 16px 38px rgba(4, 44, 83, 0.16);
}

.data-panel strong {
  display: block;
  color: var(--navy);
  font-size: 1.35rem;
}

.data-panel span {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
}

.panel-a { left: -18px; top: 26%; }
.panel-b { right: -12px; top: 14%; }
.panel-c { right: 12px; bottom: 12%; }

.stats-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 26px;
}

.stats-grid article {
  min-height: 86px;
  display: grid;
  place-items: center;
  text-align: center;
  border: 1px solid rgba(55, 138, 221, 0.18);
  border-radius: 12px;
  background: rgba(230, 241, 251, 0.78);
}

.stats-grid strong {
  color: var(--navy);
  font-size: 1.8rem;
}

.stats-grid span {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 700;
}

.logo-strip {
  padding-top: 24px;
  padding-bottom: 24px;
}

.logo-strip h2 {
  margin-bottom: 14px;
  font-size: 0.9rem;
  text-transform: uppercase;
  color: rgba(4, 44, 83, 0.56);
}

.logo-marquee {
  max-width: 100%;
  overflow: hidden;
  contain: paint;
  mask-image: linear-gradient(90deg, transparent, #000 11%, #000 89%, transparent);
}

.logo-track {
  width: max-content;
  display: flex;
  gap: 12px;
  animation: marquee 28s linear infinite;
}

.logo-track span {
  padding: 9px 16px;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 28px;
}

.section-heading h2 {
  margin-top: 12px;
  font-size: clamp(1.8rem, 3.8vw, 3.6rem);
}

.section-heading p {
  color: var(--muted);
  font-size: 1.02rem;
}

.services {
  overflow: visible;
}

.rcm-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) 1fr;
  gap: clamp(24px, 5vw, 56px);
  align-items: center;
}

.rcm-wheel {
  position: relative;
  width: min(580px, 100%);
  aspect-ratio: 1;
  margin: 0 auto;
  border-radius: 50%;
  background: none;
  box-shadow: var(--shadow);
  perspective: 1100px;
}


.rcm-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: conic-gradient(from -18deg,
  #E8847A,
  #D4724A,
  #C4963A,
  #7B5EA7,
  #3A6BC4,
  #5B9EC9,
  #6BBF9E,
  #B8A84A,
  #E8847A
   );
  animation: rcm-spin 8s linear infinite;
  z-index: 0;
  -webkit-mask: radial-gradient(circle, transparent 50%, black 50%);
  mask: radial-gradient(circle, transparent 50%, black 50%);
}

@keyframes rcm-spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

.rcm-wheel::before {
  content: "";
  position: absolute;
  inset: 12%;
  border-radius: 50%;
  background: var(--soft-bg);
  box-shadow: inset 0 0 42px rgba(4, 44, 83, 0.14);
}

.wheel-center {
  position: absolute;
  inset: 29%;
  display: grid;
  place-items: center;
  text-align: center;
  z-index: 2;
  padding: 20px;
  border-radius: 50%;
  color: var(--white);
  background: radial-gradient(circle at 35% 25%, var(--light-blue), var(--navy));
  box-shadow: inset 0 0 44px rgba(255, 255, 255, 0.18), 0 24px 48px rgba(4, 44, 83, 0.24);
}

.wheel-center span,
.wheel-center small {
  opacity: 0.72;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.wheel-center strong {
  font-size: clamp(2.1rem, 5vw, 4rem);
  line-height: 1;
}

.wheel-item {
  position: absolute;
  z-index: 5;
  width: clamp(105px, 10vw, 148px);
  min-height: 40px;
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: 14px;
  color: var(--navy);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.88), rgba(230, 241, 251, 0.72)),
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.9), transparent 52%);
  box-shadow: 0 14px 24px rgba(4, 44, 83, 0.14), inset 0 1px 0 rgba(255, 255, 255, 0.85);
  font-size: clamp(0.58rem, 1.08vw, 0.74rem);
  font-weight: 800;
  text-align: center;
  cursor: pointer;
  transform-style: preserve-3d;
  transition: transform 0.22s ease, box-shadow 0.22s ease, color 0.22s ease, background 0.22s ease;
}

.wheel-item:hover,
.wheel-item:focus-visible,
.wheel-item.is-active {
  color: var(--white);
  outline: 0;
  background: linear-gradient(135deg, var(--navy), var(--accent-teal));
  box-shadow: 0 22px 36px rgba(4, 44, 83, 0.24), 0 0 0 5px rgba(29, 158, 117, 0.16);
}

.w1 { top: 0%; left: 50%; transform: translateX(-50%) translateZ(22px); }
.w1:hover, .w1:focus-visible, .w1.is-active { transform: translateX(-50%) translateY(-5px) translateZ(46px) rotateX(5deg); }
.w2 { top: 9%; right: 8%; transform: translateZ(22px) rotateZ(2deg); }
.w2:hover, .w2:focus-visible, .w2.is-active { transform: translateY(-5px) translateZ(46px) rotateZ(2deg) rotateX(5deg); }
.w3 { top: 30%; right: -5%; transform: translateZ(22px) rotateZ(5deg); }
.w3:hover, .w3:focus-visible, .w3.is-active { transform: translateY(-5px) translateZ(46px) rotateZ(5deg) rotateX(5deg); }
.w4 { top: 56%; right: -4%; transform: translateZ(22px) rotateZ(-4deg); }
.w4:hover, .w4:focus-visible, .w4.is-active { transform: translateY(-5px) translateZ(46px) rotateZ(-4deg) rotateX(5deg); }
.w5 { bottom: 9%; right: 11%; transform: translateZ(22px) rotateZ(-3deg); }
.w5:hover, .w5:focus-visible, .w5.is-active { transform: translateY(-5px) translateZ(46px) rotateZ(-3deg) rotateX(5deg); }
.w6 { bottom: -2%; left: 50%; transform: translateX(-50%) translateZ(22px); }
.w6:hover, .w6:focus-visible, .w6.is-active { transform: translateX(-50%) translateY(-5px) translateZ(46px) rotateX(5deg); }
.w7 { bottom: 9%; left: 11%; transform: translateZ(22px) rotateZ(3deg); }
.w7:hover, .w7:focus-visible, .w7.is-active { transform: translateY(-5px) translateZ(46px) rotateZ(3deg) rotateX(5deg); }
.w8 { top: 56%; left: -4%; transform: translateZ(22px) rotateZ(4deg); }
.w8:hover, .w8:focus-visible, .w8.is-active { transform: translateY(-5px) translateZ(46px) rotateZ(4deg) rotateX(5deg); }
.w9 { top: 30%; left: -5%; transform: translateZ(22px) rotateZ(-5deg); }
.w9:hover, .w9:focus-visible, .w9.is-active { transform: translateY(-5px) translateZ(46px) rotateZ(-5deg) rotateX(5deg); }
.w10 { top: 9%; left: 8%; transform: translateZ(22px) rotateZ(-2deg); }
.w10:hover, .w10:focus-visible, .w10.is-active { transform: translateY(-5px) translateZ(46px) rotateZ(-2deg) rotateX(5deg); }

.rcm-info-card {
  position: absolute;
  z-index: 12;
  left: var(--tooltip-x, 50%);
  top: var(--tooltip-y, 58%);
  width: min(286px, 70vw);
  min-height: 118px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 18px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.84), rgba(230, 241, 251, 0.68)),
    radial-gradient(circle at 20% 10%, rgba(29, 158, 117, 0.18), transparent 70%);
  box-shadow: 0 26px 55px rgba(4, 44, 83, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(18px);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 10px) rotateX(10deg) translateZ(40px) scale(0.96);
  transform-origin: center top;
  transition: left 0.22s ease, top 0.22s ease, opacity 0.18s ease, transform 0.22s ease, box-shadow 0.22s ease;
}

.rcm-info-card.is-live {
  opacity: 1;
  transform: translate(-50%, 10px) rotateX(0deg) translateZ(58px) scale(1);
  box-shadow: 0 32px 70px rgba(4, 44, 83, 0.28), 0 0 0 5px rgba(29, 158, 117, 0.12);
}

.rcm-info-card.is-above {
  transform-origin: center bottom;
  transform: translate(-50%, calc(-100% - 10px)) rotateX(0deg) translateZ(58px) scale(1);
  opacity: 1;
  pointer-events: auto;
}

.rcm-info-card::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -8px;
  width: 16px;
  height: 16px;
  border-left: 1px solid rgba(255, 255, 255, 0.72);
  border-top: 1px solid rgba(255, 255, 255, 0.72);
  background: rgba(244, 250, 255, 0.88);
  transform: translateX(-50%) rotate(45deg);
}

.rcm-info-card.is-above::before {
  top: auto;
  bottom: -8px;
  border: 0;
  border-right: 1px solid rgba(255, 255, 255, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.72);
}

.rcm-info-card span {
  display: inline-flex;
  margin-bottom: 7px;
  padding: 5px 9px;
  border-radius: 999px;
  color: var(--teal);
  background: var(--light-teal);
  font-size: 0.68rem;
  font-weight: 900;
  text-transform: uppercase;
}

.rcm-info-card strong {
  display: block;
  color: var(--navy);
  font-family: "Plus Jakarta Sans", Inter, sans-serif;
  font-size: clamp(0.98rem, 1.6vw, 1.2rem);
  line-height: 1.1;
}

.rcm-info-card p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: clamp(0.78rem, 1.1vw, 0.9rem);
  line-height: 1.45;
}

.rcm-info-link {
  display: inline-flex;
  width: fit-content;
  margin-top: 12px;
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--white);
  background: linear-gradient(135deg, var(--teal), var(--accent-teal));
  box-shadow: 0 12px 24px rgba(15, 110, 86, 0.22);
  font-size: 0.78rem;
  font-weight: 900;
}

.rcm-info-link[hidden] {
  display: none;
}

.rcm-list {
  display: grid;
  gap: 14px;
}

.rcm-list article,
.service-card,
.timeline-step,
.feature-item,
.contact-form {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 12px 28px rgba(4, 44, 83, 0.08);
}

.rcm-list article {
  padding: 18px;
}

.rcm-list h3,
.service-card h3,
.feature-item h3,
.timeline-step h3 {
  margin-bottom: 6px;
  font-size: 1.05rem;
}

.rcm-list p,
.service-card p,
.feature-item p,
.timeline-step p,
.consult-band p,
.footer p {
  color: var(--muted);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 16px;
}

.service-card {
  position: relative;
  min-height: 254px;
  padding: 22px;
  overflow: hidden;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(55, 138, 221, 0.42), rgba(29, 158, 117, 0.48));
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.28s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
}

.service-card:hover::before {
  opacity: 1;
}

.service-card svg,
.feature-item svg {
  width: 34px;
  height: 34px;
  padding: 7px;
  border-radius: 10px;
  color: var(--white);
  background: linear-gradient(135deg, var(--teal), var(--accent-teal));
}

.service-card a {
  display: inline-flex;
  margin-top: 8px;
  color: var(--teal);
  font-weight: 800;
}

.service-card-featured {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.82), rgba(225, 245, 238, 0.76)),
    radial-gradient(circle at 90% 12%, rgba(29, 158, 117, 0.18), transparent 18rem);
}

.timeline {
  position: relative;
  display: grid;
  gap: 12px;
  padding-left: 20px;
}

.timeline::before,
.timeline-progress {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 30px;
  width: 3px;
  border-radius: 999px;
  background: rgba(12, 68, 124, 0.14);
}

.timeline-progress {
  bottom: auto;
  height: 0;
  background: linear-gradient(var(--accent-blue), var(--accent-teal));
}

.timeline-step {
  position: relative;
  min-height: 102px;
  padding: 20px 20px 20px 66px;
}

.timeline-step span {
  position: absolute;
  left: 0;
  top: 20px;
  z-index: 3;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: #0C6E7E;
  font-weight: 900;
  box-shadow: 0 12px 26px rgba(4, 44, 83, 0.2);
}

.timeline-step:nth-child(1) span { background: #042C53; }
.timeline-step:nth-child(2) span { background: #0C6E7E; }
.timeline-step:nth-child(3) span { background: #0F8C6E; }
.timeline-step:nth-child(4) span { background: #4A7C9E; }

.timeline-step:nth-child(1) { background: #D6E8F5; border-color: #B0CDE8; }
.timeline-step:nth-child(2) { background: #C8EAE0; border-color: #96D4C0; }
.timeline-step:nth-child(3) { background: #D8F0E8; border-color: #A8DCC8; }
.timeline-step:nth-child(4) { background: #E8F4FC; border-color: #C0DCEE; }

.pill-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pill-cloud span {
  padding: 9px 13px;
  background: rgba(230, 241, 251, 0.86);
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.feature-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 18px;
}

.consult-band {
  position: relative;
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 24px;
  align-items: center;
  margin-bottom: 20px;
  padding: clamp(28px, 5vw, 54px);
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 0;
  background:
    radial-gradient(circle at 86% 12%, rgba(29, 158, 117, 0.34), transparent 22rem),
    radial-gradient(circle at 8% 18%, rgba(55, 138, 221, 0.24), transparent 24rem),
    linear-gradient(135deg, #052d54 0%, #0c447c 48%, #0f6e56 100%);
  box-shadow: 0 26px 70px rgba(4, 44, 83, 0.24);
  overflow: hidden;
  isolation: isolate;
}

.consult-band::before,
.consult-band::after,
.career-apply::before,
.career-apply::after {
  content: "";
  position: absolute;
  pointer-events: none;
  border-radius: 50%;
  filter: blur(2px);
  opacity: 0.72;
  animation: contact-orbit 8s ease-in-out infinite;
}

.consult-band::before,
.career-apply::before {
  width: 132px;
  height: 132px;
  right: 8%;
  top: 12%;
  background: radial-gradient(circle at 30% 25%, rgba(255, 255, 255, 0.86), rgba(29, 158, 117, 0.28) 44%, transparent 70%);
}

.consult-band::after,
.career-apply::after {
  width: 92px;
  height: 92px;
  left: 6%;
  bottom: 14%;
  border: 1px solid rgba(255, 255, 255, 0.38);
  background: radial-gradient(circle, rgba(55, 138, 221, 0.34), transparent 68%);
  animation-delay: -3s;
}

.consult-band > *,
.career-apply > * {
  position: relative;
  z-index: 1;
}

.consult-band h2 {
  margin-top: 12px;
  color: #ffffff;
  font-size: clamp(1.9rem, 4vw, 3.5rem);
}

.consult-band p {
  color: rgba(255, 255, 255, 0.78);
}

.consult-band .section-kicker,
.career-apply .section-kicker {
  background: rgba(225, 245, 238, 0.92);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}

.contact-form {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  padding: clamp(20px, 3vw, 34px);
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 24px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.86), rgba(230, 241, 251, 0.68)),
    radial-gradient(circle at 86% 8%, rgba(29, 158, 117, 0.14), transparent 18rem);
  box-shadow: 0 28px 70px rgba(4, 44, 83, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  transform: perspective(1000px) rotateX(2deg) rotateY(-2deg);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.contact-form:hover,
.contact-form:focus-within {
  transform: perspective(1000px) rotateX(0deg) rotateY(0deg) translateY(-6px);
  box-shadow: 0 38px 90px rgba(4, 44, 83, 0.3), 0 0 0 6px rgba(29, 158, 117, 0.1);
}

.contact-form::before {
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.58);
  pointer-events: none;
}

.contact-form label {
  position: relative;
  display: grid;
  gap: 8px;
  text-align: left;
  color: var(--navy);
  font-size: 0.85rem;
  font-weight: 800;
  transition: transform 0.2s ease;
}

.contact-form label:focus-within {
  transform: translateY(-2px);
}

.contact-form label:nth-child(3) {
  grid-column: 1 / -1;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 14px;
  padding: 13px 14px;
  color: var(--navy);
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.85), 0 10px 24px rgba(4, 44, 83, 0.08);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: none;
  border-color: var(--accent-teal);
  transform: translateY(-1px);
  box-shadow: 0 0 0 4px rgba(29, 158, 117, 0.18), 0 18px 34px rgba(4, 44, 83, 0.14);
}

.contact-form select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23042C53' stroke-width='2'><path d='M6 9l6 6 6-6'/></svg>");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 16px;
}

.contact-form input[type="file"] {
  padding: 9px 13px;
}

.contact-form label[data-full],
.contact-form label:has(select),
.contact-form label:has(input[type="file"]) {
  grid-column: 1 / -1;
}

.contact-form button {
  position: relative;
  overflow: hidden;
  grid-column: 1 / -1;
  margin-top: 8px;
  padding: 15px;
  border-radius: 14px;
  font-size: 1rem;
  color: #ffffff;
  background: linear-gradient(135deg, #1d9e75, #0abfbc);
  box-shadow: 0 18px 34px rgba(29, 158, 117, 0.32);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.contact-form button::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.28), transparent);
  transform: translateX(-120%);
  transition: transform 0.55s ease;
}

.contact-form button:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 42px rgba(29, 158, 117, 0.38);
}

.contact-form button:hover::after {
  transform: translateX(120%);
}

.contact-form.is-sent {
  box-shadow: 0 36px 86px rgba(29, 158, 117, 0.32), 0 0 0 7px rgba(29, 158, 117, 0.16);
}

.cta-banner {
  margin-bottom: 20px;
  padding: clamp(26px, 5vw, 58px);
  border-radius: var(--radius);
  text-align: center;
  color: var(--white);
  background:
    radial-gradient(circle at 80% 15%, rgba(29, 158, 117, 0.7), transparent 28rem),
    linear-gradient(135deg, var(--navy), var(--teal));
  box-shadow: var(--shadow);
}

.career-apply {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(320px, 1.22fr);
  gap: clamp(22px, 5vw, 56px);
  align-items: center;
  text-align: left;
  background:
    radial-gradient(circle at 78% 14%, rgba(55, 138, 221, 0.42), transparent 25rem),
    radial-gradient(circle at 8% 80%, rgba(29, 158, 117, 0.46), transparent 22rem),
    linear-gradient(135deg, #042c53 0%, #0c447c 52%, #0f6e56 100%);
  overflow: hidden;
  isolation: isolate;
}

.career-apply h2 {
  align-self: end;
}

.career-apply > p {
  align-self: start;
  max-width: 520px;
}

.career-apply .career-form {
  grid-column: 2;
  grid-row: 1 / span 2;
}

.career-form {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(230, 241, 251, 0.74)),
    radial-gradient(circle at 16% 12%, rgba(55, 138, 221, 0.14), transparent 20rem);
}

.career-form input[type="file"] {
  background:
    linear-gradient(145deg, #ffffff, #eef7ff),
    radial-gradient(circle at 95% 10%, rgba(29, 158, 117, 0.12), transparent 12rem);
  cursor: pointer;
}

.career-form input[type="file"]::file-selector-button {
  margin-right: 12px;
  border: 0;
  border-radius: 999px;
  padding: 9px 13px;
  color: #ffffff;
  background: var(--navy);
  font-weight: 800;
  cursor: pointer;
}

.cta-banner h2 {
  color: var(--white);
  font-size: clamp(2rem, 4vw, 4rem);
}

.cta-banner p {
  max-width: 760px;
  margin: 14px auto 22px;
  color: rgba(255, 255, 255, 0.78);
}

.cta-banner div {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.footer {
  margin-bottom: 0;
  background: #021628;
  color: #ffffff;
}

.service-page-hero {
  min-height: 54vh;
  display: grid;
  align-content: center;
  background:
    radial-gradient(circle at 82% 20%, rgba(29, 158, 117, 0.16), transparent 24rem),
    radial-gradient(circle at 12% 18%, rgba(55, 138, 221, 0.18), transparent 22rem),
    rgba(255, 255, 255, 0.78);
}

.service-page-hero h1 {
  max-width: 880px;
  font-size: clamp(2.5rem, 5vw, 5rem);
}

.service-page-hero p {
  max-width: 760px;
  color: var(--muted);
  font-size: clamp(1rem, 1.4vw, 1.18rem);
  font-weight: 600;
}

.service-detail-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(18px, 4vw, 44px);
  align-items: start;
}

.service-detail-panel,
.service-checklist,
.service-metric {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 12px 28px rgba(4, 44, 83, 0.08);
}

.service-detail-panel{
    background: transparent;
    padding: 0;
    border: none;
    box-shadow: none;
}

.service-detail-panel h2,
.service-checklist h2 {
  margin-bottom: 12px;
  font-size: clamp(1.45rem, 2.4vw, 2.2rem);
}

.service-detail-panel p,
.service-checklist li {
  color: var(--muted);
}

.service-checklist {
  background: linear-gradient(135deg, #f4f8f6, #eef2ff);
  border-color: #e2ece8;
  border-radius: 20px;
  padding: clamp(20px, 3vw, 30px);
}

.service-checklist ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-checklist li {
  position: relative;
  padding-left: 30px;
  font-weight: 700;
  line-height: 1.55;
}

.service-checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.35em;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--accent-teal));
  box-shadow: 0 0 0 5px rgba(29, 158, 117, 0.12);
}

.service-metrics{
    display:flex;
    gap:24px;
    margin-top:35px;
    flex-wrap:wrap;
}

.service-metric{
    flex:1;
    min-width:170px;

    background:#FFFFFF;

    border:1px solid #E5EDF7;

    border-radius:22px;

    padding:35px 20px;

    text-align:center;

    box-shadow:0 12px 30px rgba(37,99,235,.08);

    transition:.35s ease;
}

.service-metric strong{

    display:block;

    font-size:50px;

    color:#1D4ED8;

    font-weight:800;

    margin-bottom:10px;

}

.service-metric span{

    color:#4B5563;

    font-size:18px;

    font-weight:600;

}
.service-flow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  background: linear-gradient(180deg, #FFFFFF 0%, #F0F7FF 100%);
}

.service-flow article {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 16px;
  padding: 28px;
}

.service-flow article span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #0A2540;
  color: #ffffff;
  font-weight: 800;
  font-size: 1rem;
  margin-bottom: 16px;
  box-shadow: 0 0 0 6px rgba(16, 185, 129, 0.2);
}

.service-flow h3 {
  font-size: 1rem;
  color: #0A2540;
}

.service-flow p {
  color: var(--muted);
  font-size: 0.9rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr repeat(3, 1fr);
  gap: 24px;
}

.footer h2 {
  margin-bottom: 12px;
  font-size: 1rem;
  color: #1D9E75;
}

.footer a:not(.brand) {
  display: block;
  margin: 8px 0;
  color: #BFDBF7;
  font-weight: 700;
}

.footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.copyright {
  margin: 28px 0 0;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  text-align: center;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.6);
}

.footer-brand {
  color: #ffffff;
}

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

.js .reveal {
  opacity: 0;
  transform: translateY(26px);
}

@keyframes float {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(14px, -22px, 0); }
}

@keyframes float3d {
  0%, 100% { transform: rotateX(8deg) rotateY(-10deg) translateY(0); }
  50% { transform: rotateX(3deg) rotateY(8deg) translateY(-14px); }
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

@keyframes marquee {
  to { transform: translateX(-50%); }
}

@keyframes contact-orbit {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(14px, -18px, 0) scale(1.08); }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

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

@media (max-width: 980px) {
  .page-shell {
    width: 100%;
    padding-top: 76px;
  }

  .nav-card {
    width: 100%;
    grid-template-columns: 1fr auto;
  }

  .menu-toggle {
    display: block;
  }

  .nav-links,
  .nav-cta {
    display: none;
  }

  .nav-card.is-open .nav-links,
  .nav-card.is-open .nav-cta {
    display: flex;
  }

  .nav-card.is-open {
    align-items: start;
    grid-template-columns: 1fr auto;
    padding-bottom: 16px;
  }

  .nav-card.is-open .nav-links {
    grid-column: 1 / -1;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    border-radius: 16px;
  }

  .nav-card.is-open .nav-cta {
    grid-column: 1 / -1;
    width: 100%;
  }

  .hero {
    min-height: auto;
  }

  .hero-grid,
  .rcm-grid,
  .service-detail-grid,
  .career-apply,
  .consult-band {
    grid-template-columns: 1fr;
  }

  .career-apply .career-form {
    grid-column: auto;
    grid-row: auto;
  }

  .hero-visual {
    min-height: 390px;
  }

  .stats-grid,
  .card-grid,
  .feature-list,
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-flow {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 620px) {
  .page-shell {
    padding-top: 78px;
  }

  .section-card,
  .consult-band {
    padding: 20px;
    border-radius: 14px;
  }

  .career-apply {
    padding: 24px 20px;
  }

  h1 {
    font-size: 2.55rem;
  }

  .hero-actions,
  .cta-banner div {
    align-items: stretch;
    flex-direction: column;
  }

  .btn,
  .nav-cta {
    width: 100%;
  }

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

  .glass-card {
    border-radius: 24px;
  }

  .data-panel {
    width: 104px;
    min-height: 64px;
    padding: 9px;
  }

  .panel-a { left: -4px; }
  .panel-b { right: -4px; }

  .stats-grid,
  .card-grid,
  .feature-list,
  .footer-grid,
  .service-metrics,
  .service-flow,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .contact-form {
    padding: 18px;
    transform: none;
  }

  .contact-form:hover,
  .contact-form:focus-within {
    transform: translateY(-3px);
  }

  .contact-form label:nth-child(3),
  .contact-form button {
    grid-column: auto;
  }

  .wheel-item {
    max-width: 92px;
  }
}


#loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  background: radial-gradient(circle at 50% 40%, #0a3a6e, #042C53 70%);
  transition: opacity 0.7s ease, visibility 0.7s ease;
}

#loader.hide {
  opacity: 0;
  visibility: hidden;
}

.loader-scene {
  width: 90px;
  height: 90px;
  perspective: 400px;
  margin-bottom: 10px;
}

.loader-cube {
  width: 90px;
  height: 90px;
  position: relative;
  transform-style: preserve-3d;
  animation: cube-spin 2.4s linear infinite;
}

.cube-face {
  position: absolute;
  width: 90px;
  height: 90px;
  border: 2px solid rgba(0, 212, 178, 0.6);
  border-radius: 10px;
  overflow: hidden;
  background: #042C53;
}

.cube-face img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  opacity: 0.9;
}

.cube-front  { transform: translateZ(45px); }
.cube-back   { transform: rotateY(180deg) translateZ(45px); }
.cube-left   { transform: rotateY(-90deg) translateZ(45px); }
.cube-right  { transform: rotateY(90deg) translateZ(45px); }
.cube-top    { transform: rotateX(90deg) translateZ(45px); }
.cube-bottom { transform: rotateX(-90deg) translateZ(45px); }

@keyframes cube-spin {
  0%   { transform: rotateX(0deg) rotateY(0deg); }
  100% { transform: rotateX(360deg) rotateY(360deg); }
}


.loader-title {
  color: #ffffff;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.loader-bar {
  width: 220px;
  height: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.15);
  overflow: hidden;
}

.loader-progress {
  height: 100%;
  width: 0%;
  border-radius: 999px;
  background: linear-gradient(90deg, #1D9E75, #00D4B2);
  animation: load-fill 2s ease forwards;
}

@keyframes load-fill {
  0%   { width: 0%; }
  100% { width: 100%; }
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.about-text p {
  margin-bottom: 18px;
  line-height: 1.8;
  color: var(--muted);
}

.about-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 28px;
}

.about-value {
  background: rgba(255, 255, 255, 0.74);
  border-radius: 12px;
  padding: 16px 18px;
  border: 1px solid var(--line);
}

.about-value strong {
  display: block;
  color: var(--navy);
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.about-value span {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.5;
}

.about-mission {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.mission-card {
  background: rgba(255, 255, 255, 0.74);
  border-radius: 16px;
  padding: 28px;
  border: 1px solid var(--line);
}

.mission-card p {
  margin-top: 10px;
  line-height: 1.8;
  color: var(--muted);
}

.mission-card ul {
  margin-top: 10px;
  padding-left: 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mission-card ul li {
  color: var(--muted);
  line-height: 1.6;
  font-size: 0.95rem;
}

@media (max-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr;
  }
  .about-values {
    grid-template-columns: 1fr;
  }
}

.brand-medi {
  color: #3B2F8F;
  font-weight: 800;
}

.brand-byte {
  background: linear-gradient(90deg, #3B2F8F, #1D9E75);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 800;
}

.brand-tech {
  background: linear-gradient(90deg, #1D9E75, #0ABFBC);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 800;
}

.service-metric:hover{

    transform:translateY(-8px);

    box-shadow:0 20px 45px rgba(37,99,235,.14);

}

.service-page-hero .section-kicker {
  color: #042C53;
  background: rgba(255, 255, 255, 0.75);
  border-color: rgba(4, 44, 83, 0.25);
}

.service-page-hero h1 {
  color: #042C53;
  text-shadow: 2px 2px 12px rgba(255, 255, 255, 0.9), 0 0 30px rgba(255, 255, 255, 0.7);
}

.service-page-hero p {
  color: #042C53;
  background: rgba(255, 255, 255, 0.60);
  padding: 10px 16px;
  border-radius: 10px;
  text-shadow: none;
  display: inline-block;
}

.service-page-hero .breadcrumb {
  color: #042C53;
  text-shadow: 1px 1px 6px rgba(255, 255, 255, 0.9);
}

.service-page-hero .breadcrumb a {
  color: #042C53;
}

.service-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  margin-bottom: 10px;
  border-radius: 50%;
  background: #042C53;
  color: #ffffff;
  font-weight: 800;
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  display: inline-block;
  padding: 8px 14px;
  border-radius: 999px;
  color: #ffffff;
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 200px;
  margin-top: 8px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #ffffff;
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  z-index: 60;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown-menu a {
  display: block;
  padding: 9px 12px;
  border-radius: 8px;
  color: var(--navy);
  font-size: 0.88rem;
  font-weight: 700;
}

.nav-dropdown-menu a:hover {
  background: var(--soft-bg);
}

@media (max-width: 980px) {
  .nav-dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    margin-top: 0;
    padding-left: 12px;
    display: none;
  }

  .nav-dropdown.is-open .nav-dropdown-menu {
    display: block;
  }
}

.nav-dropdown-toggle {
  color: #042C53;
}

.nav-dropdown-toggle:hover {
  color: #1D9E75;
}

.nav-links a:hover {
  color: #1D9E75;
}

.connect-icons {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 10px;
}

.connect-icon {
  box-sizing: border-box;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
  text-decoration: none;
  overflow: hidden;
  position: relative;
  box-shadow:
    0 6px 14px rgba(0,0,0,0.25),
    inset 0 -3px 6px rgba(0,0,0,0.25),
    inset 0 3px 4px rgba(255,255,255,0.35);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.connect-icon svg {
  display: block;
  stroke: #fff;
}

.connect-icon:hover,
.connect-icon:focus-visible {
  transform: translateY(-4px) scale(1.08);
  box-shadow:
    0 12px 20px rgba(0,0,0,0.3),
    inset 0 -3px 6px rgba(0,0,0,0.25),
    inset 0 3px 4px rgba(255,255,255,0.4);
}


.connect-linkedin { background: linear-gradient(145deg, #4aa8ff, #0a66c2); }
.connect-twitter { background: linear-gradient(145deg, #3d3d3d, #000000); }
.connect-mail {
  background: linear-gradient(145deg, #378ADD, #042C53);
}

.connect-mail .mail-monogram {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: "Plus Jakarta Sans", "Inter", sans-serif;
  font-weight: 800;
  font-size: 18px;
  line-height: 1;
  color: #fff;
  text-align: center;
}

/* Twitter/X animated button */
.button {
  box-sizing: border-box;
  flex-shrink: 0;
  background-color: #1DA1F2;
  border: none;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  text-decoration: none;
  position: relative;
  box-shadow:
    0 6px 14px rgba(0,0,0,0.25),
    inset 0 -3px 6px rgba(0,0,0,0.25),
    inset 0 3px 4px rgba(255,255,255,0.35);
  transition: transform 0.5s ease, box-shadow 0.25s ease;
}
.button:hover {
  transform: rotate(-360deg);
  box-shadow:
    0 12px 20px rgba(0,0,0,0.3),
    inset 0 -3px 6px rgba(0,0,0,0.25),
    inset 0 3px 4px rgba(255,255,255,0.4);
}
.icon {
  width: 20px;
  height: 20px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.6));
  transition: transform 0.3s ease;
}

.icon.icons8-X { display: none; }
.button:hover .icons8-Twitter-Filled { display: none; }
.button:hover .icons8-X {
  display: block;
  transform: translate(-50%, -50%) rotate(0deg);
}

/* LinkedIn animated button */
.Btn {
  box-sizing: border-box;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 999%;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  background-color: #0a66c2;
  box-shadow:
    0 6px 14px rgba(0,0,0,0.25),
    inset 0 -3px 6px rgba(0,0,0,0.25),
    inset 0 3px 4px rgba(255,255,255,0.35);
  transition: width 0.3s ease, border-radius 0.3s ease, box-shadow 0.25s ease;
}
.Btn:hover {
  width: 128px;
  border-radius: 999px;	
  box-shadow:
    0 12px 20px rgba(0,0,0,0.3),
    inset 0 -3px 6px rgba(0,0,0,0.25),
    inset 0 3px 4px rgba(255,255,255,0.4);
}
.sign {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition-duration: 0.3s;
}
.sign svg { width: 20px; height: 20px; }
.sign svg path { fill: white; }
.text {
  position: absolute;
  top: 50%;
  left: 42px;
  transform: translateY(-50%);
  opacity: 0;
  color: white;
  font-size: 1em;
  font-weight: 800;
  white-space: nowrap;
  transition: opacity 0.3s;
}

.Btn:hover .text {
  opacity: 1;
}

.Btn:active {
  transform: translate(2px, 2px);
}

/* Instagram button - Uiverse.io by vinodjangid07 */
.instaBtn {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  position: relative;
  border-radius: 50%;
  cursor: pointer;
  transition: all .3s;
}
.instaSvgContainer {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  backdrop-filter: blur(4px);
  border-radius: 50%;
  transition: all .3s;
}
.instaBG {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
  z-index: -1;
  border-radius: 9px;
  pointer-events: none;
  transition: all .3s;
}
.instaBtn:hover .instaBG {
  transform: rotate(35deg);
  transform-origin: bottom;
}
.instaBtn:hover .instaSvgContainer {
  background-color: rgba(156, 156, 156, 0.466);
}
.rcm-journey {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 0;
  margin-top: 40px;
  overflow-x: auto;
  padding-bottom: 10px;
}

.journey-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 210px;
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 16px;
  padding: 24px 18px;
  box-shadow: 0 8px 20px rgba(21, 62, 117, 0.06);
  transition: transform .3s, box-shadow .3s;
}

.journey-step:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 28px rgba(21, 62, 117, 0.12);
}

.journey-circle {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: #F4F9FB;
  border: 2px solid #E2E8F0;
  box-shadow: 0 0 0 6px #DFFAFE, 0 8px 20px rgba(21, 62, 117, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  transition: transform .3s, box-shadow .3s;
}

.journey-circle svg {
  width: 32px;
  height: 32px;
  stroke: #153E75;
}

.journey-step:hover .journey-circle {
  transform: translateY(-4px);
  box-shadow: 0 0 0 6px rgba(61, 217, 235, 0.25), 0 12px 24px rgba(21, 62, 117, 0.15);
}

.journey-title {
  font-size: 16px;
  font-weight: 700;
  color: #153E75;
  margin: 0 0 6px;
}

.journey-desc {
  font-size: 13px;
  color: #2D3748;
  margin: 0;
  line-height: 1.6;
}

.journey-connector {
  align-self: flex-start;
  margin-top: 66px;
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, #2B6CB0, #3DD9EB);
  position: relative;
}

.journey-connector::after {
  content: "";
  position: absolute;
  right: -4px;
  top: -3px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #3DD9EB;
}

@media (max-width: 900px) {
  .rcm-journey {
    flex-direction: column;
  }
  .journey-connector {
    width: 2px;
    height: 30px;
    align-self: center;
    margin: 0;
  }
  .journey-connector::after {
    right: -3px;
    top: auto;
    bottom: -4px;
  }
}