:root {
  --ink: #14102f;
  --navy: #191536;
  --deep: #0d1026;
  --blue: #087fbd;
  --cyan: #09aee5;
  --aqua: #21d0d7;
  --sky: #eaf8ff;
  --line: #d9e5ee;
  --muted: #5b6877;
  --white: #ffffff;
  --orange: #ff7a18;
  --green: #168a5f;
  --shadow: 0 20px 60px rgba(20, 16, 47, 0.12);
  --radius: 8px;
  --max: 1300px;
  --para: #1A2A4E;
  --para1: #55627d;
  --para2: #94A3B8;
  --main-heading: #091c52;
  --main-font: "Manrope", sans-serif;
  --bg: #FFFFFF;
  --ink: #12142B;
  --muted: #6B7280;
  --line: #E7E8F0;
  --pill-bg: #E9EEFB;
  --pill-ink: #3B5BDB;
  --tag-bg: #F4F5F9;
  --hover: #F8F9FD;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 18% 0%, rgba(9, 174, 229, 0.18), transparent 30rem),
    radial-gradient(circle at 92% 14%, rgba(33, 208, 215, 0.14), transparent 28rem),
    linear-gradient(180deg, #f3fbff 0%, #ffffff 46%, #f7fbfe 100%);
  /* font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; */
  font-family: var(--main-font);
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
  font-family: var(--main-font);
}

p {
  color: #3a3a3c;
}

span {
  font-family: var(--main-font);
}

.container {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 30;
  border-bottom: 1px solid rgb(194 194 194 / 22%);
  /* border-bottom: 1px solid rgb(218 218 218 / 55%); */
  /* background: linear-gradient(180deg, rgba(3, 19, 49, 0.98), rgba(4, 25, 62, 0.95)); */
  backdrop-filter: blur(20px);
  box-shadow: none;
  transition: background 220ms ease, box-shadow 220ms ease, border-color 220ms ease, backdrop-filter 220ms ease;
}

.site-header.scrolled {
  background: linear-gradient(180deg, rgb(42 56 81 / 71%), rgb(4 25 62 / 44%));
  backdrop-filter: blur(20px);
}

.orangebanner {
  color: #0a6cd1 !important;
}

.badge-icon-orange {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid #0a6cd1 !important;
  border-radius: 999px;
  background: rgb(213 219 251);
  color: #0a6cd1;
  font-size: 1rem;
}

.orangebanner-btn {
  background-color: #0a6cd1 !important;
  color: #fff !important;
}

.stat-icon.orangeIcon {
  border: 1px solid #0a6cd1;
  background: rgb(213 219 251);
}

.btn-hero-outline.orangebanner {
  border-color: #0a6cd1 !important;
}

.btn-hero-outline.bluetext {
  border-color: #1d4dbd !important;
}

.bluetext {
  color: #1d4dbd !important;
}

.greentext {
  color: #0d357c !important;
}

.greenbanner-btn {
  background-color: #0d357c !important;
  color: #fff !important;
}

.btn-hero-outline.greenbanner {
  border-color: #0d357c !important;
}

.greenbanner {
  color: #0d357c !important;
}

.badge-icon-green {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid #0d357c !important;
  border-radius: 999px;
  background: rgb(229 232 253);
  color: #0d357c;
  font-size: 1rem;
}

.stat-icon.greenIcon {
  border: 1px solid #0d357c;
  background: rgb(229 232 253);
}

.stat-icon.blueIcon {
  border: 1px solid #1d4dbd;
  background: rgb(203 215 249);
}

.bluebanner-btn {
  background-color: #1d4dbd !important;
  color: #fff !important;
}

.badge-icon-blue {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid #1d4dbd !important;
  border-radius: 999px;
  background: rgb(229 235 251);
  color: #1d4dbd;
  font-size: 1rem;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(86.5%, 1480px);
  min-height: 88px;
  gap: 36px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 245px;
}

.brand img {
  width: 70px;
  height: 70px;
  object-fit: contain;
}

.brand strong {
  display: block;
  color: #000;
  font-size: 1.5rem;
  letter-spacing: 0;
  line-height: 1.1;
}

.brand span {
  display: block;
  color: #222222;
  font-size: 0.71rem;
  font-weight: 700;
}

.site-header.scrolled .brand strong {
  color: var(--white);
}

.site-header.scrolled .brand span {
  color: rgba(255, 255, 255, 0.78);
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 45px;
  border: 0;
  border-radius: 0;
  background: transparent;
  padding: 0;
}

.nav-item {
  position: relative;
}

.nav-links a {
  position: relative;
  border-radius: 0;
  color: #333;
  font-size: 17px;
  font-weight: 800;
  padding: 10px 0;
  transition: color 180ms ease;
}

.nav-item button {
  position: relative;
  border-radius: 0;
  color: #333;
  font-size: 17px;
  font-weight: 800;
  padding: 10px 12px;
  transition: color 180ms ease;
}

.singleproductPage .nav-links button {
  color: #fff;
}

.site-header.scrolled .nav-links button {
  color: rgba(255, 255, 255, 0.94);
}

#products-menu a {
  color: #000;
}

.nav-parent {
  display: inline-flex;
  align-items: center;
}

.nav-caret {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-left: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-3px) rotate(45deg);
  transition: transform 180ms ease;
}

.nav-links a:hover .nav-caret {
  transform: translateY(0) rotate(45deg);
}

.nav-menu {
  position: absolute;
  top: calc(100% + 18px);
  left: 50%;
  z-index: 20;
  display: grid;
  min-width: 230px;
  padding: 10px;
  border: 1px solid rgba(32, 200, 255, 0.2);
  border-radius: 8px;
  background: rgba(3, 14, 36, 0.94);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.24);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 8px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.nav-menu::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -18px;
  height: 18px;
}

.nav-dropdown:hover .nav-menu,
.nav-dropdown:focus-within .nav-menu {
  opacity: 1;
  pointer-events: auto;
}

.nav-menu a {
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.92rem;
  padding: 11px 12px;
  white-space: nowrap;
}

.nav-menu a::after {
  display: none;
}

.nav-menu a:hover,
.nav-menu a:focus {
  background: rgba(0, 174, 239, 0.12);
  color: #fff;
}

.site-header.scrolled .nav-links a {
  color: rgba(255, 255, 255, 0.94);
}

.site-header .contactmenu {
  background: #161616 !important;
  padding: 5px 20px;
  border-radius: 3px;
  color: #ffffff;
  font-weight: 600;
}

.singleproductPage .site-header .contactmenu {
  color: #161616 !important;
  background: #ffffff !important;
}

.site-header.scrolled .contactmenu {
  background: #fff !important;
  color: #333;
  padding: 5px 20px;
  border-radius: 3px;
}

.site-header.scrolled .nav-links .contactmenu {
  color: #333 !important;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 3px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, #00aeef, #007bff);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 240ms ease, box-shadow 240ms ease;
}

.singleproductPage .nav-links a {
  color: #fff;
}

.singleproductPage .brand strong {
  color: #fff !important;
}

.nav-dropdown a:hover {
  color: var(--white) !important;
}

.nav-links a:hover,
.nav-links a.active {
  color: #41bcff !important;
}

.site-header.scrolled .nav-links a:hover,
.site-header.scrolled .nav-links a.active {
  color: var(--white);
}

.site-header.scrolled .nav-links .contactmenu::after {
  background: none !important;
  box-shadow: none !important;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
  box-shadow: 0 0 18px rgba(0, 174, 239, 0.55);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 30px;
}

.header-actions .btn {
  min-height: 54px;
  border-radius: 8px;
  padding: 15px 26px;
  font-size: 1rem;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--navy);
  font-size: 1.35rem;
  cursor: pointer;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 44px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 11px 18px;
  font-weight: 700;
  line-height: 1.2;
  font-size: 15px;
  letter-spacing: .4px;
  font-family: system-ui;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}

.btn-icon-calendar,
.btn-icon-arrow {
  position: relative;
  display: inline-block;
  flex: 0 0 auto;
}

.btn-icon-calendar {
  width: 15px;
  height: 15px;
  border: 2px solid currentColor;
  border-radius: 3px;
}

.btn-icon-calendar::before {
  content: "";
  position: absolute;
  left: -2px;
  right: -2px;
  top: 3px;
  border-top: 2px solid currentColor;
}

.btn-icon-calendar::after {
  content: "";
  position: absolute;
  left: 3px;
  right: 3px;
  top: -5px;
  height: 4px;
  border-left: 2px solid currentColor;
  border-right: 2px solid currentColor;
}

.btn-icon-arrow {
  width: 16px;
  height: 2px;
  background: currentColor;
}

.btn-icon-arrow::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 7px;
  height: 7px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: translateY(-50%) rotate(45deg);
}

.btn:hover {
  transform: translateY(-1px) scale(1.02);
}

.btn-primary {
  background: linear-gradient(135deg, #00aeef 0%, #007bff 100%);
  color: var(--white);
}

.btn-outline-strong {
  border-color: rgba(8, 127, 189, 0.24);
  background: rgba(255, 255, 255, 0.82);
  color: var(--navy);
  box-shadow: 0 14px 34px rgba(20, 16, 47, 0.08);
}

.btn-secondary {
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.btn-glass {
  border-color: rgba(8, 127, 189, 0.18);
  background: rgba(255, 255, 255, 0.88);
  color: var(--navy);
  box-shadow: 0 12px 28px rgba(20, 16, 47, 0.12);
}

.btn-outline {
  border-color: var(--line);
  background: var(--white);
  color: var(--navy);
}

.hero {
  display: block;
  position: relative;
  overflow: hidden;
  background: var(--deep);
  min-height: calc(100vh - 88px);
}

.converseContent {
  text-align: center;
}

.converseContent p {
  font-size: 25px;
  color: #273148;
}

.hero-carousel {
  height: calc(100vh - 88px);
  min-height: 740px;
  isolation: isolate;
}

.hero-slides,
.hero-slide {
  position: absolute;
  inset: 0;
}

.hero-slide {
  opacity: 0;
  pointer-events: none;
  transform: translateX(18px) scale(1.01);
  transition: opacity 800ms ease, transform 800ms ease;
}

.hero-slide.active {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0) scale(1);
  z-index: 1;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
}

.hero-gradient {
  position: absolute;
  inset: 0;
  /* background:
    linear-gradient(90deg, rgba(2, 18, 50, 0.88) 0%, rgba(3, 30, 75, 0.76) 28%, rgba(5, 70, 130, 0.48) 47%, rgba(0, 123, 255, 0.16) 66%, rgba(0, 174, 239, 0.04) 84%, rgba(0, 174, 239, 0) 100%),
    radial-gradient(circle at 16% 30%, rgba(0, 174, 239, 0.18), transparent 28%),
    linear-gradient(180deg, rgba(3, 20, 50, 0.18) 0%, rgba(3, 20, 50, 0.06) 48%, rgba(2, 14, 38, 0.66) 100%); */
}

.hero-content {
  width: 610px;
  max-width: 44%;
  min-width: 0;
}

.hero-copy {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  width: min(86.5%, 1480px);
  margin: 0 auto;
  min-height: 100%;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding-top: 80px;
  padding-bottom: 34px;
}

.hero-copy h1 {
  max-width: 100%;
  margin: 18px 0 14px;
  color: #000000;
  font-size: clamp(2.65rem, 3.45vw, 4.05rem);
  line-height: 1.2;
  letter-spacing: 0;
}

.hero-copy h1 span {
  color: #20c8ff;
}

.hero-copy p {
  max-width: 560px;
  margin: 0;
  color: rgb(0 0 0 / 90%);
  font-size: clamp(1rem, 1.08vw, 1.12rem);
  font-weight: 550;
  line-height: 1.45;
}

.hero-badge-row {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  max-width: 100%;
}

.badge-icon {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(32, 200, 255, 0.5);
  border-radius: 999px;
  background: rgba(0, 174, 239, 0.2);
  color: #20c8ff;
  box-shadow: inset 0 0 18px rgba(32, 200, 255, 0.14), 0 12px 32px rgba(0, 174, 239, 0.18);
  font-size: 1rem;
}

.badge-icon::before,
.badge-icon::after,
.stat-icon::before,
.stat-icon::after {
  content: "";
  position: absolute;
  display: block;
}

.badge-icon,
.stat-icon {
  position: relative;
}

.badge-icon-orange::before,
.badge-icon-orange::after,
.stat-icon::before,
.stat-icon::after {
  content: "";
  position: absolute;
  display: block;
}

.section-kicker .bi {
  font-size: 20px;
}

.stat-icon:is(.icon-payment, .icon-api, .icon-doc, .icon-id, .icon-ai, .icon-web, .icon-mobile, .icon-cloud, .icon-monitor, .icon-release)::before,
.stat-icon:is(.icon-payment, .icon-api, .icon-doc, .icon-id, .icon-ai, .icon-web, .icon-mobile, .icon-cloud, .icon-monitor, .icon-release)::after {
  left: 50%;
  top: 50%;
  translate: -50% -50%;
}

.bi-globe,
.bi-cloud-check,
.bi-code-square,
.bi-phone {
  color: #0a6cd1;
}

.bi-credit-card-2-front,
.bi-headset,
.bi-code-slash,
.bi-shield-check,
.bi-upc-scan,
.bi-person-check,
.bi-clipboard2-check,
.bi-cpu {
  color: #1d4dbd;
}

.bi-heart-pulse,
.bi-person-workspace,
.bi-rocket-takeoff,
.bi-cloud-arrow-up {
  color: #0d357c;
}

.icon-id::before {
  width: 18px;
  height: 13px;
  border: 2px solid currentColor;
  border-radius: 3px;
}

.icon-id::after {
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: currentColor;
  transform: translate(-4px, -2px);
  box-shadow: 8px 0 0 -1px currentColor, 8px 5px 0 -1px currentColor;
}

.hero-copy .trust-badge {
  max-width: 100%;
  border-color: rgb(118 118 118);
  background: transparent;
  color: #000000;
  box-shadow: none;
  backdrop-filter: blur(12px);
  min-height: 38px;
  padding: 8px 16px;
  font-size: 0.72rem;
  letter-spacing: 0.07em;
  font-weight: 700;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  width: 100%;
  gap: 14px 18px;
  margin-top: 28px;
}

.hero-stats div {
  position: relative;
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  min-width: 0;
  min-height: 70px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  /* background: rgba(2, 13, 32, 0.18); */
  backdrop-filter: blur(8px);
  box-shadow: 0 3px 1px -4px rgb(0 0 0 / 20%), 0 2px 2px 0 rgb(0 0 0 / 0%), 0 1px 3px 0 rgb(0 0 0 / 12%);
}

.stat-icon {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 0;
  border: 1px solid rgba(32, 200, 255, 0.58);
  border-radius: 999px;
  background: rgba(0, 174, 239, 0.14);
  color: #20c8ff;
  font-size: 1rem;
  grid-row: 1 / span 2;
}

.hero-stats strong {
  display: block;
  color: #20c8ff;
  font-size: 0.94rem;
  font-weight: 600;
  line-height: 1.15;
  /* text-shadow: 0 0 22px rgba(0, 174, 239, 0.55), 0 2px 16px rgba(0, 0, 0, 0.45); */
}

.hero-stats small {
  display: block;
  color: rgb(61 54 54 / 96%);
  font-size: 0.84rem;
  font-weight: 500;
  line-height: 1.24;
}

.hero-slide.active .hero-copy .trust-badge,
.hero-slide.active .hero-copy .badge-icon,
.hero-slide.active .hero-copy h1,
.hero-slide.active .hero-copy p,
.hero-slide.active .hero-copy .hero-actions,
.hero-slide.active .hero-copy .hero-stats {
  animation: heroCopyIn 720ms ease both;
}

.hero-slide.active .hero-copy h1 {
  animation-delay: 80ms;
}

.hero-slide.active .hero-copy p {
  animation-delay: 150ms;
}

.hero-slide.active .hero-copy .hero-actions {
  animation-delay: 220ms;
}

.hero-slide.active .hero-copy .hero-stats {
  animation-delay: 300ms;
}

.btn-hero-outline {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border-color: rgba(255, 255, 255, 0.34);
  background: transparent;
  color: var(--white);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.btn-hero-outline::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.16);
  transform: translateX(-102%);
  transition: transform 260ms ease;
}

.btn-hero-outline:hover {
  border-color: rgba(255, 255, 255, 0.72);
  background: transparent;
}

.btn-hero-outline:hover::before {
  transform: translateX(0);
}

.hero-effects {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  transform: translate3d(var(--hero-mx, 0), var(--hero-my, 0), 0);
  transition: transform 180ms ease-out;
}

.particle,
.soft-glow,
.network-line,
.orbit-globe,
.wallet-icon {
  position: absolute;
  display: block;
}

.particle {
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: rgba(33, 208, 215, 0.76);
  box-shadow: 0 0 24px rgba(33, 208, 215, 0.72);
  animation: heroParticle 9s linear infinite;
}

.p1 {
  left: 12%;
  top: 34%;
  animation-delay: -1s;
}

.p2 {
  left: 28%;
  top: 72%;
  animation-delay: -3s;
}

.p3 {
  left: 58%;
  top: 23%;
  animation-delay: -4s;
}

.p4 {
  left: 76%;
  top: 68%;
  animation-delay: -6s;
}

.p5 {
  left: 88%;
  top: 38%;
  animation-delay: -2s;
}

.network-line {
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(33, 208, 215, 0.82), transparent);
  opacity: 0.55;
  animation: networkPulse 4s ease-in-out infinite;
}

.n1 {
  right: 12%;
  top: 34%;
  width: 28%;
  transform: rotate(-11deg);
}

.n2 {
  right: 21%;
  bottom: 26%;
  width: 24%;
  transform: rotate(15deg);
  animation-delay: -2s;
}

.soft-glow {
  border-radius: 999px;
  filter: blur(8px);
  opacity: 0.55;
  animation: glowFloat 7s ease-in-out infinite;
}

.g1 {
  right: 14%;
  top: 18%;
  width: 150px;
  height: 150px;
  background: rgba(9, 174, 229, 0.28);
}

.g2 {
  right: 34%;
  bottom: 16%;
  width: 110px;
  height: 110px;
  background: rgba(255, 122, 24, 0.18);
  animation-delay: -3s;
}

.orbit-globe {
  right: 9%;
  top: 27%;
  width: 108px;
  height: 108px;
  border: 2px solid rgba(255, 255, 255, 0.38);
  border-radius: 999px;
  animation: rotateGlobe 12s linear infinite;
}

.orbit-globe::before,
.orbit-globe::after {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(33, 208, 215, 0.44);
  border-radius: 999px;
}

.wallet-icon {
  right: 17%;
  bottom: 20%;
  width: 82px;
  height: 58px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  box-shadow: 0 20px 46px rgba(9, 174, 229, 0.28);
  animation: walletFloat 5.4s ease-in-out infinite;
}

