.download-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.download-list .download-item {
  position: relative;
  width: 140px;
  height: 140px;
  background: #fff;
  border-radius: 8px;
  cursor: pointer;
}
.download-list .download-item .download-item-card {
  z-index: 2;
  opacity: 1;
  border-radius: 8px;
  transform: scale(1);
}
.download-list .download-item:hover .download-item-card {
  opacity: 0;
  transform: scale(0);
}
.download-list .download-item:hover .download-item-code {
  opacity: 1;
  transform: scale(1);
  z-index: 3;
}
.download-list .download-item-card,
.download-list .download-item-code {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  transition: all .2s ease;
}
.download-list .download-item .download-item-code {
  z-index: 1;
  opacity: 0;
  transform: scale(0);
}
.download-list .download-item .download-item-content {
  margin-top: 10px;
  color: #646a73;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.57;
}
.download-list .download-item .download-item-code .download-item-content {
  margin-top: 0;
}
.btn-download-wrapper  {
  display: none;
}

@media screen and (max-width: 600px) {
	.download-list {
		display: none;
	}
  .btn-download-wrapper  {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .btn-download {
    margin: 0 auto;
    display: inline-block;
    border-radius: 40px;
    background: #fff;
    color: #646a73;
    padding: 15px 40px;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.5;
    animation: scale-animation 1.5s infinite ease-in-out;
  }
  .btn-download.btn-blue {
    background: #0f6eff;
    color: #fff;
  }
}
@keyframes scale-animation {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(0.9);
  }
}

:root {
  --cs-primary: #0f6eff;
  --cs-primary-dark: #0a3f95;
  --cs-accent: #18b98f;
  --cs-warm: #ff8a4c;
  --cs-ink: #152238;
  --cs-muted: #65748b;
  --cs-soft: #f5f8fc;
  --cs-line: #e6edf6;
  --cs-card-shadow: 0 18px 45px rgba(21, 34, 56, 0.1);
}

html {
  scroll-behavior: smooth;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  color: var(--cs-muted);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC",
    "Hiragino Sans GB", "Microsoft YaHei", Arial, sans-serif;
  background: #ffffff;
}

body,
html {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

img,
svg,
video,
canvas {
  max-width: 100%;
  height: auto;
}

h1,
h2,
h3,
h4,
h5,
h6,
.content_box h6,
.single_testimonial p {
  font-family: inherit;
}

.section-padding {
  padding: 96px 0;
}

.section-padding2 {
  padding: 96px 0 48px;
}

.primary_bg {
  background:
    linear-gradient(180deg, rgba(245, 248, 252, 0.96), rgba(255, 255, 255, 0.98));
}

.third_bg {
  background:
    radial-gradient(circle at 18% 12%, rgba(24, 185, 143, 0.25), transparent 30%),
    linear-gradient(135deg, #0b3f91 0%, #0f6eff 55%, #18b98f 100%);
}

.header_area {
  padding: 14px 0;
  background: rgba(16, 24, 40, 0.72);
  backdrop-filter: blur(12px);
}

.header_area .row {
  align-items: center;
}

.header_area.sticky {
  padding: 8px 0;
  background: #ffffff;
  box-shadow: 0 12px 35px rgba(21, 34, 56, 0.09);
}

.header_area.sticky .main_menu ul li a {
  color: var(--cs-ink);
}

.logo {
  max-width: 150px;
}

.main_menu ul li a {
  margin: 0 2px;
  padding: 12px 13px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 16px;
  font-weight: 600;
}

.main_menu ul li a:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.16);
}

.header_area.sticky .main_menu ul li a:hover {
  color: var(--cs-primary);
  background: rgba(15, 110, 255, 0.08);
}

.wow {
  visibility: visible !important;
  opacity: 1 !important;
  animation-name: none !important;
  transform: none !important;
}

.welcome_area {
  min-height: 860px;
  height: auto;
  overflow: hidden;
}

.welcome_area::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(8, 23, 50, 0.8) 0%, rgba(10, 63, 149, 0.62) 48%, rgba(15, 110, 255, 0.2) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.14), rgba(0, 0, 0, 0.02));
}

.welcome_area .container {
  position: relative;
  z-index: 1;
}

.title h1 {
  max-width: 720px;
  font-size: 64px;
  line-height: 1.16;
  letter-spacing: 0;
  word-break: keep-all;
}

.title h6 {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 22px;
  line-height: 1.75;
}

