﻿body {
  font-family: 'Lexend', sans-serif;
  color: var(--ink);
  background-color: #ffffff;
}

* {
  font-family: 'Lexend', sans-serif;
}

.scanner-loader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #ffffff;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

.scanner-loader-hide {
  opacity: 0;
  visibility: hidden;
}

.scanner-panel {
  width: 420px;
  max-width: 86%;
  padding: 18px;
  border-radius: 34px;
  background: linear-gradient(145deg, rgba(207, 125, 60, 0.12), rgba(255, 255, 255, 0.95));
  box-shadow: 0 28px 80px rgba(17, 24, 32, 0.18);
}

.scanner-frame {
  position: relative;
  overflow: hidden;
  min-height: 250px;
  border: 3px solid var(--ink);
  border-radius: 26px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background:
    linear-gradient(rgba(207, 125, 60, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(207, 125, 60, 0.08) 1px, transparent 1px),
    #ffffff;
  background-size: 24px 24px;
}

.scanner-frame h2 {
  position: relative;
  z-index: 2;
  margin: 0;
  color: var(--ink);
  font-size: 42px;
  font-family: 'Lexend', sans-serif;
  animation: scannerTitle 1.4s ease-in-out infinite alternate;
}

.scanner-frame p {
  position: relative;
  z-index: 2;
  margin: 12px 0 0 0;
  color: var(--ink);
  letter-spacing: 4px;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 700;
}

.scanner-line {
  position: absolute;
  left: 0;
  top: -20%;
  z-index: 1;
  width: 100%;
  height: 70px;
  background: linear-gradient(to bottom, transparent, rgba(207, 125, 60, 0.7), transparent);
  box-shadow: 0 0 28px rgba(207, 125, 60, 0.75);
  animation: scannerMove 2.1s ease-in-out infinite;
}

.scanner-corners::before,
.scanner-corners::after {
  content: "";
  position: absolute;
  width: 62px;
  height: 62px;
  border-color: var(--accent);
  border-style: solid;
}

.scanner-corners::before {
  left: 22px;
  top: 22px;
  border-width: 5px 0 0 5px;
}

.scanner-corners::after {
  right: 22px;
  bottom: 22px;
  border-width: 0 5px 5px 0;
}

@keyframes scannerMove {
  0% {
    top: -25%;
  }

  100% {
    top: 105%;
  }
}

@keyframes scannerTitle {
  from {
    transform: scale(1);
    text-shadow: 0 0 0 rgba(207, 125, 60, 0);
  }

  to {
    transform: scale(1.035);
    text-shadow: 0 0 20px rgba(207, 125, 60, 0.35);
  }
}



h1,
h2,
h3,
h4 {
  font-weight: bold;
}

.layout_padding {
  padding: 75px 0;
}

.layout_padding2 {
  padding: 45px 0;
}

.layout_padding2-top {
  padding-top: 45px;
}

.layout_padding-top {
  padding-top: 75px;
}

.layout_padding-bottom {
  padding-bottom: 75px;
}

.call_to-btn {
  display: inline-block;
  padding: 12px 32px;
  border-radius: 15px;
  background-color: var(--accent);
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}

.call_to-btn img,
.sub_call_to-btn img {
  width: 9px;
  margin-left: 15px;
  margin-top: 3px;
}

.call_to-btn:hover,
.sub_call_to-btn:hover {
  color: #fff;
  -webkit-box-shadow: 0px 6px 10px -1px rgba(0, 0, 0, 0.17);
  -moz-box-shadow: 0px 6px 10px -1px rgba(0, 0, 0, 0.17);
  box-shadow: 0px 6px 10px -1px rgba(0, 0, 0, 0.17);
}

.sub_call_to-btn {
  display: inline-block;
  padding: 10px 28px;
  border-radius: 25px;
  background-color: var(--accent);
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}




/*header section*/
.top_container {
  background-color: #ffffff;
}

.header_section {
  position: relative;
  z-index: 9999;
  padding: 0;
  border: none;
}

nav.navbar.navbar-expand-lg {
  min-height: 78px;
  border-radius: 0;
  background: #ffffff;
  border: none;
  box-shadow: none;
}

.custom_nav-container.navbar-expand-lg .navbar-nav .nav-link {
  position: relative;
  padding: 12px 14px;
  color: var(--ink);
  text-align: center;
  text-transform: none;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0;
  transition: color 0.25s ease, transform 0.25s ease;
}

.custom_nav-container.navbar-expand-lg .navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 5px;
  height: 2px;
  border-radius: 30px;
  background-color: var(--accent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.3s ease;
}

.custom_nav-container.navbar-expand-lg .navbar-nav .nav-link:hover,
.custom_nav-container.navbar-expand-lg .navbar-nav .active .nav-link {
  color: var(--accent);
  transform: translateY(-1px);
}

.custom_nav-container.navbar-expand-lg .navbar-nav .nav-link:hover::after,
.custom_nav-container.navbar-expand-lg .navbar-nav .active .nav-link::after {
  transform: scaleX(1);
}



a,
a:hover,
a:focus {
  text-decoration: none;
}

a:hover,
a:focus {
  color: initial;
}

.btn,
.btn:focus {
  outline: none !important;
  box-shadow: none;
}

.top_container {
  padding-top: 0;
}

.top_container.sub_page {
  height: auto;
}



.navbar-brand,
.navbar-brand:hover {
  font-size: 34px;
  color: var(--ink);
  font-weight: 900;
  letter-spacing: -1.5px;
  line-height: 1;
}

.brand-accent {
  color: var(--accent);
}

.nav_action-buttons {
  display: flex;
  align-items: center;
  gap: 14px;
}

.nav_action-buttons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  min-width: 150px;
  padding: 0 30px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 900;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
}

