@import url(https://fonts.googleapis.com/css2?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);
ul {
  list-style: none;
}
a {
  text-decoration: none;
}
button {
  cursor: pointer;
  border: none;
  outline: none;
}
img {
  max-width: 100%;
  height: auto;
}
@font-face {
  font-family: "MMRegular";
  src: url(../assets/fonts/mm-regular.ttf) format("truetype");
}
@font-face {
  font-family: "MMBold";
  src: url(../assets/fonts/mm-bold.ttf) format("truetype");
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif, "MMRegular";
}
html {
  scroll-behavior: smooth;
}
html,
body {
  overflow-x: hidden;
}
body,
button,
input,
textarea {
  font-family: "Poppins", sans-serif, "MMBold";
}
body {
  color: #1a1a1a;
  transition: 0.4s;
}
body.no-scroll {
  overflow: hidden;
  height: 100vh;
  touch-action: none;
}
main {
  padding-top: 80px;
}
p {
  line-height: 32px;
}
::-webkit-scrollbar {
  width: 0;
  border-radius: 0.5rem;
}
.pill {
  background-color: #e6edf9;
  border-radius: 20px;
  color: #094fc2;
  padding: 4px 16px;
  font-weight: 500;
  font-size: 12px;
  line-height: 24px;
}
.menu-btn {
  position: relative;
  overflow: hidden;
  margin-left: 10px;
  padding: 20px 36px;
  border: 4px solid #e8e8e8;
  border-radius: 40px;
  background-color: #094fc2;
  color: #fff;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: background-color 0.4s ease;
}
.menu-btn::before,
.menu-btn::after {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  background-image: url(../fonts/white-dotted-arrow.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transition:
    transform 0.4s ease,
    opacity 0.4s ease;
}
.menu-btn::before {
  transform: translateX(0);
  opacity: 1;
}
.menu-btn::after {
  transform: translateX(-40px);
  opacity: 0;
}
.menu-btn:hover {
  background-color: #06388a;
}
.menu-btn:hover::before {
  transform: translateX(40px);
  opacity: 0;
}
.menu-btn:hover::after {
  transform: translateX(0);
  opacity: 1;
}
.primary-title {
  font-size: 48px;
  font-weight: 400;
  line-height: 62.4px;
  margin-bottom: 24px;
}
@media (max-width: 768px) {
  .primary-title {
    font-size: 28px;
    line-height: 38px;
    margin-bottom: 12px;
  }
}
.primary-desc p {
  font-size: 20px;
  line-height: 40px;
}
@media (max-width: 768px) {
  .primary-desc {
    font-size: 18px;
    line-height: 40px;
  }
}
.mission-title {
  font-size: 20px;
  line-height: 30px !important;
}
@media (max-width: 768px) {
  .mission-title {
    font-size: 18px;
  }
}
@media (max-width: 768px) {
  .mission-desc {
    font-size: 14px;
  }
}
.missionicon,
.visionicon {
  width: 80px;
  height: 80px;
  flex-shrink: 0;
  background: linear-gradient(#094fc2, #8eaee3);
  padding: 16px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
@media (max-width: 768px) {
  .missionicon,
  .visionicon {
    width: 40px;
    height: 40px;
    padding: 8px;
    border-radius: 8px;
  }
}
.missionicon img.mission,
.visionicon img.mission {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.homepage-title {
  margin-top: 24px;
  font-size: 40px;
  font-weight: 400;
  line-height: 56px;
}
@media (max-width: 992px) {
  .homepage-title {
    font-size: 24px;
    line-height: 36px;
    margin-bottom: 12px;
  }
}
.component-padding {
  padding: 96px 0;
}
@media (max-width: 992px) {
  .component-padding {
    padding: 45px 0;
  }
}
.projects-swiper {
  margin-bottom: 48px;
}
.projects-swiper .swiper-wrapper {
  height: fit-content !important;
}
@media (max-width: 768px) {
  .projects-swiper {
    margin-bottom: 0;
  }
  .projects-swiper .swiper-wrapper {
    height: auto;
  }
}
.projects-simple-swiper .swiper-wrapper {
  height: fit-content !important;
}
.gap-24 {
  gap: 26px;
}
.menu-wrapper {
  padding: 12px 32px;
}
.header-container {
  padding: 0 65px;
}
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-size: cover;
  transition:
    background-color 0.3s ease,
    box-shadow 0.3s ease;
}
.nav-link {
  position: relative;
  display: inline-block;
  overflow: hidden;
}
.nav-link .nav-text {
  display: inline-block;
  padding: 8px 16px;
  border: 1px solid rgba(0, 0, 0, 0);
  border-radius: 20px;
  color: #1a1a1a;
}
.nav-link .nav-text:hover {
  border-color: #e8e8e8;
  color: #094fc2;
  background: #f5f5f5;
}
header .navbar {
  transition: all 0.3s ease;
  background-color: rgba(0, 0, 0, 0) !important;
  width: 100%;
  position: sticky;
  top: 0;
  z-index: 99;
}
header.header-scrolled {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: all 0.3s ease;
  border-bottom: 1px solid #dfdfdf;
}
.logo {
  height: 53.55px;
  transition:
    height 0.3s ease,
    transform 0.3s ease;
}
.navbar.scrolled .menu-wrapper {
  padding: 6px 24px;
}
.language-switcher {
  position: relative;
}
.lang-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(0, 0, 0, 0);
  border: none;
  cursor: pointer;
  font-size: 14px;
}
.lang-btn img {
  width: 18px;
}
.lang-dropdown {
  position: absolute;
  top: 40px;
  right: 0;
  background: #fff;
  border-radius: 10px;
  padding: 6px 0;
  list-style: none;
  width: 120px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  opacity: 0;
  transform: translateY(-10px);
  pointer-events: none;
  transition: all 0.25s ease;
}
.lang-dropdown.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.lang-dropdown a {
  display: block;
  padding: 10px 16px;
  cursor: pointer;
  font-size: 14px;
}
.mobile-menu-btn {
  display: none;
  background: rgba(0, 0, 0, 0);
  border: none;
  padding: 6px;
  cursor: pointer;
}
.mobile-menu-btn img {
  width: 22px;
  height: 22px;
}
@media (max-width: 1199.98px) {
  header .navbar {
    padding: 10px 0px;
  }
  header .navbar-scrolled {
    padding: 10px 0px;
  }
}
@media (max-width: 992px) {
  .menu-wrapper {
    display: none;
    padding: 8px 16px;
  }
  .mobile-menu-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  .navbar-nav {
    gap: 16px;
  }
  .nav-link {
    font-size: 14px;
  }
}
@media (max-width: 767.98px) {
  header .navbar {
    padding: 16px 24px;
  }
  header .navbar-scrolled {
    padding: 10px 24px;
  }
  .lang-btn span {
    display: none;
  }
}
@media (max-width: 575.98px) {
  main {
    padding-top: 70px;
  }
  header .navbar {
    padding: 10px 18px;
  }
  header .navbar-scrolled {
    padding: 8px 18px;
  }
}
.menu-card {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(-10px);
  max-width: 800px;
  z-index: 100;
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 18px;
  opacity: 0;
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
}
@media (max-width: 992px) {
  .menu-card {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    max-width: 100%;
    height: 100dvh;
    margin-top: 0;
    border: none;
    border-radius: 0%;
    overflow-x: hidden;
    transform: translateY(-10px);
  }
}
.menu-card.show {
  display: block;
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  width: 90%;
  height: auto;
  padding: 24px;
}
@media (min-width: 2000px) {
  .menu-card.show {
    height: 60vh;
  }
}
@media (max-width: 992px) {
  .menu-card.show {
    transform: translateY(0);
    height: 100dvh;
    max-height: 100dvh;
    overflow-y: auto;
  }
}
.menu-card .row {
  transition: opacity 0.3s ease;
}
@media (max-width: 768px) {
  .menu-card .row {
    --bs-gutter-x: 0;
    margin-left: 0;
    margin-right: 0;
  }
}
.icon-wrapper {
  position: relative;
  width: 48px;
  height: 48px;
  flex-shrink: 0;
}
.submenu-div {
  border-radius: 12px;
  position: relative;
}
.submenu-div .arrow {
  opacity: 0;
}
.submenu-div .sublinks {
  color: #1a1a1a;
  text-decoration: none;
}
.submenu-div:hover {
  background-color: #e6edf9;
  transition: background-color opacity visibility 0.5s ease;
}
.submenu-div:hover .submenu-icon {
  opacity: 0;
  visibility: hidden;
}
.submenu-div:hover .submenu-icon-hover {
  opacity: 1;
  visibility: visible;
  background-color: #094fc2;
}
.submenu-div:hover .arrow {
  opacity: 1;
  visibility: visible;
}
.submenu-div .submenu-icon,
.submenu-div .submenu-icon-hover {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border-radius: 12px;
  padding: 12px;
  transition: opacity 0.3s ease;
}
.submenu-div .submenu-icon {
  background: #e6edf9;
  opacity: 1;
}
.submenu-div .submenu-icon-hover {
  background: #094fc2;
  opacity: 0;
}
.submenu-div .submenu-div:hover .submenu-icon {
  opacity: 0;
}
.submenu-div .submenu-div:hover .submenu-icon-hover {
  opacity: 1;
}
.right-submenu {
  border: 1px solid #e8e8e8;
  border-radius: 12px;
}
@media (max-width: 992px) {
  .right-submenu {
    display: flex;
    align-items: center;
    margin-top: 20px;
    width: 95%;
  }
}
@media (max-width: 480px) {
  .right-submenu {
    display: grid;
    grid-template-columns: 64px 1fr;
    gap: 12px;
    align-items: center;
    width: 100%;
  }
  .right-submenu p {
    margin: 0;
    line-height: 28px;
  }
  .right-submenu .menu-btn {
    grid-column: 1/-1;
    justify-self: end;
    min-width: 88px;
    min-height: 52px;
    padding: 16px 36px;
  }
}
@media (max-width: 992px) {
  .submenu-img {
    width: 20%;
    height: auto;
    border-radius: 12px;
    padding-right: 10px;
  }
}
@media (max-width: 480px) {
  .submenu-img {
    width: 64px;
    padding-right: 0;
  }
}
.mobile-menu-header {
  display: none;
  padding: 16px;
  border-bottom: 1px solid #e8e8e8;
  align-items: center;
}
.mobile-nav-links {
  display: none;
  flex-direction: column;
}
.mobile-nav-links .nav-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 16px;
  font-size: 18px;
  color: #1a1a1a;
  text-decoration: none;
  border-bottom: 1px solid #f5f5f5;
}
@media (max-width: 992px) {
  .menu-card-text,
  .promo-column {
    display: none;
  }
  .menu-card.mobile-main-active .mobile-nav-links {
    display: flex;
  }
  .menu-card.mobile-submenu-active .mobile-nav-links {
    display: none;
  }
  .menu-card.mobile-submenu-active .menu-card-text {
    display: block;
  }
  .menu-card.mobile-submenu-active .promo-column {
    display: block;
    margin-top: 16px;
  }
}
@media (max-width: 992px) {
  .menu-card {
    height: 100dvh;
    padding: 48px 0;
  }
  .menu-card .mobile-menu-header {
    display: block;
    color: #6b6b6b;
    font-size: 14px;
    line-height: 21px;
  }
  .menu-card .sub-item-link {
    padding: 0;
  }
  .menu-card .mobile-menu-header:empty {
    display: none;
  }
}
@media (min-width: 768px) {
  .menu-card .border-top {
    border-top: none !important;
  }
}
@media (max-width: 992px) {
  .sub-items-col {
    display: none !important;
  }
}
.image-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.image-wrapper img {
  display: block;
  width: 100%;
  height: 550px;
  object-fit: fill;
}
@media (max-width: 990px) {
  .image-wrapper img {
    height: auto;
  }
}
.image-wrapper .gradient-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0.95) 15%,
    rgba(255, 255, 255, 0.1),
    rgba(255, 255, 255, 0)
  );
  pointer-events: none;
}
.image-wrapper .gradient-overlay .overlay-text {
  color: #2a2a2a;
  font-size: 1.75rem;
  font-weight: 600;
}
.service-title {
  max-width: 847px;
  width: 100%;
  padding-top: 24px;
  font-weight: 500;
  font-size: 32px;
  line-height: 1.4;
  text-align: center;
  color: #111;
}
.btn-container {
  display: flex;
  justify-content: center;
  align-items: center;
}
.service-btn {
  background-color: #e6edf9;
  color: #094fc2;
  font-size: 12px;
  font-weight: 600;
  padding: 6px 18px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  letter-spacing: 0.5px;
}
.service-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  padding: 32px;
  background-color: #fff;
  border-radius: 20px;
}
.service-card .icon-wrapper {
  width: 80px;
  height: 80px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  background-color: #e6edf9;
}
.service-card .card-title {
  font-weight: 400;
  color: #222;
  margin-bottom: 12px;
}
.service-card .card-content {
  font-size: 16px;
  line-height: 1.6;
  font-weight: 400;
  color: #666;
  line-height: 32px;
}
@media (max-width: 530px) {
  .service-section {
    padding: 48px 16px;
  }
  .service-title {
    font-size: 24px;
    line-height: 1.3;
  }
  .service-card {
    padding: 24px;
  }
}
.swiper-wrapper {
  display: flex !important;
  align-items: stretch !important;
}
.project-swiper-slide {
  display: flex !important;
  height: auto !important;
}
.projects-card {
  background: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(1px);
  -webkit-backdrop-filter: blur(6px);
  border: none !important;
  border-radius: 20px !important;
  width: 100%;
  display: flex !important;
  flex-direction: column !important;
  height: 100% !important;
}
.projects-card .card-body {
  display: flex !important;
  flex-direction: column !important;
  flex-grow: 1 !important;
  height: 100% !important;
  width: auto !important;
  cursor: pointer;
  text-align: start;
  padding: 20px;
  min-height: 204px;
  border: 1px solid #e8e8e8;
  border-radius: 24px;
}
@media (max-width: 575px) {
  .projects-card .card-body {
    margin: 0 10px;
  }
}
.projects-card .card-body h5 {
  font-weight: 400;
  font-size: 24px;
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media (max-width: 768px) {
  .projects-card .card-body h5 {
    font-size: 20px;
  }
}
.projects-card .card-body .clamp-3 {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 16px;
  flex-grow: 1;
}
.projects-card .card-body .projects-image {
  display: flex;
  justify-content: start;
  align-items: center;
  margin-top: auto;
}
.projects-card .card-body .projects-image img {
  width: 100%;
  height: auto;
  border-radius: 14px;
}
.aboutus {
  margin: 154px 0;
}
@media (max-width: 1024px) {
  .aboutus {
    margin: 70px 0;
  }
}
@media (max-width: 768px) {
  .aboutus {
    margin: 35px 0;
  }
}
.aboutus .about-image-wrapper {
  position: relative;
  display: inline-block;
  width: 100%;
  height: 85%;
  padding-bottom: 60px;
}
.aboutus .about-image-wrapper .about-img {
  width: 80%;
  height: 90%;
  display: block;
  margin-left: auto;
  border-radius: 24px;
  object-fit: cover;
}
@media (max-width: 1024px) {
  .aboutus .about-image-wrapper .about-img {
    width: 90%;
  }
}
.aboutus .about-image-wrapper .experience-badge {
  position: absolute;
  top: 60%;
  left: 0;
  width: 231px;
  height: 177px;
  padding: 24px;
  background-color: #e6edf9;
  border: 12px solid #fff;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  z-index: 2;
}
.aboutus .about-image-wrapper .experience-badge h2 {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin: 0 0 8px 0;
}
.aboutus .about-image-wrapper .experience-badge h2 .number {
  font-size: 64px;
  font-weight: 400;
  line-height: 1;
  background: linear-gradient(#06388a, #ad349f);
  -webkit-background-clip: text;
  -webkit-text-fill-color: rgba(0, 0, 0, 0);
}
.aboutus .about-image-wrapper .experience-badge h2 .unit {
  font-size: 16px;
  font-weight: 400;
  color: #094fc2;
}
.aboutus .about-image-wrapper .experience-badge p {
  font-weight: 400;
  color: #094fc2;
  line-height: 1.4;
  margin: 0;
}
@media (max-width: 576px) {
  .aboutus .about-image-wrapper .experience-badge {
    width: 180px;
    padding: 16px;
  }
  .aboutus .about-image-wrapper .experience-badge h2 .number {
    font-size: 36px;
  }
  .aboutus .about-image-wrapper .experience-badge p {
    font-size: 13px;
  }
}
@media (max-width: 1024px) {
  .aboutus .row {
    display: block;
    padding: 0 10px;
  }
  .aboutus .row > [class*="col-"] {
    width: 100%;
    max-width: 100%;
    flex: none;
    padding-left: 0;
    padding-right: 0;
  }
}
.solutions-component .row > [class*="col"] {
  display: flex;
}
.solutions-component {
  position: relative;
  background: rgba(230, 237, 249, 0.3019607843);
  overflow: hidden;
  border-radius: 24px;
  padding: 70.5px 0;
  width: 98%;
  margin: auto;
}
@media (max-width: 992px) {
  .solutions-component {
    padding: 35px 0;
  }
}
.solutions-component .solutions-text {
  margin-bottom: 48px;
}
@media (max-width: 768px) {
  .solutions-component .solutions-text {
    margin-bottom: 24px;
  }
}
.solutions-component .solutions-desc {
  line-height: 32px;
  font-size: 16px;
  font-weight: 400;
  padding-top: 35px;
}
.solutions-component::before {
  content: "";
  position: absolute;
  inset: -20%;
  z-index: 0;
  background:
    radial-gradient(
      circle at 40% 30%,
      rgba(230, 237, 249, 0.3019607843) 50%,
      rgba(255, 237, 245, 0) 35%
    ),
    radial-gradient(
      circle at 90% 10%,
      rgba(255, 237, 245, 0.7490196078) 0%,
      rgba(230, 237, 249, 0) 40%
    ),
    radial-gradient(
      circle at 80% 30%,
      rgba(255, 237, 245, 0.7490196078) 25%,
      rgba(230, 237, 249, 0) 30%
    ),
    radial-gradient(
      circle at 70% 20%,
      rgba(230, 237, 249, 0.3019607843) 40%,
      rgba(255, 237, 245, 0) 35%
    ),
    radial-gradient(
      circle at 10% 80%,
      rgba(255, 237, 245, 0.7490196078) 0%,
      rgba(230, 237, 249, 0) 45%
    );
  filter: blur(70px);
  transform: scale(1.3);
}
.solutions-component > * {
  position: relative;
  z-index: 1;
}
@media (min-width: 576px) and (max-width: 1023.98px) {
  .solutions-component .row > div:nth-child(1) {
    width: 41.666667%;
  }
  .solutions-component .row > div:nth-child(2) {
    width: 58.333333%;
  }
  .solutions-component .row > div:nth-child(3) {
    width: 100%;
  }
  .solutions-component .row > div:nth-child(4) {
    width: 58.333333%;
  }
  .solutions-component .row > div:nth-child(5) {
    width: 41.666667%;
  }
}
.solutions-card {
  position: relative;
  border-radius: 24px;
  padding: 2px;
  overflow: hidden;
  display: flex;
  width: 100%;
}
.solutions-card::before {
  content: "";
  position: absolute;
  inset: -150%;
  background: conic-gradient(
    transparent 0deg,
    transparent 300deg,
    #094fc2 325deg,
    #8d6dff 340deg,
    #ff8ab8 355deg,
    transparent 360deg
  );
  opacity: 0;
  transform: rotate(0deg);
  transition: opacity 0.3s ease;
}
.solutions-card:hover::before {
  opacity: 1;
  animation: borderRotate 2s linear infinite;
}
.solutions-card .card-inner {
  position: relative;
  z-index: 1;
  background: #fff;
  border-radius: 23px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.solutions-card .card-inner .card-content {
  display: flex;
  flex-direction: column;
  flex: 1;
}
.solutions-card .card-inner .card-image {
  width: 100%;
  margin-top: auto;
}
.solutions-card .card-inner .card-image img {
  display: block;
  width: 100%;
  max-height: 350px;
  object-fit: cover;
  border-radius: 12px;
}
.solutions-card .card-title {
  font-size: 24px;
  font-weight: 400;
  line-height: 36px;
}
@media (max-width: 768px) {
  .solutions-card .card-title {
    font-size: 20px;
  }
}
.solutions-card .card-desc {
  margin-bottom: 12px !important;
}
.solutions-card .sr-only {
  line-height: 32px;
}
.solutions-card .menu-btn {
  margin-bottom: 24px;
}
.solutions-card::before {
  animation: none;
}
.solutions-card:hover::before {
  animation: borderRotate 6s linear infinite;
}
@keyframes borderRotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@media (max-width: 992px) {
  .partners {
    padding: 45px 0;
  }
}
.partners .partner {
  filter: grayscale(100%);
  transition: filter 0.5s ease;
  cursor: pointer;
}
.partners .partner:hover {
  filter: grayscale(0%);
}
.solutions-category {
  position: relative;
  height: 600px;
  border-radius: 20px;
  overflow: hidden;
  width: 99%;
  margin: auto;
  margin-bottom: 20px;
}
.solutions-category::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.2);
  z-index: 1;
}
.solutions-category .solutions-image {
  width: 100%;
  height: 100%;
}
.solutions-category .solutions-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.solutions-category .card-overlay {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 64px;
  transform: translateY(-50%);
  width: 40%;
  padding: 32px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  border: 1px solid #fff;
  color: #fff;
}
.solutions-category .card-overlay .menu-btn {
  border: 4px solid rgba(232, 232, 232, 0.6);
}
.solutions-category .card-title {
  font-size: 32px;
  font-weight: 400;
  line-height: 48px;
}
.solutions-category .card-desc {
  margin-bottom: 24px;
  line-height: 1.8;
}
@media (max-width: 1024px) {
  .solutions-category {
    height: 400px;
  }
  .solutions-category .card-overlay {
    width: 80%;
    left: 16px;
    right: 16px;
    padding: 24px;
  }
  .solutions-category .card-title {
    font-size: 26px;
    line-height: 38px;
  }
  .solutions-category .card-desc {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 8;
    overflow: hidden;
  }
}
@media (max-width: 576px) {
  .solutions-category {
    height: 350px;
  }
  .solutions-category .card-overlay {
    width: calc(100% - 24px);
    left: 12px;
    right: 12px;
    top: 12px;
    bottom: 12px;
    transform: none;
    padding: 16px;
    border-radius: 16px;
  }
  .solutions-category .card-title {
    font-size: 20px;
    line-height: 28px;
    margin-bottom: 8px;
  }
  .solutions-category .card-desc {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 16px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 8;
    overflow: hidden;
  }
  .solutions-category .menu-btn {
    padding: 12px 20px;
  }
}
.desktop {
  display: flex;
}
.mobile {
  display: none;
}
.framework-list {
  display: flex;
  width: 100%;
  overflow: hidden;
}
.framework-list .swiper-button-prev,
.framework-list .swiper-button-next {
  display: none;
  width: 44px;
  height: 44px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 50%;
  color: #000;
}
.framework-list .swiper-button-prev::after,
.framework-list .swiper-button-next::after {
  font-size: 18px;
  font-weight: 700;
}
.framework-card {
  position: relative;
  flex: 1;
  height: 400px;
  overflow: hidden;
  transition: flex 0.5s ease;
  padding: 0px 1px;
  cursor: pointer;
}
.framework-card .framework-image {
  width: 100%;
  height: 100%;
}
.framework-card .framework-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.framework-card .framework-overlay {
  position: absolute;
  padding-top: 64px;
  top: 0;
  left: 10%;
  z-index: 2;
}
.framework-card .framework-overlay .item-title {
  font-size: 24px;
  font-weight: 400;
  line-height: 36px;
}
.framework-card .framework-overlay .item-desc {
  font-size: 16px;
  line-height: 32px;
}
.framework-card:first-child {
  flex: 3;
}
.framework-list:hover .framework-card {
  flex: 1;
}
.framework-list:hover .framework-card:hover {
  flex: 3;
}
@media (min-width: 992px) {
  .framework-list .swiper-wrapper {
    width: 100%;
  }
  .framework-list .swiper-slide {
    flex: 1;
    width: auto !important;
    margin-right: 0 !important;
  }
  .framework-list .swiper-slide:first-child {
    flex: 3;
    transition: flex 600ms ease-out;
  }
  .framework-list:hover .swiper-slide {
    flex: 1;
    transition: flex 600ms ease-out;
  }
  .framework-list:hover .swiper-slide:hover {
    flex: 3;
    transition: flex 600ms ease-out;
  }
  .framework-card {
    width: 100%;
    height: 100%;
  }
}
@media (max-width: 992px) {
  .framework-list .swiper-slide {
    height: auto;
    display: flex;
  }
  .framework-list .framework-card {
    width: 100%;
    height: auto;
    aspect-ratio: 1/1;
  }
  .framework-list .framework-card .framework-image {
    height: 100%;
  }
  .framework-list .swiper-button-prev,
  .framework-list .swiper-button-next {
    display: inline-flex;
    width: 44px;
    height: 44px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 50%;
    color: #000;
  }
  .framework-list .swiper-button-prev::after,
  .framework-list .swiper-button-next::after {
    font-size: 18px;
    font-weight: 700;
  }
}
@media (max-width: 575px) {
  .framework-list {
    height: 50vh;
  }
  .framework-list .swiper-wrapper {
    height: 50% !important;
  }
  .framework-list .framework-card {
    aspect-ratio: auto;
  }
  .framework-list .framework-card .framework-overlay {
    top: 0;
    right: 24px;
    left: 24px;
    padding-top: 40px;
  }
  .framework-list .framework-card .framework-overlay .item-title {
    margin-bottom: 12px;
    font-size: 22px;
    line-height: 30px;
  }
  .framework-list .framework-card .framework-overlay .item-desc {
    margin: 0;
    font-size: 15px;
    line-height: 24px;
  }
}
.h-50 {
  height: 50%;
}
.enquiry-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 848px;
  margin: 0 auto;
  padding-bottom: 96px;
}
.enquiry-form .form-group {
  width: 100%;
  position: relative;
  margin: 0 auto;
}
.enquiry-form .form-group input,
.enquiry-form .form-group select,
.enquiry-form .form-group textarea {
  width: 100%;
  padding: 14px 16px;
  font-size: 16px;
  color: #1f2937;
  background-color: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  outline: none;
  transition: border-color 0.2s;
}
.enquiry-form .form-group input::placeholder,
.enquiry-form .form-group select::placeholder,
.enquiry-form .form-group textarea::placeholder {
  color: #4b5563;
}
.enquiry-form .form-group input:focus,
.enquiry-form .form-group select:focus,
.enquiry-form .form-group textarea:focus {
  border-color: #094fc2;
}
.enquiry-form .form-group textarea {
  resize: vertical;
  min-height: 120px;
}
@media (max-width: 900px) {
  .enquiry-form .form-group {
    width: 95%;
  }
}
.enquiry-form .btn-submit {
  width: 20%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 56px 14px 36px;
  background-color: #094fc2;
  color: #fff;
  font-family: "Poppins", "Segoe UI", sans-serif;
  font-size: 20px;
  font-weight: 500;
  border: 4px solid #e5e7eb;
  border-radius: 50px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: background-color 0.3s ease;
}
.enquiry-form .btn-submit::before,
.enquiry-form .btn-submit::after {
  content: "";
  position: absolute;
  right: 30px;
  top: 50%;
  width: 18px;
  height: 18px;
  background-image: url(../fonts/white-dotted-arrow.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: end;
  transition:
    transform 0.4s ease,
    opacity 0.4s ease;
}
.enquiry-form .btn-submit::before {
  transform: translateY(-50%) translateX(0);
  opacity: 1;
}
.enquiry-form .btn-submit::after {
  transform: translateY(-50%) translateX(-200%);
  opacity: 0;
}
.enquiry-form .btn-submit:hover {
  background-color: rgb(2.9087221095%, 25.5321162948%, 62.6991210277%);
}
.enquiry-form .btn-submit:hover::before {
  transform: translateY(-50%) translateX(200%);
  opacity: 0;
}
.enquiry-form .btn-submit:hover::after {
  transform: translateY(-50%) translateX(0);
  opacity: 1;
}
.enquiry-form .btn-submit:active {
  transform: scale(0.98);
}
@media (max-width: 900px) {
  .enquiry-form .btn-submit {
    margin-left: 16px;
  }
}
@media (max-width: 768px) {
  .enquiry-form .btn-submit {
    width: 33%;
  }
}
@media (max-width: 430px) {
  .enquiry-form .btn-submit {
    width: 48%;
  }
}
@media (max-width: 320px) {
  .enquiry-form .btn-submit {
    width: 50%;
    margin-left: 4px;
  }
}
.grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 768px) {
  .grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.network_content {
  padding-top: 48px;
  padding-bottom: 40px;
}
.network_first_content {
  padding: 16px;
  font-weight: 400;
}
.network_first_para {
  font-weight: 400;
  padding: 0 24px;
  font-size: 16px;
  line-height: 32px;
}
.network-container {
  border: 1px solid #e8e8e8;
  border-radius: 20px;
  width: auto;
  height: 496px;
  margin-bottom: 80px;
}
@media (max-width: 768px) {
  .network-container {
    margin-bottom: 45px;
  }
}
.network_container {
  gap: 24px;
  display: flex;
}
.hero-content {
  text-align: center;
  margin: 120px auto;
  font-size: 64px;
  line-height: 96px;
  font-weight: 300;
  color: #1a1a1a;
}
@media (min-width: 1300px) {
  .hero-content {
    width: 55%;
  }
}
@media (max-width: 1299px) {
  .hero-content {
    font-size: 50px;
    width: 70%;
    font-weight: 300;
  }
}
@media (max-width: 1024px) {
  .hero-content {
    width: 100%;
    font-weight: 300;
    margin: 60px auto;
    padding: 0px 8px;
  }
}
@media (max-width: 768px) {
  .hero-content {
    width: 90%;
    line-height: 45px;
  }
}
.service-component {
  background-color: #f5f5f5;
  border-radius: 24px;
  width: 98%;
  margin: auto;
}
.service-component .service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  padding: 56px 0;
  width: 100%;
  max-width: 1280px;
}
@media (min-width: 1401px) {
  .service-component .service-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  justify-content: center;
  width: 70%;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .content-wrapper {
    width: 95%;
  }
}
.hero-section-img {
  padding-top: 10px;
  width: 100%;
  height: 550px;
  display: block;
  object-fit: fill;
}
@media (max-width: 990px) {
  .hero-section-img {
    height: auto;
  }
}
.content {
  font-size: 32px;
  font-weight: 400;
  padding-top: 96px;
  line-height: 48px;
}
@media (max-width: 1024px) {
  .content {
    padding-top: 60px;
    line-height: 36px;
  }
}
@media (max-width: 768px) {
  .content {
    padding-top: 45px;
    line-height: 24px;
  }
}
.para {
  font-weight: 400;
  font-size: 16px;
  padding-bottom: 24px;
  padding-top: 24px;
}
.footer {
  background-color: #06388a;
  padding-top: 32px;
}
.footer-logo {
  width: 150px;
  height: 86.84px;
  margin-bottom: 10px;
}
span {
  font-size: 16px;
}
@media (max-width: 768px) {
  span {
    font-size: 14px;
  }
}
.footer_address,
.footer_phone,
.footer_email {
  font-weight: 700;
  font-size: 16px;
}
@media (max-width: 768px) {
  .footer_address,
  .footer_phone,
  .footer_email {
    font-size: 14px;
  }
}
h5 {
  font-weight: 400;
}
a {
  text-decoration: none !important;
  font-weight: 400;
  font-size: 16px;
}
@media (max-width: 768px) {
  a {
    font-size: 14px;
  }
}
.footer_icons {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: #094fc2;
  display: flex;
  justify-content: center;
  align-items: center;
}
.linkin-icon {
  width: 40px;
  height: 40px;
}
.copyright {
  margin-top: 20px;
  border-top: 1px solid #0848b1;
}
.copyright span {
  font-size: 16px;
}
@media (max-width: 768px) {
  .copyright span {
    font-size: 14px;
  }
}
@media (max-width: 991px) {
  .footer_icons {
    margin-bottom: 20px;
  }
  .footer_address,
  .footer_phone,
  .footer_email {
    padding-top: 20px;
  }
}
.padding-top-3 {
  padding-top: 2px;
}
.about-section {
  width: 65%;
  margin: auto;
}
@media (max-width: 768px) {
  .about-section {
    width: 90%;
  }
}
.about-section .primary-desc {
  margin-bottom: 96px;
}
@media (max-width: 992px) {
  .about-section .primary-desc {
    margin-bottom: 45px;
  }
}
.about-section .background {
  margin-top: 40px;
}
@media (max-width: 992px) {
  .about-section .background {
    margin-top: 40px;
  }
}
.vision-content {
  margin-bottom: 30px;
}
.mission-desc {
  margin-bottom: 48px;
}
.solutions-section {
  margin-top: 96px;
}
@media (max-width: 768px) {
  .solutions-section {
    margin-top: 45px;
  }
}
.solutions-section .color-title {
  font-size: 32px;
  line-height: 48px;
  font-weight: 400;
  width: 70%;
  margin-bottom: 24px;
  background-image: linear-gradient(
    to right,
    #094fc2 30%,
    #c31568 60%
  ) !important;
  color: rgba(0, 0, 0, 0) !important;
  background-clip: text !important;
}
@media (max-width: 992px) {
  .solutions-section .color-title {
    width: 100%;
    font-size: 24px;
  }
}
@media (max-width: 768px) {
  .solutions-section .color-title {
    width: 100%;
    font-size: 20px;
  }
}
.solutions-section .solutions-desc {
  width: 70%;
  font-size: 20px;
  font-weight: 300;
  line-height: 40px;
  margin-bottom: 68.6px;
}
@media (max-width: 992px) {
  .solutions-section .solutions-desc {
    font-size: 18px;
    margin-bottom: 48px;
  }
}
@media (max-width: 768px) {
  .solutions-section .solutions-desc {
    width: 100%;
    font-size: 16px;
    margin-bottom: 30px;
  }
}
.partnership-img {
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  object-position: center;
}
.content .first_content,
.third_content,
.fifth_content {
  font-weight: 400;
}
.content p {
  font-size: 16px;
  margin-bottom: 0px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 6;
  overflow: hidden;
}
.solutionscat-wrapper .solutionscat-section {
  margin-top: 96px;
}
@media (max-width: 992px) {
  .solutionscat-wrapper .solutionscat-section {
    margin-top: 48px;
  }
}
.solutionscat-wrapper .solutionscat-desc {
  width: 90%;
  font-size: 20px;
  line-height: 40px;
  font-weight: 300;
}
@media (max-width: 768px) {
  .solutionscat-wrapper .solutionscat-desc {
    width: 100%;
    font-size: 18px;
    line-height: 32px;
  }
}
.solutionscat-wrapper .framework-title {
  margin-top: 96px;
  margin-bottom: 48px;
  font-size: 40px;
  line-height: 56px;
  font-weight: 400;
}
@media (max-width: 992px) {
  .solutionscat-wrapper .framework-title {
    margin-top: 48px;
    margin-bottom: 24px;
    font-size: 28px;
    line-height: 40px;
  }
}
.solutionscat-projects {
  padding: 96px 0;
}
@media (max-width: 768px) {
  .solutionscat-projects {
    padding: 48px 0;
  }
}
.solutionscat-projects .slider-container {
  position: relative;
}
.solutionscat-projects .slider-controls {
  pointer-events: none;
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  z-index: 10;
  display: none;
  align-items: center;
  justify-content: space-between;
  transform: translateY(-50%);
}
@media (max-width: 1000px) {
  .solutionscat-projects .slider-controls {
    display: flex;
  }
}
.solutionscat-projects .swiper-button-prev,
.solutionscat-projects .swiper-button-next {
  pointer-events: auto;
  position: static;
  width: 48px;
  height: 48px;
  margin: 0;
  border: 0;
  border-radius: 50%;
  background-color: #f7f7f7;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background-color 0.2s ease,
    transform 0.2s ease;
}
.solutionscat-projects .swiper-button-prev::after,
.solutionscat-projects .swiper-button-next::after {
  display: none;
}
.solutionscat-projects .swiper-button-prev img,
.solutionscat-projects .swiper-button-next img {
  width: 22px;
  height: 22px;
}
.solutionscat-projects .swiper-button-prev:hover,
.solutionscat-projects .swiper-button-next:hover {
  background-color: #eee;
  transform: scale(1.04);
}
.projects-links-desktop {
  position: sticky;
  top: 80px;
  z-index: 999;
  background-color: #e6edf9;
  padding: 8px 0;
  transition: all 0.3s ease;
}
.projects-links-desktop .cat-link {
  border-radius: 12px;
  transition: all 0.3s ease;
  background-color: #fff;
  padding: 12px 8px;
  border-radius: 12px;
  color: #111;
  width: 180px;
  height: 94px;
}
.projects-links-desktop .cat-link .projects-icon {
  margin-bottom: 8px;
  transition: 0.3s;
}
.projects-links-desktop .cat-link p {
  font-size: 14px;
  font-weight: 400;
  text-align: center;
  line-height: 21px;
  margin-bottom: 0;
  transition: 0.3s;
}
.projects-links-desktop .cat-link.active {
  background: #094fc2;
}
.projects-links-desktop .cat-link.active p {
  color: #fff;
}
.projects-links-desktop .cat-link.active .projects-icon {
  filter: brightness(0) invert(1);
}
.projects-links-mobile {
  display: none;
}
@media (max-width: 992px) {
  .projects-links-desktop {
    display: none;
  }
  .projects-links-mobile {
    display: block;
    padding: 8px 16px;
    background-color: #e6edf9;
  }
  .projects-links-mobile .select-wrapper {
    position: relative;
    width: 100%;
    max-width: 100%;
  }
  .projects-links-mobile .select-wrapper .bi-chevron-down {
    position: absolute;
    top: 50%;
    right: 16px;
    transform: translateY(-50%);
    pointer-events: none;
    font-size: 14px;
    z-index: 2;
  }
  .projects-links-mobile .select-wrapper select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    width: 80%;
    max-width: 90%;
    height: 48px;
    border-radius: 12px;
    border: 1px solid #ddd;
    font-size: 14px;
    cursor: pointer;
    background-color: #fff;
    padding: 0 40px 0 16px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}
