@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
:root {
  color-scheme: light;
  font-family: "Plus Jakarta Sans", sans-serif;
  color: #17233d;
  background: #f7f9fd;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Plus Jakarta Sans", sans-serif;
  overflow-x: hidden;
  background:
    radial-gradient(circle at top left, rgba(19, 103, 159, 0.08), transparent 28%),
    linear-gradient(180deg, #fcfcfc 0%, #f6f8fb 100%);
}
body.page-loading {
  overflow: hidden;
}
.page-loader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  background:
    radial-gradient(circle at top left, rgba(19, 103, 159, 0.16), transparent 30%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(237, 245, 255, 0.98) 100%);
  opacity: 1;
  visibility: visible;
  transition: opacity 0.45s ease, visibility 0.45s ease;
}
.page-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.page-loader__inner {
  display: grid;
  justify-items: center;
  gap: 1rem;
  text-align: center;
}
.page-loader__mark {
  width: 76px;
  height: 76px;
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
 
  animation: loaderFloat 1.8s ease-in-out infinite;
}
.page-loader__mark img {
  width: 76px;
  height: 76px;
}
.page-loader__track {
  width: min(220px, 72vw);
  height: 6px;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(19, 103, 159, 0.12);
}
.page-loader__bar {
  width: 45%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #f27b27 0%, #13679f 100%);
  animation: loaderSlide 1.2s ease-in-out infinite;
}
.page-loader__text {
  margin: 0;
  color: #0b2f55;
  font-family: Poppins, sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.04em;
}
@keyframes loaderSlide {
  0% {
    transform: translateX(-120%);
  }
  100% {
    transform: translateX(320%);
  }
}
@keyframes loaderFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}
.site-header {
  background: rgba(255, 255, 255, 0.96);
  padding: 1.2rem 0;
  transition: all 0.3s ease;
  border-bottom: 1px solid rgb(255 255 255 / 50%);
}
.site-header.header-scrolled {
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 14px 40px rgba(15, 23, 42, 0.08);
}
.navbar-collapse.show {
  flex-grow: 1;
  flex-basis: 100%;
  align-items: center;
  position: absolute;
  top: 93px;
  background: #fff;
  left: 0;
  right: 0;
}
.navbar-toggler:focus {
  border: none;
  box-shadow: none;
}
.custom-toggler {
  width: 45px;
  height: 45px;
  border: none;
  background: transparent;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  padding: 0;
  box-shadow: none !important;
}

.custom-toggler .toggler-line {
  width: 28px;
  height: 2px;
  background: #000;
  border-radius: 20px;
  transition: all 0.3s ease;
}

.custom-toggler.active .toggler-line:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.custom-toggler.active .toggler-line:nth-child(2) {
  opacity: 0;
}

.custom-toggler.active .toggler-line:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}
.about-disc {
  color: #383838;
  font-family: Poppins;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 180%; /* 32.4px */
}
@media (max-width: 991px) {
  .site-header .container {
    justify-content: flex-start;
    flex-wrap: wrap;
    align-items: center;
    gap: 0;
  }
  .navbar-toggler {
    order: 2;
    margin-left: auto;
    margin-right: 0.5rem;
  }
  .btn-outline-light {
    order: 3;
    margin-left: 0;
  }
  .navbar-collapse {
    order: 4;
    width: 100%;
  }
  .navbar-collapse.show {
    top: 100%;
    background: rgba(255, 255, 255, 0.98);
    z-index: 999;
    box-shadow: 0 20px 45px rgba(15, 23, 42, 0.12);
  }
  .navbar-nav {
    flex-direction: column;
    gap: 0.75rem;
    padding: 1rem 1rem 1.5rem;
  }
  .navbar-nav .nav-item {
    width: 100%;
  }
  .navbar-nav .nav-link {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }
}
.brand-text {
  font-size: clamp(1rem, 1.2vw, 1.15rem);
  letter-spacing: -0.03em;
  font-weight: 700;
}
.hero-section {
  min-height: 100vh;
  padding-top: 120px;
  padding-bottom: 80px;
  background: url("../img/hero-bg-img.png") center right / cover no-repeat;
  position: relative;
  display: flex;
}
.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    270deg,
    rgb(248 248 248 / 0%) 0%,
    rgba(248, 248, 248, 0.9) 66.81%,
    #f8f8f8 100%
  );
  z-index: 1;
}
.hero-section::after {
  content: "";
  position: absolute;
  inset: auto auto 70px 4%;
  width: 240px;
  height: 240px;
  border-radius: 40px;
  background: linear-gradient(135deg, rgba(19, 103, 159, 0.14), rgba(255, 255, 255, 0));
  filter: blur(8px);
  z-index: 1;
}
.hero-badge,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1rem;
  color: #13679f;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.hero-badge::before,
