/* 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: #ffffff;
  position: fixed;
  bottom: 15px;
  left: 15px;
  z-index: 999999;
  transition: all .5s;
  background: #002550;
  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: 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 two */
.selection {
  display: block;
}

.select2-container--default .select2-selection--single {
  background-color: #fff;
  border: 1px solid #e5e5e5 !important;
  height: 50px !important;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
  color: #444;
  line-height: 50px !important;
}


.select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 50px !important;
}

.select2 .dropdown-wrapper {
  display: none;
}

.select2 .dropdown-wrapper {
  display: none;
}

.select2-container:has(.select2-selection--single) {
  width: 100% !important;
}

.form-select.form--control.select2-auto-tokenize {
  display: none;
}

.form-select.form--control.select2-hidden-accessible {
  display: none;
}

label.required:after {
  content: '*';
  color: #dc3545 !important;
  margin-left: 2px;
}

.instructionIcon {
  font-size: 0.8rem !important;
}


/* ═══════════════════════════════════════════════════════════
   GLOBAL SITE ENHANCEMENTS  — applied over existing styles
   All selectors scoped so nothing breaks existing admin/agent
══════════════════════════════════════════════════════════ */

/* ── Smooth scroll + selection colour ── */
html { scroll-behavior: smooth; }
::selection { background: hsl(var(--main)); color: #fff; }

/* ── Section title polish ── */
.section-subtitle.border-left {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .3rem 1rem .3rem .85rem;
    border-left: 3px solid hsl(var(--main));
    background: linear-gradient(90deg, hsl(var(--main) / .08), transparent);
    border-radius: 0 6px 6px 0;
    font-weight: 600;
    letter-spacing: .06em;
}

/* ── About section enhancements ── */
.about-thumb {
    filter: drop-shadow(0 24px 48px rgba(0,0,0,.18));
}
.about-img-content {
    background: linear-gradient(135deg, hsl(var(--main)), #00a884) !important;
    border-radius: 14px !important;
    box-shadow: 0 12px 32px rgba(0,184,148,.3) !important;
}

/* ── Feature cards ── */
.feaure-card {
    border-radius: 16px !important;
    border: 1px solid rgba(255,255,255,.08) !important;
    transition: transform .25s, box-shadow .25s !important;
    padding: 2rem !important;
}
.feaure-card:hover {
    transform: translateY(-6px) !important;
    box-shadow: 0 20px 48px rgba(0,0,0,.3) !important;
}

/* ── Service cards ── */
.service-card {
    border-radius: 16px !important;
    transition: transform .25s, box-shadow .25s !important;
    overflow: hidden;
}
.service-card:hover {
    transform: translateY(-6px) !important;
    box-shadow: 0 20px 48px rgba(0,0,0,.15) !important;
}

/* ── Why choose us cards ── */
.choose-card {
    transition: transform .25s, box-shadow .25s !important;
}
.choose-card:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 16px 40px rgba(0,0,0,.12) !important;
}

/* ── Overview numbers ── */
.overview-number {
    font-size: 2.5rem !important;
    font-weight: 800 !important;
    background: linear-gradient(135deg, #fff, hsl(var(--main)));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ── Subscribe section ── */
.subscription-form .input--group {
    border-radius: 50px !important;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0,0,0,.2);
}
.subscription-form .form--control {
    border-radius: 50px 0 0 50px !important;
    border: none !important;
}
.subscription-form .btn--base {
    border-radius: 0 50px 50px 0 !important;
    padding-left: 1.75rem !important;
    padding-right: 1.75rem !important;
}

/* ── Footer CTA box ── */
.cta-wrapper {
    background: linear-gradient(135deg, hsl(var(--main)), #007a5e) !important;
    border: none !important;
    box-shadow: 0 16px 48px rgba(0,184,148,.3) !important;
    padding: 2.5rem 3rem !important;
}

/* ── Testimonial section ── */
.testimonial-slide-area .content {
    background: linear-gradient(135deg, #0a1628, #1a3a5c) !important;
    border-radius: 16px !important;
}

/* ── General btn polish ── */
.btn--base {
    border-radius: 50px !important;
    font-weight: 600 !important;
    transition: transform .2s, box-shadow .2s !important;
    box-shadow: 0 6px 20px hsl(var(--main) / .3) !important;
}
.btn--base:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 12px 28px hsl(var(--main) / .4) !important;
}
.btn--base.btn--custom {
    padding: .85rem 2.25rem !important;
    font-size: .95rem !important;
}

/* ── Footer logo spacing ── */
.footer-logo img { height: 40px; }

/* ── Back-to-top button ── */
.back-to-top,
.scrollToTop {
    border-radius: 50% !important;
    background: linear-gradient(135deg, hsl(var(--main)), #007a5e) !important;
    box-shadow: 0 6px 20px rgba(0,184,148,.4) !important;
    border: none !important;
}

/* ── Cookie card refresh ── */
.cookies-card {
    border-radius: 16px !important;
    background: #0f2744 !important;
    border: 1px solid rgba(255,255,255,.08) !important;
    box-shadow: 0 16px 48px rgba(0,0,0,.4) !important;
}

/* ── AOS animation support (lightweight CSS fallback) ── */
[data-aos="fade-up"] {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .6s ease, transform .6s ease;
}
[data-aos="fade-up"].aos-animate,
[data-aos="fade-left"].aos-animate {
    opacity: 1;
    transform: none;
}
[data-aos="fade-left"] {
    opacity: 0;
    transform: translateX(24px);
    transition: opacity .6s ease, transform .6s ease;
}

/* trigger AOS on load via JS below */