.wallet-icon::after {
  content: "";
  position: absolute;
  right: 10px;
  top: 18px;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  z-index: 8;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: none;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #000000;
  /* box-shadow: 0 16px 42px rgba(0, 0, 0, 0.18); */
  cursor: pointer;
  font-size: 2rem;
  line-height: 1;
  transform: translateY(-50%);
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.carousel-prev {
  left: 24px;
}

.carousel-next {
  right: 24px;
}

.carousel-dots {
  position: absolute;
  left: 50%;
  bottom: 34px;
  z-index: 8;
  display: flex;
  gap: 10px;
  transform: translateX(-50%);
}

.carousel-dots button {
  width: 42px;
  height: 5px;
  border: 0;
  border-radius: 999px;
  background: rgb(182 182 182 / 56%);
  cursor: pointer;
  padding: 0;
  transition: width 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.carousel-dots button.active {
  width: 64px;
  background: #646464;
}

.carousel-pause {
  position: absolute;
  left: clamp(24px, 4vw, 72px);
  bottom: 38px;
  z-index: 8;
  min-height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  background: rgba(4, 18, 44, 0.52);
  color: #ffffff;
  cursor: pointer;
  font-weight: 800;
  padding: 8px 14px;
  backdrop-filter: blur(12px);
}

.carousel-pause:hover {
  border-color: rgba(32, 200, 255, 0.6);
  background: rgba(0, 123, 255, 0.42);
}

a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(32, 200, 255, 0.72);
  outline-offset: 4px;
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  border: 1px solid rgba(9, 174, 229, 0.24);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  color: var(--blue);
  box-shadow: 0 12px 30px rgba(8, 127, 189, 0.1);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  padding: 8px 13px;
  text-transform: uppercase;
}


.eyebrow {
  color: var(--blue);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.page-hero h1 {
  max-width: 720px;
  margin: 14px 0 22px;
  color: var(--navy);
  font-size: 3.5rem;
  line-height: 1.2;
  letter-spacing: 0;
}

.page-hero p {
  max-width: 720px;
  margin: 0;
  color: #273148;
  font-size: clamp(1.05rem, 2vw, 1.28rem);
}

.hero-actions {
  display: flex;
  flex-wrap: nowrap;
  gap: 14px;
  max-width: 100%;
  margin-top: 24px;
}

.hero-actions .btn {
  flex: 0 0 auto;
  min-height: 48px;
  border-radius: 8px;
  padding: 13px 21px;
  font-size: 0.92rem;
  white-space: nowrap;
}


.metric-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
  box-shadow: var(--shadow);
  transform: translateY(-42px);
}

.metric {
  min-height: 118px;
  padding: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 251, 254, 0.98));
}

.metric strong {
  display: block;
  color: var(--navy);
  font-size: clamp(1.65rem, 3vw, 2.3rem);
  line-height: 1;
}

.metric span {
  display: block;
  margin-top: 9px;
  color: var(--muted);
  font-size: 0.94rem;
}

.trusted-band {
  border-top: 1px solid rgba(217, 229, 238, 0.72);
  border-bottom: 1px solid rgba(217, 229, 238, 0.72);
  background: rgba(255, 255, 255, 0.72);
  padding: 28px 0;
  overflow: hidden;
}

.trusted-band .eyebrow {
  display: block;
  margin-bottom: 16px;
  text-align: center;
}

.logo-marquee {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}

.logo-track {
  display: flex;
  width: max-content;
  gap: 14px;
  animation: logoMarquee 24s linear infinite;
}

.logo-track span {
  min-width: 180px;
  border: 1px solid rgba(217, 229, 238, 0.88);
  border-radius: var(--radius);
  background: #ffffff;
  color: #2f3b50;
  box-shadow: 0 12px 30px rgba(20, 16, 47, 0.05);
  font-weight: 900;
  padding: 14px 18px;
  text-align: center;
}

.section {
  padding: 84px 0;
}

.section.alt {
  background: var(--white);
}

.solutions-showcase {
  background:
    radial-gradient(circle at 12% 0%, rgba(9, 174, 229, 0.12), transparent 24rem),
    linear-gradient(180deg, #ffffff 0%, #f3fbff 100%);
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.55fr);
  gap: 42px;
  align-items: end;
  margin-bottom: 34px;
}

.section-head h2,
.split h2,
.cta h2 {
  margin: 8px 0 0;
  color: var(--navy);
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.08;
  letter-spacing: 0;
}

.section-head p,
.split p,
.cta p {
  margin: 0;
  color: var(--muted);
  font-size: 1.03rem;
}

.grid-3,
.grid-2,
.product-grid {
  display: grid;
  gap: 18px;
}

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

.product-grid {
  grid-template-columns: repeat(3, 1fr);
}

.solution-card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.solution-card {
  position: relative;
  min-height: 280px;
  overflow: hidden;
  border: 1px solid rgba(217, 229, 238, 0.9);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 16px 44px rgba(20, 16, 47, 0.08);
  padding: 26px;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.solution-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(9, 174, 229, 0.1), transparent 44%);
  opacity: 0;
  transition: opacity 220ms ease;
}

.solution-card:hover {
  transform: translateY(-8px);
  border-color: rgba(9, 174, 229, 0.36);
  box-shadow: 0 26px 70px rgba(20, 16, 47, 0.13);
}

.solution-card:hover::before {
  opacity: 1;
}

.solution-card h3,
.solution-card p,
.solution-icon {
  position: relative;
  z-index: 1;
}

.solution-icon {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 20px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  color: var(--white);
  font-weight: 900;
}

.solution-card h3 {
  margin: 0 0 12px;
  color: var(--navy);
  font-size: 1.14rem;
  line-height: 1.25;
}

.solution-card p {
  margin: 0;
  color: var(--muted);
}

.card,
.feature,
.product-card,
.contact-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.lift-card {
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.lift-card:hover {
  transform: translateY(-6px);
  border-color: rgba(9, 174, 229, 0.36);
  box-shadow: 0 24px 58px rgba(20, 16, 47, 0.12);
}

.card,
.feature,
.product-card {
  padding: 28px;
}

.card h3,
.feature h3,
.product-card h3,
.contact-card h3 {
  margin: 0 0 12px;
  color: var(--navy);
  font-size: 1.22rem;
  line-height: 1.25;
}

.card p,
.feature p,
.product-card p,
.contact-card p {
  margin: 0;
  color: var(--muted);
}

.card .link,
.product-card .link {
  display: inline-flex;
  margin-top: 22px;
  color: var(--blue);
  font-weight: 900;
}

.icon.orange {
  background: #fff1e7;
  color: var(--orange);
}

.icon.green {
  background: #eaf8f2;
  color: var(--green);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(360px, 1fr);
  gap: 46px;
  align-items: center;
}

.split.reverse {
  grid-template-columns: minmax(360px, 1fr) minmax(0, 0.88fr);
}

.visual {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
  transition: transform 260ms ease, box-shadow 260ms ease;
}

.visual:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 72px rgba(20, 16, 47, 0.16);
}

.visual img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.list {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.list li {
  position: relative;
  padding-left: 26px;
  color: #334056;
}

.list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.66em;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--cyan);
  box-shadow: 0 0 0 4px rgba(9, 174, 229, 0.15);
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 22px;
}

.tag {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fbfdff;
  color: #334056;
  font-size: 0.86rem;
  font-weight: 800;
  padding: 7px 10px;
}

.page-hero {
  padding: 80px 0 40px;
  background: linear-gradient(135deg, #f7fbfe 0%, #e9f8ff 46%, #fff7ef 100%);
}

.cta {
  padding: 68px;
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 88% 16%, rgba(33, 208, 215, 0.42), transparent 18rem),
    linear-gradient(135deg, var(--navy), #0b5f96 65%, var(--blue));
  color: var(--white);
}

.premium-final-cta {
  position: relative;
  overflow: hidden;
  box-shadow: 0 28px 80px rgba(8, 72, 116, 0.22);
}

.premium-final-cta::after {
  content: "";
  position: absolute;
  right: -80px;
  top: -80px;
  width: 260px;
  height: 260px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes floatGlow {

  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }

  50% {
    transform: translate3d(12px, -18px, 0) scale(1.08);
  }
}

@keyframes heroPanelIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideFade {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes particleFloat {
  0% {
    transform: translate3d(0, 24px, 0);
    opacity: 0;
  }

  18%,
  78% {
    opacity: 1;
  }

  100% {
    transform: translate3d(20px, -74px, 0);
    opacity: 0;
  }
}

@keyframes floatCard {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

@keyframes walletFloat {

  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(-4deg);
  }

  50% {
    transform: translate3d(0, -16px, 0) rotate(3deg);
  }
}

@keyframes rotateGlobe {
  to {
    transform: rotate(360deg);
  }
}

@keyframes lineMove {

  0%,
  100% {
    opacity: 0.22;
    filter: blur(0);
  }

  50% {
    opacity: 0.9;
    filter: blur(1px);
  }
}

@keyframes logoMarquee {
  to {
    transform: translateX(-50%);
  }
}

@keyframes heroCopyIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroParticle {
  0% {
    opacity: 0;
    transform: translate3d(0, 28px, 0);
  }

  20%,
  78% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: translate3d(22px, -80px, 0);
  }
}

@keyframes networkPulse {

  0%,
  100% {
    opacity: 0.2;
    filter: blur(0);
  }

  50% {
    opacity: 0.9;
    filter: blur(1px);
  }
}

@keyframes glowFloat {

  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }

  50% {
    transform: translate3d(14px, -18px, 0) scale(1.08);
  }
}

.cta h2,
.cta p {
  color: var(--white);
}

.cta p {
  max-width: 700px;
  margin-top: 14px;
  opacity: 0.88;
}

.cta .hero-actions {
  margin-top: 28px;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(360px, 1fr);
  gap: 24px;
}

.form {
  display: grid;
  gap: 16px;
}

.field {
  display: grid;
  gap: 7px;
}

.field label {
  color: var(--navy);
  font-weight: 600;
  font-size: 1rem;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  font: inherit;
  padding: 12px 13px;
}

.field textarea {
  min-height: 132px;
  resize: vertical;
}

.site-footer {
  background: #100d26;
  color: rgba(255, 255, 255, 0.78);
  padding: 64px 0 28px;
}

.footertopgrid {
  display: grid;
  grid-template-columns: 60% 40%;
  gap: 24px;
  align-items: center;
}

.getstratBtn {
  border: 1px solid #fff;
  padding: 12px 20px;
  color: #fff;
  background: transparent;
  font-size: 17px;
  letter-spacing: .5px;
  text-transform: capitalize;
  width: 30%;
  font-weight: 400;
  font-family: var(--main-font);
}

.footertopgrid h1 {
  font-size: 34px;
  font-weight: 400;
  margin-bottom: 0px;
  text-transform: capitalize;
}

.footertopgrid h6 {
  font-size: 17px;
  font-weight: 400;
  margin: 10px 0px 30px;
  color: #c4c4c4;
  letter-spacing: .3px;
}

