@import url("https://fonts.googleapis.com/css2?family=Rubik:wght@400;500;600;700&display=swap");

:root {
  --primary-color: #fff;
  --secondary-color: #0f0d1d;
  --accent: #8f8da0;
  --text-color: #726f84;
  --button-color: #3c72fc;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-size: 18px;
  line-height: 24px;
  color: var(--text-color);
  font-weight: 400;
  font-family: "Rubik", sans-serif;
}

/* generics start */
h1 {
  font-size: 72px;
  line-height: 70px;
  font-weight: 700;
  color: var(--primary-color);
}

h2 {
  font-size: 48px;
  line-height: 58px;
  font-weight: 400;
  color: var(--secondary-color);
}

h3 {
  font-size: 36px;
  line-height: 46px;
  font-weight: 400;
}

h4 {
  font-size: 24px;
  line-height: 30px;
  font-weight: 500;
  color: var(--secondary-color);
}

.padding-top {
  padding-top: 118px;
}

.padding-bottom {
  padding-bottom: 118px;
}

a:hover {
  text-decoration: none;
}

.generic-btn {
  display: inline-block;
}

.generic-btn a {
  font-size: 16px;
  font-weight: 500;
  padding: 23px 63px;
  display: inline-block;
  color: var(--primary-color);
  background: var(--button-color);
  border: 1px solid var(--button-color);
  transition: 0.3s ease-in-out;
}

.generic-btn a:hover {
  background: transparent;
  border-color: var(--primary-color);
  color: var(--primary-color);
}

/* header section styling start here */
.header-main-con {
  position: absolute;
  top: 0;
  /* border-bottom: 1px solid rgb(255 255 255 / 30%); */
  z-index: 9999;
}

.header-main-con .navbar {
  padding: 0;
}

.header-main-con .navbar-light .navbar-nav .nav-link {
  color: var(--primary-color);
}

.header-main-con .navbar-light .navbar-brand {
  padding: 30px 0;
}

.header-main-con .navbar-nav {
  gap: 63px;
}

.header-main-con .navbar-collapse {
  justify-content: flex-end;
  padding: 40px 45px 41px 65px;
  /* border-left: 1px solid rgb(255 255 255 / 30%); */
  /* border-right: 1px solid rgb(255 255 255 / 30%); */
}

.header-social-links ul {
  gap: 8px;
}

.header-social-links ul li a {
  width: 30px;
  height: 30px;
  border-radius: 100%;
  background: #a7a5b3;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: #55545e;
}

.header-social-links ul li a:hover {
  background: var(--button-color);
  color: var(--primary-color);
}

.header-main-con .nav-btns .search-btn a,
.header-main-con .nav-btns .contact-expert a {
  color: var(--primary-color);
}

.header-main-con .nav-btns .contact-expert a:hover {
  color: var(--button-color);
}

.search-btn {
  padding: 40px 45px;
}

.contact-expert {
  padding: 30px 30px;
  border-left: 1px solid rgb(255 255 255 / 30%);
}

.contact-expert a {
  font-size: 24px;
  letter-spacing: 1px;
  font-weight: 600;
}

.contact-expert a span {
  font-size: 16px;
  letter-spacing: 0;
}

.header-main-con .navbar-nav .nav-item a.nav-link {
  position: relative;
}

.header-main-con .navbar-nav .nav-item .nav-link.active {
  color: var(--button-color);
}

.header-main-con .navbar-nav .nav-item .nav-link::before {
  content: "";
  background: var(--button-color);
  height: 0;
  width: 0;
  position: absolute;
  left: 0;
  bottom: -4px;
}

.header-main-con .navbar-nav .nav-item .nav-link.active::before,
.header-main-con .navbar-nav .nav-item .nav-link:hover::before {
  /* width: 24px;
   */
  width: 100%;
  height: 2px;
}

.header-main-con .navbar-nav .dropdown-menu {
  padding: 10px 0;
  margin: 0;
  background: var(--primary-color);
  border: 0;
  border-radius: 0;
}

.header-main-con .navbar-nav .dropdown-menu .dropdown-item {
  padding: 7px 25px;
}

.header-main-con .navbar-nav .dropdown-menu .dropdown-item:active,
.header-main-con .navbar-nav .dropdown-menu .dropdown-item.active {
  background: transparent;
  color: var(--button-color);
}

.header-main-con .navbar-nav .dropdown-menu .dropdown-item:hover {
  background: transparent;
  color: var(--button-color);
}

/* .header-main-con .navbar-nav .dropdown-menu .dropdown-item:first-child{
    padding-top: 15px;
}
.header-main-con .navbar-nav .dropdown-menu .dropdown-item:last-child{
    padding-bottom: 15px;
} */
.header-main-con .navbar-nav .nav-item .nav-link:hover {
  color: var(--button-color);
}

.header-main-con .navbar-nav .nav-item.dropdown .nav-link.active:hover::before,
.header-main-con .navbar-nav .nav-item.dropdown .nav-link:hover::before {
  display: none;
}

/* header section styling end here */
/* banner section styling start here */
.banner-main-section {
  background: url(../images/banner-bg-img.jpg?v=20260428-151331) no-repeat center;
  background-size: cover;
  height: 983px;
  position: relative;
}

.banner-main-section::after {
  content: "";
  background: url(../images/banner-right-shape.png?v=20260428-151331) no-repeat center;
  width: 901px;
  height: 984px;
  position: absolute;
  right: 0;
  top: 0;
}

.banner-inner-section span {
  font-size: 18px;
  line-height: 20px;
  color: var(--primary-color);
  margin-bottom: 21px;
  letter-spacing: 1.5px;
}

.banner-inner-section h1 {
  margin-bottom: 41px;
}

.banner-main-section .carousel {
  position: unset;
}

.banner-outer-section {
  position: relative;
  z-index: 3;
  padding-top: 128px;
}

.banner-main-section .carousel-control-prev span,
.banner-main-section .carousel-control-next span {
  background-image: none;
  display: flex;
  align-items: center;
  gap: 15px;
  color: var(--primary-color);
}

.banner-main-section .carousel-control-prev span:hover,
.banner-main-section .carousel-control-next span:hover {
  color: var(--button-color);
}

.banner-main-section .carousel-control-prev,
.banner-main-section .carousel-control-next {
  z-index: 33;
  width: auto;
  height: 50px;
  top: 52%;
  opacity: 1;
}

.banner-main-section .carousel-control-prev {
  left: 65px;
}

.banner-main-section .carousel-control-next {
  right: 125px;
}

/* banner section styling end here */
/* consulting services section styling start here */
.consulting-services-section {
  background: #f2f4f8;
  position: relative;
}

.consulting-services-section::before {
  content: "";
  background: url(../images/consulting-service-left-shape.png?v=20260428-151331) no-repeat center;
  width: 617px;
  height: 398px;
  position: absolute;
  left: 0;
  top: 0;
}

.consulting-services-box {
  padding: 45px 30px 49px;
  background: var(--primary-color);
}

.consulting-services-box figure img {
  transition: 0.3s ease-in-out;
}

.consulting-services-box:hover figure img {
  transform: translateX(-8px);
}

.consulting-services-box:hover h4 {
  color: var(--button-color);
}

.consulting-services-outer-section {
  position: relative;
  z-index: 2;
}

.consulting-services-img-con {
  justify-content: space-between;
}

.consulting-services-inner-con {
  display: grid;
  gap: 30px;
  grid-template-columns: 31.5% 31.5% 31.5%;
}

.generic-title p {
  margin-bottom: 0;
}

.generic-title h2 {
  margin-bottom: 2px;
}

.generic-title {
  margin-bottom: 50px;
}

.consulting-services-img-con a {
  font-size: 14px;
  color: var(--text-color);
  position: relative;
}

.consulting-services-img-con a::after {
  content: "";
  width: 20px;
  height: 3px;
  background: var(--text-color);
  position: absolute;
  left: 0;
  bottom: -6px;
}

.consulting-services-img-con a:hover {
  color: var(--button-color);
}

.consulting-services-img-con a:hover::after {
  background: var(--button-color);
}

.consulting-services-box h4 {
  margin-bottom: 12px;
}

/* consulting services section styling end here */
/* market section styling start here */
/* skills section styling start here */
.left-sec .title-heading {
  margin-bottom: 15px;
}

.skills > span {
  float: right;
  top: -1px;
  color: var(--text-color);
  font-size: 14px;
  position: absolute;
  right: 20px;
}

.skillbar {
  background-color: var(--button-color);
  width: 0px;
  height: 19px;
  border-radius: 8px;
}

.title-bar .title-heading {
  top: -26px;
  font-size: 14px;
  line-height: 16px;
  position: relative;
  color: var(--button-color);
}

.skills {
  background-color: #f2f4f8;
  width: 100%;
  height: 19px;
  position: relative;
  margin: 50px 0;
  border-radius: 8px;
}

.title-bar {
  position: absolute;
  top: 0;
}

.percentage {
  position: absolute;
  top: -1px;
  right: 7px;
  font-size: 14px;
  color: var(--text-color);
}

.left-sec {
  padding: 0 50px;
}

.left-sec ul li i {
  font-size: 18px;
  color: var(--button-color);
  margin-right: 8px;
}

.team-professional-lft h3,
.left-sec h5 {
  color: var(--secondary-color);
}

.market-inner-section {
  display: grid;
  gap: 94px;
  grid-template-columns: 43% 50%;
  margin-bottom: 120px;
}

.market-text-con p {
  font-size: 19px;
  line-height: 34px;
  margin-bottom: 34px;
}

.market-text-con > span {
  font-size: 24px;
  line-height: 36px;
  display: block;
  color: var(--button-color);
}

.market-contact-con a i {
  font-size: 30px;
  padding: 20px;
  color: var(--primary-color);
  transition: 0.3s ease-in-out;
  background: var(--button-color);
}

.market-contact-con a {
  display: flex;
  gap: 30px;
  align-items: center;
  transition: 0.3s ease-in-out;
}

.market-contact-con a ul li {
  font-size: 24px;
  line-height: 28px;
  font-weight: 600;
  color: var(--secondary-color);
  transition: 0.3s ease-in-out;
  margin-bottom: 6px;
}

.market-contact-con a ul li p {
  font-size: 24px;
  line-height: 28px;
  font-weight: 400;
  color: var(--text-color);
  transition: 0.3s ease-in-out;
}

.market-contact-con a:hover li,
.market-contact-con a:hover li p {
  color: var(--button-color);
}

.market-contact-con a:hover i {
  transform: translateY(-4px);
}

.market-bottom-img img {
  border: 20px solid var(--primary-color);
}

.market-text-con h2 {
  margin-bottom: 28px;
}

.skills-con {
  margin-top: 59px;
  margin-bottom: 120px;
}

.market-video-con {
  position: relative;
}

.market-bottom-img {
  position: absolute;
  right: -80px;
  bottom: -20px;
}