.nav_demo-btn {
  color: #ffffff;
  background-color: var(--accent);
  box-shadow: none;
}

.nav_pos-btn {
  color: #ffffff;
  background-color: var(--ink);
  box-shadow: 0 12px 24px rgba(17, 24, 32, 0.16);
}

.nav_action-buttons a:hover {
  color: #ffffff;
  transform: translateY(-2px);
}

.nav_demo-btn:hover {
  background-color: #e69616;
  box-shadow: none;
}

.nav_pos-btn:hover {
  background-color: #2a221a;
  box-shadow: 0 16px 30px rgba(17, 24, 32, 0.22);
}



.custom_nav-container {
  z-index: 99999;
  padding: 15px 0;
}

.custom_nav-container .navbar-collapse {
  flex: 1;
}

.custom_nav-container .navbar-collapse>div {
  display: grid !important;
  grid-template-columns: 1fr auto;
  width: 100%;
}

.custom_nav-container .navbar-nav {
  justify-content: center;
  align-items: center;
  width: 100%;
}

.custom_nav-container .navbar-toggler {
  outline: none;
}

.custom_nav-container .navbar-toggler .navbar-toggler-icon {
  background-image: url(../images/menu.png);
  background-size: 55px;
}

/*end header section*/

/* hero section */
.hero_section-container {
  width: 80%;
  margin: 50px auto 0 auto;
  display: flex;
  align-items: center;
}

.number-container {
  position: absolute;
  top: 34%;

  left: 4%;
}

.number-container .number-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: var(--muted);
}

.number-container .number-box hr {
  border: none;
  width: 2px;
  height: 125px;
  background-color: var(--accent);
  margin: 35px 0;
}

.hero_section-container .hero_img-box {
  width: 39%;
  margin-top: -45px;
  display: flex;
  justify-content: center;
}

.hero_section-container .hero_img-box img {
  width: 100%;
}

.hero_section-container .hero_img-box video {
  width: 100%;
  max-width: 560px;
  height: auto;
  display: block;
  pointer-events: none;
  user-select: none;
}

.hero_section-container .hero_detail-box {
  width: 61%;

}

.hero_section-container .hero_detail-box .hero_detail-container {
  margin-left: 0;
  padding-left: 0;
  padding-bottom: 15px;
}

.hero_section-container .hero_detail-box .hero_detail-container p {
  margin: 35px 0 50px 0;
}

.service-slide {
  position: relative;
  overflow: hidden;
  min-height: 455px;
  padding: 38px 42px 30px 45px;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(255, 253, 249, 0.98), rgba(242, 233, 218, 0.86));
  box-shadow: none;
}