.footertop {
  /* background: radial-gradient(circle at bottom left, rgb(3 53 123 / 60%) 0%, rgb(76 103 193 / 13%) 22%, rgb(64 105 181 / 12%) 35%, #07468029 50%), linear-gradient(90deg, #0f0f0f 0%, #090909 55%, #050505 100%); */
  background: radial-gradient(circle at bottom left, rgb(6 6 7 / 60%) 0%, rgb(76 103 193 / 13%) 22%, rgb(64 105 181 / 12%) 35%, #07468029 50%), linear-gradient(90deg, #0f0f0f 0%, #090909 55%, #050505 100%);
  padding: 20px 50px;
  min-height: 10vh;
  color: #fff;
  background: #030e2b;
}

.footer-grid {
  display: grid;
  grid-template-columns: 24% 19% 19% 19% 19%;
  gap: 15px;
}

.footer-quicklinks {
  flex-direction: row;
  display: flex !important;
  gap: 20px !important;
}

.contact-grid {
  display: flex;
  flex-direction: row;
  gap: 30px;
}

.contact-grid p {
  color: #fff !important;
  margin-bottom: 2px;
}

.footer-grid a,
.footer-grid li,
.footer-grid p {
  font-size: 16px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.footer-brand img {
  width: 62px;
  height: 62px;
  object-fit: contain;
  filter: drop-shadow(0 8px 20px rgba(9, 174, 229, 0.2));
}

.site-footer h3,
.site-footer h4 {
  color: var(--white);
  margin: 0 0 14px;
  font-size: 18px;
}

.site-footer ul {
  display: grid;
  gap: 4px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.companyTitle {
  display: flex;
  flex-direction: column;
  gap: 0px !important;
  justify-content: left;
  align-items: start;
}

.site-footer li {
  line-height: 1.9;
}

.about_bg {
  position: absolute;
  top: 30px
}

.socialLinks li {
  display: inline-block !important;
  padding-right: 20px;
}

.footer-links .bi {
  color: #d5d5d5d1;
  font-size: 22px;
}

.gap-4 {
  padding-bottom: 10px !important;
}

.site-footer a:hover {
  color: var(--cyan);
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  margin-top: 0px;
}

.footer-links a {
  display: flex;
  align-items: start;
  gap: 11px;
  font-size: 15px;
  text-decoration: none;
}

.blue-color {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-left: 8px;
  background-image: linear-gradient(135deg, #00aeef 0%, #007bff 100%);
  transition: all 0.3s ease;
  flex: 0 0 20px;
  color: #00b8ff;
  font-size: 18px;
  font-weight: 600;
  text-align: center;
}

.link-text {
  flex: 1;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 42px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.9rem;
}

.premium-strip {
  border-color: rgba(0, 174, 239, 0.18);
  background:
    linear-gradient(180deg, #061a3a 0%, #08234d 100%);
}

.premium-strip .eyebrow {
  color: #20c8ff;
}

.premium-strip .logo-track span {
  border-color: rgba(32, 200, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.9);
  box-shadow: none;
}

.home-section {
  position: relative;
  overflow: hidden;
  padding: 92px 0;
  background:
    radial-gradient(circle at 12% 6%, rgba(0, 174, 239, 0.1), transparent 28rem),
    linear-gradient(180deg, #f6fbff 0%, #ffffff 100%);
}

.home-dark {
  background:
    radial-gradient(circle at 18% 0%, rgba(0, 174, 239, 0.22), transparent 30rem),
    radial-gradient(circle at 86% 20%, rgba(33, 208, 215, 0.16), transparent 28rem),
    linear-gradient(180deg, #061832 0%, #081f44 100%);
  color: var(--white);
}

.home-section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 0.6fr);
  gap: 48px;
  align-items: end;
  margin-bottom: 34px;
}

.home-section-head h2,
.home-split h2 {
  margin: 8px 0 0;
  color: var(--white);
  font-size: clamp(2.2rem, 3.9vw, 3.6rem);
  line-height: 1.08;
  letter-spacing: 0;
}

.image-band .home-section-head h2,
.image-band .home-split h2,
.services-band .home-section-head h2 {
  color: #061832;
}

.home-section-head p,
.home-split p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.04rem;
}

.image-band .home-section-head p,
.image-band .home-split p,
.services-band .home-section-head p {
  color: #526276;
}

.home-pillar-grid,
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.home-pillar,
.service-tile {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(32, 200, 255, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.055));
  box-shadow: 0 24px 70px rgba(0, 9, 28, 0.2);
  padding: 28px;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.home-pillar:hover,
.service-tile:hover {
  transform: translateY(-6px);
  border-color: rgba(32, 200, 255, 0.42);
  box-shadow: 0 30px 80px rgba(0, 16, 48, 0.28);
}

.home-pillar h3,
.service-tile h3 {
  margin: 18px 0 10px;
  color: var(--white);
  font-size: 1.22rem;
}

.home-pillar p,
.service-tile p {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.74);
}

.pillar-number,
.solution-icon {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(32, 200, 255, 0.42);
  border-radius: 999px;
  background: rgba(0, 174, 239, 0.12);
  color: #20c8ff;
  font-weight: 900;
}

.home-pillar .link {
  color: #20c8ff;
}

.home-split {
  align-items: center;
}

.home-visual {
  overflow: hidden;
  border: 1px solid rgba(0, 174, 239, 0.18);
  border-radius: 8px;
  background: #061832;
  box-shadow: 0 28px 80px rgba(5, 20, 50, 0.18);
}

.home-visual img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.capability-list,
.premium-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.capability-list span,
.premium-tags .tag {
  border: 1px solid rgba(0, 174, 239, 0.2);
  border-radius: 999px;
  background: rgba(0, 174, 239, 0.08);
  color: #0b5f96;
  font-weight: 800;
  padding: 9px 13px;
}

.solutions-layer .solution-card {
  border-color: rgba(32, 200, 255, 0.18);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.06));
  box-shadow: 0 22px 70px rgba(0, 9, 28, 0.18);
}

.solutions-layer .solution-card h3 {
  color: var(--white);
}

.solutions-layer .solution-card p {
  color: rgba(255, 255, 255, 0.72);
}

.services-band {
  background:
    linear-gradient(180deg, #f5fbff 0%, #ffffff 100%);
}

.service-tile {
  border-color: rgba(8, 127, 189, 0.16);
  background: var(--white);
  box-shadow: 0 22px 64px rgba(5, 20, 50, 0.1);
}

.service-tile img {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 6px;
  object-fit: cover;
}

.service-tile h3 {
  color: #061832;
}

.service-tile p {
  color: #526276;
}

.premium-final-cta {
  border: 1px solid rgba(32, 200, 255, 0.22);
  background:
    radial-gradient(circle at 82% 20%, rgba(0, 174, 239, 0.34), transparent 24rem),
    linear-gradient(135deg, #061832 0%, #082b5c 58%, #007bff 100%);
  box-shadow: 0 30px 90px rgba(0, 18, 50, 0.22);
}

.premium-final-cta .btn-outline,
.premium-final-cta .btn-hero-outline {
  border-color: rgba(255, 255, 255, 0.34);
  color: var(--white);
}

.site-footer {
  background: #030e2b;
  /* background: radial-gradient(circle at 86% 10%, rgb(0 2 2 / 80%), rgb(0 0 0 / 55%) 24rem), linear-gradient(180deg, #061832 0%, #050d20 100%); */
  /* background:
    radial-gradient(circle at 86% 10%, rgba(0, 174, 239, 0.12), transparent 24rem),
    linear-gradient(180deg, #061832 0%, #050d20 100%); */
}

.enterprise-story,
.enterprise-section,
.product-suite,
.services-suite,
.enterprise-cta-section {
  position: relative;
  overflow: hidden;
}

.enterprise-story {
  padding: 82px 0;
  background:
    radial-gradient(circle at 18% 4%, rgba(0, 174, 239, 0.18), transparent 30rem),
    linear-gradient(180deg, #061832 0%, #08214a 100%);
  color: var(--white);
}

.story-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1fr);
  gap: 48px;
  align-items: center;
}

.story-copy h2,
.enterprise-head h2,
.suite-content h2,
.enterprise-cta h2 {
  margin: 8px 0 0;
  font-size: clamp(2.3rem, 4vw, 3.7rem);
  line-height: 1.05;
  letter-spacing: 0;
}

.story-copy h2,
.enterprise-story .eyebrow {
  color: var(--white);
}

.story-copy p,
.enterprise-cta p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.08rem;
}

.trust-panel {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border: 1px solid rgba(32, 200, 255, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 28px 90px rgba(0, 8, 30, 0.26);
  overflow: hidden;
}

.trust-panel div {
  min-height: 150px;
  padding: 26px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.trust-panel strong {
  display: block;
  color: #20c8ff;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1;
}

.trust-panel span {
  display: block;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 700;
}

.enterprise-section {
  padding: 92px 0;
  background:
    radial-gradient(circle at 90% 12%, rgba(0, 174, 239, 0.14), transparent 28rem),
    linear-gradient(180deg, #f6fbff 0%, #ffffff 100%);
}

.enterprise-head {
  max-width: 900px;
  margin-bottom: 34px;
}

.enterprise-head h2,
.suite-content h2 {
  color: #061832;
}

.enterprise-head p,
.suite-content p {
  max-width: 780px;
  color: #526276;
  font-size: 1.05rem;
}

.enterprise-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.header-actions .bi {
  font-size: 20px;
}

.site-header.scrolled .header-actions .bi {
  color: rgba(255, 255, 255, 0.94);
}

.singleproductPage .header-actions .bi {
  color: rgba(255, 255, 255, 0.94) !important;
}

.singleproductPage .brand span {
  color: #e3e3e3;
}

.enterprise-card {
  position: relative;
  min-height: 310px;
  padding: 30px;
  border: 1px solid rgba(8, 127, 189, 0.14);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 24px 70px rgba(5, 20, 50, 0.09);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.enterprise-card.featured {
  background:
    radial-gradient(circle at 86% 8%, rgba(32, 200, 255, 0.22), transparent 16rem),
    linear-gradient(180deg, #071c3f 0%, #082a5c 100%);
}

.enterprise-card:hover {
  transform: translateY(-7px);
  border-color: rgba(0, 174, 239, 0.32);
  box-shadow: 0 30px 85px rgba(5, 20, 50, 0.14);
}

.enterprise-card span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: rgba(0, 174, 239, 0.1);
  color: #087fbd;
  font-weight: 900;
}

.enterprise-card h3 {
  margin: 24px 0 12px;
  color: #061832;
  font-size: 1.35rem;
}

.enterprise-card p {
  color: #526276;
}

.enterprise-card.featured h3,
.enterprise-card.featured p,
.enterprise-card.featured .link {
  color: var(--white);
}

.enterprise-card.featured span {
  background: rgba(32, 200, 255, 0.16);
  color: #20c8ff;
}

.product-suite {
  padding: 96px 0;
  background:
    radial-gradient(circle at 16% 0%, rgba(0, 174, 239, 0.2), transparent 32rem),
    linear-gradient(180deg, #061832 0%, #071d40 100%);
  color: var(--white);
}

.suite-layout {
  display: grid;
  grid-template-columns: minmax(420px, 1fr) minmax(0, 0.9fr);
  gap: 48px;
  align-items: center;
}

.suite-visual,
.solution-feature,
.service-block {
  overflow: hidden;
  border: 1px solid rgba(32, 200, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 30px 90px rgba(0, 8, 30, 0.24);
}

.suite-visual img,
.solution-feature img,
.service-block img {
  width: 100%;
  object-fit: cover;
}

.suite-visual img {
  aspect-ratio: 16 / 11;
}

.suite-content h2 {
  color: var(--white);
}

.suite-content p {
  color: rgba(255, 255, 255, 0.74);
}

.product-stack {
  display: grid;
  gap: 12px;
  margin: 26px 0;
}

.product-stack article {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.product-stack strong {
  display: block;
  color: #20c8ff;
  margin-bottom: 6px;
}

.product-stack span {
  color: rgba(255, 255, 255, 0.76);
}

.solution-suite {
  background:
    radial-gradient(circle at 80% 10%, rgba(0, 174, 239, 0.12), transparent 30rem),
    linear-gradient(180deg, #ffffff 0%, #f5fbff 100%);
}

.solution-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.solution-feature {
  background: var(--white);
  border-color: rgba(8, 127, 189, 0.16);
  box-shadow: 0 26px 76px rgba(5, 20, 50, 0.1);
}

.solution-feature img {
  aspect-ratio: 16 / 8;
}

.solution-feature div {
  padding: 26px;
}

.solution-feature span {
  color: #087fbd;
  font-weight: 900;
}

.solution-feature h3,
.service-block h3 {
  color: #061832;
  margin: 8px 0 10px;
}

.solution-feature p,
.service-block p {
  color: #526276;
}

.services-suite {
  padding: 92px 0;
  background:
    radial-gradient(circle at 10% 16%, rgba(0, 174, 239, 0.16), transparent 26rem),
    linear-gradient(180deg, #f6fbff 0%, #ffffff 100%);
}

.service-flow {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.service-block {
  background: #ffffff;
  border-color: rgba(8, 127, 189, 0.14);
  box-shadow: 0 24px 70px rgba(5, 20, 50, 0.09);
}

.service-block img {
  aspect-ratio: 16 / 9;
}

.service-block h3,
.service-block p {
  padding-left: 24px;
  padding-right: 24px;
}

.service-block h3 {
  padding-top: 22px;
}

.service-block p {
  padding-bottom: 26px;
}

.enterprise-cta-section {
  padding: 82px 0;
  background: #061832;
}

.enterprise-cta {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  align-items: center;
  padding: 54px;
  border: 1px solid rgba(32, 200, 255, 0.24);
  border-radius: 8px;
  background:
    radial-gradient(circle at 86% 24%, rgba(0, 174, 239, 0.32), transparent 26rem),
    linear-gradient(135deg, #08214a 0%, #08366f 58%, #007bff 100%);
  color: var(--white);
  box-shadow: 0 30px 90px rgba(0, 8, 30, 0.26);
}

.enterprise-cta h2 {
  max-width: 760px;
  color: var(--white);
}

.enterprise-cta .hero-actions {
  flex: 0 0 auto;
  margin-top: 0;
}

.pdf-intro {
  padding: 28px 0;
  background: linear-gradient(180deg, #02060e 0%, #061832 100%);
  color: rgba(255, 255, 255, 0.82);
  text-align: center;
}

.pdf-intro p {
  max-width: 1000px;
  margin: 0 auto;
  font-size: 1.8rem;
  font-weight: 500;
  color: #fff;
  line-height: 46px;
}

.colordtext {
  background-clip: text !important;
  color: transparent;
  background: linear-gradient(90deg, #8fd3ff 0%, #4fa8ff 30%, #0d6efd 70%, #0c5dd6 100%);
  -webkit-text-fill-color: transparent;
  font-weight: 800;
}

.pdf-overview {
  padding: 70px 0 50px;
  /* background: linear-gradient(180deg, #f6fbff 0%, #ffffff 100%); */
}

.pdf-card-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.pdf-overview-card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 245px;
  padding: 30px;
  border: 1px solid rgba(8, 127, 189, 0.18);
  border-radius: 8px;
  background: #ffffff;
  /* box-shadow: 0 20px 60px rgba(5, 20, 50, 0.1); */
  transition: transform 280ms ease, box-shadow 280ms ease, border-color 280ms ease;
}

.pdf-overview-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0%, rgba(32, 200, 255, 0.12) 42%, transparent 68%);
  opacity: 0;
  transform: translateX(-80%);
  transition: opacity 280ms ease, transform 700ms ease;
}

.pdf-overview-card>* {
  position: relative;
  z-index: 1;
}

.pdf-overview-card:hover {
  transform: translateY(-9px);
  border-color: rgba(0, 174, 239, 0.42);
  box-shadow: 0 30px 86px rgba(5, 20, 50, 0.16);
}

.pdf-overview-card:hover::before {
  opacity: 1;
  transform: translateX(80%);
}

.pdf-overview-card:hover .pdf-card-icon,
.pdf-overview-card:focus-within .pdf-card-icon {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 24px 58px rgba(0, 123, 255, 0.36), 0 0 0 7px rgba(32, 200, 255, 0.1);
}

.pdf-card-icon {
  position: relative;
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  border: 1px solid rgba(32, 200, 255, 0.36);
  border-radius: 8px;
  background:
    radial-gradient(circle at 28% 18%, rgba(255, 255, 255, 0.46), transparent 1.1rem),
    linear-gradient(135deg, #007bff, #00aeef);
  color: var(--white);
  transition: transform 280ms ease, box-shadow 280ms ease;
}

.pdf-card-icon::before,
.pdf-card-icon::after,
.kicker-icon::before,
.kicker-icon::after {
  content: "";
  position: absolute;
  display: block;
  left: 50%;
  top: 50%;
}

.pdf-card-icon.icon-projects::before,
.kicker-icon.icon-projects::before {
  transform: translate(-50%, -34%);
}

.pdf-card-icon.icon-projects::after,
.kicker-icon.icon-projects::after {
  transform: translateX(-50%);
}

.pdf-card-icon .bi {
  font-size: 25px;
}

.pdf-card-icon.icon-shield::before,
.kicker-icon.icon-shield::before {
  transform: translate(-50%, -52%);
}

.pdf-card-icon.icon-shield::after,
.kicker-icon.icon-shield::after {
  transform: translate(-50%, -70%) rotate(-45deg);
}

.pdf-card-icon.icon-globe::before,
.kicker-icon.icon-globe::before {
  transform: translate(-50%, -50%);
}

.pdf-card-icon.icon-globe::after,
.kicker-icon.icon-globe::after {
  transform: translate(-50%, -50%);
}

.pdf-overview-card h3 {
  margin: 20px 0 12px;
  color: #061832;
  font-size: 1.28rem;
}

.pdf-overview-card p {
  color: #526276;
}

.pdf-overview-card a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  align-self: flex-start;
  margin-top: auto;
  color: #087fbd;
  font-weight: 900;
  white-space: nowrap;
}

.pdf-metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 60px;
  gap: 1px;
  overflow: hidden;
  /* border-radius: 8px; */
  /* background:
    radial-gradient(circle at 18% 0%, rgba(32, 200, 255, 0.24), transparent 20rem),
    linear-gradient(135deg, #007bff 0%, #07598f 100%); */
  background: #030e2b;
  color: var(--white);
  /* box-shadow: 0 26px 70px rgba(8, 127, 189, 0.22); */
}

.pdf-metrics div {
  position: relative;
  overflow: hidden;
  min-height: 150px;
  padding: 30px;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
  background:
    radial-gradient(circle at 50% -20%, rgba(255, 255, 255, 0.18), transparent 5rem),
    rgba(255, 255, 255, 0.04);
  text-align: center;
  transition: transform 260ms ease, background 260ms ease;
}

.pdf-metrics div::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  opacity: 0;
  transform: scale(0.96);
  transition: opacity 260ms ease, transform 260ms ease;
}

.pdf-metrics div:hover {
  transform: translateY(-4px);
  background:
    radial-gradient(circle at 50% -20%, rgba(255, 255, 255, 0.28), transparent 5rem),
    rgba(255, 255, 255, 0.1);
}

.pdf-metrics div:hover::before {
  opacity: 1;
  transform: scale(1);
}

.pdf-metrics div::after {
  content: "";
  position: absolute;
  left: 22%;
  right: 22%;
  bottom: 18px;
  height: 2px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.46);
  transform: scaleX(0);
  transform-origin: left;
}

.pdf-metrics.visible div::after {
  animation: metricLineIn 900ms ease forwards;
}

.pdf-metrics.visible div:nth-child(2)::after {
  animation-delay: 120ms;
}

.pdf-metrics.visible div:nth-child(3)::after {
  animation-delay: 240ms;
}

.pdf-metrics.visible div:nth-child(4)::after {
  animation-delay: 360ms;
}

.pdf-metrics div:last-child {
  border-right: 0;
}

.pdf-metrics strong {
  display: block;
  position: relative;
  z-index: 1;
  color: #27d4ff;
  font-size: clamp(2.25rem, 3.3vw, 3.45rem);
  line-height: 1;
  text-shadow: 0 0 28px rgba(32, 200, 255, 0.28);
}

.pdf-metrics span {
  display: block;
  position: relative;
  z-index: 1;
  max-width: 270px;
  margin: 12px auto 10px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.92rem;
  font-weight: 700;
}

.pdf-metrics strong .count-up {
  display: inline-block;
  max-width: none;
  margin: 0;
  color: #fff;
  font-size: inherit;
  font-weight: 900;
}

.pdf-story-section {
  padding: 50px 0;
  background: #ffffff;
}

.pdf-story-section.product-block {
  background:
    radial-gradient(circle at 88% 12%, rgba(0, 174, 239, 0.12), transparent 26rem),
    linear-gradient(180deg, #f7fbff 0%, #ffffff 100%);
}

.pdf-story-section.solutions-block {
  background:
    radial-gradient(circle at 14% 8%, rgba(0, 174, 239, 0.12), transparent 26rem),
    linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
}

.pdf-story-grid {
  display: grid;
  grid-template-columns: minmax(360px, 0.9fr) minmax(0, 1fr);
  gap: 62px;
  align-items: center;
}

.pdf-story-grid.reverse {
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.9fr);
}

.pdf-image-collage {
  position: relative;
  min-height: 520px;
  --collage-x: 0px;
  --collage-y: 0px;
  perspective: 1200px;
}

.pdf-image-collage::before {
  content: "";
  position: absolute;
  inset: 7% 4% 6% 12%;
  border-radius: 8px;
  background: radial-gradient(circle, rgba(32, 200, 255, 0.2), transparent 64%);
  filter: blur(18px);
  opacity: 0.78;
  animation: sectionGlowDrift 7s ease-in-out infinite;
}

.pdf-image-collage img {
  position: absolute;
  display: block;
  object-fit: cover;
  border: 1px solid rgba(8, 127, 189, 0.18);
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(5, 20, 50, 0.14);
  transition: transform 450ms ease, box-shadow 450ms ease, filter 450ms ease;
}

.pdf-image-collage .large {
  right: 0;
  top: 0;
  width: 72%;
  height: 74%;
  transform: translate3d(calc(var(--collage-x) * 0.45), calc(var(--collage-y) * 0.45), 0);
}

.pdf-image-collage .small {
  left: 0;
  bottom: 0;
  width: 58%;
  height: 62%;
  transform: translate3d(calc(var(--collage-x) * -0.35), calc(var(--collage-y) * -0.35), 0);
  animation: collageFloat 6s ease-in-out infinite;
}

.pdf-image-collage:hover img {
  box-shadow: 0 30px 82px rgba(5, 20, 50, 0.2);
}

.image-badge,
.vertical-badge {
  position: absolute;
  z-index: 2;
  border: 1px solid rgba(32, 200, 255, 0.26);
  border-radius: 8px;
  background: linear-gradient(135deg, #007bff, #07598f);
  color: var(--white);
  box-shadow: 0 20px 50px rgba(0, 123, 255, 0.24);
  font-weight: 900;
  animation: badgeFloat 5.8s ease-in-out infinite;
}

.image-badge {
  right: 0;
  bottom: 36px;
  width: 260px;
  padding: 24px;
  font-size: 1.25rem;
  line-height: 1.2;
}

.image-badge.compact {
  display: flex;
  align-items: center;
  gap: 12px;
  width: auto;
}

.image-badge.compact strong {
  font-size: 2.6rem;
}

.image-badge.content-badge {
  right: 10px;
  top: 40px;
  bottom: auto;
  display: grid;
  gap: 6px;
  width: 210px;
  min-height: 132px;
  padding: 22px;
}

.image-badge.content-badge strong {
  color: #ffffff;
  font-size: 2.55rem;
  line-height: 0.95;
}

.image-badge.content-badge span {
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.9rem;
  line-height: 1.35;
}

.vertical-badge {
  right: 10px;
  top: 40px;
  display: grid;
  place-items: center;
  min-width: 92px;
  min-height: 190px;
  padding: 18px 12px;
  text-align: center;
  writing-mode: vertical-rl;
}

.vertical-badge strong {
  font-size: 2.5rem;
  line-height: 1;
}

.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 60;
  display: grid;
  place-items: center;
  width: 60px;
  height: 60px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 999px;
  background: linear-gradient(135deg, #25d366, #128c7e);
  box-shadow: 0 18px 44px rgba(18, 140, 126, 0.34);
  color: #ffffff;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.whatsapp-float::before {
  content: "";
  position: absolute;
  inset: -8px;
  border: 1px solid rgba(37, 211, 102, 0.34);
  border-radius: inherit;
  animation: whatsappPulse 2.4s ease-out infinite;
}

.whatsapp-float svg {
  position: relative;
  z-index: 1;
  width: 34px;
  height: 34px;
  fill: currentColor;
}

.whatsapp-float:hover,
.whatsapp-float:focus {
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0 24px 58px rgba(18, 140, 126, 0.42);
}

.pdf-story-copy h2 {
  margin: 8px 0 14px;
  color: #061832;
  font-size: 45px;
  line-height: 1.3;
  font-weight: 600;
}

.btn-get-touch {
  height: 60px !important;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  max-width: 100%;
  margin-bottom: 12px;
  border: 1px solid rgba(0, 174, 239, 0.18);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(0, 174, 239, 0.1), rgba(0, 123, 255, 0.06));
  color: #087fbd;
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  line-height: 1;
  padding: 9px 14px 9px 9px;
  text-transform: uppercase;
  transition: transform 260ms ease, border-color 260ms ease, box-shadow 260ms ease;
}

.pdf-story-copy:hover .section-kicker,
.pdf-story-copy:focus-within .section-kicker {
  transform: translateX(4px);
  border-color: rgba(0, 174, 239, 0.32);
  box-shadow: 0 18px 42px rgba(8, 127, 189, 0.12);
}

.kicker-icon {
  position: relative;
  flex: 0 0 auto;
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(32, 200, 255, 0.38);
  border-radius: 8px;
  background: linear-gradient(135deg, #007bff, #00aeef);
  color: #fff;
}

.pdf-story-copy p {
  font-size: 1.04rem;
}

.pdf-check-list {
  display: grid;
  gap: 16px;
  margin: 28px 0;
}

.pdf-check-list article {
  position: relative;
  padding-left: 34px;
}

.pdf-check-list article::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 19px;
  height: 19px;
  border-radius: 999px;
  background: linear-gradient(135deg, #007bff, #00aeef);
  box-shadow: 0 8px 20px rgba(0, 123, 255, 0.2);
}

.pdf-check-list article::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 10px;
  width: 7px;
  height: 4px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg);
}

.pdf-check-list strong {
  display: block;
  color: #061832;
}

.pdf-check-list span {
  display: block;
  margin-top: 4px;
  color: #323232;
}

.pdf-cta-strip {
  padding: 32px 0;
  background: #f1f7fd;
}

.pdf-cta-strip.light {
  background: #ffffff;
}

.cta-strip-inner {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0px;
  min-height: 132px;
  padding: 28px 42px;
  border: 1px solid rgba(8, 127, 189, 0.12);
  border-radius: 8px;
  background: #030e2b;
  /* background:
    linear-gradient(90deg, #f7fbff 0%, rgba(255, 255, 255, 0.86) 60%),
    url("../assets/homepage-platform-engineering.webp") right center / auto 135% no-repeat; */
  box-shadow: 0 20px 60px rgba(5, 20, 50, 0.08);
}

.cta-strip-inner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 0%, rgba(32, 200, 255, 0.16) 45%, transparent 72%);
  transform: translateX(-100%);
  animation: ctaSheen 7s ease-in-out infinite;
}

.cta-strip-inner>* {
  position: relative;
  z-index: 1;
}

.cta-strip-inner h3 {
  margin: 0 0 8px;
  /* color: #061832; */
  color: #fff;
  font-size: 2.4rem;
}

.cta-strip-inner p {
  margin: 0;
  max-width: 1000px;
  color: #526276;
  color: #fff;
  font-weight: 400;
  font-size: 18px;
}

@keyframes metricLineIn {
  to {
    transform: scaleX(1);
  }
}

@keyframes sectionGlowDrift {

  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 0.62;
  }

  50% {
    transform: translate3d(14px, -12px, 0) scale(1.05);
    opacity: 0.9;
  }
}

@keyframes collageFloat {

  0%,
  100% {
    filter: saturate(1);
  }

  50% {
    filter: saturate(1.08) brightness(1.03);
  }
}

@keyframes badgeFloat {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

@keyframes iconPulse {

  0%,
  100% {
    box-shadow: 0 12px 26px rgba(0, 123, 255, 0.24);
  }

  50% {
    box-shadow: 0 18px 36px rgba(0, 174, 239, 0.36), 0 0 0 6px rgba(32, 200, 255, 0.08);
  }
}

@keyframes ctaSheen {

  0%,
  42% {
    transform: translateX(-100%);
  }

  70%,
  100% {
    transform: translateX(100%);
  }
}

@keyframes whatsappPulse {
  0% {
    opacity: 0.72;
    transform: scale(0.86);
  }

  100% {
    opacity: 0;
    transform: scale(1.28);
  }
}

@media (prefers-reduced-motion: reduce) {

  .pdf-image-collage::before,
  .pdf-image-collage .small,
  .image-badge,
  .vertical-badge,
  .kicker-icon,
  .cta-strip-inner::before {
    animation: none;
  }

  .pdf-image-collage .large,
  .pdf-image-collage .small {
    transform: none;
  }
}

@media (max-width: 980px) {

  .pdf-card-row,
  .pdf-metrics,
  .pdf-story-grid,
  .pdf-story-grid.reverse {
    grid-template-columns: 1fr;
  }

  .pdf-image-collage {
    min-height: 430px;
  }

  .cta-strip-inner {
    align-items: flex-start;
    flex-direction: column;
    /* background: linear-gradient(90deg, #f7fbff 0%, rgba(255, 255, 255, 0.88) 100%); */
  }

  .footertop {
    /* background: radial-gradient(circle at bottom left, rgb(3 53 123 / 60%) 0%, rgb(76 103 193 / 13%) 22%, rgb(64 105 181 / 12%) 35%, #07468029 50%), linear-gradient(90deg, #0f0f0f 0%, #090909 55%, #050505 100%); */
    background: radial-gradient(circle at bottom left, rgb(6 6 7 / 60%) 0%, rgb(76 103 193 / 13%) 22%, rgb(64 105 181 / 12%) 35%, #07468029 50%), linear-gradient(90deg, #0f0f0f 0%, #090909 55%, #050505 100%);
    padding: 0px 0px;
  }

  .site-footer {
    padding: 20px 0 28px;
  }
}

@media (max-width: 620px) {

  .pdf-overview,
  .pdf-story-section {
    padding: 56px 0;
  }

  .pdf-metrics {
    grid-template-columns: 1fr;
  }

  .pdf-metrics div {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  }

  .pdf-image-collage {
    min-height: 360px;
  }

  .image-badge {
    left: 18px;
    right: auto;
    width: calc(100% - 36px);
  }

  .image-badge.content-badge {
    top: auto;
    bottom: 18px;
    width: calc(100% - 36px);
    min-height: 0;
  }

  .whatsapp-float {
    right: 18px;
    bottom: 18px;
    width: 54px;
    height: 54px;
  }

  .whatsapp-float svg {
    width: 30px;
    height: 30px;
  }

  .cta-strip-inner {
    padding: 24px;
  }
}

/* --------------------- contact page design------------------- */
.contact-card {
  position: relative;
  background: #fff;
  border-radius: 22px;
  padding: 38px;
  min-height: 620px;
  border: 1px solid #e5edf7;
  box-shadow: 0 1px 20px rgba(16, 24, 40, .08);
  overflow: hidden;
}

.card-icon {
  width: 78px;
  height: 78px;
  border-radius: 50%;
  background: linear-gradient(135deg, #eef5ff, #dceaff);
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 24px;
}

.card-icon i {
  font-size: 36px;
  color: #1062d9;
}

.contact-card h3 {
  margin: 0;
  font-size: 34px;
  font-weight: 700;
  color: #071847;
}

.title-line {
  width: 55px;
  height: 4px;
  background: #1683ff;
  border-radius: 50px;
  margin: 18px 0 28px;
}

.address {
  color: #667085;
  font-size: 18px;
  line-height: 1.9;
  margin-bottom: 35px;
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-list li {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 18px 0;
  border-top: 1px solid #edf2f7;
}

.contact-list li:first-child {
  border-top: none;
}

.icon-box {
  width: 60px;
  height: 60px;
  background: #fff6f2;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.bg2 {
  background: #edebff;
}

.bg3 {
  background: #e5f5f5;
}

.infoSection {
  margin-top: 60px;
}

.icon-box i {
  font-size: 30px;
  color: #525252;
}

.contact-list a,
.contact-list div {
  color: #102a5d;
  font-size: 18px;
  text-decoration: none;
  transition: .3s;
}

.contact-list a:hover {
  color: #1683ff;
}

.city-image {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: .12;
}

.city-image img {
  width: 100%;
  display: block;
}

.contactBox h1 {
  font-size: 27px;
  font-weight: 500;
  margin: 20px 0px 10px auto;
}

.contactBox a,
.contactBox p {
  font-size: 28px;
  font-weight: 300;
  color: #5b5b5b;
  margin: 0px;
  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum";
}

@media (max-width: 350px) {
  .contact-list li {
    display: block;
  }
}

/* --------------------- contact page design------------------- */
/* --------------------- prodt page design------------------- */
.productPage {
  display: grid;
  grid-template-columns: 60% 40%;
  align-items: center;
  gap: 80px;
}

.contentSection p {
  max-width: 100%;
}

.contentSection p:first-of-type {
  font-size: 35px;
  font-weight: 600;
}

.contentSection p:nth-of-type(2) {
  font-size: 17px;
  margin: 17px 0px;
}

.contentSection p:nth-of-type(3) {
  font-size: 17px;
  margin-bottom: 50px;
}

.imgSection {
  text-align: right;
  display: flex;
  justify-content: center;
  align-items: center;
}

.imgSection img {
  width: 100%;
  max-width: 100%;
  height: auto;
  animation: floatImage 4s ease-in-out infinite;
  will-change: transform;
}

@keyframes floatImage {
  0% {
    transform: translateY(0px);
  }

  25% {
    transform: translateY(-10px);
  }

  50% {
    transform: translateY(-18px);
  }

  75% {
    transform: translateY(-10px);
  }

  100% {
    transform: translateY(0px);
  }
}

.converseFeatures-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.featBox {
  background: radial-gradient(circle at bottom left, rgb(124 200 237 / 48%) 3%, rgb(173 223 235 / 40%) 24%, #00000000 91%), #f7faff;
  border-radius: 20px;
  padding: 20px;
  position: relative;
}

.chatimg {
  position: absolute;
  bottom: 0px
}

.featBox p {
  color: var(--para);
  font-size: 19px;
  font-weight: 300;
}

.featBox h4 {
  font-size: 25px;
  font-weight: 400;
  color: #050505;
  margin: 10px 0px;
}

.platform-tabs {
  max-width: 700px;
}

.platform-tabs h6 {
  font-size: 20px;
  margin: 20px 0px 5px;
  font-weight: 400;
}

.omnichanelheading {
  text-align: center;
  padding: 125px 0px 30px;
}

.omnichanelheading h1 {
  font-size: 45px;
  margin: 0px;
}

.omnichanelheading p {
  font-size: 19px;
  color: #0961c0;
  font-weight: 500;
  margin: 0px;
}

.tab-item span {
  font-size: 25px;
  font-weight: 400;
  color: #27292a;
  display: block;
}

.tab-item.active span {
  color: #34495e;
}

.tab-item {
  position: relative;
  padding: 23px 20px;
  border-bottom: 1px solid #d9d9d9;
}

.tab-item.active {
  border-bottom: none;
}

.tab-item.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, #0060c8 0%, #b5d8ff 50%, #ffffff 100%)
}

.omnichanel-grid {
  display: grid;
  grid-template-columns: 50% 50%;
  align-items: center;
  gap: 80px;
}

.bottomContent {
  background: radial-gradient(ellipse at center,
      #0040a1 0%,
      #0d122c 150%);
  padding: 20px;
  text-align: center;
}

.bottomContent p {
  color: #fff;
  font-size: 20px;
}

.feature-banner {
  position: relative;
  max-width: 1400px;
  margin: 80px auto;
  padding: 60px 40px;
  border-radius: 24px;
  overflow: hidden;
  background:
    radial-gradient(circle at center,
      #0d4dff 0%,
      #062a87 35%,
      #031a5e 100%);
  box-shadow:
    0 20px 50px rgba(0, 40, 150, .25);
}

/* decorative dots */
.feature-banner::before {
  content: "";
  position: absolute;
  left: 20px;
  top: 20px;
  width: 120px;
  height: 120px;
  background-image:
    radial-gradient(#1b7cff 1.5px, transparent 1.5px);
  background-size: 15px 15px;
  opacity: .5;
}

.feature-banner::after {
  content: "";
  position: absolute;
  right: 20px;
  bottom: 20px;
  width: 150px;
  height: 150px;
  background-image:
    radial-gradient(#1b7cff 1.5px, transparent 1.5px);
  background-size: 15px 15px;
  opacity: .5;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.feature-card {
  color: #fff;
  padding: 20px 40px;
  position: relative;
}

.feature-card:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 90px;
  height: 300px;
  width: 1px;
  background: rgba(255, 255, 255, .15);
}

.icon-circle {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  border: 3px solid rgba(42, 138, 255, .6);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, .03);
}

.icon-circle i {
  font-size: 35px;
  color: #fff;
}

.feature-card h3 {
  font-size: 1.7rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 22px;
}

.feature-card p {
  font-size: 1.25rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, .85);
  max-width: 420px;
  margin: 0 auto 35px;
}

/* wave line */
.feature-banner .wave {
  position: absolute;
  bottom: 0;
  left: 0;
}

@media (max-width: 991px) {

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .feature-card:not(:last-child)::after {
    display: none;
  }

  .feature-card {
    padding: 40px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, .15);
  }

  .feature-card h3 {
    font-size: 1.6rem;
  }
}


.business-challenges {
  padding: 30px 0;
  background: #f6f9ff;
}

.section-title {
  text-align: center;
  margin-bottom: 40px;
}

.section-title h2 {
  font-weight: 700;
  color: var(--main-heading);
  font-size: 38px;
  margin: 0px;
}

.challenge-wrapper {
  display: grid;
  grid-template-columns: 55% 45%;
  gap: 24px;
}

.challenge-card {
  display: flex;
  gap: 24px;
  background: #fff;
  padding: 30px;
  margin-bottom: 20px;
  border-radius: 24px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, .05);
}

.challenge-number {
  min-width: 70px;
  font-size: 48px;
  font-weight: 700;
  color: #2563ff;
  border-right: 1px solid #dbe5ff;
  padding-right: 20px;
}

.challenge-icon {
  width: 110px;
  height: 110px;
  background: #eef4ff;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.challenge-icon img {
  width: 55px;
}

.challenge-content h3 {
  color: var(--main-heading);
  margin-bottom: 10px;
  font-size: 25px;
  margin-top: 0px;
  line-height: 1.4;
}

.business-challenges-gap {
  max-width: 1400px;
  margin: 80px auto;
}

.challenge-content p {
  font-size: 20px;
  line-height: 1.7;
  color: #374151;
  font-weight: 300;
  margin: 10px 0px;
}

.challenge-content strong {
  color: #2563ff;
}

.challenge-visual {
  background: white;
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, .05);
}

.channel-circle {
  margin: 50px auto 0px !important;
  width: 500px;
  height: 500px;
  position: relative;
  border: 2px dashed #2563ff;
  border-radius: 50%;
}

.center-image {
  width: 320px;
  height: 320px;
  border-radius: 50%;
  object-fit: cover;

  position: absolute;
  top: 50%;
  left: 50%;

  transform: translate(-50%, -50%);
}

.channel {
  width: 90px;
  height: 90px;
  background: white;
  border-radius: 50%;
  position: absolute;
  box-shadow: 0 5px 20px rgba(0, 0, 0, .1);
  display: flex;
  align-items: center;
  justify-content: center
}

.channel img {
  width: 50%
}

.whatsapp {
  top: -55px;
  left: 50%;
  transform: translateX(-50%);
}

.email {
  top: 65px;
  right: 0px;
}

.sms {
  top: 50%;
  right: -55px;
}

.viber {
  bottom: 15px;
  right: 40px;
}

.mobile {
  bottom: -55px;
  left: 50%;
  transform: translateX(-50%);
}

.website {
  bottom: 20px;
  left: 35px;
}

.social {
  top: 45%;
  left: -45px;
}

.livechat {
  top: 35px;
  left: 15px;
}

.warning-box {
  margin-top: 80px;
  border: 1px solid #ffcaca;
  background: #fff8f8;
  border-radius: 20px;
  padding: 25px;
  display: flex;
  align-items: center;
  gap: 25px;
  display: block;
}

.warning-highlight {
  color: #0230a5;
  font-weight: 600;
  font-size: 17px;
}

@media(max-width:1024px) {
  .challenge-wrapper {
    display: block;
  }
}

.why-converse-banner {
  position: relative;
  max-width: 1400px;
  margin: 80px auto;
  padding: 35px;
  border-radius: 24px;
  overflow: hidden;
  background: radial-gradient(circle at center, #0d4dff 0%, #062a87 35%, #031a5e 100%);
  box-shadow: 0 20px 50px rgba(0, 40, 150, .25);
}

.why-converse-banner .feature-grid {
  margin: 0px 100px;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 0;
}

.why-converse-card p {
  color: #fff;
  font-size: 20px;
  font-weight: 100;
  padding-bottom: 20px;
  border-bottom: 2px solid rgba(255, 255, 255, .15);
}

.why-converse-card p:last-child {
  border-bottom: none;
}

.why-converse-card h3 {
  color: #fff;
  font-size: 30px;
  font-weight: 500;
}

.why-converse-banner::before {
  content: "";
  position: absolute;
  left: 20px;
  top: 20px;
  width: 120px;
  height: 120px;
  background-image: radial-gradient(#1b7cff 1.5px, transparent 1.5px);
  background-size: 15px 15px;
  opacity: .5;
}

.banner {
  position: relative;
}

.bannerTitle {
  position: absolute;
  bottom: 30px;
}

.bannerTitle h1 {
  font-weight: 500;
  color: #fff;
  font-size: 50px;
}

.service-mobile .list h5 {
  margin: 6px 0px;
  color: #2c589f;
  font-size: 15px;
}

/* --------------------- prodt page design------------------- */

/* --------------------- terms of use page design------------------- */
.terms-page {
  max-width: 1400px;
  margin: auto;
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 80px;
  padding: 60px 30px;
}

.sidebar {
  position: sticky;
  top: 30px;
  align-self: start;
}

.sidebar ul {
  list-style: none;
}

.sidebar li {
  margin-bottom: 22px;
}

.sidebar a {
  text-decoration: none;
  color: #222;
  font-size: 18px;
  font-weight: 600;
  transition: .3s;
}

.warning-icon {
  font-size: 25px;
  color: #bea501;
}

.videosection {
  padding: 80px 0px;
}

.sidebar a:hover,
.sidebar a.active {
  color: #2356ff;
}

/* Content */

.content section {
  margin-bottom: 30px;
  scroll-margin-top: 40px;
}

.content h3 {
  margin: 35px 0 15px;
  font-size: 32px;
}

.terms-page h4 {
  font-size: 18px !important;
}

.content p,
.content li {
  font-size: 17px !important;
  color: #333;
  margin: 10px 0px;
}

.linkColor {
  color: #166ef2;
}

@media(max-width:992px) {
  .terms-page {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .sidebar {
    position: relative;
    top: 0;
  }
}

/* --------------------- terms of use page design------------------- */

/* ------------------------abount us page-------------------------- */
.values-section {
  margin: 10px auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.subheading h1 {
  margin-top: 0px;
  font-size: 40px;
  font-weight: 400;
}

.value-card {
  position: relative;
  background: #fff;
  padding: 35px;
  overflow: hidden;
  min-height: 420px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, .04);
  transition: .35s;
}

.value-card i {
  font-size: 40px;
  color: #333;
}

.value-card h3 {
  font-size: 27px;
  color: #333;
  font-weight: 500;
  margin-bottom: 10px;
  margin-top: 10px;
}

.green {
  background: #1AA16C;
}

.orange {
  background: #F39B14;
}

.purple {
  background: #7D46FF;
}

/* TEXT */

.value-card p {
  font-size: 17px;
  line-height: 34px;
}

.bg-img {
  position: absolute;
  right: 25px;
  bottom: 20px;
  width: 120px;
  opacity: .15;
}

/* Bottom Wave */
.value-card::after {
  content: "";
  position: absolute;
  left: -15%;
  bottom: -70px;
  width: 140%;
  height: 150px;
  border-radius: 50%;
  opacity: .25;
}

.value-card:hover .icon {
  transform: scale(1.1);
  transition: .35s;
}

.value-card:hover .bg-img {
  transform: scale(1.1);
  transition: .4s;
}

.ourVision {
  padding: 70px 0 50px 0px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.teamsection {
  padding: 0px 0 50px 0px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.team {
  margin-top: 80px;
}

.team h2 {
  font-size: 40px;
  font-weight: 400;
}

.teammembers img {
  height: 400px !important;
  filter: grayscale(100%);
  transition: filter 0.5s ease, transform 0.5s ease;
}

.teammembers img:hover {
  filter: grayscale(0%);
  transform: scale(1.01);
}

.teammembers h2 {
  margin: 10px 0px;
  font-size: 20px;
}

.teammembers h6 {
  margin: 5px 0px;
  font-size: 15px;
  font-weight: 500;
  color: #7b7b7b;
}

.teammembers p {
  margin: 10px 0px;
  font-size: 18px;
}

.team-section {
  max-width: 1400px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px 120px;
  margin-bottom: 50px;
}

.isoCertifications {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 100px;
  width: 100%;
  margin-bottom: 50px;
}

.isoCertifications img {
  width: 13%;
  height: 190px;
}

/* Card */

.team-card {
  width: 350px;
  border-radius: 0px;
  overflow: hidden;
  transition: .35s;
}

/* Top */
.grayscale-img {
  width: 100%;
  display: block;
  filter: grayscale(100%);
  transition: all 0.4s ease;
  transform: scale(1);
}

.grayscale-img:hover {
  filter: grayscale(0%);
}

.card-top {
  position: relative;
  display: flex;
  overflow: hidden;
  justify-content: center;
  align-items: flex-end;
}

.image {
  display: block;
  width: 100%;
  height: auto;
}

.overlay-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgb(2 2 2 / 84%);
  overflow: hidden;
  width: 100%;
  height: 0;
  transition: .5s ease;
}

.card-top:hover .overlay-content {
  height: 100%;
}

.overlay-content p {
  color: #fff;
  font-size: 16px;
  width: 100%;
  padding: 30px;
  position: absolute;
  overflow: hidden;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}

.card-top img {
  position: relative;
  height: auto;
}

/* Floating Button */

.profile-btn {
  position: absolute;
  right: 22px;
  bottom: 18px;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: #1f2125;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 24px;
  z-index: 5;
  box-shadow: 0 12px 25px rgba(37, 99, 235, .35);
}

.card-body {
  padding: 20px 0px 0px;
}

.ourSolutions h1 {
  font-size: 40px;
  font-weight: 400;
}

.card-body h3 {
  font-size: 22px;
  color: #162044;
  font-weight: 700;
  margin: 0px auto;
}

.designation {
  color: #2d72ff;
  font-size: 15px;
  font-weight: 500;
}

.card-body p {
  color: #5d6474;
  line-height: 1.9;
  font-size: 15px;
}

/* Footer */

.card-footer {
  border-top: 1px solid #edf0f5;
  padding: 0px 0px;
  display: flex;
  gap: 0px;
  flex-direction: column;
}

.card-footer a {

  width: 38px;
  height: 38px;

  border-radius: 10px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: #f5f7fb;

  color: #444;

  text-decoration: none;

  transition: .3s;
}

.card-footer a:hover {

  background: #2563eb;
  color: #fff;
}

.service-card {
  background: #fff;
  border: 1px solid #e6e6e6;
  border-radius: 28px;
  overflow: hidden;
  position: relative;
  display: flex;
  min-height: 435px;
  transition: .35s;
  box-shadow: 0 5px 15px rgba(0, 0, 0, .04);
}

.service-content {
  flex: 1;
  padding: 25px 0px;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 2;
}

.mision-img {
  position: absolute;
  bottom: 0;
  width: 420px;
  height: auto;
  object-fit: contain;
  z-index: 1;
}

.vision-img {
  position: absolute;
  bottom: 0;
  width: 360px;
  height: auto;
  object-fit: contain;
  z-index: 1;
  right: 5px;
  transform: rotateY(180deg);
}

.service-content h2 {
  font-size: 35px;
  font-weight: 500;
  color: #0b1d4d;
  margin: 10px 0px;
}

.service-content p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--para1);
  margin-top: 0px;
}

.service-image {
  position: absolute;
  bottom: 0px;
  right: 0px;
}

.service-image img {
  width: 80%;
  height: auto;
  object-fit: cover;
  transition: .5s;
}

.about-section {
  padding: 80px 0px;
  background: #fff;
}

.aboutList {
  display: flex;
  gap: 20px;
  margin-top: 50px;
  justify-content: center;
}

.aboutList li {
  font-size: 17px;
  font-weight: 500;
  border: 2px solid #282727;
  border-radius: 50px;
  padding: 6px 20px;

}

.aboutList li::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1.3px;
  border-radius: 20px;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.aboutList .active {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 8px 20px;
  border-radius: 50px;
  background: #fff;
  font-size: 17px;
  font-weight: 500;
  overflow: hidden;
  z-index: 1;
  border: 2px solid transparent;
  background: linear-gradient(135deg, #1a86cb, #4fa8ff, #0d6efd, #003d99);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.aboutList .active::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1.5px;
  border-radius: 50px;
  background: linear-gradient(135deg, #1a86cb, #4fa8ff, #0d6efd, #003d99);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.aboutList li:hover {
  color: #fff !important;
  -webkit-text-fill-color: white;
  background: linear-gradient(135deg, #1a86cb, #4fa8ff, #0d6efd, #003d99);
}

.about-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 60px;
}

.about-left {
  flex: 2;
  text-align: center;
}

.heading h2 {
  font-size: 46px;
  font-weight: 700;
  color: #0D1F57;
}

.about-left p {
  font-size: 20px;
  line-height: 35px;
  color: #444;
  margin-bottom: 28px;
}

.about-right {
  flex: 1;
  border-left: 1px solid #e6e6e6;
  padding-left: 40px;
}

.info-card {
  background: #ecf2ff;
  border-radius: 14px;
  padding: 30px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, .05);
}

.info-box {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 10px 0;
}

.fa-solid.fa-building {
  color: #0083fc;
  font-size: 45px;
}

.info-icon {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #046272a3;
  font-size: 36px;
}

.info-box h4 {
  font-size: 22px;
  color: #112B69;
  margin-bottom: 8px;
  margin-top: 5px;
}

.info-box p {
  font-size: 15px;
  color: #555;
  line-height: 26px;
}

.info-card hr {
  border: none;
  border-top: 1px solid #e7e7e7;
  margin: 0px 0;
}

.aboutBanner,
.contactBanner {
  padding-top: 110px;
}

.sub-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;

  font-size: 18px;
  font-weight: 700;
  color: #1d5cff;
  letter-spacing: 2px;
}

.line {
  width: 45px;
  height: 3px;
  background: #1d5cff;
  border-radius: 30px;
}

.heading h2 {
  font-size: 35px;
  font-weight: 700;
  color: #0b1d4d;
  margin: 20px 0;
}

.heading p {
  font-size: 18px;
  color: #64748b;
}

/* ************************************ */
.timeline-section {
  background-color: #000;
}

.stats-section {
  display: flex;
}

.stat h2 {
  font-size: 125px;
  font-weight: 400;
  background-clip: text !important;
  color: transparent;
  margin: 5px 0px;
}

.blue h2 {
  background: linear-gradient(90deg, #8fd3ff 0%, #4fa8ff 30%, #0d6efd 70%, #003d99 100%);
  -webkit-text-fill-color: transparent;
}

/* .greenbox h2 {
    background: linear-gradient(90deg, #8fffc8 0%, #4fff6a 30%, #057610 70%, #00991d 100%);
    -webkit-text-fill-color: transparent;
}
.orangebox h2 {
    background: linear-gradient(90deg, #f5b17c 0%, #ffb14f 30%, #830000 70%, #990100 100%);
    -webkit-text-fill-color: transparent;
} */
/* .pinkbox h2 {
    background: linear-gradient(90deg, #d792f5 0%, #ad3cdf 30%, #e39bff 70%, #c18bf1 100%);
    -webkit-text-fill-color: transparent;
} */
.left {
  position: sticky;
  top: 0;
  width: 50%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0px 100px 0px 0px;
}

.left h1 {
  font-size: 60px;
  font-weight: 300;
  margin-bottom: 0px;
  color: #ffff;
}

.left p {
  font-size: 20px;
  line-height: 1.8;
  color: #aaa;
}

.right {
  width: 50%;
  position: relative;
}

.stat {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transform: translateY(100px);
  transition: .6s;
}

.stat.active {
  opacity: 1;
  transform: translateY(0);
}

.stat span {
  font-size: 20px;
  color: #888;
}

.left .content {
  position: relative;
}

.right .content {
  position: relative;
}

.icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 34px;
  color: #444;
  background: #fff;
  position: relative;
}

.content {
  flex: 1;
}

.content ul {
  padding-left: 20px;
}

.content li {
  margin-bottom: 12px;
  line-height: 32px;
  font-size: 18px;
  color: #323b53;
}

.content strong {

  color: #1d5cff;

  font-weight: 600;

}

.journey-footer {

  margin-top: 70px;

  background: linear-gradient(90deg, #f6f9ff, #eef4ff);

  border-radius: 20px;

  display: flex;

  align-items: center;

  justify-content: space-between;

  padding: 35px 45px;

  box-shadow: 0 10px 25px rgba(0, 0, 0, .06);

}

.footer-icon {
  width: 90px;
  height: 90px;
  background: #1d5cff;
  color: #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 38px;
}

.footer-content {
  flex: 1;
  padding: 0 40px;
}

.footer-content p {
  font-size: 20px;
  line-height: 36px;
  color: #2f3f5d;
}

.footer-image {
  color: #9dbbff;
  opacity: .9;
}

.cookieBanner {
  position: fixed;
  bottom: 0px;
  background-color: #000;
  padding: 10px;
  z-index: 99;
}

.cookiegrid {
  display: grid;
  grid-template-columns: 60% 40%;
  gap: 30px;
}

.cookieBanner p {
  font-size: 13px;
  color: #fff;
  font-weight: 200;
}

.cookieBtn button {
  font-size: 15px;
  border: none;
  padding: 10px 20px;
  cursor: pointer;
  font-family: var(--main-font);
}

.cookiesettings {
  background: #0a3766;
  color: #fff;
}

.cookieaccept {
  background: #1366be;
  color: #fff;
}

.cookiereject {
  background: #fff;
  color: #000;
}

.cookieBtn {
  display: flex;
  gap: 20px;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

/*==========================
      RESPONSIVE
===========================*/

@media(max-width:992px) {

  .heading h2 {

    font-size: 42px;

  }

  .heading p {

    font-size: 18px;

  }

  .timeline::before {

    left: 25px;

  }

  .timeline-item {

    flex-direction: column;

    align-items: flex-start;

  }

  .timeline-year {

    width: 100%;

    margin-bottom: 20px;

  }

  .timeline-card {

    width: 100%;

  }

  .journey-footer {

    flex-direction: column;

    text-align: center;

    gap: 30px;

  }

  .footer-content {

    padding: 0;

  }

}

@media(max-width:768px) {

  .heading h2 {

    font-size: 34px;

  }

  .timeline-card {

    flex-direction: column;

    text-align: center;

  }

  .icon {

    width: 80px;

    height: 80px;

    font-size: 34px;

  }

  .content ul {

    padding-left: 18px;

    text-align: left;

  }

  .content li {

    font-size: 16px;

    line-height: 28px;

  }

  .footer-content p {

    font-size: 17px;

    line-height: 30px;

  }

}

/* ------------------------abount us page-------------------------- */
/* ------------------------nexus us page-------------------------- */
.capabilities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;

}

.capabilities-box {
  border-radius: 20px;
  padding: 20px 50px 30px;

  position: relative;
  overflow: hidden;
  z-index: 1;
}

.capabilities-box h3 {
  color: #fff;
  font-size: 23px;
  font-weight: 400;
  margin-top: 4px;
}

.capabilities-box p {
  color: #dfdfdf;
  font-weight: 300;
  font-size: 18px;
}

.capabilities-box .bi {
  font-size: 55px;
  color: #fff;
}

.capabilities-box:hover::before {
  transform: translateX(100%);
  opacity: 1;
}

.capabilities-box::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(50deg, #ffffff0a 0%, rgb(47 46 46 / 14%) 45%, #ffffff0d 70%);
  transform: translateX(-100%);
  opacity: 0;
  transition: transform 0.8s ease, opacity 0.3s ease;
  pointer-events: none;
  z-index: 0;
}

.capabilities-box.bg {
  background: linear-gradient(135deg, #000000 0%, #113f62 100%);
}

.capabilities-box.bg2 {
  background: linear-gradient(135deg, #000000 0%, #3d300d 100%);
}

.capabilities-box.bg3 {
  background: linear-gradient(135deg, #000000 0%, #1e4a21 100%);
}

.capabilities-box.bg4 {
  background: linear-gradient(135deg, #000000 0%, #3d253b 100%);
}

.capabilities-box.bg5 {
  background: linear-gradient(135deg, #000000 0%, #3e1c11 100%);
}

.capabilities-box.bg6 {
  background: linear-gradient(135deg, #000000 0%, #444a44 100%);
}

.nexus-feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.nexus-feature-grid .feature-card h3 {
  font-size: 1.3rem;
  font-weight: 600;
}

.nexus-feature-grid .feature-card p {
  font-size: 17px;
}

.nexus-feature-grid .feature-card {
  padding: 10px 20px;
}

.nexus h2 {
  text-align: center;
  color: #fff;
  font-size: 35px;
  padding-bottom: 10px;
}

.nexus-security {
  border: .063rem solid rgba(85, 131, 251, .3);
  border-radius: 20px;
  padding: 20px 40px;
  background: linear-gradient(rgba(255, 255, 255, 0) 0.02%, rgb(241, 245, 254) 99.99%), rgb(255, 255, 255);
}

.nexus-security li {
  color: #353535;
  list-style: none;
  padding: 12px 0px;
  font-size: 17px;
}

.nexus-security h2 {
  margin: 10px 0px;
  font-size: 31px;
}

.nexus-security h6 {
  font-weight: 400;
  font-size: 18px;
  margin: 10px 0px;
  color: #3c3c3c;
}

.nexus-security svg {
  margin-right: 10px;
}

.security-list {
  display: flex;
  gap: 45px;
}

.security-list ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.nexus-security p {
  font-size: 17px;
  font-weight: 600;
}

.nexus-security.bg {
  background: linear-gradient(rgba(255, 255, 255, 0) 0.02%, rgb(255 246 246) 99.99%), rgb(255, 255, 255);
  border: .063rem solid rgb(237 137 167 / 30%);
}

.nexusBottom-feature-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 0;
}

.nexusBottom-feature-grid .feature-card p {
  max-width: 100%;
}

.why-nexus {
  padding: 120px 20px;

}

.why-nexus .section-title {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  margin-bottom: 50px;
}

.why-nexus .section-title h2 {
  font-size: 36px;
  color: #1d2143;
  font-weight: 700;
}

.line-dot {
  width: 10px;
  height: 10px;
  background: #2696f8;
  border-radius: 50%;
  position: relative;
}

.line-dot::before {
  content: "";
  position: absolute;
  width: 120px;
  height: 2px;
  background: #d8cbff;
  top: 50%;
  transform: translateY(-50%);
}

.line-dot:first-child::before {
  right: 14px;
}

.line-dot:last-child::before {
  left: 14px;
}

.why-nexus .features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.why-nexus .feature {
  text-align: center;
  padding: 20px;
  position: relative;
}

.why-nexus .icon {
  width: 74px;
  height: 74px;
  margin: 0 auto 22px;
  border-radius: 50%;
  border: 1px solid #d9cfff;
  background: #f8f4ff;
  display: flex;
  align-items: center;
  font-size: 30px;
  color: #1e74c3 !important;
  justify-content: center;
}

.feature h3 {
  font-size: 20px;
  color: #1d2143;
  font-weight: 600;
  line-height: 1.35;
  margin-bottom: 10px;
}

.feature p {
  color: #666;
  font-size: 17px;
  line-height: 1.8;
}

.modules-section {
  padding: 120px 0px 50px 0px;
}

.modules-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.module-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 120px;
  height: 120px;
  border-radius: 0 0 0 100%;
  opacity: .07;
}

.featBox .bi {
  font-size: 40px;
  color: #05487d;
}

.card-header h3 {
  font-size: 22px;
  line-height: 1.35;
  font-weight: 500;
  color: #022345;
}

ul {
  list-style: none;
}

.modules-section ul li {
  position: relative;
  margin-bottom: 16px;
  font-size: 17px;
  color: #444;
  font-weight: 600;
}

/* .modules-section ul li::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 13px;
  background: #9dcae7;
} */

/* .dots {
  width: 70px;
  height: 40px;
  position: absolute;
  right: 20px;
  bottom: 18px;
  background-image: radial-gradient(currentColor 1.8px, transparent 1.8px);
  background-size: 12px 12px;
  opacity: .25;
} */

/* .blue .icon-box {
  border-color: #cfd8f6;
  color: #dee2f1;
  background: #eaedf8;
}

.green .icon-box {
  border-color: #e0e9e6;
  color: #57edab;
  background: #eff8f3;
}

.orange .icon-box {
  border-color: #f0dfd3;
  color: #ff9332;
  background: #f5ede8;
}
.purple .icon-box {
  border-color: #e8e0f8;
  color: #8b5cf6;
  background: #f0ecf8;
}
.cyan .icon-box {
  border-color: #d6eff2;
  color: #16b7d9;
  background: #effafc;
} */

.product-overview {
  margin: 80px 0px 0px;
}

.right_img {
  position: absolute;
  bottom: 0px;
  width: 50%;
  right: 10px;
}

.overview-card {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0px;
  background: #fff;
  border-radius: 22px;
  padding: 35px 0px 35px 45px;
  border: 1px solid #edf1ff;
  box-shadow:
    0 10px 35px rgba(24, 45, 95, .08);
}

.section-heading {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 10px;
}

.heading-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #eef3ff;
  color: #4668ff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}

.overview-item {
  display: flex;
  align-items: flex-start;
  gap: 25px;
}

.item-icon {
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #4169ff;
  font-size: 34px;
}

.item-content {
  flex: 1;
}

.module-card ul {
  padding-left: 20px;
}

.module-card .bg-box-bg {
  color: #000000;
}

.item-content p {
  font-size: 18px;
  line-height: 1.9;
  color: #50596d;
  margin: 0px;
  margin-bottom: 20px;
}

.divider {
  margin: 35px 0;
  border-top: 2px dashed #d8dff4;
}

/* ------------------------nexus us page-------------------------- */
/* -------------------------carrer------------------- */

/* .list {
            margin: 0 auto;
            padding: 0 20px 30px;
          } */

.list__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0px 0 18px;
}

.list__head h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin: 0;
}

.toggle-all {
  all: unset;
  cursor: pointer;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--pill-ink);
  display: flex;
  align-items: center;
  gap: 6px;
}

.toggle-all svg {
  width: 14px;
  height: 14px;
  transition: transform 300ms ease;
}

.dept {
  border-top: 1px solid var(--line);
}

.dept:last-child {
  border-bottom: 1px solid var(--line);
}

.dept__header {
  all: unset;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 26px 4px;
  cursor: pointer;
}

.dept__header:focus-visible {
  outline: 2px solid var(--pill-ink);
  outline-offset: 4px;
  border-radius: 4px;
}

.dept__title {
  font-size: 25px;
  font-weight: 700;
}

.dept__meta {
  display: flex;
  align-items: center;
  gap: 18px;
}

.count {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--muted);
  background: var(--tag-bg);
  padding: 5px 11px;
  border-radius: 100px;
}

.chevron {
  width: 18px;
  height: 18px;
  color: var(--ink);
  transition: transform 350ms cubic-bezier(.65, 0, .35, 1);
  flex: none;
}

.dept.is-open .chevron {
  transform: rotate(180deg);
}

.dept__panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 400ms cubic-bezier(.65, 0, .35, 1);
}

.dept.is-open .dept__panel {
  grid-template-rows: 1fr;
}

.dept__panel-inner {
  overflow: hidden;
}

.dept__jobs {
  padding: 2px 4px 26px;
  display: flex;
  flex-direction: column;
}

.job {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 15px 12px;
  border-radius: 10px;
  text-decoration: none;
  color: inherit;
  transition: background 200ms ease;
}

.job:hover {
  background: var(--hover);
}

.job:hover .job__arrow {
  transform: translateX(4px);
  opacity: 1;
}

.job__left {
  display: flex;
  align-items: baseline;
  gap: 16px;
  flex-wrap: wrap;
}

.job__title {
  font-size: 19px;
  font-weight: 500;
  color: var(--ink);
}

.job__tags {
  display: flex;
  gap: 8px;
}

.tag {
  font-size: 11.5px;
  font-weight: 500;
  color: var(--muted);
  background: var(--tag-bg);
  padding: 4px 10px;
  border-radius: 100px;
  white-space: nowrap;
}

.job__arrow {
  width: 16px;
  height: 16px;
  color: var(--ink);
  opacity: .45;
  transition: all 200ms ease;
  flex: none;
}

.openingBtn {
  width: 100%;
  text-align: center;
}

.btn-openings {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1.5px solid var(--ink);
  border-radius: 10px;
  padding: 14px 24px;
  font-size: 18px;
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
  transition: all 200ms ease;
}

.btn-openings:hover {
  background: var(--ink);
  color: #fff;
}

.btn-openings svg {
  width: 16px;
  height: 16px;
  transition: transform 200ms ease;
}

.btn-openings:hover svg {
  transform: translateX(3px);
}

.whatsapp-fab {
  position: fixed;
  right: 28px;
  bottom: 28px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.35);
  color: #fff;
}

.whatsapp-fab svg {
  width: 26px;
  height: 26px;
}

@media (max-width: 640px) {

  .list {
    padding: 0 24px 24px;
  }

  .dept__title {
    font-size: 18px;
  }

  .job {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    transition-duration: 0.001ms !important;
  }
}


.dept--more {
  display: none;
}

.openingBtn.is-hidden {
  display: none;
}









.career-section {
  width: 90%;
  max-width: 1500px;
  margin: 60px auto;
}

.accordion-item {
  border-top: 1px solid #bdbdbd;
}

.accordion-item:last-child {
  border-bottom: 1px solid #bdbdbd;
}

.accordion-header {
  width: 100%;
  background: none;
  border: none;
  outline: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 37px 0;
  font-size: 24px;
  font-weight: 700;
  color: #111;
}

.careericon {
  font-size: 25px;
  font-weight: 300;
  transition: .35s;
  line-height: 1;
  display: inline-block;
  transition: transform 0.3s ease;
}

.accordion-item.active .careericon {
  transform: rotate(180deg);
}

.accordion-content {
  max-height: 0;
  padding: 0px 20px;
  overflow: hidden;
  transition: max-height .4s ease;
}

.accordion-content ul {
  list-style: none;
  padding: 0 0 0px;
}

.accordion-content li {
  padding: 15px 0;
  font-size: 18px;
  color: #555;
  font-weight: 500;
}

.accordion-item.active .accordion-content {
  max-height: 250px;
  padding: 0px 20px;
}

.accordion-item.active .icon {
  transform: rotate(180deg);
}

.view-all {
  text-align: center;
  margin-top: 80px;
}

.btn-view {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  font-weight: 600;
  padding: 5px 40px;
  border: 1px solid #222;
  color: #111;
  text-decoration: none;
  font-size: 18px;
  transition: .3s;
}

.btn-view span {
  font-size: 28px;
}

.btn-view:hover {
  background: #111;
  color: #fff;
}

/* -----job description */

.breadcrumb {
  margin: 40px 0 20px;
  font-size: 18px;
  color: #777;
}

.breadcrumb a {
  color: #666;
  transition: .3s;
}

.breadcrumb a:hover {
  color: #000;
}

.breadcrumb span {
  margin: 0 10px;
}

.breadcrumb .active {
  color: #111;
  font-weight: 500;
}

.job-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  margin: 50px 0px;
}

#jobTitle {
  font-size: 50px;
  font-weight: 400;
  line-height: 1.2;
  margin: 0px;
  color: #333 !important;
}

.apply-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #1646dc;
  color: #fff;
  padding: 10px 40px;
  font-size: 20px;
  font-weight: 500;
  transition: .3s;
  border: none;
}

.apply-btn:hover {
  background: #0f36b5;
}

.apply-btn i {
  font-size: 20px;
}

.job-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #e5e5e5;
  border-bottom: 1px solid #e5e5e5;
  padding: 22px 0;
  margin-bottom: 55px;
}

.info {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 24px;
  font-weight: 600;
}

.content-section {
  margin-bottom: 60px;
}

.content-section h2 {
  font-size: 24px;
  font-weight: 700;
  margin: 10px 0px 26px;
}

.content-section p {
  font-size: 20px;
  color: #222;
  line-height: 2;
}

.content-section ul {
  margin-top: 15px;
}

.content-section li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 18px;
  font-size: 19px;
  color: #222;
}

.content-section li::before {
  content: "–";
  position: absolute;
  left: 0;
  top: 0;
  font-weight: 700;
}

.job-details {
  padding-top: 100px;
}

.career-form-section {
  width: 100%;
}

.form-container {
  max-width: 1500px;
  margin: auto;
  background: #f6f8fc;
  border: 1px solid #dfe3eb;
  border-radius: 12px;
  padding: 30px 50px;
  margin-bottom: 50px;
}

.career-form-section h1 {
  font-size: 35px;
  font-weight: 700;
  color: #000;
  margin-bottom: 45px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px 38px;
}

.form-group input {
  width: 100%;
  height: 60px;
  padding: 0 22px;
  border: 1px solid #d9d9d9;
  border-radius: 6px;
  background: #fff;
  font-size: 16px;
  outline: none;
  transition: .3s;
  font-family: var(--main-font);
}

.form-group input:focus {
  border-color: #2d6df6;
}

.form-group input::placeholder {
  color: #23344d;
}

.upload-box {
  display: flex;
  flex-direction: column;
}

.upload-title {
  font-size: 17px;
  margin-bottom: 10px;
  color: #333;
}

.upload-area {
  border: 1.5px dashed #d6dbe4;
  border-radius: 8px;
  background: #fff;
  min-height: 165px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  text-align: center;
  transition: .3s;
}

.upload-area:hover {
  border-color: #276ef1;
}

.upload-area p {
  font-size: 18px;
  color: #555;
  margin-bottom: 18px;
}

.upload-area span {
  color: #1d5cff;
  font-weight: 600;
  text-decoration: underline;
}

.upload-area small {
  color: #8d94a5;
  font-size: 16px;
}

.upload-area input {
  display: none;
}

@media(max-width:991px) {

  .form-container {
    padding: 40px 30px;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: 42px;
  }
}

@media(max-width:992px) {

  .job-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .job-header h1 {
    font-size: 44px;
  }

  .job-info {
    flex-direction: column;
    align-items: flex-start;
    gap: 25px;
  }

  .info {
    flex-wrap: wrap;
    font-size: 20px;
  }

  .content-section h2 {
    font-size: 34px;
  }

  .content-section p,
  .content-section li {
    font-size: 18px;
  }

  .apply-btn {
    font-size: 20px;
  }

}

@media(max-width:576px) {

  .breadcrumb {
    font-size: 15px;
  }

  .job-header h1 {
    font-size: 34px;
  }

  .apply-btn {
    width: 100%;
    justify-content: center;
  }

  .info {
    gap: 10px;
    font-size: 18px;
  }

  .content-section h2 {
    font-size: 28px;
  }

}

.upload-area {
  display: block;
  cursor: pointer;
  text-align: center;
  border: 2px dashed #d6d6d6;
  border-radius: 10px;
  padding: 30px;
  position: relative;
}

.upload-area input[type="file"] {
  display: none;
}

.file-name {
  margin-top: 15px;
  color: #0077ff;
  font-weight: 600;
  word-break: break-all;
}

/* -------------------------carrer page ends------------------- */
@media(max-width:768px) {

  .career-section {
    width: 100%;
  }

  .accordion-header {
    font-size: 20px;
    padding: 24px 0;
  }

  .subtitle {
    font-size: 18px;
  }

  .openings-btn {
    font-size: 18px;
    padding: 15px 30px;
  }

}

/* ------------------------service page-------------------------- */
.service-feature-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin: 25px 0px;
}

.service-feature-item {
  display: grid;
  grid-template-columns: 28px 1fr;
  column-gap: 14px;
  align-items: start;
}

.service-feature-icon {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;

  font-size: 30px;
}

.service-feature-icon .bi-person-check {
  color: #608b46 !important;
}

.box-green .bi {
  color: #608b46 !important;
}

.box-blue .bi {
  color: #1b61d4 !important
}

.service-feature-icon .bi-shield-check {
  color: #1b61d4 !important;
}

.peach-box .bi {
  color: #e5902c !important
}

.service-feature-content {
  font-size: 17px;
  line-height: 1.6;
  color: #24324a;
  margin: 0;
  padding: 0;
}

.security-list .list {
  max-width: 600px;
}

.service-mobile {
  border: .063rem solid rgba(85, 131, 251, .3);
  border-radius: 20px;
  padding: 20px 30px;
  background: linear-gradient(rgba(255, 255, 255, 0) 0.02%, rgb(241, 245, 254) 99.99%), rgb(255, 255, 255);
}

.service-mobile li {
  color: #353535;
  list-style: none;
  font-size: 17px;
}

.service-mobile h6 {
  font-size: 20px;
  font-weight: 600;
  margin: 0px 0px 6px 0px;
}



.process-section {
  padding: 80px 0;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 34px;
}

.process-card {
  background: #fff;
  border: 1px solid #edf2fb;
  border-radius: 18px;
  position: relative;
  overflow: hidden;
  box-shadow:
    0 8px 30px rgba(18, 37, 77, .07);
  transition: .35s;
}

.process-card:hover {
  transform: translateY(-8px);
  box-shadow:
    0 18px 45px rgba(18, 37, 77, .12);
}

/* Number */

.card-number {
  position: absolute;
  top: 0;
  left: 0;
  width: 58px;
  height: 48px;
  background: linear-gradient(135deg, #173d82, #0b2d68);
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 0 0 12px 0;
}

.card-content {
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 30px 40px 30px;
}

.services-icon-box {
  min-width: 125px;
  width: 125px;
  height: 125px;
  border-radius: 50%;
  background: linear-gradient(#fafcff, #f2f6fc);
  display: flex;
  justify-content: center;
  align-items: center;
  color: #173d82;
  font-size: 58px;
  box-shadow: inset 0 0 15px rgba(255, 255, 255, .8);
}

.services-icon-box i {
  font-size: 40px;
  color: #0c2e68;
}

/* Divider */

.divider {
  width: 1px;
  align-self: stretch;
  background: #e3eaf4;
}

.content h3 {
  font-size: 25px;
  line-height: 1.35;
  font-weight: 700;
  color: #14254c;
  margin-bottom: 18px;

}

.content p {
  color: #55627d;
  line-height: 1.85;
  font-size: 17px;
}

.process-card-wide {
  grid-column: 1/-1;
}

.process-card-wide .card-content {
  gap: 38px;
}

.process-card-wide .content {
  max-width: 700px;
}

/* Decorative Icon */

.illustration {
  margin-left: auto;
  width: 150px;
  height: 150px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #d4ddea;
  font-size: 95px;
  opacity: .9;

}

.process-card::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -120px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle,
      rgba(20, 90, 255, .05),
      transparent 70%);
}

.process-card::after {
  content: "";
  position: absolute;
  left: -90px;
  bottom: -90px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle,
      rgba(20, 90, 255, .03),
      transparent 70%);
}

@media(max-width:1200px) {
  .process-grid {
    grid-template-columns: 1fr;
  }

  .process-card-wide {
    grid-column: auto;
  }
}


/* ------------------------service page-------------------------- */
/* ------------------------solutions page-------------------------- */

.solution-digi-engineering {
  background: #000;
  color: #fff;
  padding: 50px 0;
  margin-top: 60px
}

.section-heading h2 {
  font-size: 50px;
  font-weight: 500;
  margin-bottom: 30px;
  line-height: 1.3;
  width: 1200px;
}

.digi-engineering h4 {
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 0px;
}

.section-heading p {
  font-size: 22px;
  line-height: 1.6;
  color: #f5f5f5;
}

.solution-wrapper {
  display: grid;
  grid-template-columns: 40% 50%;
  gap: 106px;
  align-items: center;
}

.career-section .accordion-item {
  border-bottom: 1px solid rgba(255, 255, 255, .35);
  padding: 15px 0;
}

.career-section .accordion-header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  color: #000;
  padding: 10px 20px;
  cursor: pointer;
}

