:root {
  --body-color: #001010;
  --primary-color: #021c1a;
  --secondary-color: #00fd69;
  --tertiary-color: #0e1017;
  --link-color: #007bff;
  --light-color: #f0eee7;
  --primary-font: "Signika", sans-serif;
  --common-transition: all 0.4s;
}
@media (min-width: 1600px) {
  .container {
    max-width: 1440px;
  }
}
.main-btn {
  position: relative;
  display: inline-flex;
  padding: 10px 25px;
  min-width: 130px;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 300;
  color: #fff !important;
  text-decoration: none;
  border-radius: 25px;
  overflow: hidden;
  z-index: 1;
  background: linear-gradient(310deg, #033531, #00fd69);
}

.main-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(230deg, #033531, #00fd69);
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: -1;
}

.main-btn:hover::before {
  opacity: 1;
}

a.main-btn img {
  width: 9px;
  position: relative;
  margin-left: 7px;
  bottom: -2px;
}
@media (max-width: 575px) {
  .main-btn {
    padding: 9px 15px;
    font-size: 14px;
    min-width: 130px;
  }
  a.main-btn img {
    width: 7px;
    bottom: -1px;
  }
}
/*====== Header ======*/
@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}

.header-area {
  position: absolute;
  background: rgb(255 255 255 / 0%);
  transition: all 0.5s ease;
  padding: 20px 0;
  z-index: 99992;
  width: 100%;
  border-bottom: 1px solid #042725;
}

.header-bg-on-scroll {
  position: fixed;
}

.header-bg-on-scroll,
.header-bg-on-click {
  -webkit-animation: 600ms ease-out 0s normal none 1 running fadeInDown;
  animation: 600ms ease-out 0s normal none 1 running fadeInDown;
  -webkit-box-shadow: 0 5px 5px 0 rgb(0 0 0 / 10%);
  -moz-box-shadow: 0 5px 5px 0 rgb(0 0 0 / 10%);
  box-shadow: 0 5px 5px 0 rgb(0 0 0 / 10%);
  background-color: var(--primary-color);
  border-bottom: 1px solid #0c423e;
}
.head-cta {
  display: flex;
  align-items: center;
  gap: 20px;
}
.head-cta a {
  font-weight: 500;
  color: #fff;
}
.site-logo img {
  width: 250px;
}
@media (max-width: 1600px) {
  .site-logo img {
    width: 165px;
  }
}

@media (max-width: 1199px) {
  .header .header-area > .container {
    max-width: 100%;
    padding-left: 30px;
    padding-right: 30px;
  }
  .site-logo img {
    width: 150px;
  }
}

@media (max-width: 575px) {
  .header-area {
    padding: 10px 0;
  }
  .site-logo img {
    width: 110px;
  }
  .header-area .main-btn {
    padding: 5px 12px;
    font-size: 12px;
    min-width: 85px;
  }
  .head-cta {
    gap: 10px;
  }
}

/*====Side Navigation====*/
.menu-icon {
  display: flex;
  margin-left: auto;
  text-align: center;
  width: 30px;
  height: 30px;
}

.menu-icon-in {
  width: 30px;
  height: 30px;
  position: relative;
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  cursor: pointer;
  display: inline-block;
}

.menu-icon-in span {
  display: block;
  position: absolute;
  height: 2px;
  width: 100%;
  border-radius: 1px;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
  background-color: #fff;
  border-radius: 10px;
}

.menu-icon-in span:nth-child(1) {
  top: 10%;
}

.menu-icon-in span:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
}

.menu-icon-in span:nth-child(3) {
  bottom: 10%;
}

.menu-icon-in.open span:nth-child(1) {
  top: 13px;
  -webkit-transform: rotate(135deg);
  -moz-transform: rotate(135deg);
  -o-transform: rotate(135deg);
  transform: rotate(135deg);
  width: 100%;
  background-color: #f3f3f3;
}

.menu-icon-in.open span:nth-child(2) {
  opacity: 0;
  left: -60px;
}

