/* Visual refresh only. Page content and structure stay unchanged. */
:root {
  --main-color: #13E0F7;
  --main-color2: #0093F5;
  --heading-color: #040A72;
  --paragraph-color: #516070;
  --body-font: "Rubik", sans-serif;
  --heading-font: "Poppins", sans-serif;
  --ink: #040A72;
  --muted: #667085;
  --paper: #f6f8fb;
  --panel: #ffffff;
  --line: #dfe6ee;
  --accent: #0093F5;
  --shadow-soft: 0 18px 45px rgba(4, 10, 114, 0.09);
  --shadow-card: 0 12px 30px rgba(4, 10, 114, 0.08);
}

html {
  scroll-behavior: smooth;
}

body.sc5 {
  color: var(--paragraph-color);
  background:
    linear-gradient(90deg, rgba(4, 10, 114, 0.035) 1px, transparent 1px) 0 0 / 72px 72px,
    linear-gradient(180deg, #ffffff 0%, #f6f8fb 46%, #ffffff 100%);
}

body.sc5 h1,
body.sc5 h2,
body.sc5 h3,
body.sc5 h4,
body.sc5 h5,
body.sc5 h6 {
  color: var(--heading-color);
  letter-spacing: 0;
}

body.sc5 p {
  color: var(--paragraph-color);
  line-height: 1.78;
}

a {
  color: var(--main-color);
}

.company-name-img {
  display: inline-block;
  width: auto;
  height: 1em;
  max-width: min(100%, 17em);
  margin: 0 0.06em;
  vertical-align: -0.12em;
}

.company-name-img--heading {
  height: 1em;
  max-width: min(100%, 19.4em);
  margin: 0 0.06em;
  vertical-align: -0.12em;
}

.company-name-img--hero {
  height: 1em;
  max-width: min(100%, 19.4em);
  margin: 0;
  vertical-align: -0.12em;
}

.company-name-img--block {
  display: block;
  height: 1em;
}

.company-name-img--footer {
  height: 1em;
  vertical-align: -0.12em;
}

.accordion-button .company-name-img {
  height: 1em;
  min-width: 0;
  max-width: min(100%, 17em);
  margin: 0 0.06em;
  vertical-align: -0.12em;
}

.accordion-button .faq-question-text {
  flex: 1 1 auto;
  min-width: 0;
  display: block;
  line-height: 1.35;
}

.btn {
  min-height: 50px;
  line-height: 48px;
  border-radius: 6px !important;
  border: 1px solid transparent;
  box-shadow: none;
  font-weight: 700;
  letter-spacing: 0;
  padding: 0 24px;
}

.btn:after {
  display: none;
}

.btn-base {
  color: #ffffff;
  background: var(--main-color);
  border-color: var(--main-color);
}

.btn-base:hover,
.btn-black:hover {
  color: #ffffff;
  background: var(--accent);
  border-color: var(--accent);
}

.btn-black {
  color: var(--ink);
  background: #ffffff;
  border-color: var(--line);
}

.back-to-top {
  background: var(--ink);
  border-radius: 6px;
  box-shadow: var(--shadow-card);
}

.preloader-inner {
  background:
    radial-gradient(circle at 28% 24%, rgba(19, 224, 247, 0.18), transparent 30%),
    radial-gradient(circle at 74% 70%, rgba(0, 147, 245, 0.24), transparent 28%),
    linear-gradient(135deg, #040a72 0%, #071044 54%, #0093f5 100%) !important;
}

.preloader-inner:before,
.preloader-inner:after {
  content: "";
  position: absolute;
  border-radius: 8px;
  pointer-events: none;
}

.preloader-inner:before {
  width: min(420px, 54vw);
  height: min(420px, 54vw);
  border: 1px solid rgba(255, 255, 255, 0.14);
  transform: rotate(12deg);
}

.preloader-inner:after {
  width: 160px;
  height: 160px;
  right: 10%;
  bottom: 12%;
  background: rgba(19, 224, 247, 0.22);
}

.loader-card {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

.loader-mark {
  position: relative;
  width: 172px;
  height: 172px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.loader-mark:before {
  content: "";
  position: absolute;
  inset: 22px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(10px);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
  transform: rotate(45deg);
}

.loader-mark img {
  position: relative;
  z-index: 2;
  width: 116px;
  max-width: 68%;
  height: auto;
}

.loader-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.16);
  border-top-color: var(--main-color);
  border-right-color: var(--main-color2);
  animation: loaderSpin 1.2s linear infinite;
}

.loader-progress {
  width: 210px;
  height: 4px;
  overflow: hidden;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.16);
}

.loader-progress span {
  display: block;
  width: 48%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--main-color), #ffffff, var(--main-color2));
  animation: loaderTrack 1.15s ease-in-out infinite;
}