.left-content {
  display: flex;
  align-items: center;
  gap: 40px;
  text-align: start;
}

.left-content .bi {
  font-size: 35px;
  color: #fff;
}

.modules-section .icon-box {
  background-color: transparent !important;
}

.left-content h3 {
  color: #fff;
  margin: 0px;
  font-size: 24px;
  font-weight: 600;
  font-family: var(--main-font);
}

.arrow {
  font-size: 25px;
  color: #fff;
  transition: .3s;
}

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: .4s;
  padding-left: 60px;
}

.accordion-body p {
  margin-top: 0px;
  margin-bottom: 10px;
  color: #f0f0f0;
  line-height: 1.7;
  font-size: 18px;
  max-width: 420px;
}

.accordion-item.active .accordion-body {
  max-height: 250px;
}

.accordion-item.active .arrow {
  transform: rotate(180deg);
}

.image-box {
  overflow: hidden;
}

.image-box img {
  width: 100%;
  display: block;
  object-fit: cover;
  height: auto;
}

.accordion-item:hover h3 {
  color: #d9d9d9;
}

@media(max-width:1100px) {

  .solution-wrapper {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .section-heading h2 {
    font-size: 52px;
  }

}

@media(max-width:768px) {

  .section-heading h2 {
    font-size: 42px;
  }

  .section-heading p {
    font-size: 18px;
  }

  .left-content h3 {
    font-size: 20px;
  }

  .accordion-body {
    padding-left: 0;
  }

  .image-box img {
    height: 350px;
  }

}

.ourSolutions {
  background-color: #f5f5f7;
  padding: 80px 0px;
}

.services-wrapper {
  display: grid;
  grid-template-columns: 65% 35%;
  gap: 30px;
  align-items: start;
}

.pic-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  align-items: center;
  justify-content: center;
}

