@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap");
@import url("https://cdn.jsdelivr.net/npm/@phosphor-icons/web@2.1.2/src/regular/style.css");
@import url("https://site-assets.fontawesome.com/releases/v6.1.1/css/all.css");
@font-face {
  font-family: "helvetica";
  src: url("../font/helvetica-200.ttf");
  font-weight: 200;
}
@font-face {
  font-family: "helvetica";
  src: url("../font/helvetica-400.ttf");
  font-weight: 400;
}
@font-face {
  font-family: "helvetica";
  src: url("../font/helvetica-600.ttf");
  font-weight: 600;
}
h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
span,
b,
small,
strong,
body,
button,
input,
optgroup,
select,
textarea {
  font-family: "Open Sans" !important;
}

/* Safari SVG Rendering Fixes */
svg,
img[src$=".svg"] {
  /* Force high-quality rendering */
  shape-rendering: geometricPrecision;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  /* Enable GPU acceleration */
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
  /* Prevent subpixel rendering issues */
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  /* Force anti-aliasing */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  /* Ensure crisp rendering */
  transform: translate3d(0, 0, 0);
  /* Prevent blurry scaling */
  will-change: auto;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  overflow-x: hidden !important;
}

a,
i,
.btn,
div {
  text-decoration: none !important;
  transition: all 0.3s ease-in-out !important;
}

textarea {
  outline: 2px solid transparent !important;
  box-shadow: none !important;
}

input,
.navbar-toggler,
button,
input {
  outline: 2px solid transparent !important;
  box-shadow: none !important;
}

body {
  scroll-behavior: smooth;
}

html {
  --scrollbarBG: #cfd8dc;
  --thumbBG: #90a4ae;
}

::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

::-webkit-scrollbar-track {
  background: white;
}

::-webkit-scrollbar-thumb {
  background: #0097df;
}

.animated {
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
}

@keyframes up-down {
  0% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(-10px);
  }
}
.lg-container {
  width: 100%;
  max-width: 1245px;
  padding-left: 15px;
  padding-right: 15px;
  margin: auto;
}

.md-container {
  width: 100%;
  max-width: 1120px;
  padding-left: 15px;
  padding-right: 15px;
  margin: auto;
}

.btn-outline {
  display: inline-flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 14px 28px;
  gap: 10px;
  border: 1.5px solid #0097df;
  border-radius: 50px;
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: normal;
  color: #212121;
  background: transparent;
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn-outline:hover {
  background: #0097df;
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 151, 223, 0.2);
}

.btn-primary {
  display: inline-flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 14px 28px;
  gap: 10px;
  border: none;
  transition: all 0.3s ease;
  background: #0097df;
  border-radius: 50px;
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: normal;
  color: #ffffff;
  cursor: pointer;
}
.btn-primary span {
  color: #ffffff;
}
.btn-primary i {
  font-size: 20px;
  transition: transform 0.3s ease;
}
.btn-primary img {
  height: 20px;
  width: 20px;
  transition: transform 0.3s ease;
  /* Safari SVG fix for icons in buttons */
  flex-shrink: 0;
  image-rendering: -webkit-optimize-contrast;
  transform: translateZ(0);
  backface-visibility: hidden;
}

.btn-primary:hover {
  background: #0077b3;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 151, 223, 0.3);
}
.btn-primary:hover i, .btn-primary:hover img {
  transform: translateY(-2px);
}

.btn-light {
  display: inline-flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 14px 28px;
  gap: 10px;
  border: none;
  transition: all 0.3s ease;
  background: #ffffff;
  border-radius: 50px;
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: normal;
  color: #1e1e1e;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.btn-light span {
  color: #1e1e1e;
}
.btn-light i {
  font-size: 20px;
  color: #0097df;
  transition: all 0.3s ease;
}
.btn-light img {
  height: 20px;
  width: 20px;
  transition: all 0.3s ease;
  /* Safari SVG fix for icons in buttons */
  flex-shrink: 0;
  image-rendering: -webkit-optimize-contrast;
  transform: translateZ(0);
  backface-visibility: hidden;
}

.btn-light:hover {
  background: #0097df;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0, 151, 223, 0.3);
}
.btn-light:hover span {
  color: white;
}
.btn-light:hover i {
  color: white;
  transform: translateY(-2px);
}
.btn-light:hover img {
  filter: brightness(0) invert(1);
  transform: translateY(-2px);
}

