.h1,
.h2,
.h3,
.h4,
h1,
h2,
h3,
h4 {
  font-weight: 700;
}

/*////////Header Css///////////*/
/*////////Header Css///////////*/

.site-header{
    position: sticky;
    top: 0;
    z-index: 1030;
    background: #fff;
    transition: box-shadow .35s ease, background-color .35s ease;
  }
.navbar .nav-link {
    color: #233d62;
    font-weight: 500;
    padding: 0 14px !important;
    font-family:Poppins-Medium;
    font-size: 14px;
}
.dropdown-toggle::after {
    display: none;
}
  /* scrolled state — JS class add karta hai */
  .site-header.is-scrolled {
    background: #fff;
    backdrop-filter: blur(8px);
    box-shadow: 0 10px 30px rgb(15 61 92 / 14%);
}
  .site-header.is-scrolled .navbar{ min-height: var(--nav-h-small); }
  .site-header.is-scrolled .navbar-brand{ font-size: 1.1rem; }

  .navbar .nav-link:hover,
  .navbar .nav-link:focus{ color: #175cff; }

  .navbar-brand{ color:#fff !important; font-weight: 700; letter-spacing: .5px; font-size: 1.3rem; transition: font-size .35s ease; }
  .navbar-brand .bi{ color: var(--accent); }
  .navbar-toggler{ border-color: rgba(255,255,255,.4); }
  /*.navbar-toggler-icon{ filter: invert(1); }*/

  /* ---------- GET A CALL BUTTON ---------- */
  .btn-call{
    background: var(--accent);
    color: #26150a;
    font-weight: 600;
    border: 0;
    padding: .55rem 1.25rem;
    white-space: nowrap;
    transition: transform .2s ease, box-shadow .2s ease;
  }
  .btn-call:hover{
    background: #ff9b57;
    color: #26150a;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255,138,61,.4);
  }
  .btn-call .bi{ margin-right: .4rem; }

  /* ---------- DROPDOWNS (common) ---------- */
  .navbar .dropdown-menu{
    border: 0;
    box-shadow: 0 18px 40px rgba(15,61,92,.18);
    border-radius: .6rem;
  }

  /* Single (normal) dropdown */
  .dropdown-menu.single-menu{ min-width: 220px; padding: .5rem; }
.dropdown-menu.single-menu .dropdown-item {
    border-radius: .4rem;
    padding: 6px 0;
    font-size: 15px;
    color: #233d62;
    font-family: Poppins-Medium;
}
  .dropdown-menu.single-menu .dropdown-item .bi{ color: var(--accent); margin-right: .5rem; font-size: .85rem; }
  .dropdown-menu.single-menu .dropdown-item:hover{ background: #fff; color: var(--brand-2); }

  /* Mega menu */
  .navbar .dropdown-menu.mega-menu {
    padding: 18px 8px;
}

  @media (min-width: 992px){
    .navbar .dropdown.position-static{ position: static !important; }
      .navbar .dropdown-menu.mega-menu {
        width: 60%;
        left: 16%;
        right: 0;
        margin-top: 0;
        border-radius: 0 0 .75rem .75rem;
        border-top: 3px solid var(--accent);
        top: 80% !important;
    }
    /* hover se open — desktop only, smooth fade+slide */
    .navbar .dropdown-menu{
      display: block;
      opacity: 0;
      visibility: hidden;
      transform: translateY(12px);
      transition: opacity .25s ease, transform .25s ease, visibility .25s;
    }
    .navbar .dropdown:hover > .dropdown-menu,
    .navbar .dropdown-menu.show{
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
    }
  }

  @media (max-width: 991.98px){
    .navbar .dropdown-menu{ box-shadow: none; }
    .navbar .dropdown-menu.mega-menu{
      background: rgba(255,255,255,.06);
      border-radius: .5rem;
    }
    .navbar .dropdown-menu.single-menu{ background: rgba(255,255,255,.06); }
        .navbar .dropdown-menu.single-menu .dropdown-item {
        color: #485666;
    }
    .navbar .dropdown-menu.single-menu .dropdown-item:hover{ background: rgba(255,255,255,.1); color:#fff; }
    .navbar .dropdown-menu.mega-menu .mega-title{ color: var(--accent); }
    /*.navbar .dropdown-menu.mega-menu a.mega-link{ color: #e6eef5; }*/
    .navbar .dropdown-menu.mega-menu a.mega-link:hover{ color:#fff; }
    .mega-promo{ display: none; }
    .btn-call{ margin: .75rem 0 1rem; display: inline-block; }
  }

.mega-title {
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 14px;
    font-family: 'Poppins-bold';
    color: #00193c;
}
a.mega-link {
    display: block;
    padding: 10px 0;
    color: #233d62;
    font-family: Poppins-Medium;
    text-decoration: none;
    font-size: 15px;
    transition: color .15s, transform .15s;
    position: relative;
}

.coming-soon {
    position: absolute;
    top: 7px;
    right: -2px;
    background: linear-gradient(135deg, #00284ea8, #7fd500);
    color: #ffffff;
    padding: 13px 8px;
    border-radius: 12px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    box-shadow: 0 4px 12px rgb(141 200 54 / 28%);
    animation: popIn 0.4s ease-out forwards;
}

@keyframes popIn {
  0% { transform: scale(0); opacity: 0; }
  80% { transform: scale(1.1); }
  100% { transform: scale(1); opacity: 1; }
}

  a.mega-link:hover{ color: var(--brand-2); transform: translateX(3px); }
  a.mega-link .bi{ font-size: .8rem; margin-right: .4rem; color: var(--accent); }

  .mega-promo{
    background: linear-gradient(135deg, var(--brand-2), var(--brand));
    color: #fff;
    border-radius: .75rem;
    padding: 1.25rem;
    height: 100%;
  }
  .mega-promo .btn{ background: var(--accent); border: 0; color:#26150a; font-weight: 600; }

  .hero{ padding: 6rem 1rem; text-align: center; }
  .hero h1{ font-weight: 800; color: var(--brand); }
  .filler{ height: 150vh; } /* scroll test karne ke liye */
a.navbar-brand {
    width: 18%;
}
a.navbar-brand img {
    width: 100%;
}

.mega-promo img {
    width: 100%;
}
@media (min-width: 992px) {
    .navbar-expand-lg .navbar-nav .dropdown-menu {
        position: absolute;
        top: 40px;
    }
}

/*////////Header Css///////////*/
/*////////Header Css///////////*/

.about-image2.Loyltics,
.charging-image,
.client,
.counter-box,
.innovative-wap,
.service-grid-icon,
.widgets-main-2,
ul.social-media li {
  text-align: center;
}
section.wrapper.container img {
  width: 240px;
}

.breadcrumb-item.active,
.loyalty-text span,
.widgets-main-2 i,
a.menu-link:hover {
  color: #94c11f;
}

@keyframes smoothScroll {
  0% {
    transform: translateY(-40px);
  }

  100% {
    transform: translateY(0);
  }
}


.banner-text h1,
.banner-text span {
  font-size: 50px;
  font-family: Poppins-Bold;
}

.btn {
  position: relative;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -webkit-box-shadow: none;
  box-shadow: none;
  border: 2px solid rgba(0, 0, 0, 0);
  background-color: #8fca07;
  color: #ffff;
  padding: 12px 26px;
}
.btn:hover {
  color: #fff !important;
  background-color: rgb(20 78 217);
  border-color: rgb(18 74 204);
}

.hero-slider {
  position: relative;
  height: 100vh;
  overflow: hidden;
  background: #00193c;
}

.hero-slider:before {
  content: "";
  position: absolute;
  right: -150px;
  top: -150px;
  width: 500px;
  height: 500px;
  background: #2d76cd;
  filter: blur(180px);
  opacity: 0.2;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.8s ease;
}

.slide.active {
  opacity: 1;
  visibility: visible;
}
.slider-main {
  max-width: 1400px;
  width: 90%;
  margin: auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding-top: 40px;
}

.content {
  width: 45%;
}
.content h1 {
  font-size: 45px;
  line-height: 60px;
  margin: 20px 0 2px;
  color: #fff;
  text-transform: capitalize;
}
.content p {
  color: #ccc;
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 20px;
}
span.Product {
  border: 2px solid #fff;
  padding: 5px 18px;
  border-radius: 30px;
  color: #fff;
  font-weight: 600;
}

.image-wrapper {
  width: 55%;
  height: 600px;
  position: relative;
}

.laptop-img {
  position: absolute;
  width: 100%;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
}

.mobile-img {
  position: absolute;
  width: 32%;
  right: -40px;
  bottom: 40px;
  z-index: 2;
}

/* animations */
.slider-main .content span,
.slider-main .content h1,
.slider-main .content p,
.slider-main .btn {
  opacity: 0;
}

.slide.active .content span {
  animation: fadeUp 0.6s forwards;
}

.slide.active .content h1 {
  animation: fadeUp 0.8s 0.2s forwards;
}

.slide.active .content p {
  animation: fadeUp 0.8s 0.4s forwards;
}

.slide.active .btn {
  animation: fadeUp 0.8s 0.6s forwards;
}

.slide.active .laptop-img {
  animation: laptopIn 1s forwards;
}

.slide.active .mobile-img {
  animation: mobileIn 1.2s forwards;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes laptopIn {
  from {
    opacity: 0;
    transform: translate(100px, -50%);
  }

  to {
    opacity: 1;
    transform: translate(0, -50%);
  }
}

@keyframes mobileIn {
  from {
    opacity: 0;
    transform: translateY(80px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.prev,
.next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  font-size: 18px;
  line-height: 15px;
}

.prev {
  left: 20px;
}

.next {
  right: 20px;
}


@media (max-width: 991px) {
  .hero-slider {
    height: auto;
    min-height: 100vh;
  }

  .content,
  .image-wrapper {
    width: 100%;
  }

  .content h1 {
    font-size: 40px;
  }

  .image-wrapper {
    height: 350px;
  }

  .laptop-img {
    width: 90%;
    left: 50%;
    right: auto;
    transform: translate(-50%, -50%);
  }

  .mobile-img {
    width: 120px;
    right: 40px;
    bottom: 10px;
  }
}

@media (max-width: 576px) {
  .content h1 {
    font-size: 30px;
  }

  .content p {
    font-size: 15px;
  }

  .image-wrapper {
    height: 260px;
  }

  .mobile-img {
    width: 90px;
    right: 10px;
  }
}

.text-orange {
  color: #8fca07;
}
.fw-bold {
  font-weight: 800 !important;
}
.pb-60 {
  padding-bottom: 60px !important;
}

/***************/
/***************/

section.highlights {
  background-color: #f3f6fa;
}
.height-content p {
  font-size: 16px;
  line-height: 28px;
  margin-bottom: 40px;
  height: 140px;
}
.top-bar-content h6 {
  font-size: 2.5rem;
  color: #262626;
  padding: 52px 0;
  font-weight: 700;
}
.height-content h3 {
  font-weight: 700;
  font-size: 20px;
  color: #233d62 !important;
}

.height-content img {
  width: 100%;
}
.height-content {
  padding: 24px;
  background-color: #fff;
  border: 1px solid #eeeeee;
  border-radius: 20px;
  transition: 0.5s all;
}
.height-content:hover {
  box-shadow: 0 20px 30px rgb(1 6 20 / 20%);
}
@-webkit-keyframes gelatine {
  from,
  to {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
  25% {
    -webkit-transform: scale(0.7, 1.1);
    transform: scale(0.7, 1.1);
  }
  50% {
    -webkit-transform: scale(1.1, 0.7);
    transform: scale(1.1, 0.7);
  }
  75% {
    -webkit-transform: scale(0.95, 1.05);
    transform: scale(0.95, 1.05);
  }
}
@keyframes gelatine {
  from,
  to {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
  25% {
    -webkit-transform: scale(0.7, 1.1);
    transform: scale(0.7, 1.1);
  }
  50% {
    -webkit-transform: scale(1.1, 0.7);
    transform: scale(1.1, 0.7);
  }
  75% {
    -webkit-transform: scale(0.95, 1.05);
    transform: scale(0.95, 1.05);
  }
}
/***************/
/***************/

section.business-growth {
  background-color: #00193c;
}
.choose-box {
  height: 100%;
  padding: 45px 28px 40px;
  background-color: #fff;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  border-radius: 10px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.choose-box h4.title {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 12px;
  line-height: 30px;
}
.choose-content p {
  font-size: 16px;
  line-height: 30px;
  color: #485666;
  margin-bottom: 0;
}
.choose-box .choose-icon {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  color: #8fca07;
  font-size: 88px;
  line-height: 1;
  max-width: 88px;
  margin-bottom: 28px;
}
.choose-box:hover {
  background-color: #8fca07;
}
.choose-box:hover .btn-text,
.choose-box:hover .desc,
.choose-box:hover .title {
  color: #fff !important;
}
section.business-growth h6.text-center {
  color: #ffff;
}

.choose-box:hover .choose-icon {
  color: #fff;
  -webkit-animation: gelatine 0.6s;
  animation: gelatine 0.6s;
}

/***************/
/***************/

.service5 {
  padding: 70px 0;
  background-color: #f3f6fa;
}
.service5-box {
  position: relative;
  margin-bottom: 30px;
}
.service5-box .image {
  overflow: hidden;
  border-radius: 8px;
}
.service5-box .image img {
  width: 100%;
  transition: all 0.4s;
}
.service5-box .content-area .num {
  color: #fff;
  font-size: 24px;
  text-transform: capitalize;
  position: absolute;
  left: 18px;
  top: 18px;
  transition: all 0.4s;
  transform: translateY(-30px);
  opacity: 0;
  font-weight: 900;
}
.service5-box .content-area .arrow {
  display: inline-block;
  height: 60px;
  width: 60px;
  text-align: center;
  border-radius: 60px;
  line-height: 60px;
  background-color: #8fca07;
  color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  font-size: 16px;
  margin-left: -30px;
  margin-top: -30px;
  transition: all 0.4s;
  transform: scale(1.4) rotate(-45deg);
  opacity: 0;
}
.service5-box .content-area h4 a {
  color: #fff;
  text-transform: capitalize;
  position: absolute;
  left: 24px;
  bottom: 30px;
  transition: all 0.4s;
  font-size: 20px;
}
.service5-box:hover .image img {
  transition: all 0.4s;
  transform: scale(1.1) rotate(2deg);
}
.service5-box:hover .content-area .arrow {
  transform: scale(1) rotate(-45deg);
  transition: all 0.4s;
  opacity: 1;
}
.service5-box:hover .content-area .num {
  transition: all 0.4s;
  transform: translateY(0);
  opacity: 1;
}

.service5-box .content-area h4 a:hover {
  transition: all 0.4s;
  color: #8fca07;
}

/***************/
/***************/

.pricing {
  padding: 40px 0 0px;
}

.tabs-box .active-tab {
  display: block !important;
}

.switcher_tab_btns {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  line-height: 30px;
  color: #000;
  font-weight: 500;
  text-align: right;
  padding: 0;
}
.switcher_tab_btns li {
  padding-right: 72px;
  position: relative;
  cursor: pointer;
  color: #2e4a61;
  font-size: 20px;
  font-weight: 500;
  list-style: none;
}

.switcher_tab_btns li:last-child {
  padding-left: 35px;
  padding-right: 0;
}

.switcher_tab_btns:before {
  position: absolute;
  left: 18px;
  right: 0;
  margin: 0 auto;
  height: 32px;
  width: 70px;
  content: "";
  border-radius: 40px;
  background-color: rgb(143 202 7 / 20%);
  cursor: pointer;
}
.common-title {
  margin-bottom: 20px;
}
.switcher_tab_btns li:before {
  position: absolute;
  top: 2px;
  height: 26px;
  width: 26px;
  background-color: #8fca07;
  border-radius: 50%;
  content: "";
  right: -10px;
  transition: all 300ms ease;
  cursor: pointer;
}
.tabs-content {
  margin-top: 60px;
}
.switcher_tab_btns li.active-btn:before {
  right: 22px;
}

.switcher_tab_btns li:last-child:before {
  display: none;
}

.pricing-block-one {
  position: relative;
  border-radius: 23px;
  border: 1px solid #eeeeee;
  background-color: #fff;
  transition: 0.5s;
}

.table-header {
  position: relative;
  background-color: #f3f6fa;
  border-radius: 23px 23px 0 0;
  padding: 30px 30px 10px;
  transition: 0.5s;
  overflow: hidden;
}
.table-body {
  padding: 34px 34px 24px;
  border-radius: 0 0 20px 20px;
  transition: 0.5s;
}
.pricing-block-one:hover .table-header {
  background-color: #00193c;
}
.pricing-block-one:hover .table-body {
  background-color: #f3f6fa;
}
.pricing-block-one:hover .table-header p,
.pricing-block-one:hover .table-header h2,
.pricing-block-one:hover .table-header sub {
  color: #fff !important;
}
.table-header h6 {
  display: inline-block;
  color: #00193c;
  font-size: 20px;
  font-weight: 600;
  line-height: 24px;
  letter-spacing: 0.2px;
  padding: 5px 27px;
  border-radius: 5px;
  background-color: #fff;
  margin-bottom: 20px;
  transition: 0.5s;
}
.table-header p {
  font-size: 16px;
  transition: 0.5s;
}
.table-header h2 {
  font-size: 38px;
  line-height: 56px;
  font-weight: 700;
  display: inline-block;
  padding: 10px 0 0px;
  transition: 0.5s;
  color: #00193c;
}
.table-header sub {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  bottom: 0;
  transition: 0.5s;
}
.table-header .yearly {
  background-color: #8fca07;
  color: #ffffff;
  padding: 10px 60px;
  position: absolute;
  top: 24px;
  right: -40px;
  transform: rotate(43deg);
  font-size: 1.25rem;
}
.pricing-block-one ul.pricing-list {
  margin-bottom: 20px;
  padding-left: 0;
}
.pricing-block-one ul.pricing-list li {
  font-size: 16px;
  line-height: 27px;
  font-weight: 500;
  transition: 0.5s;
  margin-bottom: 16px;
  display: flex;
}

.pricing-block-one ul.pricing-list li i {
  margin-right: 5px;
  line-height: 25px;
  color: #8dc836;
}
.pricing-block-one .btn-1 {
  margin: 15px 0 15px;
  padding: 15px 60px;
}

/***************/
/***************/

.rm-contact-area .s-two {
  bottom: -95px;
  right: 0;
  z-index: -1;
}
.risk-sub-text {
  color: #0c7df8;
}
.pl-50 {
  padding-left: 50px;
}
.risk-contact-form-bg {
  padding: 32px;
  padding-bottom: 42px;
  border-radius: 16px;
}
.risk-bg-color-two {
  background-color: #00193c;
}
.risk-form-box {
  padding: 40px 32px;
  border-radius: 12px;
  background-color: #fff;
}
.flh-24 {
  line-height: 24px;
}
.mb-20 {
  margin-bottom: 20px;
}
.mt-20 {
  margin-top: 20px;
}
.risk-form-item.mb-20 h6 {
  font-size: 14px;
  font-family: "Poppins-Medium";
  margin-bottom: 5px;
}
.z-1 {
  z-index: 1 !important;
}
.get {
  font-size: 18px;
}
.risk-color-two {
  color: #485666;
}
.flh-28 {
  line-height: 28px;
}
.mb-30 {
  margin-bottom: 30px;
}
.get2 {
  font-size: 22px;
}
.risk-form-item.mb-20 input {
  border: 1px solid #1118271f;
  padding: 12px 15px;
  font-size: 14px;
  color: #737373;
}
.risk-form-item select.form-select {
    border: 1px solid #1118271f;
    padding: 12px 15px;
    font-size: 14px;
    color: #737373;
}

/***************/
/***************/

.ptb-60 {
  padding: 60px 0;
}
.risk-bg-color-three {
  background-color: #f3f6fa;
  border-radius: 12px;
  padding: 60px 0;
}
.testimonials-box {
  -webkit-box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.1),
    0px 1px 2px 0px rgba(0, 0, 0, 0.06);
  box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.1),
    0px 1px 2px 0px rgba(0, 0, 0, 0.06);
  border-radius: 8px;
  background-color: #fff;
  padding: 22px 26px;
  height: 354px;
  margin-bottom: 10px;
}
.live-imag img {
  width: 50px !important;
  height: 50px;
  border-radius: 100%;
  object-fit: cover;
}
.testimonial-text h6 {
  font-size: 20px;
  color: #233d62;
}
.testimonial-text ul li {
  display: inline-block;
}
.testimonial-text ul li {
  display: inline-block;
  color: #09b985;
  font-size: 12px;
}
.Common_outer2 {
  padding: 0 40px;
}
.testimonials-box p {
  color: #485666;
  font-size: 14px;
  line-height: 28px;
}
span.quote1 i {
  color: #94c11f;
  font-size: 16px;
  position: absolute;
  left: 11px;
  top: 77px;
}
span.quote2 i {
  color: #94c11f;
  font-size: 16px;
  position: absolute;
  right: 18px;
  bottom: 24px;
  transform: rotate(180deg);
}
.rm-testimonial-area .s-one {
  right: 0;
  bottom: 0;
}
.main-box.d-flex {
  gap: 14px;
}
.Common_outer2 .owl-theme .owl-dots .owl-dot.active span {
  width: 28px;
  border-radius: 4px;
  background-color: #8fca07;
}
.Common_outer2 .owl-theme .owl-dots .owl-dot:hover span {
  background-color: #8fca07;
}
.Common_outer2 .owl-theme .owl-nav.disabled + .owl-dots {
  margin-top: 34px;
}

/***************/
/***************/

.blog-card {
  -webkit-box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.1),
    0px 1px 2px 0px rgba(0, 0, 0, 0.06);
  box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.1),
    0px 1px 2px 0px rgba(0, 0, 0, 0.06);
  border-radius: 15px;
  background-color: #fff;
  padding: 20px;
}
.blog-thumb,
.blog-thumb img {
  border-radius: 10px 10px 0 0;
}
.blog-thumb {
  margin-bottom: 0;
  transition: 0.5s;
  height: 230px;
}
.blog-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.blog-content {
  padding: 15px 0px 0;
}
.blog-date span {
  font-weight: 500;
  font-size: 14px;
  line-height: 12px;
  color: #787b83;
  padding-left: 15px;
  position: relative;
}
.blog-date span:after {
  content: "";
  position: absolute;
  left: 2px;
  top: 6px;
  background-color: #94c11f;
  width: 8px;
  height: 8px;
  border-radius: 100%;
}
.blog-title-box a {
  font-weight: 700;
  font-size: 18px;
  line-height: 26px;
  margin-top: 6px;
  display: block;
}
.blog-title-box p {
  margin: 10px 0;
  line-height: 28px;
  font-size: 15px;
}
.mt-40 {
  margin-top: 40px;
}
.pb-60 {
  padding-bottom: 60px !important;
}

/***************/
/***************/

.rm-footer-area {
  background-color: #00193c;
  padding: 80px 0 0;
}
.footer-single-col img {
  width: 50%;
}
.footer-social-list li a {
  display: block;
  width: 36px;
  height: 36px;
  line-height: 34px;
  text-align: center;
  border: 2px solid rgba(255, 255, 255, 0.12);
  border-radius: 4px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  font-size: 20px;
}
.footer-single-col h3,
.footer-single-col .h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 28px;
}
.footer-nav-list li a {
  font-size: 15px;
  margin: 10px 0;
  display: block;
  opacity: 0.8;
  font-weight: 500;
  font-family: "Poppins", sans-serif;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  color: #fff;
}
.social-wap li {
  margin-bottom: 12px;
  padding-left: 30px;
  position: relative;
  line-height: 25px;
}
.social-wap li i {
  margin-right: 0;
  font-size: 22px;
  color: #8dc836;
  position: absolute;
  left: 0;
  top: 2px;
}
.social-wap li b {
  font-weight: 500;
  font-size: 15px;
}

.rm-footer-bottom {
  border-top: 1px solid #ffffff5e;
  padding: 12px 0 0;
  color: #ffffffad;
  margin-top: 50px;
  font-size: 14px;
}
.bgc-white {
  background-color: #fff;
}

/***************/
/***************/

.digi-why-left {
  position: relative;
}
.digi-why-left ul li {
  position: absolute;
}
.digi-why-left ul li:nth-child(1) {
  top: 40px;
  left: 60px;
}
.digi-why-left ul li:nth-child(2) {
  right: 0;
  bottom: -10px;
}
.span-arrow {
  font-size: 15px;
  margin-bottom: 10px;
  color: #8fca07;
  font-weight: 600;
}
.digi-why-right ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.digi-why-right ul li {
  -webkit-box-shadow: 14px 14px 56px rgba(33, 38, 106, 0.1);
  box-shadow: 14px 14px 56px rgba(33, 38, 106, 0.1);
  border-radius: 4px;
}
.height-content img {
  width: 100%;
}
.height-content {
  padding: 24px;
  background-color: #fff;
  border: 1px solid #eeeeee;
  border-radius: 20px;
  transition: 0.5s all;
}
section.digi-why {
  padding: 80px 0;
}

/***************/
/***************/
.Trusted {
  margin-bottom: 25px;
  font-size: 30px;
  color: #233d62;
  font-weight: 700;
  text-transform: capitalize;
}
.client-box {
    padding: 10px 18px;
    box-shadow: 0px 0px 16px rgba(33, 38, 106, 0.1);
    border-radius: 4px;
    margin: 24px 0px;
    text-align: center;
}
.client-box img {
    max-width: 100%;
    height: 70px;
    max-width: 75%;
    margin: 0 auto;
    object-fit: contain;
}
section.clinet-logo {
  padding: 50px 0 20px;
}
.img-fluid {
  max-width: 100%;
  height: auto;
  max-width: 80%;
}

/***************/
/***************/

section.banner-wap {
  background-color: #00193c;
  padding: 150px 0;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.inner-header.text-center.heading1 h1,
.inner-header.text-center.heading1 a {
  color: #ffff;
}
.inner-header a i {
  margin: 0 4px;
  color: #8dc836;
}
.about1-section-area-widget.sp1 {
  padding: 120px 0;
}
.about-images-area {
  position: relative;
}
.about-header-area.heading2 p {
  line-height: 30px;
}
.about-header-area.heading2 h2 {
  font-size: 36px;
}
.about1-section-area-widget .about-images-area .img1 img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 4px;
}
.space30 {
  height: 30px;
}
.about1-section-area-widget .about-images-area .check-icons {
  display: flex;
  align-items: center;
  border-radius: 8px;
  background: #fff;
  box-shadow: -2px 4px 40px 0px rgba(0, 0, 0, 0.09);
  padding: 16px 20px;
  width: 340px;
  top: 42%;
  left: 24%;
  right: 24%;
  position: absolute;
}
.aniamtion-key-1 {
  position: relative;
  animation-name: animation-1;
  animation-duration: 3s;
  animation-iteration-count: infinite;
  animation-direction: alternate;
}
@keyframes animation-1 {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(30px);
  }
}
.check-icons.aniamtion-key-1 p {
  margin: 0;
  padding: 0 0px 0px 48px;
  font-weight: 500;
}
.check-icons.aniamtion-key-1 i {
  position: absolute;
  left: 15px;
  top: 16px;
  font-size: 42px;
  color: #8fca07;
}
.info h2.risk-color {
  font-size: 36px;
}
.info p {
  line-height: 30px;
}

/***************/
/***************/

.works-about-area {
  position: relative;
  z-index: 1;
}
.works-about-items::before {
  position: absolute;
  right: 20%;
  top: 0;
  content: "";
  height: 100%;
  width: 500%;
  background: #f3f7fd;
  z-index: -1;
}
.works-about-area .works-about-items .thumb {
  position: relative;
  z-index: 1;
  margin-bottom: 50px;
}
.thumb img {
  height: auto;
  max-width: 100%;
  border: none;
  border-radius: 0;
  box-shadow: none;
}
.works-about-area .works-about-items .info {
  padding-right: 80px;
}
.works-about-area .works-about-items .thumb .fun-fact {
  position: absolute;
  left: -50px;
  bottom: -50px;
  background: #ffffff;
  padding: 50px;
  box-shadow: 0 5px 30px 0 rgba(214, 215, 216, 0.57);
  text-align: center;
}
.works-about-area .works-about-items .thumb .fun-fact .timer {
  display: inline-block;
  font-weight: 800;
  color: #0e2b3d;
  font-size: 2rem;
  position: relative;
  z-index: 1;
  margin-bottom: 10px;
  margin-left: -20px;
}
.works-about-area .works-about-items .thumb .fun-fact .medium {
  display: block;
  font-weight: 600;
}
.default-padding {
  padding-top: 120px;
  padding-bottom: 90px;
}
.about1-section-area-widget.sp1 {
  padding: 120px 0;
}
.works-about-items ul li {
  margin-top: 25px;
  align-items: center;
  position: relative;
  z-index: 1;
  padding-left: 25px;
}
.info ul {
  list-style: none;
  padding-left: 0;
}
.info ul li {
  position: relative;
  font-weight: 600;
  color: #233d62;
}
.info ul li i {
  position: absolute;
  left: 0;
  top: 4px;
  color: #8dc836;
}

/***************/
/***************/

.work-process-area .single-item {
  margin-bottom: 30px;
}

.work-process-area .thumb img {
  box-shadow: -1px 3px 10px 0 rgba(0, 0, 0, 0.06);
  border: 9px solid #ffffff;
}

.work-process-area .work-pro-items .item h5 {
  position: relative;
  z-index: 1;
  font-weight: 600;
  font-size: 18px;
  margin-top: 18px;
}

.work-process-area .work-pro-items .item .icon {
  position: relative;
}

.work-process-area .work-pro-items .item .icon span {
  position: absolute;
  left: 15px;
  top: 0;
  font-size: 100px;
  z-index: -1;
  color: #f4f4f4;
  opacity: 0.9;
  font-weight: 900;
  color: transparent;
  -webkit-text-stroke: 2px #f4f4f4;
  line-height: 50px;
  font-family: sans-serif;
}

.work-process-area .work-pro-items .item {
  border: 1px solid #e7e7e7;
  padding: 50px 30px;
  background: #ffffff;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.work-process-area .work-pro-items .item p {
  margin: 0;
  line-height: 30px;
  height: 200px;
  color: #485666;
}

/* Animation */
.work-process-area .work-pro-items .item::before,
.work-process-area .work-pro-items .item::after {
  content: "";
  width: 0;
  height: 2px;
  position: absolute;
  transition: all 0.2s linear;
  background: #8fca07;
}

.work-process-area .work-pro-items .item .item-inner::before,
.work-process-area .work-pro-items .item .item-inner::after {
  content: "";
  width: 2px;
  height: 0;
  position: absolute;
  transition: all 0.2s linear;
  background: #8fca07;
}

.work-process-area .work-pro-items .item:hover::before,
.work-process-area .work-pro-items .item:hover::after {
  width: 100%;
}

.work-process-area .work-pro-items .item:hover .item-inner::before,
.work-process-area .work-pro-items .item:hover .item-inner::after {
  height: 100%;
}

.work-process-area .work-pro-items .item::before,
.work-process-area .work-pro-items .item::after {
  transition-delay: 0.2s;
}

.work-process-area .work-pro-items .item .item-inner::before,
.work-process-area .work-pro-items .item .item-inner::after {
  transition-delay: 0s;
}

.work-process-area .work-pro-items .item::before {
  right: 0;
  top: 0;
}

.work-process-area .work-pro-items .item::after {
  left: 0;
  bottom: 0;
}

.work-process-area .work-pro-items .item .item-inner::before {
  left: 0;
  top: 0;
}

.work-process-area .work-pro-items .item .item-inner::after {
  right: 0;
  bottom: 0;
}

.work-process-area .work-pro-items .item:hover::before,
.work-process-area .work-pro-items .item:hover::after {
  transition-delay: 0s;
}

.work-process-area .work-pro-items .item:hover .item-inner::before,
.work-process-area .work-pro-items .item:hover .item-inner::after {
  transition-delay: 0.2s;
}
.item-inner img {
  width: 100%;
  max-width: 26%;
}
.work-process-area.overflow-hidden.bottom-less {
  padding: 80px 0;
}
.owl-carousel,
.owl-carousel.owl-loaded {
  display: block;
}
.pt-60 {
  padding-top: 60px !important;
}

/***************/
/***************/

.contact-info__single {
  position: relative;
  display: flex;
  background-color: #f3f6fa;
  text-align: center;
  padding: 40px 40px 41px;
  margin-bottom: 30px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 260px;
  border-radius: 10px;
  z-index: 2;
}
.contact-info__icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  background-color: #fff;
  border-radius: 50%;
  margin: 0 auto;
  z-index: 1;
  font-size: 30px;
  color: #8fca07;
}
.contact-info__single p {
  margin-top: 20px;
  margin-bottom: 6px;
  color: #757f95;
}
.contact-info__single h3 {
  font-size: 18px;
  font-weight: 700;
  line-height: 32px;
  color: #233d62;
  line-height: 26px;
}
.contact-info__single h3 a {
  color: #233d62;
}
section.contact-info {
  padding: 100px 0 0;
}
.contact-info__single::after {
  background: #00193c;
  position: absolute;
  content: "";
  height: 100%;
  left: 50%;
  width: 10px;
  border-radius: 10px;
  top: 0;
  transition: all 0.4s;
  visibility: hidden;
  opacity: 0;
  z-index: -1;
}
.contact-info__single:hover::after {
  width: 100%;
  left: 0;
  transition: all 0.4s;
  visibility: visible;
  opacity: 1;
}

.contact-info__single:hover p,
.contact-info__single:hover h3,
.contact-info__single:hover h3 a {
  color: #fff;
}
.pt-80 {
  padding-top: 80px;
}

/***************/
/***************/

section.digi-hero {
  background-color: #00193c;
}
.digi-hero-text h1 {
  color: #fff;
  font-size: 36px;
  line-height: 56px;
  margin-bottom: 4px !important;
}
.digi-hero-text p {
  color: #fff;
  line-height: 30px;
  width: 100%;
  max-width: 90%;
}
.digi-hero-img {
  text-align: center;
  height: 600px;
  padding: 40px;
}
.digi-hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 14px;
}
.all-industries {
  background-color: #f3f6fa;
  padding: 25px;
}
.all-industries ul li {
  background-color: #fff;
  margin-bottom: 20px;
  position: relative;
}
.all-industries ul li a {
  display: block;
  padding: 16px;
}
.all-industries ul li a span {
  float: right;
  color: #8dc836;
}
.all-industries h5 {
  color: #233d62;
  font-size: 24px;
  margin-bottom: 20px;
}
.service-sidebar-area.sp1 {
  padding: 60px 0;
}
ul.side-animation a.active {
  background-color: #00193c;
  color: #fff;
}
.loyalty-contnet h6 {
  color: #233d62;
  font-size: 20px;
  margin-bottom: 6px;
}
.fulling {
  padding-left: 30px;
}
.loyalty-contnet p {
  font-size: 15px;
  line-height: 31px;
  color: #485666;
  margin-bottom: 8px;
}
.loyalty-contnet {
  margin-bottom: 24px;
}
.loyalty-contnet ul li {
    position: relative;
    color: #485666;
    padding: 16px 0 0 22px;
    font-size: 15px;
}
.loyalty-contnet ul li i {
    position: absolute;
    left: 0;
    top: 19px;
    color: #8dc836;
}
ul.counts {
  column-count: 3;
}
.highlitetd-text {
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0px 4px 40px 0px rgba(0, 0, 0, 0.09);
  padding: 22px 22px 18px 28px;
  border-left: 4px solid #8dc836;
}
.service1-section-area {
  background-color: #f3f6fa;
  padding: 40px 0;
}
.service1-section-area .service1-boxarea {
  position: relative;
  z-index: 1;
  border-radius: 16px;
  background: #ffffff;
  padding: 28px;
  transition: all 0.4s;
  margin-bottom: 30px;
  overflow: hidden;
  box-shadow: 0px 0px 40px 0px rgba(0, 0, 0, 0.09);
}
.service1-section-area .service1-boxarea .icons {
  height: 70px;
  width: 70px;
  text-align: center;
  line-height: 36px;
  border-radius: 50%;
  transition: all 0.4s;
  display: inline-block;
  background: #8dc836;
  padding: 18px;
}
.service1-section-area .service1-boxarea .arrow {
  position: absolute;
  right: -100px;
  top: -100px;
  transition: all 0.8s;
}
.service1-section-area .service1-boxarea .arrow i {
  height: 40px;
  width: 40px;
  text-align: center;
  line-height: 50%;
  transition: all 0.4s;
  display: inline-block;
  background: #233d62;
  color: #fff;
  line-height: 40px;
  border-radius: 50%;
  transform: rotate(-45deg);
}
.space24 {
  height: 24px;
}
.service1-section-area .service1-boxarea h6 {
  font-size: 20px;
  margin-bottom: 3px;
}
.service1-section-area .service1-boxarea p {
  font-size: 15px;
  line-height: 30px;
  height: 80px;
}
.service1-section-area .service1-boxarea h5 {
  color: #233d62;
  line-height: 16px;
  padding-left: 68px;
  position: relative;
  z-index: 1;
  transition: all 0.4s;
  font-size: 26px;
}
.service1-section-area .service1-boxarea h5::after {
  position: absolute;
  z-index: 1;
  content: "";
  height: 2px;
  width: 60px;
  left: 0;
  top: 6px;
  transition: all 0.4s;
  background: #000;
}
.service1-section-area .service1-boxarea::after {
  position: absolute;
  content: "";
  height: 100%;
  width: 10px;
  transition: all 0.4s;
  left: 50%;
  border-radius: 16px;
  background: #8dc836;
  visibility: hidden;
  opacity: 0;
  top: 0;
  z-index: -1;
}
.service1-section-area .service1-boxarea:hover p {
  color: #fff;
  transition: all 0.4s;
  opacity: 80%;
}

.service1-section-area .service1-boxarea:hover .arrow {
  top: 16px;
  right: 16px;
  transition: all 0.6s;
}
.service1-section-area .service1-boxarea:hover .icons {
  transform: rotateY(-180deg);
  transition: all 0.4s;
  background-color: #233d62;
}
.service1-section-area .service1-boxarea:hover h6 {
  color: #fff;
  transition: all 0.4s;
}
.service1-section-area .service1-boxarea:hover p {
  color: #fff;
  transition: all 0.4s;
  opacity: 80%;
}
.service1-section-area .service1-boxarea:hover h5 {
  color: #fff;
  transition: all 0.4s;
  padding-left: 0;
}
.service1-section-area .service1-boxarea:hover h5::after {
  background: #fff;
  transition: all 0.4s;
  left: 42px;
}
.service1-section-area .service1-boxarea:hover::after {
  visibility: visible;
  opacity: 1;
  transition: all 0.4s;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.icons img {
  width: 100%;
}
ul.count2 {
  column-count: 2;
  width: 80%;
}
.inner-banner-2 img {
  width: 100%;
  max-width: 100%;
}
.digi-hero2 {
  padding: 70px 0;
}

.fcard {
  background: #fff;
  border: 1px solid #e8e8f0;
  border-radius: 15px;
  padding: 32px 16px;
  text-align: center;
  transition: 0.25s;
  margin-bottom: 36px;
}
.fcard .icon {
  width: 65px;
  height: 65px;
  margin: 0 auto 18px;
  border-radius: 14px;
  background: #8fca07;
  display: grid;
  place-items: center;
  color: #fff;
}
.fcard h3 {
  font-size: 18px;
  margin-bottom: 10px;
}
.fcard p {
  font-size: 15px;
  line-height: 30px;
  height: 80px;
}
.fcard:hover {
  box-shadow: 0 16px 40px rgba(22, 22, 83, 0.1);
  transform: translateY(-4px);
}
.fcard span.icon svg {
  width: 35px;
  height: 35px;
}
section.features {
  background-color: #f3f6fa;
  padding: 60px 0;
}
.bult-image img {
  width: 100%;
}
.bult-content {
  padding-left: 40px;
}
.benefit {
  display: flex;
  gap: 18px;
  margin-bottom: 12px;
}
.benefit .icon {
  flex: none;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid #e8e8f0;
  display: grid;
  place-items: center;
  color: #8fca07;
}
.benefit h4 {
  font-size: 16px;
  margin-bottom: 5px;
}
.benefit p {
  font-size: 14px;
  max-width: 380px;
}
.benefit span.icon svg {
  width: 28px;
  height: 28px;
}
.bult-content h2 {
  padding: 8px 0 25px;
}

.bult-image {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
section.built-for {
  padding: 60px 0;
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 60px;
  position: relative;
}
.steps-grid::before {
  content: "";
  position: absolute;
  top: 38px;
  left: 10%;
  right: 10%;
  border-top: 2px dashed #e6e4f7;
}
.step {
  text-align: center;
  position: relative;
}
.step .icon {
  width: 76px;
  height: 76px;
  margin: 0 auto 10px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid #e8e8f0;
  box-shadow: 0 10px 26px rgba(22, 22, 83, 0.08);
  display: grid;
  place-items: center;
  color: #8fca07;
  position: relative;
  z-index: 1;
  font-size: 24px;
}
section.lunch-b2b.lunch-b2c {
  padding-top: 70px;
}
.step .no {
  font-size: 20px;
  font-weight: 600;
  color: #8fca07;
}
.step h4 {
  font-size: 16px;
  margin: 6px 0 6px;
}
.step p {
  font-size: 15px;
  margin: 0 auto;
}
.steps-grid span.icon svg {
  width: 36px;
  height: 36px;
}
.step:hover .icon {
  background: #8fca07;
  color: #ffff;
}
.ind-sec {
  background: radial-gradient(circle at 90% 10%, #02326b, transparent 50%),
    #00193c;
  overflow: hidden;
}
.ind-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.ind {
  position: relative;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(143, 202, 7, 0.12);
  border-radius: 18px;
  padding: 28px 22px;
  transition: 0.4s;
  cursor: pointer;
  overflow: hidden;
}
.ind::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 50% 0%,
    rgba(143, 202, 7, 0.18),
    transparent 70%
  );
  opacity: 0;
  transition: 0.4s;
}
.ind i {
  font-size: 27px;
  color: #8fca07;
  margin-bottom: 15px;
  display: block;
}
.ind h4 {
  color: #fff;
  font-size: 18px;
  margin-bottom: 6px;
}
.ind p {
  font-size: 15px;
  color: #ffffffb5;
}
.ind:hover {
  transform: translateY(-8px);
  border-color: #8fca07;
  box-shadow: 0 24px 50px rgba(143, 202, 7, 0.18);
}
.ind-sec {
  background: radial-gradient(circle at 90% 10%, #02326b, transparent 50%),
    #00193c;
  overflow: hidden;
  padding: 50px 0;
}
section.ind-sec.on-dark .heading2 h2 {
  color: #fff;
}
section.lunch-b2b {
  padding-bottom: 80px;
}

/***************/
/***************/

.grid6 {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}
.card {
  background: #fff;
  border: 1px solid #eceaf3;
  border-radius: 16px;
  padding: 18px 14px;
  text-align: center;
  transition: 0.2s;
}
.card .cic {
  width: 55px;
  height: 55px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  background-color: #8fca071f;
  font-size: 25px;
}
.card h5 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.3;
}
.card p {
  font-size: 15px;
  margin-bottom: 0;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px -22px #00193c91;
  border-color: #00193c33;
}
section.features2 {
  padding: 70px 0;
}
.flow {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
  margin-top: 12px;
}
.flow::before {
  content: "";
  position: absolute;
  top: 24px;
  left: 8%;
  right: 8%;
  height: 2px;
  border-top: 2px dashed #8fca07;
}
.flow .step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  width: 80px;
  position: relative;
  z-index: 1;
}
.flow .step .sc {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid #8fca07;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}
.flow .step span {
  font-size: 15px;
  font-weight: 800;
  text-align: center;
}
.bult-content.bult-content2 h2 {
  padding: 8px 0 14px;
}
section.built {
  background-color: #f3f6fa;
  padding: 60px 0;
}
.bult-content.bult-content2 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

/***************/
/***************/

/*===================
 PRRELOADER AREA CSS 
 ========================
*/
/* Preloader */
.ctn-preloader {
  align-items: center;
  cursor: none;
  display: flex;
  height: 100%;
  justify-content: center;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 9009999;
}

.ctn-preloader .animation-preloader {
  position: absolute;
  z-index: 100;
}

/* Spinner cargando */
.ctn-preloader .animation-preloader .spinner {
  animation: spinner 1s infinite linear;
  border-radius: 50%;
  border: 3px solid #8fca07;
  border-top-color: rgba(
    255,
    255,
    255,
    0.8431372549
  );
  height: 9em;
  margin: 0 auto 3.5em auto;
  width: 9em;
}

/* Texto cargando */
.ctn-preloader .animation-preloader .txt-loading {
  font: 4em "Figtree", sans-serif;
  font-weight: 500;
  text-align: center;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.ctn-preloader .animation-preloader .txt-loading .letters-loading:before {
  animation: letters-loading 4s infinite;
  color: #8fca07;
  content: attr(data-text-preloader);
  left: 0;
  opacity: 0;
  position: absolute;
  top: 0;
  transform: rotateY(-90deg);
}

.ctn-preloader .animation-preloader .txt-loading .letters-loading {
  position: relative;
}

.ctn-preloader
  .animation-preloader
  .txt-loading
  .letters-loading:nth-child(2):before {
  animation-delay: 0.2s;
}

.ctn-preloader
  .animation-preloader
  .txt-loading
  .letters-loading:nth-child(3):before {
  animation-delay: 0.4s;
}

.ctn-preloader
  .animation-preloader
  .txt-loading
  .letters-loading:nth-child(4):before {
  animation-delay: 0.6s;
}

.ctn-preloader
  .animation-preloader
  .txt-loading
  .letters-loading:nth-child(5):before {
  animation-delay: 0.8s;
}

.ctn-preloader
  .animation-preloader
  .txt-loading
  .letters-loading:nth-child(6):before {
  animation-delay: 1s;
}

.ctn-preloader
  .animation-preloader
  .txt-loading
  .letters-loading:nth-child(7):before {
  animation-delay: 1.2s;
}

.ctn-preloader
  .animation-preloader
  .txt-loading
  .letters-loading:nth-child(8):before {
  animation-delay: 1.4s;
}
.ctn-preloader
  .animation-preloader
  .txt-loading
  .letters-loading:nth-child(9):before {
  animation-delay: 1.6s;
}
.ctn-preloader
  .animation-preloader
  .txt-loading
  .letters-loading:nth-child(10):before {
  animation-delay: 1.8s;
}

.ctn-preloader .animation-preloader .txt-loading .letters-loading {
  color: rgba(255, 255, 255, 0.103);
}

.ctn-preloader.ctn-preloader1 .loader-section {
  background-color: transparent;
  height: 100%;
  position: fixed;
  top: 0;
  width: calc(50% + 1px);
}

.ctn-preloader.ctn-preloader1 .loader-section-left {
  background-color: #00193c;
}

.ctn-preloader.ctn-preloader1 .loader-section-right {
  background-color: #00193c;
}

.ctn-preloader.ctn-preloader2 .loader-section {
  background-color: transparent;
  height: 100%;
  position: fixed;
  top: 0;
  width: calc(50% + 1px);
  background-color: #0d4f51;
}

.ctn-preloader.ctn-preloader3 .loader-section {
  background-color: transparent;
  height: 100%;
  position: fixed;
  top: 0;
  width: calc(50% + 1px);
  background-color: #dd2f43;
}

.ctn-preloader.ctn-preloader4 .loader-section {
  background-color: transparent;
  height: 100%;
  position: fixed;
  top: 0;
  width: calc(50% + 1px);
  background-color: #2b29a4;
}

.ctn-preloader.ctn-preloader5 .loader-section {
  background-color: transparent;
  height: 100%;
  position: fixed;
  top: 0;
  width: calc(50% + 1px);
  background-color: #6a6a9a;
}

.ctn-preloader.ctn-preloader6 .loader-section {
  background-color: transparent;
  height: 100%;
  position: fixed;
  top: 0;
  width: calc(50% + 1px);
  background-color: #4893ff;
}

.ctn-preloader.ctn-preloader7 .loader-section {
  background-color: transparent;
  height: 100%;
  position: fixed;
  top: 0;
  width: calc(50% + 1px);
  background-color: #b51dee;
}

.ctn-preloader.ctn-preloader12 .loader-section {
  background-color: transparent;
  height: 100%;
  position: fixed;
  top: 0;
  width: calc(50% + 1px);
  background-color: #de8e59;
}

.ctn-preloader.ctn-preloader13 .loader-section {
  background-color: transparent;
  height: 100%;
  position: fixed;
  top: 0;
  width: calc(50% + 1px);
  background-color: #02341c;
}

.ctn-preloader.ctn-preloader8 .loader-section {
  background-color: transparent;
  height: 100%;
  position: fixed;
  top: 0;
  width: calc(50% + 1px);
  background-color: #e50114;
}

.ctn-preloader.ctn-preloader9 .loader-section {
  background-color: transparent;
  height: 100%;
  position: fixed;
  top: 0;
  width: calc(50% + 1px);
  background-color: #fe6032;
}

.ctn-preloader.ctn-preloader10 .loader-section {
  background-color: transparent;
  height: 100%;
  position: fixed;
  top: 0;
  width: calc(50% + 1px);
  background-color: #9400ff;
}

.ctn-preloader .loader-section {
  height: 100%;
  position: fixed;
  top: 0;
  width: calc(50% + 1px);
}

.ctn-preloader .loader-section.section-left {
  left: 0;
}

.ctn-preloader .loader-section.section-right {
  right: 0;
}

/* Efecto de fade en la animación de cargando */
.loaded .animation-preloader {
  opacity: 0;
  transition: 0.3s ease-out;
}

/* Efecto de cortina */
.loaded .loader-section.section-left {
  transform: translateX(-101%);
  transition: 0.7s 0.3s all cubic-bezier(0.1, 0.1, 0.1, 1);
}

.loaded .loader-section.section-right {
  transform: translateX(101%);
  transition: 0.7s 0.3s all cubic-bezier(0.1, 0.1, 0.1, 1);
}

/* Animación del preloader */
@keyframes spinner {
  to {
    transform: rotateZ(360deg);
  }
}
/* Animación de las letras cargando del preloader */
@keyframes letters-loading {
  0%,
  75%,
  100% {
    opacity: 0;
    transform: rotateY(-90deg);
  }
  25%,
  50% {
    opacity: 1;
    transform: rotateY(0deg);
  }
}
/* Tamaño de portatil hacia atras (portatil, tablet, celular) */
@media screen and (max-width: 767px) {
  /* Preloader */
  /* Spinner cargando */
  .ctn-preloader .animation-preloader .spinner {
    height: 8em;
    width: 8em;
  }
  /* Texto cargando */
  .ctn-preloader .animation-preloader .txt-loading {
    font: bold 3.5em;
    color: #fff;
  }
}
@media screen and (max-width: 500px) {
  /* Prelaoder */
  /* Spinner cargando */
  .ctn-preloader .animation-preloader .spinner {
    height: 7em;
    width: 7em;
  }
  /* Texto cargando */
  .ctn-preloader .animation-preloader .txt-loading {
    font: bold 2em;
  }
}
.logowap {
  position: relative;
  top: 105px;
}


button.accordion-button {
    background: #fff;
    border: 1px solid rgba(32, 34, 91, 0.098);
    box-shadow: 2px -11px 24px rgba(149, 157, 165, 0.2);
    width: 100%;
    border: none;
    padding: 20px 18px;
    font-weight: 300;
    font-size: 15px;
    color: #233d62;
}
.accordion-collapse, .accordion-item {
    border: 0;
    box-shadow: 0 0 20px 0 hsla(0, 0%, 83.5%, 0.5);
}
.accordion-item {
    margin-bottom: 14px;
}
.accordion-body p {
    font-size: 15px;
    line-height: 28px;
}
section.faq-section {
    padding: 50px 0;
}
section.terms-and-conditions {
    padding: 40px 0 40px;
}
.Conditions-text {
    padding-bottom: 20px;
}
.Conditions-text h1 {
    font-size: 32px;
    margin-bottom: 20px;
}
.Conditions-text h6, .about-content2 .features-list li h3 {
    font-size: 20px;
    margin-bottom: 10px;
}
.Conditions-text ul li {
    position: relative;
    font-size: 15px;
    line-height: 28px;
    margin-bottom: 6px;
    padding-left: 30px;
}
.Conditions-text ul li:after {
    content: "";
    position: absolute;
    top: 5px;
    left: 0;
    background-color: #94c11f;
    width: 18px;
    height: 18px;
    border-radius: 100%;
}
.Conditions-text h5 {
    font-size: 19px;
    margin-bottom: 4px;
    color: #6b7280;
    font-weight: 500;
    font-family: 'Poppins-SemiBold';
}
.hero-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    padding: 22px 28px;
    background: #082241;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    color: #fff;
    justify-content: center;
    margin-top: 50px;
}
.highlight-item span {
    font-size: 14px;
}
.why-munafa {
    padding: 50px 0;
    background: #F5F8FC;
    border-top: 1px solid #E9EEF6;
}
.why-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(340px,1fr));
    gap:24px;
}

.why-card{
    background:#fff;
    border:1px solid #E4EAF2;
    border-radius:16px;
    padding:35px;
    box-shadow:0 8px 30px rgba(13,38,76,.05);
    transition:.35s;
}

.why-card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 45px rgba(0,25,60,.10);
}

.card-icon{
    width:52px;
    height:52px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:12px;
    background:#F4F7FB;
    border:1px solid #DCE3EE;
    margin-bottom:22px;
}
.card-icon svg {
    width: 32px;
    height: 32px;
}
.why-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #233d62;
}
.why-card p {
    line-height: 1.8;
    font-size: 15px;
}
.highlight-box{
    margin-top:25px;
    display:flex;
    align-items:center;
    gap:16px;
    background:#fff;
    border:1px solid #E4EAF2;
    border-left:4px solid #90CA06;
    border-radius:14px;
    padding:24px 28px;
    box-shadow:0 8px 30px rgba(13,38,76,.05);
}
.section-heading h2 {
    line-height: 40px;
    margin-bottom: 30px;
    margin-top: 8px;
    text-transform: capitalize;
}
.section-heading span {
    color: #8dc836;
    font-weight: 600;
}
.highlight-box svg{
    flex-shrink:0;
}

.highlight-box p{
    margin:0;
    color:#2E405C;
    font-size:17px;
    font-weight:500;
}

.highlight-box span{
    color:#90CA06;
    font-weight:700;
}
.heading2 span {
     color:#90CA06;
    font-weight:700;
}
section.features.core-module {
    background-color: #fff;
}

.business-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:24px;
}
.business-models {
    padding: 50px 0px 70px;
    background: #F5F8FC;
}
.business-card{
    background:#fff;
    padding:35px;
    border-radius:18px;
    border:1px solid #E4EAF2;
    box-shadow:0 10px 35px rgba(13,38,76,.05);
    transition:.35s ease;
}