.pic-grid img {
  display: block;
  max-width: 100%;
  width: 120px;
  height: 120px;
  object-fit: contain;
  margin: 0 auto;
  padding: 1.75rem 1rem;
  border-radius: .5rem;
  border: 1px solid rgba(0, 60, 245, .09);
  box-shadow: 0 0 25.8px 0 rgba(0, 0, 0, .05);
  background: #fff;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0px;
  align-items: start;
}

.grid-5 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  align-items: start;
}

.technology-card-bg {
  background: #f6f9ff;
  padding: 0px 20px;
  border: 1px solid #c5d2ef;
  margin-bottom: 60px;
  border-radius: 25px;
}

.technology-card {
  padding: 20px 0px;
}

.technology-card h3 {
  font-size: 20px !important;
}

.techBox {
  border-radius: 1rem;
  border: 1px solid rgb(179 222 241 / 66%);
  background-color: #f6f9ff;
  gap: 1.94rem;
  padding: 3.5rem 4rem;
  box-shadow: 0 0 30px 2px rgba(2, 10, 25, .02);
  display: grid;
  grid-template-columns: 35% 65%;
  align-items: start;
}

.techBox h2 {
  font-size: 40px;
  font-weight: 400;
  margin: 0px 0px 15px 0px;
}

.techBox p {
  font-size: 19px;
  line-height: 1.8;
  color: var(--para1);
}