.menu-icon-in.open span:nth-child(3) {
  top: 13px;
  -webkit-transform: rotate(-135deg);
  -moz-transform: rotate(-135deg);
  -o-transform: rotate(-135deg);
  transform: rotate(-135deg);
  width: 100%;
  background-color: #f3f3f3;
}

.menu-icon-in:hover span {
  background-color: #f3f3f3;
}

.overflow-nav {
  overflow-y: scroll;
}

.dvLeft.open {
  left: 0;
}

#slidebar-out {
  color: #732525;
  font-size: 1.6rem;
  position: absolute;
  right: 12px;
  top: 8px;
  cursor: pointer;
}

#menubar::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgb(0 0 0 / 0.3);
  border-radius: 10px;
  background-color: #f5f5f5;
}

#menubar::-webkit-scrollbar {
  width: 10px;
  background-color: #fff0;
}

#menubar::-webkit-scrollbar-thumb {
  border-radius: 10px;
  -webkit-box-shadow: inset 0 0 2px rgb(0 0 0 / 0.3);
  background-color: #443b34;
}
.menu-icon-in span,
.menu-icon-in.open span:nth-child(3),
.menu-icon-in.open span:nth-child(1),
.menu-icon-in:hover span {
  background-color: var(--secondary-color);
}

@media all and (min-width: 1199px) {
  .dvLeft {
    display: none;
  }
}
@media (max-width: 1199px) {
  .menu-icon-in span {
    height: 3px;
  }
  .dvLeft {
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: vertical;
    flex-direction: column;
    position: fixed;
    top: 0;
    height: 100%;
    z-index: 9998;
    overflow-x: hidden;
    overflow-y: auto;
    left: -320px;
    width: 300px;
    background-color: #fff;
    padding: 15px;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
    -ms-transition: all 0.5s;
    transition: all 0.5s;
    box-shadow: 1px 0 5px #0000003d;
    -moz-box-shadow: 1px 0 5px #0000003d;
    -webkit-box-shadow: 1px 0 5px #0000003d;
  }
  .mask-overlay {
    content: "";
    position: fixed;
    background: linear-gradient(180deg, rgb(0 0 0 / 50%), rgb(41 61 102 / 30%));
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 99;
  }
  body.no-scroll {
    overflow: hidden;
    position: fixed;
    width: 100%;
  }
}