.business-card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 45px rgba(0,25,60,.10);
}

.card-tag{
    display:inline-block;
    margin-bottom:18px;
    padding:8px 18px;
    border-radius:30px;
    background:rgba(144,202,6,.10);
    color:#90CA06;
    font-size:12px;
    font-weight:600;
    letter-spacing:.08em;
    text-transform:uppercase;
}

.business-card p{
    margin:0;
    color:#63718B;
    font-size:15px;
    line-height:1.8;
}
.offline-cards{
    display:flex;
    flex-direction:column;
    gap:20px;
}

.mode-card{
    display:flex;
    gap:20px;
    align-items:flex-start;
    padding:28px;
    background:#fff;
    border:1px solid #E4EAF2;
    border-radius:18px;
    box-shadow:0 10px 35px rgba(13,38,76,.06);
    transition:.35s ease;
}

.mode-card:hover{
    transform:translateY(-6px);
    box-shadow:0 18px 45px rgba(0,25,60,.10);
}

.mode-icon{
    width:50px;
    height:50px;
    min-width:50px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:rgba(144,202,6,.10);
    border:1px solid rgba(144,202,6,.25);
    border-radius:14px;
}

.mode-card h3{
    margin-bottom:10px;
    color:#00193C;
    font-size:20px;
    font-weight:600;
}