.section-kicker::before {
  content: "";
  width: 34px;
  height: 2px;
  border-radius: 999px;
  background: #f27b27;
}
.eyebrow {
  color: #07103d;
  font-size: clamp(0.8rem, 1vw, 0.9rem);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.hero-title {
  font-size: clamp(3rem, 4vw, 4.6rem);
  max-width: 770px;
  color: #010205;
  font-style: normal;
  font-weight: 600;
  line-height: 110%;
  letter-spacing: -2.16px;
  font-family: "Poppins", sans-serif;
}
.text-highlight {
  color: #f7252c;
}
.hero-copy {
  max-width: 580px;
  color: #383838;
  font-size: clamp(0.95rem, 1.1vw, 1rem);
  font-style: normal;
  font-weight: 400;
  line-height: 180%;
}
.hero-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  max-width: 760px;
  margin-top: 2rem;
}
.hero-meta-card {
  padding: 1.15rem 1.2rem;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(19, 103, 159, 0.12);
  box-shadow: 0 16px 40px rgba(7, 22, 61, 0.08);
  backdrop-filter: blur(10px);
}
.hero-meta-card span {
  display: block;
  margin-bottom: 0.35rem;
  color: #5f6b7a;
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.hero-meta-card strong {
  color: #07103d;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.45;
}
.hero-actions {
  position: relative;
  z-index: 2;
}
.hero-btn {
  min-width: 190px;
  padding: 0.95rem 1.4rem;
  border-radius: 999px;
  font-weight: 700;
  box-shadow: 0 14px 30px rgba(19, 103, 159, 0.12);
}
.hero-btn.btn-primary {
  background: #13679f;
  border-color: #13679f;
}
.hero-btn.btn-primary:hover {
  background: #0f5787;
  border-color: #0f5787;
}
.hero-btn-secondary {
  border-width: 1px;
  color: #07103d;
  background: rgba(255, 255, 255, 0.7);
}
.hero-btn-secondary:hover {
  color: #fff;
  background: #07103d;
  border-color: #07103d;
}
.hero-floating-card {
  margin-left: auto;
  max-width: 410px;
  padding: 1.8rem;
  border-radius: 32px;
  background: linear-gradient(160deg, rgba(3, 25, 59, 0.92), rgba(19, 103, 159, 0.92));
  color: #fff;
  box-shadow: 0 30px 70px rgba(7, 22, 61, 0.22);
  backdrop-filter: blur(8px);
}
.hero-floating-label {
  margin-bottom: 1.2rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.hero-floating-points {
  display: grid;
  gap: 1rem;
}
.hero-point {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
  padding: 1rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}
.hero-point:first-child {
  padding-top: 0;
  border-top: 0;
}
.hero-point-number {
  min-width: 42px;
  height: 42px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-weight: 700;
}
.hero-point p {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.7;
}
.hero-image-wrapper {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
  padding-left: 4rem;
}
.hero-image-wrapper img {
  border-radius: 1.8rem;
  box-shadow: 0 40px 80px rgba(7, 22, 61, 0.12);
}
.navbar-dark .navbar-nav .nav-link {
  color: #020407;
  font-size: clamp(0.85rem, 0.9vw, 0.95rem);
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link:focus {
  color: #f7252c;
}
.hero-title,
.hero-copy,
.hero-section a img,
.service-card,
.about-section img,
.work-image img,
.info-card,
.benefit-card,
.benefits-panel-large,
.testimonial-card,
.service-shap {
  will-change: transform;
}
.btn-outline-light {
  border-radius: 50px;
  border: 1px solid #fff;
  padding: 13px 16px;
  color: #fff;
  font-size: clamp(0.95rem, 1vw, 1rem);
  font-style: normal;
  font-weight: 600;
  line-height: 140%;
  letter-spacing: -0.32px;
}
.header-scrolled .btn-outline-light {
  background: #22659c;
}
.btn-outline-light:hover {
  color: #fff;
  background: #f7252c;
}
.btn-dark {
  background: #07103d;
  border: none;
}
.btn-dark:hover {
  background: #0f2662;
}
.services-card {
  border-radius: 35px;
background: #e2eeff;
  position: relative;
  padding: 76px;
  box-shadow: 0 24px 60px rgba(19, 103, 159, 0.08);
  padding-bottom: 100px;
}
.service-shap {
  position: absolute;
  top: -74px;
  z-index: 99;
}

.service-step-section {
  padding-bottom: 0;
  margin-top: -30px;
  position: relative;
  z-index: 9;
}
.technology-slider {
  margin: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
  align-items: stretch;
}
.technology-slide {
  min-width: 0;
}
.technology-slider.is-enhanced {
  display: block;
  gap: 0;
}
.technology-slider.is-enhanced .technology-slide {
  padding: 0 14px;
}
.technology-slider .slick-list {
  margin: 0 -14px;
  padding: 12px 10px 42px;
}
.technology-slider .slick-track {
  display: flex;
}
.technology-slider .slick-slide {
  height: inherit;
}
.technology-slider .slick-slide > div {
  height: 100%;
}
.technology-slider .slick-slide {
  opacity: 0.78;
  transition: opacity 0.28s ease;
}
.technology-slider .slick-active {
  opacity: 1;
}
.technology-slider .slick-arrow {
  top: auto;
  bottom: -62px;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: #071b44;
  box-shadow: 0 16px 32px rgba(7, 27, 68, 0.16);
  z-index: 2;
  padding-top: 2px;
}
.technology-slider .slick-prev {
  left: 50%;
  right: auto;
  transform: translateX(-47px);
}
.technology-slider .slick-next {
  right: auto;
  left: 50%;
  transform: translateX(10px);
}
.technology-slider .slick-prev::before,
.technology-slider .slick-next::before {
  color: #fff;
  font-size: 24px;
  opacity: 1;
}
.technology-slider .slick-dots {
  position: static;
  display: flex !important;
  justify-content: center;
  gap: 0.35rem;
  margin-top: 2.75rem;
}
.technology-slider .slick-dots li {
  width: 10px;
  height: 10px;
  margin: 0;
}
.technology-slider .slick-dots li button {
  width: 10px;
  height: 10px;
  padding: 0;
}
.technology-slider .slick-dots li button::before {
  width: 10px;
  height: 10px;
  color: #9db8d7;
  opacity: 1;
  font-size: 10px;
}
.technology-slider .slick-dots li.slick-active button::before {
  color: #13679f;
}
.services-wrapper {
  background: #daf4ff;
  border-radius: 35px;
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}
.section-title {
  font-size: 35px;
  color: #010205;
  font-style: normal;
  font-weight: 600;
  line-height: 1.1;
  font-family: Poppins;
}
.section-copy {
  color: #536081;
  font-size: clamp(0.95rem, 1vw, 1.05rem);
  line-height: 1.9;
}
.service-card-dark {
  background: linear-gradient(135deg, #1e5a96 0%, #2a7ab8 100%);
  border: none;
  border-radius: 2rem;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease; 
}
.service-card-dark:hover {
  transform: translateY(-8px); 
}
.service-icon {
  filter: brightness(0) invert(1);
}
.service-shape-bg {
  position: absolute;
  top: -20px;
  right: 30px;
  opacity: 0.2;
  pointer-events: none;
  z-index: 0;
}
.service-shape-bg img {
  max-width: 400px;
  width: 100%;
  height: auto;
}
.info-card {
  border-radius: 20px;
  background: #fff;
  padding: 32px;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.06);
}
.service-card {
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 1.6rem;
}
.service-card h3 {
  color: #fff;
  text-align: center;
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin: 0;
}
.service-step-number {
  position: absolute;
  top: 1rem;
  left: 1rem;
  width: 55px;
  height: 55px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.12);
  color: #d4e7ff;
  font-size: 0.85rem;
  font-weight: 700;
}
.info-card h3 {
  color: #010205;
  font-family: Poppins;
  font-size: clamp(1.25rem, 2vw, 1.6rem);
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
  letter-spacing: -0.78px;
}
.info-card p {
  overflow: hidden;
  color: #4a4a4a;
  text-overflow: ellipsis;
  font-family: Poppins;
  font-size: clamp(0.85rem, 0.95vw, 0.95rem);
  font-style: normal;
  font-weight: 300;
  line-height: 160%;
}
.benefit-card h3 {
  font-family: Poppins;
  font-size: clamp(1.7rem, 2.2vw, 2rem);
  font-style: normal;
  font-weight: 600;
  line-height: 130%;
  letter-spacing: -0.32px;
}

.benefits-panel-large .section-title {
  color: #13679f;
  font-family: Poppins;
  font-size: clamp(2rem, 5vw, 3.8rem);
  font-style: normal;
  font-weight: 600;
  line-height: 110%;
}
.benefits-panel-large p {
  color: #13679f;
  font-family: Poppins;
  font-size: clamp(1rem, 1.2vw, 1.15rem);
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}
.benefits-panel-large {
  border-radius: 40px;
  background: #daf4ff;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: end;
}
.benefits-panel-bg {
  position: absolute;
  bottom: 30%;
  left: 12%;
}
.benefits-panel-bg img {
  width: 320px;
  height: auto;
}
.benefits-panel-large .section-title,
.benefits-panel-large p {
  position: relative;
  z-index: 1;
}
.benefit-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  border-radius: 32px;
  background: #fff;
  box-shadow: 0 4px 15px 0 rgba(0, 0, 0, 0.05);
}
.benefit-card p {
  color: #13679f;
  font-family: Poppins;
  font-size: clamp(0.95rem, 1vw, 1rem);
  font-style: normal;
  font-weight: 400;
  line-height: 170%;
}
.benefit-card-white {
  background: #ffffff;
}
.benefit-card-blue {
  background: #13679f;
}
.benefit-card-light {
  background: #d0effd;
}
.benefit-card-white h3,
.benefit-card-light h3 {
  color: #083f73;
}
.benefit-card-blue h3,
.benefit-card-blue p {
  color: #ffffff;
}
.benefit-card img {
  margin-bottom: 1rem;
}
.service-card p,
.info-card p,
.benefits-panel p {
  color: #536081;
}
.service-card {
  min-height: 280px;
  border-radius: 30px;
  background: #011a3d;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden; 
}
.service-card-creative {
  min-height: 235px;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 2rem;
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.08), transparent 24%),
    radial-gradient(circle at bottom left, rgba(95, 160, 255, 0.18), transparent 30%),
    linear-gradient(160deg, #031b44 0%, #082a61 52%, #0a1f43 100%);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition:
    transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.4s ease,
    border-color 0.3s ease,
    background-position 0.45s ease;
  background-size: 100% 100%, 100% 100%, 100% 100%;
}
.service-card-creative::before {
  content: "";
  position: absolute;
  inset: -35% auto auto -20%;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.18), transparent 68%);
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
/* .service-card-creative::after {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  pointer-events: none;
  transition: inset 0.32s ease, border-color 0.32s ease, opacity 0.32s ease;
} */
.service-card-creative h3 {
  position: relative;
  z-index: 1; 
  margin: 0;
  text-align: left;
  font-size: clamp(1.2rem, 1.8vw, 1.45rem);
  line-height: 1.3;
  font-weight: 600;
  transition: transform 0.32s ease, color 0.32s ease;
}
.service-label {
  position: relative;
  z-index: 1;
  margin-bottom: 0.8rem;
  color: rgba(202, 223, 255, 0.82);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: transform 0.32s ease, letter-spacing 0.32s ease, color 0.32s ease;
}
.service-card-creative .service-step-number {
  transition: transform 0.32s ease, background 0.32s ease, color 0.32s ease;
}
.service-card-creative:hover,
.service-card-creative:focus-within {
  transform: translateY(-12px) scale(1.01);
  box-shadow: 0 30px 70px rgba(3, 27, 68, 0.28);
  border-color: rgba(159, 209, 255, 0.28);
}
.service-card-creative:hover::before,
.service-card-creative:focus-within::before {
  opacity: 1;
  transform: scale(1);
}
.service-card-creative:hover::after,
.service-card-creative:focus-within::after {
  inset: 14px;
  border-color: rgba(255, 255, 255, 0.12);
}
.service-card-creative:hover .service-label,
.service-card-creative:focus-within .service-label {
  transform: translateY(-4px);
  letter-spacing: 0.2em;
  color: #d8ebff;
}
.service-card-creative:hover h3,
.service-card-creative:focus-within h3 {
  transform: translateY(-2px);
  color: #ffffff;
}
.service-card-creative:hover .service-step-number,
.service-card-creative:focus-within .service-step-number {
  transform: scale(1.08);
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
}
.technology-grid .technology-slide:nth-child(4n + 2) .service-card-creative,
.technology-grid .technology-slide:nth-child(4n + 4) .service-card-creative {
  background:
    radial-gradient(circle at top left, rgba(242, 123, 39, 0.18), transparent 26%),
    radial-gradient(circle at bottom right, rgba(255, 255, 255, 0.08), transparent 28%),
    linear-gradient(160deg, #07214e 0%, #123a73 58%, #071a3a 100%);
}
.technology-grid .technology-slide:nth-child(5n) .service-card-creative {
  background:
    radial-gradient(circle at top right, rgba(114, 226, 255, 0.16), transparent 24%),
    radial-gradient(circle at bottom left, rgba(255, 255, 255, 0.08), transparent 32%),
    linear-gradient(160deg, #0a234b 0%, #0f3268 50%, #05162f 100%);
}
.service-card::before {
  content: "";
  position: absolute;
  inset: auto -10% -35% auto;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
}
.experience-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.1rem;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.4;
}
.about-section {
  padding-top: 20px;
  padding-bottom: 80px;
}
.about-image-wrap {
  position: relative;
  padding: 1.2rem;
  border-radius: 42px;
  background: linear-gradient(135deg, #f7fbff 0%, #edf4fb 100%);
  box-shadow: 0 25px 60px rgba(15, 23, 42, 0.07);
}
.about-image-wrap img {
  width: 100%;
  border-radius: 30px;
}
.about-highlight {
  margin-top: 1.75rem;
  padding: 1.3rem 1.4rem;
  border-left: 4px solid #f27b27;
  border-radius: 0 24px 24px 0;
  background: linear-gradient(90deg, rgba(242, 123, 39, 0.08), rgba(19, 103, 159, 0.04));
}
.about-highlight strong {
  display: block;
  margin-bottom: 0.45rem;
  color: #07103d;
  font-family: Poppins;
  font-size: 1.05rem;
}
.about-highlight p {
  color: #516072;
  line-height: 1.8;
}
.experience-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}
.experience-pill {
  background: linear-gradient(135deg, #f6fbff 0%, #eef5fd 100%);
  border: 1px solid rgba(19, 103, 159, 0.1);
  color: #0e4f7d;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.05);
}

.work-section {
  padding-top: 80px;
  padding-bottom: 80px;
}
.work-shell {
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: 38px;
  background: rgba(255, 255, 255, 0.64);
  box-shadow: 0 20px 55px rgba(15, 23, 42, 0.06);
  border: 1px solid rgba(19, 103, 159, 0.08);
}
.industry-experience-shell {
  margin-top: 2rem;


}
.industry-experience-head {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1rem;
  margin-bottom: 1.35rem;
}
.industry-slider {
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  align-items: stretch;
}
.industry-slide {
  min-width: 0;
}
.industry-slider.is-enhanced {
  display: block;
  gap: 0;
}
.industry-slider.is-enhanced .industry-slide {
  padding: 0 10px;
}
.industry-slider .slick-list {
  margin: 0 -10px;
  padding: 8px 2px 8px;
}
.industry-slider .slick-track {
  display: flex;
}
.industry-slider .slick-slide {
  height: inherit;
}
.industry-slider .slick-slide > div {
  height: 100%;
}
.industry-card {
  position: relative;
  height: 100%;
  min-height: 210px;
  padding: 1.5rem;
  border-radius: 26px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(244, 249, 255, 0.98));
  border: 1px solid rgba(19, 103, 159, 0.08); 
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease, background 0.35s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
 
.industry-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 56px rgba(15, 23, 42, 0.1);
  border-color: rgba(19, 103, 159, 0.18);
}
.industry-card-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 48px;
  width: 48px;
  height: 48px;
  margin-bottom: 1.1rem;
  padding: 0 0.75rem;
  border-radius: 999px;
  background: rgba(19, 103, 159, 0.08);
  color: #13679f;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}
.industry-card h3 {
  position: relative;
  z-index: 1;
  margin: 0;
  color: #07103d;
  font-family: Poppins, sans-serif;
  font-size: clamp(1.12rem, 1.45vw, 1.3rem);
  line-height: 1.32;
  font-weight: 600;
}
.industry-slide:nth-child(3n + 2) .industry-card {
  background:
    linear-gradient(135deg, rgba(248, 252, 255, 0.94), rgba(238, 247, 255, 0.98));
}
.industry-slide:nth-child(3n + 3) .industry-card {
  background:
    linear-gradient(135deg, rgba(255, 250, 245, 0.96), rgba(246, 249, 255, 0.98));
}
.industry-slide:nth-child(3n + 2) .industry-card::after {
  background: linear-gradient(90deg, #13679f 0%, #9fd8ff 100%);
}
.industry-slide:nth-child(3n + 3) .industry-card::after {
  background: linear-gradient(90deg, #f27b27 0%, #ffd0a8 100%);
}

.benefits-section {
  padding-top: 60px;
  padding-bottom: 60px;
  background:
    linear-gradient(180deg, #f5f7fa 0%, #f9fbfd 100%) !important;
}
.partnership-shell {
  position: relative;
  padding: clamp(1.8rem, 3.5vw, 3rem);
  border-radius: 42px;
  background:
    radial-gradient(circle at top center, rgba(129, 180, 255, 0.18), transparent 24%),
    linear-gradient(180deg, #fbfdff 0%, #f0f6ff 100%); 
}
.partnership-header {
  max-width: 760px;
  margin: 0 auto 2.4rem;
  text-align: center;
}
.partnership-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  background: rgba(19, 103, 159, 0.08);
  color: #13679f;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.partnership-title {
  margin: 1rem auto 0; 
  color: #09162d;
  font-family: Poppins, sans-serif;
  font-size: clamp(2.2rem, 4.4vw, 40px);
  font-weight: 600;
  line-height: 1.02;
}
.partnership-subcopy {
  max-width: 620px;
  margin: 1rem auto 0;
  color: #69778c;
  font-family: Poppins, sans-serif;
  font-size: clamp(0.98rem, 1.1vw, 1.05rem);
  line-height: 1.8;
}
.partnership-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
  align-items: stretch;
}
.partnership-card {
  position: relative;
  min-height: 100%;
  padding: 1.6rem;
  border-radius: 28px;
  overflow: hidden;
 background: rgba(252, 249, 246, 0.94);
  border: 1px solid rgba(19, 103, 159, 0.08);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.05);
  backdrop-filter: blur(10px);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}
/* .partnership-card::before {
  content: "";
  position: absolute;
  inset: auto -8% -18% auto;
  width: 140px;
  height: 140px;
  border-radius: 32px;
  background: radial-gradient(circle, rgba(19, 103, 159, 0.1), transparent 68%);
  transform: rotate(22deg);
} */
.partnership-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 28px 60px rgba(15, 23, 42, 0.08);
  border-color: rgba(19, 103, 159, 0.16);
}
.partnership-card-featured {
  /* min-height: 220px; */
  background:
    radial-gradient(circle at top center, rgba(255, 255, 255, 0.14), transparent 26%),
    linear-gradient(180deg, #2558e8 0%, #2359d9 100%);
}
.partnership-card-index,
.partnership-card h3,
.partnership-card p {
  position: relative;
  z-index: 1;
}
.partnership-card-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 48px;
  height: 30px;
  padding: 0 0.75rem;
  border-radius: 999px;
  background: rgba(19, 103, 159, 0.08);
  color: #000;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}
.partnership-card h3 {
margin: 1rem 0 0;
    color: #143d75;
    font-family: Poppins, sans-serif;
    font-size: 23px;
    line-height: 33px;
    font-weight: 500;
     padding-top: 130px;
}
.partnership-card p {
  margin: 1rem 0 0; 
  color: #3b6d9e;
  font-family: Poppins, sans-serif;
  font-size: 0.98rem;
  line-height: 1.7;
}
.partnership-card-featured .partnership-card-index {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
}
.partnership-card-featured h3,
.partnership-card-featured p {
  color: #fff;
} 
.benefits-panel {
  min-height: 320px;
}
.benefit-card {
  min-height: 165px;
}
.testimonial-section {
  padding-top: 80px;
  padding-bottom: 80px;
  background: #f4f6f8;
}
.testimonial-card {
  margin: 0 auto;
  padding: clamp(1.5rem, 3vw, 2.8rem);
  border-radius: 36px;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.06);
}
.testimonial-quote {
  margin: 0 auto;
  color: #010205;
  font-family: Poppins;
  font-size: clamp(1rem, 3vw, 2.4rem);
  font-style: normal;
  font-weight: 400;
  line-height: 160%;
}
.testimonial-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  margin-top: 2rem;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex: 1;
  justify-content: flex-start;
}
.author-avatar img{
    width: 70px;
    height: 70px;
    object-fit: cover;
    box-shadow: 0 18px 30px rgba(0, 0, 0, 0.08);
    border-radius: 70px;
    border: 2px solid rgba(255, 255, 255, 0.50);
}