@keyframes loaderSpin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes loaderTrack {
  0% {
    transform: translateX(-110%);
  }

  100% {
    transform: translateX(230%);
  }
}

.navbar-top {
  background: var(--ink);
  padding: 10px 0;
}

.navbar-top.style-2 {
  background: #ffffff;
  border-bottom: 1px solid rgba(223, 230, 238, 0.9);
  padding: 14px 0;
}

.navbar-top.style-2 .row {
  align-items: center;
  justify-content: space-between;
}

.navbar-top.style-2 .col-lg-3 {
  width: auto;
  flex: 0 0 auto;
}

.navbar-top.style-2 .col-lg-3:nth-child(2) {
  margin-left: auto;
}

.navbar-top.style-2 .logo img {
  width: 176px !important;
}

.topbar-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.topbar-contact {
  margin-left: auto;
}

.topbar-mail {
  align-items: center;
  justify-content: flex-end;
  background: #f6f8fb;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 9px 14px;
}

.topbar-mail .media-left {
  width: 38px;
  height: 38px;
  line-height: 38px;
  border-radius: 8px;
  text-align: center;
  background: rgba(19, 224, 247, 0.1);
}

.navbar-top .media {
  gap: 10px;
}

.navbar-top .media-left,
.navbar-top .topbar-right li p i {
  color: var(--main-color);
}

.navbar-top .media-body h6,
.navbar-top .media-body p,
.navbar-top .topbar-right li p {
  color: #ffffff;
}

.navbar-top.style-2 .media-body h6 {
  color: var(--ink);
}

.navbar-top.style-2 .media-body p {
  color: var(--muted);
}

.navbar-area {
  top: 0;
  position: sticky;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(223, 230, 238, 0.9);
  backdrop-filter: blur(16px);
  box-shadow: 0 12px 30px rgba(4, 10, 114, 0.06);
}

.navbar-area.sticky-active {
  background: rgba(255, 255, 255, 0.96);
}

.navbar-area .nav-container,
.navbar-area .nav-container.navbar-bg {
  min-height: 64px;
  padding: 0 18px;
  background: transparent;
}

.navbar-area .nav-shell {
  width: 100%;
  display: flex;
  align-items: center;
}

.navbar-area .nav-container.navbar-bg:after {
  display: none;
}

.navbar-area .nav-container .navbar-collapse .navbar-nav {
  text-align: center !important;
}

.navbar-area .nav-container .navbar-collapse .navbar-nav li {
  line-height: 64px;
}

.navbar-area .nav-container .navbar-collapse .navbar-nav li + li {
  margin-left: 4px;
}

.navbar-area .nav-container .navbar-collapse .navbar-nav li a {
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
  padding: 8px 12px;
  border-radius: 6px;
}

.navbar-area .nav-container .navbar-collapse .navbar-nav li:hover a {
  color: var(--main-color);
  background: rgba(19, 224, 247, 0.08);
}

.navbar-area .nav-right-part-desktop {
  margin-left: 18px;
}

.navbar-area .nav-right-part .btn {
  height: 42px;
  min-height: 42px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  color: #ffffff !important;
  background: var(--ink) !important;
  border-color: var(--ink) !important;
}

.navbar-area .nav-right-part .btn:hover {
  color: #ffffff !important;
  background: var(--main-color) !important;
  border-color: var(--main-color) !important;
}

.banner-area.banner-area-2 {
  min-height: 720px;
  padding: 150px 0 150px;
  background-size: cover;
  background-position: center right;
  overflow: hidden;
}

.hero-frame {
  position: absolute;
  right: 7%;
  top: 17%;
  width: min(430px, 35vw);
  aspect-ratio: 1 / 1;
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 8px;
  z-index: 2;
  pointer-events: none;
}

.hero-frame:before,
.hero-frame:after {
  content: "";
  position: absolute;
  border-radius: 8px;
}