.technology-box h3 {
  font-size: 15px;
}

.techslider .hero {
  background: transparent;
  height: auto;
  min-height: 300px;
}

.services-wrapper .service-content {
  padding: 10px 15px !important;
}

.solution-banner-Title {
  font-weight: 900 !important;
  color: #fff !important;
  font-size: 20px !important;
  text-transform: capitalize;
}

.solutionBoxes div {
  padding: 20px 15px 30px 15px !important;
  border-right: 10px solid rgb(255 255 255) !important;
}

.solutions h6 {
  font-size: 17px;
  margin: 0px 0px 5px;
}

.solutions li {
  margin: 8px 0px;
}

.solutions .list {
  gap: 0px
}

.solutionList {
  padding-left: 15px;
}

.loanProcessing .solutionList li {
  text-align: left;
  margin-bottom: 10px;
}

.loanProcessing .solution-banner-Title {
  text-align: left;
  margin-left: 15px;
}

.loanProcessing div::after {
  display: none !important;
}

.solution-blue {
  border: .063rem solid rgba(85, 131, 251, .3);
  border-radius: 20px;
  padding: 20px 30px;
  background: linear-gradient(rgba(255, 255, 255, 0) 0.02%, rgb(241, 245, 254) 99.99%), rgb(255, 255, 255);
}

.solution-peach {
  border: .063rem solid rgb(246 202 179 / 53%);
  border-radius: 20px;
  padding: 20px 30px;
  background: linear-gradient(rgba(255, 255, 255, 0) 0.02%, rgb(251, 254, 241) 99.99%), rgb(255, 255, 255);
}

.solution-green {
  border: .063rem solid rgb(121 210 106 / 30%);
  border-radius: 20px;
  padding: 20px 30px;
  background: linear-gradient(rgb(255 255 255 / 0%) 0.02%, rgb(238 255 239) 99.99%), rgb(255 255 255);
}

.solution-green h4,
.solution-green li,
.solution-blue li,
.solution-blue h4,
.solution-peach li,
.solution-peach h4 {
  color: #333 !important;
}

.services-grid p {
  font-size: 17px;
}

.title-grid h1,
.title-grid p {
  width: 100%;
  text-align: left;
  justify-self: start;
}

.service-content img {
  width: 40%;
  margin: 0px 0px 20px 0px;
}

.impactSection .list li {
  margin-bottom: 10px;
  font-size: 17px;
}

.services-grid-5 {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px 20px;
}

.img_alignment {
  display: flex;
  justify-content: center;
}

.services-grid-5 .service-content {
  padding: 15px 15px;
}

.bg-box-bg {
  color: #2696f8;
  font-size: 17px;
  padding-right: 10px;
  font-weight: 600;
}

.solutionBanner h2 {
  font-size: 35px;
  padding-bottom: 16px;
}

.solutionBanner h1 {
  width: 100%;
  text-align: center;
  margin-bottom: 40px;
}

.solution-process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.solution-process-grid .card-content {
  gap: 0px;
  padding: 20px;
  flex-direction: column;
}

.solution-process-grid .content h3 {
  margin: 20px 0px;
  font-size: 22px;
  font-weight: 600;
  line-height: 28px;
}

.solutionBtn {
  margin: 75px 0px 30px 0px;
  text-align: center;
}

.pt-30 {
  padding-top: 130px !important;
}

.services-section {
  padding: 50px 0px 20px 0px;
  background: #fff;
}

.pictext {
  position: absolute;
  top: 70px;
  right: 20px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px 45px;
}

.services-grid h4 {
  color: #fff;
  font-size: 20px;
}

.services-grid li {
  color: #fff;
}

.impactSection {
  position: relative;
  margin: 70px 0px;
}

.solution-service-card {
  display: flex;
  align-items: flex-start;
  gap: 0px;
  flex-direction: column;
}

.solution-service-card p {
  margin: 0px 0px 10px 0px;
}

.service-icon {
  min-width: 90px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  color: var(--main-heading);
  transition: .35s;
}

.service-card:hover .service-icon {
  transform: translateY(-8px);
  color: #1569e8;
}

.service-content h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--main-heading);
  margin: 0px 0px 15px;
}

.title-grid-gap {
  padding: 80px 0px 0px 0px;
  margin-bottom: 35px !important;
}

.lineClr {
  color: #0084fb;
  padding: 0px 10px;
  font-weight: 800;
}

.digi-engineering img {
  width: 85%;
}

.pt-40 {
  padding-top: 30px !important;
}

.title-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 80px;
  margin: 30px auto 70px auto;
}

.title-grid h1 {
  font-size: 35px;
  font-weight: 700;
  color: var(--main-heading);
  margin: 0px auto;
}

.title-grid p {
  font-size: 20px;
  font-weight: 400;
  color: var(--para1);
  margin: 10px auto;
}

/*===============================
        Responsive
================================*/

@media(max-width:1200px) {
  .service-content {
    padding: 15px 15px;
  }

  .section-heading h2 {
    font-size: 48px;
  }

  .section-heading p {
    font-size: 44px;
  }

  .service-content h3 {
    font-size: 22px;
  }

  .service-content p {
    font-size: 18px;
  }

  .services-grid {

    gap: 50px 30px;

  }

}

@media(max-width:991px) {

  .services-grid {

    grid-template-columns: repeat(2, 1fr);

  }

  .section-heading h2 {
    font-size: 40px;
  }

  .section-heading p {
    font-size: 18px;
  }
}


/* ------------------------solutions page-------------------------- */
@media(max-width:991px) {
  .about-wrapper {
    flex-direction: column;
  }

  .about-right {
    border-left: none;
    padding-left: 0;
    width: 100%;
  }

  .heading h2 {
    font-size: 36px;
  }
}

@media(max-width:768px) {
  .heading {
    flex-direction: column;
    align-items: flex-start;
  }

  .heading h2 {
    font-size: 30px;
  }

  .about-left p {
    font-size: 16px;
    line-height: 30px;
  }

  .info-box {
    flex-direction: column;
  }

  .overview-card {
    padding: 25px;
  }

  .section-heading h2 {
    font-size: 28px;
    margin-bottom: 0px;
  }

  .bannerTitle {
    bottom: 0px;
  }

  .overview-item {
    flex-direction: column;
  }

  .item-icon {
    width: 60px;
    height: 60px;
    font-size: 28px;
  }

  .item-content p {
    font-size: 17px;
  }

  .process-section {

    padding: 50px 0;

  }

  .card-content {

    flex-direction: column;

    text-align: center;

    padding: 40px 30px;

    gap: 25px;

  }

  .divider {

    width: 100%;
    height: 1px;

  }

  .icon-box {

    width: 100px;
    height: 100px;

    font-size: 46px;

    min-width: 100px;

  }

  .content p {
    font-size: 15px;
  }

  .illustration {
    display: none;
  }
  .pdf-metrics div {
    background: none;
  }
}

@media(max-width:480px) {
  .contentSection p:nth-of-type(3) {
    margin-bottom: 20px;
}
  .card-number {
    width: 50px;
    height: 42px;
    font-size: 18px;
  }

  .icon-box {
    width: 85px;
    height: 85px;
    font-size: 38px;
  }

  .content h3 {
    font-size: 20px;
  }
}


/* -------------------ensemble--------------- */
.ensemblebtn {
  margin: 45px 0px 0px;
}

/* -------------------ensemble--------------- */

.program-list h6 {
  font-weight: 400;
  font-size: 18px !important;
  margin: 21px 0px;
}

.partner-program {
  margin: 70px 0px;
}

.bg-box-bg-green {
  color: #45b762;
  font-size: 17px;
  padding-right: 10px;
  font-weight: 600;
}

.programtitle p {
  font-size: 20px;
}

.programtitle h1 {
  font-weight: 500;
}

.programtitle img {
  border-radius: 20px;
}

.how-it-works {
  background-color: #000;
  padding: 85px 0px 100px 0px;
  margin: 100px 0px;
}

.how-it-works h1 {
  color: #fff;
  font-weight: 400;
  margin: 0px 0px 40px;
}

.workBox {
  border: 2px solid #fff;
  border-radius: 20px;
  padding: 25px 32px 5px;
}