.service-slide::before {
  content: "";
  position: absolute;
  width: 190px;
  height: 190px;
  right: -70px;
  top: -70px;
  border-radius: 50%;
  background: rgba(207, 125, 60, 0.45);
  animation: serviceGlow 5s ease-in-out infinite;
}

.service-slide::after {
  content: "";
  position: absolute;
  width: 70px;
  height: 70px;
  right: 28px;
  bottom: 35px;
  border-radius: 18px;
  border: 2px solid rgba(207, 125, 60, 0.45);
  transform: rotate(12deg);
  animation: floatBox 4s ease-in-out infinite;
}

.service-badge {
  display: inline-block;
  position: relative;
  z-index: 2;
  padding: 8px 18px;
  margin-bottom: 18px;
  border-radius: 50px;
  color: var(--ink);
  border: 1px solid rgba(207, 125, 60, 0.95);
  background-color: #ffffff;
  font-weight: 700;
  letter-spacing: 0.3px;
}

.service-slide h1,
.service-slide p,
.service-slide .service-features,
.service-slide .call_to-btn {
  position: relative;
  z-index: 2;
}

.service-slide p {
  margin: 22px 0 18px 0 !important;
  max-width: 72%;
}

.service-features {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
  max-width: 76%;
}

.service-features span {
  padding: 8px 14px;
  border-radius: 12px;
  color: var(--ink);
  background-color: rgba(207, 125, 60, 0.28);
  font-weight: 700;
  box-shadow: 0 8px 18px rgba(74, 52, 30, 0.07);
}

.service-visual {
  position: absolute;
  right: 38px;
  top: 92px;
  width: 170px;
  height: 150px;
  z-index: 1;
}

.target-ring {
  width: 82px;
  height: 82px;
  border: 8px solid #e3d0b0;
  border-radius: 50%;
  box-shadow: inset 0 0 0 12px #ffffff, inset 0 0 0 18px var(--accent);
  animation: targetPulse 2.5s ease-in-out infinite;
}

.growth-bars {
  position: absolute;
  right: 10px;
  bottom: 8px;
  display: flex;
  align-items: end;
  gap: 8px;
}