.hero-frame:before {
  inset: 22px;
  border: 1px solid rgba(19, 224, 247, 0.42);
}

.hero-frame:after {
  right: -22px;
  bottom: -22px;
  width: 120px;
  height: 120px;
  background: rgba(0, 147, 245, 0.75);
}

.banner-area.banner-area-2:before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.92) 48%, rgba(19, 224, 247, 0.1) 49%, rgba(4, 10, 114, 0.1) 100%);
  z-index: 1;
}

.banner-area .bg-overlay-gradient,
.banner-area .banner-bg-img {
  opacity: 0;
}

.banner-inner {
  position: relative;
  z-index: 3;
  max-width: 640px;
  padding: 28px 0;
}

.banner-inner .sub-title {
  display: inline-flex;
  color: var(--main-color);
  background: rgba(19, 224, 247, 0.1);
  border: 1px solid rgba(19, 224, 247, 0.25);
  border-radius: 6px;
  padding: 8px 12px;
  margin-bottom: 18px;
  font-size: 14px;
}

.banner-inner .title {
  color: var(--ink);
  font-size: clamp(42px, 6vw, 74px);
  line-height: 0.98;
  font-weight: 800;
}

.banner-inner .title span {
  color: var(--accent);
}

.banner-inner .content {
  color: var(--muted);
  max-width: 580px;
  font-size: 17px;
  margin-top: 24px;
}

.banner-inner .btn-wrap {
  gap: 12px;
  display: flex;
  flex-wrap: wrap;
  margin-top: 34px;
}

.hero-graphic-wrap {
  position: relative;
  z-index: 3;
  padding: 24px;
}

.hero-graphic-wrap:before {
  content: "";
  position: absolute;
  inset: 56px 0 0 56px;
  border-radius: 34px;
  background: linear-gradient(135deg, rgba(19, 224, 247, 0.26), rgba(0, 147, 245, 0.18));
  z-index: -1;
}

.hero-graphic-wrap img {
  width: 100%;
  border-radius: 28px;
  box-shadow: 0 30px 80px rgba(4, 10, 114, 0.2);
}

.intro-area {
  background: transparent;
}

.intro-area.mg-top--100 {
  margin-top: -68px;
  position: relative;
  z-index: 4;
}

.intro-grid {
  align-items: stretch;
}