.mode-card p{
    margin:0;
    color:#63718B;
    font-size:15px;
    line-height:1.7;
}
.offline-content .section-tag{
    display:inline-block;
    margin-bottom:18px;
    font-size:13px;
    font-weight:600;
    text-transform:uppercase;
    letter-spacing:.16em;
    color:#90CA06;
}

.offline-content h2{
    font-size:42px;
    font-weight:700;
    line-height:1.25;
    margin-bottom:20px;
}

.offline-content p{
    font-size:16px;
    line-height:1.8;
}
.offline-online-section .offline-wap{
    margin:auto;
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(420px,1fr));
    gap:60px;
    align-items:center;
}
.offline-online-section{
    padding:80px 0;
}

.impact-section{
    position:relative;
    padding:70px 0;
    background:#F5F8FC;
}
.impact-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:22px;
}
.impact-card{
    background:#fff;
    padding:32px;
    border-radius:18px;
    border:1px solid #E4EAF2;
    box-shadow:0 10px 35px rgba(13,38,76,.05);
    transition:.35s ease;
}

.impact-card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 45px rgba(0,25,60,.10);
}
.impact-number{
    display:block;
    margin-bottom:16px;
    font-size:38px;
    font-weight:800;
    color:rgba(144,202,6,.30);
}

