/* Copy Animation */
.base-color {
  color: hsl(var(--main)) !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: #6e6f70;
  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: 80%;
  left: 50%;
  width: 280px;
  background-color: #1a1a1a;
  color: #fff;
  padding: 20px;
  border-radius: 5px !important;
  -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;
  }
}

.btn.disabled, .btn:disabled, fieldset:disabled .btn {
  opacity: 0.5;
  background-color: hsl(var(--black) / 0.5);
  border-color: hsl(var(--black) / 0.01);
}

.h-45 {
  height: 50px;
}

.h-none {
  height: 37px !important;
}

.input-group-text {
  color: #747474;
  background-color: #fff;
  border-color: hsl(var(--black) / 0.08);
  transition: all linear .15s;
}

.account-form .input-group-text {
  background-color: transparent;
  border-color: rgba(255, 255, 255, 0.15);
}

.input-group>:not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback) {
  border-left: 0;
}

.input-group:not(.has-validation)>.dropdown-toggle:nth-last-child(n+3),
.input-group:not(.has-validation)>:not(:last-child):not(.dropdown-toggle):not(.dropdown-menu) {
  border-right: 0;
}

@media screen and (min-width:768px) and (max-width:1024px) {
  .hover-input-popup .input-popup {
    left: 70% !important;
  }
}

.input-group-text.removeFile{
  border-color: hsl(var(--black) / 0.1) !important;
  border-style: dashed;
}


.daterangepicker td.active,
.daterangepicker td.active:hover,
.daterangepicker .ranges li.active, 
.daterangepicker td.active,
.daterangepicker td.active:hover,
.daterangepicker .ranges li.active{
     background-color: hsl(var(--base)) !important;
}

/* =========================================================
   HOMEPAGE PROFESSIONAL REDESIGN
   Visual refresh only — no content/markup structure changed.
   Uses existing theme variables (--base / --base-two) so it
   automatically matches whatever brand color is set in Admin.
   ========================================================= */

/* ---- Global rhythm & type ---- */
.section-heading__subtitle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px 6px 8px;
  border-radius: 30px;
  background: hsl(var(--base) / 0.08);
  color: hsl(var(--base));
  font-weight: 600;
  font-size: 0.8125rem;
  letter-spacing: 0.04em;
}

.section-heading__subtitle::before {
  content: "";
  position: static;
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, hsl(var(--base)), hsl(var(--base-two)));
  z-index: 1;
}