.intro-tile {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.single-intro-inner,
.single-service-inner,
.single-contact-inner,
.single-work-inner .details-wrap,
.single-accordion-inner {
  border-radius: 8px;
  border: 1px solid var(--line);
  background: var(--panel);
  box-shadow: var(--shadow-card);
}

.single-intro-inner {
  min-height: 238px;
  padding: 28px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.single-intro-inner:hover,
.single-service-inner:hover,
.single-contact-inner:hover {
  transform: translateY(-5px);
  border-color: rgba(19, 224, 247, 0.38);
  box-shadow: var(--shadow-soft);
}

.single-intro-inner .thumb {
  margin-bottom: 18px;
}

.single-intro-inner .thumb img,
.single-service-inner .icon-box-bg img {
  width: 54px;
  height: 54px;
  object-fit: contain;
  filter: saturate(1.2);
}

.single-intro-inner h4,
.single-service-inner .details h3,
.single-service-inner .details-hover h3,
.single-contact-inner h3 {
  color: var(--ink);
  font-weight: 800;
}

.about-area,
.skill-area,
.faq-area,
.team-area,
.service-area {
  position: relative;
}

.about-area {
  background:
    radial-gradient(circle at 8% 12%, rgba(19, 224, 247, 0.14), transparent 24%),
    linear-gradient(135deg, #f7fbff 0%, #ffffff 46%, #eef8ff 100%);
}

.about-area .container > .row {
  align-items: center;
}

.about-area .section-title {
  background: var(--ink);
  border-radius: 8px;
  padding: 46px;
  margin-left: -74px;
  position: relative;
  z-index: 3;
  box-shadow: var(--shadow-soft);
}

.about-area .section-title:before {
  content: "";
  position: absolute;
  left: 18px;
  top: 18px;
  right: -18px;
  bottom: -18px;
  border: 1px solid rgba(0, 147, 245, 0.45);
  border-radius: 8px;
  z-index: -1;
}

.about-area .section-title .title,
.about-area .section-title .content,
.about-area .section-title .content-strong {
  color: #ffffff;
}

.about-area .section-title .sub-title {
  color: var(--main-color2);
}

.about-area .mask-bg-wrap .thumb,
.about-area .about-mask-bg-wrap .thumb {
  border: 0;
  transform: none;
  background: transparent;
}

.about-redesign .mask-bg-wrap {
  padding: 34px 0 34px 34px;
}

.about-redesign .about-visual-panel:before {
  content: "";
  position: absolute;
  inset: 0 54px 0 0;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(4, 10, 114, 0.96), rgba(0, 147, 245, 0.92));
  box-shadow: 0 30px 80px rgba(4, 10, 114, 0.22);
  z-index: 0;
}

.about-redesign .about-visual-panel:after {
  right: 10px;
  bottom: 0;
  width: 34%;
  height: 34%;
  background: #13e0f7;
  opacity: 0.95;
  z-index: 1;
}

.about-redesign .about-visual-panel .thumb {
  position: relative;
  z-index: 2;
  margin-left: 28px;
  border-radius: 8px;
  clip-path: polygon(0 0, 90% 0, 100% 16%, 100% 100%, 11% 100%, 0 86%);
  box-shadow: 0 26px 70px rgba(4, 10, 114, 0.24);
}

.about-redesign .about-visual-panel .thumb img {
  min-height: 520px;
  object-fit: cover;
  object-position: center;
  transform: scale(1.03);
}

.about-redesign .about-copy-panel,
.inner-about .about-copy-panel {
  padding-left: 46px !important;
  padding-right: 46px !important;
}

.about-visual-panel,
.skill-visual-panel,
.why-visual-panel {
  position: relative;
}

.about-visual-panel:after,
.skill-visual-panel:after,
.why-visual-panel:after {
  content: "";
  position: absolute;
  width: 36%;
  height: 42%;
  right: -18px;
  bottom: -18px;
  border-radius: 8px;
  background: var(--main-color2);
  z-index: -1;
}

.skill-area,
.team-area.info-box-two,
.faq-area {
  background:
    linear-gradient(180deg, rgba(19, 224, 247, 0.045), rgba(255, 255, 255, 0));
}

.service-area {
  background:
    linear-gradient(135deg, rgba(19, 224, 247, 0.08) 0%, rgba(255, 255, 255, 0.92) 42%, rgba(0, 147, 245, 0.12) 100%),
    var(--paper) !important;
  background-blend-mode: normal;
}

.service-area .section-title {
  border-left: 5px solid var(--main-color);
  padding-left: 24px;
}

.service-area .section-title .btn-wrap {
  border-left: 1px solid var(--line);
}

.service-heading-panel {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 28px;
  box-shadow: var(--shadow-card);
}

.service-board {
  row-gap: 30px;
}

.service-card-redesign {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.skill-area {
  background:
    radial-gradient(circle at 86% 18%, rgba(19, 224, 247, 0.18), transparent 28%),
    linear-gradient(90deg, #f6f8fb 0%, #f6f8fb 48%, var(--ink) 48%, var(--ink) 100%);
}

.skill-redesign .container > .row {
  min-height: 520px;
}

.skill-redesign .section-title,
.skill-redesign .skill-progress-area {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 30px;
  box-shadow: var(--shadow-card);
}

.skill-redesign .section-title {
  margin-bottom: 18px !important;
}

.skill-redesign .section-title .sub-title {
  color: var(--main-color);
}

.skill-redesign .section-title .title,
.skill-redesign .section-title .content,
.skill-redesign .single-progressbar h6 {
  color: var(--ink);
}

.skill-redesign .section-title .content {
  color: var(--muted);
}

.skill-redesign .progress-bg {
  background: #e8edf3;
  height: 12px;
}

.skill-redesign .progress-count-wrap {
  color: var(--ink);
  top: -32px;
}

.skill-redesign .about-mask-bg-wrap {
  width: 100%;
  padding: 34px 34px 34px 0;
  position: relative;
}

.skill-redesign .about-mask-bg-wrap .shape-image,
.skill-redesign .about-mask-bg-wrap .shape-image-sm {
  display: none;
}

.skill-redesign .about-mask-bg-wrap .thumb {
  position: relative;
  z-index: 2;
  border: 0;
  border-radius: 8px;
  overflow: hidden;
  transform: none;
  box-shadow: 0 28px 75px rgba(0, 0, 0, 0.26);
  clip-path: polygon(10% 0, 100% 0, 100% 86%, 88% 100%, 0 100%, 0 14%);
}

.skill-redesign .about-mask-bg-wrap .thumb img {
  width: 100%;
  min-height: 500px;
  object-fit: cover;
  object-position: center;
  transform: scale(1.04);
}

.skill-visual-panel:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  width: auto;
  height: auto;
  border: 0;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(19, 224, 247, 0.95), rgba(0, 147, 245, 0.92));
  z-index: 0;
}

.skill-visual-panel:after {
  right: 0;
  bottom: 12px;
  width: 160px;
  height: 160px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.28);
  z-index: 1;
}

.section-title .sub-title {
  color: var(--main-color);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 13px;
}

.section-title .sub-title:before,
.section-title .sub-title:after {
  background: var(--main-color) !important;
}

.section-title .title {
  color: var(--ink);
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.12;
  font-weight: 800;
}

.section-title.style-white .title,
.section-title.style-white .content,
.section-title.style-white .small-title {
  color: #ffffff;
}

.section-title.style-white .sub-title {
  color: var(--main-color2);
}

.mask-bg-wrap .thumb,
.about-mask-bg-wrap .thumb,
.faq-image-wrap .thumb {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.mask-bg-wrap .thumb img,
.about-mask-bg-wrap .thumb img,
.faq-image-wrap .thumb > img {
  width: 100%;
  border-radius: 8px;
}

.shape-image,
.shape-image-sm,
.hills-line {
  opacity: 0.2;
  filter: grayscale(1);
}

.single-service-inner {
  min-height: 330px;
  padding: 34px 28px;
  overflow: hidden;
  text-align: left !important;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.single-service-inner:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--main-color), var(--main-color2), var(--accent));
}