/* video box styling */
#fade {
  display: none;
  position: fixed;
  top: 0%;
  left: 0%;
  width: 100%;
  height: 100%;
  background-color: var(--secondary-color);
  z-index: 1001;
  -moz-opacity: 0.8;
  opacity: 0.8;
  filter: alpha(opacity=80);
}

#light {
  display: none;
  position: absolute;
  top: 50%;
  left: 50%;
  max-width: 600px;
  max-height: 360px;
  z-index: 1002;
  overflow: visible;
  transform: translate(-50%, -50%);
}

#boxclose {
  width: 40px;
  height: 40px;
  font-size: 22px;
  line-height: 23px;
  border-radius: 100%;
  color: var(--button-color);
  background: var(--primary-color);
  font-weight: bold;
  display: inline-block;
  position: absolute;
  right: -7px;
  top: -10px;
  z-index: 1002;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s ease-in-out;
}

#boxclose:hover {
  background: var(--button-color);
  color: var(--primary-color);
}

.boxclose:before {
  content: "×";
}

#fade:hover ~ #boxclose {
  display: none;
}

.video-play-icon a {
  width: 125px;
  height: 125px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  background: var(--button-color);
}

.video-play-icon a i {
  font-size: 35px;
}

.video-play-icon {
  position: absolute;
  left: -30px;
  top: 30px;
}

/* skills section styling end here */
/* characteristics section styling start here */
.characteristics-box {
  gap: 30px;
  padding: 60px 52px;
  background: var(--primary-color);
  box-shadow: 10px 10px 60px rgb(0 0 0 / 10%);
}

.characteristics-section {
  display: grid;
  gap: 0;
  grid-template-columns: 50% 50%;
  margin-bottom: -100px;
  z-index: 2;
  position: relative;
}

.characteristics-numb {
  font-size: 24px;
  line-height: 24px;
  padding: 22px;
  color: var(--button-color);
  background: rgb(60 114 252 / 20%);
}

.characteristics-box2 {
  position: relative;
  z-index: -1;
}

.characteristics-txt span {
  font-weight: 600;
  color: var(--secondary-color);
  margin-bottom: 10px;
}

.characteristics-txt p {
  line-height: 30px;
}

/* characteristics section styling end here */
/* market section styling end here */
/* cases section styling start here */
.cases-inner-section {
  display: grid;
  gap: 30px;
  grid-template-columns: 31.5% 31.5% 31.5%;
}

.case-text-box {
  position: absolute;
  left: 0;
  bottom: 0;
  padding: 36px 50px;
  width: 93%;
  background: transparent;
}

.case-main-box:hover .case-text-box {
  background: var(--button-color);
}

.case-text-box h3,
.case-text-box span {
  color: var(--primary-color);
}

.case-text-box figure {
  margin-bottom: 17px;
}

.case-text-box span {
  margin-bottom: 4px;
  display: block;
  letter-spacing: 1px;
}

.cases-section .generic-title {
  margin-bottom: 64px;
}

.cases-section {
  background: #f2f4f8;
  padding-top: 210px;
}

/* cases section styling end here */
/* mission section styling start here */
.mission-section {
  background: url(../images/mission-bg-img.jpg?v=20260428-151331) no-repeat center;
  background-size: cover;
  height: 533px;
  position: relative;
}

.mission-inner-box {
  position: relative;
  z-index: 2;
}

.mission-inner-box h2 {
  font-weight: 600;
  margin-bottom: 10px;
}

.mission-inner-box h2,
.mission-inner-box p {
  color: var(--primary-color);
}

.mission-inner-box p {
  line-height: 34px;
  margin-bottom: 40px;
  font-size: 24px;
}

.mission-section::before {
  content: "";
  background: url(../images/mission-left-shape.png?v=20260428-151331) no-repeat center;
  width: 420px;
  height: 533px;
  position: absolute;
  left: 0;
  top: 0;
}

.mission-section::after {
  content: "";
  background: url(../images/mission-right-shape.png?v=20260428-151331) no-repeat center;
  width: 489px;
  height: 533px;
  position: absolute;
  right: 0;
  top: 0;
}

/* mission section styling end here */
/* faq section styling start here */
.faq-box .card .btn,
.faq-box .card .btn.collapsed {
  color: var(--secondary-color);
  background: #f2f4f8;
  width: 100%;
  text-align: left;
  border: 0;
  padding: 27px 30px 23px;
}

.faq-box .card .btn {
  background: transparent;
  padding: 27px 30px 30px;
}

.faq-box .card .btn:hover {
  color: var(--button-color);
}

.faq-box .card .card-header {
  padding: 0;
  margin-bottom: 0;
  background-color: unset;
  border-bottom: 0;
}

.faq-box .card .card-body {
  font-size: 16px;
  padding: 0 40px 48px 32px;
}

.card-header:first-child,
.faq-box .card {
  border-radius: 0;
}

.faq-box .card {
  margin-bottom: 10px;
  border: 1px solid #f2f4f8;
}

.faq-box .card:last-child {
  margin-bottom: 0;
}

.faq-box .card .btn span {
  color: var(--button-color);
}

.faq-box .card .btn:hover,
.faq-box .card .btn:focus {
  text-decoration: none;
}

.faq-outer-con {
  display: grid;
  gap: 28px;
  grid-template-columns: 48.5% 49%;
}

.faq-list-con {
  display: grid;
  gap: 20px;
  grid-template-columns: 66% 30%;
}

.faq-box .card-header h5 .btn::after,
.faq-box .card-header h5 .btn.collapsed::after {
  font-family: "Font Awesome 5 free";
  position: absolute;
  font-weight: 600;
  font-size: 15px;
  right: 26px;
  top: 39px;
  transform: translateY(-50%);
  color: var(--text-color);
}

.faq-box .card-header h5 .btn::after {
  content: "\f068";
}

.faq-box .card-header h5 .btn.collapsed::after {
  content: "\f067";
  color: var(--button-color);
}

.faq-img-con figure {
  margin-bottom: 48px;
}

.faq-img-con ul li {
  position: relative;
  padding-left: 43px;
  color: var(--secondary-color);
  margin-bottom: 16px;
}

.faq-img-con ul li:last-child {
  margin-bottom: 0;
}