.growth-bars i {
  display: block;
  width: 18px;
  background: linear-gradient(to top, var(--ink), #e3d0b0);
  border-radius: 8px 8px 0 0;
  animation: barsGrow 1.8s ease-in-out infinite alternate;
}

.growth-bars i:nth-child(1) {
  height: 45px;
}

.growth-bars i:nth-child(2) {
  height: 75px;
  animation-delay: 0.2s;
}

.growth-bars i:nth-child(3) {
  height: 105px;
  animation-delay: 0.4s;
}

.info-card {
  width: 130px;
  height: 92px;
  border-radius: 18px;
  background: linear-gradient(135deg, #f4ecdd, #ffffff);
  border: 2px solid rgba(207, 125, 60, 0.55);
  animation: slideCard 3s ease-in-out infinite;
}

.info-lines i {
  display: block;
  width: 110px;
  height: 10px;
  margin-top: 10px;
  border-radius: 20px;
  background-color: rgba(169, 96, 31, 0.18);
  animation: lineMove 2.6s ease-in-out infinite;
}

.info-lines i:nth-child(2) {
  width: 86px;
  animation-delay: 0.15s;
}

.info-lines i:nth-child(3) {
  width: 128px;
  animation-delay: 0.3s;
}

.building {
  display: flex;
  align-items: end;
  gap: 8px;
}

.building i {
  display: block;
  width: 38px;
  border-radius: 8px 8px 0 0;
  background: linear-gradient(to top, var(--ink), #e3d0b0);
  box-shadow: inset 0 0 0 4px rgba(255, 255, 255, 0.18);
  animation: buildingRise 2.8s ease-in-out infinite alternate;
}

.building i:nth-child(1) {
  height: 80px;
}

.building i:nth-child(2) {
  height: 120px;
  animation-delay: 0.2s;
}

.building i:nth-child(3) {
  height: 100px;
  animation-delay: 0.4s;
}

.orbit-dot {
  width: 22px;
  height: 22px;
  margin: 14px auto 0 auto;
  border-radius: 50%;
  background-color: var(--accent);
  animation: orbitDot 2.4s linear infinite;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(2, 62px);
  gap: 12px;
  animation: gridFloat 3s ease-in-out infinite;
}

.product-grid i {
  display: block;
  height: 56px;
  border-radius: 16px;
  background: linear-gradient(135deg, #ffffff, #f4ecdd);
  border: 2px solid rgba(207, 125, 60, 0.58);
  box-shadow: 0 10px 24px rgba(74, 52, 30, 0.08);
}

.cart-icon {
  position: relative;
  width: 128px;
  height: 86px;
  border-bottom: 8px solid #e3d0b0;
  border-left: 8px solid #e3d0b0;
  border-right: 8px solid #e3d0b0;
  border-radius: 0 0 28px 28px;
  transform: skewX(-8deg);
  animation: cartMove 2.7s ease-in-out infinite;
}

.cart-icon::before {
  content: "";
  position: absolute;
  left: -22px;
  top: -30px;
  width: 42px;
  height: 8px;
  border-radius: 999px;
  background-color: #e3d0b0;
  transform: rotate(-28deg);
}

.cart-icon::after {
  content: "";
  position: absolute;
  left: 16px;
  top: 20px;
  width: 86px;
  height: 36px;
  border-top: 4px solid rgba(207, 125, 60, 0.45);
  border-bottom: 4px solid rgba(207, 125, 60, 0.45);
  background: repeating-linear-gradient(90deg, transparent 0 18px, rgba(207, 125, 60, 0.45) 18px 22px);
}

.payment-card::before,
.payment-card::after {
  content: "";
  position: absolute;
  top: -34px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: var(--ink);
}

.payment-card::before {
  left: -22px;
}

.payment-card::after {
  left: 28px;
}

.payment-card {
  position: relative;
  width: 92px;
  height: 54px;
  margin: 22px 0 0 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--ink), #e3d0b0);
  animation: cardShine 3s ease-in-out infinite;
}

.calendar-box {
  display: grid;
  grid-template-columns: repeat(2, 45px);
  gap: 10px;
  padding: 18px;
  border-radius: 18px;
  background-color: #ffffff;
  box-shadow: 0 15px 35px rgba(74, 52, 30, 0.12);
}

.calendar-box i {
  height: 36px;
  border-radius: 10px;
  background-color: rgba(207, 125, 60, 0.18);
  animation: datePop 2s ease-in-out infinite;
}

.calendar-box i:nth-child(3) {
  background-color: var(--accent);
}

.clock-pulse {
  position: absolute;
  right: 15px;
  bottom: 8px;
  width: 48px;
  height: 48px;
  border: 5px solid #e3d0b0;
  border-radius: 50%;
  animation: targetPulse 2s ease-in-out infinite;
}

.code-box {
  width: 96px;
  height: 70px;
  line-height: 70px;
  text-align: center;
  border-radius: 18px;
  color: var(--ink);
  background-color: #ffffff;
  border: 2px solid rgba(207, 125, 60, 0.65);
  font-size: 26px;
  font-weight: 700;
  animation: codeFloat 3s ease-in-out infinite;
}

.gear-shape {
  width: 74px;
  height: 74px;
  margin: 18px 0 0 70px;
  border: 16px dashed #e3d0b0;
  border-radius: 50%;
  animation: gearSpin 8s linear infinite;
}

.network-map i {
  position: absolute;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #e3d0b0, var(--ink));
  animation: networkPulse 2.5s ease-in-out infinite;
}

.network-map i:nth-child(1) {
  left: 12px;
  top: 12px;
}

.network-map i:nth-child(2) {
  right: 22px;
  top: 42px;
  animation-delay: 0.25s;
}

.network-map i:nth-child(3) {
  left: 60px;
  bottom: 18px;
  animation-delay: 0.5s;
}

.whatsapp-bubble {
  position: absolute;
  right: 16px;
  bottom: 8px;
  width: 58px;
  height: 58px;
  line-height: 58px;
  text-align: center;
  border-radius: 50%;
  color: #ffffff;
  background-color: var(--accent);
  font-weight: 700;
  animation: floatBox 3s ease-in-out infinite;
}

@keyframes serviceGlow {
  0%, 100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.18);
  }
}

@keyframes floatBox {
  0%, 100% {
    transform: translateY(0) rotate(12deg);
  }

  50% {
    transform: translateY(-12px) rotate(12deg);
  }
}

@keyframes targetPulse {
  0%, 100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.08);
  }
}