.single-service-inner .icon-box-bg {
  width: 74px;
  height: 74px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  margin: 0 0 24px;
  background: rgba(19, 224, 247, 0.09);
}

.single-service-inner .details-hover-wrap {
  background: var(--ink);
  border-radius: 8px;
}

.single-service-inner .details-hover h3,
.single-service-inner .details-hover p {
  color: #ffffff;
}

.progress-bg {
  background: #e8edf3;
  border-radius: 6px;
  height: 14px;
}

.progress-rate {
  background: linear-gradient(90deg, var(--main-color), var(--main-color2));
  border-radius: 6px;
}

.progress-count-wrap {
  color: var(--ink);
  font-weight: 800;
}

.project-area.half-bg-top {
  background: linear-gradient(90deg, var(--ink), #0093F5);
  padding-bottom: 90px;
}

.project-area.half-bg-top:after {
  display: none;
}

.single-project-inner {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.single-project-inner .thumb img {
  min-height: 330px;
  object-fit: cover;
  background: #f4fbff;
}

.single-project-inner .details-wrap {
  background: #ffffff;
  border-radius: 0;
}

.project-showcase .single-project-inner .details-wrap {
  margin: -54px 18px 0;
  position: relative;
  z-index: 3;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.single-project-inner .details-inner h3 a {
  color: var(--ink);
}

.single-project-inner .details-inner p {
  color: var(--muted);
}

.slider-control-round .owl-nav button {
  border-radius: 6px;
  background: #ffffff;
  color: var(--ink);
}

.slider-control-round .owl-nav button:hover {
  background: var(--main-color);
  color: #ffffff;
}

.accordion-item.single-accordion-inner {
  overflow: hidden;
  margin-bottom: 14px;
}

.accordion-button,
.accordion-button:not(.collapsed) {
  color: var(--ink);
  background: #ffffff;
  box-shadow: none;
  font-weight: 800;
}

.accordion-button:not(.collapsed) {
  border-bottom: 1px solid var(--line);
}

.accordion-body {
  color: var(--muted);
}

.faq-area {
  background:
    linear-gradient(180deg, #ffffff, #eef6f5);
}

.faq-area .faq-image-wrap .thumb {
  transform: rotate(1.5deg);
  border: 10px solid #ffffff;
}

.faq-area .faq-image-wrap .thumb img {
  width: 100%;
  object-fit: cover;
}

.faq-area .accordion {
  border-left: 4px solid var(--main-color2);
  padding-left: 20px;
}

.faq-redesign .section-title {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 28px;
  box-shadow: var(--shadow-card);
}

.how-it-work-area {
  background:
    linear-gradient(180deg, #ffffff 0%, #f6f8fb 100%);
}

.how-it-work-area:not(.bg-blue) .how-it-work-inner {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 46px 28px 20px;
  box-shadow: var(--shadow-card);
}

.process-redesign .single-work-inner .details-wrap {
  min-height: 188px;
}

.process-home {
  background:
    radial-gradient(circle at 12% 18%, rgba(19, 224, 247, 0.22), transparent 28%),
    linear-gradient(135deg, #040A72 0%, #0093F5 100%);
  overflow: hidden;
}

.process-home .section-title {
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 48px;
}

.process-home .section-title .sub-title {
  color: var(--main-color2);
}

.process-home .section-title .title,
.process-home .section-title .content {
  color: #ffffff;
}

.process-home .section-title .content {
  color: rgba(255, 255, 255, 0.76);
}

.process-home .process-flow {
  position: relative;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  padding: 52px 36px 42px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(10px);
  counter-reset: processStep;
}

.process-home .process-flow:before {
  content: "";
  position: absolute;
  left: 9%;
  right: 9%;
  top: 126px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(0, 147, 245, 0.8), rgba(19, 224, 247, 0.9), transparent);
}

.process-home .hills-line {
  display: none;
}

.process-home .process-card {
  counter-increment: processStep;
  padding-top: 0;
  margin-bottom: 0;
}

.process-home .process-card .count-inner {
  position: relative;
  z-index: 2;
  width: 84px;
  height: 84px;
  line-height: 84px;
  margin: 0 auto 28px;
  background: #ffffff;
  color: var(--main-color);
  border: 1px solid rgba(255, 255, 255, 0.45);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.22);
}

.process-home .process-card .count-inner:before {
  content: counter(processStep, decimal-leading-zero);
  position: absolute;
  left: -12px;
  top: -12px;
  width: 34px;
  height: 34px;
  line-height: 34px;
  border-radius: 50%;
  background: var(--main-color2);
  color: var(--ink);
  font-size: 12px;
  font-weight: 800;
}

.process-home .process-card .count-inner i {
  color: var(--main-color);
  font-size: 38px;
}

.process-home .process-card .count-inner img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  border-radius: 12px;
}

.process-home .process-card .details-wrap {
  min-height: 210px;
  padding: 0;
  background: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 8px;
  box-shadow: 0 20px 55px rgba(0, 0, 0, 0.18);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.process-home .process-card:hover .details-wrap {
  transform: translateY(-8px);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.24);
}

.process-home .process-card .details-inner {
  padding: 30px 24px;
}

.process-home .process-card h4 {
  color: var(--ink);
  font-size: 24px;
  line-height: 1.2;
  margin-bottom: 14px;
}

.process-home .process-card p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
  margin: 0;
}

.process-home .process-card .details-wrap:after {
  content: "";
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 0;
  height: 4px;
  border-radius: 4px 4px 0 0;
  background: linear-gradient(90deg, var(--main-color), var(--main-color2));
}

.how-it-work-area.bg-blue {
  background: var(--ink) !important;
}

.how-it-work-area.bg-blue .single-work-inner .details-wrap {
  background: #ffffff;
}

.single-work-inner.style-two .count-inner,
.single-work-inner.style-three .count-inner {
  background: var(--main-color);
  color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 12px 26px rgba(19, 224, 247, 0.22);
}

.single-work-inner.style-two .count-inner h2,
.single-work-inner.style-three .count-inner i {
  color: #ffffff;
}

.call-to-action-area {
  background-size: cover;
  background-position: center;
}

.call-to-action-area.bg-overlay-base:after {
  background:
    linear-gradient(110deg, rgba(0, 147, 245, 0.9), rgba(4, 10, 114, 0.92));
}

.cta-redesign .single-call-to-action-inner {
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  padding: 44px 34px;
  backdrop-filter: blur(8px);
}

.single-call-to-action-inner h5 {
  color: var(--main-color2);
}

.single-call-to-action-inner h2 {
  color: #ffffff;
  font-weight: 800;
}

.breadcrumb-area {
  padding: 82px 0 70px;
  background: var(--ink);
  overflow: hidden;
}

.breadcrumb-area .banner-bg-img {
  opacity: 0.16;
  filter: grayscale(1);
}

.breadcrumb-area:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(4, 10, 114, 0.92), rgba(19, 224, 247, 0.72));
}