.faq-img-con ul li::before {
  content: "";
  background: url(../images/tick-mark-icon.png?v=20260428-151331) no-repeat;
  width: 20px;
  height: 15px;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.exp-years {
  padding: 40px 30px 30px;
  text-align: center;
  color: var(--primary-color);
  background: var(--button-color);
  margin-top: -6px;
}

.exp-years span {
  font-size: 60px;
  line-height: 46px;
  margin-bottom: 15px;
}

.exp-years small {
  font-size: 18px;
  line-height: 28px;
}

.faq-main-section .generic-title {
  margin-bottom: 65px;
}

/* faq section styling end here */
/* customer slider section styling start here */
.customer-slider-section {
  position: relative;
  background: #f2f4f8;
}

.customer-slider-section::before {
  content: "";
  background: url(../images/customer-slider-left-shape.png?v=20260428-151331) no-repeat center;
  width: 328px;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}

.customer-slider-section::after {
  content: "";
  background: url(../images/customer-slider-right-shape.png?v=20260428-151331) no-repeat center;
  width: 346px;
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
}

.customer-slider-outer-con {
  display: grid;
  gap: 23px;
  grid-template-columns: 32% 66.3%;
  position: relative;
  z-index: 3;
}

.customer-slider-review p {
  font-size: 16px;
  line-height: 34px;
  margin-bottom: 26px;
}

.customer-slider-con .owl-nav,
.customer-slider-con .owl-dots {
  display: none;
}

.customer-slider-con
  .owl-carousel
  .owl-item
  .customer-slider-review
  figure
  img {
  width: auto;
}

.customer-slider-review {
  padding: 40px 47px 74px 32px;
  background: var(--primary-color);
  box-shadow: 0 0 60px rgb(0 0 0 / 7%);
}

.customer-slider-con .owl-stage-outer {
  padding-bottom: 40px;
  background: transparent;
}

.customer-title-con .btn-wrap .prev-btn,
.customer-title-con .btn-wrap .next-btn {
  width: 65px;
  height: 65px;
  display: flex;
  border-radius: 100%;
  align-items: center;
  justify-content: center;
  color: var(--secondary-color);
  background: var(--primary-color);
  float: left;
  margin-right: 10px;
  border: none;
  font-size: 22px;
  margin-bottom: 40px;
}

.customer-title-con .btn-wrap .prev-btn:focus,
.customer-title-con .btn-wrap .next-btn:focus {
  outline: none;
}

.customer-title-con {
  display: flex;
  flex-direction: column;
  padding-top: 30px;
}

.customer-title-con .btn-wrap {
  margin-top: auto;
}

.customer-title-con .btn-wrap .prev-btn:hover,
.customer-title-con .btn-wrap .next-btn:hover {
  cursor: pointer;
  color: var(--primary-color);
  background: var(--button-color);
}

.customer-slider-review figure {
  position: absolute;
  bottom: -40px;
  left: 32px;
}

.customer-slider-review span {
  color: var(--button-color);
}

.customer-slider-review small {
  font-size: 16px;
  letter-spacing: 1px;
}

.customer-title-con h2 {
  margin-bottom: 18px;
}

.customer-slider-review::after {
  content: "";
  background: url(../images/quote-icon.png?v=20260428-151331) no-repeat;
  width: 60px;
  height: 40px;
  position: absolute;
  bottom: 80px;
  right: 85px;
}

/* customer slider section styling end here */
/* progress counter section styling start here */
.progress-counter-section {
  background: url(../images/customer-counter-bg.jpg?v=20260428-151331) no-repeat center;
  background-size: cover;
  height: 473px;
  position: relative;
  padding: 70px 0;
}

.progress-counter-section::before {
  content: "";
  background: rgb(15 13 29 / 80%);
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}

.customer-counter-inner-sec {
  position: relative;
  z-index: 3;
}

.customer-counter-inner-sec {
  display: grid;
  gap: 30px;
  grid-template-columns: 23% 23% 23% 23%;
}

.customer-counter-box {
  padding: 54px 40px 43px;
  text-align: center;
  position: relative;
  background: rgb(0 0 0 / 20%);
  border: 1px solid rgb(255 255 255 / 30%);
}

.customer-counter-box figure {
  transition: 0.3s ease-in-out;
}

.customer-counter-box:hover figure {
  transform: translateY(-8px);
}

.customer-counter-box .count {
  font-size: 48px;
  line-height: 36px;
  color: var(--primary-color);
  margin-bottom: 12px;
}

.customer-counter-box span {
  font-size: 18px;
  line-height: 24px;
  color: var(--primary-color);
  letter-spacing: 1px;
}

.customer-counter-box small {
  font-size: 54px;
  line-height: 36px;
  color: var(--primary-color);
}

.customer-counter-box figure {
  margin-bottom: 32px;
}

/* progress counter section styling end here */
/* map section styling start here */
.map-section iframe {
  width: 100%;
  height: 565px;
  border: none;
}

/* map section styling end here */
/* blog section styling start here */
.blog-text-details {
  width: 90%;
  z-index: 2;
  float: right;
  margin-top: -103px;
  position: relative;
  border: 1px solid #cacaca;
  padding: 35px 40px 46px 20px;
  background: var(--primary-color);
}

.blog-inner-section {
  gap: 30px;
  display: grid;
  grid-template-columns: 31.54% 31.54% 31.54%;
}

.blog-text-details .posting-date {
  left: 0;
  top: -33px;
  font-size: 12px;
  line-height: 12px;
  position: absolute;
  text-align: center;
  padding: 10px 28px;
  display: inline-block;
  color: var(--primary-color);
  background: var(--button-color);
}

.blog-text-details .comments span,
.blog-text-details .comments span small {
  font-size: 14px;
  line-height: 16px;
  letter-spacing: 2px;
}

.blog-text-details .comments span small {
  color: var(--button-color);
}

.blog-text-details .comments {
  margin-bottom: 23px;
}

.blog-text-details h4 {
  margin-bottom: 19px;
  font-weight: 400;
}

.blog-text-details h4 a {
  color: var(--secondary-color);
}

.blog-text-details h4 a:hover {
  color: var(--button-color);
}

.blog-text-details p {
  font-size: 16px;
  line-height: 32px;
  margin-bottom: 22px;
}

.blog-text-details .blog-btn a {
  font-size: 14px;
  line-height: 16px;
  color: var(--text-color);
  letter-spacing: 1px;
}

.blog-text-details .blog-btn a::after {
  content: "";
  background: var(--text-color);
  width: 15px;
  height: 3px;
  position: absolute;
  left: 0;
  bottom: -7px;
}

.blog-section .generic-title {
  margin-bottom: 67px;
}

.blog-text-details .blog-btn a:hover {
  color: var(--button-color);
}

.blog-text-details .blog-btn a:hover::after {
  background: var(--button-color);
}

.blog-text-details:hover {
  box-shadow: 10px 10px 15px rgb(0 0 0 / 21%);
}

/* blog section styling end here */
/* register section styling start here */
.best-experience-section {
  padding: 105px 0;
  position: relative;
  background: var(--button-color);
}

.best-experience-section .container-fluid {
  padding: 0 100px;
}

.best-experience-section::before {
  content: "";
  background: url(../images/register-left-shape.png?v=20260428-151331) no-repeat;
  width: 637px;
  height: 325px;
  position: absolute;
  left: 0;
  top: 0;
}

.best-experience-section::after {
  content: "";
  background: url(../images/register-right-shape.png?v=20260428-151331) no-repeat;
  width: 329px;
  height: 324px;
  position: absolute;
  right: 0;
  top: 0;
}

.register-inner-section h2 {
  margin-bottom: 0;
  color: var(--primary-color);
}

.register-inner-section {
  gap: 100px;
  display: flex;
  align-items: center;
  /* max-width: 1180px; */
  max-width: 100%;
  margin: 0 auto;
  z-index: 3;
  position: relative;
  display: flex;
  justify-content: center;
}

.register-inner-section .generic-btn a {
  width: 260px;
  padding: 23px 30px;
  text-align: center;
  color: var(--secondary-color);
  background: var(--primary-color);
  border: 1px solid var(--primary-color);
}

.register-inner-section .generic-btn a:hover {
  color: var(--primary-color);
  background: transparent;
}

/* register section styling end here */
/* footer section styling start here */
.footer-main-section {
  padding: 105px 0 68px;
  position: relative;
  background: var(--secondary-color);
}

.footer-main-section::before {
  content: "";
  background: url(../images/footer-left-shape.png?v=20260428-151331) no-repeat;
  width: 415px;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}

.footer-main-section::after {
  content: "";
  background: url(../images/footer-right-shape.png?v=20260428-151331) no-repeat;
  width: 494px;
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
}

.footer-inner-section {
  z-index: 2;
  position: relative;
  display: grid;
  gap: 0;
  grid-template-columns: 31% 25% 44%;
}

.footer-inner-section h4 {
  font-weight: 400;
  margin-bottom: 37px;
  color: var(--primary-color);
}

.footer-logo-con p {
  font-size: 16px;
  line-height: 32px;
  color: var(--accent);
  padding-bottom: 25px;
  margin-bottom: 0;
  border-bottom: 1px solid rgb(255 255 255 / 10%);
}

.footer-contact-details ul {
  margin-bottom: 0;
}

.footer-contact-details {
  padding: 45px 0 35px;
}

.footer-contact-details ul li,
.footer-contact-details ul li a {
  font-size: 16px;
  line-height: 25px;
  color: var(--text-color);
}

.footer-contact-details ul li a:hover {
  color: var(--button-color);
}

.footer-contact-details ul li {
  padding-left: 30px;
  margin-bottom: 15px;
}

.footer-contact-details ul li i {
  color: var(--button-color);
  position: absolute;
  left: 0;
  top: 5px;
}

.footer-links-inner-box ul li a {
  font-size: 16px;
  line-height: 25px;
  color: var(--accent);
}

.footer-links-inner-box ul li a:hover {
  color: var(--button-color);
}

.footer-links-inner-box ul li {
  margin-bottom: 15px;
}

.footer-links-inner-box {
  display: grid;
  gap: 30px;
  grid-template-columns: 45.5% 42.5%;
}

.footer-logo-con figure {
  margin-bottom: 11px;
}

.footer-logo-con {
  padding-right: 40px;
}

.footer-links-box {
  padding-left: 30px;
}

.footer-newsletter-con {
  padding-left: 40px;
}

.subscription-con {
  padding: 30px 20px 36px;
  background: #141734;
}

.subscription-con p {
  margin-bottom: 27px;
  color: var(--primary-color);
}

.subs-register-con {
  position: relative;
}

.subs-register-con input {
  width: 100%;
  border: 0;
  padding: 20px 130px 20px 20px;
  font-size: 14px;
  color: var(--text-color);
}

.subs-register-con input::placeholder {
  color: var(--text-color);
}

.subs-register-con input:focus,
.subs-register-con button {
  outline: none;
}

.subs-register-con button {
  border: 0;
  font-size: 14px;
  line-height: 16px;
  padding: 14px 20px;
  background: var(--button-color);
  color: var(--primary-color);
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  transition: 0.3s ease-in-out;
}

.subs-register-con button:hover {
  cursor: pointer;
  color: var(--button-color);
  box-shadow: 0 0 2px var(--button-color);
  background: var(--primary-color);
}

.footer-inner-section {
  border-bottom: 2px solid #272634;
}

.footer-copyright-con {
  padding-top: 25px;
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-copyright-con p {
  font-size: 16px;
  line-height: 18px;
  margin-bottom: 0;
  color: var(--accent);
}

.footer-copyright-con .header-social-links ul li a {
  color: var(--secondary-color);
}

.footer-copyright-con .header-social-links ul li a:hover {
  color: var(--primary-color);
}

/* footer section styling end here */
/* services page styling start here */
.sub-banner-section {
  background: url(../images/services-banner-img.jpg?v=20260428-151331) no-repeat center;
  background-size: cover;
  height: 498px;
  text-align: center;
  position: relative;
}

.sub-banner-section::after {
  content: "";
  background: url(../images/sub-banner-right-img.png?v=20260428-151331) no-repeat;
  background-size: cover;
  width: 584px;
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
}

.sub-banner-inner-section {
  padding-top: 120px;
  position: relative;
  z-index: 2;
}

.core-services-inner-con {
  display: grid;
  gap: 30px;
  grid-template-columns: 23% 23% 23% 21%;
}

.core-services-section .generic-title {
  margin-bottom: 55px;
}

.core-service-box figure {
  margin-bottom: 26px;
}

.core-service-box h4 {
  line-height: 29px;
  margin-bottom: 23px;
}

.core-service-box ul {
  padding-left: 6px;
  margin-bottom: 25px;
  list-style: none;
}

.core-service-box ul li {
  font-size: 16px;
  line-height: 24px;
  position: relative;
  padding-left: 13px;
}

.core-service-box ul li::before {
  content: "";
  background: var(--text-color);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 10px;
}

.core-service-box .service-btn a {
  font-size: 14px;
  letter-spacing: 1px;
  position: relative;
  color: var(--text-color);
}

.service-btn a:hover {
  color: var(--button-color);
}

.service-btn a:hover::before {
  background: var(--button-color) !important;
}

.core-service-box .service-btn a::before {
  content: "";
  background: var(--text-color);
  width: 20px;
  height: 3px;
  position: absolute;
  left: 0;
  bottom: -9px;
}

.core-service-box figure {
  transition: 0.3s ease-in-out;
}

.core-service-box:hover figure {
  transform: translateY(8px);
}

.core-service-box:hover h4 {
  color: var(--button-color);
}
.core-service-box {
  display: flex;
  flex-direction: column;
}
.core-service-box .service-btn {
  margin-top: auto;
}
/* services page styling end here */
/* supplementory section styling start here */
.supplementory-right-img-box .supplementory-icon {
  width: 125px;
  height: 125px;
  background: var(--button-color);
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 30px;
  left: -40px;
}

.supplementory-right-img-box {
  position: relative;
  float: right;
  margin-top: 11px;
}

.supplementory-inner-section {
  display: grid;
  gap: 68px;
  grid-template-columns: 43% 51%;
  align-items: center;
  position: relative;
}

.supplementory-left-box p {
  font-size: 24px;
  line-height: 34px;
  margin-bottom: 49px;
}

.supplementory-left-box h2 {
  margin-bottom: 28px;
}

.supplementory-left-box .service-btn a {
  letter-spacing: 2px;
}

.supplementory-left-box .service-btn a {
  letter-spacing: 1px;
  position: relative;
  color: var(--button-color);
}

.supplementory-left-box .service-btn a::before {
  content: "";
  background: var(--button-color);
  width: 20px;
  height: 3px;
  position: absolute;
  left: 0;
  bottom: -9px;
}

.supplementory-left-box .service-btn a:hover {
  color: var(--secondary-color);
}

.supplementory-left-box .service-btn a:hover::before {
  background: var(--secondary-color) !important;
}

.supplementory-section .generic-title {
  margin-bottom: 61px;
}

.supplementory-section {
  position: relative;
}

.supplementory-section::after {
  content: "";
  background: url(../images/consumer-market-right-shape.png?v=20260428-151331) no-repeat;
  background-size: cover;
  width: 537px;
  height: 860px;
  position: absolute;
  right: 0;
  top: 0;
  z-index: -1;
}

/* supplementory section styling end here */
/* supplementory section reverse order section styling start here */
.supplementory-section.supplementory-reverse-order-section {
  background: #f2f4f8;
}

.supplementory-section.supplementory-reverse-order-section::before {
  content: "";
  background: url(../images/communication-bg-img.jpg?v=20260428-151331);
  background-size: contain;
  background-repeat: no-repeat;
  width: 1118px;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}

.supplementory-section.supplementory-reverse-order-section::after {
  display: none;
}

.supplementory-section.supplementory-reverse-order-section
  .supplementory-left-box {
  order: 2;
}

.supplementory-section.supplementory-reverse-order-section
  .supplementory-right-img-box
  .supplementory-icon {
  right: -44px;
  left: unset;
}

.supplementory-section.supplementory-reverse-order-section
  .supplementory-inner-section {
  gap: 78px;
  grid-template-columns: 56% 37%;
}

.supplementory-section.supplementory-reverse-order-section
  .supplementory-right-box
  .supplementory-right-img-box {
  float: left;
}

.supplementory-section.supplementory2-section::after {
  display: none;
}

/* supplementory section reverse order section styling end here */
/* single service page styling start here */
.single-service-img-con .single-service-search-icon {
  width: 125px;
  height: 125px;
  background: var(--button-color);
  position: absolute;
  left: 30px;
  bottom: -35px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.single-service-img-con {
  margin-bottom: 145px;
}

.single-service-inner-con p {
  line-height: 34px;
  margin-bottom: 36px;
}

.single-service-inner-con p span {
  color: var(--button-color);
}

.single-service-inner-con .generic-title h2 {
  margin-bottom: 0;
}

.single-service-inner-con .generic-title {
  margin-bottom: 70px;
}

.single-service-consumer-market h2 {
  margin-bottom: 25px;
}

.single-service-consumer-market {
  margin-bottom: 57px;
}

.single-service-sub-text-con p {
  margin-bottom: 34px;
}

.single-service-sub-section {
  display: grid;
  gap: 30px;
  grid-template-columns: 49% 48%;
  margin-bottom: 100px;
}

.sub-page-form h2 {
  margin-bottom: 18px;
}

.sub-page-form ul {
  display: grid;
  gap: 20px 30px;
  margin-bottom: 24px;
  grid-template-columns: 31.5% 31.5% 31.5%;
}

.sub-page-form ul li input {
  width: 100%;
  height: 45px;
}

.sub-page-form ul li span.error {
  font-size: 14px;
  line-height: 16px;
  color: red;
  padding: 5px 10px;
}

.sub-page-form ul li textarea,
.sub-page-form ul li input {
  width: 100%;
  padding: 6px 10px 6px;
  font-size: 16px;
  line-height: 26px;
  caret-color: var(--text-color);
  border: 1px solid #d1d1d1;
}

.sub-page-form ul li textarea {
  min-height: 206px;
  resize: none;
  color: var(--text-color);
}

.sub-page-form ul li textarea:focus,
.sub-page-form ul li input:focus {
  outline: none;
  border-color: var(--button-color);
}

.sub-page-form ul li textarea::placeholder,
.sub-page-form ul li input::placeholder {
  color: var(--text-color);
}

.sub-page-form ul li:last-child {
  grid-column: 1/-1;
}

.submit-btn button {
  width: 254px;
  padding: 23px 20px;
  border: none;
  border: 1px solid var(--button-color);
  font-size: 16px;
  letter-spacing: 1px;
  background: var(--button-color);
  color: var(--primary-color);
  transition: 0.3s ease-in-out;
}

.sub-page-form ul li {
  text-align: left;
}

.submit-btn button:focus {
  outline: none;
}

.submit-btn button:hover {
  cursor: pointer;
  background: transparent;
  color: var(--button-color);
}

/* single service page styling end here */
/* about page styling start here */
.about-page-banner {
  background: url(../images/about-banner-img.jpg?v=20260428-151331) no-repeat center;
  background-size: cover;
}

/* about vision section styling start here */
.vision-inner-section {
  display: grid;
  gap: 81px;
  grid-template-columns: 44% 48.7%;
}

.vision-text-con p {
  line-height: 34px;
  margin-bottom: 34px;
}

.vision-text-con p span {
  color: var(--button-color);
}

.vision-text-con h2 {
  margin-bottom: 18px;
}

.vision-scope-img {
  width: 125px;
  height: 125px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--button-color);
  position: absolute;
  top: 30px;
  left: -40px;
}

.vision-text-con {
  padding-top: 65px;
}

/* about vision section styling end here */
/* about team section styling start here */
.about-team-member-details {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 30px;
  width: 100%;
  z-index: 2;
}

.about-team-member {
  position: relative;
  display: inline-block;
}

.about-team-member figure {
  overflow: hidden;
}

.about-team-member-details span {
  font-size: 16px;
  line-height: 18px;
  color: var(--primary-color);
  letter-spacing: 2px;
}

.about-team-member-details h3 {
  font-size: 30px;
  line-height: 30px;
  margin-bottom: 16px;
  color: var(--primary-color);
}

.about-team-member figure::after {
  content: "";
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0) 40%,
    rgba(0, 0, 0, 0.9) 100%
  );
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
}