.title h6.splitting .word {
  display: inline;
}

.title h6.splitting .char {
  color: inherit;
}

.title h6.splitting .char::after {
  display: none;
}

.apps {
  text-align: center;
}

.apps .apps_img,
.apps .mobile_img {
  width: min(100%, 430px);
}

.apps img,
.feature_tab_img_right img,
.feature_tab_img_left img,
.mobile_feature_img img,
.mobile_feature_img2 img,
img.feature_img_right,
img.feature_img_left {
  filter: drop-shadow(0 30px 55px rgba(7, 18, 40, 0.2));
}

.download-list .download-item {
  width: 152px;
  height: 152px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 20px 55px rgba(5, 21, 48, 0.2);
  backdrop-filter: blur(12px);
}

.download-list .download-item .download-item-card,
.download-list .download-item-card,
.download-list .download-item-code {
  border-radius: 16px;
}

.download-list .download-item .download-item-content {
  color: var(--cs-ink);
}

.single_core_feature,
.single_more_feature,
.single_about,
.card,
.single_testimonial {
  border: 1px solid var(--cs-line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 10px 28px rgba(21, 34, 56, 0.06);
}

.single_core_feature {
  min-height: 290px;
  margin-bottom: 30px;
}

.single_core_feature:hover,
.single_more_feature:hover,
.single_about:hover,
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--cs-card-shadow);
}

.single_core_feature,
.single_more_feature,
.single_about,
.card {
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.single_core_feature:hover,
.single_more_feature:hover,
.single_about:hover {
  border-color: rgba(15, 110, 255, 0.18);
}

.icon_box {
  background:
    linear-gradient(135deg, var(--cs-primary), var(--cs-accent));
  box-shadow: 0 14px 30px rgba(15, 110, 255, 0.24);
}

.content_box h6 {
  color: var(--cs-ink);
}

.content_box p,
.heading p,
.card-body,
.single_footer ul li a,
p.footer_pera {
  color: var(--cs-muted);
}

.heading h1 {
  color: var(--cs-ink);
  letter-spacing: 0;
}

.heading p {
  max-width: 760px;
  margin-right: auto;
  margin-left: auto;
}

.feature_area {
  overflow: hidden;
}

.feature_area .heading {
  position: relative;
  z-index: 1;
  padding: 42px 0;
}

.feature_area .heading::before {
  position: absolute;
  top: 14px;
  left: -28px;
  z-index: -1;
  width: 74px;
  height: 74px;
  border-radius: 24px;
  content: "";
  background: rgba(24, 185, 143, 0.12);
  transform: rotate(12deg);
}

.single_more_feature {
  width: 100%;
  height: 210px;
  padding: 28px 28px 28px 116px;
}

.more_feature_area .col-lg-4 {
  display: flex;
}

.more_feature_icon {
  top: 32px;
  left: 28px;
}

.about_area {
  padding: 96px 0 66px;
}

.single_about {
  width: 100%;
  height: 300px;
  padding: 34px 26px;
}

.about_area .col-lg-4 {
  display: flex;
}

.single_about_icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 86px;
  max-width: 86px;
  height: 86px;
  border-radius: 24px;
  background: #f4f8ff;
}

.single_about.about_line::after {
  opacity: 0.28;
}

.single_testimonial {
  min-height: 285px;
  padding: 34px;
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.13);
  box-shadow: none;
  backdrop-filter: blur(14px);
}

.single_testimonial p {
  color: rgba(255, 255, 255, 0.92);
  font-style: normal;
  font-weight: 500;
}

.faq_area .card {
  overflow: hidden;
  border-color: var(--cs-line);
}

button.btn.btn-link.btn-block.text-left {
  padding: 24px 58px 24px 24px;
  color: var(--cs-ink);
  white-space: normal;
}

.faq_area button.btn.btn-link::after {
  right: 24px;
  color: var(--cs-primary);
}

.counter_area {
  padding: 96px 0;
}

.screen_carousel {
  margin-top: 0;
}

.screen_carousel .single_screen {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 360px;
  padding: 18px;
  border: 1px solid var(--cs-line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: var(--cs-card-shadow);
}

.screen_carousel .single_screen img {
  width: auto;
  max-height: 420px;
  border-radius: 6px;
  object-fit: contain;
}

.footer {
  background: #101828;
  color: rgba(255, 255, 255, 0.72);
}

.footer.footer1.section-padding2 {
  padding: 76px 0 32px;
}

.single_footer h3 {
  color: #ffffff;
  font-size: 20px;
}

.single_footer ul li a,
p.footer_pera,
.footer p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 16px;
  line-height: 1.9;
}