.impact-card h3{
    margin-bottom:14px;
    font-size:18px;
    font-weight:600;
}

.impact-card p{
    margin:0;
    line-height:1.8;
    font-size:15px;
}
.steps-grid2{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:24px;
}
.step-card2 {
    position:relative;
    padding:32px;
    background:#fff;
    border:1px solid #E4EAF2;
    border-radius:18px;
    box-shadow:0 12px 35px rgba(13,38,76,.05);
    transition:all .35s ease;
}
.step-card2:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 50px rgba(0,25,60,.10);
    border-color:#8fca07;
}
.step-number2{
    width:50px;
    height:50px;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:22px;
    border-radius:14px;
    background:#8fca07;
    color:#fff;
    font-size:20px;
    font-weight:700;
    box-shadow:0 10px 20px rgba(144,202,6,.30);
}
.step-card2 h3{
    margin-bottom:14px;
    font-size:20px;
    font-weight:600;
}
.step-card2 p{
    margin:0;
    font-size:15px;
    line-height:1.8;
}
.how-it-works {
    padding: 50px 0 80px;
}

/* ============ Phone frame ============ */
/* ============ Phone frame ============ */

  .mockup { position: relative; display: flex; justify-content: center; }

.phone {
    position: relative;
    width: 288px;
    height: 588px;
    background: rgb(10, 31, 68);
    border: 8px solid rgb(12, 23, 48);
    border-radius: 42px;
    box-shadow: rgba(0, 0, 0, 0.85) 1px -6px 7px -40px;
    overflow: hidden;
}

  .phone__notch {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 26px;
    background: #0c1730;
    border-radius: 0 0 16px 16px;
    z-index: 3;
  }