.about-team-member:hover figure img {
  scale: 1.1;
}

.about-team-member figure img {
  transition: 0.3s ease-in-out;
}

.about-team-member .header-social-links ul li a {
  width: 24px;
  height: 24px;
  font-size: 14px;
}

.about-team-inner-con {
  display: grid;
  gap: 50px 30px;
  grid-template-columns: 31.5% 31.5% 31.5%;
}

.about-team-section .generic-title {
  margin-bottom: 64px;
}

/* about team section styling end here */
/* about page styling end here */
/* case page styling start here */
.case-study-section .supplementory-left-box p {
  font-size: 18px;
  line-height: 34px;
  margin-bottom: 33px;
}

.case-study-section .supplementory-left-box h2 {
  margin-bottom: 10px;
}

.case-study-section .supplementory-right-img-box {
  margin-top: 0;
}

.case-study-section .supplementory-left-box {
  margin-top: 5px;
}

.supplementory-section.case-study-section::after {
  display: none;
}

.case-banner-section {
  background: url(../images/case-banner-bg-img.jpg?v=20260428-151331) no-repeat center;
  background-size: cover;
}

.generic-btn2 a {
  font-size: 14px;
  letter-spacing: 1px;
  position: relative;
  color: var(--button-color);
}

.generic-btn2 a::before {
  content: "";
  background: var(--button-color);
  width: 20px;
  height: 3px;
  position: absolute;
  left: 0;
  bottom: -9px;
}

.generic-btn2 a:hover {
  color: var(--secondary-color);
}

.generic-btn2 a:hover::before {
  background: var(--secondary-color);
}

.case-expert-section {
  background: #f2f4f8;
}

.case-expert-box {
  background: var(--primary-color);
  box-shadow: 10px 10px 25px 0 rgb(0 0 0 / 10%);
  padding: 33px 15px 45px 30px;
  display: flex;
  flex-direction: column;
  transition: 0.2s ease-in-out;
}

.case-expert-box:hover h4 {
  color: var(--button-color);
}

.case-expert-box:hover {
  box-shadow: 10px 10px 25px 0 rgb(0 0 0 / 20%);
}

.case-experts-inner-con {
  display: grid;
  gap: 20px 24px;
  grid-template-columns: 23.3% 23.3% 23.3% 23.3%;
}

.case-expert-box .generic-btn2 {
  margin-top: auto;
}

.case-expert-box p {
  font-size: 16px;
  line-height: 24px;
}

.case-expert-box h4 {
  margin-bottom: 18px;
}

.case-expert-box p {
  margin-bottom: 26px;
}

.case-expert-section {
  position: relative;
}

.case-expert-section::before {
  content: "";
  background: url(../images/communication-bg-img.jpg?v=20260428-151331);
  background-size: contain;
  background-repeat: no-repeat;
  width: 1118px;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}

.case-expert-section .generic-title,
.case-expert-section .case-experts-inner-con {
  z-index: 3;
  position: relative;
}

.consultancy-section::after {
  display: none;
}

/* case page styling start here */
/* contact page styling start here */
.contact-cases-section {
  padding-top: 118px;
  position: relative;
}

.contact-cases-section .case-main-box .case-text-box {
  background: var(--button-color);
  padding: 36px 30px 55px;
}

.contact-cases-section .case-main-box .case-text-box.location-box {
  padding: 36px 30px 29px;
}

.contact-cases-section .case-text-box a {
  font-size: 24px;
  color: var(--primary-color);
}

.contact-cases-section .case-text-box a:hover {
  text-decoration: underline;
}

.contact-cases-section .case-text-box p {
  color: var(--primary-color);
  font-size: 22px;
  line-height: 26px;
}

.contact-cases-section .case-text-box span {
  margin-bottom: 6px;
}

.contact-cases-section .case-text-box figure {
  margin-bottom: 25px;
}

.contact-cases-section::before {
  content: "";
  background: url(../images/contact-case-shape.png?v=20260428-151331) no-repeat center;
  background-size: contain;
  width: 635px;
  height: 496px;
  position: absolute;
  left: 0;
  top: -10px;
}

.contact-form-section .generic-title {
  margin-bottom: 44px;
}

.contact-form-section .map-section iframe {
  height: 500px;
}

.contact-form-inner-con {
  margin-bottom: 74px;
}

/* contact page styling end here */
/* 404 page styling start here */
.opps-inner-con p {
  font-size: 36px;
  line-height: 36px;
  color: var(--secondary-color);
  letter-spacing: -0.46px;
}

.opps-inner-con figure {
  margin-bottom: 39px;
}

.oops-section {
  padding: 150px 0;
}

/* 404 page styling end here */
/* blog page styling start here */
.blog-banner-section {
  background: url(../images/blog-banner-img.jpg?v=20260428-151331) no-repeat center;
  background-size: cover;
}

.blog-tabs-section {
  background: #f2f4f8;
}

.single-blog-box {
  width: 540px;
  box-shadow: 3px 3px 25px rgb(0 0 0 / 7%);
  background: var(--primary-color);
}

.single-blog-box:hover h4 a {
  color: var(--button-color);
}

.single-blog-outer-con {
  display: grid;
  gap: 50px 30px;
  margin-bottom: 70px;
  grid-template-columns: 48.6% 48.6%;
}

.single-blog-details {
  padding: 32px 40px 54px;
}

.single-blog-details .generic-btn2 a::before {
  bottom: -7px;
}

.single-blog-details h4 a {
  font-weight: 700;
  margin-bottom: 18px;
  color: var(--secondary-color);
}

.single-blog-details ul li {
  font-size: 16px;
  line-height: 18px;
  padding-left: 20px;
  color: #77808b;
}

.single-blog-details ul li i {
  position: absolute;
  font-size: 14px;
  line-height: 16px;
  left: 0;
  top: 0;
  color: var(--button-color);
}

.single-blog-details p {
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 34px;
}

.single-blog-details ul {
  display: flex;
  gap: 20px;
}

.blog-tabs-inner-section .nav-tabs a.nav-link {
  color: var(--text-color);
  font-size: 24px;
  border: none;
  padding: 13px 36px;
}

.blog-tabs-inner-section .nav-tabs a.nav-link:hover {
  color: var(--button-color);
}

.blog-tabs-inner-section .nav-tabs .nav-link.active:hover {
  color: var(--primary-color);
}

