@charset "UTF-8";
/*-----------------------------------------------------------------------------------

    Template Name: Creasoft - software and digital agency HTML 5 template
    Author: Egens Theme
    Author https://themeforest.net/user/egenstheme/portfolio
    Support: https://www.egenslab.com/support/
    Version: 1.0

-----------------------------------------------------------------------------------

    CSS INDEX
    ===================

    01.COMMON
    02.Header css
    03.Hero css
    04.Services css
    05.About css
    06.Feature css
    07.Project css
    08.Partner css
    09.Price plan css
    10.Testimonial css
    11.Our Team css
    12.Blog css
    13.Subscribe css
    14.Footer css 
    15.Home two css 
    16.Contact page css 
    17.Error page css 
    18.FAQ page css 
    19.Service page css
    20.Project page css 
    21.About page css 
    22.Blog page css 

-----------------------------------------------------------------------------------*/
.pt-50 {
  padding-top: 50px;
}

/*===========================
     01.COMMON CSS 
===========================*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
}

body {
  height: 100%;
  overflow-x: clip;
  font-size: 16px;
  -webkit-tap-highlight-color: rgba(48, 120, 251, 0.15);
}

.skip-link {
  position: absolute;
  top: 8px;
  left: 8px;
  z-index: 1005;
  padding: 12px 16px;
  min-height: 44px;
  border-radius: 8px;
  background: #111827;
  color: #ffffff;
  font-weight: 700;
  transform: translateY(-140%);
  transition: transform 0.2s ease;
  display: inline-flex;
  align-items: center;
}

.skip-link:focus,
.skip-link:focus-visible {
  transform: translateY(0);
  outline: 2px solid #ffffff;
  outline-offset: 2px;
}

.noscript-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 12px 16px;
  background: #111827;
  color: #fff;
}
.noscript-nav a {
  color: #fff;
  text-decoration: underline;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: 0 8px;
}

a:focus,
input:focus,
textarea:focus,
button:focus {
  outline: 0 solid;
}

a:focus-visible,
input:focus-visible,
textarea:focus-visible,
button:focus-visible {
  outline: 2px solid #2563eb;
  outline-offset: 2px;
}

* {
  scroll-margin-top: 100px;
}
@media (max-width: 767px) {
  * {
    scroll-margin-top: 140px;
  }
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  margin-bottom: 15px;
}

img {
  max-width: 100%;
}

a,
ul,
ol {
  padding: 0;
  margin: 0;
  list-style: none;
}

p {
  margin: 0;
  color: #272727;
  line-height: 1.8;
}
@media (max-width: 767px) {
  p {
    font-size: 14px;
  }
}

a,
button {
  touch-action: manipulation;
}

a,
a:hover {
  text-decoration: none;
}

input,
select,
iframe,
img,
svg,
video {
  vertical-align: middle;
}

.sec-pad {
  padding: 72px 0;
}
@media (max-width: 767px) {
  .sec-pad {
    padding: 36px 0;
  }
}
@media (max-width: 576px) {
  .sec-pad {
    padding: 24px 0;
  }
}

.sec-mar {
  margin: 48px 0;
}
@media (max-width: 767px) {
  .sec-mar {
    margin: 30px 0;
  }
}
@media (max-width: 576px) {
  .sec-mar {
    margin: 22px 0;
  }
}

.sec-mar-top {
  margin-top: 48px;
}
@media (max-width: 767px) {
  .sec-mar-top {
    margin-top: 30px;
  }
}
@media (max-width: 576px) {
  .sec-mar-top {
    margin-top: 22px;
  }
}

.sec-mar-bottom {
  margin-bottom: 48px;
}
@media (max-width: 767px) {
  .sec-mar-bottom {
    margin-bottom: 30px;
  }
}
@media (max-width: 576px) {
  .sec-mar-bottom {
    margin-bottom: 22px;
  }
}

/*=======================================
 preloader start
=======================================*/
.preloader {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 99999;
  background: #000;
  top: 0;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

@-webkit-keyframes loader {
  0%, 10%, 100% {
    width: 80px;
    height: 80px;
  }
  65% {
    width: 150px;
    height: 150px;
  }
}
@keyframes loader {
  0%, 10%, 100% {
    width: 80px;
    height: 80px;
  }
  65% {
    width: 150px;
    height: 150px;
  }
}
@-webkit-keyframes loaderBlock {
  0%, 30% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  55% {
    background-color: #fff;
  }
  100% {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
  }
}
@keyframes loaderBlock {
  0%, 30% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  55% {
    background-color: #2563eb;
  }
  100% {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
  }
}
@-webkit-keyframes loaderBlockInverse {
  0%, 20% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  55% {
    background-color: #fff;
  }
  100% {
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
  }
}
@keyframes loaderBlockInverse {
  0%, 20% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  55% {
    background-color: #2563eb;
  }
  100% {
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
  }
}
.preloader .loader {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 80px;
  height: 80px;
  -webkit-transform: translate(-50%, -50%) rotate(45deg) translate3d(0, 0, 0);
  transform: translate(-50%, -50%) rotate(45deg) translate3d(0, 0, 0);
  -webkit-animation: loader 1.2s infinite ease-in-out;
  animation: loader 1.2s infinite ease-in-out;
}

.preloader .loader span {
  position: absolute;
  display: block;
  width: 40px;
  height: 40px;
  background-color: #fff;
  -webkit-animation: loaderBlock 1.2s infinite ease-in-out both;
  animation: loaderBlock 1.2s infinite ease-in-out both;
}

.preloader .loader span:nth-child(1) {
  top: 0;
  left: 0;
}

.preloader .loader span:nth-child(2) {
  top: 0;
  right: 0;
  -webkit-animation: loaderBlockInverse 1.2s infinite ease-in-out both;
  animation: loaderBlockInverse 1.2s infinite ease-in-out both;
}

.preloader .loader span:nth-child(3) {
  bottom: 0;
  left: 0;
  -webkit-animation: loaderBlockInverse 1.2s infinite ease-in-out both;
  animation: loaderBlockInverse 1.2s infinite ease-in-out both;
}

.preloader .loader span:nth-child(4) {
  bottom: 0;
  right: 0;
}

@media (prefers-reduced-motion: reduce) {
  .preloader .loader,
  .preloader .loader span {
    animation: none;
    -webkit-animation: none;
  }
  .preloader .loader {
    opacity: 0.9;
  }
}
/*=======================================
 preloader end
=======================================*/
.sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  box-sizing: border-box;
  background-color: #0e0e0e;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  z-index: 99;
}

/* line animation css - start */
.creasoft-wrap {
  position: relative;
  overflow: clip;
  z-index: 1;
}

.line_wrap {
  top: 0px;
  left: 50%;
  bottom: 0px;
  width: 80%;
  z-index: -1;
  display: block;
  position: absolute;
  transform: translateX(-50%);
  border-left: 1px solid rgba(23, 22, 26, 0.06);
}
@media (max-width: 767px) {
  .line_wrap {
    display: none;
  }
}
.line_wrap.layout2 {
  border-left: 1px solid rgba(246, 246, 246, 0.02);
}
.line_wrap.layout2 .line_item {
  border-right: 1px solid rgba(246, 246, 246, 0.02);
}
.line_wrap:before {
  width: 1px;
  left: -1px;
  content: "";
  height: 100px;
  position: absolute;
  animation: scroll1 15s ease-out infinite;
  background-image: linear-gradient(0deg, #000000, transparent);
}

.line_item {
  width: 20%;
  float: left;
  height: 100%;
  position: relative;
  display: inline-block;
  border-right: 1px solid rgba(23, 22, 26, 0.06);
}
@media (max-width: 767px) {
  .line_item {
    border-right: 1px solid rgba(0, 0, 0, 0.03);
  }
}
.line_item:before {
  width: 1px;
  right: -1px;
  content: "";
  height: 100px;
  position: absolute;
}
.line_item:nth-child(odd):before {
  animation: scroll2 15s ease-out infinite;
  background-image: linear-gradient(0deg, transparent, #000000);
}
.line_item:nth-child(even):before {
  animation: scroll1 15s ease-out infinite;
  background-image: linear-gradient(0deg, #000000, transparent);
}

@keyframes scroll1 {
  0% {
    top: 0px;
    opacity: 1;
  }
  50% {
    top: 50%;
  }
  100% {
    top: 100%;
    opacity: 0.5;
  }
}
@keyframes scroll2 {
  0% {
    opacity: 1;
    bottom: 0px;
  }
  50% {
    bottom: 50%;
  }
  100% {
    bottom: 100%;
    opacity: 0.5;
  }
}
.scroll-to-top .top {
  position: fixed;
  cursor: pointer;
  border: none;
  padding: 0;
  font: inherit;
  bottom: 240px;
  right: 20px;
  color: #fff;
  background: #2563eb;
  z-index: 5001;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  text-align: center;
  line-height: 44px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.18);
  transition: 0.9s;
}
.scroll-to-top .top i {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  right: 0;
  margin: 0 auto;
  transition: 0.5s;
}
.scroll-to-top .top i:last-child {
  opacity: 0;
  visibility: hidden;
  top: 60%;
}
.scroll-to-top .top::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: #000;
  opacity: 0;
  visibility: hidden;
  transition: 0.5s;
}
.scroll-to-top .top:hover, .scroll-to-top .top:focus {
  color: #fff;
}
.scroll-to-top .top:hover::before, .scroll-to-top .top:focus::before {
  opacity: 1;
  visibility: visible;
}
.scroll-to-top .top:hover i:first-child, .scroll-to-top .top:focus i:first-child {
  opacity: 0;
  top: 0;
  visibility: hidden;
}
.scroll-to-top .top:hover i:last-child, .scroll-to-top .top:focus i:last-child {
  opacity: 1;
  visibility: visible;
  top: 50%;
}

.breadcrumbs {
  position: relative;
  height: 480px;
  background-image: url(/img/breadcrumb-bg.jpg);
  background-image: image-set(url(/img/breadcrumb-bg.webp) type("image/webp"), url(/img/breadcrumb-bg.jpg) type("image/jpeg"));
  background-size: cover;
  background-position: center center;
  z-index: 1;
}
@media (max-width: 767px) {
  .breadcrumbs {
    height: auto;
    min-height: auto;
    padding: 24px 0;
    padding-top: max(100px, 80px + env(safe-area-inset-top));
    padding-bottom: 16px;
  }
}
.breadcrumbs:before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-color: #0e0e0e;
  opacity: 1;
  z-index: -1;
}

.breadcrumb-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 480px;
}
@media (max-width: 767px) {
  .breadcrumb-wrapper {
    height: auto;
    min-height: 160px;
    padding: 0;
  }
}

.breadcrumb-cnt {
  position: relative;
}
.breadcrumb-cnt h1 {
  font-size: 60px;
  font-weight: 700;
  color: #2563eb;
  width: min(900px, 100%);
  text-transform: capitalize;
  margin-bottom: 5px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .breadcrumb-cnt h1 {
    font-size: 40px;
  }
}
@media (max-width: 767px) {
  .breadcrumb-cnt h1 {
    font-size: 30px;
    width: auto;
  }
}
.breadcrumb-cnt span {
  font-size: 14px;
  color: #fff;
  text-transform: capitalize;
  word-break: break-word;
}
.breadcrumb-cnt span a {
  display: inline-block;
  color: #2563eb;
}
.breadcrumb-cnt span i {
  margin: 0 5px;
}
@media (max-width: 767px) {
  .breadcrumb-cnt span i {
    margin: 0 3px;
  }
}
.breadcrumb-cnt .breadcrumb-video {
  position: absolute;
  right: 0;
  top: 0;
}
@media (max-width: 767px) {
  .breadcrumb-cnt .breadcrumb-video {
    display: none;
  }
}
.breadcrumb-cnt .breadcrumb-video img {
  max-width: 370px;
  max-height: 340px;
  border-radius: 5px;
}
.breadcrumb-cnt .breadcrumb-video:before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-color: #0e0e0e;
  opacity: 0.7;
  border-radius: 5px;
}
.breadcrumb-cnt .breadcrumb-video .video-inner {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.breadcrumb-cnt .breadcrumb-video .video-inner .video-popup {
  height: 80px;
  width: 80px;
  line-height: 80px;
  border: 2px dashed #fff;
  text-align: center;
  display: inline-block;
  color: #fff;
  border-radius: 50%;
  font-size: 20px;
  animation-name: ripple;
  animation-duration: 2.5s;
  cursor: pointer;
  animation-iteration-count: infinite;
  background: transparent;
  padding: 0;
  margin: 0;
}

/* About-section video modal — minimal lightbox for the home-page "Get To Know" play button. */
.modal-video {
  position: fixed;
  inset: 0;
  z-index: 10100;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.85);
  padding: 24px;
  animation: modalVideoFadeIn 0.2s ease-out;
}

.modal-video-body {
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
}

.modal-video-inner {
  width: 100%;
}

.modal-video-movie-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  background: #000;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.modal-video-movie-wrap video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 8px;
}

.modal-video-close-btn {
  position: absolute;
  top: -44px;
  right: 0;
  width: 32px;
  height: 32px;
  background: transparent;
  border: 0;
  cursor: pointer;
  z-index: 2;
}
.modal-video-close-btn::before, .modal-video-close-btn::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  background: #fff;
}
.modal-video-close-btn::before {
  transform: translateY(-50%) rotate(45deg);
}
.modal-video-close-btn::after {
  transform: translateY(-50%) rotate(-45deg);
}
.modal-video-close-btn:hover::before, .modal-video-close-btn:hover::after {
  background: #2563eb;
}

@keyframes modalVideoFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/*Section title*/
.title-wrap {
  max-width: 630px;
  margin: 0 auto;
}

.sec-title {
  text-align: center;
  margin-bottom: 50px;
}
.sec-title.layout2 {
  text-align: left;
}
.sec-title.white h2,
.sec-title.white p {
  color: #fff;
}
.sec-title.white span {
  color: #93c5fd;
  border-bottom-color: #93c5fd;
}
.sec-title span {
  font-weight: 600;
  font-size: 16px;
  display: inline-block;
  color: #2563eb;
  text-transform: capitalize;
  border-bottom: 1px solid #2563eb;
  padding-bottom: 2px;
  margin-bottom: 5px;
}
.sec-title h2 {
  font-weight: 700;
  font-size: 40px;
  text-transform: capitalize;
  color: #17161A;
  margin-bottom: 15px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .sec-title h2 {
    font-size: 35px;
  }
}
@media (max-width: 767px) {
  .sec-title h2 {
    font-size: 30px;
  }
}

/*Common button*/
.cmn-btn {
  position: relative;
  display: inline-block;
}
.cmn-btn a {
  position: relative;
  display: inline-block;
  background-color: #000000;
  border-radius: 5px;
  min-width: 170px;
  font-weight: 700;
  font-size: 17px;
  text-align: center;
  color: #FFFFFF;
  padding: 15px 30px;
  border: 1px solid #000000;
  overflow: hidden;
  z-index: 1;
  -webkit-transition: all 0.8s ease-out 0s;
  -moz-transition: all 0.8s ease-out 0s;
  -ms-transition: all 0.8s ease-out 0s;
  -o-transition: all 0.8s ease-out 0s;
  transition: all 0.8s ease-out 0s;
  vertical-align: top;
}
@media (max-width: 767px) {
  .cmn-btn a {
    min-width: 140px;
    font-size: 14px;
  }
}
.cmn-btn a:after {
  position: absolute;
  content: "";
  display: block;
  left: 15%;
  right: -20%;
  top: -4%;
  height: 150%;
  width: 150%;
  bottom: 0;
  background-color: #2563eb;
  transform: skewX(45deg) scale(0, 1);
  z-index: -1;
  -webkit-transition: all 0.8s ease-out 0s;
  -moz-transition: all 0.8s ease-out 0s;
  -ms-transition: all 0.8s ease-out 0s;
  -o-transition: all 0.8s ease-out 0s;
  transition: all 0.8s ease-out 0s;
}
.cmn-btn a:hover {
  color: #000;
}
.cmn-btn a:hover:after {
  transform: skewX(45deg) scale(1, 1);
}
.cmn-btn .line-1 {
  position: absolute;
  right: 8px;
  top: 7px;
  z-index: 2;
}
.cmn-btn .line-1:before {
  position: absolute;
  content: "";
  border: 1px solid #FFFFFF;
  width: 25px;
  opacity: 0.1;
  right: 0;
  -webkit-transition: all 0.8s ease-out 0s;
  -moz-transition: all 0.8s ease-out 0s;
  -ms-transition: all 0.8s ease-out 0s;
  -o-transition: all 0.8s ease-out 0s;
  transition: all 0.8s ease-out 0s;
}
.cmn-btn .line-1:after {
  position: absolute;
  content: "";
  border: 1px solid #FFFFFF;
  height: 25px;
  opacity: 0.1;
  -webkit-transition: all 0.8s ease-out 0s;
  -moz-transition: all 0.8s ease-out 0s;
  -ms-transition: all 0.8s ease-out 0s;
  -o-transition: all 0.8s ease-out 0s;
  transition: all 0.8s ease-out 0s;
}
.cmn-btn .line-2 {
  position: absolute;
  left: 8px;
  bottom: 8px;
  z-index: 2;
}
.cmn-btn .line-2:before {
  position: absolute;
  content: "";
  border: 1px solid #FFFFFF;
  height: 25px;
  opacity: 0.1;
  right: 0px;
  bottom: -2px;
}
.cmn-btn .line-2:after {
  position: absolute;
  content: "";
  border: 1px solid #FFFFFF;
  width: 25px;
  opacity: 0.1;
  left: 0;
}
.cmn-btn:hover .line-1:before {
  border: 1px solid #000;
  opacity: 0.5;
}
.cmn-btn:hover .line-1:after {
  border: 1px solid #000;
  opacity: 0.5;
}

.mobile-menu-logo {
  display: none;
}
.mobile-menu-logo .remove {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
}
.mobile-menu-logo .remove i {
  height: 30px;
  width: 30px;
  line-height: 30px;
  display: inline-block;
  color: #fff;
  background-color: #2563eb;
  text-align: center;
  border-radius: 50%;
  transform: rotate(-45deg);
}

/*================================
    Responsive mobile menu css
=================================*/
@media only screen and (max-width: 1023px) {
  header .main-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 280px;
    padding: 10px 0 !important;
    z-index: 99999;
    height: 100%;
    overflow: auto;
    display: block;
    background: #fff;
    -webkit-transform: translateX(-280px);
    transform: translateX(-280px);
    -webkit-transition: -webkit-transform 0.3s ease-in;
    transition: -webkit-transform 0.3s ease-in;
    transition: transform 0.3s ease-in;
    transition: transform 0.3s ease-in, -webkit-transform 0.3s ease-in;
  }
  header .main-nav .mobile-menu-logo {
    position: relative;
    text-align: left;
    padding: 20px 10px;
    margin-bottom: 20px;
    display: block;
    border-bottom: 1px solid #2563eb;
  }
  header .main-nav ul {
    float: none;
    text-align: left;
    padding: 0;
  }
  header .main-nav ul li {
    position: relative;
    display: block;
    border-bottom: 1px solid #eee;
    padding: 0px 10px !important;
  }
  header .main-nav ul li:last-child {
    border: none;
  }
  header .main-nav ul li a,
  header .main-nav ul li .nav-dropdown-trigger {
    padding: 12px 0;
    display: block;
    font-weight: 600;
    font-size: 16px;
    color: #17161a;
    text-transform: capitalize;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
    cursor: pointer;
  }
  header .main-nav ul li .nav-dropdown-trigger:hover {
    color: #2563eb;
  }
  header .main-nav ul li ul.sub-menu {
    position: static;
    min-width: 200px;
    background: 0 0;
    border: none;
    border-top: none;
    border-radius: 0;
    overflow: visible;
    opacity: 1;
    visibility: visible;
    -webkit-box-shadow: none;
    box-shadow: none;
    -webkit-transform: none;
    transform: none;
    -webkit-transition: none;
    transition: none;
    display: none;
    margin-top: 0 !important;
    padding: 0;
    transform: translateY(0px);
  }
  header .main-nav ul li ul.sub-menu li {
    padding: 0 !important;
  }
  header .main-nav ul li ul.sub-menu li a {
    padding: 12px 10px;
    display: flex;
    align-items: center;
    color: #17161a;
    font-size: 15px;
    font-weight: 500;
  }
  header .main-nav ul li ul.sub-menu li a .bi {
    font-size: 15px;
    color: #666;
    margin-right: 8px;
    width: 16px;
  }
  header .main-nav ul li ul.sub-menu li a::before {
    display: none;
  }
  header .main-nav ul li ul.sub-menu li a:hover {
    padding-left: 10px;
  }
  header .main-nav ul li ul.sub-menu li a:hover .bi {
    color: #2563eb;
  }
  header .main-nav.slidenav {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  header .main-nav ul li > .bi {
    display: block;
    top: 8px;
    right: 10px;
    font-size: 16px;
    color: #000;
  }
  .mobile-menu {
    position: relative;
    top: 2px;
    padding: 0 5px;
    border-radius: 50%;
    display: inline-block;
    text-align: right;
    margin-left: 30px;
  }
  .cross-btn {
    display: inline-block !important;
    position: relative;
    width: 30px !important;
    height: 22px !important;
    cursor: pointer;
    border: 3px solid transparent !important;
  }
  .cross-btn span {
    width: 100%;
    height: 2px;
    background: #2563eb !important;
    display: block;
    position: absolute;
    right: 0;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .cross-btn .cross-top {
    top: 0;
  }
  .cross-btn .cross-middle {
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 100%;
  }
  .cross-btn .cross-bottom {
    bottom: 0;
    width: 100%;
  }
  .cross-btn.h-active span.cross-top {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    top: 50%;
    margin-top: -1px;
  }
  .cross-btn.h-active span.cross-middle {
    -webkit-transform: translateX(-30px);
    transform: translateX(-30px);
    opacity: 0;
  }
  .cross-btn.h-active span.cross-bottom {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    bottom: 50%;
    margin-bottom: -1px;
  }
}
@media only screen and (min-width: 1200px) {
  .main-menu ul li:hover ul.sub-menu:not(.d-none) {
    display: block !important;
    transition: all linear 0.3s;
  }
}
.cursor {
  position: fixed;
  top: 0%;
  left: 0%;
  width: 30px;
  height: 30px;
  z-index: 999999;
  pointer-events: none;
  border-radius: 50%;
  transform-origin: left top;
  transition: transform 0.35s;
  transform: scale(0.35) translate(-50%, -50%);
  mix-blend-mode: exclusion;
  background-color: #fff;
}

/*===========================
   MOBILE-FIRST OPTIMIZATIONS
   Touch targets, layout, performance
===========================*/
@media (max-width: 767px) {
  html {
    scroll-padding-top: 70px;
  }
}

@media (max-width: 576px) {
  .container {
    padding-left: 12px;
    padding-right: 12px;
  }
}
@media (max-width: 360px) {
  .container {
    padding-left: 10px;
    padding-right: 10px;
  }
}

.nav-dropdown-trigger,
.scroll-to-top .top {
  min-height: 44px;
  min-width: 44px;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

@media only screen and (max-width: 1023px) {
  .cross-btn,
  .mobile-menu button,
  .mobile-menu .cross-btn {
    min-height: 48px;
    min-width: 48px;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 6px;
    margin-left: 8px;
  }
  .mobile-menu .cross-btn span {
    background: #fff !important;
  }
  .mobile-menu .cross-btn {
    padding: 10px;
    /* width/height set by min-width/min-height 44px above — do not shrink */
  }
  .nav-right {
    gap: 8px;
    flex-shrink: 0;
  }
  header .main-nav.mobile-closed > ul {
    display: none !important;
  }
  header .main-nav.mobile-open > ul {
    display: block !important;
    overflow-y: auto;
    max-height: calc(100dvh - 80px);
    -webkit-overflow-scrolling: touch;
  }
  header .main-nav.mobile-open > ul > li {
    display: block !important;
  }
  header .main-nav.mobile-open .mega-menu-details {
    display: none !important;
  }
  header .main-nav.mobile-open .mega-menu-categories {
    width: 100%;
  }
  header .main-nav.mobile-open .mega-menu-cat-item {
    padding: 12px 10px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  }
  .nav-right .mobile-menu {
    display: inline-block !important;
    margin-left: 12px;
    z-index: 100060;
  }
  .nav-right .mobile-menu .cross-btn {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
  }
  .nav-right .mobile-menu .cross-btn span {
    background: #ffffff !important;
  }
  .nav-right .mobile-menu .cross-btn.h-active {
    display: none !important;
  }
  .nav-right .get-qoute {
    display: none !important;
  }
}
@media (hover: none) and (pointer: coarse) and (max-width: 1023px) {
  header .main-nav.mobile-closed > ul {
    display: none !important;
  }
  header .main-nav.mobile-open > ul {
    display: block !important;
  }
  .nav-right .mobile-menu {
    display: inline-block !important;
  }
  .nav-right .get-qoute {
    display: none !important;
  }
}
@media (min-width: 1024px) {
  .mobile-menu {
    display: none;
  }
}
@media (hover: none) and (pointer: coarse) {
  a:hover,
  button:hover,
  .single-service:hover {
    transform: none !important;
    box-shadow: inherit !important;
  }
}
.cmn-btn a {
  min-height: 44px;
  padding: 12px 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 576px) {
  .cmn-btn a {
    padding: 12px 20px;
    min-width: 100%;
  }
}

@media (max-width: 767px) {
  .hero-content .buttons,
  .buttons {
    flex-direction: column;
    gap: 12px;
    margin-top: 24px;
  }
}
@media (max-width: 767px) {
  .hero-content .buttons .cmn-btn,
  .buttons .cmn-btn {
    margin-right: 0;
    width: 100%;
  }
}
@media (max-width: 767px) {
  .hero-content .buttons .cmn-btn a,
  .buttons .cmn-btn a {
    width: 100%;
  }
}

@media (max-width: 576px) {
  .breadcrumb-cnt h1 {
    font-size: 24px;
  }
}

.hero-content h1 {
  word-wrap: break-word;
  overflow-wrap: break-word;
  max-width: 100%;
}
.hero-content h1 .hero-phrase {
  white-space: normal;
  word-break: break-word;
  overflow-wrap: anywhere;
  overflow: visible;
}
@media (max-width: 576px) {
  .hero-content h1 {
    font-size: 24px;
    line-height: 1.25;
  }
}
@media (max-width: 360px) {
  .hero-content h1 {
    font-size: 20px;
    line-height: 1.3;
  }
}

@media (max-width: 767px) {
  .typewriter-cursor {
    display: none;
  }
  .cmn-btn a {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  .hero-wrapper {
    padding-top: max(210px, 190px + env(safe-area-inset-top));
    padding-bottom: 120px;
    justify-content: flex-start;
  }
  .hero-content {
    padding-left: 16px;
    padding-right: 16px;
  }
  .hero-content p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
  }
  .hero-content .buttons {
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 24px;
  }
  .hero-wrapper .widgets-container {
    position: relative !important;
    bottom: auto !important;
    margin-top: 24px;
    padding-left: 16px;
    padding-right: 16px;
    width: 100%;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 10px;
  }
}
@media (max-width: 360px) {
  header .main-menu > .main-nav:not(.slidenav) {
    visibility: hidden;
    pointer-events: none;
  }
  header .main-menu > .main-nav.slidenav {
    visibility: visible;
    pointer-events: auto;
  }
  .hero-content {
    padding-left: 4px;
    padding-right: 4px;
  }
  .hero-content h1 {
    font-size: 19px;
    line-height: 1.3;
  }
  footer .address p,
  footer .phone a,
  footer .email a {
    word-break: normal;
    overflow-wrap: break-word;
    white-space: normal;
  }
}
a, button, .cmn-btn, .nav-dropdown-trigger {
  -webkit-tap-highlight-color: rgba(48, 120, 251, 0.15);
}

@supports (padding: max(0px)) {
  .scroll-to-top .top {
    bottom: max(160px, 150px + env(safe-area-inset-bottom));
    right: max(20px, env(safe-area-inset-right));
  }
}

@media (max-width: 767px) {
  .scroll-to-top .top {
    bottom: 160px;
    opacity: 0.45;
    transition: opacity 0.3s ease;
  }
  .scroll-to-top .top:hover, .scroll-to-top .top:focus, .scroll-to-top .top:active {
    opacity: 1;
  }
}
@media only screen and (max-width: 1023px) {
  .mobile-menu-logo .remove {
    min-height: 44px;
    min-width: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
  }
}
@media (max-width: 767px) {
  .project-slider .swiper-wrapper {
    flex-wrap: wrap;
    transform: none !important;
    transition: none !important;
  }
  .project-slider .swiper-wrapper > .swiper-slide,
  .project-slider .swiper-wrapper > * {
    width: 100% !important;
    flex: 0 0 100%;
    margin-right: 0 !important;
    margin-bottom: 16px;
  }
  .project-slider .single-item {
    width: 100%;
  }
  .project-slider .swiper-button-next,
  .project-slider .swiper-button-prev,
  .project-slider + .swiper-button-next,
  .project-slider + .swiper-button-prev {
    display: none;
  }
}
@media (max-width: 767px) {
  .single-service .service-desc {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .single-service h3 {
    font-size: 20px;
  }
  .single-service {
    max-height: none;
  }
}
@media (max-width: 767px) {
  .sec-title h2 {
    font-size: 26px;
  }
}
@media (max-width: 576px) {
  .sec-title h2 {
    font-size: 22px;
  }
}

.footer-menu,
.footer-widget {
  word-break: break-word;
}

@media (max-width: 767px) {
  .footer-widget-accordion details {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  .footer-widget-accordion details:last-child {
    border-bottom: none;
  }
  .footer-accordion-summary {
    font-weight: 700;
    font-size: 16px;
    color: #e4e4e4;
    padding: 12px 0;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    list-style: none;
    user-select: none;
  }
  .footer-accordion-summary::-webkit-details-marker {
    display: none;
  }
  .footer-accordion-summary::marker {
    display: none;
  }
  .footer-accordion-summary::after {
    content: "+";
    font-size: 18px;
    width: 24px;
    text-align: center;
    transition: transform 0.2s;
  }
  .footer-widget-accordion details[open] .footer-accordion-summary::after {
    content: "−";
  }
  .footer-tagline {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
}
@media (min-width: 768px) {
  .footer-accordion-summary {
    font-weight: 700;
    font-size: 25px;
    color: #e4e4e4;
    padding: 0;
    cursor: default;
    margin-bottom: 20px;
  }
  .footer-accordion-summary::after {
    display: none;
  }
}
@supports (padding: max(0px)) {
  body {
    padding-left: env(safe-area-inset-left, 0);
    padding-right: env(safe-area-inset-right, 0);
  }
}
.creasoft-wrap {
  overflow-x: clip;
}

body.nav-dropdown-open {
  touch-action: none;
  -webkit-overflow-scrolling: auto;
}

@supports (padding: max(0px)) {
  .hero-wrapper .widgets-container {
    padding-left: max(10px, env(safe-area-inset-left));
    padding-right: max(10px, env(safe-area-inset-right));
    bottom: max(20px, env(safe-area-inset-bottom));
  }
}
@media (max-width: 767px) {
  .hero-wrapper .widgets-container {
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    padding-left: 16px;
    padding-right: 16px;
  }
}
@media (max-width: 767px) {
  .hero-wrapper .widgets-container .single-widget {
    width: 56px;
    min-height: 60px;
    flex-shrink: 0;
  }
}
@media (max-width: 767px) {
  .hero-wrapper .widgets-container .single-widget .widget {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
  }
}
@media (max-width: 767px) {
  .hero-wrapper .widgets-container .single-widget .widget .stars2 {
    position: static;
    transform: none;
    order: 2;
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.01em;
    color: #ffc107;
    white-space: nowrap;
  }
}
@media (max-width: 767px) {
  .hero-wrapper .widgets-container .single-widget .widget a {
    order: 1;
  }
}
@media (max-width: 767px) {
  .hero-wrapper .widgets-container .single-widget .widget img {
    max-width: 44px;
    max-height: 26px;
  }
}

.services-swipe-hint {
  text-align: center;
  font-size: 14px;
  color: #666;
  margin-top: 12px;
  margin-bottom: 0;
}

@media (max-width: 767px) {
  .cta-button a {
    top: 140px;
  }
}
@media only screen and (max-width: 1023px) {
  header .main-nav {
    z-index: 100050;
    box-shadow: 4px 0 24px rgba(0, 0, 0, 0.15);
  }
  header .main-nav.slidenav {
    box-shadow: 4px 0 24px rgba(0, 0, 0, 0.2);
  }
}
@supports (padding: max(0px)) {
  footer .container {
    padding-bottom: max(1rem, env(safe-area-inset-bottom));
  }
}

@media only screen and (max-width: 1023px) {
  header .main-nav .mobile-menu-logo {
    padding-right: 54px;
  }
  header .main-nav .mobile-menu-logo a img {
    max-width: calc(100% - 10px);
  }
  @supports (padding-left: env(safe-area-inset-left)) {
    header .main-nav.slidenav .mobile-menu-logo {
      padding-left: max(20px, env(safe-area-inset-left));
    }
  }
}
/*===========================
   MOBILE QA FIXES — March 2026
   Touch targets, font sizes, spacing
===========================*/
@media (max-width: 767px) {
  body {
    font-size: 14px;
  }
  p,
  .sec-title p,
  .single-service .service-desc,
  .item-inner-cnt p {
    font-size: 14px !important;
  }
  .single-service .read-btn span,
  .num-icon,
  .section-number,
  .agile-playboard__card-number,
  .agile-playboard__detail-number,
  .core-values__num,
  .tech-stack-showcase__badge,
  .story-cta-section__share-label {
    font-size: 12px !important;
  }
  
  .cookie-consent-banner__text {
    font-size: 14px !important;
  }
}
@media (max-width: 767px) {
  .achievements-section .item-inner-cnt .view-btn a {
    min-height: 44px !important;
    padding: 10px 16px !important;
    display: inline-flex !important;
    align-items: center !important;
  }
}
@media (max-width: 767px) {
  .hero-wrapper .widgets-container .single-widget .widget a {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
}
@media (max-width: 767px) {
  .single-blog .blog-thumb .tag a {
    min-height: 44px !important;
    padding: 6px 16px !important;
    display: inline-flex !important;
    align-items: center !important;
  }
}
@media (max-width: 767px) {
  .swiper-button-next-testimonial,
  .swiper-button-prev-testimonial {
    min-width: 44px !important;
    min-height: 44px !important;
  }
}
@media (max-width: 767px) {
  .achievements-section .item-inner-cnt > span {
    font-size: 14px !important;
  }
}
@media (max-width: 767px) {
  .testimonial-area .testimonial-header .reviewer-info span {
    font-size: 14px;
  }
}
@media (max-width: 767px) {
  footer .phone a,
  footer .email a {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
  }
}
@media (max-width: 767px) {
  .footer-cta-link {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
}
@media (max-width: 767px) {
  .footer-bottom .copy-txt a,
  .footer-bottom .footer-bottom-menu li a {
    min-height: 44px !important;
    display: inline-flex !important;
    align-items: center !important;
  }
}
@media (max-width: 767px) {
  .subscribe-highlight-item span {
    font-size: 14px !important;
  }
}
@media (max-width: 767px) {
  .footer-bottom .copy-txt span {
    font-size: 14px !important;
  }
}
@media (max-width: 767px) {
  .single-feature a {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
  }
}
@media (max-width: 767px) {
  .single-service .read-btn a,
  .single-service-2 .read-btn a {
    min-height: 44px !important;
    padding: 10px 24px !important;
    display: inline-flex !important;
    align-items: center !important;
  }
}
@media (max-width: 767px) {
  .hero-wrapper .widgets-container a,
  .hero-wrapper .widgets-container .widget a img {
    min-height: 28px;
  }
  .hero-wrapper .widgets-container .single-widget {
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
@media (max-width: 767px) {
  .row > [class*=col-],
  .single-service,
  .single-feature,
  .single-item,
  .item-inner-cnt,
  .service-details-content,
  .blog-details-content,
  .sidebar-banner--utility {
    min-width: 0;
  }
  .sec-title h2,
  .sec-title h3,
  .single-service h4,
  .single-feature h4,
  .item-inner-cnt h3,
  .item-inner-cnt h4,
  .service-details-content h2,
  .service-details-content h3 {
    word-break: break-word;
    overflow-wrap: anywhere;
  }
  .cmn-btn a,
  .faq-toggle-btn,
  .story-cta-section__btn,
  .footer-menu li a,
  .footer-bottom .footer-bottom-menu li a {
    white-space: normal;
    text-align: center;
  }
  footer .phone a,
  footer .email a,
  footer .address p {
    white-space: normal;
    word-break: normal;
    overflow-wrap: anywhere;
  }
  img,
  video,
  svg,
  iframe {
    max-width: 100%;
  }
}

@media (max-width: 767px) {
  .sidebar-banner--utility {
    min-height: 0;
  }
  .service-details {
    margin-top: 0;
    margin-bottom: 40px;
  }
  .service-details-content {
    margin-bottom: 24px;
  }
  .sidebar-widget {
    margin-bottom: 16px;
  }
}
@media (max-width: 767px) {
  .cta-button a,
  .scroll-to-top .top {
    z-index: 99;
  }
  .cta-button a {
    right: 8px;
  }
}
@media (orientation: landscape) and (max-height: 500px) {
  .header-area {
    padding-top: 6px !important;
    padding-bottom: 6px !important;
  }
  .logo a img {
    max-width: 180px !important;
    padding: 4px 0 !important;
  }
  .sticky {
    padding-top: 4px !important;
    padding-bottom: 4px !important;
  }
  .hero-content {
    padding-top: 60px;
  }
}
@media (max-width: 380px) {
  .header-area {
    padding-left: 8px;
    padding-right: 8px;
  }
  .logo a img {
    max-width: 220px;
  }
  .hero-content .buttons .cmn-btn a {
    padding-left: 16px;
    padding-right: 16px;
    font-size: 14px;
  }
  .hero-wrapper .widgets-container {
    padding-left: 8px;
    padding-right: 8px;
  }
}
@media (max-width: 767px) {
  .sec-mar-top {
    margin-top: 40px;
  }
  .sec-mar {
    margin: 40px 0;
  }
  .project-slider {
    margin-top: 40px;
  }
  .project-area {
    margin-top: 30px;
    margin-bottom: 30px;
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .features-area {
    padding: 40px 0;
  }
  .section-band-light {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
@media (max-width: 1199px) {
  a,
  button,
  [role=button],
  input[type=submit],
  input[type=button] {
    min-height: 44px;
    min-width: 44px;
  }
  footer a,
  nav a {
    padding-top: 11px;
    padding-bottom: 11px;
    display: inline-block;
  }
}
@media (max-width: 1199px) {
  input[type=text],
  input[type=email],
  input[type=tel],
  input[type=number],
  input[type=password],
  input[type=url],
  input[type=search],
  select,
  textarea {
    font-size: 16px !important;
  }
}
@media (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px) {
  
  .cv2-card__text span,
  .cv2-hero__eyebrow,
  .tech-stack-section__badge,
  .tech-stack-showcase__badge,
  .wf-card__step,
  .story-cta-section__share-label,
  .qa-domain-showcase__num,
  .agile-playboard__count,
  .agile-playboard__detail-eyebrow,
  .agile-playboard__proof-label {
    font-size: 13px !important;
  }
}
@media (max-width: 767px) {
  .footer-tagline {
    -webkit-line-clamp: 5;
  }
}
@media (max-width: 767px) {
  .footer-bottom .footer-bottom-menu {
    padding-right: 68px;
  }
}
@media (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px) {
  .domain-cta-link,
  .agile-playboard__card-number,
  .wf-card__step {
    font-size: 14px !important;
  }
}
/*===========================
     02.Header css 
===========================*/
header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10001;
}

.nav-dropdown-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 10000;
  cursor: pointer;
  -webkit-transition: all opacity 0.2s ease ease-out 0s;
  -moz-transition: all opacity 0.2s ease ease-out 0s;
  -ms-transition: all opacity 0.2s ease ease-out 0s;
  -o-transition: all opacity 0.2s ease ease-out 0s;
  transition: all opacity 0.2s ease ease-out 0s;
}

body.nav-dropdown-open {
  overflow: hidden;
}

body.nav-dropdown-open header.header-area {
  z-index: 10001;
}

.header-area {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 100px;
  padding-top: max(30px, env(safe-area-inset-top));
  padding-left: max(100px, env(safe-area-inset-left));
  padding-right: max(100px, env(safe-area-inset-right));
  background-color: #0e0e0e;
  position: relative;
  z-index: 100;
  -webkit-transition: all 0.5s ease-out 0s;
  -moz-transition: all 0.5s ease-out 0s;
  -ms-transition: all 0.5s ease-out 0s;
  -o-transition: all 0.5s ease-out 0s;
  transition: all 0.5s ease-out 0s;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .header-area {
    padding: 28px 30px;
    padding-top: max(28px, env(safe-area-inset-top));
    padding-left: max(30px, env(safe-area-inset-left));
    padding-right: max(30px, env(safe-area-inset-right));
  }
}
@media (max-width: 767px) {
  .header-area {
    padding: 22px 10px;
    padding-top: max(22px, env(safe-area-inset-top));
    padding-left: max(10px, env(safe-area-inset-left));
    padding-right: max(10px, env(safe-area-inset-right));
  }
}

.logo a {
  display: inline-block;
}
.logo a img {
  max-width: 220px;
  height: auto;
  object-fit: contain;
  margin-left: 20px;
}
@media only screen and (max-width: 1023px) {
  .logo a img {
    max-width: 200px;
    height: auto;
    padding: 25px 0px;
    margin-left: 10px;
  }
}

.main-nav {
  text-align: center;
}
.main-nav ul {
  list-style: none;
}
.main-nav ul li {
  display: inline-block;
  position: relative;
  padding: 0 25px;
  color: #e4e4e4;
}
.main-nav ul li:first-child {
  padding-left: 0;
}
.main-nav ul li a,
.main-nav ul li .nav-dropdown-trigger {
  position: relative;
  font-size: 15px;
  padding: 30px 0;
  font-weight: 500;
  color: #e4e4e4;
  display: inline-block;
  text-transform: capitalize;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  -webkit-transition: all 0.2s ease-out 0s;
  -moz-transition: all 0.2s ease-out 0s;
  -ms-transition: all 0.2s ease-out 0s;
  -o-transition: all 0.2s ease-out 0s;
  transition: all 0.2s ease-out 0s;
}
.main-nav ul li a.active,
.main-nav ul li .nav-dropdown-trigger.active {
  color: #2563eb;
}
.main-nav ul li a:hover,
.main-nav ul li .nav-dropdown-trigger:hover {
  color: #2563eb;
}
.main-nav ul li > i {
  position: absolute;
  top: 30px;
  right: 0;
  font-size: 14px;
  text-align: center;
  z-index: 999;
  cursor: pointer;
}
.main-nav ul li ul.sub-menu {
  position: absolute;
  left: 0;
  right: 0;
  top: auto;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  min-width: 230px;
  background-color: #fff;
  text-align: left;
  z-index: 9;
  border-radius: 12px;
  overflow: hidden;
  border-top: 3px solid #2563eb;
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.15), 0 2px 8px rgba(0, 0, 0, 0.06);
  padding: 0.5rem 0;
  -webkit-transition: all 0.2s ease-out 0s;
  -moz-transition: all 0.2s ease-out 0s;
  -ms-transition: all 0.2s ease-out 0s;
  -o-transition: all 0.2s ease-out 0s;
  transition: all 0.2s ease-out 0s;
  -webkit-transform: translateY(-10px);
  -moz-transform: translateY(-10px);
  -ms-transform: translateY(-10px);
  -o-transform: translateY(-10px);
  transform: translateY(-10px);
}
.main-nav ul li ul.sub-menu > li {
  padding: 0;
  display: block;
  border-bottom: none;
}
.main-nav ul li ul.sub-menu > li:last-child {
  border: none;
}
.main-nav ul li ul.sub-menu > li a {
  position: relative;
  display: flex;
  align-items: center;
  padding: 9px 18px 9px 16px;
  color: #444;
  font-weight: 400;
  text-transform: capitalize;
  font-size: 14px;
  line-height: 1;
  border-radius: 4px;
  -webkit-transition: all 0.2s ease-out 0s;
  -moz-transition: all 0.2s ease-out 0s;
  -ms-transition: all 0.2s ease-out 0s;
  -o-transition: all 0.2s ease-out 0s;
  transition: all 0.2s ease-out 0s;
}
.main-nav ul li ul.sub-menu > li a .bi {
  font-size: 16px;
  color: #888;
  margin-right: 10px;
  width: 20px;
  text-align: center;
  flex-shrink: 0;
  transition: color 0.2s;
}
.main-nav ul li ul.sub-menu > li a::before {
  display: none;
}
.main-nav ul li ul.sub-menu > li a.active {
  font-weight: 500;
  color: #2563eb;
}
.main-nav ul li ul.sub-menu > li a:hover {
  color: #2563eb;
  padding-left: 20px;
}
.main-nav ul li ul.sub-menu > li a:hover .bi {
  color: #2563eb;
}
.main-nav ul li:hover ul.sub-menu {
  visibility: visible;
  opacity: 1;
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
}
.main-nav ul li:hover div.mega-menu {
  visibility: visible;
  opacity: 1;
}
.main-nav ul li:hover div.mega-menu.mega-menu-closed {
  visibility: hidden;
  opacity: 0;
}
.main-nav ul li.mega-menu-parent-closed:hover div.mega-menu {
  visibility: hidden;
  opacity: 0;
}
@media (max-width: 767px) {
  .main-nav .main-nav ul li div.mega-menu {
    visibility: hidden !important;
    opacity: 0 !important;
  }
}

.main-nav ul li.has-child:not(.mega-menu-parent-closed) > .nav-dropdown-trigger[aria-expanded=true] + div.mega-menu {
  visibility: visible;
  opacity: 1;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
}

.mega-menu {
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  top: auto;
  width: 640px;
  opacity: 0;
  visibility: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1), 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: opacity 0.3s ease, visibility 0.3s ease;
  border-radius: 12px;
  z-index: 10002;
}
.mega-menu.mega-menu-closed {
  visibility: hidden !important;
  opacity: 0 !important;
}
@media (max-width: 767px) {
  .mega-menu {
    position: absolute;
    width: 100%;
    left: 0;
    transform: none;
    border-radius: 0;
  }
}
.mega-menu .mega-menu-content {
  display: flex;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(18px) saturate(1.6);
  -webkit-backdrop-filter: blur(18px) saturate(1.6);
  border-radius: 12px;
  overflow: hidden;
  border-top: 3px solid #2563eb;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-top: 3px solid #2563eb;
}
.mega-menu .mega-menu-categories {
  min-width: 210px;
  background: rgba(245, 247, 250, 0.75);
  padding: 0.5rem 0;
  border-right: 1px solid rgba(234, 237, 240, 0.7);
}
.mega-menu .mega-menu-categories .mega-menu-cat-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px 12px 18px;
  cursor: pointer;
  transition: all 0.2s ease;
  color: #555;
  border: none;
  background: transparent;
  font: inherit;
  width: 100%;
  text-align: left;
  margin: 0;
  white-space: nowrap;
  border-left: 3px solid transparent;
  text-decoration: none;
}
.mega-menu .mega-menu-categories .mega-menu-cat-item > .bi {
  font-size: 16px;
  color: #888;
  width: 20px;
  flex-shrink: 0;
  text-align: center;
  transition: color 0.2s;
}
.mega-menu .mega-menu-categories .mega-menu-cat-item > span {
  flex: 1;
  font-size: 14px;
  font-weight: 500;
  text-align: left;
}
.mega-menu .mega-menu-categories .mega-menu-cat-item > .arrow {
  font-size: 14px;
  opacity: 0;
  transition: opacity 0.2s, transform 0.2s;
  color: #2563eb;
}
.mega-menu .mega-menu-categories .mega-menu-cat-item:hover, .mega-menu .mega-menu-categories .mega-menu-cat-item.active {
  background: #fff;
  color: #2563eb;
  border-left: 3px solid #2563eb;
}
.mega-menu .mega-menu-categories .mega-menu-cat-item:hover > .bi, .mega-menu .mega-menu-categories .mega-menu-cat-item.active > .bi {
  color: #2563eb;
}
.mega-menu .mega-menu-categories .mega-menu-cat-item:hover > .arrow, .mega-menu .mega-menu-categories .mega-menu-cat-item.active > .arrow {
  opacity: 1;
  transform: translateX(2px);
}
.mega-menu .mega-menu-details {
  flex: 1;
  padding: 1.25rem 1.75rem;
  min-height: 280px;
  min-width: 0;
}
.mega-menu .mega-menu-details .mega-menu-detail-panel {
  animation: fadeIn 0.18s ease;
  max-width: 340px;
}
.mega-menu .mega-menu-details ul {
  display: block !important;
  list-style: none;
  padding: 0;
  margin: 0;
}
.mega-menu .mega-menu-details ul li {
  display: block !important;
  width: 100%;
  padding: 0 !important;
}
.mega-menu .mega-menu-details ul li a {
  display: flex !important;
  align-items: center;
  width: 100%;
  padding: 9px 8px 9px 0 !important;
  color: #444;
  font-size: 14px;
  font-weight: 400;
  text-align: left;
  transition: color 0.2s, padding-left 0.2s, background 0.2s;
  border-radius: 4px;
}
.mega-menu .mega-menu-details ul li a::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #d0d5dd;
  margin-right: 10px;
  flex-shrink: 0;
  transition: background 0.2s, transform 0.2s;
}
.mega-menu .mega-menu-details ul li a:hover {
  color: #2563eb;
  padding-left: 4px !important;
}
.mega-menu .mega-menu-details ul li a:hover::before {
  background: #2563eb;
  transform: scale(1.3);
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateX(4px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@media only screen and (max-width: 1023px) {
  .sub-menu.d-block .mega-menu-content {
    display: flex;
    flex-direction: column;
    background: transparent;
    overflow: visible;
  }
  .sub-menu.d-block .mega-menu-content .mega-menu-categories {
    width: 100%;
    min-width: auto;
    background: transparent;
    border-right: none;
    padding: 0;
  }
  .sub-menu.d-block .mega-menu-content .mega-menu-categories .mega-menu-cat-item {
    padding: 10px 15px;
    color: #fff;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    white-space: normal;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }
  .sub-menu.d-block .mega-menu-content .mega-menu-categories .mega-menu-cat-item > .bi {
    color: #ccc;
  }
  .sub-menu.d-block .mega-menu-content .mega-menu-categories .mega-menu-cat-item > .arrow {
    display: none;
  }
  .sub-menu.d-block .mega-menu-content .mega-menu-categories .mega-menu-cat-item:hover, .sub-menu.d-block .mega-menu-content .mega-menu-categories .mega-menu-cat-item.active {
    background: rgba(255, 255, 255, 0.05);
    color: #2563eb;
  }
  .sub-menu.d-block .mega-menu-content .mega-menu-categories .mega-menu-cat-item:hover > .bi, .sub-menu.d-block .mega-menu-content .mega-menu-categories .mega-menu-cat-item.active > .bi {
    color: #2563eb;
  }
  .sub-menu.d-block .mega-menu-content .mega-menu-details {
    padding: 0 15px 10px;
    min-height: auto;
  }
  .sub-menu.d-block .mega-menu-content .mega-menu-details ul li a {
    color: #ccc;
    font-size: 13px;
    padding: 6px 0;
    text-align: left;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }
  .sub-menu.d-block .mega-menu-content .mega-menu-details ul li a:hover {
    color: #2563eb;
  }
}
@media only screen and (max-width: 1023px) {
  .main-nav .sub-menu.d-block {
    position: fixed !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    top: auto !important;
    max-height: 70vh;
    border-radius: 16px 16px 0 0;
    overflow-y: auto;
    z-index: 10002;
    box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.25);
    background: #0e0e0e;
    padding: 0 16px 24px;
    box-sizing: border-box;
  }
}
.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.get-qoute {
  text-align: right;
}
@media (max-width: 767px) {
  .get-qoute {
    display: none;
  }
}
.get-qoute .cmn-btn a {
  background-color: #0e0e0e;
  border-color: #0e0e0e;
  box-shadow: -1px 0 6px rgba(37, 99, 235, 0.8), 1px 0 6px rgba(37, 99, 235, 0.8), 0 -1px 6px rgba(0, 229, 255, 0.5), 0 1px 6px rgba(0, 229, 255, 0.5);
}

/*===========================
     03.Hero css
===========================*/
.hero-area {
  position: relative;
  height: 100vh;
  height: 100dvh;
  background-image: url(/img/bg.webp);
  background-image: image-set(url(/img/bg.webp) type("image/webp"), url(/img/bg.png) type("image/png"));
  background-size: cover;
  background-position: top left;
  background-color: #0e0e0e;
  overflow: hidden;
}
@media (max-width: 767px) {
  .hero-area {
    height: unset;
    background-image: url(/img/bg-mobile.webp);
    background-image: image-set(url(/img/bg-mobile.webp) type("image/webp"), url(/img/bg.png) type("image/png"));
  }
}
.hero-area .ken-burns-slideshow {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  overflow: hidden;
  width: 50%;
  border-radius: 100px 0px 0px 0px;
  box-shadow: -1px 0 6px rgba(37, 99, 235, 0.8), -1px 0 12px rgba(0, 229, 255, 0.5);
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .hero-area .ken-burns-slideshow {
    display: none;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .hero-area .ken-burns-slideshow {
    width: 45%;
  }
}
.hero-area .ken-burns-slideshow img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  animation: kenburns 20s infinite;
}

@keyframes kenburns {
  0% {
    opacity: 0;
  }
  5% {
    opacity: 1;
  }
  95% {
    transform: scale3d(1.5, 1.5, 1.5) translate3d(-100px, -80px, 0px);
    animation-timing-function: ease-in;
    opacity: 1;
  }
  100% {
    transform: scale3d(1.5, 1.5, 1.5) translate3d(-90px, -70px, 0px);
    opacity: 0;
  }
}
.hero-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100vh;
  height: 100dvh;
  padding-top: 100px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .hero-wrapper {
    padding-top: 100px;
  }
}
@media (max-width: 767px) {
  .hero-wrapper {
    min-height: 100vh;
    min-height: 100dvh;
    height: auto;
  }
}
.hero-wrapper .widgets-container {
  position: absolute;
  bottom: 20px;
  left: 0;
  width: 55%;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding-left: 100px;
  padding-right: 20px;
  z-index: 2;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .hero-wrapper .widgets-container {
    padding-left: 60px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .hero-wrapper .widgets-container {
    padding-left: 40px;
    width: 60%;
  }
}
@media (max-width: 767px) {
  .hero-wrapper .widgets-container {
    bottom: 20px;
    width: 100%;
    padding-left: 10px;
    padding-right: 10px;
    justify-content: center;
    flex-wrap: wrap;
    gap: 5px;
  }
}
.hero-wrapper .widgets-container .single-widget {
  min-height: 80px;
  width: 150px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
}
@media (max-width: 767px) {
  .hero-wrapper .widgets-container .single-widget {
    width: 60px;
    min-height: 50px;
    padding: 5px;
  }
}
.hero-wrapper .widgets-container .single-widget .widget {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  overflow: visible;
}
.hero-wrapper .widgets-container .single-widget .widget .widget-badge-link {
  min-height: 44px;
  min-width: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.hero-wrapper .widgets-container .single-widget .widget .stars2 {
  display: flex;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 1px;
}
.hero-wrapper .widgets-container .single-widget .widget .stars2 span {
  display: inline-block;
  color: #ffc107;
  font-size: 12px;
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .hero-wrapper .widgets-container .single-widget .widget .stars2 span {
    font-size: 9px;
  }
}
.hero-wrapper .widgets-container .single-widget img {
  height: auto;
  width: auto;
  max-width: 100%;
}
@media (max-width: 767px) {
  .hero-wrapper .widgets-container .single-widget img {
    max-width: 50px;
    max-height: 30px;
  }
}

@media only screen and (min-width: 1400px) and (max-width: 1699px) {
  .hero-content {
    padding-left: 60px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .hero-content {
    padding-left: 30px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .hero-content {
    margin-bottom: 50px;
  }
}
.hero-content.layout2 h1 {
  text-transform: capitalize;
}
.hero-content.layout2 h1 span {
  text-transform: uppercase;
}
.hero-content h1 {
  font-weight: 800;
  font-size: 44px;
  text-transform: uppercase;
  color: #e4e4e4;
  margin-bottom: 30px;
}
@media only screen and (min-width: 1400px) and (max-width: 1699px) {
  .hero-content h1 {
    font-size: 40px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .hero-content h1 {
    font-size: 36px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .hero-content h1 {
    font-size: 32px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .hero-content h1 {
    font-size: 28px;
    line-height: 38px;
  }
}
@media (max-width: 767px) {
  .hero-content h1 {
    font-size: clamp(19px, 3.5vw + 8px, 28px);
    line-height: 1.35;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .hero-content h1 {
    font-size: 34px;
  }
}
.hero-content h1 .hero-phrase {
  display: block;
  background: linear-gradient(135deg, #2563eb 0%, #00e5ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  min-height: 1.5em;
  overflow: visible;
  filter: brightness(1.15);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.hero-content h1 .hero-phrase.fade-in {
  opacity: 1;
  transform: translateY(0);
}
.hero-content h1 .hero-phrase.fade-out {
  opacity: 0;
  transform: translateY(8px);
}
.hero-content p {
  font-weight: 400;
  font-size: 16px;
  color: #e4e4e4;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .hero-content p {
    font-size: 15px;
  }
}
@media (max-width: 767px) {
  .hero-content p {
    font-size: 14px;
  }
}

/* Blinking cursor for typewriter */
@keyframes blink {
  50% {
    opacity: 0;
  }
}
.typewriter-cursor {
  animation: blink 1s step-end infinite;
  -webkit-text-fill-color: #00e5ff;
  background: none;
  -webkit-background-clip: unset;
  background-clip: unset;
}

/* The caret glyph is generated here rather than as a literal "|" text node, so
   it never enters the H1's textContent (keeps extractors from reading "Fintech|"). */
.typewriter-cursor::after {
  content: "|";
}

.buttons {
  margin-top: 40px;
}
.buttons .cmn-btn {
  margin-right: 20px;
}
@media (max-width: 767px) {
  .buttons .cmn-btn {
    margin-right: 10px;
  }
}
.buttons .cmn-btn:last-child {
  margin: 0;
}

.cmn-btn.layout-two a {
  background-color: transparent;
  border: 1px solid #0f172a;
  color: #0f172a;
}

@keyframes rotateme {
  0% {
    transform: rotate(0deg);
    opacity: 1;
  }
  50% {
    transform: rotate(180deg);
  }
  100% {
    transform: rotate(360deg);
    opacity: 1;
  }
}
/*===========================
     04.Services css 
===========================*/
.services-area {
  position: relative;
}
@media (max-width: 767px) {
  .services-area {
    margin: 80px 0 32px;
  }
}
.services-area .swiper-button-next,
.services-area .swiper-button-prev {
  top: 70%;
}
@media (max-width: 767px) {
  .services-area .swiper-button-next,
  .services-area .swiper-button-prev {
    display: none;
  }
}
.services-area .swiper-button-next:after,
.services-area .swiper-button-prev:after {
  font-size: 20px;
  height: 40px;
  min-width: 40px;
  color: #2a2a2a;
  border: 1px solid #2a2a2a;
  text-align: center;
  line-height: 40px;
  border-radius: 50%;
  -webkit-transition: all 0.5s ease-out 0s;
  -moz-transition: all 0.5s ease-out 0s;
  -ms-transition: all 0.5s ease-out 0s;
  -o-transition: all 0.5s ease-out 0s;
  transition: all 0.5s ease-out 0s;
}
.services-area .swiper-button-next:hover:after,
.services-area .swiper-button-prev:hover:after {
  color: #e4e4e4;
  background-color: #2a2a2a;
}
.services-area .swiper-button-next {
  right: 7%;
}
@media only screen and (min-width: 1400px) and (max-width: 1699px), only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .services-area .swiper-button-next {
    right: 1%;
  }
}
.services-area .swiper-button-prev {
  left: 7%;
}
@media only screen and (min-width: 1400px) and (max-width: 1699px), only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .services-area .swiper-button-prev {
    left: 1%;
  }
}

.swiper.services-slider {
  padding: 5px;
}
@media (hover: none) and (pointer: coarse), (max-width: 767px) {
  .swiper.services-slider {
    overflow: hidden;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-perspective: none;
    perspective: none;
  }
  .swiper.services-slider .swiper-wrapper {
    -webkit-transform-style: flat;
    transform-style: flat;
  }
  .swiper.services-slider .swiper-slide {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transform-style: flat;
    transform-style: flat;
  }
  .swiper.services-slider .single-service {
    -webkit-transform: none !important;
    transform: none !important;
  }
}

.single-service {
  position: relative;
  background-color: #ffffff;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.05);
  border-radius: 10px;
  padding: 30px;
  -webkit-transition: all 0.5s ease-out 0s;
  -moz-transition: all 0.5s ease-out 0s;
  -ms-transition: all 0.5s ease-out 0s;
  -o-transition: all 0.5s ease-out 0s;
  transition: all 0.5s ease-out 0s;
}
.single-service span {
  position: absolute;
  right: 30px;
  top: 30px;
  font-weight: 700;
  font-size: 50px;
  -webkit-text-stroke: 2px #2563eb;
  -webkit-text-fill-color: transparent;
  opacity: 0.2;
  line-height: 1;
  -webkit-transition: all 0.5s ease-out 0s;
  -moz-transition: all 0.5s ease-out 0s;
  -ms-transition: all 0.5s ease-out 0s;
  -o-transition: all 0.5s ease-out 0s;
  transition: all 0.5s ease-out 0s;
}
.single-service .icon {
  margin-bottom: 20px;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-image: linear-gradient(135deg, #101119 0%, #1e2740 35%, #2563eb 100%);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}
.single-service .icon i {
  font-size: 28px;
  color: #ffffff;
}
.single-service .icon.icon--software-dev {
  background-image: linear-gradient(135deg, #101119 0%, #1d3557 40%, #2563eb 100%);
}
.single-service .icon.icon--qa {
  background-image: linear-gradient(135deg, #101119 0%, #2b9348 35%, #52b788 100%);
}
.single-service .icon.icon--cloud {
  background-image: linear-gradient(135deg, #101119 0%, #1b4b7a 35%, #48bfe3 100%);
}
.single-service .icon.icon--data {
  background-image: linear-gradient(135deg, #101119 0%, #4b0082 35%, #9d4edd 100%);
}
.single-service .icon.icon--product {
  background-image: linear-gradient(135deg, #101119 0%, #ff7b00 35%, #ffb703 100%);
}
.single-service .icon.icon--ai {
  background-image: linear-gradient(135deg, #101119 0%, #3a0ca3 35%, #4cc9f0 100%);
}
.single-service .icon.icon--eudr {
  background-image: linear-gradient(135deg, #101119 0%, #1b3d1b 35%, #4caf50 100%);
}
.single-service h3,
.single-service h4 {
  font-style: normal;
  font-weight: 500;
  font-size: 25px;
  color: #17161a;
  margin-bottom: 10px;
  -webkit-transition: all 0.5s ease-out 0s;
  -moz-transition: all 0.5s ease-out 0s;
  -ms-transition: all 0.5s ease-out 0s;
  -o-transition: all 0.5s ease-out 0s;
  transition: all 0.5s ease-out 0s;
}
.single-service p {
  font-weight: 400;
  font-size: 16px;
  color: #272727;
  -webkit-transition: all 0.5s ease-out 0s;
  -moz-transition: all 0.5s ease-out 0s;
  -ms-transition: all 0.5s ease-out 0s;
  -o-transition: all 0.5s ease-out 0s;
  transition: all 0.5s ease-out 0s;
}
.single-service .read-btn {
  text-align: right;
}
.single-service .read-btn a {
  position: relative;
  font-weight: 500;
  font-size: 15px;
  color: #17161a;
  text-align: right;
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  min-height: 44px;
  padding: 8px 4px;
  margin-top: 12px;
  -webkit-transition: all 0.5s ease-out 0s;
  -moz-transition: all 0.5s ease-out 0s;
  -ms-transition: all 0.5s ease-out 0s;
  -o-transition: all 0.5s ease-out 0s;
  transition: all 0.5s ease-out 0s;
}
.single-service .read-btn a:after {
  content: "";
  display: inline-block;
  flex: 0 0 28px;
  height: 28px;
  width: 28px;
  border: 1px solid rgb(55, 179, 74);
  border-radius: 50%;
  background: transparent url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%2337b34a' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M5 12 L11 8 L5 4'/></svg>") center/11px 11px no-repeat;
  transition: transform 0.25s ease;
}
.single-service .read-btn a:hover:after {
  transform: translateX(3px);
}
.single-service:hover {
  background-color: #1e2024;
}
.single-service:hover span {
  -webkit-text-stroke: 1px #2563eb;
  -webkit-text-fill-color: transparent;
  opacity: 0.6;
}
.single-service:hover h3,
.single-service:hover h4,
.single-service:hover p {
  color: #e4e4e4;
}
.single-service:hover .read-btn a {
  color: #e4e4e4;
}
.single-service.microservice-type-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}
.single-service.microservice-type-card .microservice-examples {
  position: absolute;
  bottom: 30px;
  left: 30px;
  right: 30px;
  z-index: 0;
  pointer-events: none;
}
.single-service.microservice-type-card .microservice-examples span {
  display: block;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.5;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  -webkit-text-stroke: 1px rgba(37, 99, 235, 0.2);
  -webkit-text-fill-color: transparent;
  opacity: 0.4;
  -webkit-transition: all 0.5s ease-out 0s;
  -moz-transition: all 0.5s ease-out 0s;
  -ms-transition: all 0.5s ease-out 0s;
  -o-transition: all 0.5s ease-out 0s;
  transition: all 0.5s ease-out 0s;
  word-break: break-word;
  text-align: left;
}
.single-service.microservice-type-card .icon,
.single-service.microservice-type-card h4,
.single-service.microservice-type-card p {
  position: relative;
  z-index: 1;
}
.single-service.microservice-type-card p {
  margin-bottom: 0;
  flex: 1;
}
.single-service.microservice-type-card:hover .microservice-examples span {
  -webkit-text-stroke: 1px rgba(37, 99, 235, 0.35);
  opacity: 0.6;
}

.single-service-2 {
  position: relative;
  background-color: #ffffff;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.05);
  border-radius: 10px;
  padding: 30px;
  -webkit-transition: all 0.5s ease-out 0s;
  -moz-transition: all 0.5s ease-out 0s;
  -ms-transition: all 0.5s ease-out 0s;
  -o-transition: all 0.5s ease-out 0s;
  transition: all 0.5s ease-out 0s;
}
.single-service-2 span {
  position: absolute;
  right: 30px;
  top: 30px;
  font-weight: 700;
  font-size: 50px;
  -webkit-text-stroke: 2px #2563eb;
  -webkit-text-fill-color: transparent;
  opacity: 0.2;
  line-height: 1;
  -webkit-transition: all 0.5s ease-out 0s;
  -moz-transition: all 0.5s ease-out 0s;
  -ms-transition: all 0.5s ease-out 0s;
  -o-transition: all 0.5s ease-out 0s;
  transition: all 0.5s ease-out 0s;
}
.single-service-2 .icon {
  margin-bottom: 20px;
}
.single-service-2 .icon img {
  height: 85px;
}
.single-service-2 h4 {
  font-style: normal;
  font-weight: 500;
  font-size: 25px;
  color: #17161a;
  margin-bottom: 10px;
  -webkit-transition: all 0.5s ease-out 0s;
  -moz-transition: all 0.5s ease-out 0s;
  -ms-transition: all 0.5s ease-out 0s;
  -o-transition: all 0.5s ease-out 0s;
  transition: all 0.5s ease-out 0s;
}
.single-service-2 h3 {
  font-style: normal;
  font-weight: 500;
  font-size: 25px;
  color: #2563eb;
  margin-bottom: 10px;
  -webkit-transition: all 0.5s ease-out 0s;
  -moz-transition: all 0.5s ease-out 0s;
  -ms-transition: all 0.5s ease-out 0s;
  -o-transition: all 0.5s ease-out 0s;
  transition: all 0.5s ease-out 0s;
}
.single-service-2 p {
  font-weight: 400;
  font-size: 16px;
  color: #000;
  -webkit-transition: all 0.5s ease-out 0s;
  -moz-transition: all 0.5s ease-out 0s;
  -ms-transition: all 0.5s ease-out 0s;
  -o-transition: all 0.5s ease-out 0s;
  transition: all 0.5s ease-out 0s;
}
.single-service-2 .read-btn {
  text-align: right;
}
.single-service-2 .read-btn a {
  position: relative;
  font-weight: 500;
  font-size: 15px;
  color: #17161a;
  text-align: right;
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  min-height: 44px;
  padding: 8px 4px;
  margin-top: 12px;
  -webkit-transition: all 0.5s ease-out 0s;
  -moz-transition: all 0.5s ease-out 0s;
  -ms-transition: all 0.5s ease-out 0s;
  -o-transition: all 0.5s ease-out 0s;
  transition: all 0.5s ease-out 0s;
}
.single-service-2 .read-btn a:after {
  content: "";
  display: inline-block;
  flex: 0 0 28px;
  height: 28px;
  width: 28px;
  border: 1px solid rgb(55, 179, 74);
  border-radius: 50%;
  background: transparent url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%2337b34a' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M5 12 L11 8 L5 4'/></svg>") center/11px 11px no-repeat;
  transition: transform 0.25s ease;
}
.single-service-2 .read-btn a:hover:after {
  transform: translateX(3px);
}
.single-service-2:hover {
  background-color: #1e2024;
}
.single-service-2:hover span {
  -webkit-text-stroke: 1px #2563eb;
  -webkit-text-fill-color: transparent;
  opacity: 0.6;
}
.single-service-2:hover h3,
.single-service-2:hover h4,
.single-service-2:hover p {
  color: #e4e4e4;
}
.single-service-2:hover .read-btn a {
  color: #e4e4e4;
}

/*===========================
     05.About css 
===========================*/
@media (max-width: 767px) {
  .about-area {
    margin-bottom: 80px;
  }
}
.about-area .sec-title {
  margin-bottom: 15px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .about-area .or-1 {
    order: 1;
  }
  .about-area .or-2 {
    order: 2;
    margin-top: 80px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) and (max-width: 767px), (max-width: 767px) and (max-width: 767px) {
  .about-area .or-2 {
    margin-top: 30px;
  }
}

.about-left h3 {
  font-weight: 500;
  font-size: 30px;
  text-transform: capitalize;
  color: #17161a;
}
@media (max-width: 767px) {
  .about-left h3 {
    font-size: 20px;
  }
}

.company-since {
  position: relative;
  background-color: #ffffff;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.05);
  border-radius: 20px;
  padding: 30px 50px;
  margin-top: 30px;
}
@media (max-width: 767px) {
  .company-since {
    padding: 20px;
  }
}
.company-since:before {
  position: absolute;
  content: "";
  left: -0.5px;
  top: 1.5px;
  right: -1.5px;
  bottom: 1.5px;
  background-color: #2563eb;
  z-index: -1;
  transform: skew(0.5deg, 0.5deg);
  border-radius: 23px;
  filter: blur(1px);
}

.company-logo {
  margin-bottom: 15px;
}
.company-logo img {
  max-width: 280px;
}

.company-since strong {
  position: absolute;
  right: 50px;
  top: 20px;
  font-weight: 700;
  font-size: 26px;
  color: #17161a;
  line-height: 1;
}
.company-since h4 {
  font-weight: 500;
  font-size: 24px;
  color: #17161a;
  margin: 0;
}
@media (max-width: 767px) {
  .company-since h4 {
    font-size: 20px;
  }
}
.company-since h4 span {
  display: block;
  color: #2563eb;
}

.about-right {
  position: relative;
}

.banner-1 {
  position: relative;
  border-radius: 40px 10px 10px 10px;
}
@media (max-width: 767px) {
  .banner-1 {
    border-radius: 10px;
  }
}

.banner-1 img {
  width: 100%;
  border-radius: 40px 10px 10px 10px;
}
@media (max-width: 767px) {
  .banner-1 img {
    border-radius: 10px;
  }
}

.banner-2 {
  position: absolute;
  display: inline-block;
  right: 0;
  bottom: -55px;
  border-left: 10px solid #fff;
  border-top: 10px solid #fff;
  border-radius: 20px 5px 10px 15px;
}
@media (max-width: 767px) {
  .banner-2 {
    position: relative;
    text-align: center;
    margin-top: 20px;
    bottom: 0;
    border: none;
    width: 100%;
  }
}
.banner-2:before {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  background-color: #0a0a0a;
  opacity: 0.5;
  border-radius: 20px 5px 10px 15px;
}
@media (max-width: 767px) {
  .banner-2:before {
    border-radius: 10px;
  }
}
.banner-2 img {
  max-width: 200px;
  border-radius: 20px 5px 10px 15px;
}
@media (max-width: 767px) {
  .banner-2 img {
    width: 100%;
    max-width: none;
    border-radius: 10px;
  }
}

.banner2-inner {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.banner2-inner .play {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 56px;
  width: 56px;
  cursor: pointer;
  border: none;
  padding: 0;
  text-align: center;
  background-color: rgba(117, 218, 180, 0.3);
  font-size: 22px;
  border-radius: 50%;
  color: #2563eb;
  animation-name: ripple;
  animation-duration: 1.5s;
  animation-iteration-count: infinite;
}
.banner2-inner .play i {
  margin-left: 4px;
}

@keyframes ripple {
  0% {
    box-shadow: 0 0 0 0 rgba(48, 120, 251, 0.6), 0 0 0 0 rgba(48, 120, 251, 0.4);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(48, 120, 251, 0), 0 0 0 20px rgba(48, 120, 251, 0);
  }
  100% {
    box-shadow: 0 0 0 10px rgba(48, 120, 251, 0), 0 0 0 20px rgba(48, 120, 251, 0);
  }
}
/*===========================
     06.Feature css
===========================*/
.features-area {
  padding: 90px 0;
  background: linear-gradient(135deg, #eef2ff 0%, #e0e7ff 50%, #ede9fe 100%);
}
@media (max-width: 767px) {
  .features-area {
    padding: 80px 0;
  }
}
.features-area .sec-title span {
  color: #2563eb;
}
.features-area .sec-title h2 {
  color: #1a1a2e;
}
.features-area .sec-title p {
  color: #555;
}

.mobile-development-workflow .container {
  position: relative;
}
.mobile-development-workflow .container .arrow {
  position: absolute;
  right: 0;
  top: 0;
  left: auto;
  display: flex;
}
@media (max-width: 767px) {
  .mobile-development-workflow .container .arrow {
    display: none;
  }
}
.mobile-development-workflow .container .arrow .swiper-button-next-cx,
.mobile-development-workflow .container .arrow .swiper-button-prev-cx {
  border: 1px solid #d3d3d3;
  box-sizing: border-box;
  border-radius: 50%;
  height: 40px;
  width: 40px;
  text-align: center;
  line-height: 40px;
  color: #2563eb;
  font-size: 18px;
  -webkit-transition: all 0.5s ease-out 0s;
  -moz-transition: all 0.5s ease-out 0s;
  -ms-transition: all 0.5s ease-out 0s;
  -o-transition: all 0.5s ease-out 0s;
  transition: all 0.5s ease-out 0s;
  overflow: hidden;
}
.mobile-development-workflow .container .arrow .swiper-button-next-cx:hover,
.mobile-development-workflow .container .arrow .swiper-button-prev-cx:hover {
  color: #fff;
  background-color: #2563eb;
}
.mobile-development-workflow .container .arrow .swiper-button-prev-cx {
  position: absolute;
  right: 70px;
  top: 0;
  left: auto;
}

.single-feature {
  background-color: #ffffff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid transparent;
  border-radius: 16px;
  padding: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: relative;
  height: 100%;
  min-height: 280px;
  cursor: default;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}
.single-feature::before {
  content: "";
  display: block;
  height: 4px;
  background: var(--domain-color, #2563eb);
  border-radius: 16px 16px 0 0;
  transition: height 0.35s ease;
}
.single-feature::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 16px;
  background: var(--domain-color, #2563eb);
  opacity: 0;
  transform: translateY(100%);
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.45s ease;
  z-index: 0;
  pointer-events: none;
}
.single-feature .feature-inner {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  padding: 28px 24px 32px;
  position: relative;
  z-index: 1;
  transition: color 0.35s ease;
}
.single-feature .feature-inner .icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  flex-shrink: 0;
  background: linear-gradient(135deg, rgba(var(--domain-color-rgb, 48, 120, 251), 0.12), rgba(var(--domain-color-rgb, 48, 120, 251), 0.04));
  transition: transform 0.35s ease, box-shadow 0.35s ease, background 0.35s ease;
}
.single-feature .feature-inner .icon img {
  height: 72px;
  width: 72px;
  object-fit: contain;
}
.single-feature .feature-inner .icon i {
  font-size: 1.8rem !important;
  transition: color 0.35s ease;
}
.single-feature .feature-inner span,
.single-feature .feature-inner sup {
  font-weight: 700;
  font-size: 35px;
  line-height: 55px;
  color: #1a1a2e;
  transition: color 0.35s ease;
}
.single-feature .feature-inner sup {
  top: -10px;
}
.single-feature .feature-inner h3, .single-feature .feature-inner h4 {
  font-weight: 600;
  font-size: 20px;
  line-height: 1.3;
  text-transform: capitalize;
  color: #1a1a2e;
  margin-top: 4px;
  margin-bottom: 0;
  flex-shrink: 0;
  transition: color 0.35s ease;
}
.single-feature .feature-inner p {
  color: #555;
  margin-top: 12px;
  font-size: 14px;
  line-height: 1.6;
  flex: 1;
  transition: color 0.35s ease;
}
.single-feature:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.16);
  border-color: var(--domain-color, #2563eb);
}
.single-feature:hover::before {
  height: 6px;
}
.single-feature:hover::after {
  opacity: 0.08;
  transform: translateY(0);
}
.single-feature:hover .feature-inner .icon {
  transform: scale(1.12);
  box-shadow: 0 0 0 6px rgba(var(--domain-color-rgb, 48, 120, 251), 0.15);
  background: var(--domain-color, #2563eb);
}
.single-feature:hover .feature-inner .icon i {
  color: #fff !important;
}
.single-feature:hover .feature-inner h3, .single-feature:hover .feature-inner h4 {
  color: var(--domain-color, #2563eb);
}

/*===========================
     07.Project css 
===========================*/
@media (max-width: 767px) {
  .project-area {
    margin: 80px 0;
  }
}

.isotope-menu {
  text-align: center;
  list-style: none;
  margin-bottom: 40px;
}
.isotope-menu li {
  display: inline-block;
  font-weight: 600;
  font-size: 16px;
  color: #e4e4e4;
  cursor: pointer;
  background: #0e0e0e;
  box-shadow: inset 0px 0px 10px rgba(6, 6, 6, 0.15);
  border-radius: 10px;
  padding: 10px 30px;
  margin: 0 10px;
  -webkit-transition: all 0.5s ease-out 0s;
  -moz-transition: all 0.5s ease-out 0s;
  -ms-transition: all 0.5s ease-out 0s;
  -o-transition: all 0.5s ease-out 0s;
  transition: all 0.5s ease-out 0s;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .isotope-menu li {
    font-size: 14px;
    margin: 0 5px;
  }
}
@media (max-width: 767px) {
  .isotope-menu li {
    font-size: 14px;
    padding: 15px 20px;
    margin: 10px 5px;
  }
}
.isotope-menu li.active {
  color: #0e0e0e;
  background-color: #2563eb;
}
.isotope-menu li:hover {
  color: #0e0e0e;
  background-color: #2563eb;
}

.single-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}
.single-item .item-img a img {
  width: 100%;
  border-radius: 12px;
}
.single-item .item-img span img {
  width: 100%;
  display: block;
  border-radius: 12px;
}
.single-item .item-img > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 12px;
}
.single-item .item-inner-cnt {
  background: linear-gradient(to top, rgba(15, 15, 17, 0.95) 40%, rgba(15, 15, 17, 0.75));
  backdrop-filter: blur(6px);
  padding: 16px 24px 14px;
  width: 100%;
  left: 0;
  right: 0;
  position: absolute;
  bottom: 0;
  -webkit-transition: all 0.5s ease-out 0s;
  -moz-transition: all 0.5s ease-out 0s;
  -ms-transition: all 0.5s ease-out 0s;
  -o-transition: all 0.5s ease-out 0s;
  transition: all 0.5s ease-out 0s;
}
.single-item .item-inner-cnt span {
  font-weight: 500;
  font-size: 13px;
  display: inline-block;
  color: #e4e4e4;
  border-bottom: 1px solid #2563eb;
  padding-bottom: 1px;
  margin-bottom: 6px;
}
.single-item .item-inner-cnt h3, .single-item .item-inner-cnt h4 {
  font-weight: 600;
  font-size: 20px;
  text-transform: capitalize;
  color: #e4e4e4;
  margin: 0;
}
.single-item .item-inner-cnt .view-btn {
  text-align: left;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  margin-top: 0;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease 0.1s, margin-top 0.3s ease;
}
.single-item .item-inner-cnt .view-btn p, .single-item .item-inner-cnt .view-btn span, .single-item .item-inner-cnt .view-btn a {
  position: static;
  font-style: normal;
  font-weight: 400;
  font-size: 13px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.75);
  display: block;
  text-transform: none;
  margin: 0;
}
.single-item .item-inner-cnt .view-btn p:before, .single-item .item-inner-cnt .view-btn span:before, .single-item .item-inner-cnt .view-btn a:before {
  display: none;
}
.single-item:hover .item-inner-cnt .view-btn {
  max-height: 150px;
  opacity: 1;
  margin-top: 12px;
}

/*===========================
     08.Partner css 
===========================*/
.our-partner {
  padding: 100px 0;
  background-color: #0e0e0e;
}
@media (max-width: 767px) {
  .our-partner {
    padding: 80px 0;
  }
}
.our-partner .sec-title {
  margin-bottom: 10px;
  border-right: 1px solid #2563eb;
}
.our-partner .sec-title .swiper-button-next-c,
.our-partner .sec-title .swiper-button-prev-c {
  color: #e4e4e4;
  font-size: 16px;
  display: inline-block;
  height: 40px;
  width: 40px;
  background-color: #1e2024;
  border-radius: 50%;
  line-height: 40px;
  text-align: center;
  -webkit-transition: all 0.5s ease-out 0s;
  -moz-transition: all 0.5s ease-out 0s;
  -ms-transition: all 0.5s ease-out 0s;
  -o-transition: all 0.5s ease-out 0s;
  transition: all 0.5s ease-out 0s;
}
.our-partner .sec-title .swiper-button-next-c:hover,
.our-partner .sec-title .swiper-button-prev-c:hover {
  color: #000;
  background-color: #2563eb;
}
.our-partner .sec-title .swiper-button-prev-c {
  margin-right: 20px;
}

.single-partner {
  background-color: #1e2024;
  border: 1px solid #0e0e0e;
  box-sizing: border-box;
  box-shadow: inset 0px 0px 10px rgba(6, 6, 6, 0.15);
  border-radius: 10px;
  min-height: 114px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}
.single-partner img {
  height: auto;
  width: auto;
}

.single-partner .widget {
  display: flex;
  flex-direction: column;
}
.single-partner .widget .stars2 {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: auto;
}
@media (max-width: 767px) {
  .single-partner .widget .stars2 {
    width: 100%;
    left: 67%;
  }
}
.single-partner .widget .stars2 span {
  display: inline-block;
  color: #ffc107;
  font-size: 12px;
}
.single-partner .widget img {
  height: auto;
  width: auto;
}

/*===========================
     09.Price plan css 
===========================*/
@media (max-width: 767px) {
  .priceing-plan {
    margin: 80px 0;
  }
}

.price-table-tab {
  margin-bottom: 40px;
}

.nav.nav-pills {
  justify-content: center;
}
.nav.nav-pills .nav-item .nav-link {
  background-color: #0e0e0e;
  box-shadow: inset 0px 0px 10px rgba(6, 6, 6, 0.15);
  border-radius: 10px;
  min-width: 170px;
  padding: 10px 30px;
  margin: 0 15px;
  font-weight: 600;
  font-size: 17px;
  color: #e4e4e4;
  -webkit-transition: all 0.5s ease-out 0s;
  -moz-transition: all 0.5s ease-out 0s;
  -ms-transition: all 0.5s ease-out 0s;
  -o-transition: all 0.5s ease-out 0s;
  transition: all 0.5s ease-out 0s;
}
@media (max-width: 767px) {
  .nav.nav-pills .nav-item .nav-link {
    font-size: 14px;
    min-width: 125px;
    padding: 15px 20px;
    margin: 0px 10px;
  }
}
.nav.nav-pills .nav-item .nav-link.active {
  background-color: #2563eb;
  color: #0e0e0e;
}
.nav.nav-pills .nav-item .nav-link:hover {
  background-color: #2563eb;
  color: #0e0e0e;
}

.price-box {
  background-color: #ffffff;
  box-shadow: 0px 0px 40px rgba(33, 33, 33, 0.1);
  border-radius: 10px;
  padding: 40px;
  text-align: center;
  -webkit-transition: all 0.5s ease-out 0s;
  -moz-transition: all 0.5s ease-out 0s;
  -ms-transition: all 0.5s ease-out 0s;
  -o-transition: all 0.5s ease-out 0s;
  transition: all 0.5s ease-out 0s;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .price-box {
    padding: 40px 20px;
  }
}
.price-box.layout2 h3:before {
  position: absolute;
  content: "";
  left: 50%;
  bottom: -10px;
  width: 150px;
  height: 2px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, #0e0e0e, #2563eb, #0e0e0e);
}
.price-box h3 {
  position: relative;
  font-weight: 700;
  font-size: 32px;
  color: #17161a;
  margin-bottom: 30px;
  -webkit-transition: all 0.5s ease-out 0s;
  -moz-transition: all 0.5s ease-out 0s;
  -ms-transition: all 0.5s ease-out 0s;
  -o-transition: all 0.5s ease-out 0s;
  transition: all 0.5s ease-out 0s;
}
.price-box h3:before {
  position: absolute;
  content: "";
  left: 50%;
  bottom: -10px;
  width: 150px;
  height: 2px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, #fff, #2563eb, #fff);
}
.price-box span {
  font-weight: 400;
  font-size: 18px;
  color: #17161a;
  display: block;
  -webkit-transition: all 0.5s ease-out 0s;
  -moz-transition: all 0.5s ease-out 0s;
  -ms-transition: all 0.5s ease-out 0s;
  -o-transition: all 0.5s ease-out 0s;
  transition: all 0.5s ease-out 0s;
}
.price-box strong {
  font-weight: 700;
  font-size: 38px;
  color: #17161a;
  display: block;
  margin: 20px 0;
  -webkit-transition: all 0.5s ease-out 0s;
  -moz-transition: all 0.5s ease-out 0s;
  -ms-transition: all 0.5s ease-out 0s;
  -o-transition: all 0.5s ease-out 0s;
  transition: all 0.5s ease-out 0s;
}
.price-box strong sub {
  color: #2563eb;
  font-size: 16px;
  font-weight: 400;
}
.price-box:hover h3 {
  color: #e4e4e4;
}
.price-box:hover h3:before {
  position: absolute;
  content: "";
  left: 50%;
  bottom: -10px;
  width: 150px;
  height: 2px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, #0e0e0e, #2563eb, #0e0e0e);
}
.price-box:hover h3,
.price-box:hover span,
.price-box:hover strong {
  color: #e4e4e4;
}
.price-box:hover .item-list li {
  color: #e4e4e4;
  -webkit-transition: all 0.5s ease-out 0s;
  -moz-transition: all 0.5s ease-out 0s;
  -ms-transition: all 0.5s ease-out 0s;
  -o-transition: all 0.5s ease-out 0s;
  transition: all 0.5s ease-out 0s;
}
.price-box:hover .price-btn a {
  color: #000;
  background-color: #2563eb;
}
.price-box:hover {
  background-color: #0e0e0e;
  border-radius: 10px;
}

.item-list li {
  font-size: 16px;
  color: #17161a;
  margin-bottom: 15px;
}
.item-list li:last-child {
  margin: 0;
}
.item-list li i {
  margin-right: 5px;
  font-size: 18px;
}

.price-btn {
  position: relative;
  display: inline-block;
  margin-top: 40px;
}
.price-btn a {
  background-color: #0e0e0e;
  border-radius: 5px;
  font-weight: 700;
  font-size: 17px;
  display: inline-block;
  text-align: center;
  color: #ffffff;
  min-width: 200px;
  padding: 10px 30px;
  transition: transition(0.5s);
}
.price-btn .line-1 {
  position: absolute;
  right: 8px;
  top: 8px;
  z-index: 2;
}
.price-btn .line-1:before {
  position: absolute;
  content: "";
  border: 1px solid #ffffff;
  width: 25px;
  opacity: 0.1;
  right: 0;
}
.price-btn .line-1:after {
  position: absolute;
  content: "";
  border: 1px solid #ffffff;
  height: 25px;
  opacity: 0.1;
}
.price-btn .line-2 {
  position: absolute;
  left: 8px;
  bottom: 10px;
  z-index: 2;
}
.price-btn .line-2:before {
  position: absolute;
  content: "";
  border: 1px solid #ffffff;
  height: 25px;
  opacity: 0.1;
  right: 0px;
  bottom: -2px;
}
.price-btn .line-2:after {
  position: absolute;
  content: "";
  border: 1px solid #ffffff;
  width: 25px;
  opacity: 0.1;
  left: 0px;
}

.our-service-model .item-list li {
  text-align: left;
}

/*===========================
     10.Testimonial css
===========================*/
.testimonial-area {
  background-color: #0e0e0e;
  padding: 100px 0;
  position: relative;
}
@media (max-width: 767px) {
  .testimonial-area {
    padding: 80px 0;
  }
}
.testimonial-area .swiper-button-next-testimonial,
.testimonial-area .swiper-button-prev-testimonial {
  position: absolute;
  top: 62%;
  z-index: 10;
  cursor: pointer;
  width: 40px;
  height: 40px;
}
@media (max-width: 576px) {
  .testimonial-area .swiper-button-next-testimonial,
  .testimonial-area .swiper-button-prev-testimonial {
    display: none;
    visibility: hidden;
  }
}
.testimonial-area .swiper-button-next-testimonial:after,
.testimonial-area .swiper-button-prev-testimonial:after {
  content: "";
  font-family: swiper-icons;
  font-size: 20px;
  height: 40px;
  min-width: 40px;
  color: #e4e4e4;
  background-color: #2a2a2a;
  border: 1px solid #2a2a2a;
  text-align: center;
  line-height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-transition: all 0.5s ease-out 0s;
  -moz-transition: all 0.5s ease-out 0s;
  -ms-transition: all 0.5s ease-out 0s;
  -o-transition: all 0.5s ease-out 0s;
  transition: all 0.5s ease-out 0s;
}
.testimonial-area .swiper-button-next-testimonial:hover:after,
.testimonial-area .swiper-button-prev-testimonial:hover:after {
  color: #000;
  border: none;
  background-color: #2563eb;
}
.testimonial-area .swiper-button-next-testimonial {
  right: 2%;
}
.testimonial-area .swiper-button-next-testimonial:after {
  content: "next";
}
.testimonial-area .swiper-button-prev-testimonial {
  left: 2%;
}
.testimonial-area .swiper-button-prev-testimonial:after {
  content: "prev";
}

.swiper.testimonial-slider .swiper-slide {
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  min-width: 0;
}
.swiper.testimonial-slider .swiper-slide-active .single-testimonial,
.swiper.testimonial-slider .swiper-slide-next .single-testimonial {
  box-shadow: 0 0 0 1px rgba(37, 99, 235, 0.25), inset 0px 0px 10px rgba(6, 6, 6, 0.15);
}

.single-testimonial {
  position: relative;
  background-color: #1e2024;
  box-shadow: inset 0px 0px 10px rgba(6, 6, 6, 0.15);
  border-radius: 10px;
  padding: 35px 30px;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  min-width: 0;
  max-width: 100%;
  overflow: hidden;
  overflow-wrap: break-word;
}
.single-testimonial h3, .single-testimonial h5 {
  font-weight: 600;
  font-size: 22px;
  color: #e4e4e4;
  margin-bottom: 2px;
}
.single-testimonial > span {
  font-weight: 400;
  font-size: 14px;
  color: #9a9a9c;
}
.single-testimonial p {
  color: #c4c4c6;
  font-size: 15px;
  line-height: 1.7;
  margin-top: 20px;
  flex: 1;
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 0;
}
.testimonial-header .reviewer-info {
  flex: 1;
}
.testimonial-header .reviewer-info h3, .testimonial-header .reviewer-info h5 {
  margin-bottom: 2px;
}
.testimonial-header .reviewer-info span {
  font-size: 13px;
  color: #9a9a9c;
}

.testimonial-domains {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.domain-tag {
  font-size: 12px;
  color: #c4c4c6;
  background-color: rgba(255, 255, 255, 0.07);
  padding: 4px 10px;
  border-radius: 20px;
  white-space: nowrap;
}

.location-tag {
  color: #a0c4ff;
}

.reviewer-avatar {
  width: 52px;
  height: 52px;
  min-width: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.5px;
}

.stars {
  display: flex;
  gap: 2px;
  flex-shrink: 0;
}
.stars span i {
  color: #ffc107;
  font-size: 14px;
}

.quote {
  position: absolute;
  right: 20px;
  bottom: 30px;
}
.quote i {
  color: #e4e4e4;
  font-size: 60px;
  opacity: 0.06;
}

/*===========================
     11.Our Team css
===========================*/
@media (max-width: 767px) {
  .our-team {
    margin: 80px 0;
  }
}

.swiper.services-slider {
  padding: 5px 5px 50px 5px;
}
@media (max-width: 767px) {
  .swiper.services-slider {
    padding-bottom: 32px;
  }
}
.swiper.services-slider .swiper-pagination {
  bottom: -5px !important;
  display: flex;
  justify-content: center;
  gap: 8px;
}
.swiper.services-slider .swiper-pagination .swiper-pagination-bullet {
  background-color: rgba(37, 99, 235, 0.25);
  height: 10px;
  width: 10px;
  border: none;
  opacity: 1;
  transition: all 0.25s ease;
}
.swiper.services-slider .swiper-pagination .swiper-pagination-bullet:hover {
  background-color: rgba(37, 99, 235, 0.55);
}
.swiper.services-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #2563eb;
  width: 28px;
  border-radius: 5px;
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.45);
}

.swiper.testimonial-slider {
  padding: 5px 5px 50px 5px;
}
.swiper.testimonial-slider .swiper-pagination {
  bottom: -5px !important;
}
.swiper.testimonial-slider .swiper-pagination .swiper-pagination-bullet {
  background-color: transparent;
  height: 15px;
  width: 15px;
  border: 0.8px solid #2563eb;
  opacity: 1;
}
.swiper.testimonial-slider .swiper-pagination .swiper-pagination-bullet-active {
  position: relative;
}
.swiper.testimonial-slider .swiper-pagination .swiper-pagination-bullet-active:before {
  position: absolute;
  content: "";
  left: 50%;
  top: 50%;
  height: 5px;
  width: 5px;
  background-color: #2563eb;
  border-radius: 50%;
  transform: translate(-62%, -62%);
}
@media (max-width: 991px) {
  .swiper.testimonial-slider .swiper-pagination .swiper-pagination-bullet-active:before {
    transform: translate(-62%, -42%);
  }
}

.swiper.team-slider {
  padding: 5px 5px 50px 5px;
}
.swiper.team-slider .swiper-pagination {
  bottom: -5px !important;
}
.swiper.team-slider .swiper-pagination .swiper-pagination-bullet {
  background-color: transparent;
  height: 15px;
  width: 15px;
  border: 0.8px solid #2563eb;
  opacity: 1;
}
.swiper.team-slider .swiper-pagination .swiper-pagination-bullet-active {
  position: relative;
}
.swiper.team-slider .swiper-pagination .swiper-pagination-bullet-active:before {
  position: absolute;
  content: "";
  left: 50%;
  top: 50%;
  height: 5px;
  width: 5px;
  background-color: #2563eb;
  border-radius: 50%;
  transform: translate(-62%, -62%);
}
@media (max-width: 991px) {
  .swiper.team-slider .swiper-pagination .swiper-pagination-bullet-active:before {
    transform: translate(-62%, -42%);
  }
}

.single-team {
  position: relative;
}
.single-team:hover .member-img:before {
  visibility: visible;
  opacity: 0.8;
  transform: translateY(0);
}
.single-team:hover .member-img img {
  transform: scale(1.1);
}
.single-team:hover .member-img svg {
  visibility: visible;
  opacity: 1;
  transform: translateX(0);
}
.single-team:hover .team-inner {
  background-color: #0e0e0e;
}
.single-team:hover .team-inner h4 {
  color: #e4e4e4;
}
.single-team:hover .team-inner span {
  color: #2563eb;
}

.member-img {
  position: relative;
  border-radius: 10px 10px 0px 0px;
  overflow: hidden;
}
.member-img:before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-color: #0e0e0e;
  border-radius: 10px 10px 0px 0px;
  visibility: hidden;
  opacity: 0;
  z-index: 1;
  transform: translateY(-100%);
  -webkit-transition: all 0.5s ease-out 0s;
  -moz-transition: all 0.5s ease-out 0s;
  -ms-transition: all 0.5s ease-out 0s;
  -o-transition: all 0.5s ease-out 0s;
  transition: all 0.5s ease-out 0s;
}
.member-img img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: top center;
  border-radius: 10px 10px 0px 0px;
  -webkit-transition: all 0.5s ease-out 0s;
  -moz-transition: all 0.5s ease-out 0s;
  -ms-transition: all 0.5s ease-out 0s;
  -o-transition: all 0.5s ease-out 0s;
  transition: all 0.5s ease-out 0s;
}
.member-img svg {
  position: absolute;
  top: 0;
  left: 0;
  visibility: hidden;
  opacity: 0;
  transform: translateX(-100%);
  -webkit-transition: all 0.5s ease-out 0s;
  -moz-transition: all 0.5s ease-out 0s;
  -ms-transition: all 0.5s ease-out 0s;
  -o-transition: all 0.5s ease-out 0s;
  transition: all 0.5s ease-out 0s;
}
.member-img svg path {
  fill: #0e0e0e;
}

.team-inner {
  background-color: #ffffff;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.05);
  border-radius: 0px 0px 10px 10px;
  padding: 20px;
  text-align: center;
  -webkit-transition: all 0.5s ease-out 0s;
  -moz-transition: all 0.5s ease-out 0s;
  -ms-transition: all 0.5s ease-out 0s;
  -o-transition: all 0.5s ease-out 0s;
  transition: all 0.5s ease-out 0s;
}
.team-inner h4 {
  font-weight: 600;
  font-size: 25px;
  color: #17161a;
  margin-bottom: 5px;
  -webkit-transition: all 0.5s ease-out 0s;
  -moz-transition: all 0.5s ease-out 0s;
  -ms-transition: all 0.5s ease-out 0s;
  -o-transition: all 0.5s ease-out 0s;
  transition: all 0.5s ease-out 0s;
}
@media (max-width: 767px) {
  .team-inner h4 {
    font-size: 24px;
  }
}
.team-inner span {
  font-size: 17px;
  color: #5f6062;
  -webkit-transition: all 0.5s ease-out 0s;
  -moz-transition: all 0.5s ease-out 0s;
  -ms-transition: all 0.5s ease-out 0s;
  -o-transition: all 0.5s ease-out 0s;
  transition: all 0.5s ease-out 0s;
}

/*===========================
     12.Blog css
===========================*/
.single-blog .blog-thumb {
  position: relative;
  overflow: hidden;
  border-radius: 10px 10px 0px 0px;
}
.single-blog .blog-thumb a img {
  border-radius: 10px 10px 0px 0px;
  width: 100%;
  -webkit-transition: all 0.5s ease-out 0s;
  -moz-transition: all 0.5s ease-out 0s;
  -ms-transition: all 0.5s ease-out 0s;
  -o-transition: all 0.5s ease-out 0s;
  transition: all 0.5s ease-out 0s;
}
.single-blog .blog-thumb .tag {
  position: absolute;
  top: 20px;
  left: 20px;
}
.single-blog .blog-thumb .tag a,
.single-blog .blog-thumb .tag span {
  font-weight: 600;
  font-size: 15px;
  display: inline-block;
  text-align: center;
  color: #fff;
  background-color: #2563eb;
  padding: 5px 15px;
  border-radius: 30px;
  -webkit-transition: all 0.5s ease-out 0s;
  -moz-transition: all 0.5s ease-out 0s;
  -ms-transition: all 0.5s ease-out 0s;
  -o-transition: all 0.5s ease-out 0s;
  transition: all 0.5s ease-out 0s;
}
.single-blog .blog-thumb .tag a:hover,
.single-blog .blog-thumb .tag span:hover {
  background-color: #fff;
  color: #2563eb;
}
.single-blog .blog-inner {
  padding: 20px;
  background: #ffffff;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.05);
  border-radius: 0px 0px 10px 10px;
}
.single-blog .blog-inner h2, .single-blog .blog-inner h4, .single-blog .blog-inner h3:not(.blog-inner__title) {
  margin-top: 15px;
  margin-bottom: 5px;
}
.single-blog .blog-inner h2 a, .single-blog .blog-inner h4 a, .single-blog .blog-inner h3:not(.blog-inner__title) a {
  font-weight: 600;
  font-size: 22px;
  display: inline-block;
  text-transform: capitalize;
  color: #17161a;
  -webkit-transition: all 0.5s ease-out 0s;
  -moz-transition: all 0.5s ease-out 0s;
  -ms-transition: all 0.5s ease-out 0s;
  -o-transition: all 0.5s ease-out 0s;
  transition: all 0.5s ease-out 0s;
}
.single-blog .blog-inner h2 a:hover, .single-blog .blog-inner h4 a:hover, .single-blog .blog-inner h3:not(.blog-inner__title) a:hover {
  color: #2563eb;
}
.single-blog .blog-inner .author-date {
  display: flex;
  justify-content: space-between;
}
.single-blog .blog-inner .author-date a {
  font-weight: 500;
  font-size: 17px;
  text-transform: capitalize;
  color: #5f6062;
  display: inline-block;
}
@media (max-width: 767px) {
  .single-blog .blog-inner .author-date a.cmnt {
    display: none;
  }
}
.single-blog:hover .blog-thumb a img {
  transform: scale(1.1) skewY(5deg);
}

/*===========================
     13.Subscribe css
===========================*/
.subscribe-newsletter {
  position: relative;
  z-index: 1;
}
@media (max-width: 767px) {
  .subscribe-newsletter {
    margin-top: 48px;
  }
}

.news-letter-content {
  position: relative;
  padding: 60px 80px;
  border-radius: 10px;
  background-color: #0e0e0e;
  background-image: url(/img/subscribe-bg.webp);
  background-image: image-set(url(/img/subscribe-bg.webp) type("image/webp"), url(/img/subscribe-bg.png) type("image/png"));
  background-size: cover;
  background-position: center center;
}
@media (max-width: 767px) {
  .news-letter-content {
    padding: 30px 20px;
  }
}

.subscribe-cnt span {
  font-weight: 600;
  font-size: 20px;
  display: block;
  text-transform: capitalize;
  color: #2563eb;
}
.subscribe-cnt h3 {
  font-weight: 700;
  font-size: 45px;
  text-transform: uppercase;
  color: #e4e4e4;
  margin-bottom: 5px;
}
@media (max-width: 767px) {
  .subscribe-cnt h3 {
    font-size: 30px;
  }
}
.subscribe-cnt strong {
  -webkit-text-stroke: 1px #5f5f5f;
  -webkit-text-fill-color: transparent;
  font-size: 45px;
  text-transform: uppercase;
  font-weight: 700;
}
@media (max-width: 767px) {
  .subscribe-cnt strong {
    font-size: 30px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .subscribe-form {
    margin-top: 15px;
  }
}
.subscribe-form .subscribe-cta {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .subscribe-form .subscribe-cta {
    justify-content: center;
  }
}
.subscribe-form .subscribe-cta .cmn-btn {
  color: #fff;
}
.subscribe-form .subscribe-cta .cmn-btn.layout-two {
  border-color: rgba(228, 228, 228, 0.4);
  color: #e4e4e4;
}
.subscribe-form form {
  position: relative;
}
.subscribe-form form input {
  height: 60px;
  width: 100%;
  background-color: #0e0e0e;
  border-radius: 10px;
  border: none;
  padding: 0 20px;
  color: #e4e4e4;
}
.subscribe-form form input[type=email] {
  padding-right: 160px;
}
@media (max-width: 767px) {
  .subscribe-form form input[type=email] {
    padding: 0 10px;
  }
}
.subscribe-form form input[type=submit] {
  max-width: 140px;
  background-color: #2563eb;
  border-radius: 10px;
  position: absolute;
  right: 5px;
  height: 50px;
  top: 5px;
  color: #000;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  -webkit-transition: all 0.5s ease-out 0s;
  -moz-transition: all 0.5s ease-out 0s;
  -ms-transition: all 0.5s ease-out 0s;
  -o-transition: all 0.5s ease-out 0s;
  transition: all 0.5s ease-out 0s;
}
@media (max-width: 767px) {
  .subscribe-form form input[type=submit] {
    position: static;
    margin-top: 15px;
  }
}
.subscribe-form form input[type=submit]:hover {
  color: #2563eb;
  background-color: #fff;
}

/*===========================
     14.Footer css 
===========================*/
footer {
  position: relative;
  padding-top: 100px;
  margin-top: -100px;
  background-image: url(/img/footer-bg.png);
  background-size: cover;
  background-position: center center;
  background-color: #0e0e0e;
}
footer.error {
  padding-top: 0;
  margin-top: 0;
}

.footer-top {
  padding-top: 100px;
}
@media (max-width: 767px) {
  .footer-top {
    padding-top: 80px;
  }
}

@media (max-width: 767px) {
  .footer-widget {
    margin-bottom: 50px;
  }
}
.footer-widget .footer-logo {
  margin-bottom: 20px;
}
.footer-widget .footer-logo a img {
  width: auto;
  max-width: 220px;
  height: auto;
  object-fit: contain;
  margin-top: -15px;
}
@media (max-width: 767px) {
  .footer-widget .footer-logo a img {
    margin-top: 0;
    max-width: 180px;
  }
}
.footer-widget h4 {
  font-weight: 700;
  font-size: 25px;
  color: #e4e4e4;
  margin-bottom: 30px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .footer-widget h4 {
    font-size: 24px;
  }
}
.footer-widget p {
  font-weight: 300;
  font-size: 16px;
  color: #e4e4e4;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .footer-widget p {
    font-size: 14px;
  }
}

.footer-menu {
  list-style: none;
}
.footer-menu li {
  display: block;
  padding-bottom: 15px;
}
.footer-menu li:last-child {
  padding-bottom: 0;
}
.footer-menu li a {
  position: relative;
  font-weight: 500;
  font-size: 16px;
  color: #e4e4e4;
  display: inline-block;
  -webkit-transition: all 0.5s ease-out 0s;
  -moz-transition: all 0.5s ease-out 0s;
  -ms-transition: all 0.5s ease-out 0s;
  -o-transition: all 0.5s ease-out 0s;
  transition: all 0.5s ease-out 0s;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .footer-menu li a {
    font-size: 15px;
  }
}
.footer-menu li a:before {
  position: absolute;
  content: "";
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  left: -20px;
  height: 10px;
  width: 10px;
  background-color: #2563eb;
  border-radius: 50%;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.5s ease-out 0s;
  -moz-transition: all 0.5s ease-out 0s;
  -ms-transition: all 0.5s ease-out 0s;
  -o-transition: all 0.5s ease-out 0s;
  transition: all 0.5s ease-out 0s;
}
.footer-menu li a:hover {
  color: #2563eb;
  padding-left: 22px;
}
.footer-menu li a:hover:before {
  left: 0;
  visibility: visible;
  opacity: 1;
}

.number,
.office-mail,
.address {
  display: flex;
  width: 100%;
  align-items: center;
  margin-bottom: 20px;
}
.number p,
.office-mail p,
.address p {
  font-weight: 500;
  font-size: 17px;
  letter-spacing: 0.03em;
  color: #e4e4e4;
  margin: 0;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .number p,
  .office-mail p,
  .address p {
    font-size: 14px;
  }
}

.phone a,
.email a {
  font-weight: 500;
  font-size: 17px;
  letter-spacing: 0.03em;
  color: #e4e4e4;
  display: block;
  padding-bottom: 5px;
  -webkit-transition: all 0.5s ease-out 0s;
  -moz-transition: all 0.5s ease-out 0s;
  -ms-transition: all 0.5s ease-out 0s;
  -o-transition: all 0.5s ease-out 0s;
  transition: all 0.5s ease-out 0s;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .phone a,
  .email a {
    font-size: 14px;
  }
}
.phone a:hover,
.email a:hover {
  color: #2563eb;
}

.email a {
  font-size: 15px;
  word-break: break-all;
}

.num-icon,
.mail-icon,
.address-icon {
  min-width: 40px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .num-icon,
  .mail-icon,
  .address-icon {
    min-width: 30px;
  }
}
.num-icon i,
.mail-icon i,
.address-icon i {
  color: #2563eb;
  font-size: 25px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .num-icon i,
  .mail-icon i,
  .address-icon i {
    font-size: 20px;
  }
}

.footer-bottom {
  margin-top: 80px;
  padding: 30px 0;
  border-top: 2px solid #292929;
}
@media (max-width: 767px) {
  .footer-bottom {
    margin-top: 30px !important;
  }
}
@media (max-width: 767px) {
  .footer-bottom .copy-txt {
    text-align: center;
  }
}
.footer-bottom .copy-txt span {
  font-size: 14px;
  color: #e4e4e4;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .footer-bottom .copy-txt span {
    font-size: 14px;
  }
}
@media (max-width: 767px) {
  .footer-bottom .copy-txt span {
    font-size: 14px;
  }
}
.footer-bottom .copy-txt span a {
  font-weight: 700;
  color: #e4e4e4;
  -webkit-transition: all 0.5s ease-out 0s;
  -moz-transition: all 0.5s ease-out 0s;
  -ms-transition: all 0.5s ease-out 0s;
  -o-transition: all 0.5s ease-out 0s;
  transition: all 0.5s ease-out 0s;
}
.footer-bottom .copy-txt span a:hover {
  color: #2563eb;
}
.footer-bottom .footer-bottom-menu {
  list-style: none;
  text-align: right;
}
@media (max-width: 767px) {
  .footer-bottom .footer-bottom-menu {
    margin-top: 30px;
    text-align: center;
  }
}
.footer-bottom .footer-bottom-menu li {
  display: inline-block;
}
.footer-bottom .footer-bottom-menu li a {
  position: relative;
  font-size: 14px;
  text-align: right;
  letter-spacing: 0.01em;
  color: #e4e4e4;
  padding: 0 20px;
  line-height: 1;
  -webkit-transition: all 0.5s ease-out 0s;
  -moz-transition: all 0.5s ease-out 0s;
  -ms-transition: all 0.5s ease-out 0s;
  -o-transition: all 0.5s ease-out 0s;
  transition: all 0.5s ease-out 0s;
}
@media (max-width: 767px) {
  .footer-bottom .footer-bottom-menu li a {
    padding: 0;
    padding-right: 10px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .footer-bottom .footer-bottom-menu li a {
    padding: 0 20px;
  }
}
.footer-bottom .footer-bottom-menu li a:before {
  border-right: 1px solid #fff;
  position: absolute;
  content: "";
  height: 60%;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
@media (max-width: 767px) {
  .footer-bottom .footer-bottom-menu li a:before {
    display: none;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .footer-bottom .footer-bottom-menu li a:before {
    display: block;
  }
}
.footer-bottom .footer-bottom-menu li a:hover {
  color: #2563eb;
}
.footer-bottom .footer-bottom-menu li:last-child a:before {
  display: none;
}

/*===========================
     15.Home two css 
===========================*/
.creasoft-wrap.layout2 {
  background-image: url(/img/black-concrete-textured.png);
  background-repeat: repeat;
  background-color: #0e0e0e;
}

.services-area.layout2 .swiper-button-next::after,
.services-area.layout2 .swiper-button-prev::after {
  background-color: #2a2a2a;
  color: #e4e4e4;
}

.single-service.layout2 {
  position: relative;
  background-color: #0e0e0e;
  box-shadow: inset 0px 0px 10px rgba(6, 6, 6, 0.15);
  border-radius: 10px;
}
.single-service.layout2:hover {
  background: linear-gradient(152.97deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0) 100%);
  backdrop-filter: blur(42px);
  border-radius: 10px;
}

.single-service.layout2 h4 {
  color: #e4e4e4;
}

.single-service.layout2 p {
  color: #e4e4e4;
}

.single-service.layout2 .read-btn a {
  color: #e4e4e4;
}

.single-service.layout2 span {
  -webkit-text-stroke: 2px #2563eb;
  opacity: 0.15;
}

.about-left.layout2 h3 {
  color: #e4e4e4;
}

.about-left.layout2 p {
  color: #e4e4e4;
}

.company-since.layout2 {
  background: #1e2024;
  box-shadow: inset 0px 0px 10px rgba(6, 6, 6, 0.15);
  border-radius: 20px;
}

.company-since.layout2 h4 {
  color: #e4e4e4;
}

.company-since.layout2 strong {
  color: #e4e4e4;
}

.about-right.layout2 .banner-2 {
  border-left: 10px solid #000;
  border-top: 10px solid #000;
}
@media (max-width: 767px) {
  .about-right.layout2 .banner-2 {
    border: none;
  }
}

.isotope-menu.layout2 li.active {
  position: relative;
  color: #fff;
  background-color: #1e2024;
}
.isotope-menu.layout2 li.active:before {
  position: absolute;
  content: "";
  left: -1px;
  top: -1px;
  right: -1px;
  bottom: -0.5px;
  background-color: #2563eb;
  z-index: -1;
  transform: skew(1deg, 1deg);
  border-radius: 12px;
}

.price-table-tab.layout2 .nav.nav-pills .nav-item .nav-link.active {
  position: relative;
  background-color: #0e0e0e;
  color: #fff;
}
.price-table-tab.layout2 .nav.nav-pills .nav-item .nav-link.active:before {
  position: absolute;
  content: "";
  left: -1px;
  top: -0.5px;
  right: -1px;
  bottom: -0.5px;
  background-color: #2563eb;
  z-index: -1;
  transform: skew(1deg, 1deg);
  border-radius: 12px;
}

.nav.nav-pills .nav-item .nav-link.active {
  position: relative;
  background-color: #2563eb;
  color: #fff;
}

.price-box.layout2 {
  background-color: #1e2024;
  box-shadow: inset 0px 0px 10px rgba(6, 6, 6, 0.15);
  border-radius: 10px;
}
.price-box.layout2 h3,
.price-box.layout2 span,
.price-box.layout2 strong {
  color: #fff;
}
.price-box.layout2 .item-list li {
  color: #fff;
}
.price-box.layout2:hover {
  background-color: #0e0e0e;
}

.single-team.layout2 .team-inner {
  background-color: #0e0e0e;
}
.single-team.layout2 .team-inner h4 {
  color: #e4e4e4;
}
.single-team.layout2 .team-inner span {
  color: #5f6062;
}

.single-blog.layout2 .blog-inner {
  background: transparent;
  -webkit-transition: all 0.5s ease-out 0s;
  -moz-transition: all 0.5s ease-out 0s;
  -ms-transition: all 0.5s ease-out 0s;
  -o-transition: all 0.5s ease-out 0s;
  transition: all 0.5s ease-out 0s;
}
.single-blog.layout2 .blog-inner .author-date a {
  color: #5f6062;
}
.single-blog.layout2 .blog-inner h2 a, .single-blog.layout2 .blog-inner h4 a, .single-blog.layout2 .blog-inner h3:not(.blog-inner__title) a {
  color: #e4e4e4;
}
.single-blog.layout2:hover .blog-inner {
  background: linear-gradient(357.81deg, rgba(39, 39, 46, 0.6445) 1.75%, rgba(74, 75, 86, 0.0072) 98.16%);
  border-radius: 0px 0px 10px 10px;
}

/*===========================
     16.Contact page css 
===========================*/
@media (max-width: 767px) {
  .contact-area {
    margin: 80px 0;
  }
}

.info h3 {
  font-size: 30px;
  font-weight: 600;
  color: #17161a;
  text-transform: capitalize;
  margin-bottom: 10px;
}
.info p {
  font-size: 16px;
  font-weight: 500;
  color: #272727;
}
.info a {
  font-size: 16px;
  font-weight: 500;
  color: #272727;
  display: block;
  -webkit-transition: all 0.5s ease-out 0s;
  -moz-transition: all 0.5s ease-out 0s;
  -ms-transition: all 0.5s ease-out 0s;
  -o-transition: all 0.5s ease-out 0s;
  transition: all 0.5s ease-out 0s;
}
.info a:hover {
  color: #2563eb;
}

@keyframes checkScale {
  0% {
    transform: scale(0);
  }
  60% {
    transform: scale(1.15);
  }
  100% {
    transform: scale(1);
  }
}
/* Thank You Page Styles */
.success-icon-circle {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background-color: #2563eb;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
}
.success-icon-circle i {
  font-size: 60px;
  color: #ffffff;
}
@media (max-width: 767px) {
  .success-icon-circle {
    width: 100px;
    height: 100px;
  }
  .success-icon-circle i {
    font-size: 50px;
  }
}

.thankyou-title {
  margin-bottom: 20px;
  color: #17161a;
  font-weight: 700;
  font-size: 36px;
}
@media (max-width: 767px) {
  .thankyou-title {
    font-size: 28px;
  }
}

.thankyou-message {
  font-size: 18px;
  color: #5f6062;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}
@media (max-width: 767px) {
  .thankyou-message {
    font-size: 16px;
    padding: 0 15px;
  }
}

/*===========================
     17.Error page css 
===========================*/
.back-to-home {
  background-image: url(/img/error-bg.png);
  background-size: cover;
  background-position: top left;
}
@media (max-width: 767px) {
  .back-to-home {
    padding: 80px 0;
  }
}

.error-wrapper {
  text-align: center;
}
.error-wrapper img {
  max-width: 500px;
  margin-bottom: 50px;
}
@media (max-width: 767px) {
  .error-wrapper img {
    max-width: 100%;
  }
}
.error-wrapper h2,
.error-wrapper h3 {
  font-weight: 700;
  font-size: 50px;
  text-align: center;
  text-transform: uppercase;
  color: #272727;
  margin-bottom: 20px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 768px) and (max-width: 991px) {
  .error-wrapper h2,
  .error-wrapper h3 {
    font-size: 40px;
  }
}
@media (max-width: 767px) {
  .error-wrapper h2,
  .error-wrapper h3 {
    font-size: 30px;
  }
}
.error-wrapper p {
  font-weight: 400;
  font-size: 15px;
  text-align: center;
  color: #272727;
  max-width: 675px;
  margin: 0 auto;
}
.error-wrapper .home-btn {
  margin-top: 25px;
}
.error-wrapper .home-btn a {
  display: inline-block;
  background-color: #2563eb;
  border-radius: 30px;
  font-weight: 600;
  font-size: 16px;
  color: #272727;
  text-align: center;
  text-transform: uppercase;
  min-width: 180px;
  padding: 15px 30px;
  border: 2px solid #2563eb;
  -webkit-transition: all 0.5s ease-out 0s;
  -moz-transition: all 0.5s ease-out 0s;
  -ms-transition: all 0.5s ease-out 0s;
  -o-transition: all 0.5s ease-out 0s;
  transition: all 0.5s ease-out 0s;
}
.error-wrapper .home-btn a:hover {
  border: 2px solid #2563eb;
  background-color: transparent;
}
.error-wrapper .home-btn a i {
  margin-right: 5px;
}

/*===========================
     18.FAQ page css 
===========================*/
@media (max-width: 767px) {
  .faqs-area {
    margin-top: 80px;
  }
}

.faq-mobile-tabs {
  margin-bottom: 24px;
}
.faq-mobile-tabs .tabs--horizontal {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.faq-mobile-tabs .tabs--horizontal a {
  white-space: nowrap;
  font-size: 14px;
  padding: 7px 14px;
  border-radius: 20px;
  background: #f0f0f0;
  color: #333;
  text-decoration: none;
  font-weight: 600;
}
.faq-mobile-tabs .tabs--horizontal a.active {
  background: #2563eb;
  color: #fff;
}

.sidebar-tab {
  background-color: #ffffff;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.07);
  padding: 40px;
  margin-top: 40px;
}

.sidebar-tab:first-child {
  margin: 0;
}

.tabs a {
  display: block;
  text-align: center;
  font-weight: 600;
  font-size: 30px;
  color: #17161a;
}

.tab-link.active {
  color: #2563eb;
}

.questions-form h4 {
  font-weight: 600;
  font-size: 30px;
  text-align: center;
  color: #17161a;
  margin-bottom: 30px;
}
.questions-form form input,
.questions-form form textarea,
.questions-form form select {
  width: 100%;
  height: 50px;
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  margin-bottom: 20px;
  padding: 0 10px;
  font-size: 14px;
  color: #272727;
  font-family: "Saira", sans-serif;
  position: relative;
  z-index: 1;
}
.questions-form form input[type=submit],
.questions-form form textarea[type=submit],
.questions-form form select[type=submit] {
  background-color: #2563eb;
  max-width: 160px;
  font-size: 18px;
  color: #ffffff;
  font-weight: 600;
  text-transform: capitalize;
  margin-bottom: 0;
  margin-top: 20px;
  border: 2px solid #2563eb;
  -webkit-transition: all 0.5s ease-out 0s;
  -moz-transition: all 0.5s ease-out 0s;
  -ms-transition: all 0.5s ease-out 0s;
  -o-transition: all 0.5s ease-out 0s;
  transition: all 0.5s ease-out 0s;
  cursor: pointer;
}
.questions-form form input[type=submit]:hover:not(:disabled),
.questions-form form textarea[type=submit]:hover:not(:disabled),
.questions-form form select[type=submit]:hover:not(:disabled) {
  color: #2563eb;
  background-color: #ffffff;
  border: 2px solid #2563eb;
}
.questions-form form input[type=submit]:disabled,
.questions-form form textarea[type=submit]:disabled,
.questions-form form select[type=submit]:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.questions-form form select {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 20px;
  padding-right: 36px;
  cursor: pointer;
}
.questions-form form textarea {
  height: 145px;
  resize: none;
  padding: 10px;
}
.questions-form form .invalid-feedback {
  color: #dc3545;
  font-size: 14px;
  margin-top: -25px;
  margin-bottom: 10px;
  display: block;
}

@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .faqs-tabs {
    margin-top: 50px;
  }
}

.faqs {
  margin-bottom: 80px;
  scroll-margin-top: 120px;
}
.faqs h4 {
  position: relative;
  display: block;
  font-weight: 600;
  font-size: 25px;
  color: #17161a;
  margin-bottom: 50px;
}
.faqs h4:before {
  position: absolute;
  content: "";
  left: 0;
  bottom: -10px;
  width: 170px;
  border: 1px solid #eeeeee;
}
.faqs:last-child {
  margin: 0;
}

.faqs-area .faqs-tabs > .faqs {
  margin-bottom: 0;
}

.accordion-item {
  border: none;
  border-bottom: 2px solid #eee;
}

.accordion-button {
  font-weight: 600;
  font-size: 18px;
  text-transform: capitalize;
  color: #17161a;
  padding-left: 0;
}

.accordion-button:not(.collapsed) {
  color: #17161a;
  background-color: transparent;
  box-shadow: none;
}

.accordion-button:focus {
  box-shadow: none;
  border: none;
}

.accordion-button::after {
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  margin-left: auto;
  content: "\f64d";
  font-family: "bootstrap-icons";
  background: transparent;
  transition: transform 0.2s ease-in-out;
}

.accordion-button:not(.collapsed)::after {
  color: #2563eb;
  content: "\f63b";
  font-family: "bootstrap-icons";
  background: transparent;
}

.user-guide .accordion-button {
  color: #fff;
  background-color: #0e0e0e;
  padding-left: 30px;
}

/*===========================
     19.Service page css 
===========================*/
@media (max-width: 767px) {
  .services-grid {
    margin: 80px 0;
  }
}

@media (max-width: 767px) {
  .service-details {
    margin: 80px 0;
  }
}

.apps-we-build {
  position: relative;
}
.apps-we-build .swiper-button-next {
  position: absolute;
  top: 30px;
}
.apps-we-build .swiper-button-prev {
  position: absolute;
  top: 30px;
}

@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .service-details-content {
    margin-bottom: 50px;
  }
}
.service-details-content > img {
  width: 100%;
  height: auto;
}
.service-details-content h4 {
  scroll-margin-top: 100px;
}
.service-details-content h2,
.service-details-content h3 {
  font-weight: 600;
  font-size: 35px;
  color: #17161a;
  margin-top: 40px;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .service-details-content h2,
  .service-details-content h3 {
    font-size: 24px;
  }
}
.service-details-content h2 i,
.service-details-content h3 i {
  margin-right: 10px;
}
.service-details-content p {
  font-size: 16px;
  color: #272727;
  margin-bottom: 30px;
}
.service-details-content p:last-child {
  margin: 0;
}
.service-details-content ul,
.service-details-content ol {
  font-size: 16px;
  padding: 0 15px;
  margin: 0;
  list-style: disc;
}
.service-details-content ul li,
.service-details-content ol li {
  line-height: 1.8;
}
.service-details-content ul li:first-child,
.service-details-content ol li:first-child {
  margin: 0;
}
.service-details-content > a {
  display: inline-block;
  padding: 12px 32px;
  background: #2563eb;
  color: #fff;
  border-radius: 4px;
  font-weight: 600;
  font-size: 15px;
  transition: background 0.3s;
  margin-top: 10px;
}
.service-details-content > a:hover {
  background: #1d4ed8;
  color: #fff;
}

.cta-button a {
  position: fixed;
  right: 0;
  top: 100px;
  z-index: 5000;
  display: inline-block;
  font-size: 17px;
  text-align: center;
  color: #fff;
  -webkit-transition: all 0.8s ease-out 0s;
  -moz-transition: all 0.8s ease-out 0s;
  -ms-transition: all 0.8s ease-out 0s;
  -o-transition: all 0.8s ease-out 0s;
  transition: all 0.8s ease-out 0s;
  vertical-align: top;
}
@media (max-width: 767px) {
  .cta-button a {
    font-size: 14px;
    top: 80px;
  }
}
.cta-button a i {
  display: inline-block;
  border-radius: 50%;
  padding: 15px;
  background-color: #000;
  color: white;
  animation-name: ripple;
  animation-duration: 2.5s;
  cursor: pointer;
  animation-iteration-count: infinite;
}
@media (max-width: 767px) {
  .cta-button a i {
    padding: 10px;
  }
}
.cta-button a img {
  width: 60px;
}
@media (max-width: 767px) {
  .cta-button a img {
    width: 45px;
  }
}
.cta-button a:after {
  position: absolute;
  content: "";
  display: block;
  left: 15%;
  right: -20%;
  top: -4%;
  height: 150%;
  width: 150%;
  bottom: 0;
  background-color: #2563eb;
  transform: skewX(45deg) scale(0, 1);
  z-index: -1;
  -webkit-transition: all 0.8s ease-out 0s;
  -moz-transition: all 0.8s ease-out 0s;
  -ms-transition: all 0.8s ease-out 0s;
  -o-transition: all 0.8s ease-out 0s;
  transition: all 0.8s ease-out 0s;
}
@media (max-width: 767px) {
  .cta-button a:after {
    display: none;
  }
}
.cta-button a:hover {
  color: #000;
}
.cta-button a:hover:after {
  transform: skewX(45deg) scale(1, 1);
}
.cta-button a .line-1 {
  position: absolute;
  right: 8px;
  top: 7px;
  z-index: 2;
}
.cta-button a .line-1:before {
  position: absolute;
  content: "";
  border: 1px solid #ffffff;
  width: 25px;
  opacity: 0.1;
  right: 0;
  -webkit-transition: all 0.8s ease-out 0s;
  -moz-transition: all 0.8s ease-out 0s;
  -ms-transition: all 0.8s ease-out 0s;
  -o-transition: all 0.8s ease-out 0s;
  transition: all 0.8s ease-out 0s;
}
.cta-button a .line-1:after {
  position: absolute;
  content: "";
  border: 1px solid #ffffff;
  height: 25px;
  opacity: 0.1;
  -webkit-transition: all 0.8s ease-out 0s;
  -moz-transition: all 0.8s ease-out 0s;
  -ms-transition: all 0.8s ease-out 0s;
  -o-transition: all 0.8s ease-out 0s;
  transition: all 0.8s ease-out 0s;
}
.cta-button a .line-2 {
  position: absolute;
  left: 8px;
  bottom: 8px;
  z-index: 2;
}
.cta-button a .line-2:before {
  position: absolute;
  content: "";
  border: 1px solid #ffffff;
  height: 25px;
  opacity: 0.1;
  right: 0px;
  bottom: -2px;
}
.cta-button a .line-2:after {
  position: absolute;
  content: "";
  border: 1px solid #ffffff;
  width: 25px;
  opacity: 0.1;
  left: 0;
}
.cta-button a:hover .line-1:before {
  border: 1px solid #000;
  opacity: 0.5;
}
.cta-button a:hover .line-1:after {
  border: 1px solid #000;
  opacity: 0.5;
}

.sidebar-widget {
  border: 1px solid #f0f0f0;
  box-sizing: border-box;
  padding: 35px 20px;
  margin-bottom: 40px;
}
.sidebar-widget:last-child {
  margin-bottom: 0;
}
.sidebar-widget h2, .sidebar-widget h4 {
  font-weight: 700;
  font-size: 22px;
  display: inline-block;
  text-transform: uppercase;
  color: #17161a;
  margin-bottom: 20px;
  border-bottom: 2px solid #eee;
  padding-bottom: 10px;
}

.other-services-widget .category-widget-toggle,
.sidebar-widget-collapsible .category-widget-toggle {
  position: relative;
  font-weight: 700;
  font-size: 22px;
  display: inline-block;
  text-transform: uppercase;
  color: #17161a;
  border-bottom: 2px solid #eee;
  padding-bottom: 10px;
  margin-bottom: 0;
  cursor: pointer;
  background: transparent;
  border-left: 0;
  border-right: 0;
  border-top: 0;
  padding-left: 0;
  padding-right: 0;
  text-align: left;
}

.other-services-widget .category-widget-toggle::after,
.sidebar-widget-collapsible .category-widget-toggle::after {
  content: "\f282";
  font-family: "bootstrap-icons";
  margin-left: 10px;
  font-size: 14px;
}

.other-services-widget .category-widget-toggle[aria-expanded=true]::after,
.sidebar-widget-collapsible .category-widget-toggle[aria-expanded=true]::after {
  content: "\f286";
}

.other-services-widget .category-widget-toggle[aria-expanded=true] + .category,
.sidebar-widget-collapsible .category-widget-toggle[aria-expanded=true] + .category {
  margin-top: 18px;
}

.category-heading {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: space-between;
  width: 100%;
}
.category-heading h4 {
  color: white;
  padding-block: 10px;
  padding-inline: 20px;
  background-color: #0e0e0e;
  cursor: pointer;
}
@media (max-width: 767px) {
  .category-heading h4 {
    font-size: 20px;
  }
}
.category-heading h4.active {
  color: #17161a;
  background-color: white;
  transition: color 0.3s ease, background-color 0.3s ease;
}

.category {
  list-style: none;
}

.category li {
  margin-bottom: 15px;
}
.category li:last-child {
  margin: 0;
}
.category li a {
  font-weight: 500;
  font-size: 16px;
  color: #272727;
  position: relative;
  display: block;
  -webkit-transition: all 0.5s ease-out 0s;
  -moz-transition: all 0.5s ease-out 0s;
  -ms-transition: all 0.5s ease-out 0s;
  -o-transition: all 0.5s ease-out 0s;
  transition: all 0.5s ease-out 0s;
}
.category li a i {
  position: absolute;
  right: 0;
}
.category li a:hover {
  color: #2563eb;
}

.testing-tools-accordion {
  margin-top: 10px;
}
.testing-tools-accordion .tool-category-item {
  margin-bottom: 10px;
  border-bottom: 1px solid #f0f0f0;
}
.testing-tools-accordion .tool-category-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
}
.testing-tools-accordion .tool-category-header {
  width: 100%;
  background: transparent;
  border: none;
  padding: 12px 0;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  font-size: 15px;
  color: #272727;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.testing-tools-accordion .tool-category-header:hover {
  color: #2563eb;
}
.testing-tools-accordion .tool-category-header.active {
  color: #2563eb;
}
.testing-tools-accordion .tool-category-header i {
  font-size: 14px;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.testing-tools-accordion .category {
  padding: 10px 0 5px 0;
  margin: 0;
  animation: slideDown 0.3s ease-out;
}
.testing-tools-accordion .category li {
  margin-bottom: 12px;
}
.testing-tools-accordion .category li:last-child {
  margin-bottom: 0;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.sidebar-banner {
  position: relative;
}
.sidebar-banner:before {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-color: #000;
  opacity: 0.9;
  content: "";
}
.sidebar-banner img {
  width: 100%;
}

.banner-inner {
  position: absolute;
  left: 5%;
  top: 5%;
  width: 90%;
  height: 90%;
  padding: 100px 20px;
  background-color: #000;
  border-radius: 10px;
  background-image: none;
  background-size: cover;
  background-position: center center;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .banner-inner {
    padding: 50px 20px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .banner-inner {
    padding: 20px;
  }
}
@media (max-width: 767px) {
  .banner-inner {
    padding: 60px 20px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .banner-inner {
    padding: 100px 20px;
  }
}
.banner-inner h3 {
  font-weight: 700;
  font-size: 41px;
  text-align: center;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .banner-inner h3 {
    font-size: 34px;
  }
}
.banner-inner h3 img.angle {
  position: relative;
  top: -10px;
  width: auto;
}
.banner-inner h3 span {
  color: #ffffff;
  display: block;
}
.banner-inner > a[href^=tel] {
  position: absolute;
  bottom: 100px;
  left: 50%;
  font-weight: 700;
  font-size: 30px;
  display: block;
  color: #ffffff;
  width: 100%;
  text-align: center;
  transform: translateX(-50%);
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .banner-inner > a[href^=tel] {
    bottom: 50px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .banner-inner > a[href^=tel] {
    bottom: 20px;
  }
}
@media (max-width: 767px) {
  .banner-inner > a[href^=tel] {
    bottom: 60px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .banner-inner > a[href^=tel] {
    bottom: 100px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .service-items {
    margin-top: 80px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .service-items {
    margin-top: 50px;
  }
}
@media (max-width: 767px) {
  .service-items {
    margin-top: 10px;
  }
}
.service-items .service-details-item {
  margin-top: 60px;
}
.service-items .service-details-item a {
  display: inline-block;
  margin-block: 15px;
  color: #2563eb;
  font-weight: 500;
  transition: padding-left 0.2s;
}
.service-items .service-details-item a:hover {
  padding-left: 6px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .service-items .service-details-item {
    margin-top: 80px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .service-items .service-details-item .or-2 {
    order: 2;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .single-details {
    margin-bottom: 35px;
  }
}
.single-details h3, .single-details h4 {
  font-weight: 600;
  font-size: 30px;
  color: #17161a;
  margin: 20px 0;
}
.single-details h3 span, .single-details h4 span {
  font-weight: 700;
  font-size: 80px;
  opacity: 0.15;
  -webkit-text-stroke: 2px #2563eb;
  -webkit-text-fill-color: transparent;
  margin-right: 10px;
  line-height: 1;
  display: inline-block;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), (max-width: 767px) {
  .single-details h3 span, .single-details h4 span {
    font-size: 60px;
  }
}
.single-details p {
  font-size: 16px;
  color: #272727;
  text-align: left;
  line-height: 1.75;
}
.single-details ul {
  font-size: 16px;
  padding: 0 15px;
  margin: 10px 0px 0 0;
  text-align: left;
  list-style: none;
}
.single-details li {
  line-height: 1.3;
  position: relative;
  display: block;
  align-items: flex-start;
  margin-bottom: 10px;
  /* Add a small blue dot before the text */
}
.single-details li::before {
  content: "";
  background-color: #2563eb;
  /* Blue dot */
  width: 8px;
  /* Dot size */
  height: 8px;
  /* Dot size */
  border-radius: 50%;
  /* Make it a circle */
  display: inline-block;
  margin-right: 10px;
}

.cta-box {
  background-color: #ffffff;
  border-radius: 10px;
  padding: 40px 30px;
  margin-top: 30px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}
@media (max-width: 767px) {
  .cta-box {
    padding: 30px 20px;
  }
}
.cta-box .single-details h4 {
  font-weight: 700;
  font-size: 28px;
  color: #17161a;
  margin-bottom: 15px;
}
@media (max-width: 767px) {
  .cta-box .single-details h4 {
    font-size: 24px;
  }
}
.cta-box .single-details p {
  font-size: 16px;
  color: #272727;
  margin-bottom: 20px;
  text-align: center;
}
.cta-box .cmn-btn a {
  background-color: #2563eb;
  border-color: #2563eb;
  color: #fff;
}
.cta-box .cmn-btn a:hover {
  color: #fff;
  background-color: rgb(18.5714285714, 76.1428571429, 202.4285714286);
  border-color: rgb(18.5714285714, 76.1428571429, 202.4285714286);
}
.cta-box .cmn-btn a:hover:after {
  background-color: rgb(18.5714285714, 76.1428571429, 202.4285714286);
}

.download-card {
  position: relative;
  background-color: #ffffff;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.05);
  border-radius: 10px;
  padding: 20px;
  height: 100%;
  display: flex;
  flex-direction: column;
  -webkit-transition: all 0.5s ease-out 0s;
  -moz-transition: all 0.5s ease-out 0s;
  -ms-transition: all 0.5s ease-out 0s;
  -o-transition: all 0.5s ease-out 0s;
  transition: all 0.5s ease-out 0s;
}
@media (max-width: 767px) {
  .download-card {
    padding: 18px 15px;
  }
}
.download-card:hover {
  background-color: #1e2024;
}
.download-card:hover .download-icon i {
  color: #2563eb;
}
.download-card:hover .download-content h4 {
  color: #e4e4e4;
}
.download-card:hover .download-content .download-description {
  color: #e4e4e4;
}
.download-card:hover .download-content .download-type {
  background-color: rgba(37, 99, 235, 0.1);
  color: #2563eb;
}
.download-card .download-icon {
  text-align: center;
  margin-bottom: 15px;
}
.download-card .download-icon i {
  font-size: 40px;
  color: #2563eb;
  display: inline-block;
  -webkit-transition: all 0.5s ease-out 0s;
  -moz-transition: all 0.5s ease-out 0s;
  -ms-transition: all 0.5s ease-out 0s;
  -o-transition: all 0.5s ease-out 0s;
  transition: all 0.5s ease-out 0s;
}
@media (max-width: 767px) {
  .download-card .download-icon i {
    font-size: 35px;
  }
}
.download-card .download-content {
  flex: 1;
  text-align: center;
  margin-bottom: 15px;
}
.download-card .download-content h4 {
  font-weight: 600;
  font-size: 18px;
  color: #17161a;
  margin-bottom: 8px;
  line-height: 1.4;
  -webkit-transition: all 0.5s ease-out 0s;
  -moz-transition: all 0.5s ease-out 0s;
  -ms-transition: all 0.5s ease-out 0s;
  -o-transition: all 0.5s ease-out 0s;
  transition: all 0.5s ease-out 0s;
}
@media (max-width: 767px) {
  .download-card .download-content h4 {
    font-size: 16px;
  }
}
.download-card .download-content .download-description {
  font-size: 14px;
  color: #7e7e7e;
  margin-bottom: 10px;
  line-height: 1.5;
  -webkit-transition: all 0.5s ease-out 0s;
  -moz-transition: all 0.5s ease-out 0s;
  -ms-transition: all 0.5s ease-out 0s;
  -o-transition: all 0.5s ease-out 0s;
  transition: all 0.5s ease-out 0s;
}
.download-card .download-content .download-type {
  display: inline-block;
  background-color: #f7f7fd;
  color: #2563eb;
  font-size: 12px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  -webkit-transition: all 0.5s ease-out 0s;
  -moz-transition: all 0.5s ease-out 0s;
  -ms-transition: all 0.5s ease-out 0s;
  -o-transition: all 0.5s ease-out 0s;
  transition: all 0.5s ease-out 0s;
}
.download-card .download-btn {
  text-align: center;
  margin-top: auto;
}
.download-card .download-btn .cmn-btn a {
  background-color: #2563eb;
  border-color: #2563eb;
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  padding: 10px 20px;
  min-width: unset;
}
.download-card .download-btn .cmn-btn a i {
  font-size: 14px;
}
.download-card .download-btn .cmn-btn a:hover {
  color: #fff;
  background-color: rgb(18.5714285714, 76.1428571429, 202.4285714286);
  border-color: rgb(18.5714285714, 76.1428571429, 202.4285714286);
}
.download-card .download-btn .cmn-btn a:hover:after {
  background-color: rgb(18.5714285714, 76.1428571429, 202.4285714286);
}

.bullet-points-2 {
  margin-top: 20px;
}
.bullet-points-2 h4 {
  font-weight: 600;
  font-size: 30px;
  text-transform: capitalize;
}
.bullet-points-2 ul {
  font-size: 16px;
  padding: 0 15px;
  margin: 10px 0px 0 0;
  text-align: left;
  list-style: none;
}
.bullet-points-2 li {
  line-height: 1.3;
  position: relative;
  display: block;
  align-items: flex-start;
  margin-bottom: 10px;
  /* Add a small blue dot before the text */
}
.bullet-points-2 li::before {
  content: "";
  background-color: #2563eb;
  /* Blue dot */
  width: 8px;
  /* Dot size */
  height: 8px;
  /* Dot size */
  border-radius: 50%;
  /* Make it a circle */
  display: inline-block;
  margin-right: 10px;
}

.bullet-points-3 h5 i, .bullet-points-3 h4 i {
  display: inline-block;
  margin-right: 5px;
}
.bullet-points-3 h5 i img, .bullet-points-3 h4 i img {
  width: 24px;
  height: 24px;
}
.bullet-points-3 ul {
  font-size: 16px;
  text-align: left;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin: 0;
  padding: 0;
}
.bullet-points-3 li {
  background-color: #242326;
  color: #ffffff;
  padding: 20px;
  border: 1px solid #232323;
  transition: all 0.3s ease;
  cursor: pointer;
}
.bullet-points-3 li strong {
  color: #2563eb;
  display: block;
  font-weight: 600;
  margin-bottom: 10px;
  font-size: 18px;
}
.bullet-points-3 li:hover {
  background-color: #ffffff;
  color: #242326;
}
.bullet-points-3 li:active {
  transform: translateY(0); /* Reset on click */
}
.bullet-points-3 {
  /* Optional: For responsive design, change to a single column on small screens */
}
@media (max-width: 768px) {
  .bullet-points-3 ul {
    grid-template-columns: 1fr; /* Stack the items in a single column on small screens */
  }
}

.single-details-thumb img {
  width: 100%;
}

/*===========================
     20.Project page css 
===========================*/
@media (max-width: 767px) {
  .project-details {
    margin-top: 80px;
  }
}

.project-thumb {
  position: relative;
}
.project-thumb img {
  width: 100%;
}
.project-thumb .tag {
  position: absolute;
  bottom: 0;
}
.project-thumb .tag a,
.project-thumb .tag span {
  background-color: #2563eb;
  font-weight: 500;
  font-size: 18px;
  display: inline-block;
  text-align: center;
  text-transform: capitalize;
  color: #272727;
  padding: 8px 20px;
  min-width: 140px;
}

@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .project-details-content {
    margin-bottom: 40px;
  }
}
.project-details-content h3 {
  font-weight: 600;
  font-size: 35px;
  text-transform: capitalize;
  color: #17161a;
  margin: 30px 0 20px;
}
@media (max-width: 767px) {
  .project-details-content h3 {
    font-size: 30px;
  }
}
.project-details-content h3 p {
  text-align: left;
  font-size: 15px;
}
.project-details-content .clinet-need {
  margin-top: 20px;
}
.project-details-content .clinet-need h4 {
  font-weight: 600;
  font-size: 30px;
  text-transform: capitalize;
  color: #17161a;
}
.project-details-content .clinet-need p {
  font-size: 15px;
  margin-bottom: 15px;
}
.project-details-content .clinet-need p:last-child {
  margin: 0;
}

.swiper.tech-stack-slide {
  position: relative;
  border: 1px solid #232323;
  height: 300px;
  border-radius: 15px;
  margin-top: 60px;
}
.swiper.tech-stack-slide .arrow {
  position: absolute;
  right: 30px;
  top: 30px;
  left: auto;
  z-index: 1;
}
@media (max-width: 767px) {
  .swiper.tech-stack-slide .arrow {
    display: none;
  }
}
.swiper.tech-stack-slide .arrow .swiper-button-next-cb,
.swiper.tech-stack-slide .arrow .swiper-button-prev-cb {
  border: 1px solid #d3d3d3;
  box-sizing: border-box;
  height: 40px;
  width: 40px;
  text-align: center;
  line-height: 40px;
  color: #2563eb;
  font-size: 18px;
  border-radius: 50%;
  -webkit-transition: all 0.5s ease-out 0s;
  -moz-transition: all 0.5s ease-out 0s;
  -ms-transition: all 0.5s ease-out 0s;
  -o-transition: all 0.5s ease-out 0s;
  transition: all 0.5s ease-out 0s;
  overflow: hidden;
}
.swiper.tech-stack-slide .arrow .swiper-button-next-cb:hover,
.swiper.tech-stack-slide .arrow .swiper-button-prev-cb:hover {
  color: #fff;
  background-color: #2563eb;
}
.swiper.tech-stack-slide .arrow .swiper-button-prev-cb {
  position: absolute;
  right: 70px;
  top: 0;
  left: auto;
}
.swiper.tech-stack-slide .tag-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
}
.swiper.tech-stack-slide .tag-list li {
  display: inline-block;
}
.swiper.tech-stack-slide .tag-list li a,
.swiper.tech-stack-slide .tag-list li span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid rgba(23, 22, 26, 0.1);
  border-left: 3px solid var(--brand-color, #d0d5dd);
  box-sizing: border-box;
  border-radius: 6px;
  padding: 8px 14px;
  margin: 0;
  color: #555;
  font-size: 13px;
  font-weight: 500;
  background: #fafbfc;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.swiper.tech-stack-slide .tag-list li a .bi,
.swiper.tech-stack-slide .tag-list li span .bi {
  font-size: 14px;
  color: var(--brand-color, #888);
  flex-shrink: 0;
}
.swiper.tech-stack-slide .tag-list li a svg,
.swiper.tech-stack-slide .tag-list li span svg {
  width: 16px;
  height: 16px;
  fill: var(--brand-color, currentColor);
  flex-shrink: 0;
}
.swiper.tech-stack-slide .tag-list li a:hover,
.swiper.tech-stack-slide .tag-list li span:hover {
  color: var(--brand-color, #2563eb);
  border-color: var(--brand-color, #2563eb);
  background: var(--brand-bg, rgba(37, 99, 235, 0.04));
}

.swiper.testing-stack-slide {
  position: relative;
  border: 1px solid #232323;
  height: 300px;
  border-radius: 15px;
  margin-top: 60px;
}
.swiper.testing-stack-slide .arrow {
  position: absolute;
  right: 30px;
  top: 30px;
  left: auto;
  z-index: 1;
}
@media (max-width: 767px) {
  .swiper.testing-stack-slide .arrow {
    display: none;
  }
}
.swiper.testing-stack-slide .arrow .swiper-button-next-cb,
.swiper.testing-stack-slide .arrow .swiper-button-prev-cb {
  border: 1px solid #d3d3d3;
  box-sizing: border-box;
  height: 40px;
  width: 40px;
  text-align: center;
  line-height: 40px;
  color: #2563eb;
  font-size: 18px;
  border-radius: 50%;
  -webkit-transition: all 0.5s ease-out 0s;
  -moz-transition: all 0.5s ease-out 0s;
  -ms-transition: all 0.5s ease-out 0s;
  -o-transition: all 0.5s ease-out 0s;
  transition: all 0.5s ease-out 0s;
  overflow: hidden;
}
.swiper.testing-stack-slide .arrow .swiper-button-next-cb:hover,
.swiper.testing-stack-slide .arrow .swiper-button-prev-cb:hover {
  color: #fff;
  background-color: #2563eb;
}
.swiper.testing-stack-slide .arrow .swiper-button-prev-cb {
  position: absolute;
  right: 70px;
  top: 0;
  left: auto;
}

.swiper.work-process-slide .arrow {
  position: absolute;
  right: 0;
  top: 50%;
  left: auto;
  transform: translateY(-50%) rotate(90deg);
  z-index: 1;
}
@media (max-width: 767px) {
  .swiper.work-process-slide .arrow {
    display: none;
  }
}
.swiper.work-process-slide .arrow .swiper-button-next-c,
.swiper.work-process-slide .arrow .swiper-button-prev-c {
  border: 1px solid #d3d3d3;
  box-sizing: border-box;
  height: 40px;
  width: 40px;
  text-align: center;
  line-height: 40px;
  color: #2563eb;
  font-size: 18px;
  -webkit-transition: all 0.5s ease-out 0s;
  -moz-transition: all 0.5s ease-out 0s;
  -ms-transition: all 0.5s ease-out 0s;
  -o-transition: all 0.5s ease-out 0s;
  transition: all 0.5s ease-out 0s;
  overflow: hidden;
}
.swiper.work-process-slide .arrow .swiper-button-next-c:hover,
.swiper.work-process-slide .arrow .swiper-button-prev-c:hover {
  color: #fff;
  background-color: #2563eb;
}
.swiper.work-process-slide .arrow .swiper-button-prev-c {
  position: absolute;
  right: 70px;
  top: 0;
  left: auto;
}

.working-process {
  margin-top: 20px;
}
.working-process h4 {
  font-weight: 600;
  font-size: 30px;
  text-transform: capitalize;
  color: #17161a;
  margin-bottom: 30px;
}
.working-process p {
  font-size: 15px;
  text-align: left;
  margin-top: 30px;
}

.work-thumb {
  position: relative;
}
.work-thumb img {
  width: 85%;
}
@media (max-width: 767px) {
  .work-thumb img {
    width: 100%;
  }
}

.label {
  position: absolute;
  top: 0;
}
.label span {
  font-weight: 600;
  font-size: 22px;
  text-align: center;
  text-transform: capitalize;
  color: #ffffff;
  background-color: #0e0e0e;
  padding: 5px 20px;
  display: inline-block;
}

.check-lunch h4 {
  font-weight: 600;
  font-size: 30px;
  text-transform: capitalize;
  color: #17161a;
  margin: 25px 0 20px;
}
.check-lunch p {
  text-align: left;
  font-size: 15px;
}

.check {
  list-style: none;
}
@media (max-width: 767px) {
  .check {
    margin-bottom: 20px;
  }
}
.check li {
  margin-bottom: 15px;
  font-weight: 500;
  font-size: 18px;
  display: block;
  color: #17161a;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), (max-width: 767px) {
  .check li {
    font-size: 15px;
  }
}
.check li:last-child {
  margin: 0;
}
.check li i {
  margin-right: 10px;
}

.project-slider {
  position: relative;
  margin-top: 100px;
}
@media (max-width: 767px) {
  .project-slider {
    margin-top: 80px;
  }
}
.project-slider h4 {
  font-weight: 600;
  font-size: 35px;
  text-transform: capitalize;
  color: #17161a;
  margin-bottom: 50px;
}
@media (max-width: 767px) {
  .project-slider h4 {
    font-size: 30px;
  }
}
.project-slider .arrow {
  position: absolute;
  right: 0;
  top: 0;
  left: auto;
}
@media (max-width: 767px) {
  .project-slider .arrow {
    display: none;
  }
}
.project-slider .arrow .swiper-button-next-c,
.project-slider .arrow .swiper-button-prev-c {
  border: 1px solid #d3d3d3;
  box-sizing: border-box;
  border-radius: 50%;
  height: 40px;
  width: 40px;
  text-align: center;
  line-height: 40px;
  color: #fff;
  font-size: 18px;
  background-color: #2563eb;
  -webkit-transition: all 0.5s ease-out 0s;
  -moz-transition: all 0.5s ease-out 0s;
  -ms-transition: all 0.5s ease-out 0s;
  -o-transition: all 0.5s ease-out 0s;
  transition: all 0.5s ease-out 0s;
  overflow: hidden;
}
.project-slider .arrow .swiper-button-next-c:hover,
.project-slider .arrow .swiper-button-prev-c:hover {
  color: #fff;
  background-color: #2563eb;
}
.project-slider .arrow .swiper-button-prev-c {
  position: absolute;
  right: 70px;
  top: 0;
  left: auto;
}
.project-slider .arrow .swiper-button-next-cf,
.project-slider .arrow .swiper-button-prev-cf {
  border: 1px solid #d3d3d3;
  box-sizing: border-box;
  border-radius: 50%;
  height: 40px;
  width: 40px;
  text-align: center;
  line-height: 40px;
  color: #fff;
  font-size: 18px;
  background-color: #2563eb;
  -webkit-transition: all 0.5s ease-out 0s;
  -moz-transition: all 0.5s ease-out 0s;
  -ms-transition: all 0.5s ease-out 0s;
  -o-transition: all 0.5s ease-out 0s;
  transition: all 0.5s ease-out 0s;
  overflow: hidden;
}
.project-slider .arrow .swiper-button-next-cf:hover,
.project-slider .arrow .swiper-button-prev-cf:hover {
  color: #fff;
  background-color: #2563eb;
}
.project-slider .arrow .swiper-button-prev-cf {
  position: absolute;
  right: 70px;
  top: 0;
  left: auto;
}

.client-box {
  margin-bottom: 20px;
}
.client-box:last-child {
  margin: 0;
}
.client-box span {
  position: relative;
  font-size: 15px;
  display: inline-block;
  color: #272727;
  margin-bottom: 5px;
  padding-left: 25px;
}
.client-box span:after {
  position: absolute;
  content: "";
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 16px;
  width: 16px;
  background-color: #2563eb;
  border-radius: 50%;
}
.client-box span:before {
  position: absolute;
  content: "";
  left: 3px;
  top: 50%;
  transform: translateY(-50%);
  height: 10px;
  width: 10px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  z-index: 1;
}
.client-box h5 {
  font-weight: 600;
  font-size: 20px;
  color: #17161a;
  margin: 0;
}

.user-guide .accordion-item {
  border: none;
}

.contact-info h3 {
  font-weight: 600;
  font-size: 35px;
  color: #17161a;
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .contact-info h3 {
    font-size: 30px;
  }
}
.contact-info p {
  font-size: 15px;
}

.cmpy-info {
  display: flex;
  width: 100%;
  align-items: center;
  margin-top: 30px;
}
.cmpy-info .icon {
  min-width: 60px;
}
.cmpy-info .icon i {
  height: 45px;
  width: 45px;
  line-height: 45px;
  font-size: 20px;
  text-align: center;
  background-color: rgba(23, 22, 26, 0.1);
  border-radius: 50%;
  -webkit-transition: all 0.5s ease-out 0s;
  -moz-transition: all 0.5s ease-out 0s;
  -ms-transition: all 0.5s ease-out 0s;
  -o-transition: all 0.5s ease-out 0s;
  transition: all 0.5s ease-out 0s;
}
.cmpy-info .cnt h5 {
  font-size: 20px;
  font-weight: 600;
  color: #17161a;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.cmpy-info .cnt p {
  font-size: 14px;
  font-weight: 500;
  color: #272727;
}
.cmpy-info .cnt a {
  font-size: 14px;
  font-weight: 500;
  color: #272727;
  display: block;
  -webkit-transition: all 0.5s ease-out 0s;
  -moz-transition: all 0.5s ease-out 0s;
  -ms-transition: all 0.5s ease-out 0s;
  -o-transition: all 0.5s ease-out 0s;
  transition: all 0.5s ease-out 0s;
}
.cmpy-info .cnt a:hover {
  color: #2563eb;
}
.cmpy-info:hover .icon i {
  color: #75dab4;
  background-color: rgba(117, 218, 180, 0.1);
}

/*===========================
     21.About page css 
===========================*/
@media (max-width: 767px) {
  .why-choose {
    margin: 80px 0;
  }
}

.why-choose-left {
  display: flex;
  width: 100%;
  align-items: flex-start;
  position: relative;
}

@media (max-width: 767px) {
  .why-choose-right .sec-title.layout2 {
    margin-bottom: 30px;
  }
}

.choose-banner1 {
  min-width: 49%;
  margin-right: 5px;
}
.choose-banner1 img {
  width: 100%;
  border-radius: 5px;
}
.choose-banner1 img:first-child {
  margin-bottom: 10px;
}

.choose-banner2 {
  margin-top: 70px;
  min-width: 49%;
  margin-left: 5px;
}
.choose-banner2 img {
  width: 100%;
  border-radius: 5px;
}
.choose-banner2 img:first-child {
  margin-bottom: 10px;
}

.years {
  background-color: #0e0e0e;
  border-radius: 5px;
  position: absolute;
  top: 0;
  right: 0;
  text-align: center;
  padding: 20px;
}
.years .years-label {
  font-weight: 700;
  font-size: 28px;
  text-align: center;
  color: #2563eb;
  margin-bottom: 5px;
}
.years span {
  font-weight: 500;
  font-size: 18px;
  text-transform: uppercase;
  color: #ffffff;
}

.counter-boxes {
  margin-bottom: 40px;
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .counter-boxes {
    align-items: flex-start;
  }
}
.counter-boxes .count-box {
  min-width: 33.33%;
  margin-right: 10px;
}
.counter-boxes .count-box:last-child {
  margin-right: 0;
}
@media (max-width: 767px) {
  .counter-boxes .count-box {
    margin-right: 0;
  }
}
.counter-boxes .count-box span {
  font-weight: 700;
  font-size: 35px;
  color: #2563eb;
  display: inline-block;
  margin-bottom: 5px;
}
.counter-boxes .count-box sup {
  top: -10px;
  font-weight: 700;
  font-size: 35px;
  color: #2563eb;
  display: inline-block;
  margin-bottom: 5px;
}
.counter-boxes .count-box .count-box__label {
  font-weight: 500;
  font-size: 18px;
  color: #272727;
  margin: 0;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .counter-boxes .count-box .count-box__label {
    font-size: 17px;
  }
}

/* ---------- Core Values ---------- */
.core-values {
  background: radial-gradient(1000px 360px at 10% 0%, rgba(48, 120, 251, 0.16), transparent 58%), radial-gradient(900px 320px at 90% 100%, rgba(132, 94, 247, 0.14), transparent 60%), linear-gradient(165deg, #121628 0%, #171c2f 55%, #121628 100%);
  padding: 100px 0;
  overflow: hidden;
}
@media (max-width: 767px) {
  .core-values {
    padding: 60px 0;
  }
}
.core-values .sec-title span {
  color: var(--cv-accent, #2563eb);
}
.core-values .sec-title h2 {
  color: #fff;
}

.core-values__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 10px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .core-values__grid {
    gap: 24px;
  }
}
@media (max-width: 767px) {
  .core-values__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.core-values__card {
  position: relative;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.04) 100%);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 20px;
  padding: 48px 40px 44px;
  overflow: hidden;
  transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
  z-index: 1;
}
@media (max-width: 767px) {
  .core-values__card {
    padding: 36px 24px 32px;
    border-radius: 16px;
  }
}
.core-values__card:hover {
  transform: translateY(-6px);
  border-color: var(--cv-accent, #2563eb);
  box-shadow: 0 20px 60px rgba(6, 10, 28, 0.35), 0 0 36px color-mix(in srgb, var(--cv-accent, #2563eb) 28%, transparent);
}
.core-values__card:hover .core-values__icon-ring {
  border-color: var(--cv-accent, #2563eb);
  box-shadow: 0 0 24px rgba(48, 120, 251, 0.3);
}
.core-values__card:hover .core-values__icon-ring i {
  color: var(--cv-accent, #2563eb);
}
.core-values__card:hover .core-values__glow {
  opacity: 1;
}
.core-values__card:hover .core-values__num {
  opacity: 0.08;
}

.core-values__num {
  position: absolute;
  top: -10px;
  right: 20px;
  font-size: 120px;
  font-weight: 800;
  color: var(--cv-accent, #2563eb);
  opacity: 0.11;
  line-height: 1;
  pointer-events: none;
  transition: opacity 0.4s ease;
  user-select: none;
}
@media (max-width: 767px) {
  .core-values__num {
    font-size: 80px;
    right: 12px;
  }
}

.core-values__icon-ring {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  transition: border-color 0.4s ease, box-shadow 0.4s ease;
}
@media (max-width: 767px) {
  .core-values__icon-ring {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
  }
}
.core-values__icon-ring i {
  font-size: 28px;
  color: #ffffff;
  transition: color 0.4s ease;
}
@media (max-width: 767px) {
  .core-values__icon-ring i {
    font-size: 24px;
  }
}

.core-values__title {
  font-weight: 700;
  font-size: 24px;
  color: #fff;
  margin-bottom: 14px;
}
@media (max-width: 767px) {
  .core-values__title {
    font-size: 20px;
  }
}

.core-values__desc {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.82);
  margin: 0;
}
@media (max-width: 767px) {
  .core-values__desc {
    font-size: 14px;
    line-height: 1.6;
  }
}

.core-values__glow {
  position: absolute;
  bottom: -40px;
  left: -40px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: var(--cv-accent, #2563eb);
  opacity: 0.28;
  filter: blur(80px);
  transition: opacity 0.5s ease;
  pointer-events: none;
  z-index: -1;
}

/*===========================
     22.Blog page css 
===========================*/
@media (max-width: 767px) {
  .blog-grid {
    margin-top: 48px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .blog-item-grid {
    margin-top: 50px;
  }
}

.widget-search {
  position: relative;
}
.widget-search form input {
  background-color: #f0f0f0;
  border-radius: 3px;
  border: none;
  height: 50px;
  width: 100%;
  padding: 0 10px;
}
.widget-search form input[type=text] {
  padding-right: 75px;
}
.widget-search form button {
  position: absolute;
  border: none;
  font-size: 20px;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  color: #17161a;
  background: #2563eb;
  border-radius: 0px 3px 3px 0px;
  height: 50px;
  width: 70px;
}

.recent-post {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}
.recent-post:last-child {
  margin-bottom: 0;
}
.recent-post span {
  font-weight: 500;
  font-size: 16px;
  color: #5f6062;
  display: inline-block;
  margin-bottom: 5px;
}
.recent-post h3, .recent-post h4, .recent-post h5 {
  margin: 0;
}
.recent-post h3 a, .recent-post h4 a, .recent-post h5 a {
  font-weight: 600;
  font-size: 18px;
  text-transform: capitalize;
  color: #2e2d31;
  -webkit-transition: all 0.5s ease-out 0s;
  -moz-transition: all 0.5s ease-out 0s;
  -ms-transition: all 0.5s ease-out 0s;
  -o-transition: all 0.5s ease-out 0s;
  transition: all 0.5s ease-out 0s;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .recent-post h3 a, .recent-post h4 a, .recent-post h5 a {
    font-size: 15px;
  }
}
.recent-post .recent-thumb {
  min-width: 120px;
  overflow: hidden;
}
.recent-post .recent-thumb a img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 8px;
  -webkit-transition: all 0.5s ease-out 0s;
  -moz-transition: all 0.5s ease-out 0s;
  -ms-transition: all 0.5s ease-out 0s;
  -o-transition: all 0.5s ease-out 0s;
  transition: all 0.5s ease-out 0s;
}
.recent-post:hover .recent-thumb a img {
  transform: scale(1.1);
}
.recent-post:hover h5 a {
  color: #2563eb;
}

.tag-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
}
.tag-list li {
  display: inline-block;
}
.tag-list li a,
.tag-list li span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid rgba(23, 22, 26, 0.1);
  border-left: 3px solid var(--brand-color, #d0d5dd);
  box-sizing: border-box;
  border-radius: 6px;
  padding: 8px 14px;
  margin: 0;
  color: #555;
  font-size: 13px;
  font-weight: 500;
  background: #fafbfc;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.tag-list li a .bi,
.tag-list li span .bi {
  font-size: 14px;
  color: var(--brand-color, #888);
  flex-shrink: 0;
}
.tag-list li a svg,
.tag-list li span svg {
  width: 16px;
  height: 16px;
  fill: var(--brand-color, currentColor);
  flex-shrink: 0;
}
.tag-list li a .tech-si-icon,
.tag-list li span .tech-si-icon {
  width: 16px;
  height: 16px;
  object-fit: contain;
  flex-shrink: 0;
  display: inline-block;
  vertical-align: middle;
}
.tag-list li a:hover,
.tag-list li span:hover {
  color: var(--brand-color, #2563eb);
  border-color: var(--brand-color, #2563eb);
  background: var(--brand-bg, rgba(37, 99, 235, 0.04));
}

.load-more {
  text-align: center;
  margin-top: 50px;
}

.paginations li {
  display: inline-block;
  margin: 0 2.5px;
}
.paginations li.active a, .paginations li.active button {
  color: #fff;
  border: 1px solid #2563eb;
  background-color: #2563eb;
}
.paginations li a, .paginations li button {
  border: 1px solid rgba(23, 22, 26, 0.2);
  box-sizing: border-box;
  display: inline-block;
  height: 40px;
  width: 40px;
  line-height: 40px;
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  color: #d3d3d3;
  cursor: pointer;
  background: none;
  padding: 0;
  -webkit-transition: all 0.5s ease-out 0s;
  -moz-transition: all 0.5s ease-out 0s;
  -ms-transition: all 0.5s ease-out 0s;
  -o-transition: all 0.5s ease-out 0s;
  transition: all 0.5s ease-out 0s;
}
.paginations li a:hover:not(:disabled), .paginations li button:hover:not(:disabled) {
  color: #fff;
  background-color: #2563eb;
}
.paginations li a:disabled, .paginations li button:disabled {
  opacity: 0.3;
  cursor: default;
}

@media (max-width: 767px) {
  .blog-standard {
    margin-top: 80px;
  }
  .blog-standard .or-2 {
    order: 2;
  }
  .blog-standard .or-1 {
    order: 1;
  }
}

@media (max-width: 767px) {
  .blog-standard-details {
    margin-top: 40px;
  }
}

.single-blog.layout3 {
  display: flex;
  width: 100%;
}
@media (max-width: 767px) {
  .single-blog.layout3 {
    display: block;
  }
}
.single-blog.layout3 .blog-thumb {
  min-width: 49%;
}
.single-blog.layout3 .blog-thumb a img {
  border-radius: 10px;
}
.single-blog.layout3 .blog-inner {
  min-width: 50%;
}
.single-blog.layout3 .blog-inner h2 a, .single-blog.layout3 .blog-inner h4 a, .single-blog.layout3 .blog-inner h3:not(.blog-inner__title) a {
  font-size: 26px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .single-blog.layout3 .blog-inner h2 a, .single-blog.layout3 .blog-inner h4 a, .single-blog.layout3 .blog-inner h3:not(.blog-inner__title) a {
    font-size: 18px;
  }
}
.single-blog.layout3 .blog-inner h2, .single-blog.layout3 .blog-inner h4, .single-blog.layout3 .blog-inner h3:not(.blog-inner__title) {
  margin-bottom: 10px;
}
.single-blog.layout3 .blog-inner p {
  font-size: 16px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .single-blog.layout3 .blog-inner p {
    font-size: 14px;
  }
}
.single-blog.layout3:hover .blog-thumb a img {
  border-radius: 10px;
  transform: scale(1.1) skewY(0);
}

.single-blog.layout4 {
  margin-top: 50px;
}
.single-blog.layout4 .blog-inner h2 a, .single-blog.layout4 .blog-inner h4 a, .single-blog.layout4 .blog-inner h3:not(.blog-inner__title) a {
  font-size: 26px;
}
@media (max-width: 767px) {
  .single-blog.layout4 .blog-inner h2 a, .single-blog.layout4 .blog-inner h4 a, .single-blog.layout4 .blog-inner h3:not(.blog-inner__title) a {
    font-size: 20px;
  }
}
.single-blog.layout4 .blog-inner h2, .single-blog.layout4 .blog-inner h4, .single-blog.layout4 .blog-inner h3:not(.blog-inner__title) {
  margin-bottom: 10px;
}
.single-blog.layout4:hover .blog-thumb a img {
  border-radius: 10px;
  transform: scale(1.1) skewY(0);
}

@media (max-width: 767px) {
  .blog-details-area {
    margin-top: 80px;
  }
}

.blog-details-content blockquote {
  background: #f9f9f9;
  border-left: 8px solid #ccc;
  margin: 1.5em 10px;
  padding: 0.5em 15px;
  quotes: "“" "”" "‘" "’";
}
.blog-details-content blockquote p {
  display: inline;
}
.blog-details-content blockquote ul,
.blog-details-content ol {
  padding: 0 15px;
  margin: 0;
  list-style: disc;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .blog-details-content {
    margin-bottom: 50px;
  }
}
.blog-details-content h3 {
  font-weight: 600;
  font-size: 27px;
  text-transform: capitalize;
  color: #17161a;
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .blog-details-content h3 {
    font-size: 22px;
  }
}
.blog-details-content h4 {
  font-weight: 600;
  font-size: 27px;
  text-transform: capitalize;
  color: #17161a;
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .blog-details-content h4 {
    font-size: 22px;
  }
}
.blog-details-content p {
  font-size: 16px;
  color: #272727;
  text-align: left;
  margin-bottom: 1.15rem;
}
.blog-details-content p:last-child {
  margin-bottom: 0;
}

.author-date {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
}
.author-date.layout2 {
  margin-bottom: 30px;
}
.author-date a {
  font-weight: 500;
  font-size: 17px;
  text-transform: capitalize;
  color: #5f6062;
  display: inline-block;
}

.details-thumb {
  margin-bottom: 30px;
}
.details-thumb img {
  width: 100%;
}

.blog-gallery {
  display: flex;
  width: 100%;
  margin: 30px 0;
}
.blog-gallery img {
  width: 100%;
  height: auto;
  aspect-ratio: 3/2;
  object-fit: cover;
  object-position: center;
  border-radius: 12px;
}
.blog-gallery .b-gallery {
  width: 50%;
}
.blog-gallery .b-gallery:first-child {
  margin-right: 10px;
}
.blog-gallery .b-gallery:last-child {
  margin-left: 10px;
}

.special {
  margin-bottom: 10px;
}
.special p span {
  font-size: 3.2em;
  line-height: 0.9;
  float: left;
  margin-right: 8px;
  color: #2563eb;
}

.blog-quote {
  position: relative;
}
.blog-quote p {
  font-size: 25px;
  color: #272727;
  font-style: italic;
  margin: 30px 0;
  padding-left: 100px;
}
@media (max-width: 767px) {
  .blog-quote p {
    font-size: 15px;
  }
}
.blog-quote i {
  font-size: 70px;
  color: rgba(39, 39, 39, 0.1);
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.agile-section {
  padding-top: 40px;
  border-top: 1px solid #eeeeee;
}
.agile-section:first-of-type {
  border-top: none;
  padding-top: 0;
}
.agile-section .section-header .section-number {
  font-size: 48px;
  font-weight: 700;
  color: #17161a;
  line-height: 1;
  display: inline-block;
}
@media (max-width: 767px) {
  .agile-section .section-header .section-number {
    font-size: 36px;
  }
}
.agile-section .section-header .icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.agile-section .section-header .icon img {
  max-width: 100%;
  height: auto;
}
.agile-section .section-header h4 {
  margin-bottom: 0;
}
.agile-section .section-content {
  padding-left: 0;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .agile-section .section-content {
    padding-left: 0;
    margin-top: 20px;
  }
}
.agile-section .section-content h5 {
  font-weight: 600;
  font-size: 22px;
  color: #17161a;
  margin-bottom: 15px;
  margin-top: 25px;
}
@media (max-width: 767px) {
  .agile-section .section-content h5 {
    font-size: 18px;
  }
}
.agile-section .section-content ul {
  padding-left: 20px;
  margin-bottom: 20px;
}
.agile-section .section-content ul li {
  margin-bottom: 12px;
  line-height: 1.8;
  color: #272727;
}
.agile-section .section-content ul li strong {
  color: #17161a;
  font-weight: 600;
}
.agile-section .section-content .lead {
  font-size: 18px;
  font-weight: 400;
  color: #272727;
  line-height: 1.8;
}
@media (max-width: 767px) {
  .agile-section .section-content .lead {
    font-size: 16px;
  }
}

.mobile-apps-section {
  padding-top: 40px;
  border-top: 1px solid #eeeeee;
}
.mobile-apps-section:first-of-type {
  border-top: none;
  padding-top: 0;
}
.mobile-apps-section .section-header .section-number {
  font-size: 48px;
  font-weight: 700;
  color: #17161a;
  line-height: 1;
  display: inline-block;
}
@media (max-width: 767px) {
  .mobile-apps-section .section-header .section-number {
    font-size: 36px;
  }
}
.mobile-apps-section .section-header .icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mobile-apps-section .section-header .icon img {
  max-width: 100%;
  height: auto;
}
.mobile-apps-section .section-header h4 {
  margin-bottom: 0;
}
.mobile-apps-section .section-content {
  padding-left: 0;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .mobile-apps-section .section-content {
    padding-left: 0;
    margin-top: 20px;
  }
}
.mobile-apps-section .section-content h5 {
  font-weight: 600;
  font-size: 22px;
  color: #17161a;
  margin-bottom: 15px;
  margin-top: 25px;
}
@media (max-width: 767px) {
  .mobile-apps-section .section-content h5 {
    font-size: 18px;
  }
}
.mobile-apps-section .section-content ul {
  padding-left: 20px;
  margin-bottom: 20px;
}
.mobile-apps-section .section-content ul li {
  margin-bottom: 12px;
  line-height: 1.8;
  color: #272727;
}
.mobile-apps-section .section-content ul li strong {
  color: #17161a;
  font-weight: 600;
}
.mobile-apps-section .section-content .lead {
  font-size: 18px;
  font-weight: 400;
  color: #272727;
  line-height: 1.8;
}
@media (max-width: 767px) {
  .mobile-apps-section .section-content .lead {
    font-size: 16px;
  }
}

.data-analysis-challenges-section {
  padding-top: 40px;
  border-top: 1px solid #eeeeee;
}
.data-analysis-challenges-section:first-of-type {
  border-top: none;
  padding-top: 0;
}
.data-analysis-challenges-section .section-header .section-number {
  font-size: 48px;
  font-weight: 700;
  color: #17161a;
  line-height: 1;
  display: inline-block;
}
@media (max-width: 767px) {
  .data-analysis-challenges-section .section-header .section-number {
    font-size: 36px;
  }
}
.data-analysis-challenges-section .section-header .icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.data-analysis-challenges-section .section-header .icon img {
  max-width: 100%;
  height: auto;
}
.data-analysis-challenges-section .section-header h4 {
  margin-bottom: 0;
}
.data-analysis-challenges-section .section-content {
  padding-left: 0;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .data-analysis-challenges-section .section-content {
    padding-left: 0;
    margin-top: 20px;
  }
}
.data-analysis-challenges-section .section-content h5 {
  font-weight: 600;
  font-size: 22px;
  color: #17161a;
  margin-bottom: 15px;
  margin-top: 25px;
}
@media (max-width: 767px) {
  .data-analysis-challenges-section .section-content h5 {
    font-size: 18px;
  }
}
.data-analysis-challenges-section .section-content ul {
  padding-left: 20px;
  margin-bottom: 20px;
}
.data-analysis-challenges-section .section-content ul li {
  margin-bottom: 12px;
  line-height: 1.8;
  color: #272727;
}
.data-analysis-challenges-section .section-content ul li strong {
  color: #17161a;
  font-weight: 600;
}
.data-analysis-challenges-section .section-content .lead {
  font-size: 18px;
  font-weight: 400;
  color: #272727;
  line-height: 1.8;
}
@media (max-width: 767px) {
  .data-analysis-challenges-section .section-content .lead {
    font-size: 16px;
  }
}

.mvp-benefits-section {
  padding-top: 40px;
  border-top: 1px solid #eeeeee;
}
.mvp-benefits-section:first-of-type {
  border-top: none;
  padding-top: 0;
}
.mvp-benefits-section .section-header .section-number {
  font-size: 48px;
  font-weight: 700;
  color: #17161a;
  line-height: 1;
  display: inline-block;
}
@media (max-width: 767px) {
  .mvp-benefits-section .section-header .section-number {
    font-size: 36px;
  }
}
.mvp-benefits-section .section-header .icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mvp-benefits-section .section-header .icon img {
  max-width: 100%;
  height: auto;
}
.mvp-benefits-section .section-header h4 {
  margin-bottom: 0;
}
.mvp-benefits-section .section-content {
  padding-left: 0;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .mvp-benefits-section .section-content {
    padding-left: 0;
    margin-top: 20px;
  }
}
.mvp-benefits-section .section-content h5 {
  font-weight: 600;
  font-size: 22px;
  color: #17161a;
  margin-bottom: 15px;
  margin-top: 25px;
}
@media (max-width: 767px) {
  .mvp-benefits-section .section-content h5 {
    font-size: 18px;
  }
}
.mvp-benefits-section .section-content ul {
  padding-left: 20px;
  margin-bottom: 20px;
}
.mvp-benefits-section .section-content ul li {
  margin-bottom: 12px;
  line-height: 1.8;
  color: #272727;
}
.mvp-benefits-section .section-content ul li strong {
  color: #17161a;
  font-weight: 600;
}
.mvp-benefits-section .section-content .lead {
  font-size: 18px;
  font-weight: 400;
  color: #272727;
  line-height: 1.8;
}
@media (max-width: 767px) {
  .mvp-benefits-section .section-content .lead {
    font-size: 16px;
  }
}

.ai-ml-services-section {
  padding-top: 40px;
  border-top: 1px solid #eeeeee;
}
.ai-ml-services-section:first-of-type {
  border-top: none;
  padding-top: 0;
}
.ai-ml-services-section .section-header .section-number {
  font-size: 48px;
  font-weight: 700;
  color: #17161a;
  line-height: 1;
  display: inline-block;
}
@media (max-width: 767px) {
  .ai-ml-services-section .section-header .section-number {
    font-size: 36px;
  }
}
.ai-ml-services-section .section-header .icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ai-ml-services-section .section-header .icon img {
  max-width: 100%;
  height: auto;
}
.ai-ml-services-section .section-header h4 {
  margin-bottom: 0;
}
.ai-ml-services-section .section-content {
  padding-left: 0;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .ai-ml-services-section .section-content {
    padding-left: 0;
    margin-top: 20px;
  }
}
.ai-ml-services-section .section-content h5 {
  font-weight: 600;
  font-size: 22px;
  color: #17161a;
  margin-bottom: 15px;
  margin-top: 25px;
}
@media (max-width: 767px) {
  .ai-ml-services-section .section-content h5 {
    font-size: 18px;
  }
}
.ai-ml-services-section .section-content ul {
  padding-left: 20px;
  margin-bottom: 20px;
}
.ai-ml-services-section .section-content ul li {
  margin-bottom: 12px;
  line-height: 1.8;
  color: #272727;
}
.ai-ml-services-section .section-content ul li strong {
  color: #17161a;
  font-weight: 600;
}
.ai-ml-services-section .section-content .lead {
  font-size: 18px;
  font-weight: 400;
  color: #272727;
  line-height: 1.8;
}
@media (max-width: 767px) {
  .ai-ml-services-section .section-content .lead {
    font-size: 16px;
  }
}

.tag-share {
  display: flex;
  width: 100%;
  justify-content: space-between;
  padding: 50px 0;
  border-bottom: 1px solid #eeeeee;
}
@media (max-width: 767px) {
  .tag-share {
    display: block;
  }
}

.line-tag {
  min-width: 50%;
}
@media (max-width: 767px) {
  .line-tag {
    margin-bottom: 20px;
  }
}
.line-tag span {
  font-weight: 600;
  font-size: 22px;
  color: #17161a;
  display: inline-block;
  margin-right: 5px;
}
.line-tag a {
  display: inline-block;
  font-size: 17px;
  font-weight: 500;
  color: #a4a4a4;
  -webkit-transition: all 0.5s ease-out 0s;
  -moz-transition: all 0.5s ease-out 0s;
  -ms-transition: all 0.5s ease-out 0s;
  -o-transition: all 0.5s ease-out 0s;
  transition: all 0.5s ease-out 0s;
}
.line-tag a:hover {
  color: #2563eb;
}

.share-blog {
  min-width: 50%;
  border: 1px solid #f0f0f0;
  box-sizing: border-box;
  padding: 10px 30px;
  text-align: center;
}
.share-blog span {
  font-weight: 600;
  font-size: 22px;
  display: inline-block;
  color: #17161a;
  margin-right: 5px;
}

.social-share-blog {
  display: inline-block;
  list-style: none;
}
.social-share-blog li {
  display: inline-block;
  margin: 0 4px;
}
.social-share-blog li a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 44px;
  color: #909090;
  font-size: 16px;
  -webkit-transition: all 0.5s ease-out 0s;
  -moz-transition: all 0.5s ease-out 0s;
  -ms-transition: all 0.5s ease-out 0s;
  -o-transition: all 0.5s ease-out 0s;
  transition: all 0.5s ease-out 0s;
}
.social-share-blog li a:hover {
  color: #2563eb;
}

.social-icon-list li a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 44px;
  color: #909090;
}
.social-icon-list li a:hover {
  color: #2563eb;
}

video {
  width: 100%;
  height: auto;
}

.single-service.layout2 span {
  opacity: 0.5;
  color: rgba(48, 120, 251, 0.4);
}

.single-service.layout2:hover span {
  opacity: 0.7;
}

.animated-pipeline {
  background: linear-gradient(165deg, #0c1222 0%, #111827 50%, #0d1321 100%);
  border: 1px solid rgba(56, 189, 248, 0.15);
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(255, 255, 255, 0.03);
  overflow: hidden;
  width: 100%;
  max-width: 640px;
  margin: 0 auto;
}
.animated-pipeline svg {
  width: 100%;
  height: auto;
}
.animated-pipeline .pipeline-node rect {
  fill: url(#node-fill);
  stroke: rgba(255, 255, 255, 0.2);
  stroke-width: 2;
  filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.4));
  transition: stroke 0.3s ease, filter 0.3s ease;
}
.animated-pipeline .pipeline-node:hover rect {
  stroke: rgba(56, 189, 248, 0.5);
  filter: drop-shadow(0 8px 24px rgba(56, 189, 248, 0.2));
}
.animated-pipeline .pipeline-node text {
  fill: #f8fafc;
  font-size: 15px;
  font-weight: 700;
  text-anchor: middle;
  dominant-baseline: middle;
  letter-spacing: 0.3px;
}
.animated-pipeline .pipeline-node .pipeline-sublabel {
  font-size: 12px;
  font-weight: 500;
  fill: rgba(248, 250, 252, 0.7);
}
.animated-pipeline .pipeline-path {
  fill: none;
  stroke-width: 8;
  stroke-linecap: round;
  stroke-dasharray: 18 14;
  animation: pipeline-flow 2.4s linear infinite;
  filter: url(#glow-strong);
}
.animated-pipeline .pipeline-path--1 {
  stroke: url(#pipe-grad-1);
}
.animated-pipeline .pipeline-path--2 {
  stroke: url(#pipe-grad-2);
}
.animated-pipeline .pipeline-path--3 {
  stroke: url(#pipe-grad-3);
}
.animated-pipeline .pipeline-dot {
  filter: url(#glow-soft);
  opacity: 1;
}
.animated-pipeline .pipeline-dot--blue {
  fill: #38bdf8;
}
.animated-pipeline .pipeline-dot--purple {
  fill: #a78bfa;
}
.animated-pipeline .pipeline-dot--green {
  fill: #34d399;
}

.animated-pipeline--compact {
  padding: 16px 20px;
  max-height: 160px;
}
.animated-pipeline--compact svg {
  max-height: 140px;
}
.animated-pipeline--compact .pipeline-node text {
  font-size: 14px;
}
.animated-pipeline--compact .pipeline-node .pipeline-sublabel {
  font-size: 12px;
}
.animated-pipeline--compact .pipeline-path {
  stroke-width: 6;
}

@keyframes pipeline-flow {
  from {
    stroke-dashoffset: 0;
  }
  to {
    stroke-dashoffset: -320;
  }
}
@media (prefers-reduced-motion: reduce) {
  .animated-pipeline .pipeline-path,
  .animated-pipeline .pipeline-path--1,
  .animated-pipeline .pipeline-path--2,
  .animated-pipeline .pipeline-path--3 {
    animation: none;
    stroke-dasharray: 0;
  }
  .animated-pipeline .pipeline-dot {
    opacity: 0;
  }
}
@media (max-width: 767px) {
  .animated-pipeline {
    padding: 14px 16px;
    border-radius: 16px;
    max-width: 100%;
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.28);
  }
  .animated-pipeline svg {
    max-height: 150px;
  }
  .animated-pipeline--compact {
    padding: 12px 14px;
    max-height: unset;
  }
  .animated-pipeline--compact .pipeline-node text {
    font-size: 13px;
  }
  .animated-pipeline--compact .pipeline-node .pipeline-sublabel {
    font-size: 12px;
  }
  .animated-pipeline--compact .pipeline-path {
    stroke-width: 5;
  }
}
.tech-stack-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}
.tech-stack-grid .tech-stack-col {
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  border: 1px solid rgba(48, 120, 251, 0.12);
  border-radius: 12px;
  padding: 20px;
}
.tech-stack-grid .tech-stack-label {
  font-size: 14px;
  font-weight: 600;
  color: #2563eb;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}
.results-grid .results-col {
  background: #f8fafc;
  border-left: 4px solid #2563eb;
  border-radius: 0 8px 8px 0;
  padding: 16px 20px;
}
.results-grid .results-label {
  font-size: 13px;
  font-weight: 600;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 10px;
}
.results-grid .results-list {
  margin: 0;
  padding-left: 18px;
  list-style: disc;
}
.results-grid .results-list li {
  font-size: 15px;
  line-height: 1.6;
  color: #334155;
  margin-bottom: 4px;
}

.arch-case-block {
  background: #f8fafc;
  border-radius: 12px;
  padding: 28px 32px;
  margin: 28px 0;
}

.arch-case-header {
  margin-bottom: 24px;
}
.arch-case-header .arch-case-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #2563eb;
  margin-bottom: 8px;
}
.arch-case-header h4 {
  font-size: 1.35rem;
  font-weight: 600;
  color: #1e293b;
  margin: 0;
}

.arch-case-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 28px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 767px) {
  .arch-case-grid {
    grid-template-columns: 1fr;
  }
}

.arch-case-col h6 {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #64748b;
  margin-bottom: 10px;
}
.arch-case-col p {
  font-size: 15px;
  line-height: 1.6;
  color: #334155;
  margin: 0;
}

.arch-solution-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.arch-solution-badges span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 500;
  color: #334155;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 8px 14px;
}
.arch-solution-badges span i {
  font-size: 14px;
  color: #2563eb;
}

.arch-case-outcome p {
  font-weight: 500;
  color: #1e293b;
}

.arch-case-gallery {
  display: grid;
  gap: 16px;
  margin-top: 20px;
}
.arch-case-gallery img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
}

.arch-case-gallery-grid {
  grid-template-columns: repeat(2, 1fr);
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 767px) {
  .arch-case-gallery-grid {
    grid-template-columns: 1fr;
  }
}

.arch-case-gallery-single {
  grid-template-columns: 1fr;
  max-width: 720px;
}

.sidebar-banner__actions a {
  position: static;
  left: auto;
  bottom: auto;
  width: auto;
  transform: none;
  text-align: left;
  font-size: 13px;
}

.sec-title.layout2 p {
  max-width: 100%;
}
@media (max-width: 1023px) {
  header .main-menu .main-nav {
    position: fixed !important;
    top: 0;
    left: 0;
    width: 100vw !important;
    height: 100vh;
    overflow-y: auto;
    background: #0d0d0d !important;
    background-color: #0d0d0d !important;
    -webkit-backdrop-filter: none !important;
    backdrop-filter: none !important;
    transform: translateX(-105%) !important;
    z-index: 100050;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: transform 0.3s ease, opacity 0.2s ease, visibility 0.3s ease;
  }
  header .main-menu .main-nav.slidenav {
    transform: translateX(0) !important;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  header .main-menu .main-nav > ul > li {
    display: block !important;
    padding: 0 12px !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  header .main-menu .main-nav > ul > li > a,
  header .main-menu .main-nav > ul > li > .nav-dropdown-trigger {
    display: block !important;
    padding: 12px 0 !important;
    color: #ffffff !important;
  }
  header .main-menu .main-nav > ul > li > .bi {
    display: block !important;
    color: #ffffff;
    top: 10px;
    right: 12px;
  }
  .mobile-menu {
    display: inline-block !important;
  }
  .mobile-menu .cross-btn {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 10003;
  }
  .nav-right .get-qoute {
    display: none !important;
  }
}
@media (max-width: 360px) {
  .hero-content {
    padding-left: 4px;
    padding-right: 4px;
  }
  footer .number,
  footer .office-mail,
  footer .address {
    align-items: flex-start !important;
  }
  footer .address p,
  footer .phone a,
  footer .email a {
    flex: 1 1 auto;
    min-width: 0;
    letter-spacing: 0 !important;
    line-height: 1.5;
    word-break: normal !important;
    overflow-wrap: anywhere;
    white-space: normal;
  }
}
footer {
  background: #f8fafc !important;
  background-image: none !important;
  border-top: 1px solid #e2e8f0 !important;
}

footer .footer-widget h4,
footer .footer-accordion-summary {
  color: #0f172a !important;
}

footer .footer-widget p,
footer .footer-tagline {
  color: #1f2937 !important;
}

footer .footer-menu li a {
  color: #0f172a !important;
  font-weight: 600;
}

footer .phone a,
footer .email a,
footer .address p,
footer .number p,
footer .office-mail p {
  color: #0f172a !important;
  font-weight: 500;
}

footer .footer-bottom .copy-txt span,
footer .footer-bottom .footer-bottom-menu li a {
  color: #334155 !important;
}

footer .footer-bottom .copy-txt span a,
footer .footer-bottom .footer-bottom-menu li a:hover {
  color: #2563eb !important;
}

@media (max-width: 767px) {
  footer .footer-widget-accordion details {
    border-bottom: 1px solid #e2e8f0;
  }
  footer .footer-accordion-summary {
    color: #0f172a !important;
  }
}
@media (max-width: 1199px) {
  header .main-menu .main-nav {
    width: 100vw !important;
    max-width: 100%;
    overflow-x: hidden;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
  }
  header .main-menu .main-nav > ul {
    max-height: calc(100vh - 100px);
    overflow-y: auto;
    overflow-x: hidden;
    padding-bottom: 20px;
  }
  header .main-menu .main-nav .sub-menu.d-block {
    position: static !important;
    top: auto !important;
    right: auto !important;
    bottom: auto !important;
    left: auto !important;
    max-height: none;
    border-radius: 0;
    box-shadow: none;
    background: transparent;
    padding: 0;
    overflow: visible;
    z-index: auto;
  }
  header .main-menu .main-nav .sub-menu.d-block .mega-menu-content {
    display: flex;
    flex-direction: column;
  }
  header .main-menu .main-nav .sub-menu.d-block .mega-menu-details {
    min-width: 0;
  }
  header .main-menu .main-nav .sub-menu.d-block .mega-menu-details ul li a {
    white-space: normal;
    overflow-wrap: anywhere;
  }
  .cta-button a {
    right: 12px;
    top: auto;
    bottom: 160px;
  }
}
body.nav-dropdown-open .cta-button a,
body.nav-dropdown-open .scroll-to-top .top,
body.nav-dropdown-open .floating-actions,
body.nav-dropdown-open retell-widget {
  display: none !important;
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

header.header-area.sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10001 !important;
}

@media (max-width: 1199px) {
  header .main-menu .main-nav.slidenav {
    z-index: 10002 !important;
  }
  header .main-menu .main-nav .sub-menu.d-block {
    background: transparent;
  }
  header .main-menu .main-nav .sub-menu.d-block > li > a {
    color: #e0e0e0;
  }
  header .main-menu .main-nav .sub-menu.d-block > li > a .bi {
    color: inherit;
  }
  header .main-menu .main-nav .sub-menu.d-block > li > a:hover {
    color: #2563eb;
  }
  header .main-menu .main-nav .sub-menu.d-block .mega-menu-content {
    background: #1a1a1a !important;
    -webkit-backdrop-filter: none !important;
    backdrop-filter: none !important;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    overflow: hidden;
  }
  header .main-menu .main-nav .sub-menu.d-block .mega-menu-categories {
    background: #1a1a1a !important;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
  }
  header .main-menu .main-nav .sub-menu.d-block .mega-menu-categories .mega-menu-cat-item {
    color: #e0e0e0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
  header .main-menu .main-nav .sub-menu.d-block .mega-menu-categories .mega-menu-cat-item > .bi {
    color: #999;
  }
  header .main-menu .main-nav .sub-menu.d-block .mega-menu-categories .mega-menu-cat-item > .arrow {
    color: #2563eb;
  }
  header .main-menu .main-nav .sub-menu.d-block .mega-menu-categories .mega-menu-cat-item.active,
  header .main-menu .main-nav .sub-menu.d-block .mega-menu-categories .mega-menu-cat-item:hover {
    color: #2563eb;
    background: #222;
  }
  header .main-menu .main-nav .sub-menu.d-block .mega-menu-categories .mega-menu-cat-item.active > .bi,
  header .main-menu .main-nav .sub-menu.d-block .mega-menu-categories .mega-menu-cat-item:hover > .bi {
    color: #2563eb;
  }
  header .main-menu .main-nav .sub-menu.d-block .mega-menu-details ul li a {
    color: #ccc;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
  header .main-menu .main-nav .sub-menu.d-block .mega-menu-details ul li a:hover {
    color: #2563eb;
  }
  header .main-menu .main-nav .mobile-menu-logo .remove {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    min-width: 44px;
    cursor: pointer;
    color: #fff;
    font-size: 22px;
    z-index: 10;
  }
}
/*===========================
   DESIGN REFINEMENTS
   Typography, spacing, images
   Theme and concept unchanged
===========================*/
.inline-related-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
  margin-bottom: 8px;
}
.inline-related-links a {
  display: inline-flex;
  align-items: center;
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  padding: 4px 12px;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s;
}
.inline-related-links a::after {
  content: " →";
}
.inline-related-links a:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
}

.service-details-content .inline-related-links a {
  color: #2563eb;
  background: rgba(37, 99, 235, 0.06);
  border-color: rgba(37, 99, 235, 0.2);
}
.service-details-content .inline-related-links a:hover {
  background: rgba(37, 99, 235, 0.12);
  border-color: rgba(37, 99, 235, 0.4);
}

.domain-cta-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.domain-cta-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  font-weight: 600;
  color: var(--domain-color, #22c55e);
  text-decoration: none;
  border: 1px solid var(--domain-color, #22c55e);
  border-radius: 4px;
  padding: 3px 10px;
  transition: background 0.2s, color 0.2s;
}
.domain-cta-link:hover {
  background: var(--domain-color, #22c55e);
  color: #fff;
  text-decoration: none;
}
.domain-cta-link i {
  font-size: 11px;
}

.hero-area .widgets-container {
  position: static;
  width: auto;
  margin-top: 28px;
  display: flex;
  gap: 10px;
  flex-wrap: nowrap;
}
.hero-area .widgets-container .single-widget {
  width: auto;
  min-width: 0;
  flex-shrink: 1;
}

.hero-area .ken-burns-slideshow {
  top: calc(50vh - 250px);
  border-radius: 100px 0 0 0;
}
.sec-title {
  margin-bottom: 60px;
}
.sec-title span {
  font-size: 17px;
  padding-bottom: 4px;
  letter-spacing: 0.02em;
}
.sec-title h2 {
  font-size: 42px;
  line-height: 1.25;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .sec-title h2 {
    font-size: 36px;
  }
}
@media (max-width: 767px) {
  .sec-title h2 {
    font-size: 28px;
    line-height: 1.3;
  }
}
.sec-title p {
  line-height: 1.7;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}
.layout2 .sec-title p {
  margin-left: 0;
  margin-right: 0;
}

.title-wrap .sec-title p {
  max-width: 100%;
}

.service-details-content > img {
  width: 100%;
  height: auto;
  max-height: 420px;
  object-fit: cover;
  object-position: center;
  border-radius: 12px;
  display: block;
}
.service-details-content h2,
.service-details-content h3 {
  font-size: 32px;
  margin-top: 48px;
  margin-bottom: 24px;
  line-height: 1.3;
  letter-spacing: -0.01em;
}
@media (max-width: 767px) {
  .service-details-content h2,
  .service-details-content h3 {
    font-size: 26px;
    margin-top: 36px;
    margin-bottom: 20px;
  }
}
.service-details-content h2 i,
.service-details-content h3 i {
  vertical-align: middle;
}
.service-details-content p {
  line-height: 1.75;
  margin-bottom: 22px;
}

.sidebar-widget {
  padding: 40px 24px;
  border-radius: 8px;
}
.sidebar-widget h2, .sidebar-widget h3, .sidebar-widget h4 {
  font-size: 20px;
  letter-spacing: 0.02em;
  padding-bottom: 12px;
  margin-bottom: 22px;
}

.sidebar-widget .recent-post h4 {
  padding-bottom: 0;
  margin: 0;
}

.sidebar-widget--more-success-stories .sidebar-widget__lead {
  font-size: 14px;
  line-height: 1.5;
  color: #5f6062;
  margin-bottom: 20px;
  margin-top: -8px;
}
.sidebar-widget--more-success-stories .success-stories-list .recent-post {
  margin-bottom: 20px;
}
.sidebar-widget--more-success-stories .success-stories-list .recent-post:last-child {
  margin-bottom: 0;
}
.sidebar-widget--more-success-stories .recent-thumb a img {
  object-fit: cover;
  height: 60px;
  width: 80px;
}

.category li {
  margin-bottom: 18px;
}

.category a {
  font-size: 15px;
  line-height: 1.5;
  padding: 4px 0;
}

@media (max-width: 767px) {
  .em-jump-list a,
  .em-pick-table td a {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    text-decoration: none;
  }
}
.sidebar-related-links li {
  padding: 0 !important;
}

.sidebar-related-link {
  display: block;
  font-size: 14px;
  line-height: 1.4;
  color: #555;
  padding: 10px 0;
  min-height: 44px;
  display: flex;
  align-items: center;
  text-decoration: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  transition: color 0.2s ease, padding-left 0.2s ease;
}
.sidebar-related-link:hover {
  color: #2563eb;
  padding-left: 4px;
}
.sidebar-related-link:last-child {
  border-bottom: none;
}

.services-sidebar-link {
  display: flex !important;
  align-items: center;
  gap: 12px;
}
.services-sidebar-link .services-sidebar-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  flex-shrink: 0;
  border-radius: 10px;
  font-size: 17px;
  background: rgba(48, 120, 251, 0.1);
  box-shadow: inset 0 0 0 1px rgba(48, 120, 251, 0.15);
  transition: background 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}
.services-sidebar-link .services-sidebar-icon i {
  position: static;
  color: inherit !important;
  opacity: 1;
  line-height: 1;
}
.services-sidebar-link:hover .services-sidebar-icon {
  background: rgba(48, 120, 251, 0.18);
  box-shadow: inset 0 0 0 1px rgba(48, 120, 251, 0.28);
  transform: translateY(-1px);
}

.breadcrumb-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 14px;
  color: #fff;
  text-transform: capitalize;
}
.breadcrumb-list li {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.breadcrumb-list li a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 4px;
  color: #2563eb;
}
.breadcrumb-list li .breadcrumb-sep {
  margin: 0 5px;
  color: rgba(255, 255, 255, 0.7);
}
@media (max-width: 767px) {
  .breadcrumb-list li .breadcrumb-sep {
    margin: 0 3px;
  }
}

.breadcrumb-cnt span {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.author-date.layout2 {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 14px;
  color: #4a4c4f;
}
.author-date.layout2 a {
  color: inherit;
}
.author-date.layout2 .meta-divider {
  color: #9a9ca0;
}

.tag-share {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.tag-share .line-tag {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 14px;
}
.tag-share .line-tag span {
  font-size: 14px;
  font-weight: 400;
}
.tag-share .line-tag .label {
  font-weight: 600;
  color: #202124;
  font-size: 14px;
}
.tag-share .line-tag .tag-pill {
  background: #f3f4f6;
  border-radius: 999px;
  padding: 5px 10px;
  font-size: 14px;
  color: #3a3b3d;
  line-height: 1.3;
  display: inline-flex;
  align-items: center;
  font-weight: 400;
}
.tag-share .share-blog {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.tag-share .share-blog span {
  font-weight: 600;
  color: #202124;
}
.tag-share .share-blog .social-share-blog {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  padding: 0;
}
.tag-share .share-blog .social-share-blog li {
  margin: 0;
}

.cloud-services-page .sidebar-banner--utility {
  background: #000 !important;
}
.cloud-services-page .sidebar-banner--utility::before {
  background-color: #000 !important;
  opacity: 0.9;
}
.cloud-services-page .sidebar-banner--utility .banner-inner {
  background-color: #000 !important;
  background-image: none !important;
}
.cloud-services-page .sidebar-banner--utility .banner-inner h3, .cloud-services-page .sidebar-banner--utility .banner-inner h3 span {
  color: #ffffff !important;
}
.cloud-services-page .sidebar-banner--utility .banner-inner .sidebar-banner__phones a,
.cloud-services-page .sidebar-banner--utility .banner-inner .sidebar-banner__phone-link,
.cloud-services-page .sidebar-banner--utility .banner-inner a[href^=tel] {
  color: #ffffff !important;
}
.cloud-services-page .sidebar-banner--utility .banner-inner .sidebar-banner__actions a {
  color: #ffffff !important;
}

.cloud-services-page .service-details-item .single-details-thumb img,
.cloud-services-page .single-item .item-img img {
  filter: saturate(0.95) contrast(1.01);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
  border-radius: 14px;
  transition: filter 0.3s ease, box-shadow 0.3s ease;
}

.cloud-services-page .service-details-item:hover .single-details-thumb img,
.cloud-services-page .single-item:hover .item-img img {
  filter: saturate(1) contrast(1.03);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.12);
}

.web-development-page .service-details-item .single-details-thumb img,
.web-development-page .single-item .item-img img {
  filter: saturate(0.96) contrast(1.01);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
  border-radius: 14px;
  transition: filter 0.3s ease, box-shadow 0.3s ease;
}

.web-development-page .service-details-item:hover .single-details-thumb img,
.web-development-page .single-item:hover .item-img img {
  filter: saturate(1) contrast(1.03);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.12);
}

.web-development-page .service-details-content > img {
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
}

.service-details-item .single-details-thumb {
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-details-item .single-details-thumb img {
  border-radius: 12px;
  object-fit: cover;
  max-height: 340px;
  width: auto;
  max-width: 100%;
}

.item-inner-cnt h3,
.item-inner-cnt h4 {
  line-height: 1.35;
  letter-spacing: -0.01em;
}

.breadcrumb-cnt h1 {
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.cmn-btn a {
  padding: 16px 32px;
  border-radius: 6px;
  letter-spacing: 0.02em;
}
@media (max-width: 767px) {
  .cmn-btn a {
    padding: 14px 26px;
  }
}

@media (min-width: 1024px) {
  header .main-nav > ul {
    white-space: nowrap;
  }
  header .main-nav > ul > li {
    padding: 0 18px;
  }
  header .main-nav .sub-menu {
    white-space: normal;
  }
}
.details-thumb img,
.blog-details-content > .details-thumb img {
  max-height: 360px;
  object-fit: cover;
  border-radius: 12px;
}

.service-details-content p {
  line-height: 1.75;
}

.hero-content .cmn-btn a {
  background: linear-gradient(135deg, #2563eb, rgb(93.0571428571, 139.1142857143, 240.1428571429));
  border-color: #2563eb;
  box-shadow: 0 0 16px rgba(37, 99, 235, 0.3), 0 4px 12px rgba(0, 0, 0, 0.2);
}
.hero-content .cmn-btn a:hover {
  box-shadow: 0 0 24px rgba(37, 99, 235, 0.45), 0 6px 16px rgba(0, 0, 0, 0.25);
}

.hero-content .cmn-btn.layout-two a {
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, 0.7);
  color: #ffffff;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.08);
}
.hero-content .cmn-btn.layout-two a:hover {
  border-color: #ffffff;
  color: #ffffff;
  box-shadow: 0 0 18px rgba(255, 255, 255, 0.15);
}

.hero-content h1 {
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.service-details-content .hero-cta {
  margin-top: 24px;
}

.hero-cta-group {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 24px;
}
@media (max-width: 767px) {
  .hero-cta-group {
    margin-top: 16px;
  }
}
.hero-cta-group .hero-cta {
  margin-top: 0;
}
.hero-cta-group .hero-cta-secondary {
  background: transparent;
  border: 1px solid var(--primary-color, #4fc3f7);
}
.hero-cta-group .hero-cta-secondary a {
  color: var(--primary-color, #4fc3f7);
}
.hero-cta-group .hero-cta-secondary:hover {
  background: var(--primary-color, #4fc3f7);
}
.hero-cta-group .hero-cta-secondary:hover a {
  color: #fff;
}

@media (min-width: 992px) {
  .service-details > .container > .row > .col-lg-4,
  .blog-details-area > .container > .row > .col-lg-4,
  .blog-grid > .container > .row > .col-lg-4,
  .blog-standard > .container > .row > .col-lg-4 {
    align-self: flex-start;
    position: sticky;
    top: 100px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    z-index: 2;
  }
  .service-details > .container > .row > .col-lg-4 .sidebar-banner--utility,
  .blog-details-area > .container > .row > .col-lg-4 .sidebar-banner--utility,
  .blog-grid > .container > .row > .col-lg-4 .sidebar-banner--utility,
  .blog-standard > .container > .row > .col-lg-4 .sidebar-banner--utility {
    order: -2;
  }
}
@media (max-width: 991px) {
  .service-details > .container > .row > .col-lg-4,
  .blog-details-area > .container > .row > .col-lg-4,
  .blog-grid > .container > .row > .col-lg-4,
  .blog-standard > .container > .row > .col-lg-4 {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  .service-details > .container > .row > .col-lg-4 .sidebar-banner--utility,
  .blog-details-area > .container > .row > .col-lg-4 .sidebar-banner--utility,
  .blog-grid > .container > .row > .col-lg-4 .sidebar-banner--utility,
  .blog-standard > .container > .row > .col-lg-4 .sidebar-banner--utility {
    order: 99;
    position: static;
  }
}
.sidebar-banner--utility {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 14px 34px rgba(16, 24, 40, 0.16);
  display: grid;
  background: #000 !important;
}
.sidebar-banner--utility::before {
  background-color: #000 !important;
  opacity: 0.9;
}
.sidebar-banner--utility img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  display: block;
}
@media (max-width: 767px) {
  .sidebar-banner--utility img {
    display: none;
  }
}
.sidebar-banner--utility .banner-inner {
  position: static;
  width: auto;
  height: auto;
  padding: 22px 20px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 10px;
  background-color: #000 !important;
  background-image: none !important;
}
.sidebar-banner--utility .banner-inner h3 {
  font-size: 24px;
  line-height: 1.2;
  text-transform: none;
  text-align: left;
  margin-bottom: 10px;
  color: #ffffff !important;
}
.sidebar-banner--utility .banner-inner h3 span {
  color: #ffffff !important;
}
.sidebar-banner--utility .banner-inner a[href^=tel],
.sidebar-banner--utility .banner-inner .sidebar-banner__phones a,
.sidebar-banner--utility .banner-inner .sidebar-banner__phone-link {
  display: inline-block;
  font-size: 22px;
  margin-top: 2px;
  margin-bottom: 2px;
  color: #ffffff !important;
}

.sidebar-banner__actions {
  margin-top: auto;
  display: grid;
  gap: 8px;
}
.sidebar-banner__actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 8px;
  padding: 10px 12px;
  font-size: 14px;
  color: #ffffff !important;
  background: rgba(255, 255, 255, 0.15);
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.sidebar-banner__actions a:hover {
  background: rgba(48, 120, 251, 0.4);
  border-color: rgba(255, 255, 255, 0.45);
  transform: translateY(-1px);
}

.sidebar-banner__phone-link {
  display: inline-flex !important;
  align-items: center;
  min-height: 44px;
  padding: 6px 0;
  gap: 8px;
}

.sidebar-banner__flag {
  font-size: 18px;
  line-height: 1;
}

.qa-domain-showcase {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #e5ebf7;
  background: radial-gradient(1000px 280px at -10% -30%, rgba(48, 120, 251, 0.12), transparent 45%), radial-gradient(800px 240px at 110% 120%, rgba(16, 185, 129, 0.1), transparent 45%), #f9fbff;
}
.qa-domain-showcase .qa-domain-showcase__title {
  margin-bottom: 24px;
}
.qa-domain-showcase .qa-domain-showcase__meta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin: -6px 0 14px;
}
.qa-domain-showcase .qa-domain-showcase__meta span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 7px 12px;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid #dce6f7;
  color: #2d4a75;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.01em;
}
.qa-domain-showcase .qa-domain-showcase__points {
  margin-top: 12px;
}
.qa-domain-showcase .qa-domain-showcase__points ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
@media (max-width: 767px) {
  .qa-domain-showcase .qa-domain-showcase__points ul {
    grid-template-columns: 1fr;
  }
}
.qa-domain-showcase .qa-domain-showcase__points li {
  margin: 0;
  border: 1px solid #dce6f7;
  border-radius: 12px;
  background: #ffffff;
  padding: 14px 14px 12px;
  box-shadow: 0 8px 20px rgba(31, 64, 122, 0.06);
}
.qa-domain-showcase .qa-domain-showcase__points li::before {
  content: none;
}
.qa-domain-showcase .qa-domain-showcase__points p {
  margin: 8px 0 0;
  color: #30425d;
  line-height: 1.6;
  font-size: 14px;
}
.qa-domain-showcase .qa-domain-showcase__item-head {
  display: grid;
  grid-template-columns: auto auto 1fr;
  align-items: center;
  gap: 8px;
}
.qa-domain-showcase .qa-domain-showcase__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 32px;
  height: 24px;
  padding: 0 8px;
  border-radius: 999px;
  background: rgba(48, 120, 251, 0.1);
  color: #1d4ed8;
  font-size: 12px;
  font-weight: 700;
}
.qa-domain-showcase .qa-domain-showcase__icon {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #2563eb, #26a1f4);
  color: #fff;
  font-size: 14px;
  box-shadow: 0 6px 14px rgba(48, 120, 251, 0.28);
}
.qa-domain-showcase strong {
  color: #17253b;
  font-size: 15px;
  line-height: 1.35;
}

.item-inner-cnt .benefit-desc {
  font-size: 14px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.75);
  margin-top: 0;
  margin-bottom: 0;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease 0.1s, margin-top 0.3s ease;
}

.single-item:hover .item-inner-cnt .benefit-desc {
  margin-top: 10px;
  max-height: 150px;
  opacity: 1;
}

.single-service span {
  opacity: 1;
  -webkit-text-stroke: 2px #2563eb;
  -webkit-text-fill-color: transparent;
  color: rgba(48, 120, 251, 0.35);
}

.single-service:hover span {
  opacity: 1;
  color: rgba(48, 120, 251, 0.55);
}

.aiml-service-areas .single-service span {
  -webkit-text-stroke: 1px rgba(48, 120, 251, 0.6);
  -webkit-text-fill-color: rgba(48, 120, 251, 0.5);
  color: rgba(48, 120, 251, 0.55);
  font-weight: 800;
  opacity: 1;
}

.aiml-service-areas .single-service:hover span {
  -webkit-text-fill-color: rgba(48, 120, 251, 0.75);
  color: rgba(48, 120, 251, 0.8);
}

.mobile-service-areas .single-service span {
  -webkit-text-stroke: 1px rgba(48, 120, 251, 0.6);
  -webkit-text-fill-color: rgba(48, 120, 251, 0.5);
  color: rgba(48, 120, 251, 0.55);
  font-weight: 800;
  opacity: 1;
}

.mobile-service-areas .single-service:hover span {
  -webkit-text-fill-color: rgba(48, 120, 251, 0.75);
  color: rgba(48, 120, 251, 0.8);
}
@keyframes agileFadeIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.customdev-slider-wrap {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
}

.customdev-nav {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid #e2e8f0;
  background: #fff;
  color: #334155;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}
.customdev-nav:hover {
  border-color: #2563eb;
  color: #2563eb;
  box-shadow: 0 4px 16px rgba(48, 120, 251, 0.2);
  transform: scale(1.06);
}
@media (max-width: 576px) {
  .customdev-nav {
    display: none;
  }
}

.customdev-pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}
.customdev-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #cbd5e1;
  opacity: 1;
  cursor: pointer;
  transition: all 0.25s ease;
}
.customdev-pagination .swiper-pagination-bullet-active {
  background: #2563eb;
  transform: scale(1.3);
}

#etl-elt-pipelines .single-details p, #etl-elt-pipelines .single-details ul {
  margin-bottom: 12px;
}
#etl-elt-pipelines .single-details ul {
  padding-left: 20px;
}

.services-area.apps-we-build--challenges .challenges-pagination {
  position: relative;
  margin-top: 28px;
  display: flex;
  justify-content: center;
  gap: 10px;
}
.services-area.apps-we-build--challenges .challenges-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: rgba(48, 120, 251, 0.35);
  opacity: 1;
  transition: all 0.3s ease;
}
.services-area.apps-we-build--challenges .challenges-pagination .swiper-pagination-bullet:hover {
  background: rgba(48, 120, 251, 0.7);
  transform: scale(1.15);
}
.services-area.apps-we-build--challenges .challenges-pagination .swiper-pagination-bullet-active {
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  transform: scale(1.25);
  box-shadow: 0 2px 12px rgba(48, 120, 251, 0.5);
}
.services-area.apps-we-build--challenges .swiper .swiper-slide {
  height: auto;
  display: flex;
}
.services-area.apps-we-build--challenges .single-service {
  height: 100%;
  display: flex;
  flex-direction: column;
  min-height: 280px;
  max-height: 340px;
  border-left-width: 4px;
  border-image: linear-gradient(180deg, var(--card-accent, #2563eb) 0%, color-mix(in srgb, var(--card-accent) 50%, transparent) 100%) 1;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08), 0 2px 8px color-mix(in srgb, var(--card-accent) 12%, transparent);
}
.services-area.apps-we-build--challenges .single-service p {
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 16px;
}
.services-area.apps-we-build--challenges .single-service .icon {
  background: linear-gradient(135deg, var(--card-accent) 0%, color-mix(in srgb, var(--card-accent) 75%, #fff) 100%) !important;
  box-shadow: 0 8px 24px color-mix(in srgb, var(--card-accent) 45%, transparent);
}
.services-area.apps-we-build--challenges .single-service span {
  -webkit-text-stroke: 2px color-mix(in srgb, var(--card-accent) 45%, transparent);
  -webkit-text-fill-color: color-mix(in srgb, var(--card-accent) 22%, transparent);
}
.services-area.apps-we-build--challenges .single-service .read-btn a {
  color: var(--card-accent) !important;
  font-weight: 600;
  border: 2px solid var(--card-accent);
  padding: 10px 24px;
  border-radius: 8px;
  transition: all 0.3s ease;
}
.services-area.apps-we-build--challenges .single-service .read-btn a:hover {
  background: var(--card-accent) !important;
  color: #fff !important;
}
.services-area.apps-we-build--challenges .single-service:hover {
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.14), 0 0 40px color-mix(in srgb, var(--card-accent) 25%, transparent);
}
.services-area.apps-we-build--challenges .single-service:hover span {
  -webkit-text-stroke: 2px color-mix(in srgb, var(--card-accent) 70%, transparent);
  -webkit-text-fill-color: color-mix(in srgb, var(--card-accent) 35%, transparent);
}
.services-area.apps-we-build--challenges .single-service:hover .icon {
  box-shadow: 0 10px 32px color-mix(in srgb, var(--card-accent) 55%, transparent);
}
.services-area.apps-we-build--challenges .single-service:hover .read-btn a {
  border-color: #e4e4e4;
  color: #e4e4e4 !important;
}
.services-area.apps-we-build--challenges .single-service:hover .read-btn a:hover {
  background: rgba(255, 255, 255, 0.15) !important;
  border-color: #fff;
}

.services-area.apps-we-build .swiper .swiper-slide {
  height: auto;
}
.services-area.apps-we-build .single-service {
  height: 100%;
  display: flex;
  flex-direction: column;
  border-left: 3px solid transparent;
  border-image: linear-gradient(180deg, var(--card-accent, #2563eb), transparent) 1;
  background: linear-gradient(135deg, #fff 0%, #f4f7ff 100%);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06), 0 1px 4px rgba(48, 120, 251, 0.04);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-image 0.35s ease;
}
.services-area.apps-we-build .single-service .icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background-image: none !important;
  background: var(--card-accent, #2563eb);
  background-image: linear-gradient(135deg, var(--card-accent, #2563eb), #6ea6ff);
  box-shadow: 0 6px 20px rgba(48, 120, 251, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.services-area.apps-we-build .single-service .icon i {
  color: #fff !important;
  font-size: 26px;
  line-height: 1;
}
.services-area.apps-we-build .single-service span {
  font-size: 56px;
  font-weight: 800;
  -webkit-text-stroke: 2px color-mix(in srgb, var(--card-accent, #2563eb) 30%, transparent);
  -webkit-text-fill-color: color-mix(in srgb, var(--card-accent, #2563eb) 12%, transparent);
  opacity: 1;
}
.services-area.apps-we-build .single-service p {
  flex: 1;
  font-size: 15px;
  line-height: 1.7;
  color: #444;
}
.services-area.apps-we-build .single-service h4 {
  font-size: 22px;
  font-weight: 600;
  color: #17161a;
}
.services-area.apps-we-build .single-service::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--card-accent, #2563eb);
  border-radius: 0 0 10px 10px;
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.services-area.apps-we-build .single-service:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12), 0 0 30px color-mix(in srgb, var(--card-accent, #2563eb) 15%, transparent);
  background: linear-gradient(145deg, #0d0f14 0%, #161927 100%);
}
.services-area.apps-we-build .single-service:hover span {
  -webkit-text-stroke: 2px color-mix(in srgb, var(--card-accent, #2563eb) 55%, transparent);
  -webkit-text-fill-color: color-mix(in srgb, var(--card-accent, #2563eb) 25%, transparent);
}
.services-area.apps-we-build .single-service:hover .icon {
  transform: scale(1.1);
  box-shadow: 0 8px 28px color-mix(in srgb, var(--card-accent, #2563eb) 45%, transparent);
}
.services-area.apps-we-build .single-service:hover::after {
  width: 100%;
}
.services-area.apps-we-build .single-service:hover h4, .services-area.apps-we-build .single-service:hover p {
  color: #e4e4e4;
}
.services-area.apps-we-build .single-service:hover .read-btn a {
  color: #e4e4e4;
}

.section-band-light {
  background-color: #f8f9fb;
  padding: 36px 0;
  margin: 24px 0;
}
@media (max-width: 767px) {
  .section-band-light {
    padding: 24px 0;
    margin: 18px 0;
  }
}

.service-details .sec-mar + .sec-mar,
.service-details .sec-mar-top + .sec-mar,
.service-details .sec-mar + .sec-mar-top {
  margin-top: 0;
}
.service-details > .container > .project-slider {
  margin-top: 36px;
}
@media (max-width: 767px) {
  .service-details > .container > .project-slider {
    margin-top: 26px;
  }
}
.service-details > .section-band-light + .container > .sec-mar,
.service-details > .section-band-light + .container > .sec-mar-top {
  margin-top: 24px;
}
.service-details > .container + .section-band-light {
  margin-top: 0;
}
.service-details > .section-band-light + .container {
  margin-top: 0;
}
.service-details > .section-band-light + .section-band-light {
  margin-top: 0;
}
.service-details > .section-band-light:first-child {
  margin-top: 0;
}
.service-details > .container > .row + .project-slider {
  margin-top: 30px;
}
.service-details > .container > .project-slider + .services-area {
  margin-top: 24px;
}

.service-details-item + .service-details-item {
  border-top: 1px solid #f0f0f0;
  padding-top: 40px;
  margin-top: 10px;
}

@media (min-width: 992px) {
  .service-details-item {
    transition: transform 0.2s ease;
  }
  .service-details-item:hover {
    transform: translateY(-2px);
  }
  .service-details-item > .row {
    align-items: center;
  }
}
.single-details p {
  margin-bottom: 18px;
}

.single-details li {
  margin-bottom: 14px;
  line-height: 1.65;
}

.single-details .bullet-points-2 {
  margin-top: 16px;
  margin-bottom: 18px;
}
.single-details .bullet-points-2 ul {
  margin-top: 12px;
}

.single-details h3 span,
.single-details h4 span {
  font-size: 72px;
  opacity: 0.1;
}

.faq-toggle-wrap {
  text-align: center;
  margin-top: 30px;
}

.faq-toggle-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: 1px solid #2563eb;
  color: #2563eb;
  font-size: 15px;
  font-weight: 500;
  padding: 12px 28px;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease;
}
.faq-toggle-btn:hover {
  background-color: #2563eb;
  color: #fff;
}
.faq-toggle-btn i {
  font-size: 14px;
}

.our-team.sec-mar + .blog-area.sec-mar {
  margin-top: 0;
}

.features-area .row > [class*=col-] {
  display: flex;
  align-items: stretch;
}

.single-feature {
  width: 100%;
}

.achievements-section .single-item {
  overflow: hidden;
  border-radius: 12px;
  background: #0e0e0e;
  display: flex;
  flex-direction: column;
}

.achievements-section .achievements-card-img {
  aspect-ratio: 16/9;
  overflow: hidden;
  border-radius: 12px 12px 0 0;
  position: relative;
}
.achievements-section .achievements-card-img a {
  display: block;
  width: 100%;
  height: 100%;
}
.achievements-section .achievements-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  border-radius: 12px 12px 0 0;
}

.achievements-section .achievements-card-title {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 32px 16px 12px;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.3;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.4) 60%, transparent 100%);
  pointer-events: none;
  z-index: 2;
  white-space: normal;
  overflow-wrap: break-word;
}

.achievements-section .achievements-card-img {
  position: relative;
}

.achievements-section .single-item .item-inner-cnt {
  position: static;
  left: auto;
  right: auto;
  bottom: auto;
  width: 100%;
  padding: 12px 16px 14px;
  background: #0e0e0e;
  border-radius: 0 0 12px 12px;
  backdrop-filter: none;
}
.achievements-section .single-item .item-inner-cnt span {
  font-size: 12px;
  margin-bottom: 2px;
}
.achievements-section .single-item .item-inner-cnt h4 {
  font-size: 15px;
  line-height: 1.25;
  white-space: normal;
  overflow: visible;
  text-overflow: unset;
}
.achievements-section .single-item .item-inner-cnt .view-btn {
  margin-top: 6px;
  max-height: none;
  opacity: 1;
  overflow: visible;
}

.achievements-section .single-item:hover .item-inner-cnt .view-btn {
  margin-top: 6px;
}

.project-slider--eudr-benefits .single-item .item-inner-cnt {
  padding: 10px 18px 12px;
}
.project-slider--eudr-benefits .single-item .item-inner-cnt span {
  font-size: 12px;
  margin-bottom: 4px;
}
.project-slider--eudr-benefits .single-item .item-inner-cnt h4 {
  font-size: 17px;
  line-height: 1.3;
}
.project-slider--eudr-benefits .single-item .item-inner-cnt .view-btn {
  margin-top: 6px;
}

.project-slider--eudr-benefits .single-item:hover .item-inner-cnt .view-btn {
  margin-top: 6px;
}

.project-slider--types-of-apps .single-item {
  overflow: hidden;
  border-radius: 12px;
}
.project-slider--types-of-apps .single-item .item-img {
  aspect-ratio: 16/9;
  border-radius: 12px;
  overflow: hidden;
}
.project-slider--types-of-apps .single-item .item-img a,
.project-slider--types-of-apps .single-item .item-img span {
  display: block;
  width: 100%;
  height: 100%;
}
.project-slider--types-of-apps .single-item .item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.project-slider--types-of-apps .single-item .item-inner-cnt {
  min-height: 92px;
}

.midpage-cta {
  padding: 50px 0;
}
@media (max-width: 767px) {
  .midpage-cta {
    padding: 30px 0;
  }
}

.midpage-cta-inner {
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  border-radius: 16px;
  padding: 60px 48px;
  text-align: center;
}
@media (max-width: 767px) {
  .midpage-cta-inner {
    padding: 40px 24px;
    border-radius: 12px;
  }
}
.midpage-cta-inner h2,
.midpage-cta-inner h3 {
  color: #fff;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}
@media (max-width: 767px) {
  .midpage-cta-inner h2,
  .midpage-cta-inner h3 {
    font-size: 26px;
  }
}
.midpage-cta-inner p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 17px;
  line-height: 1.6;
  max-width: 520px;
  margin: 0 auto 32px;
}
@media (max-width: 767px) {
  .midpage-cta-inner p {
    font-size: 15px;
  }
}

.agile-section .section-header .icon i,
.mobile-apps-section .section-header .icon i,
.data-analysis-challenges-section .section-header .icon i,
.mvp-benefits-section .section-header .icon i,
.ai-ml-services-section .section-header .icon i {
  font-size: 28px;
  color: var(--primary-color, #0d6efd);
}

.service-details > .section-band-light:last-child {
  margin-bottom: 0;
}

.tech-stack-section {
  margin-top: 4rem;
  padding: 48px 0;
  position: relative;
}
.tech-stack-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: linear-gradient(135deg, rgba(48, 120, 251, 0.04) 0%, rgba(139, 92, 246, 0.03) 50%, rgba(48, 120, 251, 0.02) 100%);
  border-radius: 20px;
  pointer-events: none;
}

.tech-stack-section__intro {
  position: relative;
  z-index: 1;
}

.tech-stack-section__badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #2563eb;
  margin-bottom: 12px;
  padding: 6px 14px;
  background: rgba(48, 120, 251, 0.12);
  border-radius: 20px;
}

.tech-stack-section__title {
  font-size: 32px;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 20px;
  line-height: 1.25;
  letter-spacing: -0.02em;
}
@media (max-width: 767px) {
  .tech-stack-section__title {
    font-size: 26px;
  }
}

.tech-stack-section__desc p {
  font-size: 16px;
  line-height: 1.7;
  color: #4a4a5a;
  margin-bottom: 14px;
}

.swiper.tech-stack-slide--vibrant,
.swiper.tech-stack-slide,
.swiper.testing-stack-slide {
  border: 1px solid rgba(48, 120, 251, 0.2);
  background: linear-gradient(145deg, #ffffff 0%, #f0f4ff 50%, #fafbff 100%);
  box-shadow: 0 12px 40px rgba(48, 120, 251, 0.12), 0 0 0 1px rgba(255, 255, 255, 0.8) inset;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}
.swiper.tech-stack-slide--vibrant::before,
.swiper.tech-stack-slide::before,
.swiper.testing-stack-slide::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #2563eb, #8b5cf6);
  opacity: 0.9;
}

.swiper.tech-stack-slide--vibrant {
  box-shadow: 0 16px 48px rgba(48, 120, 251, 0.15), 0 0 0 1px rgba(255, 255, 255, 0.9) inset;
}

.swiper.tech-stack-slide .sidebar-widget,
.swiper.testing-stack-slide .sidebar-widget {
  border: none;
  background: transparent;
}

.swiper.tech-stack-slide .sidebar-widget h4,
.swiper.testing-stack-slide .sidebar-widget h4 {
  color: #1a1a2e;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.05em;
  border-bottom: 2px solid rgba(48, 120, 251, 0.3);
  padding-bottom: 12px;
  margin-bottom: 20px;
}

.tech-stack-slide .tag-list li a,
.tech-stack-slide .tag-list li span,
.testing-stack-slide .tag-list li a,
.testing-stack-slide .tag-list li span {
  background: var(--brand-bg, rgba(48, 120, 251, 0.12)) !important;
  border: 2px solid rgba(48, 120, 251, 0.2) !important;
  border-left: 4px solid var(--brand-color, #2563eb) !important;
  padding: 12px 18px;
  border-radius: 12px;
  color: #1a1a2e;
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.tech-stack-slide .tag-list li a svg,
.tech-stack-slide .tag-list li span svg,
.testing-stack-slide .tag-list li a svg,
.testing-stack-slide .tag-list li span svg {
  width: 22px;
  height: 22px;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1));
}
.tech-stack-slide .tag-list li a .bi,
.tech-stack-slide .tag-list li span .bi,
.testing-stack-slide .tag-list li a .bi,
.testing-stack-slide .tag-list li span .bi {
  font-size: 22px;
  color: var(--brand-color, #2563eb);
}
.tech-stack-slide .tag-list li a:hover,
.tech-stack-slide .tag-list li span:hover,
.testing-stack-slide .tag-list li a:hover,
.testing-stack-slide .tag-list li span:hover {
  background: var(--brand-bg, rgba(48, 120, 251, 0.2)) !important;
  border-color: var(--brand-color, #2563eb) !important;
  color: var(--brand-color, #2563eb);
  box-shadow: 0 6px 20px rgba(48, 120, 251, 0.2);
  transform: translateY(-2px);
}
.tech-stack-slide .tag-list li a:hover .bi,
.tech-stack-slide .tag-list li span:hover .bi,
.testing-stack-slide .tag-list li a:hover .bi,
.testing-stack-slide .tag-list li span:hover .bi {
  color: var(--brand-color, #2563eb);
}
.tech-stack-slide .tag-list li a:hover svg,
.tech-stack-slide .tag-list li span:hover svg,
.testing-stack-slide .tag-list li a:hover svg,
.testing-stack-slide .tag-list li span:hover svg {
  filter: none;
}

.swiper.tech-stack-slide .arrow .swiper-button-next-cb,
.swiper.tech-stack-slide .arrow .swiper-button-prev-cb {
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  border: none;
  color: #fff;
  box-shadow: 0 4px 12px rgba(48, 120, 251, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.swiper.tech-stack-slide .arrow .swiper-button-next-cb:hover,
.swiper.tech-stack-slide .arrow .swiper-button-prev-cb:hover {
  background: linear-gradient(135deg, #1d4ed8 0%, #2563eb 100%);
  box-shadow: 0 6px 20px rgba(48, 120, 251, 0.45);
  transform: scale(1.05);
}

.workflow-steps {
  background: linear-gradient(170deg, #0f1117 0%, #161927 50%, #0f1117 100%);
  padding: 100px 0;
  overflow: hidden;
}
@media (max-width: 767px) {
  .workflow-steps {
    padding: 60px 0;
  }
}
.workflow-steps .sec-title span {
  color: var(--accent, #2563eb);
}
.workflow-steps .sec-title h2 {
  color: #fff;
}
.workflow-steps .sec-title p {
  color: rgba(255, 255, 255, 0.6);
}

.workflow-steps__timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
@media (min-width: 1200px) {
  .workflow-steps__timeline:has(.wf-card:nth-child(4):last-child) {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .workflow-steps__timeline {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}
@media (max-width: 767px) {
  .workflow-steps__timeline {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.wf-card {
  --accent: #3b82f6;
  position: relative;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 36px 28px 32px;
  overflow: visible;
  transition: border-color 0.3s ease, opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1), transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s ease;
}
@media (max-width: 767px) {
  .wf-card {
    padding: 28px 22px 24px;
  }
}
.wf-card {
  opacity: 0;
  transform: translateY(30px);
}
.wf-card--visible {
  opacity: 1;
  transform: translateY(0);
}
.wf-card--visible .wf-card__icon {
  animation: wfIconPop 0.4s 0.15s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}
.wf-card--visible .wf-card__title {
  animation: wfFadeUp 0.4s 0.25s cubic-bezier(0.4, 0, 0.2, 1) both;
}
.wf-card--visible .wf-card__desc {
  animation: wfFadeUp 0.4s 0.35s cubic-bezier(0.4, 0, 0.2, 1) both;
}
.wf-card--visible .wf-card__accent-line {
  width: 100% !important;
}
.wf-card:hover {
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
}
.wf-card:hover .wf-card__icon {
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.12);
}
@media (prefers-reduced-motion: reduce) {
  .wf-card .wf-card__title,
  .wf-card .wf-card__desc {
    animation: none !important;
  }
  .wf-card:hover {
    transform: none;
    box-shadow: none;
  }
  .wf-card:hover .wf-card__icon {
    transform: none;
    box-shadow: none;
  }
}

@keyframes wfIconPop {
  0% {
    transform: scale(0.6);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes wfFadeUp {
  0% {
    opacity: 0;
    transform: translateY(12px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.wf-card:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -12px;
  width: 1px;
  height: 48px;
  margin-top: -24px;
  background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.2), transparent);
  pointer-events: none;
  z-index: 2;
  opacity: 0;
  transition: opacity 0.4s 0.3s ease;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .wf-card:not(:last-child)::after {
    right: -10px;
    height: 40px;
    margin-top: -20px;
  }
}
@media (max-width: 767px) {
  .wf-card:not(:last-child)::after {
    top: auto;
    bottom: -10px;
    right: auto;
    left: 50%;
    margin-left: -1px;
    width: 48px;
    height: 1px;
    margin-top: 0;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.2), transparent);
  }
}

.wf-card--visible:not(:last-child)::after {
  opacity: 1;
}

.wf-card:not(:last-child)::before {
  display: none;
}

@media (min-width: 992px) {
  .wf-card--last-in-row-3::after,
  .wf-card--last-in-row-3::before {
    display: none;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .wf-card--last-in-row-2::after,
  .wf-card--last-in-row-2::before {
    display: none;
  }
}

@media (min-width: 1200px) {
  .wf-card--last-in-row-2:not(.wf-card--last-in-row-3)::after,
  .wf-card--last-in-row-2:not(.wf-card--last-in-row-3)::before {
    display: block;
  }
}

.wf-row-connector {
  grid-column: 1/-1;
  display: flex;
  justify-content: center;
  height: 32px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.wf-row-connector--visible {
  opacity: 1;
}
.wf-row-connector--visible .wf-row-connector__line {
  animation: wfDashDraw 0.8s ease forwards;
}
.wf-row-connector svg {
  width: 24px;
  height: 100%;
}
.wf-row-connector .wf-row-connector__line {
  stroke: rgba(255, 255, 255, 0.15);
  stroke-dasharray: none;
}
.wf-row-connector path:not(.wf-row-connector__line) {
  display: none;
}
@media (max-width: 767px) {
  .wf-row-connector {
    display: none;
  }
}

@keyframes wfDashDraw {
  0% {
    stroke-dasharray: 0 60;
  }
  100% {
    stroke-dasharray: 60 0;
  }
}

.wf-card__header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.wf-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.wf-card__icon .bi {
  font-size: 24px;
  color: #fff !important;
  line-height: 1;
  display: inline-block;
}

.wf-card__step {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
}

.wf-card__title {
  font-size: 19px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 10px;
  line-height: 1.35;
  letter-spacing: -0.01em;
  position: relative;
  z-index: 1;
}

.wf-card__desc {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}

.wf-card__accent-line {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  width: 0;
  background: var(--accent);
  border-radius: 0 0 16px 16px;
  transition: width 0.6s 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.project-slider--dots .arrow {
  display: none !important;
}
.project-slider--dots .data-analytics-pagination {
  position: relative;
  margin-top: 24px;
  display: flex;
  justify-content: center;
  gap: 8px;
}
.project-slider--dots .data-analytics-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: rgba(48, 120, 251, 0.4);
  opacity: 1;
  transition: background 0.3s ease, transform 0.3s ease;
}
.project-slider--dots .data-analytics-pagination .swiper-pagination-bullet:hover {
  background: rgba(48, 120, 251, 0.7);
}
.project-slider--dots .data-analytics-pagination .swiper-pagination-bullet-active {
  background: #2563eb;
  transform: scale(1.2);
}

.blog-grid--useful-reads .swiper-slide {
  overflow: hidden;
  height: auto;
}
.blog-grid--useful-reads .blog-thumb .tag {
  display: none !important;
}
.blog-grid--useful-reads .useful-reads-slider {
  padding-bottom: 48px;
}
.blog-grid--useful-reads .useful-reads-slider .swiper-pagination {
  bottom: 0;
  display: flex;
  justify-content: center;
  gap: 8px;
}
.blog-grid--useful-reads .useful-reads-slider .swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: rgba(48, 120, 251, 0.4);
  opacity: 1;
  transition: background 0.3s ease, transform 0.3s ease;
}
.blog-grid--useful-reads .useful-reads-slider .swiper-pagination .swiper-pagination-bullet:hover {
  background: rgba(48, 120, 251, 0.7);
}
.blog-grid--useful-reads .useful-reads-slider .swiper-pagination .swiper-pagination-bullet-active {
  background: #2563eb;
  transform: scale(1.2);
}

.single-blog--no-tag .blog-inner__title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 14px;
  line-height: 1.4;
  position: relative;
  z-index: 1;
}
.single-blog--no-tag .blog-inner__title a {
  color: #17161a;
  text-decoration: none;
}
.single-blog--no-tag .blog-inner__title a:hover {
  color: #2563eb;
}

.single-blog--no-tag .blog-inner h4 {
  margin-top: 0;
  position: relative;
  z-index: 1;
}

.project-slider .view-btn p {
  margin-bottom: 8px;
  font-size: 14px;
  line-height: 1.5;
  color: inherit;
}

.services-area .swiper-button-next-aiml,
.services-area .swiper-button-prev-aiml,
.services-area .swiper-button-next-agile,
.services-area .swiper-button-prev-agile {
  top: 70%;
  cursor: pointer;
}
@media (max-width: 767px) {
  .services-area .swiper-button-next-aiml,
  .services-area .swiper-button-prev-aiml,
  .services-area .swiper-button-next-agile,
  .services-area .swiper-button-prev-agile {
    display: none;
  }
}
.services-area .swiper-button-next-aiml::after,
.services-area .swiper-button-prev-aiml::after,
.services-area .swiper-button-next-agile::after,
.services-area .swiper-button-prev-agile::after {
  font-size: 20px;
  height: 40px;
  min-width: 40px;
  color: #2a2a2a;
  border: 1px solid #2a2a2a;
  text-align: center;
  line-height: 40px;
  border-radius: 50%;
  transition: 0.3s;
}
.services-area .swiper-button-next-aiml:hover::after,
.services-area .swiper-button-prev-aiml:hover::after,
.services-area .swiper-button-next-agile:hover::after,
.services-area .swiper-button-prev-agile:hover::after {
  color: #e4e4e4;
  background-color: #2a2a2a;
}
.services-area .swiper-button-next-aiml,
.services-area .swiper-button-next-agile {
  right: 7%;
}
.services-area .swiper-button-prev-aiml,
.services-area .swiper-button-prev-agile {
  left: 7%;
}

.price-box-wrap {
  position: relative;
  height: 100%;
}

.price-box {
  position: relative;
}

.price-box-step {
  position: absolute;
  top: -14px;
  left: 20px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #2563eb;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.4);
}

.subscribe-cnt {
  overflow: visible;
}

.subscribe-cnt__label {
  font-weight: 600;
  font-size: 18px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #2563eb;
  margin-bottom: 8px;
}

.subscribe-cnt__headline {
  font-weight: 700;
  font-size: 42px;
  line-height: 1.15;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: #e4e4e4;
  margin-bottom: 0;
  overflow: visible;
}
@media (max-width: 767px) {
  .subscribe-cnt__headline {
    font-size: 28px;
  }
}

.subscribe-cnt .subscribe-cnt__accent {
  display: block;
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.5) !important;
  -webkit-text-stroke: 0 !important;
  -webkit-text-fill-color: rgba(255, 255, 255, 0.5) !important;
  font-weight: 700;
  font-size: inherit;
  text-transform: uppercase;
}

.subscribe-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
}

.subscribe-cta__primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(135deg, #2563eb 0%, rgb(19.4285714286, 79.6571428571, 211.7714285714) 100%);
  border-radius: 12px;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.subscribe-cta__primary i {
  font-size: 20px;
}
.subscribe-cta__primary:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.4);
}

.subscribe-cta__secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  font-size: 16px;
  font-weight: 600;
  color: #e4e4e4;
  background: rgba(255, 255, 255, 0.08);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.subscribe-cta__secondary i {
  font-size: 18px;
}
.subscribe-cta__secondary:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.35);
  transform: translateY(-2px);
}

.subscribe-desc {
  color: rgba(255, 255, 255, 0.65);
  font-size: 15px;
  line-height: 1.6;
  margin-top: 20px;
  max-width: 380px;
}
@media (max-width: 767px) {
  .subscribe-desc {
    font-size: 14px;
    max-width: 100%;
  }
}

.subscribe-highlights {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 28px;
}

.subscribe-highlight-item {
  display: flex;
  align-items: center;
  gap: 14px;
}
.subscribe-highlight-item > i {
  font-size: 22px;
  color: #2563eb;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(37, 99, 235, 0.12);
}
.subscribe-highlight-item strong {
  display: block;
  color: #e4e4e4;
  font-size: 15px;
  font-weight: 600;
  -webkit-text-stroke: 0;
  -webkit-text-fill-color: #e4e4e4;
  text-transform: none;
}
.subscribe-highlight-item span {
  display: block;
  color: rgba(255, 255, 255, 0.55);
  font-size: 14px;
  font-weight: 400;
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}

.tech-stack-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 100%;
  align-items: start;
}
@media (max-width: 767px) {
  .tech-stack-grid {
    grid-template-columns: 1fr;
  }
}
.tech-stack-grid .tech-stack-col {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  padding: 24px;
  border-radius: 16px;
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
}
.tech-stack-grid .tech-stack-col::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  opacity: 0.9;
}
.tech-stack-grid .tech-stack-col:first-child {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.08) 0%, rgba(99, 102, 241, 0.05) 100%);
  border-color: rgba(59, 130, 246, 0.2);
}
.tech-stack-grid .tech-stack-col:first-child::before {
  background: linear-gradient(90deg, #3b82f6, #6366f1);
}
.tech-stack-grid .tech-stack-col:last-child {
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.08) 0%, rgba(34, 197, 94, 0.05) 100%);
  border-color: rgba(139, 92, 246, 0.2);
}
.tech-stack-grid .tech-stack-col:last-child::before {
  background: linear-gradient(90deg, #8b5cf6, #22c55e);
}
.tech-stack-grid .tech-stack-label {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid rgba(0, 0, 0, 0.06);
}
.tech-stack-col:first-child .tech-stack-grid .tech-stack-label {
  color: #2563eb;
}
.tech-stack-col:last-child .tech-stack-grid .tech-stack-label {
  color: #7c3aed;
}

.tech-stack-showcase {
  margin: 2rem 0 2.5rem;
}

.tech-stack-showcase__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
@media (max-width: 767px) {
  .tech-stack-showcase__grid {
    grid-template-columns: 1fr;
  }
}

.tech-stack-showcase__layer {
  padding: 24px;
  border-radius: 14px;
  border: 1px solid rgba(48, 120, 251, 0.2);
  background: linear-gradient(135deg, rgba(48, 120, 251, 0.04) 0%, rgba(48, 120, 251, 0.01) 100%);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.tech-stack-showcase__layer:hover {
  border-color: rgba(48, 120, 251, 0.35);
  box-shadow: 0 8px 32px rgba(48, 120, 251, 0.08);
}
.tech-stack-showcase__layer--app {
  border-left: 4px solid #2563eb;
}
.tech-stack-showcase__layer--infra {
  border-left: 4px solid #8b5cf6;
}

.tech-stack-showcase__header {
  margin-bottom: 16px;
}

.tech-stack-showcase__badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #2563eb;
  margin-bottom: 4px;
}

.tech-stack-showcase__layer--infra .tech-stack-showcase__badge {
  color: #8b5cf6;
}

.tech-stack-showcase__header h6 {
  font-size: 15px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
  font-weight: 500;
}

.tech-stack-showcase__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tech-stack-showcase__pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  font-size: 14px;
  color: #e4e4e4;
  transition: background 0.2s ease, transform 0.2s ease;
}
.tech-stack-showcase__pill:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-1px);
}
.tech-stack-showcase__pill i {
  font-size: 16px;
  opacity: 0.8;
}

.results-showcase {
  margin: 2rem 0 2.5rem;
}

.results-showcase__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
@media (max-width: 767px) {
  .results-showcase__grid {
    grid-template-columns: 1fr;
  }
}

.results-showcase__card {
  padding: 28px 24px;
  border-radius: 14px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.results-showcase__card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}
.results-showcase__card--delivery {
  background: linear-gradient(145deg, rgba(34, 197, 94, 0.12) 0%, rgba(34, 197, 94, 0.02) 100%);
  border: 1px solid rgba(34, 197, 94, 0.25);
}
.results-showcase__card--delivery .results-showcase__card-icon {
  background: rgba(34, 197, 94, 0.2);
  color: #22c55e;
}
.results-showcase__card--delivery .results-showcase__list li i {
  color: #22c55e;
}
.results-showcase__card--impact {
  background: linear-gradient(145deg, rgba(245, 158, 11, 0.12) 0%, rgba(245, 158, 11, 0.02) 100%);
  border: 1px solid rgba(245, 158, 11, 0.25);
}
.results-showcase__card--impact .results-showcase__card-icon {
  background: rgba(245, 158, 11, 0.2);
  color: #f59e0b;
}
.results-showcase__card--impact .results-showcase__list li i {
  color: #f59e0b;
}

.results-showcase__card-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

.results-showcase__card-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  font-size: 22px;
}

.results-showcase__card-header h6 {
  font-size: 18px;
  font-weight: 600;
  color: #e4e4e4;
  margin: 0;
}

.results-showcase__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.results-showcase__list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  font-size: 15px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.results-showcase__list li:last-child {
  border-bottom: none;
}
.results-showcase__list li i {
  flex-shrink: 0;
  font-size: 18px;
  margin-top: 2px;
}

.story-cta-section {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.story-cta-section__tags {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}


.story-cta-section__share-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.5);
}

.story-cta-section__share {
  display: flex;
  align-items: center;
  gap: 14px;
}

.story-cta-section__share-btns {
  display: flex;
  gap: 12px;
}
.story-cta-section__share-btns a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.05);
  color: #666;
  font-size: 18px;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.story-cta-section__share-btns a:hover {
  background: rgba(48, 120, 251, 0.15);
  color: #2563eb;
  transform: translateY(-2px);
}

.story-cta-section__cta {
  position: relative;
  padding: 48px 40px;
  background: linear-gradient(135deg, rgba(48, 120, 251, 0.08) 0%, rgba(139, 92, 246, 0.04) 100%);
  border: 1px solid rgba(48, 120, 251, 0.2);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.story-cta-section__cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, #2563eb, #8b5cf6);
  border-radius: 4px 0 0 4px;
}
.story-cta-section__cta:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(48, 120, 251, 0.12);
}
@media (max-width: 767px) {
  .story-cta-section__cta {
    padding: 32px 24px;
  }
}

.story-cta-section__cta-journey {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.5);
}
.story-cta-section__cta-journey i {
  font-size: 14px;
  opacity: 0.6;
}

.story-cta-section__cta h4 {
  font-size: 28px;
  font-weight: 700;
  color: #17161a;
  text-align: center;
  margin-bottom: 14px;
  line-height: 1.3;
}
@media (max-width: 767px) {
  .story-cta-section__cta h4 {
    font-size: 22px;
  }
}

.story-cta-section__cta p {
  font-size: 16px;
  line-height: 1.65;
  color: #272727;
  text-align: center;
  max-width: 560px;
  margin: 0 auto 28px;
}

.story-cta-section__btn-wrap {
  display: flex;
  justify-content: center;
}

.story-cta-section__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  border-radius: 12px;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-decoration: none;
  margin: 0 auto;
}
.story-cta-section__btn i {
  font-size: 18px;
  transition: transform 0.2s ease;
}
.story-cta-section__btn:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(48, 120, 251, 0.4);
}
.story-cta-section__btn:hover i {
  transform: translateX(4px);
}

footer {
  border-radius: 20px 20px 0 0;
  overflow: hidden;
}

.footer-top {
  padding-top: 80px;
  padding-bottom: 20px;
}
@media (max-width: 767px) {
  .footer-top {
    padding-top: 60px;
  }
}

.footer-widget .footer-logo a img {
  transition: opacity 0.3s ease;
}
.footer-widget .footer-logo a:hover img {
  opacity: 0.9;
}

.footer-tagline {
  font-size: 15px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.75);
  max-width: 280px;
  margin-top: 12px;
}

.footer-cta-link {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  background: rgba(48, 120, 251, 0.9);
  border-radius: 10px;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease;
}
.footer-cta-link:hover {
  background: #2563eb;
  color: #fff;
  transform: translateY(-2px);
}

.footer-accordion-summary {
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.02em;
  color: #e4e4e4;
  padding: 4px 0 16px;
  cursor: pointer;
}

.footer-accordion-summary::-webkit-details-marker,
.footer-accordion-summary::marker {
  display: none;
}

.footer-accordion-summary::after {
  content: "+";
  float: right;
  font-size: 18px;
  font-weight: 400;
  opacity: 0.6;
}

.footer-widget-accordion details[open] .footer-accordion-summary::after {
  content: "−";
}

@media (min-width: 768px) {
  .footer-accordion-summary::after,
  .footer-widget-accordion details[open] .footer-accordion-summary::after {
    content: none;
  }
  .footer-accordion-summary {
    cursor: default;
    pointer-events: none;
  }
}
.footer-social {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
  display: flex;
  gap: 12px;
}
.footer-social li {
  margin: 0;
}
.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #e4e4e4;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.footer-social a i.bi {
  font-family: "bootstrap-icons" !important;
  font-style: normal !important;
  font-weight: normal !important;
  font-size: 18px;
  line-height: 1;
  color: inherit;
  display: inline-block;
}
.footer-social a:hover,
.footer-social a:focus-visible {
  background: #2563eb;
  color: #fff;
  transform: translateY(-2px);
}

.footer-hours {
  margin: 16px 0 0;
  font-size: 14px;
  color: rgba(228, 228, 228, 0.7);
  line-height: 1.6;
}

.footer-cta-link {
  display: inline-block;
  margin-top: 6px;
  font-size: 14px;
  font-weight: 600;
  color: #5b9dff;
  text-decoration: none;
  transition: color 0.2s ease, transform 0.2s ease;
}
.footer-cta-link:hover, .footer-cta-link:focus-visible {
  color: #fff;
  transform: translateX(2px);
}

.footer-menu li a {
  transition: padding-left 0.25s ease, color 0.25s ease;
}

footer .num-icon,
footer .mail-icon,
footer .address-icon {
  min-width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(48, 120, 251, 0.1);
}
footer .num-icon i,
footer .mail-icon i,
footer .address-icon i {
  font-size: 18px;
  color: #2563eb;
}

footer .number,
footer .office-mail,
footer .address {
  margin-bottom: 18px;
  gap: 14px;
}

.footer-bottom {
  margin-top: 60px;
  padding: 28px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
@media (max-width: 767px) {
  .footer-bottom {
    margin-top: 40px;
  }
}

.footer-bottom .footer-bottom-menu li a {
  transition: color 0.2s ease;
}

.ms-overview-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .ms-overview-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .ms-overview-grid {
    grid-template-columns: 1fr;
  }
}

.ms-overview-card {
  background: #f8faff;
  border: 1px solid rgba(48, 120, 251, 0.12);
  border-radius: 12px;
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.ms-overview-card .bi {
  font-size: 24px;
  color: #2563eb;
}
.ms-overview-card strong {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #888;
}
.ms-overview-card span {
  font-size: 15px;
  color: #222;
  line-height: 1.5;
}
.ms-overview-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(48, 120, 251, 0.1);
}

.ms-pain-points {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin: 20px 0;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .ms-pain-points {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .ms-pain-points {
    grid-template-columns: 1fr;
  }
}

.ms-pain {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 14px;
  background: #fff5f5;
  border-left: 3px solid #ef4444;
  border-radius: 8px;
  font-size: 14px;
  line-height: 1.5;
  color: #333;
}
.ms-pain .bi {
  font-size: 18px;
  color: #ef4444;
  flex-shrink: 0;
  margin-top: 1px;
}

.ms-tech-section {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 16px;
}
@media (max-width: 767px) {
  .ms-tech-section {
    grid-template-columns: 1fr;
  }
}

.ms-tech-group {
  background: linear-gradient(145deg, #f8faff, #fff);
  border: 1px solid rgba(48, 120, 251, 0.1);
  border-radius: 14px;
  padding: 24px;
}
.ms-tech-group h6 {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #555;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.ms-tech-group h6 .bi {
  font-size: 18px;
  color: #2563eb;
}

.ms-tech-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.ms-tech-card {
  --tc: #2563eb;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 8px;
  background: rgba(48, 120, 251, 0.08);
  background: color-mix(in srgb, var(--tc) 8%, #fff);
  border: 1px solid rgba(48, 120, 251, 0.2);
  border: 1px solid color-mix(in srgb, var(--tc) 20%, transparent);
  font-size: 14px;
  font-weight: 600;
  color: #222;
  transition: all 0.25s ease;
}
.ms-tech-card .bi {
  font-size: 16px;
  color: var(--tc);
}
.ms-tech-card:hover {
  background: rgba(48, 120, 251, 0.16);
  background: color-mix(in srgb, var(--tc) 16%, #fff);
  border-color: var(--tc);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(48, 120, 251, 0.15);
  box-shadow: 0 4px 12px color-mix(in srgb, var(--tc) 15%, transparent);
}

.ms-metrics-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 16px 0;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .ms-metrics-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .ms-metrics-grid {
    grid-template-columns: 1fr;
  }
}

.ms-metric {
  --mc: #2563eb;
  background: linear-gradient(145deg, #0d0f14, #161927);
  border-radius: 14px;
  padding: 24px 20px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.ms-metric:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3), 0 0 20px color-mix(in srgb, var(--mc) 15%, transparent);
  border-color: color-mix(in srgb, var(--mc) 40%, transparent);
}

.ms-metric__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--mc);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.ms-metric__icon .bi {
  font-size: 22px;
  color: #fff;
}

.ms-metric__value {
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
  line-height: 1.2;
}

.ms-metric__label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 0;
  line-height: 1.4;
}

.ms-obs-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  background: linear-gradient(145deg, #f0f4ff, #f8faff);
  border: 1px solid rgba(48, 120, 251, 0.1);
  border-radius: 16px;
  padding: 32px;
  align-items: start;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .ms-obs-section {
    grid-template-columns: 1fr;
  }
}

.ms-obs-content h4 {
  font-size: 22px;
  margin-bottom: 12px;
  color: #17161a;
}
.ms-obs-content p {
  font-size: 15px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 20px;
}

.ms-obs-items {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ms-obs-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  font-size: 14px;
  color: #333;
  transition: transform 0.2s ease;
}
.ms-obs-item .bi {
  font-size: 20px;
  color: #2563eb;
  flex-shrink: 0;
}
.ms-obs-item:hover {
  transform: translateX(4px);
}

.ms-obs-visual .b-gallery img {
  border-radius: 10px;
  width: 100%;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.ms-lessons {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}
@media (max-width: 767px) {
  .ms-lessons {
    grid-template-columns: 1fr;
  }
}

.ms-lesson {
  display: flex;
  gap: 14px;
  padding: 20px;
  background: #f8faff;
  border-radius: 12px;
  border: 1px solid rgba(48, 120, 251, 0.08);
  transition: transform 0.25s ease;
}
.ms-lesson:hover {
  transform: translateY(-3px);
}

.ms-lesson__num {
  font-size: 32px;
  font-weight: 800;
  color: rgba(48, 120, 251, 0.2);
  line-height: 1;
  flex-shrink: 0;
}

.ms-lesson p {
  font-size: 14px;
  line-height: 1.65;
  color: #444;
  margin-bottom: 0;
}
.agile-playboard .agile-playboard__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
  margin-top: 28px;
  align-items: start;
}
@media (max-width: 991px) {
  .agile-playboard .agile-playboard__grid {
    grid-template-columns: 1fr;
  }
}
.agile-playboard .agile-playboard__cards {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.agile-playboard .agile-playboard__card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 14px;
  align-items: start;
  padding: 16px 18px;
  background: #fff;
  border-radius: 14px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
  cursor: pointer;
  text-align: left;
  transition: all 0.25s ease;
}
.agile-playboard .agile-playboard__card:hover {
  border-color: rgba(48, 120, 251, 0.35);
  transform: translateX(4px);
}
.agile-playboard .agile-playboard__card--active {
  border: 1px solid rgba(48, 120, 251, 0.55);
  box-shadow: 0 10px 28px rgba(48, 120, 251, 0.12);
  transform: translateX(6px);
}
.agile-playboard .agile-playboard__card-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 20px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}
.agile-playboard .agile-playboard__card-content :is(h3, h4) {
  margin: 0 0 6px;
  font-size: 16px;
  color: #111827;
}
.agile-playboard .agile-playboard__card-content p {
  margin: 0 0 8px;
  font-size: 14px;
  color: #4b5563;
  line-height: 1.55;
}
.agile-playboard .agile-playboard__card-header {
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.agile-playboard .agile-playboard__card-number {
  font-weight: 800;
  color: rgba(0, 0, 0, 0.35);
  font-size: 18px;
}
.agile-playboard .agile-playboard__detail {
  background: #fff;
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.08);
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: sticky;
  top: 100px;
  max-width: 100%;
}
@media (max-width: 991px) {
  .agile-playboard .agile-playboard__detail {
    position: static;
  }
}
.agile-playboard .agile-playboard__detail-header {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
}
.agile-playboard .agile-playboard__detail-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 24px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}
.agile-playboard .agile-playboard__detail-number {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  color: #6b7280;
}
.agile-playboard .agile-playboard__detail :is(h3, h4) {
  margin: 4px 0 6px;
  font-size: 20px;
  color: #0f172a;
}
.agile-playboard .agile-playboard__detail-desc {
  margin: 0;
  color: #475569;
  line-height: 1.65;
  font-size: 15px;
}
.agile-playboard .agile-playboard__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  color: #2563eb;
  text-decoration: none;
  margin-top: 4px;
}
.agile-playboard .agile-playboard__cta:hover {
  gap: 12px;
  color: color-mix(in srgb, #2563eb 80%, #000);
}

.contact-premium .container {
  position: relative;
}

.project-slider .swiper .swiper-slide {
  height: auto;
}
.project-slider .single-item {
  height: 100%;
  min-height: 340px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .project-slider .single-item {
    min-height: 300px;
  }
}
@media (max-width: 767px) {
  .project-slider .single-item {
    min-height: 280px;
  }
}
.project-slider .single-item .item-img {
  height: 100%;
}
.project-slider .single-item .item-img span {
  display: block;
  height: 100%;
}
.project-slider .single-item .item-img span img,
.project-slider .single-item .item-img a img {
  height: 100%;
  object-fit: cover;
}

.about-section-nav {
  position: sticky;
  top: 70px;
  z-index: 90;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  padding: 0;
  transition: box-shadow 0.3s;
}
.about-section-nav:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}
.about-section-nav::before, .about-section-nav::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 20px;
  z-index: 2;
  pointer-events: none;
}
.about-section-nav::before {
  left: 0;
  background: linear-gradient(to right, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0));
}
.about-section-nav::after {
  right: 0;
  background: linear-gradient(to left, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0));
}
.about-section-nav .container {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.about-section-nav .container::-webkit-scrollbar {
  display: none;
}
.about-section-nav__list {
  display: flex;
  align-items: center;
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0;
  white-space: nowrap;
}
.about-section-nav__list li {
  flex-shrink: 0;
}
.about-section-nav__list a {
  display: block;
  padding: 14px 20px;
  font-size: 14px;
  font-weight: 600;
  color: #6b7280;
  text-decoration: none;
  position: relative;
  transition: color 0.2s;
}
.about-section-nav__list a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 20px;
  right: 20px;
  height: 2.5px;
  border-radius: 2px;
  background: transparent;
  transition: background 0.25s;
}
.about-section-nav__list a:hover {
  color: #111827;
}
@media (max-width: 767px) {
  .about-section-nav {
    top: 70px;
  }
  .about-section-nav::before, .about-section-nav::after {
    display: none;
  }
  .about-section-nav .container {
    overflow-x: visible;
  }
  .about-section-nav__list {
    white-space: normal;
    flex-wrap: wrap;
    row-gap: 6px;
  }
  .about-section-nav__list li {
    flex: 1 1 auto;
    min-width: 44%;
  }
  .about-section-nav__list a {
    padding: 12px 16px;
    font-size: 13px;
  }
}

.mega-menu .mega-menu-content {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px) saturate(150%);
  -webkit-backdrop-filter: blur(10px) saturate(150%);
  border: 1px solid rgba(16, 24, 40, 0.08);
}

.mega-menu .mega-menu-cat-item:focus-visible,
.mega-menu .mega-menu-details ul li a:focus-visible {
  outline: 2px solid #2563eb;
  outline-offset: -2px;
  border-radius: 6px;
}

.engagement-model-page {
  position: relative;
  background: radial-gradient(ellipse at 0% 0%, rgba(37, 99, 235, 0.06), transparent 55%), radial-gradient(ellipse at 100% 100%, rgba(91, 33, 182, 0.05), transparent 55%), #ffffff;
}
.engagement-model-page .line_wrap {
  border-left-color: rgba(37, 99, 235, 0.08);
}
.engagement-model-page .line_wrap:before {
  height: 160px;
  background-image: linear-gradient(0deg, rgba(37, 99, 235, 0.55), rgba(91, 33, 182, 0.25) 60%, transparent);
  box-shadow: 0 0 12px rgba(37, 99, 235, 0.35);
}
.engagement-model-page .line_item {
  border-right-color: rgba(37, 99, 235, 0.08);
}
.engagement-model-page .line_item:before {
  height: 140px;
  box-shadow: 0 0 8px rgba(37, 99, 235, 0.25);
}
.engagement-model-page .line_item:nth-child(odd):before {
  background-image: linear-gradient(0deg, transparent, rgba(91, 33, 182, 0.18) 40%, rgba(37, 99, 235, 0.45));
}
.engagement-model-page .line_item:nth-child(even):before {
  background-image: linear-gradient(0deg, rgba(37, 99, 235, 0.45), rgba(91, 33, 182, 0.18) 60%, transparent);
}

.services-area .swiper .swiper-slide {
  height: auto;
}
.services-area .single-service {
  height: 100%;
  display: flex;
  flex-direction: column;
}
.services-area .single-service p {
  flex: 1;
}
.services-area .single-service .icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #2563eb;
}
.services-area .single-service .icon i {
  color: #ffffff !important;
  line-height: 1;
  opacity: 1;
  font-family: "bootstrap-icons" !important;
  font-style: normal;
  font-weight: 400;
  display: inline-block;
}

.apps-we-build--mobile .single-service h4 {
  min-height: 58px;
  font-size: 24px;
}
.apps-we-build--mobile .single-service p {
  display: -webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.apps-we-build--mobile .single-service .icon i {
  font-size: 24px;
}

.company-since {
  border: 1px solid rgba(48, 120, 251, 0.35);
  border-radius: 18px;
  box-shadow: 0 10px 26px rgba(12, 32, 72, 0.08);
}
.company-since::before {
  display: none;
}

@media (prefers-reduced-motion: reduce) {
  .agile-playboard__card,
  .agile-playboard__detail {
    transition: none !important;
  }
}
.contact-v2 .cv2-hero {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 32px;
  align-items: center;
  padding: 48px 44px;
  margin-bottom: 48px;
  border-radius: 24px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #0a0f1a 0%, #111827 50%, #0f172a 100%);
  border: 1px solid rgba(255, 255, 255, 0.06);
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .contact-v2 .cv2-hero {
    grid-template-columns: 1fr;
    padding: 36px 28px;
    gap: 28px;
  }
}
@media (max-width: 767px) {
  .contact-v2 .cv2-hero {
    grid-template-columns: 1fr !important;
    padding: 28px 20px;
    margin-bottom: 32px;
    gap: 24px;
  }
}
.contact-v2 .cv2-hero__bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 600px 400px at 10% 20%, rgba(48, 120, 251, 0.18), transparent), radial-gradient(ellipse 400px 300px at 90% 80%, rgba(16, 185, 129, 0.12), transparent), radial-gradient(ellipse 300px 200px at 50% 0%, rgba(139, 92, 246, 0.08), transparent);
  pointer-events: none;
}
.contact-v2 .cv2-hero__content {
  position: relative;
  z-index: 1;
}
.contact-v2 .cv2-hero__eyebrow {
  display: inline-block;
  color: #60a5fa;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 12px;
  padding: 4px 12px;
  background: rgba(96, 165, 250, 0.1);
  border-radius: 20px;
  border: 1px solid rgba(96, 165, 250, 0.15);
}
.contact-v2 .cv2-hero__title {
  color: #fff;
  font-size: 38px;
  font-weight: 800;
  line-height: 1.2;
  margin: 0 0 14px;
}
@media (max-width: 767px) {
  .contact-v2 .cv2-hero__title {
    font-size: 28px;
  }
}
.contact-v2 .cv2-hero__subtitle {
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
  line-height: 1.6;
  max-width: 520px;
  margin: 0;
}
.contact-v2 .cv2-hero__stats {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.contact-v2 .cv2-hero__stat {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
  transition: background 0.2s, border-color 0.2s;
  min-width: 0;
}
.contact-v2 .cv2-hero__stat:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.12);
}
.contact-v2 .cv2-hero__stat > div:not(.cv2-hero__stat-icon) {
  min-width: 0;
  overflow-wrap: break-word;
}
.contact-v2 .cv2-hero__stat strong {
  display: block;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
}
.contact-v2 .cv2-hero__stat span {
  display: block;
  color: rgba(255, 255, 255, 0.55);
  font-size: 12px;
  margin-top: 2px;
}
.contact-v2 .cv2-hero__stat-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #fff;
  background: linear-gradient(135deg, rgba(48, 120, 251, 0.3), rgba(48, 120, 251, 0.15));
  border: 1px solid rgba(48, 120, 251, 0.2);
  flex-shrink: 0;
}
.contact-v2 .cv2-progress {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 40px;
  padding: 0 20px;
}
@media (max-width: 767px) {
  .contact-v2 .cv2-progress {
    margin-bottom: 28px;
  }
}
.contact-v2 .cv2-progress__step {
  display: flex;
  align-items: center;
  gap: 10px;
  opacity: 0.45;
  transition: opacity 0.3s;
}
.contact-v2 .cv2-progress__step span {
  font-size: 13px;
  font-weight: 600;
  color: #4b5563;
  white-space: nowrap;
}
.contact-v2 .cv2-progress__step--active {
  opacity: 1;
}
.contact-v2 .cv2-progress__step--active .cv2-progress__num {
  background: #2563eb;
  color: #fff;
  border-color: #2563eb;
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.15);
}
.contact-v2 .cv2-progress__step--active span {
  color: #111827;
}
.contact-v2 .cv2-progress__step--done {
  opacity: 1;
}
.contact-v2 .cv2-progress__step--done .cv2-progress__num {
  background: #10b981;
  color: #fff;
  border-color: #10b981;
}
.contact-v2 .cv2-progress__num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  background: #f3f4f6;
  color: #9ca3af;
  border: 2px solid #e5e7eb;
  transition: all 0.3s;
  flex-shrink: 0;
}
.contact-v2 .cv2-progress__line {
  width: 80px;
  height: 3px;
  background: #e5e7eb;
  border-radius: 3px;
  margin: 0 16px;
  overflow: hidden;
}
@media (max-width: 767px) {
  .contact-v2 .cv2-progress__line {
    width: 48px;
    margin: 0 10px;
  }
}
.contact-v2 .cv2-progress__line-fill {
  width: 0;
  height: 100%;
  background: #2563eb;
  border-radius: 3px;
  transition: width 0.5s ease;
}
.contact-v2 .cv2-progress__line-fill--active {
  width: 100%;
}
.contact-v2 .cv2-services {
  margin-bottom: 20px;
  padding: 36px 32px 32px;
  background: radial-gradient(ellipse 500px 300px at 100% 0%, rgba(48, 120, 251, 0.04), transparent), radial-gradient(ellipse 400px 250px at 0% 100%, rgba(16, 185, 129, 0.03), transparent), #f8fafc;
  border: 1px solid #edf0f7;
  border-radius: 20px;
}
@media (max-width: 767px) {
  .contact-v2 .cv2-services {
    padding: 24px 18px 22px;
    border-radius: 16px;
  }
}
.contact-v2 .cv2-services__header {
  text-align: center;
  margin-bottom: 28px;
}
.contact-v2 .cv2-services__header h3 {
  font-size: 22px;
  font-weight: 800;
  color: #111827;
  margin: 0 0 6px;
}
.contact-v2 .cv2-services__header p {
  font-size: 14px;
  color: #6b7280;
  margin: 0;
}
@media (max-width: 767px) {
  .contact-v2 .cv2-services__header {
    margin-bottom: 20px;
  }
  .contact-v2 .cv2-services__header h3 {
    font-size: 19px;
  }
}
.contact-v2 .cv2-services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
}
@media (max-width: 767px) {
  .contact-v2 .cv2-services__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .contact-v2 .cv2-services__grid .cv2-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 14px 10px;
    gap: 8px;
  }
  .contact-v2 .cv2-services__grid .cv2-card__icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    font-size: 16px;
  }
  .contact-v2 .cv2-services__grid .cv2-card__text strong {
    font-size: 13px;
  }
  .contact-v2 .cv2-services__grid .cv2-card__text span {
    display: none;
  }
  .contact-v2 .cv2-services__grid .cv2-card__radio {
    display: none;
  }
}
.contact-v2 .cv2-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  background: #fff;
  border: 2px solid #e8ecf4;
  border-radius: 16px;
  cursor: pointer;
  position: relative;
  transition: all 0.25s ease;
  text-align: left;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}
.contact-v2 .cv2-card:hover {
  border-color: #c7d2e8;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.08);
}
.contact-v2 .cv2-card:focus-visible {
  outline: 2px solid #2563eb;
  outline-offset: 2px;
}
.contact-v2 .cv2-card--selected {
  border-color: #2563eb;
  background: rgba(37, 99, 235, 0.02);
  box-shadow: 0 4px 20px rgba(37, 99, 235, 0.12);
}
.contact-v2 .cv2-card--selected:hover {
  border-color: #2563eb;
}
.contact-v2 .cv2-card--other {
  border-style: dashed;
}
.contact-v2 .cv2-card--other:hover, .contact-v2 .cv2-card--other.cv2-card--selected {
  border-style: dashed;
}
.contact-v2 .cv2-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #fff;
  flex-shrink: 0;
  background: linear-gradient(135deg, #2563eb, rgb(17.7142857143, 72.6285714286, 193.0857142857));
}
.contact-v2 .cv2-card--other .cv2-card__icon {
  background: linear-gradient(135deg, #6b7280, #4b5563);
}
.contact-v2 .cv2-card__text {
  flex: 1;
  min-width: 0;
}
.contact-v2 .cv2-card__text strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: #111827;
  line-height: 1.3;
}
.contact-v2 .cv2-card__text span {
  display: block;
  font-size: 12px;
  color: #6b7280;
  margin-top: 2px;
}
@media (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px) {
  .contact-v2 .cv2-card__text span {
    font-size: 13px;
  }
}
.contact-v2 .cv2-card__radio {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 2px solid #d1d5db;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}
.contact-v2 .cv2-card__radio--checked {
  background: #2563eb;
  border-color: #2563eb;
  color: #fff;
  font-size: 12px;
}
.contact-v2 .cv2-form-wrap {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.5s ease, opacity 0.4s ease;
}
.contact-v2 .cv2-form-wrap--visible {
  max-height: 1400px;
  opacity: 1;
  margin-top: 40px;
}
@media (max-width: 767px) {
  .contact-v2 .cv2-form-wrap--visible {
    margin-top: 28px;
  }
}
.contact-v2 .cv2-form-card {
  background: #fff;
  border: 1px solid #edf0f7;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
}
@media (max-width: 767px) {
  .contact-v2 .cv2-form-card {
    padding: 24px 20px;
    border-radius: 16px;
  }
}
.contact-v2 .cv2-form-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
  padding-bottom: 20px;
  border-bottom: 1px solid #f3f4f6;
}
@media (max-width: 767px) {
  .contact-v2 .cv2-form-card__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}
.contact-v2 .cv2-selected-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(37, 99, 235, 0.06);
  color: #2563eb;
  border-radius: 24px;
  font-size: 14px;
  font-weight: 600;
  border: 1px solid rgba(37, 99, 235, 0.12);
}
.contact-v2 .cv2-selected-pill i {
  font-size: 16px;
}
.contact-v2 .cv2-change-btn {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: none;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 6px 14px;
  color: #4b5563;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
}
.contact-v2 .cv2-change-btn:hover {
  border-color: #9ca3af;
  color: #111827;
  background: #f9fafb;
}
.contact-v2 .cv2-change-btn i {
  font-size: 18px;
}
.contact-v2 .cv2-other-dropdown {
  margin-bottom: 28px;
}
.contact-v2 .cv2-other-dropdown label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #374151;
  margin-bottom: 8px;
}
.contact-v2 .cv2-other-dropdown select {
  width: 100%;
  max-width: 360px;
  height: 48px;
  padding: 0 40px 0 14px;
  border: 1.5px solid #e5e7eb;
  border-radius: 12px;
  font-size: 15px;
  color: #111827;
  background-color: #fff;
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236b7280' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.contact-v2 .cv2-other-dropdown select:focus {
  border-color: #2563eb;
  outline: none;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}
.contact-v2 .cv2-form__fields {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 20px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .contact-v2 .cv2-form__fields {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .contact-v2 .cv2-form__fields {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}
.contact-v2 .cv2-form__field label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #374151;
  margin-bottom: 6px;
}
.contact-v2 .cv2-form__field input,
.contact-v2 .cv2-form__field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid #e5e7eb;
  border-radius: 12px;
  font-size: 16px;
  color: #111827;
  background: #fff;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.contact-v2 .cv2-form__field input::placeholder,
.contact-v2 .cv2-form__field textarea::placeholder {
  color: #9ca3af;
}
.contact-v2 .cv2-form__field input:focus,
.contact-v2 .cv2-form__field textarea:focus {
  border-color: #2563eb;
  outline: none;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}
.contact-v2 .cv2-form__field input {
  height: 48px;
}
.contact-v2 .cv2-form__field textarea {
  min-height: 130px;
  resize: vertical;
}
@media (max-width: 767px) {
  .contact-v2 .cv2-form__field textarea {
    min-height: 100px;
  }
}
.contact-v2 .cv2-form__field--full {
  margin-bottom: 24px;
}
.contact-v2 .cv2-optional {
  color: #9ca3af;
  font-weight: 400;
}
.contact-v2 .cv2-form__error {
  color: #ef4444;
  font-size: 14px;
  margin-top: 6px;
  display: flex;
  align-items: center;
  gap: 4px;
}
.contact-v2 .cv2-form__actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .contact-v2 .cv2-form__actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
}
.contact-v2 .cv2-submit {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: #2563eb;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  border: none;
  border-radius: 14px;
  cursor: pointer;
  transition: all 0.25s;
}
.contact-v2 .cv2-submit:hover:not(:disabled) {
  background: rgb(20.2857142857, 83.1714285714, 221.1142857143);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.3);
}
.contact-v2 .cv2-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.contact-v2 .cv2-submit:focus-visible {
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.3);
}
.contact-v2 .cv2-submit i {
  font-size: 18px;
  transition: transform 0.2s;
}
.contact-v2 .cv2-submit:hover:not(:disabled) i {
  transform: translateX(3px);
}
.contact-v2 .cv2-submit__spinner {
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: cv2Spin 0.6s linear infinite;
}
@keyframes cv2Spin {
  to {
    transform: rotate(360deg);
  }
}
.contact-v2 .cv2-form__hint {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: #9ca3af;
}
.contact-v2 .cv2-form__hint i {
  font-size: 14px;
}
.contact-v2 .cv2-bottom {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 32px;
  margin-top: 64px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .contact-v2 .cv2-bottom {
    grid-template-columns: 1fr;
    margin-top: 48px;
  }
}
@media (max-width: 767px) {
  .contact-v2 .cv2-bottom {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 32px;
  }
}
.contact-v2 .cv2-offices {
  padding: 32px;
  background: #fff;
  border: 1px solid #edf0f7;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
}
@media (max-width: 767px) {
  .contact-v2 .cv2-offices {
    padding: 24px 20px;
  }
}
.contact-v2 .cv2-offices__header {
  margin-bottom: 20px;
}
.contact-v2 .cv2-offices__header span {
  display: block;
  color: #2563eb;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.contact-v2 .cv2-offices__header h2 {
  font-size: 24px;
  font-weight: 800;
  color: #111827;
  margin: 0;
}
.contact-v2 .cv2-social {
  list-style: none;
  display: flex;
  gap: 10px;
  padding: 0;
  margin: 0 0 24px;
}
.contact-v2 .cv2-social a {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f3f4f6;
  color: #4b5563;
  font-size: 16px;
  transition: all 0.2s;
}
.contact-v2 .cv2-social a:hover {
  background: #2563eb;
  color: #fff;
  transform: translateY(-2px);
}
.contact-v2 .cv2-info-cards {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.contact-v2 .cv2-info-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px;
  border-radius: 12px;
  transition: background 0.2s;
}
.contact-v2 .cv2-info-card:hover {
  background: #f9fafb;
}
.contact-v2 .cv2-info-card h3 {
  font-size: 14px;
  font-weight: 700;
  color: #111827;
  margin: 0 0 3px;
}
.contact-v2 .cv2-info-card p,
.contact-v2 .cv2-info-card a {
  font-size: 13px;
  color: #6b7280;
  margin: 0;
  line-height: 1.5;
}
.contact-v2 .cv2-info-card a:hover {
  color: #2563eb;
}
.contact-v2 .cv2-info-card__icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(37, 99, 235, 0.08);
  color: #2563eb;
  font-size: 16px;
  flex-shrink: 0;
}
.contact-v2 .cv2-map {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid #edf0f7;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
  min-height: 400px;
  max-width: 100%;
  box-sizing: border-box;
  background: #1a1a2e;
}
@media (max-width: 767px) {
  .contact-v2 .cv2-map {
    min-height: 280px;
    border-radius: 12px;
  }
}
.contact-v2 .cv2-map iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 400px;
  border: 0;
}
@media (max-width: 767px) {
  .contact-v2 .cv2-map iframe {
    min-height: 280px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .contact-v2 .cv2-card,
  .contact-v2 .cv2-submit,
  .contact-v2 .cv2-form-wrap,
  .contact-v2 .cv2-progress__num,
  .contact-v2 .cv2-progress__line-fill {
    transition: none !important;
  }
  .contact-v2 .cv2-card:hover {
    transform: none;
  }
  .contact-v2 .cv2-submit:hover {
    transform: none;
  }
}
.our-service-model .price-box-wrap {
  width: 100%;
}
.our-service-model .price-box--engagement {
  height: 100%;
  text-align: left;
  padding: 30px 24px 24px;
  border: 1px solid #e8edf7;
  box-shadow: 0 12px 30px rgba(20, 37, 70, 0.08);
}
.our-service-model .price-box--engagement h3 {
  font-size: 35px;
  margin-bottom: 22px;
  line-height: 1.05;
  text-wrap: balance;
}
.our-service-model .price-box--engagement .item-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 12px;
  line-height: 1.5;
}

.sidebar-banner--imageless {
  min-height: 0;
  background: #000;
}

.sidebar-banner--imageless:before {
  display: none;
}

.sidebar-banner--utility .banner-inner .sidebar-banner__phones {
  margin-top: 10px;
  margin-bottom: 8px;
  display: grid;
  gap: 2px;
}
.sidebar-banner--utility .banner-inner .sidebar-banner__phones a {
  position: static;
  transform: none;
  width: auto;
  text-align: left;
  font-size: 20px;
  line-height: 1.35;
  font-weight: 700;
  color: #ffffff !important;
}

.sidebar-widget .services-sidebar__intro {
  margin: 0 0 8px;
  font-size: 13px;
  line-height: 1.5;
  color: #5b6575;
}

.services-sidebar-link {
  padding: 8px 10px;
  border-radius: 10px;
  border: 1px solid #e6edf9;
  background: #f9fbff;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.services-sidebar-link:hover {
  background: #fff;
  border-color: rgba(48, 120, 251, 0.35);
  transform: translateY(-1px);
}

.subscribe-cnt__points {
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
  display: grid;
  gap: 8px;
}
.subscribe-cnt__points li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
  line-height: 1.5;
}
.subscribe-cnt__points i {
  color: #80d0ff;
  font-size: 14px;
  line-height: 1;
}

.achievements-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 24px;
}
@media (min-width: 768px) {
  .achievements-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 992px) {
  .achievements-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.achievements-section .achievements-card-link {
  display: block;
  overflow: hidden;
  min-width: 0;
  max-width: 100%;
}

.achievements-section .achievements-card {
  width: 100%;
  height: 100%;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.2);
}

.achievements-section .achievements-card-img {
  overflow: hidden;
}

.achievements-section .achievements-card-img img {
  width: 100%;
  height: auto;
  display: block;
}

footer .number,
footer .address {
  align-items: flex-start;
}

footer .phone a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  line-height: 1.4;
  padding: 6px 0;
}

footer .address p {
  max-width: 290px;
  line-height: 1.55;
}

.agile-playboard.agile-playboard--v2 .agile-playboard__navigator {
  margin-top: 14px;
  display: grid;
  gap: 10px;
  border: 1px solid rgba(148, 163, 184, 0.25);
  border-radius: 14px;
  background: #ffffff;
  padding: 12px 14px;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.06);
}
.agile-playboard.agile-playboard--v2 .agile-playboard__summary {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.agile-playboard.agile-playboard--v2 .agile-playboard__count {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #1d4ed8;
  background: rgba(48, 120, 251, 0.1);
}
.agile-playboard.agile-playboard--v2 .agile-playboard__grid {
  gap: 18px;
  margin-top: 18px;
}
.agile-playboard.agile-playboard--v2 .agile-playboard__cards {
  position: relative;
  gap: 10px;
}
.agile-playboard.agile-playboard--v2 .agile-playboard__cards:before {
  content: "";
  position: absolute;
  left: 21px;
  top: 14px;
  bottom: 14px;
  width: 2px;
  background: linear-gradient(180deg, rgba(48, 120, 251, 0.35), rgba(15, 23, 42, 0.08));
  z-index: 0;
}
.agile-playboard.agile-playboard--v2 .agile-playboard__card {
  position: relative;
  z-index: 1;
  border-radius: 12px;
  grid-template-columns: auto 1fr;
  gap: 12px;
  padding: 14px 16px;
}
.agile-playboard.agile-playboard--v2 .agile-playboard__card--active {
  transform: translateX(2px);
}
.agile-playboard.agile-playboard--v2 .agile-playboard__detail {
  border: 1px solid rgba(48, 120, 251, 0.2);
  box-shadow: 0 18px 40px rgba(20, 37, 70, 0.1);
  top: 96px;
}
.agile-playboard.agile-playboard--v2 .agile-playboard__detail-eyebrow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #64748b;
  padding-bottom: 8px;
  border-bottom: 1px dashed rgba(148, 163, 184, 0.45);
}
.agile-playboard.agile-playboard--v2 .agile-playboard__detail-eyebrow strong {
  color: #0f172a;
  letter-spacing: 0.02em;
  font-size: 12px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .agile-playboard.agile-playboard--v2 .agile-playboard__cards:before {
    display: none;
  }
}

.application-modernization-page .service-details-content > img {
  aspect-ratio: 16/9;
  max-height: none;
  border-radius: 14px;
  box-shadow: 0 14px 36px rgba(15, 23, 42, 0.14);
}
.application-modernization-page .project-slider .single-item .item-img {
  aspect-ratio: 16/10;
  overflow: hidden;
  border-radius: 12px;
}
.application-modernization-page .project-slider .single-item .item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.application-modernization-page .service-details-item .single-details-thumb {
  width: 100%;
  aspect-ratio: 16/10;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.25);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
  background: #f8fafc;
}
.application-modernization-page .service-details-item .single-details-thumb img {
  width: 100%;
  height: 100%;
  max-height: none;
  object-fit: cover;
  object-position: center;
  transition: transform 0.35s ease;
}
.application-modernization-page .service-details-item:hover .single-details-thumb img {
  transform: scale(1.02);
}
.application-modernization-page .blog-grid .row > [class*=col-] {
  display: flex;
}
.application-modernization-page .blog-grid .single-blog {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.application-modernization-page .blog-grid .single-blog .blog-thumb {
  aspect-ratio: 16/10;
}
.application-modernization-page .blog-grid .single-blog .blog-thumb a {
  display: block;
  width: 100%;
  height: 100%;
}
.application-modernization-page .blog-grid .single-blog .blog-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.application-modernization-page .blog-grid .single-blog .blog-inner {
  flex: 1;
}

.reading-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: rgba(15, 23, 42, 0.06);
  z-index: 9999;
  pointer-events: none;
}
.reading-progress__bar {
  height: 100%;
  background: linear-gradient(90deg, #2563eb, #6366f1);
  transition: width 0.1s ease-out;
}

.success-story-custom-page .blog-details-content h3 {
  font-size: 28px;
  line-height: 1.3;
  letter-spacing: -0.02em;
  max-width: 42em;
}
@media (max-width: 767px) {
  .success-story-custom-page .blog-details-content h3 {
    font-size: 22px;
  }
}
.success-story-custom-page .blog-details-content h4.mt-5 {
  margin-top: 34px !important;
  margin-bottom: 14px !important;
  font-size: 22px;
  letter-spacing: -0.01em;
}
.success-story-custom-page .blog-details-content p {
  line-height: 1.78;
}
.success-story-custom-page .blog-details-content .special {
  font-size: 17px;
  line-height: 1.8;
}
.success-story-custom-page .blog-details-content .special p:first-of-type span {
  font-size: 3.2em;
  line-height: 0.9;
  float: left;
  margin-right: 6px;
  color: #2563eb;
}
.success-story-custom-page .details-thumb {
  margin-bottom: 22px;
}
.success-story-custom-page .details-thumb img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  object-position: center;
  border-radius: 12px;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.12);
}
.success-story-custom-page .success-story-hero-stat {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 24px;
  margin: 24px 0 28px;
  background: linear-gradient(135deg, rgba(48, 120, 251, 0.08) 0%, rgba(99, 102, 241, 0.06) 100%);
  border: 1px solid rgba(48, 120, 251, 0.18);
  border-radius: 12px;
  font-weight: 600;
}
.success-story-custom-page .success-story-hero-stat .hero-stat-before {
  color: #64748b;
  text-decoration: line-through;
  font-size: 18px;
}
.success-story-custom-page .success-story-hero-stat .hero-stat-arrow {
  color: #2563eb;
  font-size: 20px;
}
.success-story-custom-page .success-story-hero-stat .hero-stat-after {
  color: #2563eb;
  font-size: 20px;
}
.success-story-custom-page .success-story-hero-stat .hero-stat-label {
  margin-left: 8px;
  font-size: 14px;
  font-weight: 500;
  color: #64748b;
}
.success-story-custom-page .success-story-overview-card {
  background: #f8fafc;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 14px;
  padding: 24px 28px 20px;
  margin-bottom: 8px;
}
.success-story-custom-page .success-story-overview-card .overview-dl {
  margin: 0;
  display: grid;
  gap: 14px 24px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}
.success-story-custom-page .success-story-overview-card .overview-dl > div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.success-story-custom-page .success-story-overview-card .overview-dl dt {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #2563eb;
  margin: 0;
}
.success-story-custom-page .success-story-overview-card .overview-dl dd {
  margin: 0;
  font-size: 15px;
  line-height: 1.55;
  color: #334155;
}
.success-story-custom-page .success-story-section {
  padding: 28px 0 8px;
  margin: 0 -20px;
  padding-left: 20px;
  padding-right: 20px;
  border-radius: 12px;
}
.success-story-custom-page .success-story-section--approach {
  background: rgba(248, 250, 252, 0.8);
  margin-top: 12px;
  padding: 24px 20px 12px;
}
.success-story-custom-page .success-story-section--results {
  background: rgba(241, 245, 249, 0.6);
  margin-top: 12px;
  padding: 24px 20px 12px;
}
.success-story-custom-page .bullet-points-3 {
  border-left: 4px solid rgba(48, 120, 251, 0.35);
  padding-left: 20px;
  margin-left: 4px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 0 10px 10px 0;
  padding: 20px 20px 12px 24px;
  margin-bottom: 20px !important;
}
.success-story-custom-page .bullet-points-3 h5 {
  display: flex;
  align-items: center;
  gap: 10px;
}
.success-story-custom-page .success-story-key-takeaway .takeaway-quote {
  margin: 24px 0 0;
  padding: 20px 24px;
  background: linear-gradient(135deg, rgba(48, 120, 251, 0.06) 0%, rgba(139, 92, 246, 0.04) 100%);
  border-left: 4px solid #2563eb;
  border-radius: 0 12px 12px 0;
  font-size: 17px;
  font-style: italic;
  line-height: 1.6;
  color: #334155;
  border-right: none;
  border-top: none;
  border-bottom: none;
}
.success-story-custom-page .success-story-cta {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%) !important;
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 36px 32px !important;
}
.success-story-custom-page .success-story-cta .single-details h3,
.success-story-custom-page .success-story-cta .single-details h4 {
  color: #fff !important;
}
.success-story-custom-page .success-story-cta .single-details p {
  color: rgba(255, 255, 255, 0.75) !important;
}
.success-story-custom-page .success-story-cta .cmn-btn a {
  background: #2563eb !important;
  border-color: #2563eb !important;
}
.success-story-custom-page .blog-gallery {
  margin: 20px 0 12px;
  gap: 16px;
}
.success-story-custom-page .blog-gallery .b-gallery {
  width: calc(50% - 8px);
  margin: 0 !important;
}
.success-story-custom-page .blog-gallery .b-gallery img {
  aspect-ratio: 16/10;
  object-fit: cover;
  object-position: center;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.1);
}
.success-story-custom-page .gallery-caption {
  margin-top: 12px;
  font-size: 14px;
  color: #64748b;
  font-style: italic;
  text-align: center;
}
.success-story-custom-page .results-grid--cards {
  gap: 20px;
  grid-template-columns: repeat(3, 1fr);
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .success-story-custom-page .results-grid--cards {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .success-story-custom-page .results-grid--cards {
    grid-template-columns: 1fr;
  }
}
.success-story-custom-page .results-grid--cards .results-col {
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 14px;
  padding: 24px 22px;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.04);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.success-story-custom-page .results-grid--cards .results-col:hover {
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
}
.success-story-custom-page .results-grid--cards .results-col--operational .results-label {
  color: #2563eb;
}
.success-story-custom-page .results-grid--cards .results-col--business .results-label {
  color: #7c3aed;
}
.success-story-custom-page .results-grid--cards .results-col--adoption .results-label {
  color: #059669;
}
.success-story-custom-page .results-grid--cards .results-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 14px;
}
.success-story-custom-page .results-grid--cards .results-label i {
  font-size: 20px;
  opacity: 0.9;
}
.success-story-custom-page .results-grid {
  margin-bottom: 26px !important;
}
.success-story-custom-page .tag-share {
  margin-top: 10px;
}
.success-story-custom-page .author-date.layout2 {
  margin-bottom: 20px;
  font-size: 15px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .success-story-custom-page .success-story-section {
    margin-left: 0;
    margin-right: 0;
    padding-left: 16px;
    padding-right: 16px;
  }
  .success-story-custom-page .success-story-overview-card .overview-dl {
    grid-template-columns: 1fr;
  }
  .success-story-custom-page .success-story-hero-stat {
    flex-wrap: wrap;
    padding: 12px 18px;
  }
  .success-story-custom-page .blog-gallery {
    display: grid;
    grid-template-columns: 1fr;
  }
  .success-story-custom-page .blog-gallery .b-gallery {
    width: 100%;
  }
}

.success-story-data-engineering-page .blog-details-content h3 {
  font-size: 28px;
  line-height: 1.3;
  letter-spacing: -0.02em;
  max-width: 42em;
}
@media (max-width: 767px) {
  .success-story-data-engineering-page .blog-details-content h3 {
    font-size: 22px;
  }
}
.success-story-data-engineering-page .blog-details-content h4.mt-5 {
  margin-top: 34px !important;
  margin-bottom: 14px !important;
  font-size: 22px;
  letter-spacing: -0.01em;
}
.success-story-data-engineering-page .blog-details-content p {
  line-height: 1.78;
}
.success-story-data-engineering-page .blog-details-content .special {
  font-size: 17px;
  line-height: 1.8;
}
.success-story-data-engineering-page .blog-details-content .special p:first-of-type span {
  font-size: 3.2em;
  line-height: 0.9;
  float: left;
  margin-right: 6px;
  color: #2563eb;
}
.success-story-data-engineering-page .details-thumb {
  margin-bottom: 22px;
}
.success-story-data-engineering-page .details-thumb img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  object-position: center;
  border-radius: 12px;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.12);
}
.success-story-data-engineering-page .success-story-hero-stat {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 24px;
  margin: 24px 0 28px;
  background: linear-gradient(135deg, rgba(48, 120, 251, 0.08) 0%, rgba(99, 102, 241, 0.06) 100%);
  border: 1px solid rgba(48, 120, 251, 0.18);
  border-radius: 12px;
  font-weight: 600;
}
.success-story-data-engineering-page .success-story-hero-stat .hero-stat-before {
  color: #64748b;
  text-decoration: line-through;
  font-size: 18px;
}
.success-story-data-engineering-page .success-story-hero-stat .hero-stat-arrow {
  color: #2563eb;
  font-size: 20px;
}
.success-story-data-engineering-page .success-story-hero-stat .hero-stat-after {
  color: #2563eb;
  font-size: 20px;
}
.success-story-data-engineering-page .success-story-hero-stat .hero-stat-label {
  margin-left: 8px;
  font-size: 14px;
  font-weight: 500;
  color: #64748b;
}
.success-story-data-engineering-page .success-story-overview-card {
  background: #f8fafc;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 14px;
  padding: 24px 28px 20px;
  margin-bottom: 8px;
}
.success-story-data-engineering-page .success-story-overview-card .overview-dl {
  margin: 0;
  display: grid;
  gap: 14px 24px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}
.success-story-data-engineering-page .success-story-overview-card .overview-dl > div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.success-story-data-engineering-page .success-story-overview-card .overview-dl dt {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #2563eb;
  margin: 0;
}
.success-story-data-engineering-page .success-story-overview-card .overview-dl dd {
  margin: 0;
  font-size: 15px;
  line-height: 1.55;
  color: #334155;
}
.success-story-data-engineering-page .success-story-section {
  padding: 28px 0 8px;
  margin: 0 -20px;
  padding-left: 20px;
  padding-right: 20px;
  border-radius: 12px;
}
.success-story-data-engineering-page .success-story-section--approach {
  background: rgba(248, 250, 252, 0.8);
  margin-top: 12px;
  padding: 24px 20px 12px;
}
.success-story-data-engineering-page .success-story-section--results {
  background: rgba(241, 245, 249, 0.6);
  margin-top: 12px;
  padding: 24px 20px 12px;
}
.success-story-data-engineering-page .bullet-points-3 {
  border-left: 4px solid rgba(48, 120, 251, 0.35);
  padding-left: 20px;
  margin-left: 4px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 0 10px 10px 0;
  padding: 20px 20px 12px 24px;
  margin-bottom: 20px !important;
}
.success-story-data-engineering-page .bullet-points-3 h5 {
  display: flex;
  align-items: center;
  gap: 10px;
}
.success-story-data-engineering-page .success-story-cta {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%) !important;
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 36px 32px !important;
}
.success-story-data-engineering-page .success-story-cta .single-details h3,
.success-story-data-engineering-page .success-story-cta .single-details h4 {
  color: #fff !important;
}
.success-story-data-engineering-page .success-story-cta .single-details p {
  color: rgba(255, 255, 255, 0.75) !important;
}
.success-story-data-engineering-page .success-story-cta .cmn-btn a {
  background: #2563eb !important;
  border-color: #2563eb !important;
}
.success-story-data-engineering-page .blog-gallery {
  margin: 20px 0 12px;
  gap: 16px;
}
.success-story-data-engineering-page .blog-gallery .b-gallery {
  width: calc(50% - 8px);
  margin: 0 !important;
}
.success-story-data-engineering-page .blog-gallery .b-gallery img {
  aspect-ratio: 16/10;
  object-fit: cover;
  object-position: center;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.1);
}
.success-story-data-engineering-page .gallery-caption {
  margin-top: 12px;
  font-size: 14px;
  color: #64748b;
  font-style: italic;
  text-align: center;
}
.success-story-data-engineering-page .results-grid--cards {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(3, 1fr);
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .success-story-data-engineering-page .results-grid--cards {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .success-story-data-engineering-page .results-grid--cards {
    grid-template-columns: 1fr;
  }
}
.success-story-data-engineering-page .results-grid--cards .results-col {
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 14px;
  padding: 24px 22px;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.04);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.success-story-data-engineering-page .results-grid--cards .results-col:hover {
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
}
.success-story-data-engineering-page .results-grid--cards .results-col--operational .results-label {
  color: #2563eb;
}
.success-story-data-engineering-page .results-grid--cards .results-col--business .results-label {
  color: #7c3aed;
}
.success-story-data-engineering-page .results-grid--cards .results-col--adoption .results-label {
  color: #059669;
}
.success-story-data-engineering-page .results-grid--cards .results-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 14px;
}
.success-story-data-engineering-page .results-grid--cards .results-label i {
  font-size: 20px;
  opacity: 0.9;
}
.success-story-data-engineering-page .results-grid {
  margin-bottom: 26px !important;
}
.success-story-data-engineering-page .tag-share {
  margin-top: 10px;
}
.success-story-data-engineering-page .author-date.layout2 {
  margin-bottom: 20px;
  font-size: 15px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .success-story-data-engineering-page .success-story-section {
    margin-left: 0;
    margin-right: 0;
    padding-left: 16px;
    padding-right: 16px;
  }
  .success-story-data-engineering-page .success-story-overview-card .overview-dl {
    grid-template-columns: 1fr;
  }
  .success-story-data-engineering-page .success-story-hero-stat {
    flex-wrap: wrap;
    padding: 12px 18px;
  }
  .success-story-data-engineering-page .blog-gallery {
    display: grid;
    grid-template-columns: 1fr;
  }
  .success-story-data-engineering-page .blog-gallery .b-gallery {
    width: 100%;
  }
}

.success-story-mobile-page .success-story-content--mobile-case h3 {
  margin-bottom: 14px;
  line-height: 1.28;
}
.success-story-mobile-page .success-story-content--mobile-case p {
  line-height: 1.72;
  margin-bottom: 18px;
}
.success-story-mobile-page .success-story-content--mobile-case h4.mt-5 {
  margin-top: 34px !important;
  margin-bottom: 14px !important;
}
.success-story-mobile-page .success-story-content--mobile-case h5.mt-4 {
  margin-top: 24px !important;
  margin-bottom: 10px !important;
}
.success-story-mobile-page .details-thumb {
  margin-bottom: 22px;
}
.success-story-mobile-page .details-thumb img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  object-position: center;
  border-radius: 12px;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.12);
}
.success-story-mobile-page .blog-gallery {
  margin: 20px 0 18px;
  gap: 16px;
}
.success-story-mobile-page .blog-gallery .b-gallery {
  width: calc(50% - 8px);
  margin: 0 !important;
}
.success-story-mobile-page .blog-gallery .b-gallery img {
  aspect-ratio: 16/10;
  object-fit: cover;
  object-position: center;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.1);
}
.success-story-mobile-page .bullet-points-2 {
  margin-bottom: 14px !important;
}
.success-story-mobile-page .bullet-points-3 {
  margin-bottom: 14px !important;
  padding: 16px 18px 8px;
  border-radius: 12px;
  border: 1px solid rgba(148, 163, 184, 0.24);
  background: #fbfdff;
}
.success-story-mobile-page .bullet-points-3 h5 {
  margin-bottom: 10px;
}
.success-story-mobile-page .tag-share {
  margin-top: 8px;
}
.success-story-mobile-page .cta-box {
  margin-top: 8px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .success-story-mobile-page .blog-gallery {
    display: grid;
    grid-template-columns: 1fr;
  }
  .success-story-mobile-page .blog-gallery .b-gallery {
    width: 100%;
  }
}

.success-story-product-page .success-story-sidebar {
  display: grid;
  gap: 20px;
  position: sticky;
  top: 100px;
}
.success-story-product-page .success-story-sidebar .sidebar-banner--utility {
  position: relative;
  top: auto;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .success-story-product-page .success-story-sidebar {
    position: static;
  }
}

footer {
  background: #f8fafc !important;
  background-image: none !important;
  border-top: 1px solid #e2e8f0;
  border-radius: 0;
}

.footer-top {
  padding-top: 56px;
  padding-bottom: 8px;
}

.footer-widget h4,
.footer-accordion-summary {
  color: #0f172a;
  font-weight: 700;
}

.footer-tagline {
  color: #1f2937;
  max-width: 320px;
}

.footer-cta-link {
  background: #2563eb;
  border-radius: 8px;
  padding: 10px 18px;
  color: #fff;
}

.footer-menu li a {
  color: #0f172a;
  font-weight: 600;
}

.footer-menu li a:hover {
  color: #2563eb;
  padding-left: 18px;
}

footer .num-icon,
footer .mail-icon,
footer .address-icon {
  background: #eff6ff;
  border: 1px solid #dbeafe;
}

footer .phone a,
footer .email a,
footer .address p {
  color: #0f172a;
  font-weight: 500;
}

.footer-locations {
  border-top: 1px solid #e2e8f0;
  margin-top: 36px;
  padding: 18px 0 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 22px;
}
.footer-locations .footer-locations-label {
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.02em;
  color: #64748b;
  text-transform: uppercase;
}
.footer-locations ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 4px 22px;
}
.footer-locations li {
  margin: 0;
}
.footer-locations li a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: #334155;
  font-weight: 500;
  font-size: 14px;
  transition: color 0.2s ease;
}
.footer-locations li a:hover {
  color: #2563eb;
}

.footer-bottom {
  border-top: 1px solid #e2e8f0;
  margin-top: 36px;
  padding: 20px 0;
}

.footer-bottom .copy-txt span,
.footer-bottom .footer-bottom-menu li a,
.footer-bottom .footer-bottom-menu li .footer-cookie-settings-btn {
  color: #334155;
}

.footer-bottom .footer-bottom-menu li a,
.footer-bottom .footer-bottom-menu li .footer-cookie-settings-btn {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 4px;
}

.footer-bottom .copy-txt span a,
.footer-bottom .footer-bottom-menu li a:hover,
.footer-bottom .footer-bottom-menu li .footer-cookie-settings-btn:hover {
  color: #2563eb;
}

.footer-cookie-settings-btn {
  background: none;
  border: none;
  padding: 0;
  font: inherit;
  cursor: pointer;
  text-decoration: none;
}

@media (max-width: 767px) {
  .footer-menu li {
    margin-bottom: 10px;
  }
  .footer-menu li a {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
  }
  .footer-bottom .footer-bottom-menu li a,
  .footer-bottom .footer-bottom-menu li .footer-cookie-settings-btn {
    min-height: 44px;
  }
}
.engagement-model-page .sidebar-banner--utility {
  background: #000;
}
.engagement-model-page .breadcrumbs {
  background-image: none;
  background-color: #0e0e0e;
}
.engagement-model-page .breadcrumbs:before {
  background: none;
}
.engagement-model-page .breadcrumb-cnt h1 {
  color: #fff;
}
.engagement-model-page .breadcrumb-list {
  color: rgba(255, 255, 255, 0.85);
}
.engagement-model-page .breadcrumb-list li .breadcrumb-sep {
  color: rgba(255, 255, 255, 0.5);
}
.engagement-model-page .service-details img:not(.em-intro-banner):not(.em-model-img) {
  display: none;
}
.engagement-model-page .sidebar-banner--utility img {
  display: none;
}
.engagement-model-page .news-letter-content {
  background-image: none;
}

.about-domains-narrative .sec-title.layout2 p {
  font-size: 18px;
  line-height: 1.78;
  color: #3b4356;
  max-width: 1120px;
}

.agile-playboard.agile-playboard--v2 .agile-playboard__card {
  grid-template-columns: auto 1fr;
  align-items: center;
  padding: 12px 14px;
}
.agile-playboard.agile-playboard--v2 .agile-playboard__card-content :is(h3, h4) {
  margin: 0 0 4px;
}
.agile-playboard.agile-playboard--v2 .agile-playboard__card-content p {
  margin: 0;
  font-size: 13px;
  line-height: 1.5;
}
.agile-playboard.agile-playboard--v2 .agile-playboard__detail {
  display: grid;
  gap: 14px;
}
.agile-playboard.agile-playboard--v2 .agile-playboard__detail-header {
  margin-bottom: 0;
}
.agile-playboard.agile-playboard--v2 .agile-playboard__detail-body {
  display: grid;
  gap: 12px;
}
.agile-playboard.agile-playboard--v2 .agile-playboard__detail-desc {
  margin: 0;
  line-height: 1.75;
  color: #334155;
}
.agile-playboard.agile-playboard--v2 .agile-playboard__proof-block {
  border-top: 1px dashed rgba(148, 163, 184, 0.45);
  padding-top: 10px;
  display: grid;
  gap: 8px;
}
.agile-playboard.agile-playboard--v2 .agile-playboard__proof-label {
  margin: 0;
  font-size: 12px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 700;
  color: #64748b;
}
.agile-playboard.agile-playboard--v2 .agile-playboard__cta {
  margin-top: 0;
  width: fit-content;
}

@media (min-width: 992px) {
  .faqs-area > .container > .row > .col-lg-4 > .sidebar-tab:last-child {
    display: none !important;
  }
  .faqs-area > .container > .row > .col-lg-4 {
    position: sticky;
    top: 100px;
    align-self: start;
  }
}

.faqs-area .sidebar-tab .tabs {
  display: grid;
  gap: 10px;
}
.faqs-area .sidebar-tab .tabs .tab-link {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: 0.01em;
  text-align: center;
  color: #17161a;
  border: 1px solid rgba(48, 120, 251, 0.2);
  border-radius: 12px;
  padding: 10px 12px;
  background: linear-gradient(135deg, rgba(48, 120, 251, 0.09), rgba(0, 192, 255, 0.08)), #ffffff;
  box-shadow: 0 6px 14px rgba(15, 23, 42, 0.06);
  transition: all 0.25s ease;
}
.faqs-area .sidebar-tab .tabs .tab-link:hover {
  transform: translateY(-1px);
  border-color: rgba(48, 120, 251, 0.42);
  box-shadow: 0 10px 20px rgba(48, 120, 251, 0.16);
  color: #2563eb;
}
.faqs-area .sidebar-tab .tabs .tab-link.active {
  color: #ffffff;
  border-color: transparent;
  background: linear-gradient(135deg, #2563eb, #22c1f0);
  box-shadow: 0 12px 24px rgba(37, 99, 235, 0.28), inset 0 0 0 1px rgba(255, 255, 255, 0.2);
}
.faqs-area .faq-anchor-proxy {
  position: relative;
  top: -120px;
  height: 0;
  width: 0;
  visibility: hidden;
}

.load-more .paginations {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0;
  margin: 0;
  list-style: none;
}
.load-more .paginations li {
  margin: 0;
}

.app-eng-agile-benefits .agile-benefits-mobile {
  display: none;
}
@media (max-width: 767px) {
  .app-eng-agile-benefits .agile-benefits-desktop {
    display: none;
  }
  .app-eng-agile-benefits .agile-benefits-mobile {
    display: grid;
    gap: 16px;
  }
  .app-eng-agile-benefits .agile-benefits-mobile .single-service {
    margin: 0;
    height: auto;
  }
  .app-eng-agile-benefits .agile-benefits-mobile .single-service p {
    -webkit-line-clamp: unset;
    overflow: visible;
  }
  .app-eng-agile-benefits .agile-benefits-mobile .read-btn a {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
}

.single-team .team-inner__designation-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}
.single-team .team-inner__designation-row span {
  margin: 0;
}

.single-team .team-inner__linkedin {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: #0e0e0e;
  color: #e4e4e4;
  font-size: 18px;
  transition: all 0.3s ease;
}
.single-team .team-inner__linkedin:hover {
  background-color: #2563eb;
  color: #0f1012;
  transform: scale(1.25);
}

.floating-actions {
  position: fixed;
  bottom: 100px;
  right: 20px;
  z-index: 50;
  display: flex;
  flex-direction: column;
  gap: 12px;
  pointer-events: none;
}
.floating-actions > * {
  pointer-events: auto;
}
@media (max-width: 767px) {
  .floating-actions {
    bottom: max(90px, 80px + env(safe-area-inset-bottom));
  }
}

.whatsapp-float {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  color: #fff;
  text-decoration: none;
  background: #25d366;
  animation: ripple 2.5s infinite;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  color: #fff;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
}

.email-float {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  color: #fff;
  text-decoration: none;
  background: #2563eb;
  box-shadow: 0 2px 10px rgba(37, 99, 235, 0.35);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}
.email-float:hover, .email-float:focus-visible {
  transform: scale(1.1);
  color: #fff;
  background: #1d4ed8;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
}
.email-float .bi-envelope-fill {
  font-size: 24px;
  line-height: 1;
}

body.cookie-banner-visible .floating-actions {
  bottom: 160px;
}
@media (max-width: 767px) {
  body.cookie-banner-visible .floating-actions {
    bottom: 150px;
  }
}

body.cookie-banner-visible retell-widget {
  bottom: 160px !important;
  z-index: 9990 !important;
}

body.cookie-banner-visible {
  padding-bottom: 90px;
}
@media (max-width: 767px) {
  body.cookie-banner-visible {
    padding-bottom: 160px;
  }
}

@media (max-width: 576px) {
  .hero-content .buttons {
    margin-top: 10px;
  }
}
html {
  scroll-padding-bottom: 0;
}

body.cookie-banner-visible {
  scroll-padding-bottom: 90px;
}
@media (max-width: 767px) {
  body.cookie-banner-visible {
    scroll-padding-bottom: 160px;
  }
}

body.hide-floats .scroll-to-top .top,
body.hide-floats retell-widget {
  display: none !important;
}

body.floats-hidden .floating-actions,
body.floats-hidden .scroll-to-top .top,
body.floats-hidden retell-widget {
  opacity: 0 !important;
  pointer-events: none !important;
  transform: translateY(20px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.floating-actions,
retell-widget {
  transition: opacity 0.3s ease, transform 0.3s ease;
}

@media (max-width: 767px) {
  retell-widget {
    display: none !important;
  }
}
@media (max-width: 767px) {
  .floating-actions {
    right: 10px;
    bottom: max(120px, 110px + env(safe-area-inset-bottom));
    gap: 8px;
    opacity: 0.35;
    transition: opacity 0.3s ease, transform 0.3s ease;
  }
  .floating-actions:hover, .floating-actions:focus-within, .floating-actions:active {
    opacity: 1;
  }
  .whatsapp-float,
  .email-float {
    width: 36px;
    height: 36px;
    animation: none;
  }
  
  .whatsapp-float .bi-envelope-fill,
  .email-float .bi-envelope-fill {
    font-size: 18px;
  }
}
.tc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
@media (max-width: 991px) {
  .tc-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 575px) {
  .tc-grid {
    grid-template-columns: 1fr;
    max-width: 380px;
    margin: 0 auto;
  }
}

.tc-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 3/4;
  background: #0e0e0e;
  cursor: default;
}
.tc-card__img {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.tc-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}
.tc-card__overlay {
  position: absolute;
  inset: auto 0 0;
  z-index: 1;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: linear-gradient(to top, rgba(10, 10, 12, 0.92) 20%, rgba(10, 10, 12, 0.5) 60%, transparent 100%);
  transition: inset 0.45s cubic-bezier(0.4, 0, 0.2, 1), background 0.45s ease;
}
.tc-card:hover .tc-card__overlay {
  inset: 0;
  background: linear-gradient(to top, rgba(10, 10, 12, 0.95) 30%, rgba(10, 10, 12, 0.82) 60%, rgba(10, 10, 12, 0.65) 100%);
  backdrop-filter: blur(3px);
}
.tc-card__badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #2563eb;
  margin-bottom: 8px;
}
.tc-card__name {
  margin: 0;
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
}
.tc-card__role {
  margin: 4px 0 0;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 400;
}
.tc-card__reveal {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.45s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.35s ease 0.1s;
}
.tc-card:hover .tc-card__reveal {
  max-height: 300px;
  opacity: 1;
}
.tc-card__bio {
  margin: 14px 0 0;
  font-size: 13px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.72);
}
.tc-card__li {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 16px;
  margin-top: 14px;
  transition: all 0.3s ease;
  text-decoration: none;
}
.tc-card__li:hover {
  background: #2563eb;
  color: #0f0f11;
  transform: scale(1.15);
}
.tc-card__actions {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  flex-wrap: wrap;
}
.tc-card__actions .tc-card__li {
  margin-top: 0;
}
.tc-card__cert {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 10px;
  border-radius: 6px;
  background: rgba(37, 99, 235, 0.12);
  border: 1px solid rgba(37, 99, 235, 0.25);
  color: #93c5fd;
  font-size: 11px;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.tc-card__cert i {
  color: #2563eb;
  font-size: 12px;
}
.tc-card__cert:hover {
  background: rgba(37, 99, 235, 0.25);
  color: #fff;
}

.content-highlight-box {
  background: #f8f9fb;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  padding: 28px 24px;
  margin-top: 24px;
}
.content-highlight-box h4 {
  font-size: 20px;
  margin-bottom: 16px;
  line-height: 1.3;
}
.content-highlight-box p:last-child {
  margin-bottom: 0;
}
.content-highlight-box .content-highlight-box__link {
  color: #2563eb;
  font-weight: 500;
  display: inline-block;
  padding: 11px 0;
  min-height: 44px;
}
.content-highlight-box .content-highlight-box__quote {
  color: #64748b;
  font-size: 0.95rem;
}

.content-highlight-box--gradient {
  background: linear-gradient(135deg, #f0ebff 0%, #e8f4f8 100%);
  border-color: #d4c5f9;
}
.content-highlight-box--gradient h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.content-highlight-box h3.card-subheading {
  font-size: 1.1rem;
}

.page-meta {
  color: #94a3b8;
  font-size: 0.85rem;
  margin-top: -8px;
  margin-bottom: 16px;
}

.value-prop-grid {
  margin-top: 24px;
}
.value-prop-grid .value-prop-item {
  margin-bottom: 24px;
}
.value-prop-grid .value-prop-item h4 {
  font-size: 18px;
  margin-bottom: 12px;
}
.value-prop-grid .value-prop-item h4 i {
  color: var(--primary-color, #2563eb);
  margin-right: 8px;
}
.value-prop-grid .value-prop-item p {
  color: #64748b;
  font-size: 0.95rem;
  line-height: 1.7;
}

.au-services-grid .au-service-card {
  background: #fff;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  padding: 28px 24px;
  height: 100%;
  transition: box-shadow 0.2s ease;
}
.au-services-grid .au-service-card:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}
.au-services-grid .au-service-card .au-service-card__icon {
  font-size: 2rem;
  color: #2563eb;
  display: block;
  margin-bottom: 16px;
}
.au-services-grid .au-service-card h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}
.au-services-grid .au-service-card p {
  color: #64748b;
  font-size: 0.95rem;
  line-height: 1.7;
}
.au-services-grid .au-service-card a {
  color: #2563eb;
  font-weight: 500;
}

.sidebar-industry-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.sidebar-industry-list li {
  padding: 0.75rem 0;
  border-bottom: 1px solid #eee;
}
.sidebar-industry-list li:last-child {
  border-bottom: none;
}
.sidebar-industry-list li i {
  color: #2563eb;
  font-size: 0.875rem;
  vertical-align: middle;
}
.sidebar-industry-list .sidebar-industry-list__proof {
  color: #64748b;
  font-size: 0.85rem;
  margin: 4px 0 0 28px;
}

.sidebar-address {
  font-style: normal;
  line-height: 1.8;
}

.testimonial-blockquote {
  border-left: 4px solid #2563eb;
  background: #f8f9fb;
  border-radius: 0 12px 12px 0;
  padding: 24px;
  margin-top: 40px;
  font-style: italic;
}
.testimonial-blockquote p {
  margin-bottom: 8px;
}
.testimonial-blockquote footer {
  font-style: normal;
  color: #64748b;
  font-size: 0.95rem;
}

img {
  max-width: 100%;
  height: auto;
}

.single-service img,
.gallery img,
.sidebar-widget img {
  object-fit: cover;
}

.blog-gallery .b-gallery img {
  object-fit: cover;
}

.single-team .member-img img {
  object-fit: cover;
  object-position: top center;
}

@media (max-width: 767px) {
  .history-area {
    margin: 80px 0;
  }
}
.single-history {
  position: relative;
  display: flex;
  width: 100%;
  margin-bottom: 60px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .single-history {
    display: block;
  }
}
@media (max-width: 767px) {
  .single-history {
    margin-bottom: 40px;
  }
}
.single-history::before {
  position: absolute;
  left: 50%;
  top: 0;
  height: 100%;
  width: 5px;
  background-color: #272727;
  content: "";
  border-radius: 10px;
  transform: translateX(-50%);
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .single-history::before {
    display: none;
  }
}
.single-history:last-child {
  margin-bottom: 0;
}

.history {
  position: relative;
  min-width: 50%;
}
.history:first-child {
  padding-right: 100px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .history:first-child {
    padding-right: 40px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .history:first-child {
    padding: 0;
  }
}
.history:first-child .circle {
  position: absolute;
  right: -7px;
  transform: rotate(180deg);
  bottom: 60px;
}
.history:first-child .history-cnt-inner {
  margin-right: 60px;
  margin-left: 0;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .history:first-child .history-cnt-inner {
    margin-right: 0;
    margin-bottom: 20px;
  }
}
.history:first-child .history-cnt-inner span {
  position: absolute;
  right: -105px;
  left: auto;
  top: 85px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .history:first-child .history-cnt-inner span {
    position: static;
  }
}
.history:last-child {
  padding-left: 100px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .history:last-child {
    padding-left: 40px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .history:last-child {
    padding: 0;
  }
}
.history:last-child .circle {
  position: absolute;
  left: -7px;
  top: 60px;
}
.history:last-child .history-cnt-inner {
  margin-left: 60px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .history:last-child .history-cnt-inner {
    margin-left: 0;
  }
}
.history .history-thumb {
  position: relative;
  z-index: 1;
}
.history .history-thumb img {
  width: 100%;
  object-fit: cover;
}

.circle {
  position: relative;
  height: 14px;
  width: 14px;
  background: #2563eb;
  border-radius: 50%;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .circle {
    display: none;
  }
}
.circle::before {
  position: absolute;
  content: "";
  left: -3px;
  top: -3px;
  height: 20px;
  width: 20px;
  border: 1px solid #2563eb;
  border-radius: 50%;
  animation: rotateme 5s infinite linear;
  transition: all 0.2s cubic-bezier(0.98, 0.57, 1, 1) 0s;
}
.circle::after {
  position: absolute;
  content: "";
  left: -6px;
  top: -6px;
  height: 26px;
  width: 26px;
  border: 1px solid rgba(37, 99, 235, 0.4);
  border-radius: 50%;
}
.circle .inner {
  height: 6px;
  width: 6px;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.blog-thumb img {
  object-fit: cover;
}

.site-logo img,
.footer-logo img,
.mobile-menu-logo img {
  object-fit: contain;
  height: auto;
}

.career-intro {
  font-size: 17px;
  line-height: 1.7;
  color: #555;
  max-width: 640px;
  margin: 0 auto 20px;
}
.career-intro a {
  color: #2563eb;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.career-grid {
  margin-top: 20px;
}

.career-card {
  background: #fff;
  border: 2px solid #e8ecf4;
  border-radius: 16px;
  padding: 24px 24px;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}
.career-card:hover {
  border-color: rgb(130.4285714286, 165.8571428571, 243.5714285714);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(37, 99, 235, 0.1);
}
.career-card__icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 19px;
  color: #fff;
  background: linear-gradient(135deg, #2563eb, rgb(17.7142857143, 72.6285714286, 193.0857142857));
  margin-bottom: 14px;
}
.career-card__title {
  font-size: 18px;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 8px;
}
.career-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 10px;
}
.career-card__location {
  font-size: 14px;
  color: #666;
  margin-bottom: 12px;
}
.career-card__location i {
  color: #2563eb;
  margin-right: 6px;
}
.career-card__desc {
  font-size: 14px;
  line-height: 1.55;
  color: #444;
  flex: 1;
  margin-bottom: 12px;
}
.career-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: #2563eb;
  color: #fff;
  font-weight: 600;
  font-size: 15px;
  font-family: inherit;
  border: none;
  cursor: pointer;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.25s ease;
  align-self: flex-start;
}
.career-card__cta:hover {
  background: rgb(19.4285714286, 79.6571428571, 211.7714285714);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.3);
  color: #fff;
}
.career-card__cta i {
  font-size: 13px;
  transition: transform 0.2s;
}
.career-card__cta:hover i {
  transform: translateX(3px);
}

.career-tag {
  display: inline-block;
  padding: 4px 12px;
  font-size: 12px;
  font-weight: 600;
  border-radius: 20px;
  background: #f0f4ff;
  color: #2563eb;
  letter-spacing: 0.02em;
}
.career-tag--dept {
  background: rgba(37, 99, 235, 0.08);
  color: rgb(18.5714285714, 76.1428571429, 202.4285714286);
}

.career-jd__toggle {
  transition: background 0.25s ease;
}
.career-jd__toggle:hover {
  filter: brightness(0.985);
}
.career-jd__toggle:focus-visible {
  outline: 2px solid #2563eb;
  outline-offset: -2px;
}

.career-section {
  background: radial-gradient(900px 480px at 12% -8%, rgba(37, 99, 235, 0.07), transparent 60%), radial-gradient(820px 460px at 92% 4%, rgba(124, 58, 237, 0.06), transparent 60%), #ffffff;
}

.hiring-process {
  padding-top: 64px;
  padding-bottom: 80px;
  background: linear-gradient(180deg, #f6f8ff 0%, #f3f1fc 100%);
  border-top: 1px solid #eceffb;
}

.hiring-timeline {
  display: flex;
  margin-top: 56px;
  position: relative;
}
.hiring-timeline::before {
  content: "";
  position: absolute;
  top: 32px;
  left: 10%;
  right: 10%;
  height: 3px;
  background: linear-gradient(90deg, rgb(139.7714285714, 172.5428571429, 244.4285714286), #2563eb);
  border-radius: 3px;
  z-index: 0;
}

.hiring-stage {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 14px;
  position: relative;
}
.hiring-stage:hover .hiring-stage__icon {
  transform: translateY(-4px);
  box-shadow: 0 12px 26px rgba(37, 99, 235, 0.35);
}
.hiring-stage__node {
  position: relative;
  z-index: 1;
  margin-bottom: 20px;
}
.hiring-stage__icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #fff;
  background: linear-gradient(135deg, #2563eb, rgb(17.7142857143, 72.6285714286, 193.0857142857));
  box-shadow: 0 6px 18px rgba(37, 99, 235, 0.28);
  border: 4px solid #fff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.hiring-stage__count {
  position: absolute;
  top: -6px;
  right: -6px;
  z-index: 2;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid #2563eb;
  color: #2563eb;
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}
.hiring-stage__num {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #2563eb;
  margin-bottom: 6px;
}
.hiring-stage__title {
  font-size: 16px;
  font-weight: 700;
  color: #1a1a2e;
  margin: 0 0 8px;
  line-height: 1.3;
}
.hiring-stage__desc {
  font-size: 13px;
  color: #667085;
  margin: 0;
  line-height: 1.55;
  max-width: 220px;
}

@media (max-width: 767px) {
  .hiring-timeline {
    flex-direction: column;
    margin-top: 40px;
  }
  .hiring-timeline::before {
    display: none;
  }
  .hiring-stage {
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
    padding: 0 0 32px;
    gap: 20px;
  }
  .hiring-stage:not(:last-child)::before {
    content: "";
    position: absolute;
    left: 30px;
    top: 64px;
    bottom: 0;
    width: 3px;
    background: rgb(139.7714285714, 172.5428571429, 244.4285714286);
    z-index: 0;
  }
  .hiring-stage__node {
    margin-bottom: 0;
    flex-shrink: 0;
  }
  .hiring-stage__desc {
    max-width: none;
  }
}
@media (max-width: 767px) {
  .career-card {
    padding: 24px 20px;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  header .main-menu .main-nav {
    width: min(55vw, 440px) !important;
  }
  .hero-wrapper {
    padding-top: 70px;
  }
  .hero-wrapper .buttons {
    margin-top: 24px;
  }
}
.section-band-light > .our-service-model.sec-mar,
.section-band-light > .container > .our-service-model.sec-mar {
  margin-top: 0;
  margin-bottom: 0;
}

.section-band-light > div.sec-mar,
.section-band-light > .container > div.sec-mar {
  margin-top: 0;
  margin-bottom: 0;
}

.single-item .item-img a {
  display: block;
}

.single-item .item-img a img {
  display: block;
  width: 100%;
}

@media (max-width: 768px) {
  .service-details-content p a:not([class]),
  .service-details-content li a:not([class]),
  .service-details p a:not([class]),
  .service-details li a:not([class]) {
    display: inline-block;
    padding-top: 0.55em;
    padding-bottom: 0.55em;
  }
}
@media (max-width: 576px) {
  body.cookie-banner-visible .scroll-to-top .top {
    bottom: 200px;
  }
}
@media (max-width: 768px) {
  .footer-bottom-menu a,
  .footer-bottom a {
    display: inline-block;
    padding-top: 11px;
    padding-bottom: 11px;
  }
}
.cv2-info-card a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding-top: 4px;
  padding-bottom: 4px;
}

@media (max-width: 767px) {
  .blog-thumb a,
  .recent-thumb a {
    display: block;
  }
  .au-service-card a,
  .mel-service-card a,
  .agile-playboard__cta,
  .blog-inner__title a,
  .recent-post-cnt a,
  .office-details-link,
  .cookie-privacy-link {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
  }
}
[id] {
  scroll-margin-top: 110px;
}

@media (max-width: 767px) {
  .contact-page .breadcrumbs {
    min-height: auto;
    padding-top: max(100px, 80px + env(safe-area-inset-top));
    padding-bottom: 16px;
  }
}

@media (max-width: 767px) {
  .contact-page .breadcrumb-wrapper {
    min-height: auto;
  }
}

@media (max-width: 767px) {
  .contact-page .breadcrumb-cnt h1 {
    font-size: 24px;
    margin-bottom: 4px;
  }
}

@media (min-width: 1700px) {
  .header-area {
    padding-left: calc((100% - 1320px) / 2 + 12px);
    padding-right: calc((100% - 1320px) / 2 + 12px);
  }
  .logo a img {
    margin-left: 0;
  }
}
.why-mel-card,
.mel-service-card {
  background: #f8fafc;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 12px;
  padding: 24px;
  height: 100%;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.why-mel-card:hover,
.mel-service-card:hover {
  border-color: rgba(37, 99, 235, 0.4);
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.08);
  transform: translateY(-2px);
}
.why-mel-card i.bi,
.mel-service-card i.bi {
  font-size: 1.8rem;
  color: #2563eb;
  margin-bottom: 6px;
  display: block;
  line-height: 1;
}
.why-mel-card h3,
.mel-service-card h3 {
  color: #0f172a;
  font-size: 1.05rem;
  margin-top: 0;
  margin-bottom: 8px;
}
.why-mel-card p,
.mel-service-card p {
  color: #475569;
  font-size: 0.92rem;
  line-height: 1.6;
}
.why-mel-card a,
.mel-service-card a {
  color: #2563eb;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
}
.why-mel-card a:hover, .why-mel-card a:focus-visible,
.mel-service-card a:hover,
.mel-service-card a:focus-visible {
  text-decoration: underline;
}

.aws-faq {
  list-style: none;
  margin: 0;
  padding: 0;
}
.aws-faq .aws-faq-item {
  display: flex;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(15, 23, 42, 0.1);
}
.aws-faq .aws-faq-item:first-child {
  padding-top: 0;
}
.aws-faq .aws-faq-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.aws-faq .aws-faq-num {
  flex: 0 0 auto;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #2563eb;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  line-height: 1;
}
.aws-faq .aws-faq-body {
  flex: 1 1 auto;
}
.aws-faq .aws-faq-body h3 {
  margin-top: 4px;
}

.contact-info-box {
  background: #f8fafc;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 12px;
  padding: 24px;
}
.contact-info-box h4 {
  color: #0f172a;
}
.contact-info-box address {
  font-style: normal;
  line-height: 2;
  color: #0f172a;
}
.contact-info-box address i.bi {
  color: #2563eb;
}
.contact-info-box address a {
  color: #2563eb;
  font-weight: 600;
}
.contact-info-box address a:hover, .contact-info-box address a:focus-visible {
  text-decoration: underline;
}

@media (max-width: 767px) {
  .why-mel-card,
  .mel-service-card {
    padding: 18px;
  }
  .contact-info-box {
    padding: 18px;
  }
}
/* Sub-headings inside .service-details-content that were promoted from
   <h4>/<h5> to <h3> for correct heading order (no level skips). The template
   styles bare h2/h3 at 35px; this keeps these small sub-headings visually
   unchanged. Specificity (0,2,1) beats the template's `.service-details-content h3`. */
.service-details-content h3.sds-subhead {
  font-size: 1.05rem;
  font-weight: 600;
  color: #0f172a;
  margin-top: 0;
  margin-bottom: 8px;
  line-height: 1.4;
}

/* Case-study detail content (e.g. /case-study/gdi-hadp) shares .blog-details-content
   with blog posts, but its headings sat one level deeper (h3–h6). We shifted the
   tags up one level (h3→h2 … h6→h5) for correct heading order; these scoped rules
   restore the original per-level sizing for the shifted tags. Section headings
   (was h4 → now h3) need no rule — .blog-details-content h3 already matches the old
   h4 (both 27px). Double class beats the base .blog-details-content rules. */
.blog-details-content.blog-details-content--case-study h2 {
  font-weight: 600;
  font-size: 27px;
  text-transform: capitalize;
  color: #17161a;
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .blog-details-content.blog-details-content--case-study h2 {
    font-size: 22px;
  }
}
.blog-details-content.blog-details-content--case-study h4 {
  font-weight: 600;
  font-size: 20px;
  text-transform: uppercase;
  color: #111111;
  margin-bottom: 5px;
}
.blog-details-content.blog-details-content--case-study h4.cs-col-label {
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #64748b;
  margin-bottom: 10px;
}

/* QA service detail pages (/quality-assurance/*): card sub-headings ("Types of …",
   tool lists) were h5, promoted to h4 so the heading order under the now-h3 section
   title is correct (h3 → h4, no skip). The base .blog-details-content h4 renders at
   27px/600 — pin these promoted sub-headings back to the original Bootstrap-h5
   rendering (20px/500) so the visual hierarchy is unchanged. */
.blog-details-content .bullet-points-3 h4,
.blog-details-content h4.qa-subhead {
  font-size: 1.25rem; /* 20px — matches the prior h5 */
  font-weight: 500;
  text-transform: none;
  margin-bottom: 10px;
}

/* Blog posts (/blogs/agentic-ai-…, /blogs/practical-guide-…): the post title is the
   breadcrumb h1, so section headings were h3 and sub-points h4. Promoted h3→h2 / h4→h3
   for correct order under the h1. Pin the new h2 to the prior h3 rendering (27px) so the
   section headings look identical. The new h3 (was h4) already matches at 27px. */
.blog-details-content.blog-details-content--post h2 {
  font-weight: 600;
  font-size: 27px;
  text-transform: capitalize;
  color: #17161a;
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .blog-details-content.blog-details-content--post h2 {
    font-size: 22px;
  }
}

/* /product-engineering/software-architecture-design case-study card: the
   Challenge/Solution/Outcome micro-labels were h6, promoted to h4 (section title is now
   h3). Pin them back to the prior Bootstrap-h6 rendering (16px) so they stay small. */
.blog-details-content .arch-case-col h4 {
  font-size: 1rem; /* 16px — matches the prior h6 */
  font-weight: 600;
  text-transform: none;
  margin-bottom: 0.5rem;
}

/* Success-story & case-study detail templates (.blog-details-content.cs-detail):
   the content title is the breadcrumb h1, so section headings were h4 and sub-points
   h5/h6. Promoted sections h4→h3 (free — base h3/h4 are both 27px) and ALL sub-points
   h5/h6→h4 for correct order (h1→h2→h3→h4). Pin the now-h4 sub-points back to the
   prior sub-heading size so the visual hierarchy (27px section / 20px sub-point) holds. */
.blog-details-content.cs-detail h4 {
  font-size: 1.25rem; /* 20px — matches the prior h5; h6 categories bump 16→20px */
  margin-bottom: 0.85rem;
}

.cta-text-link {
  display: inline-block;
  padding: 11px 0;
  min-height: 44px;
}