@keyframes barsGrow {
  from {
    transform: scaleY(0.7);
  }

  to {
    transform: scaleY(1);
  }
}

@keyframes slideCard {
  0%, 100% {
    transform: translateX(0);
  }

  50% {
    transform: translateX(12px);
  }
}

@keyframes lineMove {
  0%, 100% {
    transform: translateX(0);
  }

  50% {
    transform: translateX(10px);
  }
}

@keyframes buildingRise {
  from {
    transform: scaleY(0.82);
  }

  to {
    transform: scaleY(1);
  }
}

@keyframes orbitDot {
  from {
    transform: translateX(-45px);
  }

  to {
    transform: translateX(45px);
  }
}

@keyframes gridFloat {
  0%, 100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@keyframes cartMove {
  0%, 100% {
    transform: translateX(0);
  }

  50% {
    transform: translateX(14px);
  }
}

@keyframes cardShine {
  0%, 100% {
    opacity: 0.75;
    transform: rotate(-4deg);
  }

  50% {
    opacity: 1;
    transform: rotate(4deg);
  }
}

@keyframes datePop {
  0%, 100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.12);
  }
}

@keyframes codeFloat {
  0%, 100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

@keyframes gearSpin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes networkPulse {
  0%, 100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.18);
  }
}



.carousel-control-prev,
.carousel-control-next {
  width: 45px;
  height: 45px;
  border-radius: 100%;
  background-color: var(--accent);
  opacity: 1;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 8px;
  top: auto;
  bottom: 24px;
  z-index: 9999;
  pointer-events: auto;
  cursor: pointer;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
  background-color: var(--muted);
}



.carousel-control-prev {
  background-image: url(../images/left-arrow.png);
  left: auto;
  right: 82px;
}

.carousel-control-next {
  background-image: url(../images/right-arrow.png);
  left: auto;
  right: 28px;
}

/* end hero section */

/* about section */
.about_section {
  background-color: #ffffff;
}

.business_tools {
  overflow: hidden;
  padding: 10px 0;
}

.business_heading {
  text-align: center;
  margin-bottom: 42px;
}

.business_heading h3 {
  color: var(--ink);
  font-size: 42px;
  line-height: 1.12;
  font-family: 'Lexend', sans-serif;
}

.business_heading p {
  max-width: 620px;
  margin: 18px auto 0 auto;
  color: var(--muted);
}

.tools_marquee {
  position: relative;
  overflow: hidden;
  margin-bottom: 48px;
  padding: 6px 0;
}

.tools_marquee::before,
.tools_marquee::after {
  content: "";
  position: absolute;
  top: 0;
  z-index: 2;
  width: 90px;
  height: 100%;
}