.blog-tabs-inner-section .nav-tabs .nav-link.active {
  color: var(--primary-color);
  background-color: var(--button-color);
  border-radius: 0;
}

.blog-tabs-inner-section .nav-tabs {
  border: 0;
  margin-bottom: 50px;
  gap: 4px;
}

.blog-tabs-inner-section .nav-tabs .nav-item {
  margin: 0;
}

.blog-tabs-inner-section .pagination {
  margin-bottom: 0;
  justify-content: center;
  gap: 2px;
}

.blog-tabs-inner-section .pagination .page-link {
  padding: 11px 15px;
  margin-left: 0;
  font-size: 20px;
  line-height: 20px;
  color: #000;
  background-color: transparent;
  border: none;
  font-weight: 600;
}

.blog-tabs-inner-section .pagination .page-link:hover {
  color: var(--button-color);
}

.blog-tabs-inner-section .pagination .page-link:focus {
  box-shadow: none;
}

.blog-tabs-inner-section .pagination .page-item.active .page-link {
  background: var(--button-color);
  color: var(--primary-color);
}

.blog-tabs-inner-section .pagination .page-item.active .page-link:hover {
  color: var(--primary-color);
}

.blog-tabs-inner-section .pagination .page-link i {
  color: var(--accent);
}

/* blog page styling end here */
/* bottom to top button */
#button.show {
  opacity: 1;
  visibility: visible;
}

#button:hover {
  cursor: pointer;
}

#button {
  display: inline-block;
  background-color: var(--button-color);
  width: 82px;
  height: 82px;
  text-align: center;
  border-radius: 50%;
  position: fixed;
  bottom: 57px;
  right: 113px;
  transition:
    background-color 0.3s,
    opacity 0.5s,
    visibility 0.5s;
  opacity: 0;
  visibility: hidden;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-animation: spineer 2s infinite;
  animation: spineer 2s infinite;
  cursor: pointer;
}

#button::after {
  content: "\f062";
  font-family: "Font Awesome 5 free";
  font-size: 26px;
  line-height: 50px;
  color: #fff;
  font-weight: 600;
}

@-webkit-keyframes spineer {
  from {
    box-shadow: 0 0 0 0 rgb(60, 114, 252, 0.99);
  }

  to {
    box-shadow: 0 0 0 25px rgb(53, 0, 252, 0.01);
  }
}

@keyframes spineer {
  from {
    box-shadow: 0 0 0 0 rgb(60, 114, 252, 0.99);
  }

  to {
    box-shadow: 0 0 0 25px rgb(53, 0, 252, 0.01);
  }
}

/* bottom to top button */
/* Preloader -------------------------------------------------------*/

/* Chengdu Shuimu Medical -----------------------------------------*/

body.sm-page {
  background: #f7f9fc;
  color: #50556b;
}

.sm-site-header {
  position: fixed;
  top: 0;
  left: 0;
  background: rgba(15, 13, 29, 0.72);
  backdrop-filter: blur(10px);
  transition:
    background 0.3s ease,
    box-shadow 0.3s ease;
}

.sm-site-header.site-header-scrolled {
  background: rgba(15, 13, 29, 0.94);
  box-shadow: 0 12px 30px rgba(15, 13, 29, 0.18);
}

.sm-brand,
.sm-footer-brand {
  color: #fff !important;
  font-size: 28px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 1px;
}

.sm-brand {
  display: inline-flex;
  align-items: center;
}

.sm-brand img {
  display: block;
  height: 58px;
  width: auto;
}

.sm-footer-brand {
  display: inline-block;
  margin-bottom: 18px;
}

.sm-page .header-main-con .navbar-light .navbar-brand {
  padding: 0;
}

.sm-page .header-main-con .navbar-collapse {
  padding: 34px 0;
  border: 0;
}

.sm-page .header-main-con .navbar-nav {
  gap: clamp(18px, 2.4vw, 48px);
}

.sm-hero-section {
  min-height: min(920px, 100vh);
  padding: clamp(128px, 12vw, 170px) 0 clamp(72px, 8vw, 110px);
}

.sm-hero-copy {
  position: relative;
  z-index: 2;
  max-width: 650px;
}

.sm-hero-copy span,
.sm-section-title span,
.sm-software-tag {
  display: inline-block;
  color: #0d5f86;
  font-size: clamp(12px, 0.95vw, 15px);
  line-height: 1.4;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.sm-section-title span {
  font-size: 48px;
}
.sm-hero-copy p,
.sm-section-title p,
.sm-lead-text,
.sm-product-card p,
.sm-value-card p,
.sm-contact-card p,
.sm-product-panel-body p,
.sm-software-card p,
.sm-software-stage li,
.sm-form-shell input,
.sm-form-shell textarea {
  font-size: clamp(15px, 1.05vw, 17px);
  line-height: 1.75;
}
.sm-hero-copy p {
  color: #fff;
}
.sm-action-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  margin-top: 34px;
}

.sm-outline-link {
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.35);
  padding: 22px 34px;
  transition: 0.3s ease-in-out;
}

.sm-outline-link:hover {
  color: #fff;
  border-color: #fff;
  text-decoration: none;
}

.sm-highlight-card {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 20px;
  padding: 34px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.16);
}

.sm-highlight-item + .sm-highlight-item {
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.sm-highlight-item strong,
.sm-highlight-item span {
  display: block;
  color: #fff;
}

.sm-highlight-item strong {
  font-size: 24px;
  margin-bottom: 8px;
}

.sm-section {
  padding: clamp(64px, 8vw, 110px) 0;
}

.sm-section-alt {
  background: #eef4ff;
}

.sm-section-title {
  margin-bottom: 34px;
}

.sm-feature-list {
  display: grid;
  gap: 16px;
  margin-top: 28px;
}

.sm-feature-item {
  background: #fff;
  border-radius: 16px;
  padding: 18px 22px;
  box-shadow: 0 14px 35px rgba(19, 33, 68, 0.08);
}

.sm-image-stack {
  position: relative;
  padding-right: 70px;
  min-height: 540px;
}

.sm-image-stack img,
.sm-detail-image,
.sm-product-panel img {
  width: 100%;
  border-radius: 20px;
  object-fit: cover;
}

.sm-image-stack img {
  min-height: 500px;
}

.sm-image-stack-secondary {
  position: absolute;
  right: 0;
  bottom: -40px;
  max-width: 280px;
  min-height: 220px !important;
  border: 8px solid #f7f9fc;
}

.sm-product-card,
.sm-value-card,
.sm-contact-card,
.sm-software-card,
.sm-software-stage,
.sm-product-panel,
.sm-form-shell {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 18px 45px rgba(19, 33, 68, 0.08);
}

.sm-product-card {
  display: block;
  height: 100%;
  padding: 34px 28px;
  color: #50556b;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.sm-product-card:hover {
  text-decoration: none;
  color: #50556b;
  transform: translateY(-8px);
  box-shadow: 0 22px 54px rgba(19, 33, 68, 0.15);
}

.sm-product-icon {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(60, 114, 252, 0.12);
  color: #3c72fc;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 22px;
}

.sm-product-card h4,
.sm-value-card h4,
.sm-contact-card h4,
.sm-product-panel-body h3,
.sm-software-card h4,
.sm-software-stage h3 {
  margin-bottom: 16px;
}

.sm-product-card span {
  color: #3c72fc;
  font-weight: 700;
}

.sm-home-media-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 18px 45px rgba(19, 33, 68, 0.08);
}

.sm-home-media-card img {
  width: 100%;
  display: block;
}

.sm-about-copy {
  color: #394158;
  font-size: 18px;
  line-height: 2;
  letter-spacing: 0.01em;
  font-weight: 400;
}

.sm-about-copy p {
  margin-bottom: 20px;
}

.sm-about-copy p:last-child {
  margin-bottom: 0;
}

.sm-home-video {
  width: 100%;
  display: block;
  border-radius: 20px;
  background: #000;
  box-shadow: 0 18px 45px rgba(19, 33, 68, 0.08);
}

.sm-resource-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 18px 28px;
  background: #3c72fc;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
}

.sm-resource-link:hover {
  color: #fff;
  text-decoration: none;
  background: #0f0d1d;
}

.sm-inline-link {
  color: #3c72fc;
  font-weight: 700;
  word-break: break-all;
}

.sm-inline-link:hover {
  color: #0f0d1d;
  text-decoration: underline;
}

.sm-cert-card {
  display: block;
  height: 100%;
  background: transparent;
  border-radius: 0;
  overflow: visible;
  box-shadow: none;
}

.sm-cert-card:hover {
  text-decoration: none;
}

.sm-home-wide {
  max-width: 1610px;
  padding-left: 34px;
  padding-right: 34px;
}

.sm-home-module-title h2 {
  font-size: clamp(38px, 3.8vw, 62px);
  line-height: 1.18;
}

.sm-cert-carousel {
  padding: 12px 54px 50px;
}

.sm-cert-carousel .carousel-indicators {
  margin-bottom: 0;
}

.sm-cert-carousel .carousel-indicators li {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: rgba(15, 13, 29, 0.24);
}

.sm-cert-carousel .carousel-indicators .active {
  background-color: #3c72fc;
}

.sm-cert-carousel .carousel-control-prev,
.sm-cert-carousel .carousel-control-next {
  width: 44px;
}

.sm-cert-carousel .carousel-control-prev-icon,
.sm-cert-carousel .carousel-control-next-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(15, 13, 29, 0.65);
  background-size: 42% 42%;
}

.sm-cert-media {
  background: transparent;
  aspect-ratio: 760 / 945;
  min-height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sm-cert-carousel-copyright .sm-cert-media {
  aspect-ratio: 730 / 945;
}

.sm-cert-carousel-patent .sm-cert-media {
  aspect-ratio: 700 / 945;
}

.sm-cert-media-clean {
  border-radius: 0;
  overflow: visible;
}

.sm-cert-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 0;
  background: transparent;
}

.sm-cert-body {
  padding: 14px 14px 18px;
}

.sm-cert-body h4 {
  font-size: 15px;
  line-height: 22px;
  margin-bottom: 8px;
  color: #0f0d1d;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.sm-cert-body span {
  color: #3c72fc;
  font-weight: 700;
}

.sm-cert-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #3c72fc;
}

.sm-cert-placeholder i {
  font-size: 46px;
}

.sm-empty-block {
  background: #fff;
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 18px 45px rgba(19, 33, 68, 0.08);
  color: #50556b;
  text-align: center;
}

.sm-product-card-software {
  background: linear-gradient(180deg, #0f0d1d 0%, #18294a 100%);
  color: #dbe4ff;
}

.sm-product-card-software h4,
.sm-product-card-software span {
  color: #fff;
}

.sm-value-card,
.sm-contact-card,
.sm-software-card {
  height: 100%;
  padding: 30px;
}

.sm-contact-card i {
  width: 62px;
  height: 62px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(60, 114, 252, 0.12);
  color: #3c72fc;
  font-size: 26px;
  margin-bottom: 20px;
}

.sm-contact-card a {
  color: #50556b;
}

.sm-map-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 170px;
  padding: 18px 26px;
  background: #3c72fc;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  transition: 0.3s ease-in-out;
}