.phone__screen {
    position: absolute;
    inset: 0;
    border-radius: 34px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    background: rgb(244, 246, 250);
}

  /* ============ App header ============ */
.app-header {
    padding: 34px 18px 18px;
    color: #fff;
    background: rgb(0, 25, 60);
}

  .app-header__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
  }

  .greeting__hello { font-size: 11px; color: #9fb0cc; }
  .greeting__name  { font-size: 16px; font-weight: 700; }
  .greeting__role  { font-size: 10px; color: #90ca06; font-weight: 600; margin-top: 2px; }

  .avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #90ca06;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 15px;
  }

  .checkin {
    background: rgba(144, 202, 6, 0.14);
    border: 1px solid rgba(144, 202, 6, 0.32);
    border-radius: 12px;
    padding: 11px 13px;
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .checkin__icon {
    width: 30px;
    height: 30px;
    border-radius: 8px;
    background: #90ca06;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .checkin__title { font-size: 12.5px; font-weight: 600; color: #fff; }
  .checkin__meta  { font-size: 10px; color: #b9e17a; }

  /* ============ Body ============ */
  .app-body { flex: 1; padding: 16px 15px; overflow: hidden; }

  .stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 9px;
    margin-bottom: 14px;
  }

  .stat-card {
    background: #fff;
    border: 1px solid #eaedf3;
    border-radius: 12px;
    padding: 11px;
  }

  .stat-card__label {
    font-size: 9px;
    color: #8a97ac;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 5px;
  }

  .stat-card__value { font-size: 18px; font-weight: 700; color: #00193c; }
  .stat-card__value small { font-size: 11px; color: #8a97ac; font-weight: 500; }

  .section-title {
    font-size: 11px;
    font-weight: 600;
    color: #00193c;
    margin-bottom: 9px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .section-title__badge { font-size: 9.5px; color: #6fa004; font-weight: 600; }

  /* ============ Route list ============ */
  .route { display: flex; flex-direction: column; gap: 8px; }

  .route-card {
    background: #fff;
    border: 1px solid #eaedf3;
    border-radius: 11px;
    padding: 10px 11px;
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .route-card__icon {
    width: 26px;
    height: 26px;
    border-radius: 7px;
    background: #f2f8e6;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .route-card__body  { flex: 1; }
  .route-card__title { font-size: 11.5px; font-weight: 600; color: #00193c; }
  .route-card__meta  { font-size: 9.5px; color: #8a97ac; }

  .route-card__done {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #90ca06;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .route-card__now {
    font-size: 9px;
    font-weight: 700;
    color: #6fa004;
    background: #f2f8e6;
    padding: 3px 7px;
    border-radius: 6px;
  }

  /* dark variant (loyalty rewards) */
  .route-card--dark { background: #00193c; border: none; padding: 11px 12px; }
  .route-card--dark .route-card__icon {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    background: rgba(144, 202, 6, 0.2);
  }
  .route-card--dark .route-card__title { color: #fff; font-size: 11px; }
  .route-card--dark .route-card__meta  { color: #9fb0cc; }

  /* ============ Bottom nav ============ */
  .bottom-nav {
    background: #ffffff;
    border-top: 1px solid #eef1f6;
    padding: 11px 26px;
    display: flex;
    justify-content: space-between;
  }

  /* ============ Floating badges ============ */
  .float-badge {
    position: absolute;
    background: #ffffff;
    border: 1px solid #e7ebf1;
    border-radius: 12px;
    box-shadow: 0 20px 44px -18px rgba(0, 12, 34, 0.4);
    animation: floaty 5s ease-in-out infinite;
  }

.float-badge--live {
    top: 64px;
    left: 24px;
    padding: 9px 13px;
    display: flex;
    align-items: center;
    gap: 8px;
}

  .float-badge--live .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #90ca06;
    box-shadow: 0 0 9px #90ca06;
  }

  .float-badge--live span:last-child {
    font-size: 11.5px;
    color: #00193c;
    font-weight: 600;
  }

.float-badge--claim {
    bottom: 74px;
    right: 52px;
    padding: 10px 13px;
    animation-duration: 6s;
    animation-delay: 0.8s;
}
h2.well {
    margin-bottom: 8px;
}
.float-badge__label {
    font-size: 9.5px;
    color: #8a97ac;
    text-transform: uppercase;
    letter-spacing: 0.05em;
  }

  .float-badge__value { font-size: 12.5px; color: #6fa004; font-weight: 700; }

  @keyframes floaty {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-8px); }
  }

  @media (prefers-reduced-motion: reduce) {
    .float-badge { animation: none; }
  }

/* ============ Phone frame ============ */
/* ============ Phone frame ============ */


.feature-card {
    background: #fff;
    border: 1px solid #e8e8f0;
    border-radius: 15px;
    padding: 28px 16px;
    text-align: center;
    transition: 0.25s;
    margin-bottom: 36px;
    height: 335px;
}
.feature-card:hover {
    box-shadow: 0 16px 40px rgba(22, 22, 83, 0.1);
    transform: translateY(-4px);
}
.feature-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}
.feature-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #8fca07;
    border: 1px solid rgba(144, 202, 6, .25);
    border-radius: 14px;
    flex-shrink: 0;
}
.feature-icon svg {
    width: 28px;
    height: 28px;
}
.feature-header h3 {
    margin: 0;
    font-size: 20px;
    font-weight: 600;
}
.feature-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
    text-align: justify;
}
.feature-item h4 {
    margin: 0 0 6px;
    font-size: 14px;
    font-weight: 600;
}
.feature-item p {
    margin: 0;
    font-size: 15px;
    line-height: 1.7;
}

/*=========================
    Info Card
=========================*/

.info-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 24px;
    background: #ffffff;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 16px;
    transition: all .35s ease;
    margin-bottom: 30px;
}

.info-card:hover{
    transform:translateY(-6px);
    border-color:#90CA06;
    box-shadow:0 18px 40px rgba(0,0,0,.25);
}

.info-icon{
    width:46px;
    height:46px;
    min-width:46px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:rgba(144,202,6,.10);
    border:1px solid rgba(144,202,6,.25);
    border-radius:12px;
}
.info-content h3{
    margin:0 0 8px;
    font-size:16px;
    font-weight:600;
}

.info-content p{
    margin:0;
    font-size:14px;
    line-height:1.7;
}
section#whitelabel {
    background-color: #00193C;
    padding: 50px 0;
}
section#whitelabel .section-heading h2 {
    color: #fff;
}
.deployment-card{
    background:#0A2550;
    border:1px solid rgba(255,255,255,.08);
    border-radius:18px;
    padding:35px;
    transition:.4s;
}
.deployment-card:hover {
    transform: translateY(-8px);
    border-color: #90CA06 !important;
}
.deployment-card.active{
    background:linear-gradient(150deg,
    rgba(144,202,6,.12),
    rgba(255,255,255,.02));
    border:1px solid rgba(144,202,6,.35);
}
.badge{
    display:inline-block;
    padding:8px 18px;
    border-radius:40px;
    background:rgba(255,255,255,.06);
    border:1px solid rgba(255,255,255,.1);
    color:#ddd;
    font-size:12px;
    font-weight:600;
    letter-spacing:1px;
    text-transform:uppercase;
    margin-bottom:22px;
}
.active-badge{
    background:rgba(144,202,6,.18);
    color:#90CA06;
    border-color:rgba(144,202,6,.4);
}
.deployment-card h3{
    font-size:22px;
    margin-bottom:15px;
     color: #fff;
}
.deployment-card p {
    color: #B7C3D6;
    line-height: 1.8;
    margin-bottom: 25px;
    font-size: 15px;
}
.deployment-card ul{
    list-style:none;
}
.deployment-card ul li {
    position: relative;
    padding-left: 0;
    margin-bottom: 16px;
    color: #d8e0ef;
}
.bottom-note{
    margin-top:25px;
    padding:22px 28px;
    background:#062649;
    border:1px solid rgba(255,255,255,.08);
    border-radius:15px;
    color:#9AA7BE;
    line-height:1.8;
    font-size:15px;
}
.comparison-section {
    padding: 60px 0;
    background: #F5F8FC;
}
.table-wrapper{
    overflow-x:auto;
    border:1px solid rgba(255,255,255,.08);
    border-radius:18px;
}
.comparison-table{
    width:100%;
    min-width:700px;
    border-collapse:collapse;
}

.comparison-table thead{
    background:#00193c;
}
.comparison-table th {
    text-align: left;
    padding: 20px;
    font-size: 15px;
    font-weight: 600;
    color: #ffffff;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}
.comparison-table th.highlight{

    color:#90CA06;

    background:rgba(144,202,6,.08);

    border-bottom:1px solid rgba(144,202,6,.3);

}
table.comparison-table tbody {
    background-color: #fff;
}
.comparison-table td {
    padding: 18px 20px;
    color: #233d62;
    border-bottom: 1px solid #e8e8f0;
    vertical-align: top;
    line-height: 1.7;
}
.comparison-table tbody tr:last-child td{
    border-bottom:none;
}

.comparison-table td:first-child {
    color: #233d62;
    font-weight: 600;
}
.comparison-table td:nth-child(2) {
    color: #485666;
}

.highlight-cell{
    background:rgba(144,202,6,.05);
}
span.menu-box {
    margin-bottom: 16px;
}

.partner-section{

    background:#04203f;

    padding:90px 0;

    border-top:1px solid rgba(255,255,255,.06);

}

.partner-content{

    max-width:890px;

    margin:auto;

    text-align:center;

}

.partner-content .sub-title {
    display: inline-block;
    color: #90CA06;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.partner-content h2{

    font-size:clamp(32px,4vw,46px);

    font-weight:700;

    line-height:1.25;

    color:#fff;

    margin-bottom:28px;

}

.partner-content p{

    max-width:760px;

    margin:0 auto 20px;

    color:#9aa7be;

    font-size:18px;

    line-height:1.8;

}

.partner-content strong{

    color:#ffffff;

    font-weight:600;

}

.deploy-box {
    display: flex;
    gap: 20px;
    margin-bottom: 18px;
}
.deploy-image {
    width: 52px;
    height: 52px;
    border-radius: 13px;
    background: rgba(144, 202, 6, 0.1);
    border: 1px solid rgba(144, 202, 6, 0.22);
    display: flex;
    align-items: center;
    justify-content: center;
}
section.proven-section{
    background-color: #00193C;
    padding: 70px 0;
}
.proven-card {
    background: #0A2550;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 18px;
    padding: 35px;
    transition: .4s;
    margin-bottom: 30px;
}
.deply-contnet h3 {
    font-size: 22px;
    margin-bottom: 0;
    color: #fff;
}
.deply-contnet a {
    color: #6fa004;
    font-size: 13px;
}
.proven-card p {
    color: #B7C3D6;
    line-height: 1.8;
    margin-bottom: 0;
    font-size: 15px;
}
.deply-contnet span {
    font-size: 12px;
    font-weight: 600;
    color: rgb(111, 160, 4);
    background: rgb(242, 248, 230);
    padding: 2px 8px;
    border-radius: 6px;
    vertical-align: middle;
}
.proven-section .section-heading h2{
  color: #fff;
} 
.bottom-note2 {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 24px 26px;
    background: linear-gradient(160deg, rgba(144, 202, 6, 0.1), rgba(111, 160, 4, 0.02));
    border: 1px solid rgba(144, 202, 6, 0.24);
    border-radius: 16px;
}
.bottom-note2 p {
    margin-bottom: 0;
    color: #B7C3D6;
    font-size: 15px;
    font-weight: 600;
}
.proven-card:hover {
    transform: translateY(-8px);
    border-color: #90CA06 !important;
}
.bottom-note2 p span {
    color: #90ca06;
}
.commission-section {
    background: #04203f;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 70px 0 30px;
}
.eyebrow {
    color: #8dc836;
    font-weight: 600;
}
.commission-header.in h2 {
    color: #fff;
    padding: 14px 0;
}
.commission-header p {
  font-size: 16px;
  color: #9aa7be;
  line-height: 1.7;
}
.comparison-step {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr));
    gap: 18px;
    margin-bottom: 24px;
}
.comparison-step .step-card {
    background: #00193c;
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 15px;
    padding: 26px;
}
.comparison-step .step-number {
    font-size: 30px;
    font-weight: 800;
    color: rgba(144, 202, 6, 0.3);
    margin-bottom: 10px;
}
.comparison-step .step-card h3 {
    font-size: 16.5px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #e9eef7;
}
.step-card p {
    font-size: 13.5px;
    color: #9aa7be;
    line-height: 1.6;
}
.comparison-wap {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
    gap: 18px;
    margin-bottom: 26px;
}
.stat-card2 {
    background: #00193c;
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 16px;
    padding: 28px;
    text-align: center;
}
.stat-card2.stat-card-highlight {
      background: linear-gradient(160deg, rgba(144, 202, 6, 0.12), rgba(111, 160, 4, 0.02));
    border: 1px solid rgba(144, 202, 6, 0.28);
}
.stat-value {
    font-size: 40px;
    font-weight: 800;
    color: #e9eef7;
    line-height: 1;
}
.stat-label {
    font-size: 12px;
    color: #9aa7be;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 600;
    margin-bottom: 10px;
}
.stat-caption {
    font-size: 13px;
    color: #9aa7be;
    margin-top: 8px;
}
.stat-card-highlight .stat-value{
      color: #90ca06;
}
.stat-card-highlight .stat-label{
      color: #6fa004;
}
.tiers-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 45px;
    color: #fff;
    text-align: center;
    margin-top: 36px;
}
.tiers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
    gap: 18px;
}
.tier-card {
    background: #00193c;
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 16px;
    padding: 28px;
    position: relative;
}
.tier-name {
    font-size: 13px;
    font-weight: 600;
    color: #9aa7be;
    letter-spacing: 0.04em;
    margin-bottom: 6px;
}
.tier-clients {
    font-size: 14px;
    color: #8f9cb4;
    margin-bottom: 18px;
}
.tier-rate {
    font-size: 34px;
    font-weight: 800;
    color: #e9eef7;
    line-height: 1;
}

.tier-caption {
    font-size: 12.5px;
    color: #9aa7be;
    margin-top: 8px;
}
.tier-card--featured .tier-name {
    color: #90ca06;
}
.tier-badge {
    position: absolute;
    top: -11px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.06em;
    color: #00193c;
    background: #90ca06;
    padding: 4px 12px;
    border-radius: 999px;
}
.tier-card--featured .tier-rate {
    color: #90ca06;
}
.tier-card--featured {
    position: relative;
    background: linear-gradient(160deg, rgba(144, 202, 6, 0.13), rgba(111, 160, 4, 0.03));
    border: 1.5px solid rgba(144, 202, 6, 0.4);
}
.tiers-note {
    font-size: 13px;
    color: #6b7a96;
    text-align: center;
    margin-top: 16px;
}
.provide-section {
    padding: 50px 0 70px;
    background-color: #00193C;
}
section.provide-section .section-heading h2 {
    color: #fff;
}
.provide-card {
    background: #0A2550;
    padding: 20px;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, .08);
    transition: .35s;
    margin-bottom: 30px;
}
.provide-card:hover{
    transform:translateY(-8px);
    border-color:#90CA06;
}
.icon-box {
    width: 56px;
    height: 56px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 14px;
    background: rgba(144, 202, 6, .10);
    border: 1px solid rgba(144, 202, 6, .25);
    margin-bottom: 16px;
}
.provide-card h3 {
    color: #fff;
    margin-bottom: 12px;
    font-size: 15px;
}
.provide-card p {
    color: #9CA8BA;
    line-height: 1.8;
    height: 140px;
}
.partner-card{
    grid-column:1/-1;
    display:grid;
    grid-template-columns:2fr 1fr;
    gap:40px;
    padding:35px;
    border-radius:20px;
    border:1px solid rgba(144,202,6,.25);
    background:linear-gradient(
    135deg,
    #0A2550,
    rgba(144,202,6,.05));
}
.partner-title{
    display:flex;
    align-items:center;
    gap:18px;
    margin-bottom:20px;
}
.partner-title h3 {
    color: #fff;
    font-size: 22px;
}
.partner-left p{
    color:#B7C3D6;
    line-height:1.8;
}
.partner-right{
    display:flex;
    justify-content:center;
    flex-direction:column;
    gap:16px;
}
.feature{
    color:#fff;
    display:flex;
    align-items:center;
    gap:12px;
}
.business-models2 {
    background-color: #04203f;
}
.business-models2 .section-heading h2 {
    color: #fff;
}

.info-card {
  background-color: #00193c;
}
.business-models2 .info-content h3 {
    color: #fff;
}
.info-content p {
    color: #B7C3D6;
}
.Apply2 {
    background-color: #00193C;
}
.Apply2 .section-heading h2 {
   color: #fff;
}
.Apply2 .step-card2 {
    background-color: #0a2550;
    border: 1px solid rgba(255, 255, 255, 0.07);
}
.Apply2 .step-card2:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 25, 60, .10);
    border-color: #90CA06;
}
.Apply2 .step-card2 h3 {
   color: #fff;
}
.Apply2 .step-card2 p {
     color: #B7C3D6;
}
section.apply-section {
    background-color: #00193C;
    padding:100px 0;
}
.apply-content h2 {
    color: #fff;
}