.author-info strong {
  display: block;
  color: #010205;
  font-family: Poppins;
  font-size: clamp(1.1rem, 1.5vw, 1.4rem);
  font-style: normal;
  font-weight: 600;
  line-height: 180%;
}
.author-info p {
  margin: 0;
  font-family: Poppins;
  font-size: clamp(0.95rem, 1vw, 1rem);
  font-style: normal;
  font-weight: 400;
  line-height: 180%;
}
.testimonial-controls {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex: none;
}
.btn-test-slider {
  width: 88px;
  height: 56px;
  color: #0f172a;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(1rem, 2vw, 1.3rem);
  transition: all 0.2s ease;
  border-radius: 70px;
  border: 1px solid #010205;
  background: transparent;
}
.btn-test-slider:hover {
  background: #010205;
  color: #ffffff;
  border-color: #010205;
}
.btn-test-slider:hover svg path {
  stroke: #fff;
}

.testimonial-count {
  min-width: 62px;
  text-align: center;
  color: #010205;
  font-family: "Plus Jakarta Sans";
  font-size: clamp(0.95rem, 1vw, 1rem);
  font-style: normal;
  font-weight: 600;
  line-height: 180%;
  text-decoration-line: underline;
  text-underline-offset: auto;
}
.about-copy-stack p {
  color: #475569;
  font-family: Poppins, sans-serif;
  font-size: clamp(1rem, 1.1vw, 1.08rem);
  line-height: 1.9;
}