/*====== Top Navigation =====*/
@media (min-width: 1200px) {
  .top-navigation {
    margin-right: 70px;
  }
  .navbar {
    padding: 0;
  }

  .navbar-nav.ml-auto {
    margin-left: 0 !important;
  }

  .navbar a:hover {
    text-decoration: none;
  }
  .navbar-nav > li {
    position: relative;
    padding: 0 1rem;
  }

  .navbar-nav > li:first-child {
    padding-left: 0;
  }

  .navbar-nav > li:last-child {
    padding-right: 0;
  }

  .navbar-light .navbar-nav > li > a {
    color: #fff;
    position: relative;
    text-transform: capitalize;
    padding: 1rem 0;
    display: block;
    border-radius: 0;
    font-size: 15px;
    font-weight: 300;
    font-family: var(--primary-font);
  }

  .navbar-light .navbar-nav > li.dropdown > a {
    padding-right: 20px;
  }

  .navbar-light .navbar-nav > li span.dropdown-caret {
    display: none;
  }

  .navbar-light .navbar-nav > li > a:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 1px;
    bottom: 4px;
    left: 0;
    background: var(--secondary-color);
    box-shadow: 0 0 3px 1px #00fd69;
    visibility: hidden;
    transform: scaleX(0);
    -webkit-transition: 0.25s linear;
    -moz-transition: 0.25s linear;
    -o-transition: 0.25s linear;
    -ms-transition: 0.25s linear;
    transition: 0.25s linear;
  }

  .navbar-light .navbar-nav > li.dropdown:hover > a:before,
  .navbar-light .navbar-nav > li > a:hover:before {
    visibility: visible;
    transform: scaleX(1);
  }

  .dropdown .dropdown-menu {
    background-color: var(--primary-color);
    top: 120%;
    z-index: 99;
    display: block;
    min-width: 24rem;
    width: max-content;
    border-radius: 0;
    border: 0;
    opacity: 0;
    visibility: hidden;
    left: 5px;
    box-shadow: 0 0 1px 0 rgba(0, 0, 0, 0.21);
    border: 1px solid #0c423e;
    padding: 0;
    position: relative;
    margin: 0;
    -webkit-transition: top 0.3s;
    -moz-transition: top 0.3s;
    -o-transition: top 0.3s;
    -ms-transition: top 0.3s;
    transition: top 0.3s;
  }

  .dropdown:hover > .dropdown-menu {
    top: 100%;
    opacity: 1;
    visibility: visible;
  }

  .navbar-nav > li:last-child > .dropdown-menu {
    left: inherit;
    right: 0;
  }

  .navbar-light .navbar-nav .dropdown-menu a {
    color: #ffffff;
    text-transform: capitalize;
    font-size: 14px;
    font-weight: 300;
    padding: 10px;
    display: block;
    line-height: normal;
    border-radius: 0;
    position: relative;
    -webkit-transition: transform 0.3s;
    -moz-transition: transform 0.3s;
    -o-transition: transform 0.3s;
    -ms-transition: transform 0.3s;
    transition: transform 0.3s;
  }

  .navbar-light .dropdown-item.active,
  .navbar-light .dropdown-item:active {
    background-color: #fff;
    color: var(--primary-color) !important;
  }

  .navbar-light .navbar-nav > li:hover > a {
    color: var(--secondary-color);
  }

  .navbar-light .navbar-nav .dropdown-menu a:hover,
  .navbar-nav > li.dropdown .dropdown-menu li.dropdown:hover > a {
    color: var(--primary-color);
    transition: transform 0.3s;
  }

  .navbar-nav .dropdown-menu > li {
    position: relative;
    border-bottom: 1px solid rgb(0 0 0 / 10%);
  }

  .navbar-nav .dropdown-menu li:last-child {
    border-bottom: 0;
  }

  .dropdown-menu .dropdown-menu {
    left: 100%;
    top: 0 !important;
  }

  .navbar-nav > .dropdown > a::after {
    position: absolute;
    right: 2px;
    content: "\f107";
    font-family: FontAwesome;
    top: 50%;
    transform: translateY(-50%);
    font-size: 16px;
    color: var(--secondary-color) !important;
  }

  .navbar-nav > .dropdown:last-child .dropdown::after {
    display: none;
  }

  .navbar-light .navbar-nav > li:hover > a:after {
    color: var(--secondary-color);
  }

  .navbar-nav li.dropdown:last-child:hover .dropdown-menu:after {
    left: inherit;
    right: 10%;
  }

  .navbar-light .navbar-nav > li.dropdown .dropdown-menu li.dropdown a {
    padding-right: 25px;
  }

  .navbar-light .navbar-nav > li.dropdown .dropdown-menu li.dropdown > a::after {
    position: absolute;
    right: 10px;
    z-index: 1;
    top: 50%;
    transform: translateY(-50%);
    content: "\f0da";
    font-family: FontAwesome;
    font-weight: 900;
    color: #000;
  }

  .navbar-nav > li.dropdown .dropdown-menu li.dropdown > a:hover::after,
  .navbar-nav > li.dropdown .dropdown-menu li.dropdown:hover > a::after {
    color: var(--primary-color);
  }
  .navbar-nav .nav-link.active {
    color: var(--secondary-color);
  }

  a.nav-link:hover {
    color: var(--secondary-color) !important;
  }

  .navbar-light .navbar-nav > li > a:hover:before {
    background-color: var(--primary-color);
  }
  .navbar-nav > .dropdown > a:hover::after,
  .navbar-nav > .dropdown > a.nav-link.active::after {
    color: var(--secondary-color) !important;
  }
  .dropdown-item.active {
    color: var(--primary-color) !important;
    background-color: #c6d9ff;
  }
}

