/* Copy Animation */
    :root {
      --primary-color: #1a365d;
      --secondary-color: #d4af37;
      --accent-color: #2563eb;
      --text-dark: #1f2937;
      --text-light: #6b7280;
    }
    
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
    
    body {
      font-family: 'Poppins', sans-serif;
      overflow-x: hidden;
    }
    
    h1, h2, h3, h4 {
      font-family: 'Playfair Display', serif;
    }
    
    /* Navbar */
    .navbar {
      background: linear-gradient(135deg, var(--primary-color) 0%, #2c5282 100%);
      padding: 1rem 0;
      box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    }
    
    .navbar-brand {
      font-size: 1.5rem;
      font-weight: 700;
      color: #fff !important;
      display: flex;
      align-items: center;
      gap: 10px;
    }
    
    .navbar-nav .nav-link {
      color: rgba(255,255,255,0.9) !important;
      margin: 0 10px;
      font-weight: 500;
      transition: all 0.3s;
      position: relative;
    }
    
    .navbar-nav .nav-link:hover {
      color: var(--secondary-color) !important;
      transform: translateY(-2px);
    }
    
    .btn-consultation {
      background: var(--secondary-color);
      color: var(--primary-color);
      padding: 10px 25px;
      border-radius: 50px;
      font-weight: 600;
      border: none;
      transition: all 0.3s;
      box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    }
    
    .btn-consultation:hover {
      transform: translateY(-3px);
      box-shadow: 0 6px 25px rgba(212, 175, 55, 0.5);
      background: #c49d2e;
    }
    
    /* Hero Section */
    .hero {
      background: linear-gradient(135deg, var(--primary-color) 0%, #2c5282 100%);
      color: white;
      padding: 120px 0 80px;
      position: relative;
      overflow: hidden;
    }
    
    .hero::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.05" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,154.7C960,171,1056,181,1152,165.3C1248,149,1344,107,1392,85.3L1440,64L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
      background-size: cover;
      opacity: 0.3;
    }
    
    .hero-content {
      position: relative;
      z-index: 2;
    }
    
    .hero h1 {
      font-size: 3.5rem;
      font-weight: 700;
      margin-bottom: 25px;
      animation: fadeInUp 1s;
    }
    
    .hero p {
      font-size: 1.25rem;
      margin-bottom: 35px;
      opacity: 0.95;
      animation: fadeInUp 1.2s;
    }
    
    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(30px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }
    
    /* Stats Section */
    .stats {
      background: white;
      padding: 60px 0;
      box-shadow: 0 -4px 20px rgba(0,0,0,0.05);
    }
    
    .stat-card {
      text-align: center;
      padding: 30px;
    }
    
    .stat-number {
      font-size: 3rem;
      font-weight: 700;
      color: var(--secondary-color);
      margin-bottom: 10px;
    }
    
    .stat-label {
      color: var(--text-light);
      font-size: 1rem;
    }
    
    /* Services Section */
    .services {
      padding: 100px 0;
      background: #f8fafc;
    }
    
    .section-title {
      text-align: center;
      margin-bottom: 60px;
    }
    
    .section-title h2 {
      font-size: 2.8rem;
      color: var(--primary-color);
      margin-bottom: 15px;
    }
    
    .section-subtitle {
      color: var(--text-light);
      font-size: 1.1rem;
    }
    
    .service-card {
      background: white;
      border-radius: 20px;
      padding: 40px 30px;
      margin-bottom: 30px;
      box-shadow: 0 5px 25px rgba(0,0,0,0.08);
      transition: all 0.4s;
      height: 100%;
      border: 2px solid transparent;
    }
    
    .service-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 15px 40px rgba(0,0,0,0.15);
      border-color: var(--secondary-color);
    }
    
    .service-icon {
      font-size: 3rem;
      color: var(--secondary-color);
      margin-bottom: 20px;
    }
    
    .service-card h4 {
      font-size: 1.4rem;
      color: var(--primary-color);
      margin-bottom: 15px;
    }
    
    .service-card p {
      color: var(--text-light);
      line-height: 1.7;
    }
    
    /* POF Section */
    .pof-section {
      background: linear-gradient(135deg, #2c5282 0%, var(--primary-color) 100%);
      color: white;
      padding: 100px 0;
      position: relative;
    }
    
    .pof-card {
      background: rgba(255,255,255,0.1);
      backdrop-filter: blur(10px);
      border-radius: 20px;
      padding: 40px;
      border: 1px solid rgba(255,255,255,0.2);
    }
    
    .pof-features {
      list-style: none;
      padding: 0;
    }
    
    .pof-features li {
      padding: 15px 0;
      border-bottom: 1px solid rgba(255,255,255,0.1);
      display: flex;
      align-items: center;
      gap: 15px;
    }
    
    .pof-features li:last-child {
      border-bottom: none;
    }
    
    .check-icon {
      color: var(--secondary-color);
      font-size: 1.5rem;
    }
    
    /* Process Section */
    .process {
      padding: 100px 0;
    }
    
    .process-step {
      text-align: center;
      padding: 30px;
      position: relative;
    }
    
    .step-number {
      width: 80px;
      height: 80px;
      background: linear-gradient(135deg, var(--accent-color), #1d4ed8);
      color: white;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 2rem;
      font-weight: 700;
      margin: 0 auto 25px;
      box-shadow: 0 5px 20px rgba(37, 99, 235, 0.3);
    }
    
    .process-step h4 {
      color: var(--primary-color);
      margin-bottom: 15px;
    }
    
    /* About Section */
    .about {
      padding: 100px 0;
      background: white;
    }
    
    .about-content {
      padding: 40px;
    }
    
    .about-img {
      border-radius: 20px;
      box-shadow: 0 10px 40px rgba(0,0,0,0.15);
      overflow: hidden;
    }
    
    .value-item {
      display: flex;
      align-items: start;
      gap: 20px;
      margin-bottom: 25px;
    }
    
    .value-icon {
      font-size: 2rem;
      color: var(--secondary-color);
    }
    
    /* FAQ Section */
    .faq {
      padding: 100px 0;
      background: #f8fafc;
    }
    
    .accordion-button {
      font-weight: 600;
      color: var(--primary-color);
      background: white;
      font-size: 1.1rem;
    }
    
    .accordion-button:not(.collapsed) {
      background: var(--primary-color);
      color: white;
    }
    
    .accordion-body {
      line-height: 1.8;
      color: var(--text-dark);
    }
    
    /* CTA Section */
    .cta {
      background: var(--secondary-color);
      padding: 80px 0;
      color: var(--primary-color);
      text-align: center;
    }
    
    .cta h2 {
      font-size: 2.5rem;
      margin-bottom: 20px;
    }
    
    .btn-cta {
      background: var(--primary-color);
      color: white;
      padding: 15px 40px;
      border-radius: 50px;
      font-weight: 600;
      border: none;
      font-size: 1.1rem;
      transition: all 0.3s;
      box-shadow: 0 5px 20px rgba(26, 54, 93, 0.3);
    }
    
    .btn-cta:hover {
      transform: translateY(-3px);
      box-shadow: 0 8px 30px rgba(26, 54, 93, 0.5);
      background: #152844;
    }
    
    /* Contact Section */
    .contact {
      padding: 100px 0;
    }
    
    .contact-card {
      background: white;
      border-radius: 20px;
      padding: 40px;
      box-shadow: 0 5px 25px rgba(0,0,0,0.08);
      text-align: center;
      transition: all 0.3s;
    }
    
    .contact-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 35px rgba(0,0,0,0.15);
    }
    
    .contact-icon {
      font-size: 3rem;
      color: var(--accent-color);
      margin-bottom: 20px;
    }
    
    /* Footer */
    footer {
      background: var(--primary-color);
      color: white;
      padding: 60px 0 30px;
    }
    
    .footer-links {
      list-style: none;
      padding: 0;
    }
    
    .footer-links li {
      margin-bottom: 12px;
    }
    
    .footer-links a {
      color: rgba(255,255,255,0.8);
      text-decoration: none;
      transition: all 0.3s;
    }
    
    .footer-links a:hover {
      color: var(--secondary-color);
      padding-left: 5px;
    }
    
    .social-links a {
      color: white;
      font-size: 1.5rem;
      margin: 0 10px;
      transition: all 0.3s;
    }
    
    .social-links a:hover {
      color: var(--secondary-color);
      transform: translateY(-3px);
    }
    
    @media (max-width: 768px) {
      .hero h1 {
        font-size: 2.2rem;
      }
      .section-title h2 {
        font-size: 2rem;
      }
    }

:root{
  --base-h: 221;
  --base-s: 75%;
  --base-l: 60%;
  --base: var(--base-h) var(--base-s) var(--base-l);
  
}
.base-color {
  color: hsl(var(--base)) !important;
}

.copyInput {
  display: inline-block;
  line-height: 50px;
  position: absolute;
  top: 0;
  right: 0;
  width: 40px;
  text-align: center;
  font-size: 14px;
  cursor: pointer;
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s;
}

.copied::after {
  position: absolute;
  top: 8px;
  right: 12%;
  width: 100px;
  display: block;
  content: "COPIED";
  font-size: 1em;
  padding: 5px 5px;
  color: #fff;
  background-color: #FF7000;
  border-radius: 3px;
  opacity: 0;
  will-change: opacity, transform;
  animation: showcopied 1.5s ease;
}

@keyframes showcopied {
  0% {
    opacity: 0;
    transform: translateX(100%);
  }

  50% {
    opacity: 0.7;
    transform: translateX(40%);
  }

  70% {
    opacity: 1;
    transform: translateX(0);
  }

  100% {
    opacity: 0;
  }
}




.cookies-card {
  width: 520px;
  padding: 30px;
  color: #1E2337;
  position: fixed;
  bottom: 15px;
  left: 15px;
  z-index: 999999;
  transition: all .5s;
  background: #d1d1d1;
  border-radius: 5px;
}

.cookies-card.hide {
  bottom: -500px !important;
}

.radius--10px {
  border-radius: 10px;
}

.cookies-card__icon {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background-color: hsl(var(--base));
  color: #fff;
  font-size: 32px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

.cookies-card__content {
  margin-bottom: 0;
}

.cookies-btn {
  color: #363636;
  text-decoration: none;
  padding: 10px 35px;
  margin: 3px 5px;
  display: inline-block;
  border-radius: 999px;
}

.cookies-btn:hover {
  color: #363636;
}


@media (max-width: 767px) {
  .cookies-card {
    width: 100%;
    left: 0;
    bottom: 0;
    font-size: 14px;
    padding: 15px;
  }
}

.hover-input-popup {
  position: relative;
}

.input-popup {
  display: none;
}

.hover-input-popup .input-popup {
  display: block;
  position: absolute;
  bottom: 130%;
  left: 50%;
  width: 280px;
  background-color: #1a1a1a;
  color: #fff;
  padding: 20px;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.input-popup::after {
  position: absolute;
  content: '';
  bottom: -19px;
  left: 50%;
  margin-left: -5px;
  border-width: 10px 10px 10px 10px;
  border-style: solid;
  border-color: transparent transparent #1a1a1a transparent;
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.input-popup p {
  padding-left: 20px;
  position: relative;
}

.input-popup p::before {
  position: absolute;
  content: '';
  font-family: 'Line Awesome Free';
  font-weight: 900;
  left: 0;
  top: 4px;
  line-height: 1;
  font-size: 18px;
}

.input-popup p.error {
  text-decoration: line-through;
}

.input-popup p.error::before {
  content: "\f057";
  color: #ea5455;
}

.input-popup p.success::before {
  content: "\f058";
  color: #28c76f;
}



.show-filter {
  display: none;
}

@media(max-width:767px) {
  .responsive-filter-card {
    display: none;
    transition: none;
  }

  .show-filter {
    display: block;
  }
}



/* ////////////////// select 2 css //////////////// */
.select2-dropdown {
  border: 0 !important;
  margin-top: 2px !important;
  border-radius: 5px !important;
  box-shadow: 0 3px 9px rgba(50, 50, 9, 0.05), 6px 4px 19px rgb(115 103 240 / 20%)
}

.select2-search--dropdown {
  padding: 10px 10px !important;
  border-color: #ced4da !important;
}

.select2-container--default .select2-search--dropdown .select2-search__field {
  border-color: #ced4da !important;
  padding: 10px 20px;
}

.select2-results__option.select2-results__option--selected,
.select2-results__option--selectable,
.select2-container--default .select2-results__option--disabled {
  padding: 9px 14px !important;
  border-bottom: 1px solid #eee;
}

.select2-results__option.select2-results__message {
  text-align: center !important;
  padding: 12px 14px !important;
}

.select2-container--default .select2-results>.select2-results__options::-webkit-scrollbar {
  width: 8px;
  border-radius: 5px;
}

.select2-container--default .select2-results>.select2-results__options::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 5px;
}

.select2-container--default .select2-results>.select2-results__options::-webkit-scrollbar-thumb {
  background: #ddd;
}

.select2-container--default .select2-results>.select2-results__options::-webkit-scrollbar-thumb:hover {
  background: #ddd;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
  display: none;
}

.select2-container--default .select2-selection--single .select2-selection__arrow:after {
  position: absolute;
  right: 10px;
  top: 0;
  content: "\f107";
  font-family: "Line Awesome Free";
  font-weight: 900;
  transition: .3s;
}


.selection{
  display: block;
}

.select2-container--default .select2-selection--single {
  border-radius: .375rem !important;
  padding: .375rem .75rem !important;
  height: 100% !important;
  border: 1px solid hsl(var(--border)) !important;
  height: 45px !important;
}

.select2 .dropdown-wrapper{
  display: none;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
  top: 11px !important;
}

.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow:after {
  transform: rotate(-180deg);
}

.select2-results__option:last-child {
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}

.select2-results__option:first-child {
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}

.select2-results__option.select2-results__option--selected,
.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
  background-color: #f1f1f1 !important;
  color: #000 !important;
}

.select2-container--default .select2-search--dropdown .select2-search__field:focus {
  border-color: hsl(var(--base)) !important;
  box-shadow: 0 0 25px rgba(115, 103, 240 0.071) !important;
  outline: 0 !important;
}

.select2-dropdown .country-flag {
  width: 25px;
  height: 25px;
  border-radius: 8px;
}

.select2-dropdown .gateway-title {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 0px !important;
}

.select2-dropdown .gateway-subtitle {
  font-size: 12px;
  margin-bottom: 0px !important;
}
.select2-container--open .select2-selection.select2-selection--single, .select2-container--open .select2-selection.select2-selection--multiple {
  border-color: hsl(var(--base)) !important;
  border-radius: .375rem !important;
}


.gateway-card {
  padding: 15px;
}

.payment-card-title {
  padding: 13px 25px;
  text-align: center;
  background-color: hsl(var(--base));
  border-radius: 5px;
  border: 0;
  margin-bottom: 0px;
  color: #fff;
}

.payment-system-list {
  --thumb-width: 100px;
  --thumb-height: 40px;
  --radio-size: 12px;
  --border-color: #cccccf59;
  --hover-border-color: hsl(var(--base));
  background-color: #fff;
  border-radius: 5px;
  height: 100%;

}


.payment-system-list.is-scrollable {
  max-height: min(388px, 70vh);
  overflow-x: auto;
  padding-block: 4px;
}

.payment-system-list.is-scrollable::-webkit-scrollbar {
  width: 5px;
}

.payment-system-list.is-scrollable::-webkit-scrollbar {
  width: 5px;

}

.payment-system-list.is-scrollable::-webkit-scrollbar-thumb {
  background-color: hsl(var(--base));
  border-radius: 10px;
}

.payment-item {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding: 10px 18px;
  border: 1px solid #fff;
  border-top-color: var(--border-color);
  transition: all 0.3s;
  border-left: 3px solid transparent;
}

.payment-item:first-child {
  border-top-color: #fff;
  border-radius: 5px 5px 0 0;
}

.payment-item:has(.payment-item__radio:checked) {
  border-left: 3px solid var(--hover-border-color);
  border-radius: 0px;
}

.payment-item__check {
  border: 3px solid transparent;
}

.payment-item:has(.payment-item__radio:checked) .payment-item__check {
  border: 3px solid hsl(var(--base));
}

.payment-item__info {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  max-width: calc(100% - var(--thumb-width))
}

.payment-item__check {
  width: var(--radio-size);
  height: var(--radio-size);
  border: 1px solid hsl(var(--base));
  display: inline-block;
  border-radius: 100%;

}

.payment-item__name {
  padding-left: 10px;
  width: calc(100% - var(--radio-size));
  transition: all 0.3s;
}

.payment-item__thumb {
  width: var(--thumb-width);
  height: var(--thumb-height);
  text-align: right;
  padding-left: 10px;

  &:has(.text) {
      width: fit-content;
  }
}

.payment-item__thumb img {
  max-width: var(--thumb-width);
  max-height: var(--thumb-height);
  object-fit: cover;
}


.deposit-info {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 12px;
}

.deposit-info__title {
  max-width: 50%;
  margin-bottom: 0px;
  text-align: left;
}

.deposit-info__input {
  max-width: 50%;
  text-align: right;
  width: 100%;
}

.deposit-info__input-select {
  border: 1px solid var(--border-color);
  width: 100%;
  border-radius: 5px;
  padding-block: 6px;
}

.deposit-info__input-group {
  border: 1px solid var(--border-color);
  border-radius: 5px;

  .deposit-info__input-group-text {
      align-self: center;
      padding-left: 5px;
  }

}

.deposit-info__input-group .form--control {
  padding: 5px;
  border: 0;
  height: 35px;
  text-align: right;
}

.deposit-info__input-group .form--control:focus {
  box-shadow: unset;
}

.info-text .text,
.deposit-info__input .text {
  font-size: 14px;

}

.deposit-info__title .text.has-icon {
  display: flex;
  align-items: center;
  gap: 5px
}

.total-amount {
  border-top: 1px solid var(--border-color);
}

.total-amount .deposit-info__title {
  font-weight: 600;
}

.payment-item__btn {
  border: 0;
  border-block: 1px solid var(--border-color);
  border-bottom: 0;
  background: #fff;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 15px;
  font-weight: 500;
}

.payment-item:hover+.payment-item__btn {
  border-top-color: #fff;
}

button .spinner-border {
  --bs-spinner-width: 1.5rem;
  --bs-spinner-height: 1.5rem;
}
.adjust-height .payment-system-list.is-scrollable{
  max-height: 461px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.btn--base:disabled{
  background-color: hsl(var(--base));
  border-color: hsl(var(--base));
  color: hsl(var(--white));
  opacity: 0.6;
}