.breadcrumb-area .breadcrumb-inner {
  position: relative;
  z-index: 2;
}

.breadcrumb-area .page-title {
  color: #ffffff;
  font-size: clamp(38px, 5vw, 58px);
  font-weight: 800;
  margin-bottom: 18px;
}

.breadcrumb-area .page-list li,
.breadcrumb-area .page-list li a {
  color: rgba(255, 255, 255, 0.86);
}

.page-hero .breadcrumb-inner {
  text-align: left !important;
}

.page-hero .page-list {
  display: inline-flex;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  padding: 10px 16px;
}

.why-redesign {
  background: #ffffff;
}

.why-copy-panel {
  background: #f6f8fb;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 42px !important;
  box-shadow: var(--shadow-card);
}

.why-redesign .single-choose-inner {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
}

.inner-services .service-board {
  counter-reset: serviceNumber;
}

.inner-services .service-card-redesign {
  counter-increment: serviceNumber;
}

.inner-services .service-card-redesign:after {
  content: counter(serviceNumber, decimal-leading-zero);
  position: absolute;
  right: 22px;
  bottom: 18px;
  color: rgba(4, 10, 114, 0.08);
  font-size: 54px;
  font-weight: 800;
  line-height: 1;
}

.single-contact-inner {
  min-height: 280px;
  padding: 38px 28px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.single-contact-inner .icon-box {
  width: 78px;
  height: 78px;
  line-height: 78px;
  border-radius: 8px;
  background: rgba(19, 224, 247, 0.1);
  color: var(--main-color);
}

.single-contact-inner .details-inner p,
.single-contact-inner .details-inner a {
  color: var(--muted);
}

.contact-redesign {
  background:
    linear-gradient(180deg, #ffffff 0%, #f6f8fb 100%);
}

.contact-info-grid {
  row-gap: 30px;
}

.contact-panel {
  text-align: left !important;
}

.contact-panel .icon-box {
  margin-left: 0;
  margin-right: 0;
}

.footer-area {
  padding-top: 80px;
  background-color: var(--ink);
  background-blend-mode: multiply;
}

.footer-area:after {
  background:
    radial-gradient(circle at 14% 18%, rgba(19, 224, 247, 0.18), transparent 28%),
    linear-gradient(135deg, rgba(4, 10, 114, 0.96), rgba(4, 10, 114, 0.99));
}

.footer-main {
  position: relative;
  z-index: 2;
  row-gap: 24px;
  align-items: stretch;
}

.footer-card {
  height: 100%;
  margin-bottom: 44px !important;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(10px);
}

.footer-about-card {
  background:
    linear-gradient(135deg, rgba(19, 224, 247, 0.16), rgba(255, 255, 255, 0.07));
}

.footer-brand {
  margin-bottom: 24px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.footer-brand img {
  width: 190px;
  max-width: 100%;
  height: auto;
}

.footer-area .widget {
  margin-bottom: 0;
}

.footer-area .widget-title {
  color: #ffffff;
  font-weight: 800;
  margin-bottom: 18px;
  padding-bottom: 14px;
}

.footer-area .widget-title:after {
  content: "";
  display: block;
  width: 46px;
  height: 3px;
  margin-top: 13px;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--main-color), var(--main-color2));
}

.footer-area .widget_about .details p,
.footer-area .widget_nav_menu ul li a {
  color: rgba(255, 255, 255, 0.76);
}

.footer-area .widget_nav_menu ul li {
  margin-bottom: 11px;
  padding-left: 20px;
}

.footer-area .widget_nav_menu ul li:after {
  top: 12px;
  width: 7px;
  height: 7px;
  background: var(--main-color);
  border-radius: 50%;
}

.footer-area .widget_nav_menu ul li:hover a {
  color: #ffffff;
  padding-left: 3px;
}

.footer-bottom {
  background: rgba(0, 0, 0, 0.2);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  z-index: 2;
  padding: 18px 0;
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.76);
  margin: 0;
}