.projects-category {
  scroll-margin-top: 80px;
}
.projects-category .d-flex {
  position: relative;
}
@media (max-width: 575.98px) {
  .projects-category .slider-header {
    flex-direction: column;
    align-items: flex-start;
  }
}
.projects-category .slider-header .slider-controls {
  margin-bottom: 0 !important;
}
@media (max-width: 576px) {
  .projects-category .slider-header .slider-controls {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px !important;
  }
}
.projects-category .slider-header .cat-title {
  font-size: 32px;
  line-height: 48px;
  font-weight: 400;
  margin: 48px 0;
}
@media (max-width: 992px) {
  .projects-category .slider-header .cat-title {
    font-size: 24px;
    line-height: 36px;
  }
}
@media (max-width: 576px) {
  .projects-category .slider-header .cat-title {
    margin: 10px 0;
    width: 100%;
  }
}
@media (max-width: 768px) {
  .projects-category .trading-slider {
    margin-bottom: 48px;
  }
}
.projects-category .swiper-pagination {
  position: static !important;
  width: auto !important;
  font-size: 18px;
  color: #666;
}
.projects-category .swiper-pagination .swiper-pagination-current {
  color: #06f;
  font-weight: 600;
}
.projects-category .project-button-prev,
.projects-category .project-button-next {
  position: static !important;
  margin: 0;
  width: 40px;
  height: 40px;
  border: 1px solid #ccc;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.projects-category .project-button-prev::after,
.projects-category .project-button-next::after {
  display: none;
}
.projects-category .project-button-prev svg,
.projects-category .project-button-next svg {
  width: 20px;
  height: 20px;
  fill: #1f1f1f;
}
.projects-category .project-button-prev:hover,
.projects-category .project-button-next:hover {
  border-color: #052b6b;
}
.projects-category .project-button-prev:hover svg,
.projects-category .project-button-next:hover svg {
  fill: #094fc2;
}
.projects-category .project-progress {
  font-size: 20px;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  line-height: 30px;
  color: #b8b8b8;
}
.projects-category .project-progress .current {
  color: #094fc2;
}
html.lenis,
html.lenis body {
  height: auto;
}
.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}
.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}
.lenis.lenis-stopped {
  overflow: hidden;
}
.lenis.lenis-smooth iframe {
  pointer-events: none;
}