.workBox .bi {
  color: #fff;
  font-size: 40px;
}

.workBox h3 {
  color: #fff;
  margin-top: 10px;
  font-size: 22px;
  font-weight: 400;
}

.workBox p {
  color: #fff;
  font-size: 18px;
  font-weight: 300;
}

.affiliateBtn {
  background-color: #fff;
  border: none;
  padding: 20px;
  font-weight: 400;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #052477;
  font-size: 18px;
  border-radius: 5px;
  outline: .5rem solid hsla(0, 0%, 100%, .2);
  width: 40%;
  margin-bottom: 30px;
}

.bluebox h2 {
  background: linear-gradient(90deg, #8fd3ff 0%, #4fa8ff 30%, #0d6efd 70%, #003d99 100%);
  -webkit-text-fill-color: transparent;
}

.greenbox h2 {
  background: linear-gradient(90deg, #8fffc8 0%, #4fff6a 30%, #057610 70%, #00991d 100%);
  -webkit-text-fill-color: transparent;

}

.orangebox h2 {
  background: linear-gradient(90deg, #f5b17c 0%, #ffb14f 30%, #830000 70%, #990100 100%);
  -webkit-text-fill-color: transparent;
}

.pinkbox h2 {
  background: linear-gradient(90deg, #d792f5 0%, #ad3cdf 30%, #e39bff 70%, #c18bf1 100%);
  -webkit-text-fill-color: transparent;
}

.commissionbox h2 {
  background-clip: text;
  color: transparent;
  font-size: 64px;
  font-weight: 700;
  margin: 5px 0px;
}

.commissionbox {
  padding: 25px 32px 5px;
  position: relative;
  border-radius: 20px;
  z-index: 1;
}

.commissionbox h3 {
  color: #fff;
  margin-top: 10px;
  margin-bottom: 0px;
}

.commissionbox p {
  color: #fff;
  margin-top: 0px;
  margin-bottom: 25px;
}

.commissionbox::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1.3px;
  border-radius: 20px;
  -webkit-mask: linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.commissionbox.bluebox::before {
  background: linear-gradient(135deg, #1a86cb, #4fa8ff, #0d6efd, #003d99);
}

.commissionbox.greenbox::before {
  background: linear-gradient(135deg, #0bc067, #4fffa3, #0dfdf1, #009901);
}

.commissionbox.orangebox::before {
  background: linear-gradient(135deg, #ffaf3c, #ffd04f, #fd9a0d, #ed9b17);
}

.commissionbox.pinkbox::before {
  background: linear-gradient(135deg, #dcbefff2, #c77df1, #cc70fb, #cb17ed);
}

.how-it-works p {
  color: #fff;
  font-size: 20px;
  font-weight: 300;
  margin: 0px 0px 40px 0px;
}

.how-it-works h6 {
  margin: 40px 0 0;
  color: #fff;
  font-size: 20px;
  font-weight: 300;
}

.nexus h5 {
  text-align: center;
  color: #fff;
  font-size: 18px;
  font-weight: 300;
  padding-bottom: 10px;
  margin-top: 0px;
}

.service-mobile p {
  color: #353535;
  list-style: none;
  font-size: 17px;
}

.feature-card ul {
  padding-left: 0px;
  margin-top: 0px;
}

.feature-card li {
  color: rgba(255, 255, 255, .85);
  font-size: 15px;
}

.asset-section {
  padding: 70px 0;
}

.asset-grid {
  margin: auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1.3fr;
  grid-template-rows: 220px 220px 180px;
  gap: 20px;
}

.ensemble-solution .icon i {
  font-size: 30px;
  color: #243d4a;
}

.ensemble-solution .card {
  display: flex;
  gap: 30px;
  align-items: center;
  padding: 10px 35px 35px;
  background: #fff;
  box-shadow: none;
  transition: .35s;
}

.ensemble-solution ul {
  padding-left: 0px;
}

.card.blue {
  background: #05538d;
  color: #fff;
  height: 425px;
}

.card.blue .icon {
  margin-top: 45px;
}

.card.cyan {
  background: #4d4d4d;
  color: #fff;
}

.cyan h3 {
  color: #fff;
}

.module-card i {
  font-size: 50px;
  color: #323232;
}

.cyan p {
  color: #fff;
}

.ensemble-solution h1 {
  text-align: center;
  margin-bottom: 45px;
  font-size: 35px;
}

.cyan .icon::after {
  border: 3px solid #ffffff;
  border-left-color: transparent;
  border-top-color: transparent;
}

.blue .icon::after {
  border: 3px solid #ffffff;
  border-left-color: transparent;
  border-top-color: transparent;
}

.blue li {
  color: #fff;
}

.icon i {
  font-size: 30px;
}

.hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgb(5 26 78 / 87%), rgb(5 12 15 / 78%));
}

.hero-content-ensemble h1 {
  color: #fff;
  font-size: 50px;
  line-height: 1.2;
  font-weight: 700;
  text-align: end;
}

.hero-content-ensemble {
  width: 610px;
  max-width: 90%;
  min-width: 0;
  position: absolute;
  bottom: 10px;
}

.asset-grid .card:nth-child(1) {
  grid-column: 1;
  grid-row: 1;
}

.asset-grid .card:nth-child(2) {
  grid-column: 2;
  grid-row: 1;
}

.asset-grid .card:nth-child(4) {
  grid-column: 1;
  grid-row: 2;
  align-items: flex-start;
}

.asset-grid .card:nth-child(5) {
  grid-column: 2;
  grid-row: 2;
}

.asset-grid .card:nth-child(6) {
  grid-column: 2;
  grid-row: 3;
}

.contactmenu-list {
  display: none;
}

/*------------- Responsive -------------*/
@media(max-width:1200px) {
  .container {
    grid-template-columns: 1fr;
  }
  .productPage { 
    gap: 0px !important;
}
}

@media(max-width:1100px) {
  .capabilities-box {
    padding: 20px
  }
  .asset-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }

  .hero {
    grid-column: 1/-1;
    grid-row: auto;
    height: 550px;
  }

  .asset-grid .card {
    grid-column: auto !important;
    grid-row: auto !important;

  }

  .hero h1 {
    font-size: 30px;
    line-height: 1.3;
  }

  .nav {
    gap: 10px;
    width: min(95%, 1480px);
  }

  .hero-copy {
    width: min(95%, 1480px);
  }

  .nav-links a {
    font-size: 15px;
  }

  .nav-links {
    gap: 25px;
  }

  .header-actions .btn {
    min-height: 50px;
    border-radius: 8px;
    padding: 10px 10px;
    font-size: 12px;
  }
}

@media(max-width:991px) {
  .nav-links {
    gap: 0px;
  }

  .contactmenu-list {
    display: block;
  }

  .contactmenu-show {
    display: none;
  }

  .features {
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
  }

  .feature::after {
    display: none;
  }

  .section-title h2 {
    font-size: 30px;
  }
}

@media(max-width:992px) {
  .modules-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .values-section {
    grid-template-columns: 1fr;
  }

  .value-card {
    min-height: auto;
  }
    .capabilities-box {
    padding: 0px 18px;
  }
}



.lp-hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-status {
  display: none;
  margin-top: 14px;
  padding: 12px 14px;
  border-radius: 6px;
  font-size: 14px;
  line-height: 1.45;
}

.form-status.is-success {
  background: #e8f5e9;
  border: 1px solid #a5d6a7;
  color: #1b5e20;
}

.form-status.is-error {
  background: #fdecea;
  border: 1px solid #f5b5ae;
  color: #a01b0b;
}

.enterprise-page {
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
  background: radial-gradient(circle at 88% 30%, rgba(28, 116, 255, 0.08), transparent 30%), linear-gradient(110deg, #ffffff 0%, #f8fbff 100%);
}

.hero-section::after {
  content: "";
  position: absolute;

  top: 0;
  right: 36%;

  width: 220px;
  height: 150px;

  background-image: radial-gradient(#d8e5f8 1px,
      transparent 1px);

  background-size: 10px 10px;

  opacity: 0.7;

  pointer-events: none;
}


/* ============================================
   HERO CONTENT
============================================ */

.hero-content-solution {
  position: relative;
  z-index: 2;
  margin: auto;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 5px;
}


/* ============================================
   HERO LEFT
============================================ */

.hero-left {
  padding-top: 4px;
}


/* ============================================
   EYEBROW
============================================ */

.eyebrow {
  display: inline-flex;

  align-items: center;

  padding: 6px 12px;

  border-radius: 20px;

  background: #eaf3ff;

  color: #1664d8;

  font-size: 10px;
  font-weight: 600;

  margin-bottom: 14px;
}


/* ============================================
   HERO TITLE
============================================ */

.hero-left h1 {
  max-width: 600px;
  font-size: 45px;
  line-height: 1.2;
  letter-spacing: -1.5px;
  font-weight: 800;
  color: #0a172c;
  margin-bottom: 14px;
  margin-top: 5px;
}

.hero-left h1 span {
  display: block;

  color: #1262d8;
}


/* ============================================
   HERO DESCRIPTION
============================================ */

.hero-description {
  max-width: 560px;

  color: #52627a;

  font-size: 18px;

  line-height: 1.7;

  margin-bottom: 28px;
}


/* ============================================
   HERO FEATURES
============================================ */

.hero-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);

  gap: 10px;
}


/* ============================================
   HERO FEATURE
============================================ */

.feature-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  background: #eaf2ff;

  color: #155bc2;

  font-size: 15px;
}

.hero-feature h4 {
  font-size: 16px;
  color: #15243c;
  font-weight: 700;
  margin-bottom: 5px;
}

.hero-feature p {
  font-size: 15px;
  line-height: 1.5;
  color: #637087;
}


/* ============================================
   HERO IMAGE
============================================ */

.hero-right {
  position: relative;
}

.hero-image-wrapper {
  position: relative;

  width: 100%;

  max-width: 530px;

  margin-left: auto;

  overflow: hidden;

  border-radius: 18px;

  box-shadow:
    0 20px 50px rgba(25, 64, 120, 0.12);
}

.hero-image-wrapper img {
  width: 100%;

  height: 300px;

  object-fit: cover;
}

.image-overlay {
  position: absolute;

  inset: 0;

  background:
    linear-gradient(135deg,
      rgba(11, 74, 150, 0.08),
      transparent 55%);

  pointer-events: none;
}

.section-label {
  display: block;
  color: #1263d9;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.4px;
  margin: 20px 0px;
}

.heading-line {
  width: 54px;
  height: 2px;

  margin: 8px auto 0;

  background: #1567e4;
}


/* ============================================
   ADVANTAGES GRID
============================================ */

.advantages-grid {
  max-width: 1290px;

  margin: 0 auto;

  display: grid;

  grid-template-columns: repeat(4, 1fr);

  gap: 16px;
}


/* ============================================
   ADVANTAGE CARD
============================================ */

.advantage-card {
  position: relative;

  min-height: 164px;

  padding: 12px 13px 14px;

  border: 1px solid #e5eaf2;

  border-radius: 11px;

  background: #ffffff;

  box-shadow:
    0 3px 12px rgba(23, 48, 88, 0.035);

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}


/* bottom colored border */

.advantage-card::after {
  content: "";

  position: absolute;

  left: 0;
  right: 0;

  bottom: -1px;

  height: 2px;

  border-radius: 0 0 11px 11px;
}

.card-blue::after {
  background: #2867ff;
}

.card-cyan::after {
  background: #20aeb8;
}

.card-orange::after {
  background: #ff9a3c;
}

.card-purple::after {
  background: #8e70db;
}


.advantage-card:hover {
  transform: translateY(-3px);

  box-shadow:
    0 12px 28px rgba(25, 60, 110, 0.09);
}


/* ============================================
   ADVANTAGE ICON
============================================ */

.advantage-icon {
  width: 36px;
  height: 36px;

  margin-bottom: 10px;

  border-radius: 50%;

  background: #edf3fc;

  color: #1752ae;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 14px;
}


/* ============================================
   CARD TITLE
============================================ */

.advantage-card h3 {
  color: #18253d;

  font-size: 11px;

  line-height: 1.4;

  font-weight: 700;

  margin-bottom: 8px;
}


/* ============================================
   CARD LIST
============================================ */

.advantage-card ul {
  list-style: none;
}

.advantage-card li {
  position: relative;

  display: flex;

  align-items: flex-start;

  gap: 7px;

  color: #56647a;

  font-size: 8.5px;

  line-height: 1.5;

  margin-bottom: 5px;
}

.advantage-card li i {
  flex-shrink: 0;

  color: #1769ed;

  font-size: 8px;

  margin-top: 2px;
}


/* ============================================
   INTEGRATION SECTION
============================================ */

.integration-section {
  max-width: 1290px;

  min-height: 51px;

  margin: 0 auto;

  padding: 8px 16px;

  display: flex;

  align-items: center;

  gap: 14px;

  border-radius: 9px;

  background:
    linear-gradient(90deg,
      #f4f8ff,
      #f8faff);
}


/* ============================================
   INTEGRATION ICON
============================================ */

.integration-icon {
  flex-shrink: 0;

  width: 34px;
  height: 34px;

  border-radius: 50%;

  background: #e5efff;

  color: #1855bd;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 13px;
}


/* ============================================
   INTEGRATION CONTENT
============================================ */

.integration-content {
  display: flex;

  align-items: center;

  gap: 45px;

  flex: 1;
}

.integration-content h3 {
  white-space: nowrap;

  font-size: 11px;

  color: #16243d;

  font-weight: 700;
}

.integration-content p {
  max-width: 600px;

  font-size: 8.5px;

  line-height: 1.5;

  color: #617087;
}


/* ============================================
   DOCUMENTATION BUTTON
============================================ */

.docs-button {
  flex-shrink: 0;

  display: inline-flex;

  align-items: center;

  gap: 8px;

  padding: 9px 16px;

  border-radius: 5px;

  background: #075fe0;

  color: #ffffff;

  font-size: 9px;

  font-weight: 600;

  box-shadow:
    0 5px 12px rgba(7, 95, 224, 0.2);

  transition:
    background 0.2s ease,
    transform 0.2s ease;
}

.docs-button:hover {
  background: #004fc4;

  transform: translateY(-1px);
}

.docs-button i {
  font-size: 8px;
}


/* ============================================
   TABLET
============================================ */

@media (max-width: 1000px) {

  .hero-section {
    padding: 35px 30px 30px;
  }

  .hero-content {
    grid-template-columns: 1fr;

    gap: 30px;
  }

  .hero-left {
    text-align: center;
  }

  .hero-left h1,
  .hero-description {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-features {
    margin: 0 auto;
  }

  .hero-right {
    display: flex;
    justify-content: center;
  }

  .hero-image-wrapper {
    margin: 0;
  }

  .advantages-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .integration-section {
    margin-left: 30px;
    margin-right: 30px;
  }

}


/* ============================================
   MOBILE
============================================ */

@media (max-width: 600px) {

  .hero-section {
    padding: 28px 18px 25px;
  }

  .hero-left h1 {
    font-size: 34px;

    letter-spacing: -1px;
  }

  .hero-features {
    grid-template-columns: repeat(2, 1fr);

    gap: 18px 10px;
  }

  .hero-image-wrapper img {
    height: 220px;
  }

  .section-heading h2 {
    font-size: 20px;
  }

  .advantages-grid {
    grid-template-columns: 1fr;

    gap: 14px;
  }

  .advantage-card {
    min-height: auto;

    padding: 16px;
  }


  .integration-section {
    margin: 0 18px 20px;

    padding: 15px;

    flex-wrap: wrap;

    gap: 12px;
  }

  .integration-content {
    display: block;
  }

  .integration-content h3 {
    margin-bottom: 4px;
  }

  .integration-content p {
    font-size: 9px;
  }

  .docs-button {
    margin-left: 48px;
  }

}


/* ============================================
   SMALL MOBILE
============================================ */

@media (max-width: 400px) {

  .hero-left h1 {
    font-size: 30px;
  }

  .hero-features {
    grid-template-columns: 1fr 1fr;
  }

  .hero-image-wrapper img {
    height: 190px;
  }

}

.hero-section {
  position: relative;
  margin: 80px 0px 50px 0px;
  /* background:
    radial-gradient(circle at 88% 30%,
      rgba(28, 116, 255, 0.08),
      transparent 30%),
    linear-gradient(110deg,
      #ffffff 0%,
      #f8fbff 100%); */
}

.benefits-bar.kyc {
  grid-template-columns: repeat(1, 1fr);
}

.kyc .benefit {
  gap: 50px
}

.kyc .icontext {
  display: flex;
  gap: 25px;
  align-items: center;
}

.kyc h4 {
  margin: 0px;
}

.hero-badge {
  display: inline-flex;

  align-items: center;

  gap: 6px;

  padding: 5px 10px;

  border-radius: 5px;

  background: #eaf3ff;

  color: #0765d8;

  font-size: 10px;

  font-weight: 600;

  margin-bottom: 12px;
}

.hero-badge i {
  font-size: 10px;
}

.hero-right img {
  width: 100%;
  max-width: 560px;
  object-fit: cover;
  height: 300px;
  border-radius: 14px;
  box-shadow: 0 12px 35px rgba(16, 72, 135, 0.10);
}

.workflow-section {
  position: relative;
}

.section-heading>span {
  display: block;

  color: #0965dc;

  font-size: 8px;

  font-weight: 700;

  letter-spacing: 1px;

  margin-bottom: 3px;
}

.heading-decoration {
  display: flex;

  align-items: center;

  justify-content: center;

  gap: 4px;

  margin-top: 5px;
}

.heading-decoration span {
  width: 22px;
  height: 2px;

  background: #0870ec;

  border-radius: 2px;
}

.heading-decoration i {
  width: 5px;
  height: 5px;

  background: #0870ec;

  border-radius: 50%;
}


/* ==========================================
   WORKFLOW GRID
========================================== */

.workflow-grid {
  max-width: 1320px;

  margin: 0 auto;

  display: grid;

  grid-template-columns:
    repeat(4, minmax(0, 1fr));

  column-gap: 24px;

  row-gap: 14px;
}


/* ==========================================
   WORKFLOW ITEM
========================================== */

.workflow-item {
  position: relative;

  min-width: 0;
}


/* ==========================================
   WORKFLOW CARD
========================================== */

.workflow-card {
  position: relative;

  min-height: 117px;

  padding: 11px 13px 10px;

  border: 1px solid #dfebf9;

  border-radius: 14px;

  background:
    linear-gradient(145deg,
      #ffffff,
      #fbfdff);

  box-shadow:
    0 5px 12px rgba(19, 79, 143, 0.055);

  transition: all 0.25s ease;
}

.workflow-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(19, 79, 143, 0.10);
  border-color: #c8ddf7;
}

.workflow-card .card-top {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 12px;
}

.workflow-icon {
  width: 43px;
  height: 43px;
  flex: 0 0 43px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: #edf5ff;
  color: #0669e5;
  font-size: 21px;
}

.card-title {
  min-width: 0;
}

.card-title span {
  display: none;
  color: #0565d9;
  font-size: 10px;
  font-weight: 700;
  margin-bottom: 3px;
}

.card-title h3 {
  color: #0c1c37;
  font-size: 15px;
  line-height: 1.35;
  font-weight: 700;
}

.card-divider {
  width: 20px;
  height: 1px;
  margin: 9px 0 7px;
  background: #dbe6f3;
}

.workflow-card>p {
  color: #52627a;

  font-size: 15px;

  line-height: 1.7;
}

.workflow-arrow {
  position: absolute;
  display: none !important;
  top: 50%;
  right: -32px;
  transform: translateY(-50%);
  z-index: 5;
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #0867dc;
  color: #ffffff;
  font-size: 9px;
  box-shadow:
    0 3px 8px rgba(8, 103, 220, 0.22);
}


.workflow-grid .workflow-item:nth-child(n + 5)::before {
  content: "";
  position: absolute;
  top: -8px;
  left: 0;
  width: 100%;
  border-top: 1px dashed #dce8f6;
  opacity: 0.7;
}

.benefits-bar {
  margin: 30px auto 0;
  padding: 8px 14px;
  height: 160px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  border-radius: 13px;
  background: radial-gradient(circle at center, #0d4dff 0%, #062a87 35%, #031a5e 100%);

  /* background:
    linear-gradient(100deg,
      #f1f6fd,
      #f5f9ff); */
}

.benefit {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 0 13px;
  border-right: 1px solid #dce6f254;
}

.benefit:last-child {
  border-right: none;
}

.benefit-icon {
  flex: 0 0 40px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: #ffffff5c;
  color: #0869df;
  font-size: 19px;
}

.benefit-icon .bi {
  color: #fff !important;
}

.benefit h4 {
  color: #fff;
  font-size: 17px;
  line-height: 1.3;
  font-weight: 700;
  margin-bottom: 3px;
}

.benefit p {
  color: #fff;
  font-size: 15px;
  line-height: 1.45;
}


@media (max-width: 1000px) {

  .hero-section {
    padding: 25px 30px;
    margin: 20px 0px;
  }

  .hero-left h1 {
    font-size: 35px;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .hero-content-solution {
    gap: 25px;
  }

  .hero-left {
    text-align: left;
  }

  .hero-left>p {
    margin: auto;
  }

  .hero-right {
    justify-content: center;
  }

  .workflow-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .workflow-arrow {
    display: none;
  }

  .workflow-grid .workflow-item:nth-child(n + 5)::before {
    display: none;
  }

  .benefits-bar {
    grid-template-columns:
      repeat(2, 1fr);
height: auto !important;
    gap: 12px;
  }

  .benefit:nth-child(2) {
    border-right: none;
  }

  .benefit:nth-child(-n + 2) {
    padding-bottom: 10px;
  }

}

@media (max-width: 600px) {
  .hero-content-solution {
    grid-template-columns: 100%;
  }

  .hero-section {
    padding: 22px 18px 20px;
    margin-bottom: 0px;
  }

  .hero-left h1 {
    font-size: 34px;
  }

  .hero-right img {
    height: 200px;
  }

  .workflow-section {
    padding: 25px 18px;
  }

  .section-heading h2 {
    font-size: 19px;
  }

  .workflow-grid {
    grid-template-columns: 1fr !important;
    gap: 12px;
  }

  .workflow-card {
    min-height: auto;
  }

  .benefits-bar {
    grid-template-columns: 1fr;
    padding: 12px;
  }

  .benefit,
  .benefit:nth-child(2) {
    padding: 9px 4px;
    border-right: none;
    border-bottom: 1px solid #dce6f2;
  }

  .benefit:last-child {
    border-bottom: none;
  }

}

@media (max-width: 980px) {
  .section-heading {
    display: block;
  }

  .story-grid,
  .enterprise-card-grid,
  .suite-layout,
  .solution-feature-grid,
  .service-flow,
  .enterprise-cta {
    grid-template-columns: 1fr;
  }

  .enterprise-cta {
    display: grid;
  }

  .trust-panel {
    grid-template-columns: 1fr 1fr;
  }

  .home-section-head,
  .home-pillar-grid,
  .service-grid {
    grid-template-columns: 1fr;
  }

  .home-section {
    padding: 70px 0;
  }

  .menu-toggle {
    display: inline-grid;
    place-items: center;
  }

  .right_img {
    display: none;

  }

  .singleproductPage .page-hero {
    padding: 20px 0 20px;
  }

  .overview-card {
    grid-template-columns: repeat(1, 1fr) !important;
  }

  .overview-item {
    gap: 0px;
  }

  .nav-links {
    position: absolute;
    left: 20px;
    right: 20px;
    top: 82px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    padding: 10px;
    box-shadow: var(--shadow);
  }

  .nav-links.open {
    display: flex;
    gap: 0px;
  }

  .site-header.scrolled .nav-links a {
    color: rgb(0 0 0 / 94%) !important;
  }

  .nav-links a {
    padding: 12px;
    color: rgb(0 0 0 / 94%) !important;
  }

  .nav-item {
    width: 100%;
  }

  .nav-parent {
    width: 100%;
  }

  .nav-menu {
    position: static;
    min-width: 0;
    width: 100%;
    margin-top: 4px;
    border-color: rgba(32, 200, 255, 0.14);
    background: rgba(3, 14, 36, 0.08);
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .nav-menu::before {
    display: none;
  }

  .header-actions .btn {
    display: none;
  }

  .hero-carousel {
    min-height: 680px;
  }

  .hero-copy {
    padding-left: 34px;
    padding-right: 34px;
  }

  .hero-content {
    width: 100%;
    min-width: 0;
    max-width: 100%;
  }

  .hero-copy .trust-badge,
  .hero-badge-row,
  .hero-copy h1,
  .hero-copy p,
  .hero-actions,
  .hero-stats {
    max-width: 100%;
    width: auto;
  }

  .hero-stats {
    grid-template-columns: repeat(2, minmax(120px, 1fr));
    gap: 14px;
    margin-top: 38px;
  }

  .carousel-arrow {
    display: none;
  }

  .about-section {
    padding: 40px 0px;
  }

  .solution-card-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .metric-strip,
  .grid-3,
  .grid-2,
  .product-grid,
  .section-head,
  .split,
  .split.reverse,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .metric-strip {
    transform: none;
    margin-top: 24px;
  }

  .section {
    padding: 64px 0;
  }

  .cta {
    padding: 40px 24px;
  }

  .aboutList {
    display: grid;
  }

  .isoCertifications img {
    height: auto;
  }

  .left {
    height: auto;
    padding: 0px 20px 0px 0px;
  }

  .ourSolutions .values-section {

    grid-template-columns: repeat(3, 1fr);
  }
}

@media(max-width:768px) {
   .headerbrand .brand strong {
    color: #000;
  }

  .page-hero h1 {
    font-size: 2.5rem;
  }

  .asset-grid {
    grid-template-columns: 1fr;
  }

  .how-it-works .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .how-it-works {
    margin: 20px 0px;
  }

  .terms-page {
    padding: 20px 10px;
  }

  .hero {
    height: 450px;
  }

  .security-list img {
    display: none;
  }

  .imgSection img {
    display: none;
  }
.hero-content-solution .imgSection img {
display: block !important;
}
  .productPage {
    grid-template-columns: 100%;
  }

  .asset-section {
    padding: 0px 0;
  }

  .card {
    flex-direction: column;
    text-align: center;

  }

  .content ul {
    list-style: none;
    padding: 0;
  }

  .hero h1 {
    font-size: 36px;
    color: #fff;
  }

  .orangebanner,
  .bluetext,
  .greentext {
    color: #fff !important;
  }

  .hero-copy .trust-badge {
    border-color: rgb(255 255 255);
    color: #ffffff;
  }

  .hero-copy p {
    color: #fff;
  }

  .hero-stats small {
    color: #fff;
  }

  .btn-hero-outline.orangebanner {
    border-color: #fff !important;
  }

  .btn-hero-outline.bluetext {
    border-color: #fff !important;
  }

  .btn-hero-outline.greenbanner {
    border-color: #fff !important;
  }

  .hero-stats div {
    border: 1px solid rgb(255 255 255 / 63%);
  }

  .greenbanner {
    color: #ffffff !important;
  }

  .brand strong {
    color: #ffffff;
  }

  .brand span {
    color: #ffffff;
  }

  .content h3 {
    font-size: 24px;
    margin: 0px;
  }

  .service-card {
    flex-direction: column;
    align-items: flex-start;

  }

  .service-icon {
    font-size: 50px;
  }

  .content p,
  .content li {
    font-size: 17px;
  }

  .section-title h2 {
    font-size: 34px;
  }

  .card-header h3 {
    font-size: 22px;
  }

  ul li {
    font-size: 16px;
  }

  .card-body h3 {
    font-size: 28px;
  }

  .nexus-feature-grid {
    display: block;
  }

  .card.blue {
    height: auto;
  }

  .list {
    margin: 10px 0 0;
  }

  .capabilities-grid {
    display: block;
  }

  .capabilities-box {
    padding: 10px 30px;
    margin: 20px 0px;
  }

  .module-card {
    margin-bottom: 20px;
  }

  .modules-grid {
    grid-template-columns: 1fr;
    display: block;
  }

  .modules-section .icon-box {
    width: 60px;
    height: 100px;
  }

  .why-nexus .features {
    display: block;
  }

  .why-nexus .feature {
    margin: 15px 0px;
    box-shadow: none;
  }

  .icon i {
    font-size: 40px;
  }

  .why-nexus {
    padding: 40px 20px;
  }

  .why-nexus .section-title h2 {
    font-size: 30px;
  }

  .feature-banner {
    max-width: 700px;
    margin: 40px auto;
    padding: 40px;
    box-shadow: none;
  }

  .converseFeatures-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .chatimg {
    position: relative;
  }

  .omnichanelheading {
    padding: 50px 0px 30px;
  }

  .omnichanelheading h1 {
    font-size: 30px;
  }

  .challenge-visual {
    display: none;
  }

  .business-challenges-gap {
    margin: 20px auto;
  }

  .why-converse-banner .feature-grid {
    margin: 0px 0px;
  }

  .why-converse-banner {
    margin: 0px auto 30px;
  }

  .feature-card p {
    max-width: 100%;
  }

  .omnichanel-grid {
    gap: 10px;
  }

  .title-grid {
    display: block;
    padding-top: 20px;
    margin:0px auto 30px auto !important;
  }

  .service-content h3 {
    font-size: 20px;
    margin-bottom: 8px;
  }

  .service-card {
    flex-direction: column;
  }

  .service-image {
    width: 100%;
    height: 300px;
  }

  .service-content {
    padding: 20px;
  }

  .service-content h2 {
    font-size: 32px;
  }

  .service-content p {
    font-size: 18px;
    max-width: 100%;
  }

  .learn-btn {
    font-size: 20px;
    margin-top: 35px;
  }

  .title-grid h1 {
    font-size: 30px;
  }

  .services-grid-5 {
    grid-template-columns: repeat(3, 1fr);
  }

  .services-wrapper {
    display: block;
    gap: 0px;
  }

  .hero-gradient {
    background: linear-gradient(180deg, rgb(7 14 32 / 55%) 0%, rgb(7 14 32 / 33%) 48%, rgba(7, 14, 32, 0.2) 100%);
  }
  .featBox {
    margin: 20px 0px;
}
  .services {
    grid-template-columns: 100% !important;
  }

  .card__titles h3 {
    text-align: left;
  }

  .card__titles .tagline {
    text-align: left;
  }

  .card__content {
    padding: 20px 0px 0px;
  }

  .card__content p {
    text-align: left;
  }

  .services img {
    display: none;
  }

  .techBox {
    padding: 20px;
    display: block;
  }

  .techBox h2 {
    font-size: 25px;
  }

  .techslider .hero {
    min-height: 230px;
  }

  .timeline-section {
    overflow: hidden;
  }

  .stats-section {
    display: flex;
    flex-direction: column;
    gap: 25px;
  }

  .stats-section .left,
  .stats-section .right {
    width: 100%;
  }

  .timeline-carousel {
    position: relative;
    width: 100%;
    overflow: hidden;
  }

  .timeline-carousel-content {
    display: flex;
    flex-direction: row;
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    gap: 15px;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 5px 5px 15px;
    box-sizing: border-box;
  }

  .timeline-carousel-content::-webkit-scrollbar {
    display: none;
  }

  .timeline-slide {
    position: relative !important;
    flex: 0 0 100%;
    box-sizing: border-box;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    scroll-snap-align: center;
    height: auto;
  }

  .timeline-prev,
  .timeline-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
  }

  .timeline-prev {
    left: 8px;
  }

  .timeline-next {
    right: 8px;
  }

  .stats-section {
    display: block;
  }

  .timeline {
    grid-template-columns: 1fr;
  }

  .ourSolutions {
    padding: 10px 0px;
  }

  .value-card {
    padding: 20px;
  }

  .value-card h3 {
    font-size: 20px;
  }

  .center-line {
    display: none;
  }

  .timeline-item {
    margin-bottom: 50px;
  }

  .left,
  .right {
    justify-content: flex-start;
    width: 100%;
  }

  .left .content::after,
  .right .content::before {
    display: none;
  }

}
@media (max-width: 620px) {
  .sidebar ul {
    padding-left: 10px;
  }

  .hero-content {
    padding-top: 90px;
  }

  .omnichanel-grid {
    display: block;
  }

  .feature-banner {
    padding: 0px 0px;
    margin: 30px auto;
  }

  .tab-item span {
    font-size: 18px;
  }

  .tab-item {
    padding: 20px;
  }

  .feature-card p {
    max-width: 100%;
  }

  .banner img {
    height: 200px;
  }

  .bannerTitle h1 {
    font-size: 30px;
    margin: 0px;
  }

  .container {
    width: min(100% - 28px, var(--max));
  }

  .brand {
    min-width: 0;
  }

  .brand img {
    width: 48px;
    height: 48px;
  }

  .brand strong {
    font-size: 0.98rem;
  }

  .page-hero {
    padding: 100px 0 20px;
  }

  .productPage {
    gap: 0px;
  }

  .hero-carousel {
    height: 790px;
    min-height: 790px;
  }

  .hero-slide img {
    padding: 0px;
    object-position: 64% center;
  }

  .hero-copy {
    justify-content: flex-start;
    padding: 10px 0px;
    ;
  }

  .hero-copy .trust-badge,
  .hero-badge-row,
  .hero-copy h1,
  .hero-copy p,
  .hero-actions,
  .hero-stats {
    max-width: 100%;
    width: 100%;
  }

  .hero-copy h1 {
    font-size: 31px;
    line-height: 1.3;
  }

  .hero-copy p {
    font-size: 1rem;
  }

  .hero-badge-row {
    gap: 8px;
  }

  .badge-icon {
    width: 36px;
    height: 36px;
    flex: 0 0 36px;
  }

  .hero-copy .trust-badge {
    min-height: 30px;
    font-size: 0.68rem;
    padding: 7px 10px;
  }

  .hero-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    display: block;
    margin: 10px 0px;
  }

  .hero-stats div {
    grid-template-columns: 34px minmax(0, 1fr);
    min-height: 64px;
    padding: 9px 10px;
    margin: 5px 0px;
  }

  .stat-icon {
    width: 34px;
    height: 34px;
    margin-bottom: 0;
  }

  .hero-stats strong {
    font-size: 0.82rem;
  }

  .hero-stats small {
    font-size: 0.68rem;
  }

  .carousel-dots {
    bottom: 24px;
  }

  .carousel-dots button {
    width: 30px;
  }

  .carousel-dots button.active {
    width: 48px;
  }

  .carousel-pause {
    left: 18px;
    bottom: 24px;
  }

  .orbit-globe,
  .wallet-icon,
  .network-line {
    display: none;
  }

  .solution-card-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .metric {
    min-height: 96px;
    padding: 20px;
  }

  .card,
  .feature,
  .product-card,
  .contact-card {
    padding: 22px;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .enterprise-story,
  .enterprise-section,
  .product-suite,
  .services-suite,
  .enterprise-cta-section {
    padding: 58px 0;
  }

  .story-grid {
    grid-template-columns: 1fr;
  }

  .trust-panel {
    grid-template-columns: 1fr;
  }

  .enterprise-cta {
    padding: 30px 22px;
  }

  .home-section {
    padding: 56px 0;
  }

  .home-pillar,
  .service-tile {
    padding: 22px;
  }
}


@media(max-width:576px) {
  .hero-copy p {
    font-size: 15px;
    font-weight: 400;
  }

  .hero-copy h1 {
    font-size: 25px;
    line-height: 1.3;
  }

  .timeline {
    margin: 0px 0;
  }

  .service-mobile {
    padding: 20px 20px;
  }

  .contact-card h3 {
    font-size: 28px;
  }

  .service-content {
    padding: 0px 0px;
  }

  .why-nexus {
    padding: 20px 20px;
  }

  .technology-card {
    padding: 5px 0px;
  }

  .services-grid {
    display: block;
    margin: 10px 0px;
  }

  .solution-green,
  .solution-blue,
  .solution-peach {
    margin: 10px 0px;
    padding: 20px;
  }

  .grid-4,
  .grid-5,
  .services-grid-5 {
    display: block;
  }

  .why-nexus .section-title {
    margin-top: 40px;
  }

  .technology-box {
    margin: 15px 0px;
  }

  .converseFeatures-grid {
    gap: 15px;
  }

  .nexus-security {
    padding: 20px;
  }

  .feature-card p {
    font-size: 17px;
    line-height: 2.2;
  }

  .security-list {
    display: block;
  }

  .features {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .section-title {
    gap: 10px;
  }

  .line-dot::before {
    width: 45px;
  }

  .section-title h2 {
    font-size: 24px;
    text-align: center;
  }

  .feature h3 {
    font-size: 21px;
  }

  .about-wrapper {
    gap: 0px;
  }

  .about-section {
    padding: 40px 0;
  }

  .ourVision {
    display: block;
    padding: 0px;
  }

  .feature p {
    font-size: 16px;
  }
}
@media (max-width: 560px) {
  .service-card img {
    display: none;
  }

  .ourSolutions .values-section {
    grid-template-columns: repeat(1, 1fr) !important;
  }

  .team h2 {
    font-size: 35px;
  }

  .isoCertifications {
    gap: 30px;
  }

  .isoCertifications img {
    height: auto;
  }

  .aboutList {
    padding-left: 0px;
  }

  .left h1 {
    font-size: 45px;
    line-height: 1.4;
  }

  .ourVision .service-content {
    padding: 10px 16px !important;
  }

  .ourVision .service-card {
    margin: 20px 0px !important;
  }


}

@media(max-width:480px) {
  
  .section-heading h2 {
    font-size:25px;
  }

  .section-heading p {
    font-size: 15px;
  }

  .service-content h3 {
    font-size: 26px;
  }

  .service-content p {
    font-size: 17px;
  }

  .pdf-story-copy h2 {
    font-size: 30px;
  }

  .footertopgrid h1 {
    font-size: 25px;
        line-height: 1.4;
  }

  .cta-strip-inner h3 {
    line-height: 1.3;
    font-size: 27px;
  }

  .cta-strip-inner p {
    margin-bottom: 20px;
  }

  .footertopgrid {
    grid-template-columns: 100%;
  }

  .footertopgrid img {
    display: none;
  }
}
@media(max-width:450px) {
  .page-hero h1 {
    font-size: 30px;
  }
  .benefit {
    flex-direction: column;
    align-items: start;
    gap: 0px;
  }
  .kyc .benefit {
    gap: 0px;
}
.solution-digi-engineering {
    padding: 5px 0;
    margin-top: 0px;
}
  .kyc .icontext {
    flex-direction: column;
    align-items: start;
}
    .workflow-section {
        padding: 25px 0px;
    }
  .techslider .hero {
    min-height: 130px;
  }

  .title-grid {
    margin: 20px 0px 20px 0px;
  }

  .pt-30 {
    padding-top: 100px !important;
  }

  .featBox {
    margin: 15px 0px;
  }

  .converseFeatures-grid {
    display: block;
  }

  .hero-content {
    max-width: 100% !important;
  }

  .security-list {
    display: block;
  }
}
@media (max-width: 400px) {
  .contactBox a, .contactBox p {
    font-size: 23px;
  }
.capabilities-box {
        padding: 10px 10px;
    }
  .hero-left h1 {
    font-size: 30px;
  }

  .workflow-icon {
    width: 40px;
    height: 40px;
    flex-basis: 40px;
    font-size: 19px;
  }

}
@media(max-width:350px) {
  .hero-copy {
    padding: 10px 5px;
  }

  .hero-copy h1 {
    font-size: 25px;
  }
}