.single_footer ul li a:hover {
  color: #ffffff;
}

.footer .container:last-child {
  margin-top: 32px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-download {
  box-shadow: 0 15px 35px rgba(21, 34, 56, 0.16);
}

@media screen and (max-width: 1023px) {
  .header_area {
    padding: 10px 0;
    background: rgba(16, 24, 40, 0.88);
    backdrop-filter: blur(12px);
  }

  .header_area .container,
  .welcome_area .container,
  .feature_area .container,
  .core_feature_area .container,
  .more_feature_area .container,
  .about_area .container,
  .testimonial_area .container,
  .faq_area .container,
  .counter_area .container,
  .footer .container {
    max-width: 100%;
  }

  .logo {
    max-width: 138px;
  }

  .slicknav_menu {
    background: transparent;
    text-align: right;
  }

  .slicknav_btn {
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.14);
  }

  .slicknav_nav {
    margin-top: 12px;
    padding: 12px;
    border-radius: 8px;
    background: #ffffff;
    box-shadow: var(--cs-card-shadow);
    text-align: left;
  }

  .slicknav_nav a {
    color: var(--cs-ink);
    font-weight: 600;
  }

  .welcome_area {
    min-height: auto;
  }

  .apps {
    margin-top: 44px;
  }

  .mobile_feature_img,
  .mobile_feature_img2 {
    margin-bottom: 36px;
    text-align: center;
  }

  .mobile_feature_img img,
  .mobile_feature_img2 img {
    width: min(82vw, 340px);
  }
}

@media screen and (max-width: 767px) {
  .wow,
  [data-scroll] {
    visibility: visible !important;
    opacity: 1 !important;
    animation: none !important;
    transform: none !important;
  }

  .section-padding,
  .section-padding2,
  .about_area,
  .counter_area {
    padding: 68px 0;
  }

  .welcome_area {
    padding: 126px 0 64px;
    text-align: center;
  }

  .title h1 {
    font-size: 38px;
    line-height: 1.22;
    margin-right: auto;
    margin-left: auto;
  }

  .title h6 {
    max-width: 100%;
    font-size: 17px;
    line-height: 1.75;
  }

  .title h6 br {
    display: none;
  }

  .apps .mobile_img {
    width: min(78vw, 300px);
  }

  .download-list {
    justify-content: center;
  }

  .heading h1 {
    font-size: 32px;
    line-height: 1.28;
  }

  .heading p {
    font-size: 17px;
    line-height: 1.75;
  }

  .single_core_feature,
  .single_more_feature,
  .single_about,
  .single_testimonial {
    height: auto;
    min-height: auto;
  }

  .single_more_feature {
    height: auto;
    padding: 30px;
    text-align: center;
  }

  .more_feature_icon {
    position: static;
    margin-bottom: 22px;
  }

  .feature_area .heading {
    padding: 8px 0 0;
    text-align: center;
  }

  .feature_area.section-padding {
    padding: 58px 0;
  }

  .feature_area .space-30 {
    height: 10px;
  }

  .feature_area .heading::before {
    display: none;
  }

  .btn-download {
    width: min(100%, 320px);
    padding: 14px 22px;
    color: var(--cs-ink);
    font-size: 16px;
  }

  .screen_carousel .single_screen {
    min-height: 280px;
  }

  .screen_carousel .single_screen img {
    max-height: 340px;
  }

  .footer.footer1.section-padding2 {
    padding: 56px 0 28px;
  }

  .single_footer {
    margin-bottom: 28px;
  }

  .footer p {
    overflow-wrap: anywhere;
  }
}

@media screen and (max-width: 480px) {
  .container {
    padding-right: 16px;
    padding-left: 16px;
  }

  .logo {
    max-width: 126px;
  }

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

  .title h6 {
    font-size: 16px;
  }

  .heading h1 {
    font-size: 30px;
  }

  .btn-download {
    width: 100%;
  }

  button.btn.btn-link.btn-block.text-left {
    font-size: 17px;
    line-height: 1.55;
  }
}

@media screen and (max-width: 360px) {
  .title h1 {
    font-size: 30px;
  }

  .logo {
    max-width: 116px;
  }

  .slicknav_btn {
    margin-right: 0;
  }
}