/* ===== Left Navigation ===== */
@media (max-width: 1199px) {
  .navigation {
    margin-top: 15px;
  }
  li.nav-item.dropdown.current .nav-link {
    background-color: var(--secondary-color);
    color: #fff;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
  }
  .navigation .nav-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 16px;
    color: var(--primary-color);
    font-weight: 500;
    text-decoration: none;
    transition: 0.3s;
    font-family: var(--primary-font);
  }

  a.dropdown-item:visited {
    color: var(--primary-color);
  }
  a.dropdown-item.active,
  .navigation .nav-link.active {
    color: var(--primary-color) !important;
    background-color: #c6d9ff;
  }

  /* ===== Caret ===== */
  .dropdown-caret {
    cursor: pointer;
    margin-left: auto;
    transition: transform 0.3s ease;
  }

  /* ===== Dropdown menu (closed) ===== */
  .dropdown-menu {
    display: none;
    position: static;
    background: transparent;
    border: 0;
    padding: 0;
    margin: 0;
  }

  /* ===== OPEN STATE ===== */
  .nav-item.current > .dropdown-menu {
    display: block;
    background-color: #f4f6fa;
  }

  /* Rotate caret when open */
  .nav-item.current .dropdown-caret .fa-caret-down:before {
    content: "\f0d8";
  }

  /* ===== Dropdown items ===== */
  .dropdown-item {
    padding: 10px 16px;
    color: var(--primary-color);
    display: block;
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    padding-top: 10px;
    border-top: 1px solid rgb(255 255 255);
  }

  .dropdown-item:hover {
    background: var(--secondary-color);
    color: #fff;
  }
  #ulmenu > .nav-item + .nav-item {
    margin-top: 5px;
    padding-top: 5px;
    border-top: 1px solid rgba(253, 201, 201, 0.45);
  }
}

/*===== Hero Section ====*/
.slider-wrapper {
  overflow: hidden;
  background-color: #edf4ff;
  position: relative;
  width: 100%;
  background-image: url(../../images/background/shape-two.png);
  background-position: bottom;
  background-size: cover;
  background-repeat: no-repeat;
  height: 100vh;
  display: flex;
  align-items: center;
}
.slider-text {
  position: relative;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-top: 75px;
}
.slider-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgb(255 255 255 / 15%);
}
.slider-text .mega-heading {
  font-size: 75px;
  position: relative;
  line-height: 1.3;
  letter-spacing: 1.5px;
  font-weight: 900;
  color: var(--secondary-color);
  text-shadow: rgb(31 35 35 / 30%) -3px 3px 5px;
}
.slider-text .mega-heading span {
  display: block;
}

.titleText p {
  font-size: 36px;
  font-weight: 400;
  font-family: var(--primary-font);
  margin-bottom: 0;
}

.popular-search {
  font-family: var(--primary-font);
  font-size: 18px;
  font-weight: 400;
}

@media (max-width: 1330px) {
  .slider-text .mega-heading {
    font-size: 50px;
  }
}

@media (max-width: 1199px) {
  .slider-wrapper {
    height: 650px;
  }
}

@media (max-width: 991px) {
  .slider-wrapper {
    height: 600px;
  }
  .slider-text .mega-heading {
    font-size: 45px;
  }
  .slider-text .mega-heading span {
    display: initial;
  }
}

@media (max-width: 767px) {
  .slider-text .mega-heading {
    font-size: 40px;
  }
  .select2-searchbox {
    order: 1;
    width: 100%;
  }

  .titleText {
    order: 2;
  }

  .popular-search {
    order: 3;
  }
}

@media (max-width: 575px) {
  .slider-text .mega-heading {
    font-size: 30px;
  }
  .slider-text .main-btn {
    margin-top: 0;
  }
  .slider-text {
    padding: 10px 15px 15px;
  }
}
/*========== Footer ==========*/
.footer {
  background-color: var(--tertiary-color);
}

.footer-top {
  padding: 25px 0;
}

.footer-logo img {
  width: 275px;
}
a.social-icon {
  text-align: end;
}

.social-icon img {
  width: 30px;
}

.footer-links ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  gap: 20px;
  margin-bottom: 0;
  justify-content: center;
}

.footer-links ul a {
  text-decoration: none;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
}

.footer-bottom {
  background-color: var(--tertiary-color);
  color: white;
  padding-block: 15px;
  border-top: 1px solid #636363;
}