section.apply-section .section-heading h2 {
    color: #fff;
}
section.apply-section .section-heading p {
    color: rgb(154, 167, 190);
    line-height: 1.7;
    margin-bottom: 26px;
}
.apply-form{
    background:#0A2550;
    padding:30px;
    border-radius:20px;
    border:1px solid rgba(255,255,255,.08);
}
.apply-form h3 {
    color: #fff;
    margin-bottom: 30px;
    font-size: 22px;
}
.apply-form p{
    color:#93A0B8;
    margin-bottom:25px;
}
.form-group label{
    margin-bottom:8px;
    color: rgb(194, 204, 222);
    font-size:13px;
    font-weight: 600;
}
.feature-item {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-bottom: 15px;
}
.feature-item span {
    width: 34px;
    height: 34px;
    border-radius: 9px;
    background: rgba(144, 202, 6, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
}
.feature-item p {
    margin-bottom: 0 !important;
}
.apply-section{
    position: relative;
    overflow: hidden;
}
.apply-bg-glow {
    position: absolute;
    top: -38%;
    left: 50%;
    transform: translateX(-50%);
    width: 760px;
    height: 420px;
    background: radial-gradient(rgba(144, 202, 6, 0.10), transparent 68%);
    pointer-events: none;
    z-index: -1;
}
.apply-section .container{
    position: relative;
    z-index: 1;
}
.form-group input {
    height: 50px;
    padding: 0 18px;
    border-radius: 10px;
    background: #061B3D;
    border: 1px solid rgba(255, 255, 255, .10);
    color: #fff;
}
.form-grid .form-group {
    margin-bottom: 10px;
}
.form-grid button.submit-btn {
    width: 100%;
    margin-top: 25px;
    height: 55px;
    border: none;
    border-radius: 12px;
    background: #8fca07;
    color: #fff;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
}
.apply-wap {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}
.info-content h3 {
    color: #fff;
}
.feature-card.feature-card2 .feature-list {
    display: block !important;
}
.feature-card.feature-card2  .feature-item {
    display: block !important;
}
.modal-header {
    border: 0;
}
.modal-body.text-center h2 {
    margin: 9px 0;
}
.modal-body.text-center {
    padding: 0 40px 35px;
}
.toast-container {
    display: none;
}