.btn-dashed {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  background: rgba(0, 151, 223, 0.05);
  border: 1px dashed #0097df;
  border-radius: 8px;
  padding: 8px 30px;
  font-family: "Helvetica", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 156%;
  text-align: center;
  color: #0097df;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.btn-dashed:hover,
.btn-dashed:focus {
  background: rgba(0, 151, 223, 0.12);
  border-color: #0097df;
  color: #0097df;
  transform: translateY(-1px);
}

.language-selector {
  position: relative;
  display: inline-block;
}
.language-selector .lang-btn {
  box-sizing: border-box;
  width: 62px;
  height: 41px;
  background: #f5f7fa;
  border: 1px solid #dcdcdc;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5px 8px;
  cursor: pointer;
}
.language-selector .flag {
  width: 19px;
  height: 19px;
  border: 1px solid #fff;
  border-radius: 50%;
  object-fit: cover;
}
.language-selector .arrow {
  width: 12px;
  height: 12px;
}
.language-selector .lang-options {
  list-style: none;
  padding: 0;
  margin: 0;
  position: absolute;
  top: 45px;
  left: 0;
  background: #ffffff;
  border: 1px solid #dcdcdc;
  border-radius: 8px;
  width: 140px;
  display: none;
  z-index: 1000;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.language-selector .lang-options li {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  cursor: pointer;
  font-size: 14px;
  transition: background 0.2s ease;
}
.language-selector .lang-options li img {
  width: 20px;
  height: 20px;
  border-radius: 50%;
}
.language-selector .lang-options li:hover {
  background: #e8f4fd;
}
.language-selector .lang-options.active {
  display: block;
}

.hero-section {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 240px 0px 220px;
}
.hero-section .hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}
.hero-section .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: -1;
}
.hero-section .hero-content {
  width: 100%;
  max-width: 880px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.hero-section .hero-content .logo {
  height: 140px;
  margin-bottom: 24px;
  /* Safari SVG fix for large hero logos */
  width: auto;
  image-rendering: -webkit-optimize-contrast;
  transform: translateZ(0);
  backface-visibility: hidden;
  /* Ensure crisp edges on Retina */
  shape-rendering: geometricPrecision;
}
.hero-section .hero-content h3 {
  font-family: "Open Sans";
  font-weight: 700;
  font-size: 36px;
  line-height: 48px;
  text-align: center;
  margin-bottom: 24px;
  color: #ffffff;
}
.hero-section .hero-content p {
  font-family: "Open Sans";
  font-weight: 400;
  font-size: 20px;
  margin-bottom: 24px;
  line-height: 28px;
  text-align: center;
  color: #ffffff;
}
.hero-section .hero-bottom {
  width: 100%;
  position: absolute;
  bottom: -42px;
  left: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 22px;
}
.hero-section .hero-bottom p {
  font-family: "Helvetica";
  font-weight: 400;
  font-size: 18px;
  line-height: 21px;
  text-align: center;
  color: #ffffff;
}
.hero-section .hero-bottom .arrow {
  height: 80px;
  cursor: pointer;
}

.header {
  width: 100%;
  padding-top: 28px;
  position: fixed;
  top: 0;
  transition: all 0.3s ease-in-out;
  left: 0;
  right: 0;
  z-index: 999;
}
.header .navbar-toggler {
  border: none;
  padding: 0px;
}
.header .navbar-toggler i {
  color: #0097df;
  font-size: 30px;
}
.header .navbar {
  width: 100%;
  transition: all 0.3s ease-in-out;
  min-height: 75px;
  background: #ffffff !important;
  border-radius: 20px;
  padding: 15px 40px 15px 60px;
}
.header .navbar .navbar-brand {
  transition: all 0.3s ease-in-out;
  /* Fix for Safari SVG rendering in flex container */
  display: inline-block;
}
.header .navbar .navbar-brand img {
  transition: all 0.3s ease-in-out;
  height: 44px;
  /* Force exact pixel dimensions */
  width: auto;
  /* Prevent subpixel positioning */
  position: relative;
  left: 0;
  top: 0;
  /* Safari-specific fixes */
  image-rendering: -webkit-optimize-contrast;
  transform: translateZ(0);
  backface-visibility: hidden;
}
.header .navbar .navbar-nav .nav-link {
  padding: 12px;
}
.header .navbar .navbar-nav .nav-link:hover {
  color: #0097df;
}

.header.active {
  padding-top: 10px;
}
.header.active .navbar {
  box-shadow: 0px 11.9755px 35.9264px rgba(149, 157, 165, 0.2);
  border-radius: 10px;
  padding: 10px 20px;
}
.header.active .navbar-brand img {
  height: 40px;
}

.success-section {
  padding: 90px 0px;
}
.success-section .success-heading {
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin-bottom: 60px;
}
.success-section .success-heading h3 {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 700;
  font-size: 32px;
  line-height: 43px;
  color: #414141;
  margin-bottom: 5px;
}
.success-section .success-heading p {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 26px;
  color: #555555;
}
.success-section .success-card h1 {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 700;
  font-size: 50px;
  line-height: 43px;
  color: #414141;
  margin-bottom: 15px;
}
.success-section .success-card p {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  color: #555555;
}
.success-section .success-card .devider {
  width: 100%;
  height: 1px;
  background: #cccccc;
  margin: 18px 0px 22px;
}
.success-section .success-card a {
  font-family: "Helvetica";
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 156%;
  color: #0097df;
}
.success-section .success-card h6 {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 700;
  font-size: 18px;
  line-height: 33px;
  color: #414141;
}

.center-heading {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-bottom: 50px;
  align-items: center;
}
.center-heading h2 {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 700;
  font-size: 32px;
  line-height: 43px;
  text-align: center;
  margin-bottom: 5px;
  color: #ffffff;
}
.center-heading p {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  margin-bottom: 0px;
  line-height: 26px;
  text-align: center;
  color: #ffffff;
}

.center-heading-dark {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-bottom: 50px;
  align-items: center;
}
.center-heading-dark h2 {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 700;
  font-size: 32px;
  line-height: 43px;
  text-align: center;
  margin-bottom: 5px;
  color: #414141;
}
.center-heading-dark p {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  margin-bottom: 0px;
  line-height: 26px;
  text-align: center;
  color: #807979;
}

.left-heading {
  margin-bottom: 50px;
}
.left-heading h2 {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 700;
  font-size: 32px;
  line-height: 43px;
  margin-bottom: 5px;
  color: #414141;
  max-width: 343px;
}
.left-heading p {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  color: #1e1e1e;
}
.left-heading p span {
  color: #555555;
}

.references-section {
  padding: 60px 0px 100px;
  background: #1e1e1e;
  width: 100%;
}
.references-section .partners-slider .item {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  border-right: 1px solid #dcdcdc;
}
.references-section .partners-slider .item img {
  width: auto;
  max-height: 36px;
  max-width: 100px;
  /* Safari SVG fix for partner logos in carousel */
  image-rendering: -webkit-optimize-contrast;
  transform: translateZ(0);
  backface-visibility: hidden;
  shape-rendering: geometricPrecision;
  opacity: 0.88;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.references-section .partners-slider .item img:hover {
  opacity: 1;
  transform: translateY(-2px) translateZ(0);
}
@media (max-width: 767px) {
  .references-section .partners-slider .item {
    border-right: none;
  }
  .references-section .partners-slider .item img {
    max-width: 120px;
    max-height: 36px;
  }
}

.what-we-do-section {
  padding: 90px 0px;
}
.what-we-do-section .content .btn-dashed {
  position: relative;
  z-index: 99;
}
.what-we-do-section .content h3 {
  max-width: 501px;
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 700;
  font-size: 32px;
  line-height: 41px;
  color: #414141;
  margin-bottom: 15px;
}
.what-we-do-section .content p {
  max-width: 484px;
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  line-height: 28px;
  color: #555555;
}
.what-we-do-section .banner {
  position: relative;
  margin-top: 20px;
}
.what-we-do-section .banner img {
  width: 100%;
}
.what-we-do-section .banner svg {
  position: absolute;
  height: 131px;
  left: -500px;
  z-index: -1;
}

.defines-us {
  width: 100%;
  padding: 0px 0px 90px;
}
.defines-us .defines-box {
  width: 100%;
  min-height: 280px;
  height: 100%;
  border-radius: 20px;
  background: #f6f8fb;
  position: relative;
  padding: 33px 25px;
  position: relative;
  overflow: hidden;
}
.defines-us .defines-box .dots {
  position: absolute;
  bottom: -30px;
  left: 0;
  right: 0;
  pointer-events: none;
  z-index: 0;
}
.defines-us .defines-box h4 {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 700;
  font-size: 20px;
  line-height: 27px;
  color: #414141;
  margin-bottom: 0px;
}
.defines-us .defines-box p {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 23px;
  color: #555555;
  margin-top: 15px;
}
.defines-us .defines-box .arrows-up {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-bottom: 20px;
}
.defines-us .defines-box .arrows-up img {
  width: 100%;
  max-width: 265px;
}
.defines-us .defines-box .bullets {
  margin-bottom: 25px;
}
.defines-us .defines-box .bullets .item {
  display: flex;
  margin-bottom: 12px;
}
.defines-us .defines-box .bullets .item .icon {
  width: 30px;
}
.defines-us .defines-box .bullets .item i {
  color: #0097df;
  font-size: 16px;
}
.defines-us .defines-box .bullets .item span {
  width: calc(100% - 30px);
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #555555;
}
.defines-us {
  /* defines border using ::before */
}
.defines-us .defines-box::before {
  content: "";
  position: absolute;
  inset: 0; /* full size */
  border-radius: 20px;
  padding: 1px; /* border thickness */
  background: linear-gradient(to bottom, #0097df, rgba(255, 255, 255, 0));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

.gap-y-2 {
  gap: 15px 0px;
}

.focus-section {
  padding: 90px 0px;
}
.focus-section .focus-box {
  width: 100%;
  min-height: 280px;
  height: 100%;
  border-radius: 16px;
  background: linear-gradient(to bottom, #f6f8fb, #ffffff);
  position: relative;
  padding: 33px 25px;
  overflow: hidden;
}
.focus-section .focus-box a, .focus-section .focus-box button {
  position: relative;
  z-index: 10;
}
.focus-section .focus-box .dots {
  position: absolute;
  bottom: -30px;
  left: 0;
  right: 0;
  pointer-events: none;
  z-index: 0;
}
.focus-section .focus-box h4 {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 700;
  font-size: 20px;
  line-height: 27px;
  color: #414141;
  margin-bottom: 0px;
}
.focus-section .focus-box p {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 23px;
  color: #555555;
  margin-top: 15px;
}
.focus-section .focus-box .arrows-up {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-bottom: 20px;
}
.focus-section .focus-box .arrows-up img {
  width: 100%;
  max-width: 265px;
}
.focus-section .focus-box .logos {
  margin: 45px 0px;
}
.focus-section .focus-box .bullets {
  margin-bottom: 25px;
}
.focus-section .focus-box .bullets .item {
  display: flex;
  margin-bottom: 12px;
}
.focus-section .focus-box .bullets .item .icon {
  width: 30px;
}
.focus-section .focus-box .bullets .item i {
  color: #0097df;
  font-size: 16px;
}
.focus-section .focus-box .bullets .item span {
  width: calc(100% - 30px);
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #555555;
}
.focus-section .focus-box.gray-bg {
  background: #e8f0ff;
}
.focus-section {
  /* focus border using ::before */
}
.focus-section .focus-box::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 16px;
  padding: 1px;
  background: linear-gradient(to bottom, #0097df, rgba(255, 255, 255, 0));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.next-step-card {
  width: 100%;
  background-image: url(../images/next-step.svg);
  background-size: cover;
  background-position: center;
  padding: 60px 20px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.next-step-card h3 {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 700;
  font-size: 32px;
  line-height: 40px;
  text-align: center;
  color: #ffffff;
  margin-bottom: 10px;
}
.next-step-card p {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  text-align: center;
  color: #eeeeee;
  margin-bottom: 30px;
}

.use-cases {
  width: 100%;
  padding: 90px 0px;
}
.use-cases .use-cases-box {
  width: 100%;
  min-height: 280px;
  height: 100%;
  border-radius: 16px;
  background: #f6f8fb;
  position: relative;
  padding: 33px 25px 10px;
  overflow: hidden;
}
.use-cases .use-cases-box a, .use-cases .use-cases-box button {
  position: relative;
  z-index: 10;
}
.use-cases .use-cases-box .cubs {
  position: absolute;
  bottom: 0px;
  right: 0;
  pointer-events: none;
  z-index: 0;
}
.use-cases .use-cases-box h4 {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 700;
  font-size: 20px;
  line-height: 27px;
  color: #414141;
  margin-bottom: 12px;
}
.use-cases .use-cases-box p {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 23px;
  color: #555555;
}
.use-cases .use-cases-box ul {
  list-style: none; /* remove default bullets */
  padding-left: 0; /* reset padding */
}
.use-cases .use-cases-box ul li {
  position: relative;
  padding-left: 28px;
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 400;
  font-size: 15px;
  line-height: 38px;
  color: #414141;
}
.use-cases .use-cases-box ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 16px; /* adjust size */
  height: 16px;
  background: url("../images/dot.svg") no-repeat center center;
  background-size: contain; /* keeps image aspect ratio */
}
.use-cases {
  /* defines border using ::before */
}
.use-cases .use-cases-box::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 16px;
  padding: 1px;
  background: linear-gradient(to bottom, #0097df, rgba(255, 255, 255, 0));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.customers-section {
  padding: 110px 0px;
  background: #f5f7fa;
  overflow: hidden;
}
.customers-section .content {
  width: 100%;
  height: 100%;
  display: flex;
  padding: 40px 0px;
  flex-direction: column;
  justify-content: space-between;
}
.customers-section .content h3 {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 700;
  font-size: 32px;
  line-height: 43px;
  color: #414141;
}
.customers-section .content p {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 26px;
  color: #555555;
}
.customers-section .content .slider-nav {
  gap: 12px;
  display: flex;
}
.customers-section .content .slider-nav .owl-prev,
.customers-section .content .slider-nav .owl-next {
  width: 44px;
  height: 44px;
  background: #ffffff;
  box-shadow: 0px 4.4px 4.4px rgba(109, 109, 109, 0.23) !important;
  transition: all 0.3s ease;
  border: none;
  border-radius: 100px;
}
.customers-section .content .slider-nav .owl-prev i,
.customers-section .content .slider-nav .owl-next i {
  color: #0097df;
}
.customers-section .content .slider-nav .owl-prev-icon,
.customers-section .content .slider-nav .owl-next-icon {
  display: inline-block;
}
.customers-section .testimonial-slider {
  width: 100vw;
}
.customers-section .testimonial-slider .item {
  padding: 30px 10px 30px 20px;
}
.customers-section .testimonial-slider .testimonial-card {
  position: relative;
}
.customers-section .testimonial-slider .testimonial-card .q {
  position: absolute;
  top: 30px;
  right: 30px;
  height: 40px;
  width: auto;
}
.customers-section .testimonial-slider .testimonial-card {
  width: 100%;
  padding: 44px 32px 35px;
  min-height: 300px;
  background: #ffffff;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  border-radius: 11.0162px;
}
.customers-section .testimonial-slider .testimonial-card h5 {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 700;
  font-size: 20px;
  line-height: 140%;
  color: #212121;
  margin-bottom: 2px;
}
.customers-section .testimonial-slider .testimonial-card h6 {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 140%;
  color: #0097df;
  margin-bottom: 9px;
}
.customers-section .testimonial-slider .testimonial-card p {
  margin-bottom: 25px;
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 148%;
  color: #4c4c4c;
}
.customers-section .testimonial-slider .testimonial-card .user {
  display: flex;
  align-items: center;
  gap: 12px;
}
.customers-section .testimonial-slider .testimonial-card .user .profile {
  width: 60.98px;
  height: 60.98px;
  overflow: hidden;
  border: 0.99985px solid #ffffff;
}
.customers-section .testimonial-slider .testimonial-card .user .profile img {
  height: 100%;
  width: 100%;
  border-radius: 100px;
  object-fit: cover;
}
.customers-section .testimonial-slider .testimonial-card .user h3 {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 700;
  font-size: 20px;
  line-height: 140%;
  color: #212121;
  margin-bottom: 0px;
}
.customers-section .testimonial-slider .testimonial-card .user span {
  font-family: "Helvetica";
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  color: #414141;
}

.coming-soon-section {
  width: 100%;
  padding: 70px 0px 50px;
  background-image: url(../images/cs-bg.svg);
  background-position: center;
  background-size: cover;
  background-position: center;
}
.coming-soon-section .content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.coming-soon-section .content h1 {
  max-width: 707px;
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 700;
  font-size: 32px;
  line-height: 40px;
  text-align: center;
  color: #ffffff;
  margin-bottom: 25px;
}
.coming-soon-section .content p {
  max-width: 724px;
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  margin-bottom: 25px;
  text-align: center;
  color: #eeeeee;
}

.contact-section {
  padding: 90px 0px;
}
.contact-section .contact-form {
  width: 100%;
  min-height: 280px;
  height: 100%;
  border-radius: 20px;
  background: linear-gradient(to bottom, #f6f8fb, #ffffff);
  position: relative;
  position: relative;
  padding: 50px;
  overflow: hidden;
}
.contact-section .contact-form form {
  position: relative;
  z-index: 99;
}
.contact-section .contact-form .form-label {
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 19px;
  color: #0d0d0d;
  margin-bottom: 15px;
}
.contact-section .contact-form .form-label span {
  color: #ff0000;
}
.contact-section .contact-form .form-control {
  padding: 13px 147px 13px 16px;
  min-height: 48px;
  border: 1px solid #cccccc;
  border-radius: 8px;
  font-family: "Figtree";
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  color: #545454;
}
.contact-section .contact-form .form-btn {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  padding: 40px 0px;
}
.contact-section .contact-form .form-btn .btn {
  min-width: 185px;
}
.contact-section .contact-form::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  padding: 1px; /* border thickness */
  background: linear-gradient(to bottom, #0097df, rgba(255, 255, 255, 0));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

.footer {
  padding: 120px 0px 75px;
  width: 100%;
  min-height: 600px;
  background: #0d0d0d;
  position: relative;
}
.footer .f-dots {
  position: absolute;
  top: 45px;
  width: 100%;
  left: 0;
  right: 0;
}
.footer .f-logo {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 55px;
}
.footer .f-logo img {
  height: 105px;
  /* Safari SVG fix for footer logo */
  width: auto;
  image-rendering: -webkit-optimize-contrast;
  transform: translateZ(0);
  backface-visibility: hidden;
  shape-rendering: geometricPrecision;
}
.footer .about {
  max-width: 400px;
}
.footer .about p {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 28px;
  color: #eeeeee;
  margin-bottom: 11px;
}
.footer .about h6 {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 28px;
  color: #0097df;
}
.footer .about .b-nav {
  display: flex;
  gap: 20px;
}
.footer .about .b-nav a {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 28px;
  color: #eeeeee;
}
.footer .about .b-nav span {
  color: #eeeeee;
}
.footer .f-nav {
  display: flex;
  flex-direction: column;
}
.footer .f-nav h6 {
  margin-bottom: 20px;
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 700;
  font-size: 18px;
  line-height: 25px;
  color: #ffffff;
}
.footer .f-nav a {
  margin-bottom: 10px;
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  color: #efefef;
}
.footer .contact-details {
  display: flex;
  flex-direction: column;
}
.footer .contact-details .contact-item {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
}
.footer .contact-details .contact-item .icon {
  width: 37px;
  height: 37px;
}
.footer .contact-details .contact-item .detail {
  width: calc(100% - 47px);
}
.footer .contact-details .contact-item .detail p {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  color: #ececec;
  margin-bottom: 0px;
}
.footer .contact-details .contact-item .detail b {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  color: #ececec;
  margin-bottom: 0px;
}
.footer .bottom {
  margin-top: 60px;
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.footer .bottom .content {
  width: 100%;
  display: flex;
  justify-content: center;
}
.footer .bottom .content p {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 28px;
  text-align: center;
  color: #eeeeee;
}
.footer .bottom .content:first-child {
  justify-content: flex-start;
}
.footer .bottom .content:last-child {
  justify-content: flex-end;
}
.footer .bottom .language-selector {
  position: relative;
  display: inline-block;
}
.footer .bottom .language-selector .f-lang-btn {
  background: #2d2d2d;
  color: white;
  border: none;
  border-radius: 25px;
  padding: 8px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 500;
}
.footer .bottom .language-selector .lang-text {
  margin-right: 4px;
}
.footer .bottom .language-selector .flag {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1px solid white;
  object-fit: cover;
}
.footer .bottom .language-selector .arrow {
  width: 12px;
  height: 12px;
}
.footer .bottom .language-selector .lang-options {
  list-style: none;
  padding: 0;
  margin: 0;
  bottom: 100%;
  margin-bottom: 8px;
  position: absolute;
  background: #2d2d2d;
  border: 1px solid #444;
  border-radius: 10px;
  width: 160px;
  display: none;
  z-index: 1000;
  box-shadow: 0 -4px 6px rgba(0, 0, 0, 0.2);
}
.footer .bottom .language-selector .lang-options li {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  cursor: pointer;
  color: white;
  font-size: 14px;
  transition: background 0.2s;
}
.footer .bottom .language-selector .lang-options li:hover {
  background: #3a3a3a;
}
.footer .bottom .language-selector .lang-options.active {
  display: block;
}

.about-hero {
  width: 100%;
  background: #f6f8fb;
  padding: 280px 0px 220px;
  position: relative;
  display: flex;
  align-items: center;
}
.about-hero .about-hero-bg {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 99;
}
.about-hero .content h3 {
  margin-bottom: 30px;
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 700;
  font-size: 36px;
  line-height: 43px;
  color: #414141;
}
.about-hero .content p {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 26px;
  color: #555555;
  max-width: 528px;
  margin-bottom: 15px;
}
.about-hero .content h6 {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 500;
  font-size: 20px;
  margin-bottom: 15px;
  line-height: 28px;
  color: #1e1e1e;
}

.team-intro-section {
  padding: 90px 0px 90px;
  background: #ffffff;
}
@media (max-width: 991px) {
  .team-intro-section {
    padding: 60px 0px 60px;
  }
}
.team-intro-section .content h2 {
  font-family: "Helvetica";
  font-style: normal;
  font-weight: 600;
  font-size: 32px;
  line-height: 43px;
  color: #414141;
  margin-bottom: 20px;
}
@media (max-width: 991px) {
  .team-intro-section .content h2 {
    font-size: 26px;
    line-height: 36px;
    margin-bottom: 18px;
  }
}
.team-intro-section .content p {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 27px;
  color: #555555;
  margin-bottom: 0;
}
@media (max-width: 991px) {
  .team-intro-section .content p {
    font-size: 16px;
    line-height: 25px;
  }
}
.team-intro-section .team-intro-card {
  background: #f6f8fb;
  border-top: 3px solid #0097df;
  border-radius: 16px;
  padding: 50px 40px;
  position: relative;
  overflow: hidden;
}
@media (max-width: 991px) {
  .team-intro-section .team-intro-card {
    margin-top: 60px;
    padding: 35px 30px;
  }
}
.team-intro-section .team-intro-card h3 {
  font-family: "Helvetica";
  font-style: normal;
  font-weight: 600;
  font-size: 24px;
  line-height: normal;
  color: #414141;
  margin-bottom: 0;
}
@media (max-width: 991px) {
  .team-intro-section .team-intro-card h3 {
    font-size: 20px;
  }
}
.team-intro-section .team-intro-card .team-divider {
  width: 100%;
  max-width: 416px;
  height: 2px;
  background: #0097df;
  margin: 25px 0;
  opacity: 0.3;
}
@media (max-width: 991px) {
  .team-intro-section .team-intro-card .team-divider {
    margin: 20px 0;
  }
}
.team-intro-section .team-intro-card p {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 27px;
  color: #555555;
  margin-bottom: 0;
}
@media (max-width: 991px) {
  .team-intro-section .team-intro-card p {
    font-size: 16px;
    line-height: 25px;
  }
}

.team-profile-section {
  padding: 60px 0px;
}
@media (max-width: 991px) {
  .team-profile-section {
    padding: 45px 0px;
  }
}
.team-profile-section .team-profile-card {
  background: #edf1f3;
  border: 2px solid #0097df;
  border-radius: 16px;
  padding: 40px;
  position: relative;
  box-shadow: 0 4px 20px rgba(0, 151, 223, 0.1);
  transition: all 0.3s ease;
}
@media (max-width: 991px) {
  .team-profile-section .team-profile-card {
    padding: 30px 25px;
  }
}
.team-profile-section .team-profile-card:hover {
  box-shadow: 0 8px 30px rgba(0, 151, 223, 0.15);
  transform: translateY(-5px);
}
.team-profile-section .team-profile-card .profile-image {
  display: flex;
  align-items: center;
  justify-content: center;
}
.team-profile-section .team-profile-card .profile-image img {
  width: 100%;
  max-width: 280px;
  border-radius: 15px;
  object-fit: cover;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}
@media (max-width: 991px) {
  .team-profile-section .team-profile-card .profile-image img {
    max-width: 220px;
    margin: 0 auto;
  }
}
.team-profile-section .team-profile-card .profile-content {
  padding-left: 40px;
}
@media (max-width: 991px) {
  .team-profile-section .team-profile-card .profile-content {
    padding-left: 0;
    margin-top: 25px;
  }
}
.team-profile-section .team-profile-card .profile-content h3 {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 700;
  font-size: 28px;
  line-height: 38px;
  color: #1e1e1e;
  margin-bottom: 8px;
}
@media (max-width: 991px) {
  .team-profile-section .team-profile-card .profile-content h3 {
    font-size: 24px;
    line-height: 32px;
  }
}
.team-profile-section .team-profile-card .profile-content h6 {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  color: #0097df;
  margin-bottom: 20px;
}
@media (max-width: 991px) {
  .team-profile-section .team-profile-card .profile-content h6 {
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 15px;
  }
}
.team-profile-section .team-profile-card .profile-content .profile-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, #0097df 0%, rgba(0, 151, 223, 0.2) 100%);
  margin-bottom: 25px;
}
@media (max-width: 991px) {
  .team-profile-section .team-profile-card .profile-content .profile-divider {
    margin-bottom: 20px;
  }
}
.team-profile-section .team-profile-card .profile-content p {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 400;
  font-size: 17px;
  line-height: 28px;
  color: #555555;
  margin-bottom: 18px;
}
@media (max-width: 991px) {
  .team-profile-section .team-profile-card .profile-content p {
    font-size: 16px;
    line-height: 26px;
    margin-bottom: 14px;
  }
}
.team-profile-section .team-profile-card .profile-content p.quote {
  position: relative;
}
@media (max-width: 991px) {
  .team-profile-section .team-profile-card .profile-content p.quote {
    margin-bottom: 10px;
  }
}
.team-profile-section .team-profile-card .profile-content p.quote .quote-mark {
  font-family: "Open Sans";
  font-weight: 700;
  font-size: 40px;
  color: #0097df;
  line-height: 1;
  vertical-align: top;
}
@media (max-width: 991px) {
  .team-profile-section .team-profile-card .profile-content p.quote .quote-mark {
    font-size: 32px;
  }
}

.team-profile-reverse .team-profile-card .profile-content {
  padding-left: 0;
  padding-right: 40px;
}

.industry-filter-section {
  padding: 20px 0px;
  background: transparent;
  position: sticky;
  top: 75px;
  z-index: 99;
  transition: all 0.3s ease;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE and Edge */
}
.industry-filter-section::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera */
}
.industry-filter-section .filter-pills-wrapper {
  display: flex;
  flex-wrap: nowrap;
  gap: 10px;
  justify-content: flex-start;
  padding: 12px 15px;
  min-width: min-content;
}
.industry-filter-section .filter-pills-wrapper .filter-pill {
  padding: 11px 24px;
  border-radius: 46px;
  border: 1px solid #0097df;
  background: linear-gradient(to bottom, #f6f8fb 0%, #ffffff 100%);
  font-family: "Helvetica";
  font-weight: 400;
  font-size: 15px;
  line-height: 21px;
  color: #000000;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
  flex-shrink: 0;
}
.industry-filter-section .filter-pills-wrapper .filter-pill:hover {
  background: linear-gradient(to bottom, #e8f4fd 0%, #f5f9fc 100%);
  transform: translateY(-1px);
}
.industry-filter-section .filter-pills-wrapper .filter-pill.active {
  background: linear-gradient(to right, #f6f8fb 0%, #ffffff 100%);
  border: 1px solid #0097df;
  font-weight: 700;
  box-shadow: 0 2px 8px rgba(0, 151, 223, 0.15);
}

.case-study-section {
  padding: 50px 0px;
  background: white;
}
.case-study-section.case-study-alt {
  background: #f6f8fb;
}
.case-study-section .case-study-title {
  font-family: "Helvetica";
  font-weight: 700;
  font-size: 32px;
  line-height: 43px;
  color: #414141;
  margin-bottom: 24px;
}
.case-study-section .case-study-intro {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  line-height: normal;
  color: #1e1e1e;
  margin-bottom: 20px;
}
.case-study-section .case-study-subtitle {
  font-family: "Open Sans";
  font-weight: 600;
  font-size: 18px;
  line-height: 28px;
  color: #1e1e1e;
  margin-bottom: 18px;
  margin-top: 10px;
}
.case-study-section .case-study-text {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  color: #555555;
  margin-bottom: 20px;
}
.case-study-section .case-study-image {
  width: 100%;
  margin: 30px 0 40px;
}
.case-study-section .case-study-image img {
  width: 100%;
  border-radius: 20px;
  object-fit: cover;
  height: 280px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}
.case-study-section .case-study-image img:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.12);
}
.case-study-section .case-study-box {
  background: linear-gradient(to bottom, #f6f8fb 0%, #ffffff 100%);
  border: 1px solid #0097df;
  border-radius: 20px;
  padding: 40px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 15px;
  transition: all 0.3s ease;
}
.case-study-section .case-study-box:hover {
  box-shadow: 0 8px 25px rgba(0, 151, 223, 0.15);
  transform: translateY(-3px);
}
.case-study-section .case-study-box p {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 400;
  font-size: 17px;
  line-height: 28px;
  color: #555555;
  margin-bottom: 10px;
}
.case-study-section .case-study-box p strong {
  font-weight: 700;
  color: #0d0d0d;
  display: inline;
  margin-top: 0;
  margin-bottom: 0;
}

.about-us-section {
  padding: 90px 0px;
}
.about-us-section .content .btn-dashed {
  position: relative;
  z-index: 99;
}
.about-us-section .content h3 {
  max-width: 505px;
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 700;
  font-size: 32px;
  line-height: 41px;
  color: #414141;
  margin-bottom: 15px;
}
.about-us-section .content p {
  max-width: 505px;
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  line-height: 28px;
  color: #555555;
}
.about-us-section .about-us-box {
  width: 100%;
  min-height: 280px;
  height: 100%;
  border-radius: 16px;
  background: #f6f8fb;
  position: relative;
  padding: 33px 25px;
  position: relative;
  overflow: hidden;
}
.about-us-section .about-us-box .dots {
  position: absolute;
  bottom: -30px;
  left: 0;
  right: 0;
  pointer-events: none;
  z-index: 0;
}
.about-us-section .about-us-box h3 {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 700;
  font-size: 32px;
  line-height: 44px;
  color: #414141;
}
.about-us-section .about-us-box p {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 23px;
  color: #555555;
  margin-top: 15px;
}
.about-us-section .about-us-box .arrows-up {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-bottom: 20px;
}
.about-us-section .about-us-box .arrows-up img {
  width: 100%;
  max-width: 265px;
}
.about-us-section .about-us-box .bullets {
  margin-bottom: 25px;
}
.about-us-section .about-us-box .bullets .item {
  display: flex;
  margin-bottom: 12px;
}
.about-us-section .about-us-box .bullets .item .icon {
  width: 30px;
}
.about-us-section .about-us-box .bullets .item i {
  color: #0097df;
  font-size: 16px;
}
.about-us-section .about-us-box .bullets .item span {
  width: calc(100% - 30px);
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #555555;
}
.about-us-section {
  /* about-us border using ::before */
}
.about-us-section .about-us-box::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 16px;
  padding: 1px;
  background: linear-gradient(to bottom, #0097df, rgba(255, 255, 255, 0));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.automation-points .point {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 20px;
  margin-bottom: 12px;
  gap: 10.48px;
  width: 100%;
  min-height: 67.36px;
  max-width: 450px;
  background: #ffffff;
  box-shadow: 0px 11.9755px 35.9264px rgba(149, 157, 165, 0.2);
  border-radius: 8.98159px;
}
.automation-points .point i {
  font-size: 20px;
  color: #0097df;
}
.automation-points .point span {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  color: #555555;
}

.about-defines-us-section {
  padding: 90px 0px;
  background-image: url(../images/about-defines-bg.png);
  background-size: cover;
  background-position: top;
}

.defines-us-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 40px;
}
.defines-us-row .defines-us-card {
  width: calc(33.33% - 30px);
  background: red;
  min-height: 205px;
  border-radius: 16px;
  padding: 20px;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  /* background gradient */
  background: linear-gradient(180deg, #343333 0%, #1e1e1e 100%);
  /* border gradient */
  border: 2px solid transparent;
  background-clip: padding-box, border-box;
  background-origin: padding-box, border-box;
  background-image: linear-gradient(180deg, #343333 0%, #1e1e1e 100%), linear-gradient(180deg, #0097df 0%, rgba(255, 255, 255, 0) 100%); /* border */
}
.defines-us-row .defines-us-card h3 {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 700;
  font-size: 20px;
  line-height: 27px;
  text-align: center;
  color: #ffffff;
  margin-bottom: 25px;
}
.defines-us-row .defines-us-card p {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 23px;
  text-align: center;
  color: #ffffff;
}

.next-step-about-card {
  width: 100%;
  background-image: url(../images/next-step.svg);
  background-size: cover;
  background-position: center;
  padding: 60px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.next-step-about-card h3 {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 700;
  font-size: 32px;
  line-height: 40px;
  text-align: center;
  color: #ffffff;
  margin-bottom: 10px;
}
.next-step-about-card p {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  text-align: center;
  color: #eeeeee;
  margin-bottom: 30px;
}

.about-contact-section {
  padding: 90px 0px;
}
.about-contact-section .content h3 {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 700;
  font-size: 32px;
  line-height: 45px;
  color: #414141;
}
.about-contact-section .contact-detail {
  width: 100%;
  display: flex;
  justify-content: space-evenly;
}
.about-contact-section .contact-detail .c-card {
  width: 100%;
  padding-left: 20px;
  padding-right: 10px;
}
.about-contact-section .contact-detail .c-card h4 {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 700;
  font-size: 20px;
  line-height: 156%;
  color: #414141;
}
.about-contact-section .contact-detail .c-card h6 {
  font-family: "Open Sans";
  font-style: normal;
  font-size: 16px;
  line-height: 156%;
  color: #0097df;
}
.about-contact-section .contact-detail .c-card p {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 600;
  font-size: 18px;
  line-height: 26px;
  color: #414141;
}
.about-contact-section .contact-detail .c-card p i {
  font-size: 20px;
  margin-right: 6px;
  color: #0097df;
}

.border-right {
  border-right: 1px solid #000;
}

.support-section {
  padding: 60px 0px;
}

.support-card {
  width: 100%;
  min-height: 280px;
  height: 100%;
  border-radius: 20px;
  background: #e8f0ff;
  position: relative;
  position: relative;
  padding: 60px;
  overflow: hidden;
}
.support-card .s-box {
  position: absolute;
  bottom: 0px;
  right: 0;
  z-index: 0;
}
.support-card h4 {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 700;
  font-size: 20px;
  line-height: 27px;
  color: #414141;
  margin-bottom: 0px;
}
.support-card p {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 23px;
  color: #555555;
  margin-top: 15px;
  margin-bottom: 60px;
}
.support-card .arrows-up {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-bottom: 20px;
}
.support-card .arrows-up img {
  width: 100%;
  max-width: 265px;
}
.support-card .logos {
  margin: 25px 0px;
  position: relative;
}

/* focus border using ::before */
/* focus border using ::before */
.support-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  padding: 1px; /* border thickness */
  background: linear-gradient(to bottom, #0097df, rgba(255, 255, 255, 0));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

/* Legal Pages Styles */
.legal-content {
  padding: 260px 0 120px 0 !important;
  background: #f8f9fa;
}
.legal-content .legal-text {
  background: white;
  border-radius: 20px;
  padding: 60px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.legal-content .legal-text h1 {
  font-size: 48px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 40px;
  text-align: center;
}
.legal-content .legal-text h2 {
  font-size: 24px;
  font-weight: 600;
  color: #0097df;
  margin-top: 40px;
  margin-bottom: 20px;
}
.legal-content .legal-text h3 {
  font-size: 20px;
  font-weight: 600;
  color: #333;
  margin-top: 30px;
  margin-bottom: 15px;
}
.legal-content .legal-text p {
  font-size: 16px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
}
.legal-content .legal-text strong {
  color: #333;
  font-weight: 600;
}
.legal-content .legal-text a {
  color: #0097df;
  text-decoration: none;
}
.legal-content .legal-text a:hover {
  text-decoration: underline;
}

/* Responsive Design for Legal Pages */
@media (max-width: 768px) {
  .legal-content {
    padding: 200px 0 80px 0 !important;
  }
  .legal-content .legal-text {
    padding: 40px 30px;
  }
  .legal-content .legal-text h1 {
    font-size: 32px;
  }
  .legal-content .legal-text h2 {
    font-size: 20px;
  }
  .legal-content .legal-text h3 {
    font-size: 18px;
  }
  .legal-content .legal-text p {
    font-size: 14px;
  }
}
/* Case Studies Page Styles */
.case-study-result {
  background: linear-gradient(135deg, #0097df, #0056b3);
  border-radius: 12px;
  padding: 15px;
  color: white;
  text-align: center;
  margin: 20px 0;
}
.case-study-result .result-number {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 5px;
}
.case-study-result .result-text {
  font-size: 12px;
  opacity: 0.9;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.success-stories {
  padding: 100px 0;
  background: #f8f9fa;
}
.success-stories .success-story-box {
  background: white;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  height: 100%;
}
.success-stories .success-story-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}
.success-stories .success-story-box .story-header {
  display: flex;
  align-items: center;
  margin-bottom: 25px;
}
.success-stories .success-story-box .story-header .company-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #0097df, #0056b3);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-right: 15px;
}
.success-stories .success-story-box .story-header .company-info h4 {
  font-size: 16px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 5px;
}
.success-stories .success-story-box .story-header .company-info .industry-tag {
  font-size: 12px;
  color: #0097df;
  background: rgba(0, 151, 223, 0.1);
  padding: 4px 8px;
  border-radius: 12px;
}
.success-stories .success-story-box .story-content h3 {
  font-size: 20px;
  font-weight: 700;
  color: #0097df;
  margin-bottom: 15px;
}
.success-stories .success-story-box .story-content p {
  font-size: 14px;
  color: #666;
  margin-bottom: 20px;
  line-height: 1.6;
}
.success-stories .success-story-box .story-content .story-results {
  display: flex;
  gap: 20px;
}
.success-stories .success-story-box .story-content .story-results .result-item {
  text-align: center;
}
.success-stories .success-story-box .story-content .story-results .result-item .result-number {
  display: block;
  font-size: 18px;
  font-weight: 700;
  color: #0097df;
  margin-bottom: 5px;
}
.success-stories .success-story-box .story-content .story-results .result-item .result-label {
  font-size: 11px;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.industries-grid-section {
  padding: 120px 0;
  background: white;
}
.industries-grid-section .section-header {
  text-align: center;
  margin-bottom: 80px;
}
.industries-grid-section .section-header h2 {
  font-size: 48px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 25px;
}
.industries-grid-section .section-header p {
  font-size: 20px;
  color: #666;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}
.industries-grid-section .industries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 40px;
}
.industries-grid-section .industries-grid .industry-item .industry-card {
  background: white;
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  height: 100%;
  border: 1px solid rgba(0, 151, 223, 0.1);
}
.industries-grid-section .industries-grid .industry-item .industry-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
  border-color: #0097df;
}
.industries-grid-section .industries-grid .industry-item .industry-card .industry-header {
  display: flex;
  align-items: center;
  margin-bottom: 25px;
}
.industries-grid-section .industries-grid .industry-item .industry-card .industry-header .industry-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #0097df, #0056b3);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
}
.industries-grid-section .industries-grid .industry-item .industry-card .industry-header .industry-icon i {
  font-size: 24px;
  color: white;
}
.industries-grid-section .industries-grid .industry-item .industry-card .industry-header .industry-badge {
  background: rgba(0, 151, 223, 0.1);
  color: #0097df;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.industries-grid-section .industries-grid .industry-item .industry-card h3 {
  font-size: 24px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 20px;
  line-height: 1.3;
}
.industries-grid-section .industries-grid .industry-item .industry-card p {
  font-size: 16px;
  color: #666;
  margin-bottom: 30px;
  line-height: 1.6;
}
.industries-grid-section .industries-grid .industry-item .industry-card .industry-features {
  margin-bottom: 30px;
}
.industries-grid-section .industries-grid .industry-item .industry-card .industry-features .feature {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
}
.industries-grid-section .industries-grid .industry-item .industry-card .industry-features .feature i {
  font-size: 16px;
  color: #0097df;
  margin-right: 12px;
  width: 20px;
}
.industries-grid-section .industries-grid .industry-item .industry-card .industry-features .feature span {
  font-size: 14px;
  color: #666;
  font-weight: 500;
}
.industries-grid-section .industries-grid .industry-item .industry-card .industry-result {
  background: linear-gradient(135deg, #0097df, #0056b3);
  border-radius: 16px;
  padding: 20px;
  color: white;
  text-align: center;
}
.industries-grid-section .industries-grid .industry-item .industry-card .industry-result .result-number {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 5px;
}
.industries-grid-section .industries-grid .industry-item .industry-card .industry-result .result-text {
  font-size: 14px;
  opacity: 0.9;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.industry-detail-section {
  padding: 120px 0;
}
.industry-detail-section.reverse {
  background: #f8f9fa;
}
.industry-detail-section.reverse .row {
  flex-direction: row-reverse;
}
.industry-detail-section .industry-badge {
  display: inline-block;
  background: #0097df;
  color: white;
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 25px;
}
.industry-detail-section h2 {
  font-size: 42px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 25px;
  line-height: 1.2;
}
.industry-detail-section .lead {
  font-size: 20px;
  color: #666;
  margin-bottom: 40px;
  line-height: 1.6;
}
.industry-detail-section .feature-list {
  margin-bottom: 50px;
}
.industry-detail-section .feature-list .feature-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 30px;
}
.industry-detail-section .feature-list .feature-item .feature-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #0097df, #0056b3);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  flex-shrink: 0;
}
.industry-detail-section .feature-list .feature-item .feature-icon i {
  font-size: 20px;
  color: white;
}
.industry-detail-section .feature-list .feature-item .feature-content h5 {
  font-size: 20px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 8px;
}
.industry-detail-section .feature-list .feature-item .feature-content p {
  font-size: 16px;
  color: #666;
  margin: 0;
  line-height: 1.5;
}
.industry-detail-section .case-study-highlight {
  background: linear-gradient(135deg, #0097df, #0056b3);
  border-radius: 20px;
  padding: 30px;
  color: white;
  display: flex;
  align-items: center;
}
.industry-detail-section .case-study-highlight .highlight-number {
  font-size: 48px;
  font-weight: 700;
  margin-right: 25px;
  flex-shrink: 0;
}
.industry-detail-section .case-study-highlight .highlight-text strong {
  display: block;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
}
.industry-detail-section .case-study-highlight .highlight-text p {
  font-size: 14px;
  opacity: 0.9;
  margin: 0;
  line-height: 1.4;
}
.industry-detail-section .visual-content .industry-visual {
  height: 400px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.industry-detail-section .visual-content .industry-visual .visual-element {
  width: 100%;
  height: 100%;
  position: relative;
}
.industry-detail-section .visual-content .industry-visual .visual-element.production-line {
  background: linear-gradient(45deg, #f0f0f0, #e0e0e0);
  border-radius: 20px;
}
.industry-detail-section .visual-content .industry-visual .visual-element.production-line .machine {
  width: 80px;
  height: 60px;
  background: #0097df;
  border-radius: 8px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.industry-detail-section .visual-content .industry-visual .visual-element.production-line .machine:nth-child(1) {
  left: 20%;
}
.industry-detail-section .visual-content .industry-visual .visual-element.production-line .machine:nth-child(2) {
  left: 50%;
  transform: translate(-50%, -50%);
}
.industry-detail-section .visual-content .industry-visual .visual-element.production-line .machine:nth-child(3) {
  right: 20%;
}
.industry-detail-section .visual-content .industry-visual .visual-element.production-line .data-flow {
  position: absolute;
  top: 20px;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #0097df, transparent, #0097df);
  animation: flow 2s infinite;
}
.industry-detail-section .visual-content .industry-visual .visual-element.ecommerce-dashboard {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.industry-detail-section .visual-content .industry-visual .visual-element.ecommerce-dashboard .dashboard-card {
  background: white;
  border-radius: 15px;
  padding: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.industry-detail-section .visual-content .industry-visual .visual-element.ecommerce-dashboard .dashboard-card .card-header {
  font-weight: 600;
  margin-bottom: 15px;
  color: #333;
}
.industry-detail-section .visual-content .industry-visual .visual-element.ecommerce-dashboard .dashboard-card .chart-container {
  display: flex;
  align-items: end;
  gap: 8px;
  height: 60px;
}
.industry-detail-section .visual-content .industry-visual .visual-element.ecommerce-dashboard .dashboard-card .chart-container .chart-bar {
  background: #0097df;
  border-radius: 4px 4px 0 0;
  flex: 1;
  animation: grow 1.5s ease-out;
}
.industry-detail-section .visual-content .industry-visual .visual-element.ecommerce-dashboard .dashboard-card .customer-insights {
  display: flex;
  gap: 10px;
}
.industry-detail-section .visual-content .industry-visual .visual-element.ecommerce-dashboard .dashboard-card .customer-insights .insight-dot {
  width: 12px;
  height: 12px;
  background: #0097df;
  border-radius: 50%;
  animation: pulse 2s infinite;
}
.industry-detail-section .visual-content .industry-visual .visual-element.financial-dashboard {
  background: linear-gradient(135deg, #1a1a1a, #333);
  border-radius: 20px;
  padding: 30px;
}
.industry-detail-section .visual-content .industry-visual .visual-element.financial-dashboard .security-shield {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.industry-detail-section .visual-content .industry-visual .visual-element.financial-dashboard .security-shield .shield-icon {
  font-size: 48px;
  text-align: center;
  margin-bottom: 15px;
}
.industry-detail-section .visual-content .industry-visual .visual-element.financial-dashboard .security-shield .security-layers {
  position: relative;
}
.industry-detail-section .visual-content .industry-visual .visual-element.financial-dashboard .security-shield .security-layers .layer {
  position: absolute;
  border: 2px solid #0097df;
  border-radius: 50%;
  animation: rotate 4s linear infinite;
}
.industry-detail-section .visual-content .industry-visual .visual-element.financial-dashboard .security-shield .security-layers .layer:nth-child(1) {
  width: 60px;
  height: 60px;
  top: -30px;
  left: -30px;
}
.industry-detail-section .visual-content .industry-visual .visual-element.financial-dashboard .security-shield .security-layers .layer:nth-child(2) {
  width: 80px;
  height: 80px;
  top: -40px;
  left: -40px;
  animation-direction: reverse;
}
.industry-detail-section .visual-content .industry-visual .visual-element.financial-dashboard .security-shield .security-layers .layer:nth-child(3) {
  width: 100px;
  height: 100px;
  top: -50px;
  left: -50px;
}
.industry-detail-section .visual-content .industry-visual .visual-element.financial-dashboard .transaction-flow {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
}
.industry-detail-section .visual-content .industry-visual .visual-element.financial-dashboard .transaction-flow .transaction {
  width: 100%;
  height: 4px;
  background: #0097df;
  margin-bottom: 8px;
  border-radius: 2px;
  animation: flow 1.5s infinite;
}
.industry-detail-section .visual-content .industry-visual .visual-element.financial-dashboard .transaction-flow .transaction:nth-child(2) {
  animation-delay: 0.5s;
}
.industry-detail-section .visual-content .industry-visual .visual-element.financial-dashboard .transaction-flow .transaction:nth-child(3) {
  animation-delay: 1s;
}
.industry-detail-section .visual-content .industry-visual .visual-element.public-sector {
  background: linear-gradient(135deg, #f8f9fa, #e9ecef);
  border-radius: 20px;
  padding: 30px;
}
.industry-detail-section .visual-content .industry-visual .visual-element.public-sector .citizen-portal {
  background: white;
  border-radius: 15px;
  padding: 25px;
  margin-bottom: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.industry-detail-section .visual-content .industry-visual .visual-element.public-sector .citizen-portal .portal-header {
  font-weight: 600;
  margin-bottom: 15px;
  color: #333;
}
.industry-detail-section .visual-content .industry-visual .visual-element.public-sector .citizen-portal .service-icons {
  display: flex;
  gap: 15px;
}
.industry-detail-section .visual-content .industry-visual .visual-element.public-sector .citizen-portal .service-icons .service-icon {
  width: 40px;
  height: 40px;
  background: #0097df;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}
.industry-detail-section .visual-content .industry-visual .visual-element.public-sector .process-flow {
  display: flex;
  gap: 10px;
}
.industry-detail-section .visual-content .industry-visual .visual-element.public-sector .process-flow .process-step {
  flex: 1;
  height: 8px;
  background: #0097df;
  border-radius: 4px;
  animation: process 2s infinite;
}
.industry-detail-section .visual-content .industry-visual .visual-element.public-sector .process-flow .process-step:nth-child(2) {
  animation-delay: 0.5s;
}
.industry-detail-section .visual-content .industry-visual .visual-element.public-sector .process-flow .process-step:nth-child(3) {
  animation-delay: 1s;
}
.industry-detail-section .visual-content .industry-visual .visual-element.automotive {
  background: linear-gradient(135deg, #1a1a1a, #333);
  border-radius: 20px;
  padding: 30px;
}
.industry-detail-section .visual-content .industry-visual .visual-element.automotive .car-outline {
  position: relative;
  width: 200px;
  height: 100px;
  margin: 0 auto;
}
.industry-detail-section .visual-content .industry-visual .visual-element.automotive .car-outline .car-body {
  width: 100%;
  height: 60px;
  background: #0097df;
  border-radius: 30px 30px 10px 10px;
  position: relative;
}
.industry-detail-section .visual-content .industry-visual .visual-element.automotive .car-outline .car-body::before {
  content: "";
  position: absolute;
  top: 15px;
  left: 20px;
  right: 20px;
  height: 30px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 15px;
}
.industry-detail-section .visual-content .industry-visual .visual-element.automotive .car-outline .car-wheels {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}
.industry-detail-section .visual-content .industry-visual .visual-element.automotive .car-outline .car-wheels .wheel {
  position: absolute;
  width: 20px;
  height: 20px;
  background: #333;
  border-radius: 50%;
  bottom: -10px;
}
.industry-detail-section .visual-content .industry-visual .visual-element.automotive .car-outline .car-wheels .wheel:nth-child(1) {
  left: 20px;
}
.industry-detail-section .visual-content .industry-visual .visual-element.automotive .car-outline .car-wheels .wheel:nth-child(2) {
  right: 20px;
}
.industry-detail-section .visual-content .industry-visual .visual-element.automotive .tech-overlay {
  position: absolute;
  top: 20px;
  left: 20px;
  right: 20px;
}
.industry-detail-section .visual-content .industry-visual .visual-element.automotive .tech-overlay .tech-element {
  width: 8px;
  height: 8px;
  background: #0097df;
  border-radius: 50%;
  margin-bottom: 8px;
  animation: tech-pulse 2s infinite;
}
.industry-detail-section .visual-content .industry-visual .visual-element.automotive .tech-overlay .tech-element:nth-child(2) {
  animation-delay: 0.5s;
}
.industry-detail-section .visual-content .industry-visual .visual-element.automotive .tech-overlay .tech-element:nth-child(3) {
  animation-delay: 1s;
}
.industry-detail-section .visual-content .industry-visual .visual-element.healthcare {
  background: linear-gradient(135deg, #f8f9fa, #e9ecef);
  border-radius: 20px;
  padding: 30px;
}
.industry-detail-section .visual-content .industry-visual .visual-element.healthcare .medical-icon {
  font-size: 48px;
  text-align: center;
  margin-bottom: 20px;
}
.industry-detail-section .visual-content .industry-visual .visual-element.healthcare .health-data {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 20px;
}
.industry-detail-section .visual-content .industry-visual .visual-element.healthcare .health-data .data-point {
  width: 12px;
  height: 12px;
  background: #0097df;
  border-radius: 50%;
  animation: health-pulse 2s infinite;
}
.industry-detail-section .visual-content .industry-visual .visual-element.healthcare .health-data .data-point:nth-child(2) {
  animation-delay: 0.5s;
}
.industry-detail-section .visual-content .industry-visual .visual-element.healthcare .health-data .data-point:nth-child(3) {
  animation-delay: 1s;
}
.industry-detail-section .visual-content .industry-visual .visual-element.healthcare .research-lab {
  display: flex;
  justify-content: center;
  gap: 20px;
}
.industry-detail-section .visual-content .industry-visual .visual-element.healthcare .research-lab .lab-equipment {
  width: 40px;
  height: 40px;
  background: #0097df;
  border-radius: 8px;
  animation: research 3s infinite;
}
.industry-detail-section .visual-content .industry-visual .visual-element.healthcare .research-lab .lab-equipment:nth-child(2) {
  animation-delay: 1.5s;
}

.success-stories-section {
  padding: 120px 0;
  background: #f8f9fa;
}
.success-stories-section .section-header {
  text-align: center;
  margin-bottom: 80px;
}
.success-stories-section .section-header h2 {
  font-size: 48px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 25px;
}
.success-stories-section .section-header p {
  font-size: 20px;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}
.success-stories-section .success-stories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
}
.success-stories-section .success-stories-grid .success-story .story-card {
  background: white;
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  height: 100%;
  border: 1px solid rgba(0, 151, 223, 0.1);
}
.success-stories-section .success-stories-grid .success-story .story-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
  border-color: #0097df;
}
.success-stories-section .success-stories-grid .success-story .story-card .story-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 30px;
}
.success-stories-section .success-stories-grid .success-story .story-card .story-header .company-info {
  display: flex;
  align-items: center;
}
.success-stories-section .success-stories-grid .success-story .story-card .story-header .company-info .company-logo {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #0097df, #0056b3);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-right: 20px;
}
.success-stories-section .success-stories-grid .success-story .story-card .story-header .company-info .company-details h4 {
  font-size: 18px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 8px;
}
.success-stories-section .success-stories-grid .success-story .story-card .story-header .company-info .company-details .industry-tag {
  font-size: 12px;
  color: #0097df;
  background: rgba(0, 151, 223, 0.1);
  padding: 4px 12px;
  border-radius: 12px;
  font-weight: 500;
}
.success-stories-section .success-stories-grid .success-story .story-card .story-header .story-number {
  font-size: 36px;
  font-weight: 700;
  color: #0097df;
  text-align: right;
}
.success-stories-section .success-stories-grid .success-story .story-card .story-content h3 {
  font-size: 24px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 20px;
  line-height: 1.3;
}
.success-stories-section .success-stories-grid .success-story .story-card .story-content p {
  font-size: 16px;
  color: #666;
  margin-bottom: 30px;
  line-height: 1.6;
}
.success-stories-section .success-stories-grid .success-story .story-card .story-content .story-results {
  display: flex;
  gap: 30px;
}
.success-stories-section .success-stories-grid .success-story .story-card .story-content .story-results .result {
  text-align: center;
}
.success-stories-section .success-stories-grid .success-story .story-card .story-content .story-results .result .result-number {
  display: block;
  font-size: 24px;
  font-weight: 700;
  color: #0097df;
  margin-bottom: 8px;
}
.success-stories-section .success-stories-grid .success-story .story-card .story-content .story-results .result .result-label {
  font-size: 12px;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
}

.cta-section {
  padding: 120px 0;
  background: linear-gradient(135deg, #0097df, #0056b3);
  color: white;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%), radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
}
.cta-section .cta-content {
  text-align: center;
  position: relative;
  z-index: 2;
}
.cta-section .cta-content .cta-logo {
  width: 80px;
  margin-bottom: 40px;
}
.cta-section .cta-content h2 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 25px;
  line-height: 1.2;
}
.cta-section .cta-content p {
  font-size: 20px;
  opacity: 0.9;
  margin-bottom: 50px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}
.cta-section .cta-content .cta-buttons {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
}
.cta-section .cta-content .cta-buttons .btn {
  padding: 18px 40px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 10px;
}
.cta-section .cta-content .cta-buttons .btn.btn-primary {
  background: white;
  color: #0097df;
  border: none;
}
.cta-section .cta-content .cta-buttons .btn.btn-primary:hover {
  background: #f8f9fa;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}
.cta-section .cta-content .cta-buttons .btn.btn-outline {
  background: transparent;
  color: white;
  border: 2px solid white;
}
.cta-section .cta-content .cta-buttons .btn.btn-outline:hover {
  background: white;
  color: #0097df;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Animations */
@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}
/* Responsive Design */
@media (max-width: 768px) {
  .case-studies-hero {
    padding: 80px 0;
  }
  .case-studies-hero .hero-content h1 {
    font-size: 36px;
  }
  .case-studies-hero .hero-content .hero-description {
    font-size: 18px;
  }
  .case-studies-hero .hero-content .hero-stats {
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
  }
  .case-studies-hero .hero-visual {
    margin-top: 40px;
  }
  .case-studies-hero .hero-visual .floating-cards {
    height: 300px;
  }
  .case-studies-hero .hero-visual .floating-cards .floating-card {
    padding: 20px;
  }
  .case-studies-hero .hero-visual .floating-cards .floating-card.card-1 {
    top: 10%;
    left: 5%;
  }
  .case-studies-hero .hero-visual .floating-cards .floating-card.card-2 {
    top: 40%;
    right: 10%;
  }
  .case-studies-hero .hero-visual .floating-cards .floating-card.card-3 {
    bottom: 10%;
    left: 20%;
  }
  .industries-grid-section {
    padding: 80px 0;
  }
  .industries-grid-section .section-header {
    margin-bottom: 60px;
  }
  .industries-grid-section .section-header h2 {
    font-size: 32px;
  }
  .industries-grid-section .section-header p {
    font-size: 18px;
  }
  .industries-grid-section .industries-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .industries-grid-section .industries-grid .industry-item .industry-card {
    padding: 30px;
  }
  .success-stories-section {
    padding: 80px 0;
  }
  .success-stories-section .section-header {
    margin-bottom: 60px;
  }
  .success-stories-section .section-header h2 {
    font-size: 32px;
  }
  .success-stories-section .section-header p {
    font-size: 18px;
  }
  .success-stories-section .success-stories-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .success-stories-section .success-stories-grid .success-story .story-card {
    padding: 30px;
  }
  .success-stories-section .success-stories-grid .success-story .story-card .story-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .success-stories-section .success-stories-grid .success-story .story-card .story-header .story-number {
    text-align: left;
  }
  .success-stories-section .success-stories-grid .success-story .story-card .story-content .story-results {
    flex-direction: column;
    gap: 20px;
  }
  .cta-section {
    padding: 80px 0;
  }
  .cta-section .cta-content h2 {
    font-size: 32px;
  }
  .cta-section .cta-content p {
    font-size: 18px;
  }
  .cta-section .cta-content .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  .cta-section .cta-content .cta-buttons .btn {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
}
/* Animations */
@keyframes flow {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}
@keyframes grow {
  0% {
    height: 0;
  }
  100% {
    height: var(--height);
  }
}
@keyframes pulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(1.2);
  }
}
@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes process {
  0%, 100% {
    opacity: 0.3;
  }
  50% {
    opacity: 1;
  }
}
@keyframes tech-pulse {
  0%, 100% {
    opacity: 0.5;
  }
  50% {
    opacity: 1;
  }
}
@keyframes health-pulse {
  0%, 100% {
    opacity: 0.3;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.2);
  }
}
@keyframes research {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
/* Responsive Design */
@media (max-width: 768px) {
  .industries-overview {
    padding: 60px 0;
  }
  .industries-overview .center-heading h2 {
    font-size: 32px;
  }
  .industry-detail-section {
    padding: 80px 0;
  }
  .industry-detail-section h2 {
    font-size: 28px;
  }
  .industry-detail-section .lead {
    font-size: 18px;
  }
  .industry-detail-section .visual-content .industry-visual {
    height: 250px;
    margin-top: 40px;
  }
  .success-stories-section {
    padding: 60px 0;
  }
  .success-stories-section .center-heading h2 {
    font-size: 32px;
  }
  .cta-section {
    padding: 60px 0;
  }
  .cta-section .cta-content h2 {
    font-size: 28px;
  }
  .cta-section .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  .cta-section .cta-buttons .btn {
    width: 100%;
    max-width: 300px;
  }
}

/*# sourceMappingURL=style.css.map */