.footer-bottom a {
  color: #fff;
}

.powered-by img {
  max-width: 20px;
  margin: 0 2px;
}

.powered-by a {
  color: #febb02 !important;
  text-decoration: none;
}

.powered-by p {
  margin-bottom: 0;
}

.footer-bottom p {
  margin-bottom: 0;
}
.footer .common-box {
  text-align: center;
  color: #fff;
}
.footer .common-box p {
  font-weight: 500;
}
.footer .common-box p:last-child {
  margin-bottom: 0;
}
.footer-top .title-xs {
  color: #fff;
}
.social-icons {
  display: grid;
  grid-template-columns: repeat(auto-fit, 32px);
  gap: 10px;
}

.social-icons img {
  background: #fff;
  padding: 5px;
  border-radius: 8px;
  box-shadow: 0 0 3px 0 #00000038;
  width: 32px;
}
.footer-top .check-square > li::before {
  color: #fff;
}
.footer-top ul.check-square a {
  color: #fff;
}
@media (max-width: 991px) {
  .footer-links ul {
    gap: 15px;
  }
}
@media (max-width: 575px) {
  .footer-links ul a {
    font-size: 13px;
  }
}

/*====== CTA ====*/
.common-sec.cta {
  background-color: #232721;
  border-bottom: 3px solid #ffffff;
  color: #fff;
}
.common-sec.cta .ctaBtn {
  margin-top: 25px;
}

.common-sec.cta .main-btn {
  border: 2px solid #ffffff;
  min-width: 200px;
}
.common-sec.cta .main-btn:first-child {
  margin-right: 10px;
}
.common-sec.cta .main-btn:hover {
  border: 2px solid #fff;
}
@media (max-width: 557px) {
  .common-sec.cta .main-btn {
    min-width: 150px;
  }
}

/*========== Featured =========*/

.keyFeatured .common-box {
  background-color: #f5f4fd;
  transition: all 0.4s;
  padding: 20px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 15px;
  text-align: left;
}

.keyFeatured .common-box:hover {
  background-color: #e3e2f5;
}
.keyFeatured .common-box .content {
  padding: 0;
}
.keyFeatured .common-box .img-box span {
  padding: 10px;
  background-color: #fff;
  border-radius: 50%;
  display: inline-block;
}

.keyFeatured .common-box .img-box img {
  width: 65px;
  height: auto;
  padding: 10px;
}

/*======= Card ========*/
.card-box {
  box-shadow:
    rgb(50 50 93 / 15%) 0px 6px 12px -2px,
    rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
  background-color: #fff;
  border-radius: 10px;
  height: 100%;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.card-header {
  align-items: center;
  grid-gap: 15px;
  display: flex;
}

.card-header .img-box span {
  border-radius: 10px;
  display: inline-block;
  border: 1px solid #dadada;
}

.card-header .img-box img {
  width: 75px;
  height: auto;
  padding: 15px;
}

.card-header .img-box {
  margin-bottom: 0;
}

.review-star::before {
  content: "★★★★★";
  color: #ccc;
  display: inline-block;
}

.review-star[data-rating^="1"]::before {
  content: "★☆☆☆☆";
  color: #fdd835;
}

.review-star[data-rating^="2"]::before {
  content: "★★☆☆☆";
  color: #fdd835;
}

.review-star[data-rating^="3"]::before {
  content: "★★★☆☆";
  color: #fdd835;
}

.review-star[data-rating^="4"]::before {
  content: "★★★★☆";
  color: #fdd835;
}

.review-star[data-rating^="5"]::before {
  content: "★★★★★";
  color: #e2ba0d;
}

.review-star {
  font-size: 2.2rem;
  line-height: 2rem;
}

.card-footer {
  text-align: right;
}

.tags {
  display: flex;
  flex-wrap: wrap;
}
.tags a {
  margin-right: 10px;
  font-size: 14px;
}
.tags a:hover {
  text-decoration: underline;
}
.review-count {
  display: flex;
  gap: 5px;
  align-items: center;
}

.review-count span {
  font-size: 14px;
}

.badge-subc {
  font-size: 14px;
  margin-top: 5px;
}

.card-footer .main-btn {
  background-color: transparent;
  color: #007bff !important;
  font-size: 14px;
  display: flex;
  align-items: center;
  transition: all ease 0.3s;
  text-decoration: none;
  letter-spacing: 1px;
  padding: 8px 15px;
  border: 1px solid #e1e1e1;
  border-radius: 50px;
}

.card-footer .main-btn i {
  transform: translateX(3px);
  transition: all 0.5s ease;
  font-size: 10px;
}

.card-box:hover .main-btn i {
  transform: translateX(7px) !important;
}

.card-porf .title-xs {
  margin-bottom: 0;
}

/*========= Added tools list ==========*/
ul.tools-flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  list-style: none;
  padding-left: 0;
  margin: 0;
}
li.tool-item a {
  padding: 10px 20px;
  border: 1px solid #dfdfdf;
  border-radius: 10px;
  background-color: #fff;
  font-weight: 300;
  display: block;
  white-space: nowrap;
  margin-right: 0;
  transition: 0.3s;
}