@media (max-width: 991px) {
  .topbar-grid {
    justify-content: center;
  }

  .navbar-top.style-2 .col-lg-3:nth-child(2) {
    margin-left: 0;
  }

  .navbar-area .nav-container,
  .navbar-area .nav-container.navbar-bg {
    min-height: 70px;
  }

  .navbar-area .nav-shell {
    flex-wrap: wrap;
  }

  .hero-frame {
    display: none;
  }

  .navbar-area .navbar-collapse {
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow-card);
    padding: 10px 0;
    margin-top: 12px;
  }

  .navbar-area .nav-container .navbar-collapse .navbar-nav li {
    display: block;
    line-height: 1.2;
  }

  .navbar-area .nav-container .navbar-collapse .navbar-nav li + li {
    margin-left: 0;
  }

  .navbar-area .nav-container .navbar-collapse .navbar-nav li a {
    display: block;
    padding: 13px 18px;
  }

  .banner-area.banner-area-2 {
    min-height: auto;
    padding: 110px 0 120px;
  }

  .banner-area.banner-area-2:before {
    background: rgba(255, 255, 255, 0.92);
  }

  .intro-area.mg-top--100 {
    margin-top: -42px;
  }

  .section-title .title {
    font-size: 34px;
  }

  .about-area .section-title {
    margin-left: 0;
    margin-top: 28px;
    padding: 34px;
  }

  .about-redesign .mask-bg-wrap,
  .skill-redesign .about-mask-bg-wrap {
    padding: 22px;
  }

  .about-redesign .about-visual-panel:before {
    inset: 0;
  }

  .about-redesign .about-visual-panel .thumb {
    margin-left: 0;
  }

  .about-redesign .about-visual-panel .thumb img {
    min-height: 380px;
  }

  .about-redesign .about-copy-panel,
  .inner-about .about-copy-panel {
    padding-left: 34px !important;
    padding-right: 34px !important;
  }

  .skill-area {
    background: var(--ink);
  }

  .skill-area .about-mask-bg-wrap .thumb {
    transform: none;
  }

  .skill-redesign .section-title,
  .skill-redesign .skill-progress-area {
    padding: 24px;
  }

  .skill-redesign .about-mask-bg-wrap .thumb img {
    min-height: 360px;
  }

  .service-area .section-title .btn-wrap {
    border-left: 0;
  }

  .project-showcase .single-project-inner .details-wrap {
    margin: -36px 14px 0;
  }

  .process-home .process-flow {
    padding: 34px 22px 12px;
  }

  .process-home .process-flow:before {
    display: none;
  }

  .process-home .process-card {
    margin-bottom: 28px;
  }

  .process-home .process-card .details-wrap {
    min-height: auto;
  }

  .breadcrumb-area {
    padding: 70px 0 58px;
  }
}

