/* 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;
}
/* ==== Brand color overrides (HSL variables) ==== */
/* These replace the theme's defaults everywhere it uses hsl(var(--base)) etc. */
:root{
  /* Primary (deep royal blue ≈ #0056B3) */
  --base: 210 100% 35%;

  /* Hover/secondary (dodger blue ≈ #1E90FF) */
  --secondary: 210 100% 56%;

  /* Accent for icons/badges (soft blue ≈ #4DA6FF) */
  --accent: 210 100% 65%;

  /* Very light section background */
  --pd-bg: 215 33% 97%;
}

/* Icon-circle backgrounds in feature/service cards */
.feature-item__icon,
.service-item__icon,
.feature-card .icon,
.service-card .icon,
.icon-box__circle{
  background: hsl(var(--accent)) !important;
  color:#fff !important;
  box-shadow: 0 8px 20px hsl(210 100% 65% / .35);
}

/* Optional: subtle alt section background (add class "section--alt" to a section) */
.section--alt{ background: hsl(var(--pd-bg)); }

/* Optional: gradient utility for premium cards */
.card--brand-gradient{
  background: linear-gradient(135deg, hsl(var(--base)) 0%, hsl(var(--secondary)) 100%);
  color:#fff;
}
/* === Unify section headers (left aligned, consistent weight) === */
.section-heading,
.section__header{
  text-align: left !important;
}

.section-heading__title,
.section__title{
  font-weight: 700 !important;   /* same “boldness” everywhere */
  line-height: 1.2;
  margin-bottom: 14px;
}

/* === Kill the blue underline / line decorations === */
.section-heading__subtitle,
.section__subtitle,
.section-heading__subtitle a,
.section__subtitle a{
  text-decoration: none !important;
  border: 0 !important;
  position: relative;
  display: inline-block;
  padding: 0;              /* remove any bottom padding that drew lines */
  color: hsl(var(--black) / .60);
}

/* Some themes draw lines with ::before/::after — nuke them */
.section-heading__subtitle::before,
.section-heading__subtitle::after,
.section__subtitle::before,
.section__subtitle::after{
  content: none !important;
}

/* Make those tiny “About Us / Features / Skills / Our Services / FAQs” labels
   look like professional eyebrow tags instead of links */
.section-heading__subtitle,
.section__subtitle{
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 600;
  background: hsl(var(--pd-bg));
  color: hsl(var(--black) / .55);
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 10px;
}
/* === Unify small eyebrow labels (kill blue underline/lines) === */
.section-heading__subtitle,
.section-heading__subtitle a,
.section__subtitle,
.section__subtitle a,
.section-heading .section-heading__subtitle,
.section-heading .section-heading__subtitle a {
  text-decoration: none !important;
  border: 0 !important;
  color: hsl(var(--black) / .55) !important; /* neutral */
  display: inline-block;
  pointer-events: none; /* make it look like a label, not a link */
}

/* remove any decorative lines created by pseudo-elements */
.section-heading__subtitle::before,
.section-heading__subtitle::after,
.section__subtitle::before,
.section__subtitle::after,
.section-heading__subtitle a::before,
.section-heading__subtitle a::after {
  content: none !important;
  border: 0 !important;
}

/* Headings align left consistently */
.section-heading,
.section__header,
.section-heading .section-heading__title,
.section__header .section__title {
  text-align: left !important;
}
/* Top Scam Categories – icon style */
.scam-card__icon{
  width: 56px; height: 56px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  background: hsl(var(--accent)); color: #fff; font-size: 28px;
  margin-bottom: 10px;
  box-shadow: 0 8px 20px hsl(210 100% 65% / .35);
}

/* Optional: make “Learn more” look like a tidy text link */
.link-underline-none{ text-decoration:none; }
.link-underline-none:hover{ text-decoration:underline; }
/* Hide About image & shape */
.about-section .about-thumb,
.about-section .about-thumb .shape { display:none !important; }

/* Let the text column take full width on desktop */
@media (min-width: 992px){
  .about-section .col-lg-6.order-lg-2.order-1 { width:100% !important; flex:0 0 100% !important; }
}
/* === Partner logos: modern static grid === */
.partner-rail{ padding-top: 64px; padding-bottom: 64px; }