li.tool-item a:hover {
  background-color: #e9e9e9;
  color: #000 !important;
}

li.tool-item a span {
  color: #000;
  font-size: 14px;
}

/*====== Program Trading Rules section  ======*/
.marketTabsBox {
  text-align: center;
}

.marketTabs {
  display: inline-flex;
  background: rgb(10 33 33);
  padding: 15px;
  border-radius: 74px;
  gap: 10px;
}

.marketTabs .btn-custom {
  border: none;
  background: transparent;
  color: #9ca3af;
  padding: 12px 20px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 700;
  transition: all 0.3s ease;
  min-width: 150px;
  margin: 0;
}

.marketTabs .btn-active {
  background: linear-gradient(310deg, #033531, #00fd69);
  color: #ffffff;
}

.planTabsBox {
  width: 100%;
  margin-top: 35px;
}

.planTabs {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.planTabs .btn-custom {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 15px;
  min-width: 190px;
  background-color: var(--primary-color);
  border: 2px solid rgb(0 216 94 / 20%);
  color: #7f838b;
  font-size: 17px;
  font-weight: 400;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.3s ease;
  margin: 0;
  box-shadow: 0px 0px 10px 3px rgb(255 255 255 / 0%);
  border-radius: 16px;
}

.planTabs .btn-custom::before {
  content: attr(data-step);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background-color: rgb(255 255 255 / 7%);
  color: #7f838b;
  font-weight: 500;
  transition: all 0.3s ease;
  box-shadow: 1px 1px 3px #00fd69c7;
}

.planTabs .btn-custom.btn-active {
  color: #fff !important;
  border: 2px solid #00fd69c7;
}

.planTabs .btn-custom.btn-active::before {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.4);
  color: #fff;
}

.planTabs .btn-custom:hover {
  color: #fff;
  border: 2px solid #00fd69c7;
}

.planTabs .btn-custom:hover::before {
  color: #fff;
}
.summaryBox {
  background-color: var(--primary-color);
  padding: 30px;
  border-radius: 25px;
  margin-top: 35px;
}

.summaryBox .title-lg {
  color: #fff;
}

.summaryDetails {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 50px;
}

/* =========================
   MOBILE HORIZONTAL SCROLL
   ========================= */
@media (max-width: 991px) {
  .planTabs {
    flex-wrap: nowrap; /* Prevent wrapping */
    overflow-x: auto; /* Enable horizontal scroll */
    justify-content: flex-start; /* Align left */
    padding-bottom: 10px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
  }

  .planTabs::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
  }

  .planTabs .btn-custom {
    min-width: 170px; /* Slightly smaller for mobile */
  }
}
@media (max-width: 767px) {
  .planTabs .btn-custom {
    gap: 10px;
    padding: 6px 9px;
    font-size: 15px;
  }
  .planTabs .btn-custom::before {
    width: 30px;
    height: 30px;
  }
}
@media (max-width: 575px) {
  .marketTabs .btn-custom {
    padding: 8px 20px;
    font-size: 14px;
    min-width: 95px;
  }
  .summaryBox {
    padding: 15px;
  }
}