@media (max-width: 991px) {
  .testimonial-row {
    flex-direction: column;
    align-items: self-start;
  }
  .testimonial-controls {
    width: 100%;
  }
}
.footer-cta-section {
  background: linear-gradient(135deg, #0f3571 0%, #102d5d 100%);
}
.site-footer {
  background: #f8f8f8;
}
.footer-inner {
  border-radius: 40px;
  border: 0 solid rgba(13, 12, 12, 0.15);
  background: linear-gradient(135deg, #f6f6f6 0%, #eceff3 100%);
  padding: 48px;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.05);
}
.footer-logo {
  max-width: 190px;
  height: auto;
}
.footer-label {
  margin: 0;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #0d0c0c;
  font-family: Poppins;
  font-size: clamp(0.95rem, 1vw, 1rem);
  font-style: normal;
  font-weight: 600;
  line-height: 150%;
}
.footer-support-link {
  display: block;
  margin-top: 0;
  text-decoration: none;
  color: #0d0c0c;
  font-family: Poppins;
  font-size: clamp(0.95rem, 1vw, 1rem);
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  text-decoration-line: none;
}
.footer-support-link:hover {
  color: #13679f;
}
.social-links {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.footer-links-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem 1.5rem;
}
.footer-links-grid a {
  display: inline-block;
  text-decoration: none;
  color: #0d0c0c;
  font-size: clamp(0.95rem, 1vw, 1rem);
  font-style: normal;
  font-weight: 600;
  line-height: 150%;
}
.footer-links-grid a:hover {
  color: #13679f;
}
.footer-app-btn {
  width: 100%;
  max-width: 220px;
  display: block;
}
.footer-bottom {
  border-color: rgba(15, 23, 42, 0.08);
}
.footer-bottom-links a {
  text-decoration: none;
  color: #0d0c0c;
  font-family: Poppins;
  font-size: clamp(0.95rem, 1vw, 1rem);
  font-style: normal;
  font-weight: 300;
  line-height: 150%;
  text-decoration-line: underline;
}
.footer-bottom-links a:hover {
  color: #0f172a;
}
.footer-bottom p {
  color: #0d0c0c;
  font-family: Poppins;
  font-size: clamp(0.95rem, 1vw, 1rem);
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}
.legal-page-hero {
  min-height: 42vh;
  padding: 140px 0 72px;
  background:
    linear-gradient(135deg, rgba(7, 16, 61, 0.94) 0%, rgba(18, 101, 156, 0.92) 100%),
    url("../img/hero-bg-img.png") center right / cover no-repeat;
  position: relative;
  overflow: hidden;
}
.legal-page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top left, rgba(247, 37, 44, 0.18), transparent 34%),
    radial-gradient(circle at bottom right, rgba(255, 255, 255, 0.16), transparent 30%);
  pointer-events: none;
}
.legal-page-shell {
  position: relative;
  z-index: 1;
}
.legal-page-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.85rem;
  font-weight: 700;
}
.legal-page-kicker::before {
  content: "";
  width: 34px;
  height: 2px;
  background: #f7252c;
  border-radius: 999px;
}
.legal-page-title {
  margin-top: 1rem;
  max-width: 820px;
  color: #fff;
  font-family: Poppins, sans-serif;
  font-size: clamp(2.2rem, 4vw, 4.2rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
  font-weight: 700;
}
.legal-page-copy {
  max-width: 720px;
  margin-top: 1rem;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(0.98rem, 1.1vw, 1.08rem);
  line-height: 1.8;
}
.legal-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}
.legal-meta-item {
  padding: 0.75rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  backdrop-filter: blur(12px);
  font-size: 0.95rem;
  font-weight: 600;
}
.legal-content-section {
  padding: 72px 0 88px;
  background:
    linear-gradient(180deg, #f7f9fd 0%, #f3f7fb 100%);
}
.legal-card {
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 24px 70px rgba(7, 16, 61, 0.08);
  border: 1px solid rgba(18, 101, 156, 0.08);
  padding: clamp(1.5rem, 2.5vw, 2.5rem);
}
.legal-section {
  padding-top: 1.5rem;
  margin-top: 1.5rem;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
}
.legal-section:first-child {
  padding-top: 0;
  margin-top: 0;
  border-top: 0;
}
.legal-section h2 {
  color: #010205;
  font-family: Poppins, sans-serif;
  font-size: clamp(1.35rem, 1.8vw, 1.8rem);
  font-weight: 700;
  margin-bottom: 0.75rem;
}
.legal-section h3 {
  color: #010205;
  font-size: 1.05rem;
  font-weight: 700;
  margin-top: 1rem;
  margin-bottom: 0.5rem;
}
.legal-section p,
.legal-section li {
  color: #334155;
  font-size: 1rem;
  line-height: 1.85;
}
.legal-section ul {
  margin: 0.75rem 0 0;
  padding-left: 1.2rem;
}
.legal-sidebar {
  position: sticky;
  top: 112px;
}
.legal-nav {
  display: grid;
  gap: 0.75rem;
}
.legal-nav a {
  display: block;
  padding: 0.95rem 1rem;
  border-radius: 18px;
  background: #f7f9fd;
  color: #0d0c0c;
  text-decoration: none;
  font-weight: 600;
  border: 1px solid rgba(18, 101, 156, 0.08);
}
.legal-nav a:hover {
  background: #eef7fc;
  color: #13679f;
}
.legal-note {
  margin-top: 1rem;
  padding: 1rem 1.1rem;
  border-radius: 18px;
  background: #fff7f7;
  border: 1px solid rgba(247, 37, 44, 0.12);
  color: #7a1c20;
  font-size: 0.95rem;
  line-height: 1.7;
}
@media (max-width: 991px) {
  .footer-inner {
    padding: 3rem 2rem;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 767px) {
  .footer-inner {
    padding: 2rem 1.5rem;
  }
  .footer-links-grid {
    grid-template-columns: 1fr;
  }
  .footer-app-btn {
    max-width: 100%;
  }
.industry-experience-shell{
  padding-top: 0px;
  margin-top: 0px;
}
.benefits-section{
  padding-top: 0;
}
}
@media (max-width: 991px) {
  .legal-page-hero {
    min-height: auto;
    padding: 120px 0 56px;
  }
  .section-title{
    font-size: 25px;
  }
  .legal-content-section {
    padding: 56px 0 72px;
  }
  .legal-sidebar {
    position: static;
    margin-bottom: 1.5rem;
  }
  .partnership-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .partnership-card-featured {
    min-height: 260px;
  }
}
@media (max-width: 575px) {
  .legal-meta-item {
    width: 100%;
  }
}
.work-section,
.testimonial-section {
  padding-top: 60px;
  padding-bottom: 60px;
  background: url("../img/bg-noise.png") center right / cover no-repeat;
}
.work-dics {
  color: #737373;
  font-family: Poppins;
  font-size: clamp(1rem, 1.2vw, 1.15rem);
  font-style: normal;
  font-weight: 300;
  line-height: 200%;
}
.work-image img {
  border-radius: 35px;
  box-shadow: 0 24px 60px rgba(7, 22, 61, 0.14);
}

.app-dawld-section img {
  height: 54px;
}
.info-card-index {
  display: inline-flex; 
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: #edf5ff;
  color: #13679f;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
@media (max-width: 991px) {
  .hero-section {
    padding-top: 140px;
  }
  .hero-meta {
    grid-template-columns: 1fr;
  }
  .hero-floating-card {
    margin-left: 0;
    max-width: 100%;
  }
  .service-shap {
    display: none;
  }
 
  .hero-section::before {
    width: 100%;
    top: 0;
  }
  .industry-experience-head {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .hero-title {
    font-size: 35px;
    letter-spacing: 1px;
  }
  .hero-image-wrapper {
    padding-left: 0;
  }
  .services-card {
    position: relative;
    padding: 30px;
  }
  .technology-slider {
    margin: 0;
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .technology-slider.is-enhanced .technology-slide {
    padding: 0 8px;
  }
  .technology-slider .slick-arrow {
    display: none !important;
  }
  .technology-slider .slick-list {
    margin: 0 -8px;
    padding: 8px 4px 18px;
    height: 250px;
  }
  .hero-section {
    padding-top: 140px;
    min-height: 70vh;
  }
  .hero-card {
    padding: 1.5rem;
  }
  .industry-experience-shell {
    padding: 1rem;
    border-radius: 24px;
  }
  .industry-slider .slick-list {
    margin: 0 -8px;
    padding: 6px 2px 6px;
  }
  .industry-slider {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .industry-slider.is-enhanced .industry-slide {
    padding: 0 8px;
  }
  .industry-card {
    min-height: 170px;
    padding: 1.2rem;
    border-radius: 20px;
  }
  .industry-card h3 {
    font-size: 1rem;
  }
  .industry-card-count {
    min-width: 42px;
    height: 28px;
    margin-bottom: 0.8rem;
  }
  .partnership-shell {
    padding: 1.5rem;
    border-radius: 26px;
  }
  .partnership-header {
    margin-bottom: 1.6rem;
  }
  .partnership-title {
    font-size: 25px;
  }
  .about-section{
    padding-bottom: 20px;
  }
  .partnership-subcopy {
    font-size: 0.95rem;
  }
  .partnership-card-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .partnership-card,
  .partnership-card-featured {
    min-height: 190px;
    padding: 1.25rem;
    border-radius: 22px;
  }
  .partnership-card h3 {
    max-width: 100%;
    font-size: 1.2rem;
  }
  .partnership-card p {
    max-width: 100%;
    font-size: 0.92rem;
  }
  .about-section .rounded-circle {
    width: 140px;
    height: 140px;
  }
  .section-title {
    line-height: 1.4;
  }
  .section-title br {
    display: none;
  }
  .service-card h3 {
    font-size: clamp(0.95rem, 1.1vw, 1rem);
  }
  .service-card-creative {
    min-height: 190px !important;
    padding: 1.35rem;
  }
  .service-step-section{
    padding-bottom: 0;
  }
  .service-card-creative h3 {
    max-width: 100%;
    font-size: 1rem;
    line-height: 1.35;
  }
  .service-label {
    margin-bottom: 0.6rem;
    font-size: 0.72rem;
  }
  .service-step-number {
    width: 36px;
    height: 36px;
    font-size: 0.78rem;
  }
  .hero-btn {
    width: 100%;
    min-width: 0;
  }
  .service-card {
    min-height: auto;
  }
  .service-card {
    min-height: auto;
  }
  .benefits-section {
    overflow-x: hidden;
  }
  .testimonial-card,
  .work-shell,
  .about-image-wrap {
    border-radius: 28px;
  }
  .benefits-section .row.g-5,
  .about-section .row.g-5 {
    margin-left: 0;
    margin-right: 0;
  }
  .benefits-section .row.g-5 > [class*="col-"],
  .about-section .row.g-5 > [class*="col-"] {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }
  img#headerLogo {
    width: 157px;
  }
  .site-header {
    padding: 0.7rem 0 !important;
  }
  .site-header {
    background: rgba(255, 255, 255, 0.96);
  }
  .btn-outline-light {
    background: #22659c;
  }
  .benefits-panel-bg {
    bottom: 8%;
    left: 22%;
  }
  .benefits-panel-bg img {
    width: 240px; 
  }
  .btn-test-slider {
    width: 88px;
    height: 40px; 
  }
}
