/* ========================================
   PAGE LOADER — Animated Lines
   ======================================== */

@keyframes lineRise {
  0%   { transform: scaleY(0.08); background: rgba(255,255,255,0.15); }
  40%  { transform: scaleY(1);    background: #ffffff; }
  60%  { transform: scaleY(1);    background: #e74c0a; }
  100% { transform: scaleY(0.08); background: rgba(231,76,10,0.1); }
}

.lines-loader {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 80px;
}

.loader-line {
  width: 4px;
  height: 100%;
  border-radius: 4px;
  background: rgba(255,255,255,0.15);
  transform-origin: bottom center;
  transform: scaleY(0.08);
  animation: lineRise 1.2s ease-in-out infinite;
}

/* Make every 3rd and 4th bar start orange to break monotony */
.loader-line:nth-child(3n)   { animation-duration: 1.1s; }
.loader-line:nth-child(4n+1) { animation-duration: 1.35s; }

/* Pricing */


/* Force dark background to cover entire pricing section including cards */
.career__top {
  background-color: #121212 !important;
  padding-bottom: 100px;
}

/* Make everything below the pricing cards (footer area) black */
.footer__area,
.footer__btm,
.footer__top,
.footer__inner,
.native-scroll-wrapper,
.native-scroll-content,
body {
  background-color: #121212 !important;
}

/* Footer text & links — keep white/light on black bg */
.footer__widget p,
.footer__widget-title,
.footer__link li a,
.footer__contact li,
.footer__contact li a,
.footer__copyright p,
.project-title,
.contact-time,
.contact-day {
  color: #ffffff !important;
}

.footer__link li a:hover,
.footer__contact li a:hover {
  color: #e74c0a !important;
}

/* Subscribe input on dark bg */
.footer__subscribe form input {
  background: rgba(255,255,255,0.08) !important;
  border-color: rgba(255,255,255,0.2) !important;
  color: #fff !important;
}
.footer__subscribe form input::placeholder {
  color: rgba(255,255,255,0.45) !important;
}

.pricing-tabs {
  padding-inline: clamp(1rem, 5vw, 10rem);
}
.pricing-tabs ul.nav li {
  flex: 1;
}

.pricing-tabs ul.nav::-webkit-scrollbar {
  width: 6px;
  height: 0em;
  background: #fafafa;
}

.pricing-tabs li button {
  width: 100%;
  padding: 1rem;
}

.pricing-tabs .nav-pills {
  --bs-nav-pills-link-active-bg: rgb(33, 37, 41);
}

/* Active tab — orange bottom border + brighter bg */
.pricing-tabs .nav-pills .nav-link.active {
  background: rgb(33, 37, 41) !important;
  border-bottom: 3px solid var(--primary, #e74c0a) !important;
  color: #ffffff !important;
  font-weight: 600;
}

.pricing-tabs li .nav-link {
  color: rgba(255, 255, 255, 0.6);
  border-bottom: 3px solid transparent;
  transition: all 0.25s ease;
}

.pricing-tabs li .nav-link:hover {
  color: white;
  background: rgb(33, 37, 41);
  border-bottom: 3px solid rgba(231, 76, 10, 0.4);
}

/* Pricing Slider - show 3 cards, mouse-drag to reveal 4th */
.pricingSlider {
  width: 100%;
  overflow: hidden;
  cursor: grab;
  padding-bottom: 20px;
}

.pricingSlider:active {
  cursor: grabbing;
}

.pricingSlider .swiper-wrapper {
  display: flex;
  align-items: stretch;
}

.pricingSlider .swiper-slide {
  /* 3 cards visible: (100% - 2 gaps) / 3 */
  width: calc((100% - 48px) / 3);
  flex-shrink: 0;
  height: auto;
  box-sizing: border-box;
}

.pricingSlider .swiper-slide > div {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* Scrollbar styling */
.pricingSlider .swiper-scrollbar {
  background: rgba(255,255,255,0.1);
  height: 4px;
  border-radius: 2px;
  margin-top: 16px;
}
.pricingSlider .swiper-scrollbar-drag {
  background: var(--primary, #e74c0a);
  border-radius: 2px;
}

/* List items */
.list-items-content ul {
  padding-left: clamp(1rem, 5vw, 2.5rem);
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: clamp(1rem, 5vw, 2rem);
  height: 200px;
  overflow-x: hidden;
  overflow-y: auto;
  margin-bottom: clamp(1rem, 5vw, 2rem);
  scroll-behavior: smooth;

  /* Custom scrollbar — thin white track + orange thumb */
  scrollbar-width: thin;
  scrollbar-color: var(--primary, #e74c0a) rgba(255, 255, 255, 0.15);
}

/* Webkit (Chrome, Edge, Safari) */
.list-items-content ul::-webkit-scrollbar {
  width: 2px;
}
.list-items-content ul::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.15);
  border-radius: 10px;
}
.list-items-content ul::-webkit-scrollbar-thumb {
  background: var(--primary, #e74c0a);
  border-radius: 10px;
  min-height: 30px;
}
.list-items-content ul li {
  color: white;
  font-weight: 400;
  position: relative;
}
.list-items-content ul li::before {
  content: "";
  width: 7px;
  height: 7px;
  background: var(--primary);
  position: absolute;
  top: 10px;
  left: -1rem;
  border-radius: 50%;
}

.tab-content .btn-primary {
  --bs-btn-bg: var(--primary);
  --bs-btn-border-color: var(--primary);
  --bs-btn-active-border-color: var(--primary);
  --bs-btn-hover-bg: var(--primary);
  --bs-btn-hover-border-color: var(--primary);
  padding: 0.5rem 2rem;
  transition: 0.3s ease-in-out;
}
.tab-content .btn-primary:hover {
  letter-spacing: 0.5px;
}

/* Best Seller badge */
.best-seller {
  position: relative;
}
.best-seller::before {
  content: "Best Seller";
  position: absolute;
  left: 50%;
  right: 0;
  top: -15px;
  transform: translateX(-50%);
  margin: 0 auto;
  color: #ffffff;
  background-color: var(--primary);
  font-size: 16px;
  border-radius: 30px;
  display: inline-block;
  padding: 4px 10px;
  text-align: center;
  white-space: nowrap;
}

/* Responsive */
@media (max-width: 991px) {
  .pricingSlider .swiper-slide {
    width: calc((100% - 24px) / 2);
  }
}
@media (max-width: 575px) {
  .pricingSlider .swiper-slide {
    width: 85%;
  }
}