.sm-map-link:hover {
  color: #fff;
  text-decoration: none;
  background: #0f0d1d;
}

.sm-map-link-light {
  background: #fff;
  color: #0f0d1d;
  border: 1px solid #d9e2f5;
}

.sm-map-link-light:hover {
  color: #fff;
  border-color: #0f0d1d;
}

.sm-copy-result {
  margin-top: 12px;
  color: #3c72fc;
  font-size: 14px;
  line-height: 20px;
  min-height: 20px;
}

.sm-map-shell {
  background: #fff;
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 18px 45px rgba(19, 33, 68, 0.08);
}

.sm-map-frame-wrap {
  position: relative;
  min-height: 460px;
  border-radius: 20px;
  overflow: hidden;
  background: #eef4ff;
}

.sm-map-frame {
  width: 100%;
  height: 460px;
  border: 0;
  display: block;
  background: #fff;
}

.sm-map-card {
  position: absolute;
  left: 32px;
  right: 32px;
  bottom: 32px;
  z-index: 2;
  background: rgba(15, 13, 29, 0.92);
  border-radius: 18px;
  padding: 24px;
}

.sm-map-card strong,
.sm-map-card span,
.sm-map-card small {
  display: block;
  color: #fff;
}

.sm-map-card strong {
  font-size: 24px;
  margin-bottom: 10px;
}

.sm-map-card span {
  font-size: 16px;
  line-height: 28px;
  margin-bottom: 8px;
}

.sm-map-card small {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}

.sm-cta-section .register-inner-section {
  padding: 90px 20px;
}

.sm-footer {
  background: #0f0d1d;
  padding-top: 90px;
}

.sm-footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px;
}

.sm-footer p,
.sm-footer li a,
.sm-footer h4 {
  color: #fff;
}

.sm-footer-bottom {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.sm-footer-record,
.sm-footer-friendship {
  flex: 1 1 0;
}

.sm-footer-record {
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.86);
  font-size: 14px;
  line-height: 22px;
  text-align: center;
}

.sm-cert-modal .modal-content {
  background: transparent;
  border: 0;
}

.sm-cert-modal .modal-body {
  padding: 0;
  text-align: center;
}

.sm-cert-modal .modal-body img {
  max-width: 100%;
  max-height: 82vh;
  border-radius: 16px;
  background: #fff;
}

.sm-cert-modal-close {
  position: absolute;
  top: -8px;
  right: 8px;
  z-index: 2;
  color: #fff;
  opacity: 1;
  text-shadow: none;
  font-size: 36px;
}

.sm-footer-record:hover {
  color: #fff;
  text-decoration: none;
}

.sm-footer-record-police img {
  width: 18px;
  height: 18px;
  margin-right: 8px;
  flex: 0 0 auto;
}

.sm-footer-friendship {
  display: flex;
  align-items: center;
  justify-content: center;
}

.sm-footer-friendship select {
  min-width: 220px;
  max-width: 260px;
  width: 100%;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.sm-footer-friendship select option {
  color: #0f0d1d;
}

.sm-sub-page .sm-sub-banner {
  background:
    linear-gradient(rgba(15, 13, 29, 0.7), rgba(15, 13, 29, 0.7)),
    url(../images/about-banner-img.jpg?v=20260428-151331) no-repeat center;
  background-size: cover;
  min-height: 380px;
  padding-top: 120px;
}

.sm-sub-page .sm-sub-banner.sm-banner-products {
  background-image:
    linear-gradient(rgba(15, 13, 29, 0.64), rgba(15, 13, 29, 0.64)),
    url(../images/banner/产品中心.jpg?v=20260428-151331);
}

.sm-sub-page .sm-sub-banner.sm-banner-contact {
  background-image:
    linear-gradient(rgba(15, 13, 29, 0.62), rgba(15, 13, 29, 0.62)),
    url(../images/banner/联系我们.jpg?v=20260428-151331);
}

.sm-sub-page .sm-sub-banner.sm-banner-news {
  background-image:
    linear-gradient(rgba(15, 13, 29, 0.62), rgba(15, 13, 29, 0.62)),
    url(../images/banner/企业动态.png?v=20260428-151331);
}

.sm-sub-page .sm-sub-banner.sm-banner-hardware-detail {
  background-image:
    linear-gradient(rgba(15, 13, 29, 0.64), rgba(15, 13, 29, 0.64)),
    url(../images/banner/硬件详情.png?v=20260428-151331);
}

.sm-sub-banner .sub-banner-inner-section {
  max-width: 720px;
}

.sm-sub-banner .sub-banner-inner-section h1,
.sm-sub-banner .sub-banner-inner-section p {
  color: #fff;
}

.sm-product-panel {
  overflow: hidden;
  margin-bottom: 30px;
}

.sm-product-panel img {
  height: 320px;
}

.sm-product-panel-body {
  padding: 30px;
}

.sm-product-panel-body span {
  display: inline-block;
  color: #3c72fc;
  font-weight: 700;
  margin-bottom: 10px;
}

.sm-product-panel-body ul li,
.sm-software-stage ul li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 12px;
}

.sm-product-panel-body ul li::before,
.sm-software-stage ul li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #3c72fc;
  position: absolute;
  left: 0;
  top: 11px;
}

.sm-product-tabs {
  margin-top: 18px;
}

.sm-tabs-nav {
  border: 0;
  gap: 0;
  margin-bottom: 34px;
  padding: 0;
  background: linear-gradient(90deg, #0a395b 0%, #0d5f86 55%, #1188a8 100%);
  box-shadow: 0 18px 42px rgba(8, 39, 61, 0.18);
  overflow: hidden;
}

.sm-tabs-nav .nav-link {
  position: relative;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.86);
  padding: 18px 26px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition:
    color 0.25s ease,
    background 0.25s ease;
}

.sm-tabs-nav .nav-item {
  flex: 1 1 auto;
}

.sm-tabs-nav .nav-item + .nav-item .nav-link {
  border-left: 1px solid rgba(255, 255, 255, 0.14);
}

.sm-tabs-nav .nav-link::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.06);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.sm-tabs-nav .nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #8befff 0%, #ffffff 100%);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.25s ease;
}

.sm-tabs-nav .nav-link.active,
.sm-tabs-nav .nav-link:hover {
  color: #fff;
}

.sm-tabs-nav .nav-link:hover::before,
.sm-tabs-nav .nav-link.active::before {
  opacity: 0;
}

.sm-tabs-nav .nav-link:hover::after,
.sm-tabs-nav .nav-link.active::after {
  transform: scaleX(1);
}

.sm-tabs-nav .nav-link.active {
  background: rgba(7, 30, 49, 0.92);
  color: #dff8ff;
}

.sm-tabs-nav .nav-link.active::after {
  background: linear-gradient(90deg, #56d9ff 0%, #dff8ff 100%);
}

.sm-tabs-nav .nav-link:hover {
  color: #eefcff;
}

.sm-tabs-content {
  min-height: 300px;
}

.sm-product-entry {
  height: 100%;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 18px 45px rgba(19, 33, 68, 0.08);
  cursor: pointer;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.sm-product-entry:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 56px rgba(19, 33, 68, 0.14);
}

.sm-product-entry-image {
  background: #eef4ff;
  aspect-ratio: 4 / 3;
}

.sm-product-entry-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sm-product-entry-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 230px;
}

.sm-product-category {
  display: inline-block;
  color: #3c72fc;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.sm-product-entry-body h3 {
  font-size: 23px;
  line-height: 32px;
  margin-bottom: 12px;
  /* min-height: 64px; */
}

.sm-product-subtitle {
  font-size: 18px;
  line-height: 22px;
  color: #666;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 0;
}

.sm-product-entry-software .sm-product-subtitle {
  color: rgba(255, 255, 255, 0.82);
}

.sm-product-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: auto;
  padding-top: 16px;
}

.sm-product-detail,
.sm-product-doc {
  font-size: 15px;
  font-weight: 700;
}

.sm-product-detail {
  color: #3c72fc;
}

.sm-product-doc {
  color: #0f0d1d;
}

.sm-outline-link-dark {
  color: #0f0d1d;
  border-color: rgba(15, 13, 29, 0.18);
}

.sm-outline-link-dark:hover {
  color: #0f0d1d;
  border-color: #0f0d1d;
}

.sm-detail-meta {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.sm-detail-meta a {
  color: #3c72fc;
}

.sm-back-floating {
  position: fixed;
  top: 122px;
  left: 24px;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(15, 13, 29, 0.88);
  color: #fff;
  box-shadow: 0 18px 42px rgba(15, 13, 29, 0.18);
  z-index: 1000;
}

.sm-back-floating:hover {
  color: #fff;
  text-decoration: none;
  background: #3c72fc;
}

.sm-back-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 52px;
  height: 52px;
  border: 0;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(15, 13, 29, 0.88);
  color: #fff;
  box-shadow: 0 18px 42px rgba(15, 13, 29, 0.18);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition:
    opacity 0.25s ease,
    transform 0.25s ease,
    visibility 0.25s ease,
    background 0.25s ease;
  z-index: 1000;
}

.sm-back-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.sm-back-top:hover {
  background: #3c72fc;
}

.sm-page .container {
  width: min(100% - 32px, 1240px);
  max-width: 1240px;
}

.sm-page .container-fluid {
  width: min(100% - 24px, 1920px);
  max-width: 1440px;
}

.sm-hero-copy,
.sm-section-title,
.sm-news-detail,
.sm-rich-paper,
.sm-detail-specs,
.sm-detail-card,
.sm-form-shell,
.sm-map-shell {
  overflow-wrap: break-word;
}

@media only screen and (min-width: 1920px) {
  .sm-page .container {
    max-width: 1400px;
  }

  .sm-page .container-fluid {
    max-width: 1920px;
  }

  .sm-hero-section {
    min-height: 980px;
  }
}

@media only screen and (min-width: 2560px) {
  .sm-page .container {
    max-width: 1560px;
  }

  .sm-page .container-fluid {
    max-width: 1960px;
  }

  h1 {
    font-size: 82px;
    line-height: 80px;
  }

  h2 {
    font-size: 54px;
    line-height: 64px;
  }
}

.sm-detail-subtitle {
  color: #0d5f86;
  font-size: 22px;
  line-height: 34px;
  font-weight: 700;
  margin-bottom: 18px;
  text-align: justify;
}

.sm-detail-card,
.sm-detail-specs {
  background: #fff;
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 18px 45px rgba(19, 33, 68, 0.08);
}

.sm-detail-gallery {
  background: #fff;
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 18px 45px rgba(19, 33, 68, 0.08);
}

.sm-gallery-carousel {
  border-radius: 20px;
  overflow: hidden;
  background: #eaf1ff;
}