.accountTabsBox {
  margin-top: 25px;
}

.accountTabsBox .btn-active {
  background-color: #ffffff !important;
  color: #000 !important;
}
.accountTabs .btn-custom {
  margin: 0;
  min-width: 70px;
  font-size: 14px;
  font-weight: 400;
  border-radius: 50px;
  color: #7f838b;
  background: var(--primary-color);
  border: 1px solid rgb(0 216 94 / 20%);
}

.accountTabs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.info-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.info-row:last-child {
  border-bottom: none;
}

.summaryDetails .label,
.summaryDetails .value {
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
}
.priceBox {
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 24px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01));
  background: rgb(255 255 255 / 4%);
  backdrop-filter: blur(10px);
  position: relative;
  min-height: 450px;
}

.summaryBoxDetails {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
}
.priceBox .info-row {
  flex-direction: column;
  justify-content: center;
}

.priceBox .planTabs .btn-custom::before {
  color: #ffffff;
}

.priceBox .planTabs .btn-custom {
  background: transparent;
  border: none;
  color: #fff;
  padding: 0;
  font-size: 20px;
  font-weight: 500;
  cursor: inherit;
}

.priceBox .planTabs {
  justify-content: start;
}
.priceBox .card__badge {
  font-size: 12px;
  letter-spacing: 1px;
  width: fit-content;
  margin: 30px 0;
  border-radius: 10px;
  padding: 9px 15px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(0, 0, 0, 0.2);
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  gap: 5px;
  transition: all 0.6s ease;
}

.priceBox .card__text {
  display: flex;
  flex-flow: column nowrap;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.priceBox .card__price {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
}

.priceBox .cp__value {
  font-weight: 700;
  font-size: 36px;
  line-height: 1;
  color: rgb(255, 255, 255);
  display: flex;
  align-items: flex-end;
  gap: 10px;
}

.priceBox .cp__original-price {
  opacity: 0.5;
  text-decoration: line-through;
  font-weight: 400;
  font-size: 26px;
}

.priceBox .cp__discounted-price {
  display: flex;
  flex-flow: column nowrap;
  gap: 4px;
  position: relative;
  color: var(--secondary-color);
}

.priceBox .title-sm.price {
  margin-top: 25px;
}

.priceBox .cp__title {
  font-size: 18px;
  font-weight: 400;
  line-height: 1;
  color: rgba(255, 255, 255, 0.5);
}

.priceBox .t__acc-size {
  margin: 10px 0;
}

.priceBox .main-btn {
  position: absolute;
  bottom: 30px;
  left: 30px;
  right: 30px;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.5px;
}
.priceBox .card__badge img {
  max-width: 19px;
}

.common-box.imgTitle-box {
  padding: 15px;
  border-radius: 18px;
  margin-bottom: 0;
  background-color: rgb(3 44 41 / 75%);
  box-shadow: none;
}

.common-box.imgTitle-box img {
  background-color: #fff;
}

@media (max-width: 1600px) {
  .summaryBoxDetails {
    grid-template-columns: 3fr 2fr;
  }
}
@media (max-width: 991px) {
  .summaryBoxDetails {
    grid-template-columns: 1fr;
    gap: 15px;
  }
}
@media (max-width: 575px) {
  .common-box.imgTitle-box .content a {
    font-size: 15px;
  }
}

.cardsRow .common-box .img-box span {
  border-radius: 50%;
  display: inline-block;
  margin-bottom: 10px;
  background-color: #0a5549;
}

.cardsRow .common-box .img-box img {
  width: 85px;
  height: 85px;
  padding: 16px;
}

.cardsRow .common-box {
  background-color: #012b28;
  transition: all 0.4s;
  padding: 20px;
  box-shadow: none;
  border: 1px solid var(--secondary-color);
}
.cardsRow .common-box .content {
  padding: 0;
}
.cardsRow .common-box:hover {
  background-color: #003d39;
}

@media (max-width: 991px) {
  .keyFeatured .title-xs {
    font-size: 18px;
  }
  .keyFeatured .common-box .img-box img {
    width: 45px;
    height: 45px;
  }
}