.section-heading__title {
  margin-top: 14px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

/* ---- Banner ---- */
/* NOTE: padding-top is intentionally left untouched on desktop — the
   theme's header floats transparently over the banner there and the
   original padding-top (set in main.css) already clears it with a
   large buffer. On mobile the header is a solid bar and the theme's
   original buffer is much tighter, so we add a bit of extra headroom
   below to make sure the headline never sits under it. */
.banner-section {
  background: linear-gradient(180deg, hsl(var(--base) / 0.06) 0%, hsl(var(--white)) 65%);
}

@media screen and (max-width: 991px) {
  .banner-section {
    padding-top: 200px;
  }
}

@media screen and (max-width: 767px) {
  .banner-section {
    padding-top: 170px;
  }
}

@media screen and (max-width: 575px) {
  .banner-section {
    padding-top: 150px;
  }
}

.banner-content__title {
  font-weight: 800;
  letter-spacing: -0.02em;
  background: linear-gradient(100deg, #1c1c1c 35%, hsl(var(--base)) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.banner-content .btn--base {
  border-radius: 10px;
  font-weight: 600;
  box-shadow: 0 12px 24px -8px hsl(var(--base) / 0.5);
}

.banner-thumb .banner-img {
  position: relative;
}

.banner-thumb .banner-img img {
  border-radius: 24px;
  box-shadow: 0 30px 60px -20px hsl(var(--base) / 0.35);
}

.banner-thumb .happy-user {
  background: hsl(var(--white));
  border-radius: 16px;
  padding: 14px 18px;
  box-shadow: 0 20px 40px -12px rgba(15, 23, 42, 0.18);
  border: 1px solid hsl(var(--black) / 0.05);
}

.banner-thumb .happy-user__title {
  color: hsl(var(--base));
  font-weight: 800;
}

/* ---- About ---- */
.about-section .thumbnail {
  border-radius: 20px;
  box-shadow: 0 24px 48px -18px rgba(15, 23, 42, 0.25);
}

.about-section .thumb-card {
  border-radius: 14px;
  box-shadow: 0 18px 36px -14px rgba(15, 23, 42, 0.2);
  border: 1px solid hsl(var(--black) / 0.05);
}

.about-section .thumb-card__icon {
  background: linear-gradient(135deg, hsl(var(--base)), hsl(var(--base-two)));
  color: hsl(var(--white));
  border-radius: 50%;
}

.about-section .nav.custom--tab .nav-link {
  border-radius: 10px;
  font-weight: 600;
  transition: 0.25s;
}

.about-section .nav.custom--tab .nav-link.active {
  background: linear-gradient(135deg, hsl(var(--base)), hsl(var(--base-two)));
  color: hsl(var(--white)) !important;
  box-shadow: 0 10px 20px -8px hsl(var(--base) / 0.6);
}

/* ---- Feature cards ---- */
.features .feature-card {
  border-radius: 16px;
  border-color: transparent;
  box-shadow: 0 10px 30px -18px rgba(15, 23, 42, 0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.features .feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 44px -18px hsl(var(--base) / 0.35);
}

.feature-card__icon img {
  filter: none;
}

.feature-card__icon .icon {
  color: hsl(var(--base));
}

/* ---- Service section ---- */
.service-card {
  border-radius: 16px;
  box-shadow: 0 10px 30px -18px rgba(15, 23, 42, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 44px -18px hsl(var(--base) / 0.35);
}

.service-card__icon {
  background: linear-gradient(135deg, hsl(var(--base) / 0.12), hsl(var(--base-two) / 0.12));
  border-radius: 14px;
  color: hsl(var(--base));
}

/* ---- Counter ---- */
.counter .counter-card {
  border: 1px solid hsl(var(--white) / 0.18);
  background: linear-gradient(160deg, hsl(var(--white) / 0.1), hsl(var(--white) / 0.02));
  transition: transform 0.3s ease;
}

.counter .counter-card:hover {
  transform: translateY(-6px);
}

.counter .counter-card__title {
  font-weight: 800;
  font-size: 2rem;
}

/* ---- How it works ---- */
.work-us .work-card__number {
  background: linear-gradient(135deg, hsl(var(--base)), hsl(var(--base-two)));
  color: hsl(var(--white));
  box-shadow: 0 12px 24px -10px hsl(var(--base) / 0.6);
  font-weight: 700;
}

.work-us .work-card {
  transition: transform 0.3s ease;
}

.work-us .work-card:hover {
  transform: translateY(-6px);
}

/* ---- Why choose us ---- */
.chose-us .service-list {
  border-radius: 14px;
  padding: 16px;
  transition: background 0.25s ease;
}

.chose-us .service-list:hover {
  background: hsl(var(--base) / 0.05);
}

.chose-us .service-list__number {
  background: linear-gradient(135deg, hsl(var(--base)), hsl(var(--base-two)));
  color: hsl(var(--white));
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin-right: 16px;
}

.chose-us .right-section .chose-us__img {
  border-radius: 20px;
}

.chose-us .right-section .chose-icon-card {
  border: 1px solid hsl(var(--black) / 0.05);
}

.chose-us .right-section .chose-icon-card .icon {
  color: hsl(var(--base));
}

/* ---- Testimonials ---- */
.testimonial-item {
  border-radius: 18px;
  box-shadow: 0 10px 30px -18px rgba(15, 23, 42, 0.2);
  border-color: hsl(var(--black) / 0.06);
}

.testimonial-item__thumb {
  border-radius: 50%;
  border: 2px solid hsl(var(--base) / 0.25);
}

.testimonial-item__testimonials i,
.testimonial-item__testimonials span {
  color: #f6b93b;
}

/* ---- Partner logos ---- */
.brand-logo__item {
  filter: grayscale(1);
  opacity: 0.55;
  transition: 0.25s ease;
}

.brand-logo__item:hover {
  filter: grayscale(0);
  opacity: 1;
}

/* ---- FAQ ---- */
.custom--accordion .accordion-item {
  border: none;
  border-radius: 12px !important;
  overflow: hidden;
  margin-bottom: 14px;
  box-shadow: 0 6px 20px -14px rgba(15, 23, 42, 0.25);
}

.custom--accordion .accordion-button {
  font-weight: 600;
  background: hsl(var(--white));
}

.custom--accordion .accordion-button:not(.collapsed) {
  background: linear-gradient(135deg, hsl(var(--base) / 0.08), hsl(var(--base-two) / 0.08));
  color: hsl(var(--base));
}

/* ---- Pricing (FDR / DPS / Loan) ---- */
.pricing-card {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 30px -18px rgba(15, 23, 42, 0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background: hsl(var(--white));
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 26px 46px -18px hsl(var(--base) / 0.35);
}

.pricing-card__header {
  background: linear-gradient(135deg, hsl(var(--base)), hsl(var(--base-two))) !important;
}

.pricing-card__icon.text-stat {
  color: hsl(var(--base));
}

/* ---- Newsletter / subscribe CTA ---- */
.newsletter {
  background: linear-gradient(120deg, hsl(var(--base)), hsl(var(--base-two)));
  border-radius: 24px;
  margin: 0 auto 60px;
  max-width: 1300px;
  border-bottom: none;
}

.newsletter .newsletter-from .form--control {
  border-radius: 10px 0 0 10px;
  border: none;
  height: 54px;
}

.newsletter .newsletter-from .btn--base {
  border-radius: 0 10px 10px 0 !important;
  font-weight: 600;
}

@media screen and (max-width: 767px) {
  .newsletter {
    border-radius: 16px;
  }
}