.brand-rail{
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

@media (min-width: 576px){
  .brand-rail{ grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (min-width: 992px){
  .brand-rail{ grid-template-columns: repeat(5, minmax(0, 1fr)); }
}

.brand-rail__item{
  background: #fff;
  border-radius: 14px;
  padding: 18px 22px;
  box-shadow: 0 8px 22px hsl(210 20% 20% / .06);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 82px;
}

.brand-rail__link{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.brand-rail img{
  max-height: 44px;
  width: auto;
  object-fit: contain;
  filter: grayscale(100%) opacity(.75);
  transition: filter .25s ease, transform .25s ease;
}

.brand-rail__item:hover img{
  filter: grayscale(0%) opacity(1);
  transform: translateY(-2px);
}

/* Optional: subtle divider above section so it feels anchored */
.partner-rail .section-heading{ margin-bottom: 18px; }
/* ==== Theme tokens (light = default) ==== */
:root{
  /* page + cards + text */
  --page-bg: 0 0% 100%;
  --card-bg: 0 0% 100%;
  --text-1: 222 47% 11%;
  --text-2: 215 16% 47%;

  /* keep your brand blues (already added earlier) */
  /* --base, --secondary, --accent, --pd-bg are fine */
}

/* Apply tokens globally */
body{ background: hsl(var(--page-bg)); color: hsl(var(--text-1)); }
.card, .feature-card, .service-card, .accordion-item,
.about-section, .cookies-card, .why-choose-card{
  background: hsl(var(--card-bg));
}

/* Optional: slightly dim secondary text */
p, .text-muted, .section__subtitle, .feature-card__desc{
  color: hsl(var(--text-2));
}

/* ==== DARK MODE (activate by setting html[data-theme="dark"]) ==== */
html[data-theme="dark"]{
  --page-bg: 222 47% 7%;      /* page background */
  --card-bg: 222 47% 10%;     /* cards/panels */
  --text-1: 0 0% 95%;         /* main text */
  --text-2: 0 0% 80%;         /* secondary text */

  /* make “black”-based borders render light on dark themes */
  --black: 0 0% 100%;
}

/* Footers / header feel better a bit darker */
html[data-theme="dark"] .footer,
html[data-theme="dark"] .header,
html[data-theme="dark"] .navbar{
  background: #0d1320;
}

/* The toggle button itself */
.theme-toggle{
  position: fixed;
  right: 18px;
  bottom: 90px;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 999px;
  background: hsl(var(--base));
  color: #fff;
  box-shadow: 0 10px 24px hsl(210 100% 40% / .35);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 9999;
}
html[data-theme="dark"] .theme-toggle{
  background: hsl(var(--secondary));
}
.theme-toggle i{ font-size: 20px; line-height: 1; }
/* 1) Card borders & soft shadows on dark */
html[data-theme="dark"] .card,
html[data-theme="dark"] .feature-card,
html[data-theme="dark"] .service-card,
html[data-theme="dark"] .accordion-item {
  border-color: hsl(0 0% 100% / .08) !important;
  box-shadow: 0 6px 18px rgba(0,0,0,.35);
}

/* 2) Inputs on dark (bg, border, placeholder) */
html[data-theme="dark"] input,
html[data-theme="dark"] select,
html[data-theme="dark"] textarea {
  background: hsl(222 47% 12%);
  color: hsl(0 0% 96%);
  border-color: hsl(0 0% 100% / .12);
}
html[data-theme="dark"] ::placeholder { color: hsl(0 0% 85% / .6); }

/* 3) Links stay readable */
html[data-theme="dark"] a { color: hsl(var(--accent)); }

/* 4) Accordions/FAQ chevrons if they’re images/icons */
html[data-theme="dark"] .accordion-button { background: hsl(222 47% 10%); color: hsl(0 0% 96%); }

/* 5) Tables (if any) */
html[data-theme="dark"] table { color: hsl(0 0% 96%); }
html[data-theme="dark"] thead { background: hsl(222 47% 12%); }
html[data-theme="dark"] tbody tr { border-color: hsl(0 0% 100% / .08); }

/* 6) Invert-only-the-logo-on-dark (if your logo is dark on transparent) */
html[data-theme="dark"] .site-logo img { filter: brightness(0) invert(1); }