@media (max-width: 575px) {
  .btn {
    width: 100%;
    text-align: center;
  }

  .banner-inner .btn-wrap {
    display: block;
  }

  .banner-inner .btn-wrap .btn + .btn {
    margin-top: 10px;
  }

  .single-intro-inner,
  .single-service-inner,
  .single-contact-inner {
    padding: 24px 20px;
  }

  .about-area .section-title {
    padding: 28px 22px;
  }

  .about-area .section-title:before {
    display: none;
  }

  .about-redesign .mask-bg-wrap,
  .skill-redesign .about-mask-bg-wrap {
    padding: 14px;
  }

  .about-redesign .about-visual-panel .thumb,
  .skill-redesign .about-mask-bg-wrap .thumb {
    clip-path: polygon(0 0, 100% 0, 100% 90%, 88% 100%, 0 100%);
  }

  .about-area .mask-bg-wrap .thumb,
  .about-area .about-mask-bg-wrap .thumb,
  .faq-area .faq-image-wrap .thumb {
    transform: none;
  }

  .navbar-area .logo img {
    max-width: 168px !important;
  }

  .breadcrumb-area {
    padding: 58px 0 46px;
  }

  .process-home .section-title .title {
    font-size: 36px;
  }

  .process-home .process-flow {
    padding: 26px 16px 2px;
  }

  .process-home .process-card .count-inner {
    width: 74px;
    height: 74px;
    line-height: 74px;
    margin-bottom: 18px;
  }

  .process-home .process-card h4 {
    font-size: 22px;
  }
}
