/* 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;
}

/* Glassmorphism Styles */
:root {
  --glass-bg: rgba(14, 28, 54, 0.45);
  --glass-bg-hover: rgba(14, 28, 54, 0.6);
  --glass-border: rgba(255, 255, 255, 0.08);
  --glass-border-glow: rgba(0, 166, 247, 0.4);
  --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
  --glass-blur: blur(16px) saturate(180%);
}

.glassmorphism-wrapper {
  background-color: #070d19 !important;
  color: #e2e8f0 !important;
  overflow: hidden;
  position: relative;
  min-height: 100vh;
}

/* Glowing background blobs */
.bg-blobs {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.bg-blob {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  mix-blend-mode: screen;
  filter: blur(140px);
  opacity: 0.22;
  animation: float-blob 25s infinite alternate;
}

.bg-blob--cyan {
  background: radial-gradient(circle, #00a6f7 0%, transparent 70%);
  top: 5%;
  left: -15%;
}

.bg-blob--blue {
  background: radial-gradient(circle, #0052d4 0%, transparent 70%);
  bottom: 15%;
  right: -15%;
  animation-delay: -6s;
}

.bg-blob--purple {
  background: radial-gradient(circle, #7f00ff 0%, transparent 70%);
  top: 45%;
  left: 55%;
  width: 600px;
  height: 600px;
  animation-delay: -12s;
}

@keyframes float-blob {
  0% {
    transform: translate(0, 0) scale(1);
  }
  100% {
    transform: translate(100px, 60px) scale(1.2);
  }
}

/* Glass cards */
.glass-card {
  background: var(--glass-bg) !important;
  backdrop-filter: var(--glass-blur) !important;
  -webkit-backdrop-filter: var(--glass-blur) !important;
  border: 1px solid var(--glass-border) !important;
  border-radius: 20px !important;
  box-shadow: var(--glass-shadow) !important;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  z-index: 1;
}

.glass-card:hover {
  background: var(--glass-bg-hover) !important;
  border-color: rgba(255, 255, 255, 0.15) !important;
  box-shadow: 0 12px 40px 0 rgba(0, 166, 247, 0.2) !important;
  transform: translateY(-5px);
}

/* Glass Navbar */
.glass-navbar {
  background: rgba(7, 13, 25, 0.7) !important;
  backdrop-filter: var(--glass-blur) !important;
  -webkit-backdrop-filter: var(--glass-blur) !important;
  border-bottom: 1px solid var(--glass-border) !important;
  transition: all 0.3s ease;
}

/* Glass inputs */
.glass-input {
  background: rgba(255, 255, 255, 0.03) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  color: #fff !important;
  border-radius: 12px !important;
  transition: all 0.3s ease !important;
}

.glass-input:focus {
  background: rgba(255, 255, 255, 0.06) !important;
  border-color: #00a6f7 !important;
  box-shadow: 0 0 15px rgba(0, 166, 247, 0.3) !important;
  outline: none;
}

/* Glowing text */
.text-glow {
  text-shadow: 0 0 15px rgba(0, 166, 247, 0.6);
}

.text-gradient {
  background: linear-gradient(135deg, #00a6f7 0%, #bf55ec 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

/* Accordion modifications */
.glass-accordion .accordion-item {
  background: rgba(14, 28, 54, 0.3) !important;
  backdrop-filter: var(--glass-blur) !important;
  border: 1px solid var(--glass-border) !important;
  border-radius: 12px !important;
  margin-bottom: 15px !important;
  overflow: hidden;
  transition: all 0.3s ease;
}

.glass-accordion .accordion-header button {
  background: transparent !important;
  color: #fff !important;
  font-weight: 600 !important;
  border: none !important;
  box-shadow: none !important;
}

.glass-accordion .accordion-button:not(.collapsed) {
  border-bottom: 1px solid var(--glass-border) !important;
  color: #00a6f7 !important;
  text-shadow: 0 0 10px rgba(0, 166, 247, 0.2);
}

.glass-accordion .accordion-body {
  color: #cbd5e1 !important;
  background: transparent !important;
}

/* Overriding section background styles to integrate nicely */
.glassmorphism-wrapper section {
  background-color: transparent !important;
  background-image: none !important;
}

.glassmorphism-wrapper .section-heading__subtitle {
  color: #00a6f7 !important;
  font-weight: bold;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.glassmorphism-wrapper .section-heading__title {
  color: #ffffff !important;
}

.glassmorphism-wrapper p, 
.glassmorphism-wrapper span, 
.glassmorphism-wrapper h1, 
.glassmorphism-wrapper h2, 
.glassmorphism-wrapper h3, 
.glassmorphism-wrapper h4, 
.glassmorphism-wrapper h5, 
.glassmorphism-wrapper h6, 
.glassmorphism-wrapper label {
  color: #e2e8f0;
}

.glassmorphism-wrapper h1, 
.glassmorphism-wrapper h2, 
.glassmorphism-wrapper h3, 
.glassmorphism-wrapper h4, 
.glassmorphism-wrapper h5, 
.glassmorphism-wrapper h6 {
  color: #ffffff;
}

/* Glass Card styling for existing elements */
.feature-card,
.service-card,
.pricing-card,
.work-card,
.chose-icon-card,
.testimonial-card,
.card-section,
.cookies-card {
  background: var(--glass-bg) !important;
  backdrop-filter: var(--glass-blur) !important;
  -webkit-backdrop-filter: var(--glass-blur) !important;
  border: 1px solid var(--glass-border) !important;
  border-radius: 20px !important;
  box-shadow: var(--glass-shadow) !important;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
  color: #fff !important;
}

.feature-card:hover,
.service-card:hover,
.pricing-card:hover,
.work-card:hover,
.chose-icon-card:hover,
.testimonial-card:hover {
  background: var(--glass-bg-hover) !important;
  border-color: rgba(255, 255, 255, 0.15) !important;
  box-shadow: 0 12px 40px 0 rgba(0, 166, 247, 0.2) !important;
  transform: translateY(-5px) !important;
}

.feature-card__title,
.service-card__heading,
.pricing-card__title,
.work-card__title,
.chose-icon-card__title,
.testimonial-card__title,
.service-list__title {
  color: #ffffff !important;
  text-shadow: 0 0 10px rgba(0, 166, 247, 0.2);
}

.feature-card__desc,
.service-card__desc,
.pricing-card__list,
.work-card__desc,
.chose-icon-card__desc,
.testimonial-card__desc,
.service-list__desc {
  color: #cbd5e1 !important;
}

/* Specific pricing overrides */
.pricing-card__header {
  background: rgba(0, 166, 247, 0.1) !important;
  border-bottom: 1px solid var(--glass-border) !important;
  border-top-left-radius: 20px !important;
  border-top-right-radius: 20px !important;
  padding: 25px 15px !important;
}

.pricing-card__price {
  color: #00a6f7 !important;
  text-shadow: 0 0 15px rgba(0, 166, 247, 0.3) !important;
}

.pricing-card__list {
  border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
}

.pricing-card__list p, 
.pricing-card__list span {
  color: #cbd5e1 !important;
}

/* Service list in about/why choose */
.service-list__number {
  background: rgba(0, 166, 247, 0.1) !important;
  border: 1px solid rgba(0, 166, 247, 0.3) !important;
  color: #00a6f7 !important;
  border-radius: 50% !important;
  text-shadow: 0 0 8px rgba(0, 166, 247, 0.3);
}

/* Work card steps */
.work-card__number {
  background: rgba(0, 166, 247, 0.1) !important;
  border: 1px solid rgba(0, 166, 247, 0.3) !important;
  color: #00a6f7 !important;
  text-shadow: 0 0 8px rgba(0, 166, 247, 0.3);
}

/* Hide background design shapes that conflict with clean layout */
.about-section .shape,
.banner-section .banner-bg-masks-group,
.feature-card__overlay,
.pricing-card__overlay,
.services-section-overlay {
  display: none !important;
}

/* Breadcrumb styling */
.breadcrumb {
  background-color: transparent !important;
  border-bottom: 1px solid var(--glass-border) !important;
  padding: 80px 0 40px 0 !important;
}

.breadcrumb-bg-masks-group {
  display: none !important;
}

.breadcrumb__title {
  color: #ffffff !important;
  text-shadow: 0 0 15px rgba(0, 166, 247, 0.4);
}

/* Footer & GDPR Overrides */
.footer-area {
  background: rgba(7, 13, 25, 0.9) !important;
  border-top: 1px solid var(--glass-border) !important;
}

.footer-item__title {
  color: #ffffff !important;
}

.footer-item__desc {
  color: #cbd5e1 !important;
}

.footer-menu__link {
  color: #cbd5e1 !important;
}

.footer-menu__link:hover {
  color: #00a6f7 !important;
}

.bottom-footer {
  border-top: 1px solid var(--glass-border) !important;
}

.cookies-card {
  color: #fff !important;
}

.cookies-card__content {
  color: #cbd5e1 !important;
}

.glass-navbar .nav-link {
  color: rgba(255, 255, 255, 0.8) !important;
}

.glass-navbar .nav-link:hover,
.glass-navbar .nav-link.active {
  color: #00a6f7 !important;
}