.sm-gallery-carousel .carousel-item {
  height: 560px;
}

.sm-gallery-carousel .carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #f7f9fc;
}

.sm-gallery-carousel .carousel-indicators {
  margin-bottom: 18px;
}

.sm-gallery-carousel .carousel-indicators li {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: rgba(15, 13, 29, 0.3);
}

.sm-gallery-carousel .carousel-indicators .active {
  background-color: #3c72fc;
}

.sm-gallery-carousel .carousel-control-prev,
.sm-gallery-carousel .carousel-control-next {
  width: 64px;
}

.sm-gallery-carousel .carousel-control-prev-icon,
.sm-gallery-carousel .carousel-control-next-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: rgba(15, 13, 29, 0.62);
  background-size: 40% 40%;
}

.sm-detail-card h3 {
  margin-bottom: 18px;
}

.sm-detail-card ul li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 14px;
}

.sm-detail-card ul li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #3c72fc;
  position: absolute;
  left: 0;
  top: 11px;
}

.sm-spec-row {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 20px;
  padding: 18px 0;
  border-bottom: 1px solid #e6ebf5;
}

.sm-spec-row:last-child {
  border-bottom: 0;
}

.sm-spec-label {
  color: #0f0d1d;
  font-weight: 700;
}

.sm-spec-value {
  color: #50556b;
}

.sm-software-panel-brief {
  background: linear-gradient(180deg, #0f0d1d 0%, #16274a 100%);
}

.sm-software-panel-brief .sm-product-panel-body,
.sm-software-panel-brief .sm-product-panel-body h3,
.sm-software-panel-brief .sm-product-panel-body p,
.sm-software-panel-brief .sm-product-panel-body li,
.sm-software-panel-brief .generic-btn a {
  color: #fff;
}

.sm-contact-meta {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.sm-form-shell {
  padding: 36px;
}

.sm-form-shell input,
.sm-form-shell textarea {
  width: 100%;
  border: 1px solid #dbe1ef;
  border-radius: 14px;
  padding: 16px 18px;
  margin-bottom: 20px;
  color: #50556b;
  background: #fff;
}

.sm-form-shell textarea {
  min-height: 170px;
  resize: vertical;
}

.sm-form-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
}

.sm-form-actions button {
  border: 0;
  border-radius: 0;
  background: #3c72fc;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  padding: 18px 34px;
  cursor: pointer;
}

.js-form-result {
  color: #3c72fc;
  font-weight: 600;
}

.sm-detail-image {
  min-height: 460px;
}

.sm-software-hero {
  padding: 180px 0 110px;
  background: linear-gradient(135deg, #0f0d1d 0%, #12284e 55%, #1d4a96 100%);
}

.sm-software-hero.sm-banner-software-detail {
  background:
    linear-gradient(rgba(15, 13, 29, 0.6), rgba(15, 13, 29, 0.6)),
    url(../images/banner/软件详情.jpg?v=20260428-151331) no-repeat center;
  background-size: cover;
}

.sm-software-hero h1,
.sm-software-hero p,
.sm-software-tag {
  color: #fff;
}

.sm-software-stat-wrap {
  display: grid;
  gap: 18px;
}

.sm-software-stat {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  padding: 24px;
}

.sm-software-stat strong,
.sm-software-stat span {
  display: block;
  color: #fff;
}

.sm-software-stat strong {
  margin-bottom: 10px;
  font-size: 22px;
}

.sm-software-section {
  background: linear-gradient(180deg, #f7f9fc 0%, #edf4ff 100%);
}

.sm-software-card {
  border-top: 4px solid #3c72fc;
}

.sm-software-stage {
  padding: 34px;
  height: 100%;
}

.sm-software-stage-light {
  background: #0f0d1d;
}

.sm-software-stage-light h3,
.sm-software-stage-light li {
  color: #fff;
}

.sm-product-entry-software {
  background: linear-gradient(180deg, #0a395b 0%, #0d5f86 52%, #1193b1 100%);
  border: 1px solid rgba(125, 230, 255, 0.18);
  box-shadow: 0 22px 56px rgba(8, 39, 61, 0.24);
}

.sm-product-entry-software .sm-product-entry-image {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.08) 0%,
    rgba(255, 255, 255, 0.02) 100%
  );
  aspect-ratio: 16 / 10;
  padding: 18px 18px 0;
}

.sm-product-entry-software .sm-product-entry-image img {
  border-radius: 18px;
  object-fit: cover;
  box-shadow: 0 16px 36px rgba(6, 24, 38, 0.2);
}

.sm-product-entry-software .sm-product-entry-body {
  padding: 22px 24px 26px;
}

.sm-product-software-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 98px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(125, 230, 255, 0.16);
  color: #d7f7ff;
  font-size: 12px;
  letter-spacing: 2px;
  font-weight: 700;
  margin-bottom: 12px;
}

.sm-product-entry-software .sm-product-category {
  color: #8feaff;
}

.sm-product-entry-software .sm-product-entry-body h3,
.sm-product-entry-software .sm-product-entry-body p,
.sm-product-entry-software .sm-product-detail,
.sm-product-entry-software .sm-product-doc {
  color: #fff;
}

.sm-product-entry-software .sm-product-entry-body p {
  color: rgba(255, 255, 255, 0.88);
}

.sm-product-entry-software .sm-product-detail {
  color: #9feeff;
}

.sm-news-card {
  height: 100%;
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 18px 45px rgba(19, 33, 68, 0.08);
}

.sm-news-card-image {
  display: block;
  /* background: #eef4ff; */
  height: 100%;
  padding: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sm-news-card-image img {
  width: 100%;
  height: 280px;
  min-height: 280px;
  object-fit: contain;
  display: block;
  background: #fff;
  border-radius: 18px;
}

.sm-news-card-body {
  padding: 32px 34px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.sm-news-card-source {
  display: inline-block;
  color: #3c72fc;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.sm-news-card-date {
  display: block;
  color: #7a839a;
  font-size: 14px;
  line-height: 22px;
  margin-bottom: 14px;
}

.sm-news-card-body h3 {
  font-size: 32px;
  line-height: 46px;
  margin-bottom: 14px;
}

.sm-news-card-body h3 a {
  color: #0f0d1d;
}

.sm-news-card-body p {
  color: #50556b;
  font-size: 18px;
  line-height: 32px;
  margin-bottom: 20px;
}

.sm-news-detail {
  background: #fff;
  border-radius: 28px;
  padding: 42px;
  box-shadow: 0 24px 60px rgba(19, 33, 68, 0.08);
}

.sm-news-detail-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 18px;
}

.sm-news-detail-meta span,
.sm-news-detail-meta a {
  color: #3c72fc;
  font-size: 14px;
  font-weight: 700;
}

.sm-news-detail h1 {
  color: #0f0d1d;
  font-size: 42px;
  line-height: 58px;
  margin-bottom: 16px;
}

.sm-news-detail-summary {
  color: #50556b;
  font-size: 19px;
  line-height: 32px;
  margin-bottom: 28px;
}

.sm-news-detail-cover {
  border-radius: 24px;
  overflow: hidden;
  margin-bottom: 30px;
}

.sm-news-detail-cover img {
  width: 100%;
  display: block;
}

.sm-news-detail-content {
  display: grid;
  gap: 18px;
}

.sm-news-wechat-body {
  color: #394158;
  font-size: 18px;
  line-height: 34px;
}

.sm-news-wechat-body img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 18px auto;
  border-radius: 18px;
}

.sm-news-wechat-body .js_insertlocalimg,
.sm-news-wechat-body .rich_pages {
  max-width: 100% !important;
  height: auto !important;
}

.sm-news-wechat-body h1,
.sm-news-wechat-body h2,
.sm-news-wechat-body h3,
.sm-news-wechat-body h4 {
  color: #0d4674;
  font-weight: 700;
  margin: 22px 0 12px;
}

.sm-news-wechat-body p,
.sm-news-wechat-body section,
.sm-news-wechat-body div {
  max-width: 100%;
}

.sm-news-wechat-body ul,
.sm-news-wechat-body ol {
  padding-left: 22px;
}

.sm-news-wechat-body table {
  width: 100% !important;
  max-width: 100% !important;
}

.sm-news-cert-title {
  text-align: center;
  color: #366092;
  font-size: 34px;
  line-height: 42px;
  font-weight: 700;
  margin: 30px 0 18px !important;
}

.sm-news-cert-gallery {
  display: grid;
  justify-content: center;
  gap: 18px;
  margin: 0 auto 34px;
}

.sm-news-cert-gallery-3 {
  grid-template-columns: repeat(3, minmax(150px, 170px));
}

.sm-news-cert-gallery-4 {
  grid-template-columns: repeat(4, minmax(130px, 155px));
}

.sm-news-cert-gallery-6 {
  grid-template-columns: repeat(6, minmax(90px, 108px));
}

.sm-news-cert-gallery-7 {
  grid-template-columns: repeat(7, minmax(78px, 96px));
}

.sm-news-cert-item {
  display: flex;
  align-items: center;
  justify-content: center;
}

.sm-news-cert-item img {
  width: 100% !important;
  height: auto !important;
  margin: 0 !important;
  border-radius: 0 !important;
  box-shadow: 0 12px 30px rgba(19, 33, 68, 0.08);
  background: #fff;
}

@media only screen and (max-width: 991px) {
  .sm-news-card-image img {
    min-height: 220px;
    height: 220px;
  }

  .sm-news-card-body {
    padding: 24px;
  }

  .sm-news-card-body h3 {
    font-size: 26px;
    line-height: 38px;
  }
}

.sm-news-heading {
  color: #0d4674;
  font-size: 32px;
  line-height: 44px;
  font-weight: 700;
  margin: 14px 0 0;
}

.sm-news-subheading {
  color: #0d5f86;
  font-size: 24px;
  line-height: 34px;
  font-weight: 700;
  margin: 8px 0 0;
}

.sm-news-paragraph,
.sm-news-list li {
  color: #394158;
  font-size: 18px;
  line-height: 34px;
}

.sm-news-list {
  margin: 0;
  padding-left: 22px;
}

.sm-software-hero-subtitle {
  font-size: 24px;
  line-height: 36px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.92);
}

.sm-software-doc-hero {
  background:
    radial-gradient(
      circle at 18% 22%,
      rgba(90, 222, 255, 0.12),
      transparent 18%
    ),
    radial-gradient(
      circle at 82% 26%,
      rgba(255, 255, 255, 0.08),
      transparent 18%
    ),
    linear-gradient(135deg, #0b3558 0%, #0d5f86 48%, #0f78a6 100%);
}

.sm-doc-cover {
  position: relative;
  padding: 28px 0 8px;
}

.sm-doc-cover::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at 18% 18%,
      rgba(255, 255, 255, 0.16),
      transparent 22%
    ),
    radial-gradient(
      circle at 22% 72%,
      rgba(80, 207, 255, 0.18),
      transparent 18%
    );
  pointer-events: none;
}