.tools_marquee::before {
  left: 0;
  background: linear-gradient(to right, #ffffff, rgba(255, 255, 255, 0));
}

.tools_marquee::after {
  right: 0;
  background: linear-gradient(to left, #ffffff, rgba(255, 255, 255, 0));
}

.tools_track {
  display: flex;
  width: max-content;
  gap: 14px;
  animation: toolsTrain 24s linear infinite;
}

.tools_track span {
  flex: 0 0 auto;
  padding: 13px 22px;
  border-radius: 14px;
  color: var(--ink);
  background-color: #ffffff;
  border: 1px solid rgba(207, 125, 60, 0.22);
  box-shadow: 0 12px 30px rgba(17, 24, 32, 0.08);
  font-weight: 700;
}

.tools_grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.tool_card {
  position: relative;
  overflow: hidden;
  min-height: 178px;
  padding: 28px 22px;
  border-radius: 18px;
  background-color: #ffffff;
  border: 1px solid rgba(17, 24, 32, 0.08);
  box-shadow: 0 18px 42px rgba(17, 24, 32, 0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.tool_card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 100%;
  background-color: #efe5d4;
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.35s ease;
}

.tool_card:hover {
  transform: translateY(-8px);
  border-color: #efe5d4;
  box-shadow: 0 24px 58px rgba(207, 125, 60, 0.65);
}

.tool_card:hover::before {
  transform: scaleY(1);
}

.tool_icon {
  width: 44px;
  height: 44px;
  line-height: 44px;
  margin-bottom: 18px;
  border-radius: 12px;
  text-align: center;
  color: var(--accent);
  background-color: rgba(207, 125, 60, 0.12);
  font-weight: 700;
  transition: background-color 0.35s ease, color 0.35s ease, transform 0.35s ease;
}

.tool_card:hover .tool_icon {
  color: var(--ink);
  background-color: #efe5d4;
  transform: scale(1.08) rotate(-4deg);
}

.tool_card h4 {
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 18px;
}

.tool_card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

@keyframes toolsTrain {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* end about section */

/* practice section */
.practice_section {
  position: relative;
  overflow: hidden;
  background-color: #ffffff;
}

.practice_section::before {
  content: "";
  position: absolute;
  right: -80px;
  top: 35px;
  width: 260px;
  height: 260px;
  border-radius: 0 0 0 100%;
  background-color: rgba(207, 125, 60, 0.14);
}

.practice_section::after {
  content: "";
  position: absolute;
  left: -45px;
  bottom: -65px;
  width: 180px;
  height: 180px;
  border-radius: 0 100% 0 0;
  background-color: rgba(207, 125, 60, 0.1);
}

.payment_heading {
  position: relative;
  z-index: 2;
  text-align: center;
  margin-bottom: 58px;
}

.payment_heading > span {
  display: inline-block;
  padding: 8px 18px;
  margin-bottom: 20px;
  border-radius: 50px;
  color: var(--accent);
  background-color: rgba(207, 125, 60, 0.12);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 2px;
  font-size: 12px;
}

.payment_heading h3 {
  color: var(--ink);
  font-size: 42px;
  line-height: 1.15;
  font-family: 'Lexend', sans-serif;
}

.payment_heading p {
  max-width: 620px;
  margin: 18px auto 0 auto;
  color: var(--muted);
}

.payment_cards {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
  align-items: stretch;
}

.payment_card {
  position: relative;
  min-height: 360px;
  padding: 34px 28px;
  border-radius: 22px;
  background-color: #ffffff;
  box-shadow: 0 18px 55px rgba(17, 24, 32, 0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.payment_card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 70px rgba(207, 125, 60, 0.18);
}

.featured_payment {
  background: linear-gradient(180deg, rgba(207, 125, 60, 0.1), #ffffff 58%);
}

.popular_tag {
  position: absolute;
  top: 0;
  right: 0;
  padding: 9px 18px;
  color: #ffffff;
  background-color: var(--accent);
  border-radius: 0 22px 0 14px;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
}

.payment_top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
}

.payment_icon {
  width: 48px;
  height: 48px;
  line-height: 48px;
  border-radius: 13px;
  text-align: center;
  color: var(--accent);
  background-color: rgba(207, 125, 60, 0.13);
  font-weight: 700;
}

.payment_top span {
  padding: 6px 13px;
  border-radius: 50px;
  color: var(--muted);
  background-color: #f0f0f0;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
}

.payment_card h4 {
  color: var(--ink);
  font-size: 20px;
  margin-bottom: 14px;
}

.payment_card h4 span {
  color: var(--accent);
}

.payment_card p {
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 24px;
}

.payment_card ul {
  padding: 0;
  margin: 0 0 34px 0;
  list-style: none;
}

.payment_card li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 14px;
  color: var(--ink);
}

.payment_card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: var(--accent);
}

.payment_card a {
  color: var(--accent);
  font-weight: 700;
}




/* end Practice section */

/* welcome section */
.welcome_section {
  background-color: #ffffff;
}

.welcome_container {
  padding: 90px 0;
}

.welcome_container>* {
  margin-bottom: 35px;
}

.welcome_container h4 {
  font-weight: normal;
}

.welcome_container h4,
.welcome_container p {
  font-family: 'Lexend', sans-serif;
}

.welcome_container h3 {
  color: var(--ink);
  font-size: 38px;
  font-family: 'Lexend', sans-serif;
}

.welcome_container h4 {
  color: var(--ink);
  font-weight: 700;
}

.welcome_container p {
  color: var(--muted);
  line-height: 1.7;
}

.demo_image-box {
  position: relative;
  width: 88%;
  margin-left: auto;
}

.demo_image-box img {
  width: 100%;
  display: block;
}

.demo_image-box::after {
  content: "";
  position: absolute;
  left: 0;
  top: 54%;
  width: 100%;
  height: 46%;
  background-color: #ffffff;
  z-index: 2;
}

.eye {
  position: absolute;
  z-index: 3;
  width: 9.2%;
  height: 9.2%;
  border-radius: 50%;
  overflow: hidden;
  background-color: #ffffff;
  box-shadow: 0 4px 10px rgba(17, 24, 32, 0.12);
}

.eye-left {
  left: 39%;
  top: 44%;
}

.eye-right {
  left: 57%;
  top: 44%;
}

.pupil {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 64%;
  height: 64%;
  border-radius: 50%;
  background-color: var(--ink);
  box-shadow: inset -2px -2px 0 rgba(255, 255, 255, 0.12);
  transform: translate(-50%, -50%);
  transition: transform 0.06s linear;
}

.pupil::after {
  content: "";
  position: absolute;
  left: 12%;
  top: 12%;
  width: 40%;
  height: 40%;
  border-radius: 50%;
  background-color: #ffffff;
}

/* end welcome section */

/* contact section */
.contact_section .col-md-6 {
  padding: 0;
}

.contact_section input {
  border: none;
  outline: none;
  border-bottom: 1px solid #252525;
  width: 90%;
  margin: 10px 0;
}

.contact_form-container {
  padding: 45px;
  padding-right: 0;
}

.contact_form-container button {
  border: none;
  background-color: var(--accent);
  color: #fff;
  padding: 8px 40px;
  border-radius: 20px;
}

.contact_img-box {
  display: flex;
  align-items: center;
  padding: 45px;
  padding-left: 0;
}

.contact_img-box img,
.contact_img-box video {
  width: 86%;
  border-radius: 24px;
}

.contact_section h2 {
  font-size: 26px;
  color: #010103;
  font-weight: bold;

  position: relative;
  margin-left: 2.5%;
}



/* end contact section */

/* info section */
.info_section {
  padding-top: 70px;
  padding-bottom: 18px;
  color: #fff;
  background-color: #2a2a2c;
}

.info_logo h2 {
  color: var(--accent);
  font-family: 'Lexend', sans-serif;
}

.info_section .col-md-4,
.info_section .col-md-6 {
  padding: 0 30px;
}

.info_section .col-md-4 h5,
.info_section .col-md-6 h5 {
  text-transform: uppercase;
}

.footer_top_line {
  display: none;
}

.footer_content-row {
  align-items: center;
  justify-content: space-between;
  padding-bottom: 12px;
}

.footer_content-row .info_logo {
  text-align: left;
}

.footer_details-column {
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer_details {
  max-width: 360px;
  margin: 0 auto;
  text-align: center;
}

.footer_social-column {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.footer_details p {
  margin-bottom: 6px;
}

.info_news input {
  border: none;
  width: 80%;
  height: 35px;
  border-radius: 20px;
  background-color: #fff;
  outline: none;
  padding-left: 20px;
  margin-top: 15px;
}

.info_news input::placeholder {
  opacity: .4;
}

.info_news button {
  border: none;
  background-color: var(--accent);
  color: #fff;
  text-transform: uppercase;
  font-size: 14px;
  padding: 7px 25px;
  border-radius: 20px;
  margin-top: 20px;
}

.info_address p {
  margin-bottom: 5px;
}

.custom_border-btm {
  border-bottom: 1px solid #fff;
}

.info_social {
  display: flex;
  justify-content: space-between;
  width: 150px;
  margin: 0;
}

/* end info section */



/* footer section*/

.footer_section {
  background-color: #fdfdfe;
  padding: 20px 0;
  font-family: 'Lexend', sans-serif;
}

.footer_section p {
  color: #000;
  margin: 0;
  text-align: center;
}

.footer_section a {
  color: #000;
}

/* end footer section*/