.sm-doc-cover .sm-software-tag,
.sm-doc-cover h1,
.sm-doc-cover .sm-software-hero-subtitle,
.sm-doc-cover .sm-doc-summary {
  position: relative;
  z-index: 1;
}

.sm-doc-heading-panel {
  background: rgba(7, 37, 62, 0.34);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 28px;
  padding: 28px 30px;
  box-shadow: 0 22px 56px rgba(3, 22, 38, 0.18);
}

.sm-doc-cover h1 {
  color: #ffffff;
  text-shadow: 0 10px 26px rgba(2, 20, 38, 0.2);
}

.sm-doc-summary {
  color: rgba(255, 255, 255, 0.88);
  font-size: 17px;
  line-height: 30px;
  max-width: 720px;
}

.sm-doc-side-note {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 22px;
  padding: 24px;
  box-shadow: 0 20px 46px rgba(19, 33, 68, 0.1);
  margin-bottom: 20px;
}

.sm-doc-side-note strong,
.sm-doc-side-note span {
  display: block;
}

.sm-doc-side-note strong {
  color: #0d5f86;
  font-size: 18px;
  line-height: 28px;
  margin-bottom: 8px;
}

.sm-doc-side-note span {
  color: #4b5875;
  font-size: 15px;
  line-height: 25px;
}

.sm-rich-outline {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sm-rich-outline-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  color: #0d5f86;
  font-size: 15px;
  line-height: 22px;
  font-weight: 700;
  box-shadow: 0 14px 32px rgba(19, 33, 68, 0.08);
}

.sm-rich-outline-item:hover {
  text-decoration: none;
  color: #0d5f86;
  background: rgba(255, 255, 255, 0.96);
}

.sm-rich-outline-item.is-feature {
  padding-left: 16px;
  border-left: 4px solid #2d9dcc;
  background: rgba(255, 255, 255, 0.9);
}

.sm-rich-outline-item.is-accent {
  background: rgba(255, 255, 255, 0.92);
  color: #0d5f86;
  border-left: 4px solid #2d9dcc;
  padding-left: 14px;
}

.sm-rich-outline-item.is-accent em {
  display: none;
}

.sm-rich-outline-item em {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #0d5f86;
  color: #fff;
  font-style: normal;
  font-size: 13px;
}

.sm-doc-section {
  background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
}

.sm-rich-paper {
  background: #ffffff;
  border-radius: 28px;
  padding: 46px 48px;
  box-shadow: 0 30px 70px rgba(19, 33, 68, 0.08);
}

.sm-rich-content {
  display: grid;
  gap: 26px;
}

.sm-rich-section-title {
  position: relative;
  scroll-margin-top: 110px;
  color: #0d4674;
  font-size: 34px;
  line-height: 46px;
  font-weight: 700;
  padding-bottom: 14px;
  margin-top: 10px;
  margin-bottom: 5px;
}

.sm-rich-section-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(
    90deg,
    #0d5f86 0%,
    #2c82af 42%,
    rgba(44, 130, 175, 0.08) 100%
  );
}

.sm-rich-section-title.is-accent {
  color: #3c72fc;
}

.sm-rich-accent-title {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 10px 18px;
  border-radius: 999px;
  background: linear-gradient(90deg, #0d5f86 0%, #2d9dcc 100%);
  color: #fff;
  font-size: 20px;
  line-height: 24px;
  font-weight: 700;
  box-shadow: 0 14px 32px rgba(13, 95, 134, 0.18);
}

.sm-rich-feature-title {
  color: #0d4674;
  scroll-margin-top: 110px;
  font-size: 22px;
  line-height: 34px;
  font-weight: 700;
  margin: 4px 0 0;
  padding-left: 18px;
  border-left: 5px solid #0d5f86;
}

.sm-rich-paragraph {
  color: #394158;
  font-size: 18px;
  line-height: 34px;
  margin: 0;
}

.sm-rich-image-group {
  display: grid;
  gap: 20px;
}

.sm-rich-image-board {
  padding: 22px;
  border-radius: 26px;
  background: linear-gradient(180deg, #f8fbff 0%, #eef6ff 100%);
  border: 1px solid rgba(13, 95, 134, 0.08);
}

.sm-rich-grid-1 {
  grid-template-columns: 1fr;
}

.sm-rich-grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.sm-rich-grid-3,
.sm-rich-grid-4 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.sm-rich-figure {
  margin: 0;
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(13, 95, 134, 0.08);
  box-shadow: 0 18px 45px rgba(19, 33, 68, 0.08);
}

.sm-rich-grid-4 .sm-rich-figure,
.sm-rich-grid-2 .sm-rich-figure {
  min-height: 100%;
}

.sm-rich-figure img {
  width: 100%;
  display: block;
}

.sm-rich-figure figcaption {
  padding: 14px 18px 18px;
  color: #0d5f86;
  font-size: 15px;
  line-height: 24px;
  text-align: center;
  font-weight: 700;
}

.sm-doc-specs {
  border-top: 4px solid #0d5f86;
}

.sm-rich-table-wrap {
  overflow-x: auto;
  background: #fff;
  border-radius: 24px;
  border: 1px solid rgba(13, 95, 134, 0.12);
  box-shadow: 0 18px 45px rgba(19, 33, 68, 0.08);
}

.sm-rich-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 760px;
}

.sm-rich-table thead th {
  background: #0d4674;
  color: #fff;
  font-size: 18px;
  line-height: 28px;
  font-weight: 700;
  padding: 18px 16px;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.sm-rich-table thead th:last-child {
  border-right: 0;
}

.sm-rich-table tbody td {
  color: #394158;
  font-size: 17px;
  line-height: 30px;
  padding: 18px 16px;
  border-top: 1px solid #dce8f5;
  border-right: 1px solid #dce8f5;
  vertical-align: top;
}

.sm-rich-table tbody td:first-child {
  min-width: 200px;
  max-width: 200px;
  width: 200px;
  white-space: nowrap;
}

.sm-rich-table tbody td:last-child {
  border-right: 0;
}

.sm-rich-table tbody tr:nth-child(even) td {
  background: #f8fbff;
}

@media only screen and (max-width: 991px) {
  .sm-page .header-main-con .navbar-collapse {
    padding: 0;
  }

  .sm-footer-grid {
    grid-template-columns: 1fr;
  }

  .sm-back-floating {
    top: 92px;
    left: 14px;
    width: 46px;
    height: 46px;
  }

  .sm-back-top {
    right: 16px;
    bottom: 16px;
    width: 46px;
    height: 46px;
  }

  .sm-footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .sm-tabs-nav {
    display: grid;
  }

  .sm-tabs-nav .nav-item + .nav-item .nav-link {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
  }

  .sm-footer-record,
  .sm-footer-friendship {
    width: 100%;
  }

  .sm-footer-friendship select {
    width: 100%;
  }

  .sm-hero-section {
    min-height: auto;
    padding: 140px 0 70px;
  }

  .sm-section {
    padding: 70px 0;
  }

  .sm-image-stack {
    padding-right: 0;
    min-height: auto;
    margin-top: 30px;
  }

  .sm-image-stack-secondary {
    position: static;
    margin-top: 20px;
    max-width: 100%;
    border-width: 0;
  }

  .sm-sub-page .sm-sub-banner,
  .sm-software-hero {
    padding-top: 140px;
  }

  .sm-rich-paper {
    padding: 26px 22px;
  }

  .sm-doc-heading-panel {
    padding: 20px 18px;
  }

  .sm-rich-section-title {
    font-size: 28px;
    line-height: 38px;
  }

  .sm-rich-accent-title {
    font-size: 17px;
    line-height: 22px;
    padding: 9px 14px;
  }

  .sm-doc-cover {
    padding-top: 0;
  }

  .sm-rich-grid-2,
  .sm-rich-grid-3,
  .sm-rich-grid-4 {
    grid-template-columns: 1fr;
  }

  .sm-rich-image-board {
    padding: 14px;
  }

  .sm-rich-table {
    min-width: 640px;
  }
}

@media only screen and (max-width: 767px) {
  .sm-brand,
  .sm-footer-brand {
    font-size: 22px;
  }

  .sm-brand img {
    height: 72px;
  }

  .sm-outline-link,
  .sm-form-actions button {
    width: 100%;
    text-align: center;
  }

  .sm-form-shell {
    padding: 24px;
  }

  .sm-product-panel img,
  .sm-detail-image {
    min-height: 280px;
    height: 280px;
  }

  .sm-spec-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .sm-detail-card,
  .sm-detail-specs {
    padding: 24px;
  }

  .sm-detail-gallery {
    padding: 18px;
  }

  .sm-cert-carousel {
    padding: 6px 20px 34px;
  }

  .sm-cert-carousel .carousel-control-prev,
  .sm-cert-carousel .carousel-control-next {
    width: 28px;
  }

  .sm-cert-carousel .carousel-control-prev-icon,
  .sm-cert-carousel .carousel-control-next-icon {
    width: 30px;
    height: 30px;
  }

  .sm-cert-carousel .carousel-indicators {
    margin-bottom: -2px;
  }

  .sm-cert-carousel .carousel-item .row {
    margin-left: -6px;
    margin-right: -6px;
  }

  .sm-cert-carousel .carousel-item [class*="col-"] {
    padding-left: 6px;
    padding-right: 6px;
  }

  .sm-home-wide {
    padding-left: 14px;
    padding-right: 14px;
  }

  .sm-home-module-title h2 {
    font-size: 40px;
    line-height: 48px;
  }

  .sm-gallery-carousel .carousel-item {
    height: 300px;
  }

  .sm-cert-body h4 {
    font-size: 13px;
    line-height: 18px;
  }

  .sm-cert-media {
    min-height: 260px;
  }

  .sm-section-title h2 {
    font-size: 30px;
    line-height: 38px;
  }

  .sm-map-shell {
    padding: 20px;
  }

  .sm-map-frame-wrap {
    min-height: 320px;
  }

  .sm-map-frame {
    height: 320px;
  }

  .sm-map-card {
    left: 18px;
    right: 18px;
    bottom: 18px;
    padding: 18px;
  }
}
/* Loader Styles start here */
.loader-mask {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #fff;
  z-index: 99999;
}

.loader {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 50px;
  height: 50px;
  font-size: 0;
  color: var(--accent);
  display: inline-block;
  margin: -25px 0 0 -25px;
  text-indent: -9999em;
  -webkit-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translateZ(0);
}

.lead {
  font-size: 13px;
}

.loader div {
  background-color: var(--button-color);
  display: inline-block;
  float: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 50px;
  height: 50px;
  opacity: 0.5;
  border-radius: 50%;
  -webkit-animation: ballPulseDouble 2s ease-in-out infinite;
  animation: ballPulseDouble 2s ease-in-out infinite;
}

.loader div:last-child {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}

@-webkit-keyframes ballPulseDouble {
  0%,
  100% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }

  50% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes ballPulseDouble {
  0%,
  100% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }

  50% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

/* Preloader -------------------------------------------------------*/
