@charset "UTF-8";
.truncate-1-custom {
  -webkit-line-clamp: 1;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ==========================================================================
   WISTECH LIVE ANIMATIONS, LIGHT MODE & UI BLOCKS (v3.1)
   ========================================================================== */
@keyframes wtsGradientShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
@keyframes wtsRadarSpin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes wtsBorderSweep {
  0% {
    left: -120%;
  }
  100% {
    left: 120%;
  }
}
@keyframes wtsCtaDrift {
  0%, 100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(22px, -18px, 0) scale(1.08);
  }
}
.wts-section {
  position: relative;
  color: var(--wts-text);
  background: var(--wts-section-bg);
}

.wts-hero-section {
  min-height: 85vh;
  display: flex;
  align-items: center;
}

.wts-slider-section {
  min-height: 800px;
  display: flex;
  align-items: center;
  padding: 100px 0;
}

.wts-title,
.wts-card-title,
.wts-mini-title,
.wts-cta-title {
  font-family: var(--font-display, "Space Grotesk", sans-serif);
}

.wts-title {
  color: var(--wts-heading) !important;
  line-height: 1.15;
  text-shadow: var(--wts-heading-shadow);
}

.wts-subtitle,
.wts-accent-cyan {
  color: var(--wts-cyan) !important;
}

.wts-desc {
  color: var(--wts-muted) !important;
  font-size: 19px;
  line-height: 1.7;
  max-width: 620px;
}

.wts-services-section .wts-desc {
  max-width: none;
  line-height: 1.6;
}

.wts-badge-wrap {
  background: var(--wts-badge-bg) !important;
  border: 1px solid var(--wts-badge-border) !important;
  backdrop-filter: blur(10px);
}

.wts-badge-dot {
  width: 8px;
  height: 8px;
  background: var(--wts-badge-color);
  box-shadow: 0 0 10px var(--wts-badge-color);
  animation: wtsPulseDot 2s infinite;
}

.wts-badge-text {
  color: var(--wts-badge-color) !important;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.wts-badge-cyan {
  --wts-badge-color: var(--wts-cyan);
}

.wts-btn-primary,
.navbar .btn,
.header .btn-gradient,
.header .btn-request-quote,
.header-wrapper .btn,
.btn-request-quote {
  background: var(--wts-gradient) !important;
  color: var(--wts-button-text) !important;
  border: 0 !important;
  font-size: 16px;
  text-decoration: none !important;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
}

.wts-btn-primary:hover,
.navbar .btn:hover,
.header .btn-gradient:hover,
.header .btn-request-quote:hover,
.header-wrapper .btn:hover,
.btn-request-quote:hover {
  color: var(--wts-button-text) !important;
  transform: translateY(-3px) scale(1.03);
  box-shadow: var(--wts-glow-strong) !important;
}

.wts-btn-secondary {
  background: var(--wts-secondary-btn-bg) !important;
  color: var(--wts-heading) !important;
  border: 1px solid var(--wts-badge-border) !important;
  font-size: 16px;
  text-decoration: none !important;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.wts-btn-secondary:hover {
  background: var(--wts-secondary-btn-hover-bg) !important;
  color: var(--wts-mint) !important;
  transform: translateY(-3px);
  box-shadow: var(--wts-glow-soft);
}

.wts-project-link-card {
  position: relative;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(118, 255, 209, 0.16);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  overflow: hidden;
  transition: all 0.28s ease;
}

.wts-project-link-card::before {
  content: "";
  position: absolute;
  inset: auto 16px 12px 16px;
  height: 1px;
  background: linear-gradient(90deg, var(--wts-mint), rgba(106, 174, 255, 0.45));
  opacity: 0.35;
  transform: scaleX(0.72);
  transform-origin: left;
  transition: all 0.28s ease;
}

.wts-project-link-card::after {
  content: "↗";
  position: absolute;
  top: 14px;
  right: 16px;
  color: var(--wts-mint);
  opacity: 0;
  transform: translate(-5px, 5px);
  transition: all 0.28s ease;
}

.wts-project-link-card:hover {
  border-color: rgba(0, 255, 159, 0.54);
  background: rgba(0, 255, 159, 0.1);
  transform: translateY(-5px);
  box-shadow: 0 18px 34px rgba(0, 255, 159, 0.14);
}

.wts-project-link-card:hover::before,
.wts-project-link-card:focus-visible::before {
  opacity: 1;
  transform: scaleX(1);
}

.wts-project-link-card:focus-visible {
  border-color: rgba(0, 255, 159, 0.74);
  box-shadow: 0 0 0 3px rgba(0, 255, 159, 0.18), 0 18px 34px rgba(0, 255, 159, 0.14);
  outline: 0;
}

.wts-project-link-card:hover::after {
  opacity: 1;
  transform: translate(0, 0);
}

.wts-ambient-glow,
.wts-grid-pattern {
  pointer-events: none;
}

.wts-grid-pattern {
  background-image: var(--wts-grid-pattern);
  background-size: 50px 50px;
}

.wts-glow-orb-1,
.wts-glow-orb-2,
.wts-orb-left,
.wts-orb-right,
.wts-orb-lg,
.wts-orb-xl,
.wts-orb-md {
  border-radius: 50%;
  filter: blur(50px);
}

.wts-glow-orb-1 {
  background: var(--wts-orb-primary);
  animation: wtsFloat 12s ease-in-out infinite alternate;
}

.wts-glow-orb-2 {
  background: var(--wts-orb-secondary);
  animation: wtsFloat 15s ease-in-out infinite alternate-reverse;
}

.wts-orb-xl {
  top: -15%;
  right: -10%;
  width: 700px;
  height: 700px;
}

.wts-orb-lg {
  top: -10%;
  right: -5%;
  width: 600px;
  height: 600px;
}

.wts-orb-md {
  bottom: -15%;
  left: -10%;
  width: 500px;
  height: 500px;
}

.wts-orb-left {
  top: 20%;
  left: 5%;
  width: 500px;
  height: 500px;
}

.wts-orb-right {
  bottom: 10%;
  right: 5%;
  width: 500px;
  height: 500px;
}

.wts-glass-panel,
.wts-service-card,
.wts-stat-card {
  background: var(--wts-card-bg) !important;
  border: 1px solid var(--wts-card-border) !important;
  backdrop-filter: blur(20px);
  box-shadow: var(--wts-card-shadow) !important;
}

.wts-float-card {
  animation: wtsHoverCard 6s ease-in-out infinite;
}

.wts-panel-border {
  border-color: var(--wts-panel-border) !important;
}

.wts-window-dot {
  width: 12px;
  height: 12px;
}

.wts-window-dot-red {
  background: #ff5f56;
}

.wts-window-dot-yellow {
  background: #ffbd2e;
}

.wts-window-dot-green {
  background: #27c93f;
}

.wts-status-pill {
  background: var(--wts-status-bg);
  border: 1px solid var(--wts-badge-border);
}

.wts-status-dot {
  width: 8px;
  height: 8px;
  background: var(--wts-mint) !important;
}

.wts-status-text {
  color: var(--wts-mint);
  font-size: 11px;
  letter-spacing: 1px;
}

.wts-panel-label,
.wts-card-desc,
.wts-mini-text {
  color: var(--wts-muted) !important;
}

.wts-panel-label {
  font-size: 14px;
  font-weight: 600;
}

.wts-panel-value,
.wts-accent-mint {
  color: var(--wts-mint) !important;
}

.wts-progress {
  height: 12px;
  background: var(--wts-mini-bg) !important;
  border: 1px solid var(--wts-panel-border);
}

.wts-progress-bar,
.wts-card-top-glow {
  background: var(--wts-gradient) !important;
  box-shadow: 0 0 10px rgba(0, 255, 159, 0.7);
}

.wts-mini-card {
  background: var(--wts-mini-bg) !important;
  border: 1px solid var(--wts-panel-border) !important;
  transition: all 0.3s ease;
}

.wts-mini-title,
.wts-card-title {
  color: var(--wts-heading) !important;
  font-weight: 700;
}

.wts-mini-title {
  font-size: 16px;
}

.wts-mini-text {
  font-size: 12px;
}

.wts-card-title {
  font-size: 20px;
}

.wts-card-desc {
  font-size: 15px;
  line-height: 1.6;
}

.wts-card-top-glow {
  height: 3px;
  opacity: 0.95;
}

.wts-service-icon {
  width: 70px;
  height: 70px;
  background: var(--wts-icon-bg) !important;
  border: 1px solid var(--wts-badge-border) !important;
  color: var(--wts-mint) !important;
  box-shadow: var(--wts-icon-glow) !important;
  transition: all 0.45s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.wts-card-btn {
  background: var(--wts-card-btn-bg) !important;
  border: 1px solid var(--wts-mint) !important;
  color: var(--wts-mint) !important;
  text-decoration: none !important;
  font-size: 14px;
  letter-spacing: 0.5px;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.wts-service-card,
.wts-stat-card {
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
  overflow: hidden !important;
}

.wts-service-card::after,
.wts-stat-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 80%;
  height: 100%;
  background: linear-gradient(90deg, transparent, var(--wts-border-sweep), transparent);
  pointer-events: none;
}

.wts-service-card:hover,
.wts-stat-card:hover {
  transform: translateY(-14px) scale(1.015) !important;
  border-color: var(--wts-mint) !important;
  box-shadow: var(--wts-card-hover-shadow) !important;
}

.wts-service-card:hover::after,
.wts-stat-card:hover::after {
  animation: wtsBorderSweep 0.85s ease forwards;
}

.wts-service-card:hover .wts-service-icon {
  background: var(--wts-gradient) !important;
  color: var(--wts-button-text) !important;
  transform: rotate(360deg) scale(1.08) !important;
  box-shadow: var(--wts-glow-strong) !important;
}

.wts-service-card:hover .wts-card-btn {
  background: var(--wts-mint) !important;
  color: var(--wts-button-text) !important;
  box-shadow: var(--wts-glow-soft) !important;
  transform: translateX(5px);
}

.wts-stat-number {
  background: var(--wts-gradient);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: var(--font-display, "Space Grotesk", sans-serif);
  animation: wtsGradientShift 5s ease infinite;
}

.wts-radar-icon {
  width: 90px;
  height: 90px;
  position: relative;
  background: var(--wts-radar-bg) !important;
  border: 2px solid var(--wts-mint);
  color: var(--wts-mint);
  box-shadow: var(--wts-glow-soft) !important;
}

.wts-radar-icon::before,
.wts-radar-icon::after {
  content: "";
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  border: 1px dashed var(--wts-badge-border);
  animation: wtsRadarSpin 8s linear infinite;
}

.wts-radar-icon::after {
  inset: -18px;
  animation-duration: 13s;
  animation-direction: reverse;
}

.wts-cta-panel {
  background: var(--wts-gradient) !important;
  background-size: 200% 200% !important;
  animation: wtsGradientShift 9s ease infinite;
  box-shadow: 0 25px 60px rgba(0, 255, 159, 0.25) !important;
}

.wts-cta-orb-1,
.wts-cta-orb-2 {
  border-radius: 50%;
  animation: wtsCtaDrift 12s ease-in-out infinite alternate;
}

.wts-cta-orb-1 {
  width: 500px;
  height: 500px;
  background: rgba(255, 255, 255, 0.3);
}

.wts-cta-orb-2 {
  width: 400px;
  height: 400px;
  background: rgba(1, 22, 64, 0.15);
  animation-direction: alternate-reverse;
}

.wts-cta-icon {
  color: rgba(1, 22, 64, 0.08);
  font-size: 180px !important;
  transform: rotate(-15deg);
}

.wts-cta-title {
  color: #011640 !important;
  text-shadow: 0 2px 10px rgba(255, 255, 255, 0.4);
}

.wts-cta-desc {
  color: #080828 !important;
  font-size: 20px;
  max-width: 650px;
  line-height: 1.6;
}

.wts-cta-btn {
  background: #011640 !important;
  color: var(--wts-mint) !important;
  font-size: 17px;
  text-decoration: none !important;
  letter-spacing: 0.5px;
  border: 2px solid #011640 !important;
  box-shadow: 0 15px 35px rgba(1, 22, 64, 0.4) !important;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.wts-cta-btn:hover {
  color: #011640 !important;
  background: #ffffff !important;
  transform: translateY(-4px);
}

[data-bs-theme=dark] {
  --wts-section-bg: radial-gradient(circle at 12% 8%, rgba(0, 255, 159, 0.13), transparent 32%), radial-gradient(circle at 86% 18%, rgba(5, 175, 242, 0.16), transparent 34%), linear-gradient(135deg, #0c1742 0%, #081a35 46%, #0b1230 100%);
  --wts-heading: #ffffff;
  --wts-text: #f8fafc;
  --wts-muted: #dbeafe;
  --wts-card-bg: linear-gradient(145deg, rgba(17, 42, 86, 0.88), rgba(8, 27, 62, 0.78));
  --wts-card-border: rgba(80, 255, 190, 0.42);
  --wts-card-shadow: 0 18px 42px rgba(0, 0, 0, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  --wts-card-hover-shadow: 0 28px 70px rgba(0, 255, 159, 0.32), 0 0 46px rgba(5, 175, 242, 0.30), inset 0 1px 0 rgba(255, 255, 255, 0.16);
  --wts-heading-shadow: 0 8px 26px rgba(5, 175, 242, 0.22);
  --wts-badge-bg: rgba(0, 255, 159, 0.18);
  --wts-badge-border: rgba(0, 255, 159, 0.62);
  --wts-badge-color: var(--wts-mint);
  --wts-grid-pattern: linear-gradient(to right, rgba(0, 255, 159, 0.075) 1px, transparent 1px), linear-gradient(to bottom, rgba(5, 175, 242, 0.075) 1px, transparent 1px);
  --wts-orb-primary: radial-gradient(circle, rgba(0, 255, 159, 0.30) 0%, rgba(5, 175, 242, 0.10) 48%, transparent 72%);
  --wts-orb-secondary: radial-gradient(circle, rgba(5, 175, 242, 0.26) 0%, rgba(0, 255, 159, 0.08) 50%, transparent 72%);
  --wts-secondary-btn-bg: rgba(255, 255, 255, 0.10);
  --wts-secondary-btn-hover-bg: rgba(0, 255, 159, 0.20);
  --wts-panel-border: rgba(255, 255, 255, 0.18);
  --wts-status-bg: rgba(0, 255, 159, 0.22);
  --wts-mini-bg: rgba(255, 255, 255, 0.085);
  --wts-icon-bg: rgba(0, 255, 159, 0.22);
  --wts-card-btn-bg: linear-gradient(135deg, rgba(0, 255, 159, 0.24) 0%, rgba(5, 175, 242, 0.22) 100%);
  --wts-radar-bg: linear-gradient(135deg, rgba(0, 255, 159, 0.30) 0%, rgba(5, 175, 242, 0.26) 100%);
  --wts-border-sweep: rgba(0, 255, 159, 0.22);
  --wts-icon-glow: 0 0 28px rgba(0, 255, 159, 0.34);
  --wts-glow-soft: 0 0 26px rgba(0, 255, 159, 0.52);
  --wts-glow-strong: 0 12px 38px rgba(0, 255, 159, 0.65), 0 0 28px rgba(5, 175, 242, 0.58);
  --wts-button-text: #011640;
}

[data-bs-theme=light],
:root:not([data-bs-theme=dark]) {
  --wts-section-bg: radial-gradient(circle at 12% 10%, rgba(0, 255, 159, 0.18), transparent 28%), radial-gradient(circle at 86% 18%, rgba(5, 175, 242, 0.16), transparent 32%), linear-gradient(135deg, #ffffff 0%, #eef9ff 46%, #f6fffb 100%);
  --wts-heading: #061334;
  --wts-text: #172033;
  --wts-muted: #334155;
  --wts-card-bg: linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(239, 250, 255, 0.86));
  --wts-card-border: rgba(5, 175, 242, 0.34);
  --wts-card-shadow: 0 18px 42px rgba(1, 22, 64, 0.09), inset 0 1px 0 rgba(255, 255, 255, 0.9);
  --wts-card-hover-shadow: 0 28px 62px rgba(5, 175, 242, 0.22), 0 0 34px rgba(0, 255, 159, 0.22);
  --wts-heading-shadow: 0 10px 30px rgba(1, 22, 64, 0.10);
  --wts-badge-bg: rgba(5, 175, 242, 0.13);
  --wts-badge-border: rgba(5, 175, 242, 0.46);
  --wts-badge-color: var(--wts-cyan);
  --wts-grid-pattern: linear-gradient(to right, rgba(5, 175, 242, 0.08) 1px, transparent 1px), linear-gradient(to bottom, rgba(0, 255, 159, 0.08) 1px, transparent 1px);
  --wts-orb-primary: radial-gradient(circle, rgba(0, 255, 159, 0.18) 0%, rgba(5, 175, 242, 0.08) 50%, transparent 70%);
  --wts-orb-secondary: radial-gradient(circle, rgba(5, 175, 242, 0.16) 0%, rgba(0, 255, 159, 0.06) 50%, transparent 70%);
  --wts-secondary-btn-bg: rgba(255, 255, 255, 0.72);
  --wts-secondary-btn-hover-bg: rgba(5, 175, 242, 0.10);
  --wts-panel-border: rgba(1, 22, 64, 0.10);
  --wts-status-bg: rgba(5, 175, 242, 0.10);
  --wts-mini-bg: rgba(1, 22, 64, 0.04);
  --wts-icon-bg: rgba(5, 175, 242, 0.10);
  --wts-card-btn-bg: linear-gradient(135deg, rgba(0, 255, 159, 0.12) 0%, rgba(5, 175, 242, 0.12) 100%);
  --wts-radar-bg: linear-gradient(135deg, rgba(0, 255, 159, 0.16) 0%, rgba(5, 175, 242, 0.14) 100%);
  --wts-border-sweep: rgba(5, 175, 242, 0.16);
  --wts-icon-glow: 0 0 20px rgba(5, 175, 242, 0.16);
  --wts-glow-soft: 0 0 20px rgba(5, 175, 242, 0.28);
  --wts-glow-strong: 0 12px 35px rgba(5, 175, 242, 0.32), 0 0 20px rgba(0, 255, 159, 0.28);
  --wts-button-text: #011640;
}

@media (max-width: 991px) {
  .wts-slider-section {
    min-height: auto;
    padding: 80px 0;
  }
  .wts-hero-section {
    min-height: auto;
  }
}
.truncate-2-custom {
  -webkit-line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.truncate-3-custom {
  -webkit-line-clamp: 3;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.show-admin-bar .mobile-header-wrapper-style {
  top: 40px;
}

[data-bs-theme=dark] .logo-white {
  display: none;
}
[data-bs-theme=dark] .page-item.active .page-link {
  background-color: var(--primary-color-dark);
}

[data-bs-theme=light] .logo-dark {
  display: none;
}

.not-found-page img {
  width: 100%;
  max-width: calc(100vh - 29rem);
}

.section-footer .social-icons svg {
  width: 16px;
  height: 16px;
}

.border-muted {
  border-color: var(--tc-system-muted) !important;
}

.list-unstyled {
  list-style-type: none !important;
}

.card-service .service-icon {
  width: 48px;
  height: 48px;
}

.hero-banner .btn {
  display: inline-flex;
  gap: 0.25rem;
  align-items: center;
}
.hero-banner .btn svg {
  width: 20px;
  height: 20px;
}

h2 span {
  font-weight: var(--tc-fw-black);
}

.features-1 .translate-middle-y {
  transform: translateY(-22%) !important;
}
.features-1 .feature-item .icon svg {
  width: 48px;
  height: 48px;
  color: var(--primary-color);
  stroke-width: 1;
}

@media (max-width: 767px) {
  .section-padding {
    padding: 2rem 0;
  }
}

.navbar-nav .nav-link svg {
  width: 24px;
  height: 24px;
  margin-inline-end: 0.5rem !important;
}

.fob-comment-title {
  font-size: 38px !important;
  border-bottom: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color);
  padding-bottom: 1.5rem;
}
.fob-comment-form-section {
  margin: 5rem 0 !important;
}
.fob-comment-form-note {
  font-size: 16px !important;
  margin-bottom: 1.5rem !important;
  color: var(--tc-neutral-600);
}
.fob-comment-form .form-label {
  font-size: 16px !important;
  color: var(--tc-neutral-900);
}
.fob-comment-form .form-control {
  background: var(--tc-system-white);
  min-height: 60px;
  color: var(--tc-neutral-900);
}
.fob-comment-form .form-control:focus {
  border-color: var(--primary-color);
}
.fob-comment-form .form-check-label {
  color: var(--tc-neutral-900);
}
.fob-comment-item-author {
  font-size: var(--tc-fs-6) !important;
  color: var(--tc-neutral-900) !important;
}

.ck-content h5 {
  margin-bottom: 1rem !important;
  margin-top: 2rem !important;
}
.ck-content h5:first-child {
  margin-top: 0 !important;
}
.ck-content blockquote {
  overflow: initial;
  margin-inline-start: initial;
  margin-inline-end: initial;
  font-style: initial;
  border-inline-start-width: initial;
  padding: 0 4rem !important;
}

.page-item .page-link {
  width: 3.5rem;
  height: 3.5rem;
  line-height: 3.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: var(--tc-fs-5);
  background-color: var(--tc-neutral-100);
  color: var(--tc-neutral-900);
  border-radius: 50% !important;
  font-weight: 700;
  border: 0;
}
.page-item.active .page-link {
  background-color: var(--primary-color);
  color: var(--tc-system-white);
}

.contact-form .input-group {
  flex-direction: column;
}
.contact-form .input-group .form-control {
  width: 100%;
}
.contact-form .input-group .form-check-input {
  margin-inline-start: -1.5em !important;
  border-radius: 0.25em !important;
}

label.required::after {
  content: "*";
  color: var(--bs-danger);
  margin-inline-start: 0.25rem;
}

.section-team-detail-1 .team-detail-avatar {
  min-width: 374px;
}
.section-team-detail-1 .team-detail-contact svg {
  width: 20px;
  height: 20px;
  color: var(--tc-theme-dark-secondary);
}

.shortcode-our-mission .tab-item {
  background-color: var(--tab-bg-color) !important;
  color: var(--tab-text-color) !important;
}
.shortcode-our-mission .tab-item h5, .shortcode-our-mission .tab-item p {
  color: var(--tab-text-color) !important;
}

.shortcode-contact-form-style-2 .contact-form-row .contact-column-6, .shortcode-contact-form-style-2 .contact-form-row .contact-column-12 {
  margin-bottom: 1rem;
}

.shortcode-contact-form {
  background-image: var(--shortcode-background-image) !important;
  background-repeat: no-repeat;
  background-size: cover;
}

.header-top {
  --tc-neutral-900: var(--header-top-text-color) !important;
}
.header-top .bg-primary-soft {
  background-color: var(--header-top-background-color) !important;
}
.header-top svg.icon {
  color: var(--header-top-text-color) !important;
}

footer .section-footer .container-fluid {
  background-color: var(--footer-background-color) !important;
}
footer .section-footer .text-white {
  color: var(--footer-text-color) !important;
}
footer .section-footer h1, footer .section-footer h2, footer .section-footer h3, footer .section-footer h4, footer .section-footer h5, footer .section-footer h6 {
  color: var(--footer-heading-color) !important;
}
footer .section-footer h1.text-white, footer .section-footer h2.text-white, footer .section-footer h3.text-white, footer .section-footer h4.text-white, footer .section-footer h5.text-white, footer .section-footer h6.text-white {
  color: var(--footer-heading-color) !important;
}

[data-bs-theme=light] .shortcode-contact-form, [data-bs-theme=light] .shortcode-information-block, [data-bs-theme=light] .shortcode-services, [data-bs-theme=light] .shortcode-site-statistics, [data-bs-theme=light] .shortcode-partners, [data-bs-theme=light] .shortcode-blog-posts, [data-bs-theme=light] .shortcode-work-process {
  background-color: var(--shortcode-background-color) !important;
}
[data-bs-theme=light] .shortcode-services-style-4.bg-linear-3 {
  --shortcode-background-color: linear-gradient(180deg, #eeebf0 0%, #ffffff 100%);
  --tc-linear-3: var(--shortcode-background-color) !important;
}
[data-bs-theme=light] .shortcode-site-statistics-style-2 {
  --shortcode-background-color: #6d4df2;
}
[data-bs-theme=light] .widget-newsletter-style-2 {
  background-color: var(--widget-background-color) !important;
}
[data-bs-theme=light] .shortcode-platforms-featured {
  --shortcode-background-color: #f7f4ff;
}
[data-bs-theme=light] .shortcode-platforms-featured .bg-1 {
  background-color: var(--shortcode-background-color) !important;
}
[data-bs-theme=light] .widget-newsletter-style-2 .bg-primary-soft, [data-bs-theme=light] .shortcode-blog-posts-style-2 .bg-primary-soft {
  background-color: #ffffff !important;
}
[data-bs-theme=light] .language-switcher-wrapper .dropdown-menu .dropdown-item {
  color: #000000 !important;
}

.widget-newsletter-style-2 {
  background: var(--widget-background-image) !important;
}

.shortcode-hero-banner-style-2 .socials ul li a .icon {
  width: 16px;
  height: 16px;
}

.shortcode-teams-style-5 .tab-item .icon {
  width: 60px;
}

.shortcode-instruction-steps .feature-item svg.icon {
  width: 48px;
  height: 48px;
}

.shortcode-pricing-plans-style-2 ul.carouselTicker__list, .shortcode-hero-banner-style-3 ul.carouselTicker__list {
  list-style-type: none !important;
}

.shortcode-contact-block {
  background: var(--shortcode-background-image) !important;
}

.shortcode-newsletter .subscribe-form {
  position: relative;
}
.shortcode-newsletter .subscribe-form input[name=email].custom-input {
  height: 90px;
  border-radius: var(--bs-border-radius-pill) !important;
}
.shortcode-newsletter .subscribe-form button {
  position: absolute;
  right: 10px;
  z-index: 10;
  top: 40%;
  transform: translateY(-50%);
}
.shortcode-newsletter .subscribe-form .invalid-feedback {
  position: absolute;
  bottom: -20px;
}

.shortcode-call-to-action h6 b {
  color: #ffffff;
}

.header-top {
  z-index: 1000;
}
.header-top svg.icon {
  width: 16px;
}

.language-switcher-wrapper button {
  border: none;
  background: transparent;
}
.language-switcher-wrapper .dropdown-menu {
  padding: 1rem !important;
}

.shortcode-partners-style-3 h5 {
  margin-bottom: 2rem !important;
}
.shortcode-partners-style-3 .partners-slider-start {
  margin-bottom: 3rem;
}

.shortcode-partners-style-1 .slick-slider {
  margin: 0 -15px;
}
.shortcode-partners-style-1 .slick-slide {
  padding: 10px;
  text-align: center;
  margin-right: 15px;
  margin-left: 15px;
}

.shortcode-platforms-featured-style-1 + .shortcode-platforms-featured-style-2 .section-padding {
  padding-top: 0 !important;
}

.tp-footer-border {
  border-bottom: 1px solid #303234;
}

.shortcode-partners-style-4 .slick-slider {
  margin: 0 -10px;
}
.shortcode-partners-style-4 .slick-slide {
  padding: 5px;
  text-align: center;
  margin-right: 10px;
  margin-left: 10px;
}
.shortcode-partners-style-4 .partner-item img {
  filter: invert(1);
}

::selection {
  color: var(--select-text-color);
}

.shortcode-features-style-7 + .shortcode-blog-posts-style-2 {
  padding-top: 0 !important;
}

.contact-form-widget .contact-form label {
  display: none;
}
.contact-form-widget .contact-form .contact-form-row {
  flex-wrap: wrap;
}
.contact-form-widget .contact-form .contact-form-row .contact-column-6 {
  width: 100%;
}
.contact-form-widget .contact-form .invalid-feedback {
  margin-bottom: 0.5rem;
}

.quotation-form-widget .invalid-feedback {
  margin-bottom: 0.5rem;
}

.section-hero-5 .img-pull .backdrop-filter.p-8.rounded-3 {
  min-height: 400px;
}

.navbar-light .navbar-nav .nav-item .nav-link:hover, .navbar-light .navbar-nav .nav-item .nav-link.active {
  color: var(--primary-color) !important;
}

.swiper.slider-two h3 {
  font-size: var(--shortcode-slider-title-font-size) !important;
}

@media (max-width: 768px) {
  .py-90 {
    padding: 20px 0;
  }
  .py-188 {
    padding: 50px 0;
  }
}
.input-group.focus .border {
  border-color: var(--tc-theme-primary) !important;
}

.navbar.navbar-expand-lg .btn {
  padding: 10px 25px;
}

/* ==========================================================================
   WISTECH SOLUTIONS UNIFIED DESIGN SYSTEM v5.0
   Replaces v2.0 / v3.0 / v3.1 / v4.0 — single source of truth
   ========================================================================== */
/* ---------------------------------------------------------------------------
   1. COLOR TOKEN OVERRIDE — Final Authoritative Wistech Brand Tokens
   --------------------------------------------------------------------------- */
:root,
[data-bs-theme=dark],
[data-bs-theme=light] {
  --wts-mint: #00ff9f !important;
  --wts-cyan: #05aff2 !important;
  --wts-navy: #011640 !important;
  --wts-ink: #061334 !important;
  --wts-gradient: linear-gradient(135deg, #00ff9f 0%, #05aff2 100%) !important;
}

/* ---------------------------------------------------------------------------
   2. DARK MODE VARIABLES — Rich Navy, NOT Pure Black
   --------------------------------------------------------------------------- */
[data-bs-theme=dark] {
  --wts-section-bg:
      radial-gradient(circle at 50% -10%, rgba(91, 78, 255, 0.18), transparent 34%),
      radial-gradient(circle at 12% 12%, rgba(0, 255, 159, 0.12), transparent 30%),
      radial-gradient(circle at 88% 16%, rgba(5, 175, 242, 0.14), transparent 32%),
      linear-gradient(180deg, #060d24 0%, #081a3a 48%, #060d24 100%);
  --wts-heading: #ffffff;
  --wts-text: #e8f0ff;
  --wts-muted: #8ba4c8;
  --wts-card-bg: linear-gradient(145deg, rgba(8, 18, 50, 0.85), rgba(6, 14, 42, 0.78));
  --wts-card-border: rgba(0, 255, 159, 0.22);
  --wts-card-shadow: 0 24px 70px rgba(0, 0, 0, 0.32), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  --wts-card-hover-shadow:
      0 34px 90px rgba(0, 255, 159, 0.26),
      0 0 52px rgba(5, 175, 242, 0.24),
      inset 0 1px 0 rgba(255, 255, 255, 0.14);
  --wts-heading-shadow: 0 8px 26px rgba(5, 175, 242, 0.22);
  --wts-badge-bg: rgba(0, 255, 159, 0.16);
  --wts-badge-border: rgba(0, 255, 159, 0.55);
  --wts-badge-color: var(--wts-mint);
  --wts-grid-pattern:
      linear-gradient(to right, rgba(0, 255, 159, 0.06) 1px, transparent 1px),
      linear-gradient(to bottom, rgba(5, 175, 242, 0.06) 1px, transparent 1px);
  --wts-orb-primary: radial-gradient(circle, rgba(0, 255, 159, 0.28) 0%, rgba(5, 175, 242, 0.10) 48%, transparent 72%);
  --wts-orb-secondary: radial-gradient(circle, rgba(5, 175, 242, 0.24) 0%, rgba(0, 255, 159, 0.08) 50%, transparent 72%);
  --wts-secondary-btn-bg: rgba(255, 255, 255, 0.08);
  --wts-secondary-btn-hover-bg: rgba(0, 255, 159, 0.18);
  --wts-panel-border: rgba(255, 255, 255, 0.14);
  --wts-status-bg: rgba(0, 255, 159, 0.20);
  --wts-mini-bg: rgba(255, 255, 255, 0.07);
  --wts-icon-bg: rgba(0, 255, 159, 0.20);
  --wts-card-btn-bg: linear-gradient(135deg, rgba(0, 255, 159, 0.22) 0%, rgba(5, 175, 242, 0.20) 100%);
  --wts-radar-bg: linear-gradient(135deg, rgba(0, 255, 159, 0.28) 0%, rgba(5, 175, 242, 0.24) 100%);
  --wts-border-sweep: rgba(0, 255, 159, 0.20);
  --wts-icon-glow: 0 0 28px rgba(0, 255, 159, 0.32);
  --wts-glow-soft: 0 0 26px rgba(0, 255, 159, 0.48);
  --wts-glow-strong: 0 12px 38px rgba(0, 255, 159, 0.60), 0 0 28px rgba(5, 175, 242, 0.52);
  --wts-button-text: #011640;
}

/* ---------------------------------------------------------------------------
   3. LIGHT MODE VARIABLES — Clean White / Blue-Slate
   --------------------------------------------------------------------------- */
[data-bs-theme=light],
:root:not([data-bs-theme=dark]) {
  --wts-section-bg:
      radial-gradient(circle at 50% -10%, rgba(5, 175, 242, 0.14), transparent 32%),
      radial-gradient(circle at 10% 10%, rgba(0, 255, 159, 0.14), transparent 28%),
      linear-gradient(180deg, #ffffff 0%, #f2fbff 48%, #f7fffb 100%);
  --wts-heading: #061334;
  --wts-text: #14213d;
  --wts-muted: #475569;
  --wts-card-bg: linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(239, 250, 255, 0.90));
  --wts-card-border: rgba(5, 175, 242, 0.24);
  --wts-card-shadow: 0 24px 60px rgba(1, 22, 64, 0.10), inset 0 1px 0 rgba(255, 255, 255, 0.95);
  --wts-card-hover-shadow: 0 34px 80px rgba(5, 175, 242, 0.20), 0 0 36px rgba(0, 255, 159, 0.16);
  --wts-heading-shadow: 0 10px 30px rgba(1, 22, 64, 0.10);
  --wts-badge-bg: rgba(5, 175, 242, 0.12);
  --wts-badge-border: rgba(5, 175, 242, 0.42);
  --wts-badge-color: var(--wts-cyan);
  --wts-grid-pattern:
      linear-gradient(to right, rgba(5, 175, 242, 0.07) 1px, transparent 1px),
      linear-gradient(to bottom, rgba(0, 255, 159, 0.07) 1px, transparent 1px);
  --wts-orb-primary: radial-gradient(circle, rgba(0, 255, 159, 0.16) 0%, rgba(5, 175, 242, 0.07) 50%, transparent 70%);
  --wts-orb-secondary: radial-gradient(circle, rgba(5, 175, 242, 0.14) 0%, rgba(0, 255, 159, 0.05) 50%, transparent 70%);
  --wts-secondary-btn-bg: rgba(255, 255, 255, 0.72);
  --wts-secondary-btn-hover-bg: rgba(5, 175, 242, 0.10);
  --wts-panel-border: rgba(1, 22, 64, 0.10);
  --wts-status-bg: rgba(5, 175, 242, 0.10);
  --wts-mini-bg: rgba(1, 22, 64, 0.04);
  --wts-icon-bg: rgba(5, 175, 242, 0.10);
  --wts-card-btn-bg: linear-gradient(135deg, rgba(0, 255, 159, 0.12) 0%, rgba(5, 175, 242, 0.12) 100%);
  --wts-radar-bg: linear-gradient(135deg, rgba(0, 255, 159, 0.14) 0%, rgba(5, 175, 242, 0.12) 100%);
  --wts-border-sweep: rgba(5, 175, 242, 0.14);
  --wts-icon-glow: 0 0 20px rgba(5, 175, 242, 0.14);
  --wts-glow-soft: 0 0 20px rgba(5, 175, 242, 0.26);
  --wts-glow-strong: 0 12px 35px rgba(5, 175, 242, 0.30), 0 0 20px rgba(0, 255, 159, 0.26);
  --wts-button-text: #011640;
}

/* ---------------------------------------------------------------------------
   4. DARK MODE BODY BACKGROUND — Deep Navy, NOT Black
   --------------------------------------------------------------------------- */
[data-bs-theme=dark] {
  background-color: #060d24 !important;
}

[data-bs-theme=dark] body {
  background-color: #060d24 !important;
  color: #e8f0ff;
}

/* ---------------------------------------------------------------------------
   5. SECTION ISOLATION
   --------------------------------------------------------------------------- */
.wts-section {
  isolation: isolate;
  background: var(--wts-section-bg) !important;
  color: var(--wts-text) !important;
}

.wts-title,
.wts-card-title,
.wts-mini-title {
  color: var(--wts-heading) !important;
}

.wts-desc,
.wts-card-desc,
.wts-mini-text,
.wts-panel-label {
  color: var(--wts-muted) !important;
}

/* ---------------------------------------------------------------------------
   6. HERO / SLIDER RESPONSIVE TITLE CLAMP
   --------------------------------------------------------------------------- */
.wts-hero-section,
.wts-slider-section {
  min-height: clamp(680px, 86vh, 920px);
}

.wts-title {
  letter-spacing: -0.055em;
}

.wts-hero-section .wts-title,
.wts-slider-section .wts-title {
  font-size: clamp(3rem, 7vw, 6.85rem);
  max-width: 980px;
}

.wts-desc {
  font-size: clamp(1rem, 1.6vw, 1.23rem);
}

/* ---------------------------------------------------------------------------
   7. CARD INTERACTION ENHANCEMENT
   --------------------------------------------------------------------------- */
.wts-service-card,
.wts-stat-card,
.wts-glass-panel {
  background: var(--wts-card-bg) !important;
  border-color: var(--wts-card-border) !important;
  box-shadow: var(--wts-card-shadow) !important;
  border-radius: 28px !important;
  backdrop-filter: blur(22px) saturate(150%) !important;
  -webkit-backdrop-filter: blur(22px) saturate(150%) !important;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
  position: relative;
  z-index: 1;
  overflow: hidden !important;
}

.wts-service-card {
  min-height: 100%;
}

.wts-service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 255, 159, 0.08), transparent);
  transition: left 0.6s ease;
  z-index: -1;
}

.wts-service-card:hover,
.wts-stat-card:hover,
.wts-glass-panel:hover {
  transform: translateY(-16px) scale(1.02) !important;
  border-color: var(--wts-mint) !important;
  box-shadow: var(--wts-card-hover-shadow) !important;
}

.wts-service-card:hover::before {
  left: 100%;
}

.wts-service-card:hover .wts-service-icon,
.wts-stat-card:hover .wts-service-icon,
.wts-mini-card:hover i {
  background: linear-gradient(135deg, #00ff9f 0%, #05aff2 100%) !important;
  color: #011640 !important;
  transform: rotate(360deg) scale(1.12) !important;
  box-shadow: 0 0 24px rgba(0, 255, 159, 0.55) !important;
}

.wts-service-card:hover .wts-card-btn {
  background: #00ff9f !important;
  color: #011640 !important;
  font-weight: 800 !important;
  box-shadow: 0 0 22px rgba(0, 255, 159, 0.6) !important;
  transform: translateX(6px);
}

.wts-stat-card {
  animation: wtsBorderGlow 8s infinite alternate;
}

/* ---------------------------------------------------------------------------
   8. BADGE POLISH — Glowing Badge Wraps
   --------------------------------------------------------------------------- */
.wts-badge-wrap {
  box-shadow: 0 0 34px rgba(0, 255, 159, 0.14), inset 0 1px 0 rgba(255, 255, 255, 0.12) !important;
}

/* ---------------------------------------------------------------------------
   9. BUTTON STYLES — Gradient BG, Dark Text, Hover Lift with Glow
   --------------------------------------------------------------------------- */
.wts-btn-primary,
.wts-cta-btn,
.navbar .btn,
.btn-gradient,
.btn-request-quote {
  background: var(--wts-gradient) !important;
  color: #011640 !important;
  font-weight: 700 !important;
  border: 0 !important;
  border-radius: 9999px !important;
  box-shadow: 0 18px 42px rgba(0, 255, 159, 0.26), 0 0 28px rgba(5, 175, 242, 0.16) !important;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
  display: inline-flex !important;
  align-items: center !important;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 0.5px;
}

.wts-btn-primary:hover,
.wts-cta-btn:hover,
.navbar .btn:hover,
.btn-gradient:hover,
.btn-request-quote:hover {
  color: #011640 !important;
  transform: translateY(-4px) scale(1.025) !important;
  box-shadow: 0 24px 56px rgba(0, 255, 159, 0.4), 0 0 38px rgba(5, 175, 242, 0.32) !important;
}

/* ---------------------------------------------------------------------------
   10. SERVICE ICON & CARD BUTTON DEFAULTS
   --------------------------------------------------------------------------- */
.wts-service-icon {
  background: var(--wts-icon-bg) !important;
  color: var(--wts-mint) !important;
  border-color: var(--wts-badge-border) !important;
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
}

.wts-card-btn {
  background: var(--wts-card-btn-bg) !important;
  color: var(--wts-mint) !important;
  border-color: var(--wts-mint) !important;
  transition: all 0.35s ease !important;
}

.wts-radar-icon::before,
.wts-radar-icon::after {
  animation-name: wtsRadarSpin !important;
}

/* ---------------------------------------------------------------------------
   11. STAT NUMBER — Gradient Text with Drop Shadow Glow
   --------------------------------------------------------------------------- */
.wts-stat-number {
  filter: drop-shadow(0 0 18px rgba(0, 255, 159, 0.2));
}

/* ---------------------------------------------------------------------------
   12. CTA PANEL — Dark Text on Gradient BG, Animated Gradient Shift
   --------------------------------------------------------------------------- */
.wts-cta-panel {
  color: #011640 !important;
  border: 1px solid rgba(255, 255, 255, 0.28);
  animation: wtsGradientShift 8s ease infinite;
  background-size: 200% 200%;
}

.wts-cta-title,
.wts-cta-desc {
  color: #011640 !important;
}

/* ---------------------------------------------------------------------------
   13. DARK MODE HEADER — Deep Glassmorphic Navbar
   --------------------------------------------------------------------------- */
[data-bs-theme=dark] .header,
[data-bs-theme=dark] .navbar,
[data-bs-theme=dark] .header-wrapper {
  background: rgba(6, 13, 36, 0.88) !important;
  backdrop-filter: blur(24px) saturate(160%) !important;
  -webkit-backdrop-filter: blur(24px) saturate(160%) !important;
  border-bottom: 1px solid rgba(0, 255, 159, 0.18) !important;
}

[data-bs-theme=dark] .main-menu > li > a,
[data-bs-theme=dark] .navbar-nav .nav-link {
  color: #ffffff !important;
  font-weight: 600 !important;
  font-size: 15px !important;
  padding: 15px 18px !important;
  transition: all 0.25s ease !important;
  text-shadow: 0 0 16px rgba(5, 175, 242, 0.14);
}

[data-bs-theme=dark] .main-menu > li > a:hover,
[data-bs-theme=dark] .navbar-nav .nav-link:hover,
[data-bs-theme=dark] .main-menu > li > a:focus,
[data-bs-theme=dark] .navbar-nav .nav-link:focus,
[data-bs-theme=dark] .main-menu > li.active > a,
[data-bs-theme=dark] .main-menu > li.current-menu-item > a,
[data-bs-theme=dark] .main-menu > li.current-menu-parent > a {
  color: var(--wts-mint) !important;
  text-shadow: 0 0 16px rgba(0, 255, 159, 0.6) !important;
}

[data-bs-theme=dark] .sub-menu,
[data-bs-theme=dark] .dropdown-menu,
[data-bs-theme=dark] .mega-menu {
  background: rgba(6, 13, 36, 0.96) !important;
  backdrop-filter: blur(25px) saturate(160%) !important;
  -webkit-backdrop-filter: blur(25px) saturate(160%) !important;
  border: 1px solid rgba(0, 255, 159, 0.24) !important;
  border-radius: 14px !important;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.5), 0 0 36px rgba(5, 175, 242, 0.14) !important;
  padding: 12px !important;
  min-width: 240px;
}

[data-bs-theme=dark] .sub-menu li a,
[data-bs-theme=dark] .dropdown-menu .dropdown-item,
[data-bs-theme=dark] .mega-menu li a {
  color: #c8d8f0 !important;
  font-size: 14px !important;
  padding: 10px 16px !important;
  border-radius: 8px !important;
  transition: all 0.2s ease !important;
  display: flex !important;
  align-items: center !important;
}

[data-bs-theme=dark] .sub-menu li a:hover,
[data-bs-theme=dark] .dropdown-menu .dropdown-item:hover,
[data-bs-theme=dark] .mega-menu li a:hover,
[data-bs-theme=dark] .sub-menu li a.active,
[data-bs-theme=dark] .dropdown-menu .dropdown-item.active,
[data-bs-theme=dark] .mega-menu li a.active {
  background: linear-gradient(90deg, rgba(0, 255, 159, 0.14), rgba(5, 175, 242, 0.1)) !important;
  color: #00ff9f !important;
  padding-left: 22px !important;
  font-weight: 600 !important;
}

[data-bs-theme=dark] .header .btn-request-quote,
[data-bs-theme=dark] .header .header-btn,
[data-bs-theme=dark] .header .btn-primary,
[data-bs-theme=dark] .header-controls .btn {
  background: linear-gradient(135deg, #00ff9f 0%, #05aff2 100%) !important;
  color: #011640 !important;
  font-weight: 700 !important;
  border: none !important;
  border-radius: 999px !important;
  padding: 10px 24px !important;
  opacity: 1 !important;
  visibility: visible !important;
}

[data-bs-theme=dark] .header .btn-request-quote:hover,
[data-bs-theme=dark] .header .header-btn:hover,
[data-bs-theme=dark] .header .btn-primary:hover,
[data-bs-theme=dark] .header-controls .btn:hover {
  box-shadow: 0 0 24px rgba(0, 255, 159, 0.45) !important;
  transform: translateY(-2px) !important;
}

[data-bs-theme=dark] .footer {
  background: #041028 !important;
  border-top: 1px solid rgba(0, 255, 159, 0.18) !important;
  color: #8ba4c8;
}

/* ---------------------------------------------------------------------------
   14. LIGHT MODE HEADER — White Glassmorphic Navbar
   --------------------------------------------------------------------------- */
[data-bs-theme=light] .header,
[data-bs-theme=light] .navbar,
[data-bs-theme=light] .header-wrapper,
:root:not([data-bs-theme=dark]) .header,
:root:not([data-bs-theme=dark]) .navbar,
:root:not([data-bs-theme=dark]) .header-wrapper {
  background: rgba(255, 255, 255, 0.88) !important;
  backdrop-filter: blur(20px) !important;
  -webkit-backdrop-filter: blur(20px) !important;
  border-bottom: 1px solid rgba(5, 175, 242, 0.16) !important;
  box-shadow: 0 16px 40px rgba(1, 22, 64, 0.07) !important;
}

[data-bs-theme=light] .main-menu > li > a,
[data-bs-theme=light] .navbar-nav .nav-link,
:root:not([data-bs-theme=dark]) .main-menu > li > a,
:root:not([data-bs-theme=dark]) .navbar-nav .nav-link {
  color: #061334 !important;
  font-weight: 600 !important;
  transition: all 0.25s ease !important;
}

[data-bs-theme=light] .main-menu > li > a:hover,
[data-bs-theme=light] .navbar-nav .nav-link:hover,
:root:not([data-bs-theme=dark]) .main-menu > li > a:hover,
:root:not([data-bs-theme=dark]) .navbar-nav .nav-link:hover {
  color: var(--wts-cyan) !important;
  text-shadow: 0 0 12px rgba(5, 175, 242, 0.32) !important;
}

[data-bs-theme=light] .sub-menu,
[data-bs-theme=light] .dropdown-menu,
[data-bs-theme=light] .mega-menu,
:root:not([data-bs-theme=dark]) .sub-menu,
:root:not([data-bs-theme=dark]) .dropdown-menu,
:root:not([data-bs-theme=dark]) .mega-menu {
  background: rgba(255, 255, 255, 0.96) !important;
  border-color: rgba(5, 175, 242, 0.22) !important;
  border-radius: 14px !important;
  box-shadow: 0 24px 55px rgba(1, 22, 64, 0.12), 0 0 24px rgba(5, 175, 242, 0.1) !important;
}

[data-bs-theme=light] .sub-menu a,
[data-bs-theme=light] .dropdown-menu a,
[data-bs-theme=light] .mega-menu a,
:root:not([data-bs-theme=dark]) .sub-menu a,
:root:not([data-bs-theme=dark]) .dropdown-menu a,
:root:not([data-bs-theme=dark]) .mega-menu a {
  color: #10203f !important;
}

[data-bs-theme=light] .sub-menu a:hover,
[data-bs-theme=light] .dropdown-menu a:hover,
[data-bs-theme=light] .mega-menu a:hover,
:root:not([data-bs-theme=dark]) .sub-menu a:hover,
:root:not([data-bs-theme=dark]) .dropdown-menu a:hover,
:root:not([data-bs-theme=dark]) .mega-menu a:hover {
  color: var(--wts-cyan) !important;
  background: rgba(5, 175, 242, 0.06) !important;
  border-radius: 8px;
}

/* ---------------------------------------------------------------------------
   15. NATIVE INFINIA BLOCKS IN DARK MODE
   --------------------------------------------------------------------------- */
[data-bs-theme=dark] .card,
[data-bs-theme=dark] .box,
[data-bs-theme=dark] .service-box,
[data-bs-theme=dark] .feature-box,
[data-bs-theme=dark] .item-box {
  background: rgba(8, 18, 50, 0.85) !important;
  border: 1px solid rgba(0, 255, 159, 0.18) !important;
  color: #e8f0ff !important;
  overflow: visible !important;
  border-radius: 18px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
}
[data-bs-theme=dark] .card h1, [data-bs-theme=dark] .card h2, [data-bs-theme=dark] .card h3, [data-bs-theme=dark] .card h4, [data-bs-theme=dark] .card h5, [data-bs-theme=dark] .card h6,
[data-bs-theme=dark] .box h1,
[data-bs-theme=dark] .box h2,
[data-bs-theme=dark] .box h3,
[data-bs-theme=dark] .box h4,
[data-bs-theme=dark] .box h5,
[data-bs-theme=dark] .box h6,
[data-bs-theme=dark] .service-box h1,
[data-bs-theme=dark] .service-box h2,
[data-bs-theme=dark] .service-box h3,
[data-bs-theme=dark] .service-box h4,
[data-bs-theme=dark] .service-box h5,
[data-bs-theme=dark] .service-box h6,
[data-bs-theme=dark] .feature-box h1,
[data-bs-theme=dark] .feature-box h2,
[data-bs-theme=dark] .feature-box h3,
[data-bs-theme=dark] .feature-box h4,
[data-bs-theme=dark] .feature-box h5,
[data-bs-theme=dark] .feature-box h6,
[data-bs-theme=dark] .item-box h1,
[data-bs-theme=dark] .item-box h2,
[data-bs-theme=dark] .item-box h3,
[data-bs-theme=dark] .item-box h4,
[data-bs-theme=dark] .item-box h5,
[data-bs-theme=dark] .item-box h6 {
  color: #ffffff !important;
}
[data-bs-theme=dark] .card p,
[data-bs-theme=dark] .box p,
[data-bs-theme=dark] .service-box p,
[data-bs-theme=dark] .feature-box p,
[data-bs-theme=dark] .item-box p {
  color: #8ba4c8 !important;
}
[data-bs-theme=dark] .card .btn,
[data-bs-theme=dark] .card a.btn,
[data-bs-theme=dark] .card .read-more,
[data-bs-theme=dark] .card .learn-more,
[data-bs-theme=dark] .box .btn,
[data-bs-theme=dark] .box a.btn,
[data-bs-theme=dark] .box .read-more,
[data-bs-theme=dark] .box .learn-more,
[data-bs-theme=dark] .service-box .btn,
[data-bs-theme=dark] .service-box a.btn,
[data-bs-theme=dark] .service-box .read-more,
[data-bs-theme=dark] .service-box .learn-more,
[data-bs-theme=dark] .feature-box .btn,
[data-bs-theme=dark] .feature-box a.btn,
[data-bs-theme=dark] .feature-box .read-more,
[data-bs-theme=dark] .feature-box .learn-more,
[data-bs-theme=dark] .item-box .btn,
[data-bs-theme=dark] .item-box a.btn,
[data-bs-theme=dark] .item-box .read-more,
[data-bs-theme=dark] .item-box .learn-more {
  background: rgba(0, 255, 159, 0.12) !important;
  border: 1px solid rgba(0, 255, 159, 0.32) !important;
  color: #00ff9f !important;
  padding: 8px 20px !important;
  border-radius: 999px !important;
  display: inline-flex !important;
  align-items: center !important;
  font-weight: 600 !important;
  text-decoration: none !important;
  transition: all 0.3s ease !important;
}
[data-bs-theme=dark] .card .btn:hover,
[data-bs-theme=dark] .card a.btn:hover,
[data-bs-theme=dark] .card .read-more:hover,
[data-bs-theme=dark] .card .learn-more:hover,
[data-bs-theme=dark] .box .btn:hover,
[data-bs-theme=dark] .box a.btn:hover,
[data-bs-theme=dark] .box .read-more:hover,
[data-bs-theme=dark] .box .learn-more:hover,
[data-bs-theme=dark] .service-box .btn:hover,
[data-bs-theme=dark] .service-box a.btn:hover,
[data-bs-theme=dark] .service-box .read-more:hover,
[data-bs-theme=dark] .service-box .learn-more:hover,
[data-bs-theme=dark] .feature-box .btn:hover,
[data-bs-theme=dark] .feature-box a.btn:hover,
[data-bs-theme=dark] .feature-box .read-more:hover,
[data-bs-theme=dark] .feature-box .learn-more:hover,
[data-bs-theme=dark] .item-box .btn:hover,
[data-bs-theme=dark] .item-box a.btn:hover,
[data-bs-theme=dark] .item-box .read-more:hover,
[data-bs-theme=dark] .item-box .learn-more:hover {
  background: #00ff9f !important;
  color: #011640 !important;
  box-shadow: 0 5px 18px rgba(0, 255, 159, 0.3) !important;
}
[data-bs-theme=dark] .card:hover,
[data-bs-theme=dark] .box:hover,
[data-bs-theme=dark] .service-box:hover,
[data-bs-theme=dark] .feature-box:hover,
[data-bs-theme=dark] .item-box:hover {
  border-color: rgba(0, 255, 159, 0.4) !important;
  box-shadow: 0 20px 50px rgba(0, 255, 159, 0.14) !important;
  transform: translateY(-4px);
}
[data-bs-theme=dark] .item {
  background-color: rgba(8, 18, 50, 0.65);
  border-color: rgba(5, 175, 242, 0.14);
}
[data-bs-theme=dark] .btn,
[data-bs-theme=dark] .btn-primary,
[data-bs-theme=dark] .btn-secondary,
[data-bs-theme=dark] .btn-outline-primary,
[data-bs-theme=dark] a.btn,
[data-bs-theme=dark] button.btn {
  opacity: 1 !important;
  visibility: visible !important;
}

/* ---------------------------------------------------------------------------
   16. PAGINATION — Dark Mode Pills
   --------------------------------------------------------------------------- */
[data-bs-theme=dark] .pagination {
  display: flex !important;
  gap: 8px !important;
  align-items: center !important;
  justify-content: center !important;
  margin-top: 40px !important;
}

[data-bs-theme=dark] .pagination .page-item .page-link {
  background-color: rgba(255, 255, 255, 0.05) !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  color: #e8f0ff !important;
  border-radius: 10px !important;
  padding: 10px 16px !important;
  font-weight: 600 !important;
  transition: all 0.3s ease !important;
}

[data-bs-theme=dark] .pagination .page-item .page-link:hover {
  background-color: rgba(5, 175, 242, 0.18) !important;
  border-color: #05aff2 !important;
  color: #05aff2 !important;
}

[data-bs-theme=dark] .pagination .page-item.active .page-link {
  background: linear-gradient(135deg, #00ff9f 0%, #05aff2 100%) !important;
  border-color: transparent !important;
  color: #011640 !important;
  font-weight: 800 !important;
  box-shadow: 0 5px 15px rgba(0, 255, 159, 0.28) !important;
}

[data-bs-theme=dark] .pagination .page-item.disabled .page-link {
  opacity: 0.35 !important;
  background-color: transparent !important;
}

/* ---------------------------------------------------------------------------
   17. SWIPER PAGINATION BULLETS
   --------------------------------------------------------------------------- */
.wts-swiper-slider .swiper-pagination-bullet {
  width: 34px;
  height: 6px;
  border-radius: 999px;
  background: rgba(5, 175, 242, 0.32);
  opacity: 1;
  transition: all 0.35s ease;
}

.wts-swiper-slider .swiper-pagination-bullet-active {
  width: 54px;
  background: var(--wts-gradient);
  box-shadow: 0 0 18px rgba(0, 255, 159, 0.42);
}

/* ---------------------------------------------------------------------------
   18. GLASSMORPHISM SURFACE UTILITIES
   --------------------------------------------------------------------------- */
.surface-card {
  background: rgba(8, 18, 50, 0.65) !important;
  border: 1px solid rgba(0, 255, 159, 0.14) !important;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 24px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.surface-panel {
  background: rgba(8, 18, 50, 0.5) !important;
  border: 1px solid rgba(255, 255, 255, 0.07) !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 16px;
}

.premium-panel {
  background: linear-gradient(135deg, rgba(8, 18, 50, 0.85) 0%, rgba(6, 13, 36, 0.9) 100%) !important;
  border: 1px solid rgba(0, 255, 159, 0.18) !important;
  box-shadow: 0 20px 50px rgba(1, 22, 64, 0.45), 0 0 30px rgba(5, 175, 242, 0.14);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 28px;
}

.premium-chip {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  background: rgba(5, 175, 242, 0.12);
  border: 1px solid rgba(5, 175, 242, 0.28);
  border-radius: 9999px;
  color: #00ff9f;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.premium-pill {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  background: rgba(0, 255, 159, 0.1);
  border: 1px solid rgba(0, 255, 159, 0.22);
  border-radius: 9999px;
  color: #00ff9f;
  font-size: 12px;
  font-weight: 600;
}

.gradient-text {
  background: linear-gradient(135deg, #00ff9f 0%, #05aff2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}

.hero-gradient-bg {
  background: radial-gradient(circle at 15% 20%, rgba(0, 255, 159, 0.16), transparent 35%), radial-gradient(circle at 85% 15%, rgba(5, 175, 242, 0.2), transparent 40%), linear-gradient(180deg, #060d24 0%, #081a3a 50%, #060d24 100%) !important;
}

.grid-overlay {
  background-image: linear-gradient(to right, rgba(5, 175, 242, 0.05) 1px, transparent 1px), linear-gradient(to bottom, rgba(5, 175, 242, 0.05) 1px, transparent 1px);
  background-size: 40px 40px;
}

/* ---------------------------------------------------------------------------
   19. OFFERING PILL & IDEAL CLIENTS
   --------------------------------------------------------------------------- */
.wts-offering-pill {
  width: fit-content;
  background: rgba(5, 175, 242, 0.1);
  border: 1px solid rgba(5, 175, 242, 0.2);
  color: var(--wts-heading);
  font-size: 0.88rem;
  font-weight: 700;
}

.wts-offering-pill i {
  color: var(--wts-mint);
}

.wts-ideal-clients {
  background: var(--wts-mini-bg) !important;
  border: 1px solid var(--wts-panel-border) !important;
}

/* ---------------------------------------------------------------------------
   20. ENHANCED INFINIA NATIVE CARDS — Hover Lift & Border Glow
   --------------------------------------------------------------------------- */
.card-service,
.card-lift {
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.card-service:hover,
.card-lift:hover {
  transform: translateY(-8px);
  border-color: rgba(0, 255, 159, 0.45) !important;
  box-shadow: 0 18px 40px rgba(5, 175, 242, 0.18), 0 0 22px rgba(0, 255, 159, 0.12);
}

[data-bs-theme=dark] .card-service,
[data-bs-theme=dark] .card-lift {
  background: rgba(8, 18, 50, 0.8) !important;
  border: 1px solid rgba(0, 255, 159, 0.16) !important;
}

[data-bs-theme=dark] .card-service:hover,
[data-bs-theme=dark] .card-lift:hover {
  border-color: rgba(0, 255, 159, 0.5) !important;
  box-shadow: 0 22px 50px rgba(0, 255, 159, 0.2), 0 0 28px rgba(5, 175, 242, 0.16) !important;
}

/* ---------------------------------------------------------------------------
   21. RESPONSIVE — Mobile Overrides
   --------------------------------------------------------------------------- */
@media (max-width: 991px) {
  .wts-hero-section,
  .wts-slider-section {
    min-height: auto;
    padding-block: 72px !important;
  }
  .wts-hero-section .wts-title,
  .wts-slider-section .wts-title {
    font-size: clamp(2.5rem, 12vw, 4rem);
  }
  .wts-service-card,
  .wts-stat-card,
  .wts-glass-panel {
    border-radius: 22px !important;
  }
  .wts-service-card:hover,
  .wts-stat-card:hover,
  .wts-glass-panel:hover {
    transform: translateY(-8px) scale(1.01) !important;
  }
  [data-bs-theme=dark] .header,
  [data-bs-theme=dark] .navbar {
    backdrop-filter: blur(18px) !important;
    -webkit-backdrop-filter: blur(18px) !important;
  }
}
@media (max-width: 575px) {
  .wts-hero-section .wts-title,
  .wts-slider-section .wts-title {
    font-size: clamp(2rem, 10vw, 3rem);
  }
  .wts-desc {
    font-size: 0.95rem;
  }
  .wts-service-card,
  .wts-stat-card,
  .wts-glass-panel {
    border-radius: 18px !important;
  }
  .wts-btn-primary,
  .wts-cta-btn,
  .btn-gradient,
  .btn-request-quote {
    padding: 10px 22px !important;
    font-size: 12px;
  }
}
/* ---------------------------------------------------------------------------
   22. PREFERS-REDUCED-MOTION — Disable Animations
   --------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  .wts-section *,
  .wts-section *::before,
  .wts-section *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .wts-stat-card {
    animation: none !important;
  }
  .wts-cta-panel {
    animation: none !important;
  }
  .wts-service-card:hover,
  .wts-stat-card:hover,
  .wts-glass-panel:hover {
    transform: none !important;
  }
}
/* ==========================================================================
   WISTECH DESIGN SYSTEM v6.0 — Modern Tech Enhancements
   ========================================================================== */
/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Modern scrollbar */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

[data-bs-theme=dark] ::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #00ff9f 0%, #05aff2 100%);
  border-radius: 999px;
}

[data-bs-theme=light] ::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #05aff2 0%, #00ff9f 100%);
  border-radius: 999px;
}

::-webkit-scrollbar-thumb:hover {
  opacity: 0.8;
}

/* Better selection */
::selection {
  background: rgba(0, 255, 159, 0.3) !important;
  color: inherit;
}

/* Focus-visible for accessibility */
:focus-visible {
  outline: 2px solid var(--wts-mint);
  outline-offset: 2px;
  border-radius: 4px;
}

/* Image loading fade-in */
img {
  opacity: 1;
  transition: opacity 0.3s ease;
  color: transparent;
}

img[loading=lazy] {
  opacity: 0;
}

img[loading=lazy].loaded,
img[loading=lazy][complete] {
  opacity: 1;
}

/* Page content fade-in */
main {
  animation: wtsPageIn 0.5s ease-out;
}

@keyframes wtsPageIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* Modern container spacing */
@media (min-width: 1400px) {
  .container {
    max-width: 1280px;
  }
}
/* Better link underlines */
a:not(.btn):not(.nav-link):not(.dropdown-item):not(.page-link) {
  text-decoration: none;
  transition: all 0.2s ease;
}

a:not(.btn):not(.nav-link):not(.dropdown-item):not(.page-link):hover {
  color: var(--wts-cyan) !important;
}

/* Enhanced form controls */
.form-control:focus,
.form-select:focus {
  border-color: var(--wts-mint) !important;
  box-shadow: 0 0 0 3px rgba(0, 255, 159, 0.15) !important;
}

/* Clean section dividers */
hr {
  opacity: 0.15;
}

[data-bs-theme=dark] hr {
  border-color: rgba(0, 255, 159, 0.2);
}

/* Scroll margin for fixed headers */
:target {
  scroll-margin-top: 100px;
}

/* Smoother card hover transitions on native elements */
.card,
.card-body,
.card-footer {
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Dark mode native card enhancements */
[data-bs-theme=dark] .card {
  background: rgba(8, 18, 50, 0.8);
  border-color: rgba(0, 255, 159, 0.12);
}

[data-bs-theme=dark] .card:hover {
  border-color: rgba(0, 255, 159, 0.35);
  box-shadow: 0 12px 36px rgba(0, 255, 159, 0.1);
}

/* Footer link styling */
footer a {
  transition: color 0.2s ease;
}

[data-bs-theme=dark] footer a:hover {
  color: var(--wts-mint) !important;
}

/* Mobile tap highlight */
* {
  -webkit-tap-highlight-color: rgba(0, 255, 159, 0.15);
}

/* Loading spinner consistency */
.spinner-border {
  color: var(--wts-mint) !important;
}

/* Better heading word spacing */
h1, h2, h3, h4, h5, h6 {
  word-spacing: 0.05em;
}

/* Section padding consistency */
.section-padding {
  padding: 6rem 0;
}

@media (max-width: 768px) {
  .section-padding {
    padding: 3rem 0;
  }
}
/* Button pill consistency */
.btn {
  border-radius: 9999px !important;
  font-weight: 600 !important;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
}

/* Enhanced blockquote */
blockquote {
  border-left: 3px solid var(--wts-mint);
  padding-left: 1.5rem;
  font-style: italic;
  color: var(--wts-muted);
}

/* Clean table styles */
.table {
  --bs-table-bg: transparent;
}

[data-bs-theme=dark] .table {
  --bs-table-color: #e8f0ff;
}

/* ==========================================================================
   WISTECH DESIGN SYSTEM v7.0 — Modern Tech UI Enhancements
   ========================================================================== */
/* ---------------------------------------------------------------------------
   1. TECH GRID HERO — Animated grid overlay for hero sections
   --------------------------------------------------------------------------- */
.hero-gradient-bg {
  position: relative;
}

.hero-gradient-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(to right, rgba(0, 255, 159, 0.04) 1px, transparent 1px), linear-gradient(to bottom, rgba(5, 175, 242, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 0;
}

.hero-gradient-bg .container {
  position: relative;
  z-index: 1;
}

/* ---------------------------------------------------------------------------
   2. GLASS CARDS — Native infinia cards get glassmorphism lift
   --------------------------------------------------------------------------- */
[data-bs-theme=dark] .card-service,
[data-bs-theme=dark] .feature-item,
[data-bs-theme=dark] .bg-white {
  background: linear-gradient(145deg, rgba(8, 18, 50, 0.88), rgba(6, 14, 42, 0.8)) !important;
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  border: 1px solid rgba(0, 255, 159, 0.12);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

[data-bs-theme=dark] .card-service:hover,
[data-bs-theme=dark] .feature-item:hover {
  transform: translateY(-8px);
  border-color: rgba(0, 255, 159, 0.45) !important;
  box-shadow: 0 24px 60px rgba(0, 255, 159, 0.22), 0 0 40px rgba(5, 175, 242, 0.18) !important;
}

[data-bs-theme=dark] .card-service .service-icon {
  filter: drop-shadow(0 0 12px rgba(0, 255, 159, 0.3));
}

[data-bs-theme=light] .card-service,
[data-bs-theme=light] .feature-item {
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(5, 175, 242, 0.12);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

[data-bs-theme=light] .card-service:hover,
[data-bs-theme=light] .feature-item:hover {
  transform: translateY(-6px);
  border-color: rgba(5, 175, 242, 0.35) !important;
  box-shadow: 0 20px 50px rgba(5, 175, 242, 0.16), 0 0 30px rgba(0, 255, 159, 0.1) !important;
}

/* ---------------------------------------------------------------------------
   3. MODERN HERO BANNER — Gradient text, floating elements, animated shapes
   --------------------------------------------------------------------------- */
.hero-banner h3.ds-3 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  font-weight: 800;
}

[data-bs-theme=dark] .hero-banner h3.ds-3 {
  text-shadow: 0 8px 30px rgba(5, 175, 242, 0.25);
}

[data-bs-theme=dark] .hero-banner {
  background: radial-gradient(ellipse at 20% 50%, rgba(0, 255, 159, 0.1), transparent 50%), radial-gradient(ellipse at 80% 20%, rgba(5, 175, 242, 0.12), transparent 50%), linear-gradient(180deg, #060d24 0%, #081a3a 50%, #060d24 100%) !important;
}

.hero-banner .card-hero {
  background: rgba(8, 18, 50, 0.75) !important;
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border: 1px solid rgba(0, 255, 159, 0.2);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
  animation: wtsHoverCard 6s ease-in-out infinite;
}

@keyframes wtsHoverCard {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}
/* Floating shapes animation */
.hero-banner .shape-1,
.hero-banner .shape-2,
.hero-banner .shape-3 {
  animation: wtsShapeFloat 8s ease-in-out infinite;
}

.hero-banner .shape-2 {
  animation-delay: -3s;
  animation-duration: 10s;
}

.hero-banner .shape-3 {
  animation-delay: -6s;
  animation-duration: 7s;
}

@keyframes wtsShapeFloat {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  33% {
    transform: translateY(-15px) rotate(3deg);
  }
  66% {
    transform: translateY(8px) rotate(-2deg);
  }
}
/* ---------------------------------------------------------------------------
   4. FEATURE CARDS — Enhanced icon + border glow
   --------------------------------------------------------------------------- */
.feature-item .icon-shape {
  background: linear-gradient(135deg, rgba(0, 255, 159, 0.12), rgba(5, 175, 242, 0.1)) !important;
  border: 1px solid rgba(0, 255, 159, 0.18);
  transition: all 0.45s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.feature-item:hover .icon-shape {
  background: linear-gradient(135deg, rgba(0, 255, 159, 0.25), rgba(5, 175, 242, 0.2)) !important;
  border-color: rgba(0, 255, 159, 0.5);
  transform: scale(1.08) rotate(-5deg);
  box-shadow: 0 0 30px rgba(0, 255, 159, 0.25);
}

.feature-item .icon-shape .icon svg {
  transition: all 0.4s ease;
}

.feature-item:hover .icon-shape .icon svg {
  transform: scale(1.15);
  color: var(--wts-mint) !important;
  filter: drop-shadow(0 0 8px rgba(0, 255, 159, 0.4));
}

/* ---------------------------------------------------------------------------
   5. TESTIMONIAL CARDS — Modern glass look
   --------------------------------------------------------------------------- */
.shortcode-testimonials [class*=bg-neutral-100] {
  transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
  overflow: hidden;
}

[data-bs-theme=dark] .shortcode-testimonials [class*=bg-neutral-100] {
  background: rgba(8, 18, 50, 0.7) !important;
  border: 1px solid rgba(0, 255, 159, 0.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

[data-bs-theme=dark] .shortcode-testimonials [class*=bg-neutral-100]:hover {
  border-color: rgba(0, 255, 159, 0.35);
  box-shadow: 0 16px 40px rgba(0, 255, 159, 0.14);
  transform: translateY(-6px);
}

.shortcode-testimonials .avatar-lg {
  border: 2px solid rgba(0, 255, 159, 0.3);
  box-shadow: 0 0 20px rgba(0, 255, 159, 0.15);
}

/* ---------------------------------------------------------------------------
   6. SUBTITLE BADGES — Modern pill with glow
   --------------------------------------------------------------------------- */
[data-bs-theme=dark] [class*=bg-primary-soft]:not(.icon-shape):not(footer *) {
  background: rgba(0, 255, 159, 0.1) !important;
  border-color: rgba(0, 255, 159, 0.3) !important;
  box-shadow: 0 0 20px rgba(0, 255, 159, 0.08);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

/* ---------------------------------------------------------------------------
   7. NAVBAR — Sticky glass effect with border glow
   --------------------------------------------------------------------------- */
.navbar-sticky {
  backdrop-filter: blur(24px) saturate(160%);
  -webkit-backdrop-filter: blur(24px) saturate(160%);
  transform: translate3d(0, 0, 0);
  transition: transform 0.18s ease, background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  will-change: transform;
}

.navbar-sticky.is-navbar-hidden {
  pointer-events: none;
  transform: translate3d(0, -115%, 0);
}

.wts-nav-logo {
  position: relative;
  border-radius: 999px;
  transition: transform 0.28s ease, filter 0.28s ease;
}

.wts-nav-logo img {
  transform-origin: center;
  transition: transform 0.28s ease, filter 0.28s ease;
}

.wts-nav-logo::after {
  content: "";
  position: absolute;
  inset: -8px -12px;
  border-radius: inherit;
  background: radial-gradient(circle, rgba(0, 255, 159, 0.18), transparent 68%);
  opacity: 0;
  transform: scale(0.74);
  pointer-events: none;
}

.navbar-sticky.is-logo-visible .wts-nav-logo img {
  animation: wtsLogoReveal 1.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.navbar-sticky.is-logo-visible .wts-nav-logo::after {
  animation: wtsLogoHalo 1.35s ease-out;
}

.navbar-sticky.navbar-stick .wts-nav-logo img {
  filter: drop-shadow(0 8px 20px rgba(0, 255, 159, 0.16));
}

.wts-nav-logo:hover img {
  transform: translateY(-1px) scale(1.04);
  filter: drop-shadow(0 8px 18px rgba(0, 255, 159, 0.18));
}

@keyframes wtsLogoReveal {
  0% {
    transform: translateY(-8px) scale(0.86) rotate(-2deg);
    filter: saturate(0.6) brightness(0.85);
  }
  45% {
    transform: translateY(0) scale(1.14) rotate(1deg);
    filter: saturate(1.35) brightness(1.12);
  }
  72% {
    transform: translateY(0) scale(0.98);
  }
  100% {
    transform: translateY(0) scale(1) rotate(0);
    filter: saturate(1);
  }
}
@keyframes wtsLogoHalo {
  0% {
    opacity: 0;
    transform: scale(0.72);
  }
  45% {
    opacity: 1;
    transform: scale(1);
  }
  100% {
    opacity: 0;
    transform: scale(1.22);
  }
}
@media (prefers-reduced-motion: reduce) {
  .navbar-sticky.is-logo-visible .wts-nav-logo img,
  .navbar-sticky.is-logo-visible .wts-nav-logo::after {
    animation: none;
  }
}

/* ---------------------------------------------------------------------------
   WISTECH HOMEPAGE SHOWCASE — comparison UI sections
   --------------------------------------------------------------------------- */
.wts-showcase-section {
  color: var(--wts-text);
  background: radial-gradient(circle at 12% 10%, rgba(0, 255, 159, 0.12), transparent 30%), radial-gradient(circle at 82% 18%, rgba(106, 174, 255, 0.12), transparent 34%), var(--wts-section-bg);
}

.wts-showcase-orb {
  position: absolute;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.32;
  pointer-events: none;
  animation: wtsCtaDrift 12s ease-in-out infinite;
}

.wts-showcase-orb-1 {
  top: 6%;
  left: -80px;
  background: rgba(0, 255, 159, 0.36);
}

.wts-showcase-orb-2 {
  right: -90px;
  top: 36%;
  background: rgba(106, 174, 255, 0.35);
  animation-delay: -5s;
}

.wts-showcase-label,
.wts-showcase-kicker {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  border: 1px solid rgba(0, 255, 159, 0.24);
  border-radius: 999px;
  padding: 8px 14px;
  color: var(--wts-mint);
  background: rgba(0, 255, 159, 0.08);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.wts-showcase-title {
  color: var(--wts-heading);
  font-family: var(--font-display, "Space Grotesk", sans-serif);
  font-weight: 800;
}

.wts-showcase-lead {
  max-width: 760px;
  color: var(--wts-muted);
  font-size: 18px;
  line-height: 1.7;
}

.wts-showcase-slide,
.wts-showcase-card,
.wts-reason-card,
.wts-training-panel,
.wts-final-cta,
.wts-systems-visual,
.wts-trust-bar {
  border: 1px solid rgba(118, 255, 209, 0.14);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.035));
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.wts-showcase-slide,
.wts-showcase-card,
.wts-reason-card,
.wts-project-chip {
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.wts-showcase-slide:hover,
.wts-showcase-card:hover,
.wts-reason-card:hover,
.wts-project-chip:hover {
  transform: translateY(-7px);
  border-color: rgba(0, 255, 159, 0.38);
  box-shadow: 0 26px 70px rgba(0, 255, 159, 0.13);
}

.wts-showcase-slide h3,
.wts-showcase-card h4,
.wts-reason-card h4,
.wts-process-step h4 {
  color: var(--wts-heading);
}

.wts-showcase-section p,
.wts-showcase-slide p,
.wts-showcase-card p,
.wts-reason-card p,
.wts-process-step p {
  color: var(--wts-muted);
  line-height: 1.65;
}

.wts-showcase-btn-primary,
.wts-showcase-btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
}

.wts-showcase-btn-primary {
  color: var(--wts-button-text) !important;
  background: var(--wts-gradient);
  box-shadow: 0 14px 30px rgba(0, 255, 159, 0.18);
}

.wts-showcase-btn-secondary {
  color: var(--wts-heading) !important;
  border: 1px solid rgba(118, 255, 209, 0.22);
  background: rgba(255, 255, 255, 0.06);
}

.wts-showcase-btn-primary:hover,
.wts-showcase-btn-secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 38px rgba(0, 255, 159, 0.18);
}

.wts-trust-bar span,
.wts-industry-cloud span,
.wts-training-pill,
.wts-ecosystem-strip span {
  border: 1px solid rgba(118, 255, 209, 0.16);
  border-radius: 999px;
  padding: 10px 14px;
  color: var(--wts-heading);
  background: rgba(255, 255, 255, 0.06);
  font-weight: 700;
}

.wts-showcase-icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  color: var(--wts-mint);
  background: rgba(0, 255, 159, 0.1);
  font-size: 28px;
  box-shadow: inset 0 0 0 1px rgba(0, 255, 159, 0.18);
}

.wts-systems-visual {
  min-height: 360px;
  position: relative;
  overflow: hidden;
}

.wts-systems-visual svg {
  position: absolute;
  inset: 20px;
  z-index: 0;
}

.wts-systems-visual path {
  fill: none;
  stroke: rgba(0, 255, 159, 0.35);
  stroke-width: 2;
  stroke-dasharray: 8 10;
  animation: wtsDashFlow 6s linear infinite;
}

.wts-systems-node {
  position: relative;
  z-index: 1;
  display: inline-flex;
  margin: 12px;
  min-width: 92px;
  min-height: 92px;
  align-items: center;
  justify-content: center;
  border-radius: 28px;
  color: var(--wts-heading);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(118, 255, 209, 0.2);
  font-weight: 800;
}

.wts-systems-node-main {
  min-width: 140px;
  min-height: 140px;
  background: rgba(0, 255, 159, 0.14);
  color: var(--wts-mint);
}

@keyframes wtsDashFlow {
  to {
    stroke-dashoffset: -72;
  }
}
.wts-reason-card span {
  color: var(--wts-mint);
  font-weight: 900;
  letter-spacing: 0.08em;
}

.wts-process-timeline {
  position: relative;
  display: grid;
  gap: 18px;
}

.wts-process-timeline::before {
  content: "";
  position: absolute;
  left: 23px;
  top: 16px;
  bottom: 16px;
  width: 2px;
  background: linear-gradient(var(--wts-mint), rgba(106, 174, 255, 0.24));
}

.wts-process-step {
  position: relative;
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 18px;
  align-items: start;
}

.wts-process-step > span {
  z-index: 1;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #03101f;
  background: var(--wts-mint);
  font-weight: 900;
  box-shadow: 0 0 24px rgba(0, 255, 159, 0.24);
}

.wts-project-chip,
.wts-contact-grid > div {
  border: 1px solid rgba(118, 255, 209, 0.14);
  color: var(--wts-heading);
  background: rgba(255, 255, 255, 0.06);
  font-weight: 800;
}

.wts-ecosystem-strip span {
  min-width: 110px;
  text-align: center;
}

.wts-contact-grid {
  display: grid;
  gap: 12px;
}

.wts-contact-grid > div {
  border-radius: 20px;
  padding: 18px;
}

.wts-contact-grid strong,
.wts-contact-grid span {
  display: block;
}

.wts-contact-grid span {
  margin-top: 6px;
  color: var(--wts-muted);
  font-weight: 500;
}

/* Premium showcase refinement */
.wts-premium-showcase {
  isolation: isolate;
}

.wts-showcase-grid-bg {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(118, 255, 209, 0.045) 1px, transparent 1px), linear-gradient(90deg, rgba(118, 255, 209, 0.045) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(circle at center, #000 0%, transparent 78%);
  pointer-events: none;
  z-index: -1;
}

.wts-premium-hero,
.wts-products-panel,
.wts-premium-side-panel,
.wts-ecosystem-panel,
.wts-final-cta {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(118, 255, 209, 0.18);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.035)), radial-gradient(circle at top right, rgba(0, 255, 159, 0.12), transparent 34%);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.wts-premium-hero::before,
.wts-products-panel::before,
.wts-final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transform: translateX(-120%);
  animation: wtsPremiumSweep 8s ease-in-out infinite;
  pointer-events: none;
}

@keyframes wtsPremiumSweep {
  0%, 55% {
    transform: translateX(-120%);
  }
  75%, 100% {
    transform: translateX(120%);
  }
}
.wts-premium-stat {
  border: 1px solid rgba(118, 255, 209, 0.16);
  background: rgba(255, 255, 255, 0.06);
}

.wts-premium-stat strong,
.wts-premium-stat span {
  display: block;
}

.wts-premium-stat strong {
  color: var(--wts-mint);
  font-size: 28px;
  line-height: 1;
}

.wts-premium-stat span {
  color: var(--wts-muted);
  margin-top: 8px;
  font-size: 13px;
  font-weight: 700;
}

.wts-command-center {
  position: relative;
  min-height: 430px;
  border: 1px solid rgba(118, 255, 209, 0.22);
  background: radial-gradient(circle at 50% 48%, rgba(0, 255, 159, 0.14), transparent 34%), linear-gradient(145deg, rgba(5, 13, 33, 0.88), rgba(7, 18, 45, 0.7));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 24px 70px rgba(0, 0, 0, 0.24);
}

.wts-command-center .d-flex span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--wts-mint);
  box-shadow: 0 0 12px rgba(0, 255, 159, 0.5);
}

.wts-command-center strong {
  color: rgba(255, 255, 255, 0.72);
  font-size: 11px;
  letter-spacing: 0.12em;
}

.wts-command-core {
  position: relative;
  height: 300px;
}

.wts-command-ring {
  position: absolute;
  inset: 34px;
  border: 1px dashed rgba(0, 255, 159, 0.35);
  border-radius: 50%;
  animation: wtsRadarSpin 18s linear infinite;
}

.wts-command-ring-2 {
  inset: 78px;
  animation-direction: reverse;
  border-color: rgba(106, 174, 255, 0.32);
}

.wts-command-logo,
.wts-command-node {
  position: absolute;
  display: grid;
  place-items: center;
  border: 1px solid rgba(118, 255, 209, 0.22);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  color: var(--wts-heading);
}

.wts-command-logo {
  width: 112px;
  height: 112px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 34px;
  color: var(--wts-mint);
  font-size: 54px;
  font-weight: 900;
  box-shadow: 0 0 45px rgba(0, 255, 159, 0.2);
}

.wts-command-node {
  width: 88px;
  height: 88px;
  border-radius: 26px;
  gap: 4px;
  animation: wtsFloatSoft 5s ease-in-out infinite;
}

.wts-command-node i {
  color: var(--wts-mint);
  font-size: 25px;
}

.wts-command-node span {
  font-size: 12px;
  font-weight: 800;
}

.wts-command-node.node-1 {
  left: 8%;
  top: 18%;
}

.wts-command-node.node-2 {
  right: 4%;
  top: 22%;
  animation-delay: -1s;
}

.wts-command-node.node-3 {
  left: 13%;
  bottom: 9%;
  animation-delay: -2s;
}

.wts-command-node.node-4 {
  right: 12%;
  bottom: 4%;
  animation-delay: -3s;
}

@keyframes wtsFloatSoft {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
.wts-command-footer {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.wts-command-footer div {
  border-radius: 18px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(118, 255, 209, 0.14);
}

.wts-command-footer span,
.wts-command-footer strong {
  display: block;
}

.wts-command-footer span {
  color: var(--wts-muted);
  font-size: 12px;
}

.wts-command-footer strong {
  color: var(--wts-mint);
  margin-top: 4px;
}

.wts-premium-service-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(118, 255, 209, 0.14);
  background: rgba(255, 255, 255, 0.055);
  transition: transform 0.32s ease, border-color 0.32s ease, box-shadow 0.32s ease, background 0.32s ease;
}

.wts-premium-service-card::after {
  content: "";
  position: absolute;
  width: 160px;
  height: 160px;
  right: -70px;
  bottom: -70px;
  border-radius: 50%;
  background: rgba(0, 255, 159, 0.12);
  filter: blur(12px);
  opacity: 0;
  transition: opacity 0.32s ease;
}

.wts-premium-service-card:hover {
  transform: translateY(-10px);
  border-color: rgba(0, 255, 159, 0.44);
  background: rgba(0, 255, 159, 0.075);
  box-shadow: 0 28px 70px rgba(0, 255, 159, 0.14);
}

.wts-premium-service-card:hover::after {
  opacity: 1;
}

.wts-premium-service-card > span,
.wts-premium-service-card .d-flex > span {
  color: var(--wts-mint);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.wts-premium-service-card h3 {
  color: var(--wts-heading);
  font-size: 22px;
  margin-bottom: 12px;
}

.wts-premium-process-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.wts-premium-process {
  border: 1px solid rgba(118, 255, 209, 0.14);
  background: rgba(255, 255, 255, 0.055);
  transition: transform 0.28s ease, border-color 0.28s ease;
}

.wts-premium-process:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 255, 159, 0.4);
}

.wts-premium-process span {
  color: var(--wts-mint);
  font-weight: 900;
}

.wts-premium-process h3 {
  color: var(--wts-heading);
  margin-top: 16px;
}

.wts-product-marquee {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.wts-product-tile {
  display: flex;
  min-height: 110px;
  align-items: end;
  justify-content: space-between;
  gap: 12px;
  color: var(--wts-heading) !important;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.035));
  border: 1px solid rgba(118, 255, 209, 0.14);
  font-weight: 900;
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.wts-product-tile:hover {
  transform: translateY(-7px);
  border-color: rgba(0, 255, 159, 0.44);
  box-shadow: 0 22px 50px rgba(0, 255, 159, 0.12);
}

.wts-product-tile i {
  color: var(--wts-mint);
}

.wts-chip-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.wts-chip-cloud span,
.wts-ecosystem-strip span {
  border: 1px solid rgba(118, 255, 209, 0.18);
  background: rgba(255, 255, 255, 0.07);
  color: var(--wts-heading);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
  transition: transform 0.24s ease, background 0.24s ease, border-color 0.24s ease;
}

.wts-chip-cloud span:hover,
.wts-ecosystem-strip span:hover {
  transform: translateY(-3px);
  border-color: rgba(0, 255, 159, 0.42);
  background: rgba(0, 255, 159, 0.1);
}

@media (max-width: 991px) {
  .wts-product-marquee,
  .wts-premium-process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .wts-command-center {
    min-height: 380px;
  }
}
@media (max-width: 575px) {
  .wts-product-marquee,
  .wts-premium-process-grid {
    grid-template-columns: 1fr;
  }
  .wts-command-node {
    width: 74px;
    height: 74px;
  }
}

[data-bs-theme=dark] .navbar-sticky {
  background: rgba(6, 13, 36, 0.88) !important;
  border-bottom: 1px solid rgba(0, 255, 159, 0.12);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

[data-bs-theme=light] .navbar-sticky {
  background: rgba(255, 255, 255, 0.85) !important;
  border-bottom: 1px solid rgba(5, 175, 242, 0.12);
  box-shadow: 0 4px 30px rgba(1, 22, 64, 0.06);
}

/* ---------------------------------------------------------------------------
   8. MODERN PRELOADER
   --------------------------------------------------------------------------- */
#preloader {
  background: #060d24 !important;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

#preloader .loader-icon img {
  animation: wtsPreloaderPulse 1.5s ease-in-out infinite;
  filter: drop-shadow(0 0 20px rgba(0, 255, 159, 0.3));
}

@keyframes wtsPreloaderPulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.8;
  }
  50% {
    transform: scale(1.08);
    opacity: 1;
  }
}
#preloader .loader-icon p {
  color: #00ff9f !important;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-size: 11px;
  animation: wtsPreloaderText 2s ease-in-out infinite;
}

@keyframes wtsPreloaderText {
  0%, 100% {
    opacity: 0.5;
  }
  50% {
    opacity: 1;
  }
}
/* ---------------------------------------------------------------------------
   9. FOOTER — Modern glass bottom
   --------------------------------------------------------------------------- */
footer.footer {
  position: relative;
  overflow: hidden;
}

[data-bs-theme=dark] footer.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 255, 159, 0.4), transparent);
}

footer .section-footer a {
  transition: all 0.25s ease;
  text-decoration: none;
}

[data-bs-theme=dark] footer .section-footer a:hover {
  color: var(--wts-mint) !important;
  text-shadow: 0 0 12px rgba(0, 255, 159, 0.3);
}

/* ---------------------------------------------------------------------------
   10. BLOG CARDS — Modern tech cards
   --------------------------------------------------------------------------- */
[data-bs-theme=dark] .post-item,
[data-bs-theme=dark] .blog-post-item {
  background: rgba(8, 18, 50, 0.75) !important;
  border: 1px solid rgba(0, 255, 159, 0.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

[data-bs-theme=dark] .post-item:hover,
[data-bs-theme=dark] .blog-post-item:hover {
  transform: translateY(-8px);
  border-color: rgba(0, 255, 159, 0.35);
  box-shadow: 0 20px 50px rgba(0, 255, 159, 0.14);
}

[data-bs-theme=dark] .post-item img,
[data-bs-theme=dark] .blog-post-item img {
  border-radius: 20px 20px 0 0;
}

/* ---------------------------------------------------------------------------
   11. CONTACT FORM — Modern tech inputs
   --------------------------------------------------------------------------- */
.contact-form .form-control,
.contact-form input,
.contact-form textarea,
.contact-form select {
  background: rgba(255, 255, 255, 0.05) !important;
  border: 1px solid rgba(0, 255, 159, 0.15) !important;
  border-radius: 14px !important;
  padding: 16px 20px !important;
  font-size: 15px;
  transition: all 0.3s ease;
}

.contact-form .form-control:focus,
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--wts-mint) !important;
  box-shadow: 0 0 0 3px rgba(0, 255, 159, 0.1), 0 0 20px rgba(0, 255, 159, 0.06) !important;
}

[data-bs-theme=dark] .contact-form .form-control,
[data-bs-theme=dark] .contact-form input,
[data-bs-theme=dark] .contact-form textarea {
  color: #e8f0ff !important;
  background: rgba(8, 18, 50, 0.5) !important;
}

.contact-form label {
  font-weight: 600;
  margin-bottom: 8px;
  font-size: 14px;
}

/* ---------------------------------------------------------------------------
   12. PRICING CARDS — Highlight featured plan
   --------------------------------------------------------------------------- */
[data-bs-theme=dark] .pricing-item,
[data-bs-theme=dark] .pricing-plan-item {
  background: rgba(8, 18, 50, 0.75) !important;
  border: 1px solid rgba(0, 255, 159, 0.1) !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

[data-bs-theme=dark] .pricing-item:hover,
[data-bs-theme=dark] .pricing-plan-item:hover {
  transform: translateY(-8px);
  border-color: rgba(0, 255, 159, 0.4) !important;
  box-shadow: 0 24px 60px rgba(0, 255, 159, 0.18);
}

[data-bs-theme=dark] .pricing-item.featured,
[data-bs-theme=dark] .pricing-plan-item.featured {
  border-color: rgba(0, 255, 159, 0.4) !important;
  box-shadow: 0 0 40px rgba(0, 255, 159, 0.15), 0 24px 60px rgba(0, 255, 159, 0.1);
  position: relative;
}

[data-bs-theme=dark] .pricing-item.featured::before,
[data-bs-theme=dark] .pricing-plan-item.featured::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #00ff9f, #05aff2, #00ff9f);
  background-size: 200% 100%;
  animation: wtsGradientShift 3s ease infinite;
  border-radius: 20px 20px 0 0;
}

/* ---------------------------------------------------------------------------
   13. TEAM CARDS — Modern tech style
   --------------------------------------------------------------------------- */
[data-bs-theme=dark] .team-item,
[data-bs-theme=dark] .team-card {
  background: rgba(8, 18, 50, 0.75) !important;
  border: 1px solid rgba(0, 255, 159, 0.1) !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

[data-bs-theme=dark] .team-item:hover,
[data-bs-theme=dark] .team-card:hover {
  transform: translateY(-8px);
  border-color: rgba(0, 255, 159, 0.35);
  box-shadow: 0 20px 50px rgba(0, 255, 159, 0.14);
}

[data-bs-theme=dark] .team-item img,
[data-bs-theme=dark] .team-card img {
  border-radius: 20px 20px 0 0;
}

/* ---------------------------------------------------------------------------
   14. ENHANCED BUTTON STYLES — All buttons get modern treatment
   --------------------------------------------------------------------------- */
.btn-primary,
.btn-secondary,
.btn-info,
.btn-success,
.btn-warning,
.btn-danger {
  border-radius: 9999px !important;
  font-weight: 700 !important;
  padding: 12px 28px !important;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
  text-transform: none;
  letter-spacing: 0.3px;
}

.btn-primary:hover,
.btn-secondary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(5, 175, 242, 0.3) !important;
}

[data-bs-theme=dark] .btn-outline-secondary {
  border-color: rgba(0, 255, 159, 0.4) !important;
  color: #e8f0ff !important;
}

[data-bs-theme=dark] .btn-outline-secondary:hover {
  background: rgba(0, 255, 159, 0.12) !important;
  border-color: var(--wts-mint) !important;
  color: var(--wts-mint) !important;
  box-shadow: 0 0 20px rgba(0, 255, 159, 0.2);
}

/* ---------------------------------------------------------------------------
   15. SECTION TITLE ENHANCEMENTS
   --------------------------------------------------------------------------- */
.section-title h2,
.section-title h3,
h2.ds-3,
h3.ds-3 {
  letter-spacing: -0.03em;
  line-height: 1.12;
}

[data-bs-theme=dark] .section-title h2,
[data-bs-theme=dark] h2.ds-3 {
  text-shadow: 0 4px 20px rgba(5, 175, 242, 0.15);
}

/* ---------------------------------------------------------------------------
   16. SECTION BACKGROUND — Subtle tech grid for dark sections
   --------------------------------------------------------------------------- */
[data-bs-theme=dark] section:not(.hero-banner):not(#preloader) {
  position: relative;
}

[data-bs-theme=dark] section:not(.hero-banner):not(#preloader)::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(to right, rgba(5, 175, 242, 0.03) 1px, transparent 1px), linear-gradient(to bottom, rgba(5, 175, 242, 0.03) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
  z-index: 0;
}

[data-bs-theme=dark] section > .container,
[data-bs-theme=dark] section > .container-fluid {
  position: relative;
  z-index: 1;
}

/* ---------------------------------------------------------------------------
   17. BREADCRUMB — Modern pill style
   --------------------------------------------------------------------------- */
.breadcrumb {
  gap: 6px;
}

.breadcrumb .breadcrumb-item {
  font-size: 14px;
}

[data-bs-theme=dark] .breadcrumb .breadcrumb-item a {
  color: #8ba4c8;
}

[data-bs-theme=dark] .breadcrumb .breadcrumb-item.active {
  color: var(--wts-mint);
}

[data-bs-theme=dark] .breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  color: rgba(255, 255, 255, 0.25);
}

/* ---------------------------------------------------------------------------
   18. SCROLL TO TOP — Modern floating button
   --------------------------------------------------------------------------- */
.scroll-to-top {
  width: 44px;
  height: 44px;
  border-radius: 50% !important;
  background: linear-gradient(135deg, #00ff9f, #05aff2) !important;
  color: #011640 !important;
  box-shadow: 0 4px 20px rgba(0, 255, 159, 0.35);
  border: none;
  transition: all 0.3s ease;
}

.scroll-to-top:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 255, 159, 0.5);
  color: #011640 !important;
}

/* ---------------------------------------------------------------------------
   19. MOBILE MENU — Modern glass offcanvas
   --------------------------------------------------------------------------- */
[data-bs-theme=dark] .mobile-header-wrapper-style {
  background: rgba(6, 13, 36, 0.96) !important;
  backdrop-filter: blur(24px) saturate(160%);
  -webkit-backdrop-filter: blur(24px) saturate(160%);
  border-right: 1px solid rgba(0, 255, 159, 0.12);
}

[data-bs-theme=dark] .mobile-header-wrapper-style .mobile-menu a {
  color: #c8d8f0 !important;
  font-weight: 500;
}

[data-bs-theme=dark] .mobile-header-wrapper-style .mobile-menu a:hover {
  color: var(--wts-mint) !important;
  background: rgba(0, 255, 159, 0.06);
  border-radius: 8px;
}

/* ---------------------------------------------------------------------------
   20. SEARCH OVERLAY — Modern tech style
   --------------------------------------------------------------------------- */
[data-bs-theme=dark] .offcanvasTop {
  background: rgba(6, 13, 36, 0.95) !important;
  backdrop-filter: blur(30px) saturate(160%);
  -webkit-backdrop-filter: blur(30px) saturate(160%);
}

[data-bs-theme=dark] .offcanvasTop input.form-control {
  background: rgba(255, 255, 255, 0.06) !important;
  border: 1px solid rgba(0, 255, 159, 0.2) !important;
  color: #e8f0ff !important;
  border-radius: 9999px !important;
  min-height: 64px;
  font-size: 18px;
}

[data-bs-theme=dark] .offcanvasTop input.form-control:focus {
  border-color: var(--wts-mint) !important;
  box-shadow: 0 0 0 3px rgba(0, 255, 159, 0.1);
}

[data-bs-theme=dark] .offcanvasTop .btn-primary {
  background: linear-gradient(135deg, #00ff9f, #05aff2) !important;
  color: #011640 !important;
  border: none !important;
}

/* ---------------------------------------------------------------------------
   21. SOCIAL LINKS — Tech glow on hover
   --------------------------------------------------------------------------- */
[data-bs-theme=dark] .social-icons a,
[data-bs-theme=dark] .social-links a {
  transition: all 0.3s ease;
}

[data-bs-theme=dark] .social-icons a:hover,
[data-bs-theme=dark] .social-links a:hover {
  transform: translateY(-3px);
  filter: drop-shadow(0 0 12px rgba(0, 255, 159, 0.35));
}

/* ---------------------------------------------------------------------------
   22. IMAGE BORDERS — Tech accent for images in content
   --------------------------------------------------------------------------- */
[data-bs-theme=dark] .content img,
[data-bs-theme=dark] .post-content img {
  border-radius: 16px;
  border: 1px solid rgba(0, 255, 159, 0.1);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

/* ---------------------------------------------------------------------------
   23. PARTNER LOGOS — Modern grayscale with hover color
   --------------------------------------------------------------------------- */
.partner-item img {
  filter: grayscale(100%);
  opacity: 0.5;
  transition: all 0.4s ease;
}

.partner-item:hover img {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.05);
}

[data-bs-theme=dark] .partner-item img {
  filter: grayscale(100%) brightness(1.5);
}

[data-bs-theme=dark] .partner-item:hover img {
  filter: grayscale(0%) brightness(1);
}

/* ---------------------------------------------------------------------------
   24. STAT COUNTER — Gradient animated numbers
   --------------------------------------------------------------------------- */
.stat-number,
.odometer {
  background: linear-gradient(135deg, #00ff9f, #05aff2);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: wtsGradientShift 5s ease infinite;
  font-weight: 800 !important;
}

/* ---------------------------------------------------------------------------
   25. AOS CUSTOMIZATION — Smoother scroll animations
   --------------------------------------------------------------------------- */
[data-aos] {
  transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1) !important;
}

/* ---------------------------------------------------------------------------
   26. DARK BODY — Deep navy base
   --------------------------------------------------------------------------- */
[data-bs-theme=dark] body {
  background-color: #060d24 !important;
}

/* ---------------------------------------------------------------------------
   27. SECTION DIVIDER GLOW
   --------------------------------------------------------------------------- */
[data-bs-theme=dark] hr.section-divider {
  border: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 255, 159, 0.25), transparent);
}

/* ==========================================================================
   WISTECH DESIGN SYSTEM v8.0 — Advanced UI Blocks & Animations
   ========================================================================== */
/* ---------------------------------------------------------------------------
   1. SWIPER SLIDER ENHANCEMENTS — Fade effect, ken burns, custom nav
   --------------------------------------------------------------------------- */
.wts-swiper-slider .swiper-slide {
  overflow: hidden;
}

.wts-swiper-slider .swiper-slide-active {
  z-index: 2;
}

.wts-swiper-slider .swiper-slide img.swiper-ken-burns {
  transition: transform 8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.wts-swiper-slider .swiper-slide-active img.swiper-ken-burns {
  transform: scale(1.08);
}

/* Slide animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
/* Swiper pagination — counter-style bullets */
.wts-swiper-slider .swiper-pagination {
  display: flex;
  align-items: center;
  gap: 4px;
  font-family: var(--font-display, "Space Grotesk", sans-serif);
}

.wts-swiper-slider .swiper-pagination-bullet {
  width: auto;
  height: auto;
  background: transparent;
  opacity: 0.4;
  border-radius: 0;
  display: inline-flex;
  align-items: center;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--wts-muted);
  transition: all 0.3s ease;
  padding: 4px 6px;
}

.wts-swiper-slider .swiper-pagination-bullet .swiper-pagination-sep {
  margin: 0 2px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.wts-swiper-slider .swiper-pagination-bullet .swiper-pagination-total {
  display: none;
}

.wts-swiper-slider .swiper-pagination-bullet-active {
  opacity: 1;
  color: var(--wts-mint);
  font-size: 18px;
}

.wts-swiper-slider .swiper-pagination-bullet-active .swiper-pagination-sep {
  opacity: 0.3;
}

/* Swiper navigation arrows */
.wts-swiper-slider .swiper-button-prev,
.wts-swiper-slider .swiper-button-next {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--wts-muted);
  transition: all 0.3s ease;
}

.wts-swiper-slider .swiper-button-prev::after,
.wts-swiper-slider .swiper-button-next::after {
  font-size: 16px;
  font-weight: 700;
}

.wts-swiper-slider .swiper-button-prev:hover,
.wts-swiper-slider .swiper-button-next:hover {
  background: var(--wts-gradient);
  color: #011640;
  border-color: transparent;
  box-shadow: 0 0 20px rgba(0, 255, 159, 0.3);
  transform: scale(1.08);
}

[data-bs-theme=dark] .wts-swiper-slider .swiper-button-prev,
[data-bs-theme=dark] .wts-swiper-slider .swiper-button-next {
  color: #e8f0ff;
}

/* Swiper progress bar */
.wts-swiper-slider .swiper-progress-fill {
  box-shadow: 0 0 10px rgba(0, 255, 159, 0.5);
}

/* ---------------------------------------------------------------------------
   2. PORTFOLIO MASONRY GRID — Modern project showcase
   --------------------------------------------------------------------------- */
.wts-portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 24px;
}

.wts-portfolio-grid.wts-masonry {
  columns: 3;
  column-gap: 24px;
}

.wts-portfolio-grid.wts-masonry .wts-portfolio-item {
  break-inside: avoid;
  margin-bottom: 24px;
  display: inline-block;
  width: 100%;
}

.wts-portfolio-item {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.45s cubic-bezier(0.165, 0.84, 0.44, 1);
  cursor: pointer;
}

[data-bs-theme=dark] .wts-portfolio-item {
  background: rgba(8, 18, 50, 0.7);
  border: 1px solid rgba(0, 255, 159, 0.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

[data-bs-theme=light] .wts-portfolio-item {
  background: #fff;
  border: 1px solid rgba(5, 175, 242, 0.1);
}

.wts-portfolio-item:hover {
  transform: translateY(-8px);
  border-color: rgba(0, 255, 159, 0.35);
  box-shadow: 0 20px 50px rgba(0, 255, 159, 0.14);
}

.wts-portfolio-item img,
.wts-portfolio-item .wts-portfolio-thumb {
  width: 100%;
  display: block;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.wts-portfolio-item:hover img,
.wts-portfolio-item:hover .wts-portfolio-thumb {
  transform: scale(1.05);
}

.wts-portfolio-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
  background: linear-gradient(transparent, rgba(1, 22, 64, 0.85));
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.wts-portfolio-item:hover .wts-portfolio-overlay {
  transform: translateY(0);
  opacity: 1;
}

.wts-portfolio-overlay .wts-portfolio-category {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--wts-mint);
  display: block;
  margin-bottom: 4px;
}

.wts-portfolio-overlay .wts-portfolio-title {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}

.wts-portfolio-overlay .wts-portfolio-desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Portfolio filter tabs */
.wts-portfolio-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 40px;
}

.wts-portfolio-filters .wts-filter-btn {
  padding: 8px 22px;
  border-radius: 9999px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  background: transparent;
}

[data-bs-theme=dark] .wts-portfolio-filters .wts-filter-btn {
  color: #8ba4c8;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

[data-bs-theme=dark] .wts-portfolio-filters .wts-filter-btn:hover,
[data-bs-theme=dark] .wts-portfolio-filters .wts-filter-btn.active {
  background: var(--wts-gradient);
  color: #011640;
  border-color: transparent;
  box-shadow: 0 0 20px rgba(0, 255, 159, 0.2);
}

/* ---------------------------------------------------------------------------
   3. ENHANCED PARTNER LOGOS — Emphasis & glow
   --------------------------------------------------------------------------- */
.partners-slider,
.partners-slider-start,
.partners-slider-end {
  padding: 20px 0;
}

[data-bs-theme=dark] .partner-item {
  padding: 16px 24px;
  border-radius: 16px;
  transition: all 0.4s ease;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid transparent;
}

[data-bs-theme=dark] .partner-item:hover {
  background: rgba(0, 255, 159, 0.06);
  border-color: rgba(0, 255, 159, 0.2);
  box-shadow: 0 0 30px rgba(0, 255, 159, 0.08);
  transform: translateY(-4px);
}

[data-bs-theme=dark] .partner-item img {
  filter: grayscale(100%) brightness(1.3);
  opacity: 0.5;
  transition: all 0.5s ease;
}

[data-bs-theme=dark] .partner-item:hover img {
  filter: grayscale(0%) brightness(1);
  opacity: 1;
  transform: scale(1.06);
}

[data-bs-theme=light] .partner-item {
  padding: 16px 24px;
  border-radius: 12px;
  transition: all 0.4s ease;
}

[data-bs-theme=light] .partner-item:hover {
  background: rgba(5, 175, 242, 0.04);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(1, 22, 64, 0.06);
}

[data-bs-theme=light] .partner-item img {
  filter: grayscale(100%);
  opacity: 0.6;
  transition: all 0.5s ease;
}

[data-bs-theme=light] .partner-item:hover img {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.06);
}

/* Partner section title enhancement */
.shortcode-partners h5,
.shortcode-partners .section-title h5 {
  font-size: 14px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0.8;
}

/* ---------------------------------------------------------------------------
   4. MEGA MENU IMAGE ENHANCEMENT
   --------------------------------------------------------------------------- */
.wts-mega-menu__group .wts-mega-menu__thumb {
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 12px;
  border: 1px solid rgba(0, 255, 159, 0.1);
  transition: all 0.3s ease;
}

.wts-mega-menu__group .wts-mega-menu__thumb img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}

.wts-mega-menu__group:hover .wts-mega-menu__thumb img {
  transform: scale(1.06);
}

.wts-mega-menu__group .wts-mega-menu__thumb:hover {
  border-color: rgba(0, 255, 159, 0.35);
  box-shadow: 0 8px 24px rgba(0, 255, 159, 0.1);
}

/* Mega menu grid layout enhancement */
.wts-mega-menu {
  border-radius: 20px !important;
  overflow: hidden;
}

.wts-mega-menu__group {
  padding: 12px;
  border-radius: 14px;
  transition: all 0.35s ease;
}

.wts-mega-menu__group:hover {
  background: rgba(0, 255, 159, 0.04);
}

.wts-mega-menu__group .wts-mega-menu__title {
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 8px;
  display: block;
}

[data-bs-theme=dark] .wts-mega-menu__group .wts-mega-menu__title {
  color: #ffffff;
}

.wts-mega-menu__group .wts-mega-menu__desc {
  font-size: 12px;
  opacity: 0.7;
  margin-bottom: 8px;
  display: block;
  line-height: 1.5;
}

.wts-mega-menu__group ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.wts-mega-menu__group ul li a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 8px;
  font-size: 13px;
  border-radius: 8px;
  transition: all 0.2s ease;
  text-decoration: none;
}

[data-bs-theme=dark] .wts-mega-menu__group ul li a {
  color: #8ba4c8;
}

[data-bs-theme=dark] .wts-mega-menu__group ul li a:hover {
  color: var(--wts-mint);
  background: rgba(0, 255, 159, 0.06);
  padding-left: 14px;
}

[data-bs-theme=dark] .wts-mega-menu__group ul li a i {
  width: 16px;
  text-align: center;
  color: var(--wts-mint);
  opacity: 0.6;
}

/* ---------------------------------------------------------------------------
   5. PRICING PLAN ENHANCEMENT — Modern tech pricing
   --------------------------------------------------------------------------- */
[data-bs-theme=dark] .pricing-plan-item {
  background: rgba(8, 18, 50, 0.75) !important;
  border: 1px solid rgba(0, 255, 159, 0.1) !important;
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  border-radius: 24px !important;
  padding: 32px !important;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
  overflow: hidden;
}

[data-bs-theme=dark] .pricing-plan-item:hover {
  transform: translateY(-10px);
  border-color: rgba(0, 255, 159, 0.35) !important;
  box-shadow: 0 28px 70px rgba(0, 255, 159, 0.15), 0 0 40px rgba(5, 175, 242, 0.1);
}

[data-bs-theme=dark] .pricing-plan-item.featured,
[data-bs-theme=dark] .pricing-plan-item.is_popular {
  border-color: rgba(0, 255, 159, 0.4) !important;
  box-shadow: 0 0 50px rgba(0, 255, 159, 0.12), 0 28px 70px rgba(0, 255, 159, 0.1);
  background: linear-gradient(145deg, rgba(8, 18, 50, 0.9), rgba(5, 20, 60, 0.85)) !important;
}

[data-bs-theme=dark] .pricing-plan-item.featured::before,
[data-bs-theme=dark] .pricing-plan-item.is_popular::before {
  content: "POPULAR";
  position: absolute;
  top: 16px;
  right: -32px;
  background: var(--wts-gradient);
  color: #011640;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  padding: 4px 40px;
  transform: rotate(45deg);
  box-shadow: 0 4px 12px rgba(0, 255, 159, 0.25);
}

.pricing-plan-item .plan-price {
  font-family: var(--font-display, "Space Grotesk", sans-serif);
  font-size: 48px;
  font-weight: 800;
  line-height: 1;
}

[data-bs-theme=dark] .pricing-plan-item .plan-price {
  background: var(--wts-gradient);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: wtsGradientShift 5s ease infinite;
}

/* ---------------------------------------------------------------------------
   6. ENHANCED SERVICE CARDS — Expanded botble native blocks
   --------------------------------------------------------------------------- */
[data-bs-theme=dark] .shortcode-services .card-service {
  padding: 28px !important;
}

[data-bs-theme=dark] .shortcode-services .card-service:hover {
  transform: translateY(-8px);
}

.shortcode-services .card-service .service-icon {
  width: 56px;
  height: 56px;
  object-fit: contain;
}

/* ---------------------------------------------------------------------------
   7. BLOG CARD REFINEMENT
   --------------------------------------------------------------------------- */
[data-bs-theme=dark] .blog-post-item,
[data-bs-theme=dark] .post-item {
  border-radius: 20px;
  overflow: hidden;
  background: rgba(8, 18, 50, 0.75) !important;
  border: 1px solid rgba(0, 255, 159, 0.08) !important;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

[data-bs-theme=dark] .blog-post-item:hover,
[data-bs-theme=dark] .post-item:hover {
  transform: translateY(-8px);
  border-color: rgba(0, 255, 159, 0.3) !important;
  box-shadow: 0 20px 50px rgba(0, 255, 159, 0.12);
}

[data-bs-theme=dark] .blog-post-item img,
[data-bs-theme=dark] .post-item img {
  border-radius: 20px 20px 0 0;
}

/* ---------------------------------------------------------------------------
   8. COUNTER / STAT NUMBERS — Gradient animated
   --------------------------------------------------------------------------- */
.wts-stat-number {
  background: var(--wts-gradient);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: wtsGradientShift 5s ease infinite;
  font-family: var(--font-display, "Space Grotesk", sans-serif);
  font-weight: 800;
  filter: drop-shadow(0 0 18px rgba(0, 255, 159, 0.15));
}

/* ---------------------------------------------------------------------------
   9. FEATURE ITEM ICON — Enhanced glow
   --------------------------------------------------------------------------- */
[data-bs-theme=dark] .feature-item .icon-shape {
  background: linear-gradient(135deg, rgba(0, 255, 159, 0.1), rgba(5, 175, 242, 0.08)) !important;
  border: 1px solid rgba(0, 255, 159, 0.15);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

[data-bs-theme=dark] .feature-item:hover .icon-shape {
  background: linear-gradient(135deg, rgba(0, 255, 159, 0.22), rgba(5, 175, 242, 0.18)) !important;
  border-color: rgba(0, 255, 159, 0.4);
  box-shadow: 0 0 30px rgba(0, 255, 159, 0.2);
  transform: scale(1.08) rotate(-5deg);
}

/* ---------------------------------------------------------------------------
   10. SIMPLE SLIDER ENHANCEMENT
   --------------------------------------------------------------------------- */
[data-bs-theme=dark] .slider-two .swiper-slide {
  border-radius: 24px;
  overflow: hidden;
}

[data-bs-theme=dark] .slider-two .swiper-slide .slide-content {
  background: linear-gradient(transparent, rgba(1, 22, 64, 0.8));
  padding: 40px;
  border-radius: 0 0 24px 24px;
}

/* ---------------------------------------------------------------------------
   11. TEAM CARD ENHANCEMENT
   --------------------------------------------------------------------------- */
[data-bs-theme=dark] .team-item,
[data-bs-theme=dark] .shortcode-teams .team-card {
  background: rgba(8, 18, 50, 0.75) !important;
  border: 1px solid rgba(0, 255, 159, 0.08) !important;
  border-radius: 20px;
  overflow: hidden;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

[data-bs-theme=dark] .team-item:hover,
[data-bs-theme=dark] .shortcode-teams .team-card:hover {
  transform: translateY(-8px);
  border-color: rgba(0, 255, 159, 0.3) !important;
  box-shadow: 0 20px 50px rgba(0, 255, 159, 0.12);
}

[data-bs-theme=dark] .team-item img,
[data-bs-theme=dark] .shortcode-teams .team-card img {
  border-radius: 20px 20px 0 0;
}

/* ---------------------------------------------------------------------------
   12. CALL-TO-ACTION ENHANCEMENT
   --------------------------------------------------------------------------- */
[data-bs-theme=dark] .shortcode-call-to-action {
  border-radius: 24px;
  overflow: hidden;
}

/* ---------------------------------------------------------------------------
   13. TESTIMONIAL CARD GLOW
   --------------------------------------------------------------------------- */
[data-bs-theme=dark] .shortcode-testimonials [class*=bg-neutral-100] {
  background: rgba(8, 18, 50, 0.65) !important;
  border: 1px solid rgba(0, 255, 159, 0.08);
  border-radius: 20px;
}

[data-bs-theme=dark] .shortcode-testimonials [class*=bg-neutral-100]:hover {
  border-color: rgba(0, 255, 159, 0.3);
  box-shadow: 0 16px 40px rgba(0, 255, 159, 0.1);
}

/* ---------------------------------------------------------------------------
   14. RESPONSIVE
   --------------------------------------------------------------------------- */
@media (max-width: 991px) {
  .wts-portfolio-grid.wts-masonry {
    columns: 2;
  }
  .wts-swiper-slider .swiper-button-prev,
  .wts-swiper-slider .swiper-button-next {
    display: none;
  }
}
@media (max-width: 575px) {
  .wts-portfolio-grid {
    grid-template-columns: 1fr;
  }
  .wts-portfolio-grid.wts-masonry {
    columns: 1;
  }
}
/* ==========================================================================
   WISTECH DESIGN SYSTEM v9.0 — Comprehensive UI Polish
   ========================================================================== */
/* ---------------------------------------------------------------------------
   1. SIMPLE SLIDER — Glassmorphism slide content, ken burns, gradient overlay
   --------------------------------------------------------------------------- */
.shortcode-simple-slider .swiper-slide .img-pull {
  position: relative;
  overflow: hidden;
}

.shortcode-simple-slider .swiper-slide .img-pull::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(1, 22, 64, 0.85) 0%, rgba(1, 22, 64, 0.4) 50%, transparent 100%);
  z-index: 1;
  pointer-events: none;
}

.shortcode-simple-slider .backdrop-filter {
  background: rgba(8, 18, 50, 0.7) !important;
  backdrop-filter: blur(24px) saturate(160%);
  -webkit-backdrop-filter: blur(24px) saturate(160%);
  border: 1px solid rgba(0, 255, 159, 0.12);
  border-radius: 24px !important;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.3);
}

[data-bs-theme=dark] .shortcode-simple-slider .backdrop-filter h3.ds-3 {
  color: #ffffff !important;
  text-shadow: 0 4px 20px rgba(5, 175, 242, 0.2);
}

.shortcode-simple-slider .swiper-slide img {
  transition: transform 8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.shortcode-simple-slider .swiper-slide-active img {
  transform: scale(1.08);
}

/* Simple slider nav arrows */
.slider-two-swiper-button-prev,
.slider-two-swiper-button-next {
  width: 52px !important;
  height: 52px !important;
  border-radius: 50% !important;
  background: rgba(8, 18, 50, 0.7) !important;
  backdrop-filter: blur(16px) !important;
  -webkit-backdrop-filter: blur(16px) !important;
  border: 1px solid rgba(0, 255, 159, 0.2) !important;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2) !important;
  transition: all 0.3s ease !important;
}

.slider-two-swiper-button-prev::after,
.slider-two-swiper-button-next::after {
  display: none;
}

.slider-two-swiper-button-prev i,
.slider-two-swiper-button-next i {
  font-size: 20px !important;
  color: var(--wts-mint) !important;
}

.slider-two-swiper-button-prev:hover,
.slider-two-swiper-button-next:hover {
  background: var(--wts-gradient) !important;
  border-color: transparent !important;
  box-shadow: 0 0 24px rgba(0, 255, 159, 0.3) !important;
  transform: scale(1.1);
}

.slider-two-swiper-button-prev:hover i,
.slider-two-swiper-button-next:hover i {
  color: #011640 !important;
}

/* Simple slider pagination */
.slider-two-swiper-pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.slider-two-swiper-pagination .swiper-pagination-bullet {
  width: 36px;
  height: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.2);
  opacity: 1;
  transition: all 0.35s ease;
}

.slider-two-swiper-pagination .swiper-pagination-bullet-active {
  width: 56px;
  background: var(--wts-gradient);
  box-shadow: 0 0 16px rgba(0, 255, 159, 0.4);
}

/* Simple slider subtitle badge */
.shortcode-simple-slider .bg-white.bg-opacity-50 {
  background: rgba(0, 255, 159, 0.12) !important;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-color: rgba(0, 255, 159, 0.3) !important;
}

/* ---------------------------------------------------------------------------
   2. TECH BREADCRUMB — Glass pill style with gradient accent
   --------------------------------------------------------------------------- */
.section-page-header {
  position: relative;
  overflow: hidden;
  padding: 28px 0 !important;
}

.section-page-header h3 {
  font-family: var(--font-display, "Space Grotesk", sans-serif);
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

[data-bs-theme=dark] .section-page-header h3 {
  color: #ffffff;
  text-shadow: 0 4px 16px rgba(5, 175, 242, 0.15);
}

.section-page-header ol {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  align-items: center;
}

.section-page-header ol li a {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

[data-bs-theme=dark] .section-page-header ol li a {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #8ba4c8;
}

[data-bs-theme=dark] .section-page-header ol li a:hover {
  background: rgba(0, 255, 159, 0.1);
  border-color: rgba(0, 255, 159, 0.3);
  color: var(--wts-mint);
}

.section-page-header ol li:last-child p {
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  background: var(--wts-gradient);
  color: #011640 !important;
}

[data-bs-theme=dark] .section-page-header ol li:last-child p {
  box-shadow: 0 0 16px rgba(0, 255, 159, 0.2);
}

.section-page-header ol li svg {
  display: none;
}

/* Breadcrumb bouncing blobs enhancement */
.bouncing-blobs-container .bouncing-blob--green {
  background: radial-gradient(circle, rgba(0, 255, 159, 0.3), transparent 70%);
  width: 300px;
  height: 300px;
  animation: wtsCtaDrift 12s ease-in-out infinite alternate;
}

.bouncing-blobs-container .bouncing-blob--primary {
  background: radial-gradient(circle, rgba(5, 175, 242, 0.25), transparent 70%);
  width: 250px;
  height: 250px;
  animation: wtsCtaDrift 15s ease-in-out infinite alternate-reverse;
}

/* ---------------------------------------------------------------------------
   3. SOCIAL ICONS — Glass pill with glow hover
   --------------------------------------------------------------------------- */
.socials ul li a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
  text-decoration: none;
}

[data-bs-theme=dark] .socials ul li a {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #8ba4c8;
}

[data-bs-theme=dark] .socials ul li a:hover {
  background: var(--wts-gradient);
  color: #011640;
  border-color: transparent;
  box-shadow: 0 0 24px rgba(0, 255, 159, 0.3);
  transform: translateY(-4px) scale(1.1);
}

[data-bs-theme=dark] .socials ul li a svg,
[data-bs-theme=dark] .socials ul li a img {
  width: 16px;
  height: 16px;
  transition: all 0.3s ease;
}

[data-bs-theme=dark] .socials ul li a:hover svg,
[data-bs-theme=dark] .socials ul li a:hover img {
  filter: brightness(0) saturate(100%);
}

/* Social pill container */
[data-bs-theme=dark] .socials.bg-white,
[data-bs-theme=dark] .socials.rotate-90,
[data-bs-theme=dark] .socials,
[data-bs-theme=dark] div.socials {
  background: rgba(8, 18, 50, 0.8) !important;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(0, 255, 159, 0.12) !important;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

/* ---------------------------------------------------------------------------
   4. ENHANCED CONTACT FORM — All 3 styles with glassmorphism inputs
   --------------------------------------------------------------------------- */
/* Shared contact form base */
.contact-form input,
.contact-form textarea,
.contact-form select,
.shortcode-contact-form input,
.shortcode-contact-form textarea,
.shortcode-contact-form select {
  border-radius: 14px !important;
  padding: 16px 20px !important;
  font-size: 15px !important;
  transition: all 0.3s ease !important;
}

[data-bs-theme=dark] .contact-form input,
[data-bs-theme=dark] .contact-form textarea,
[data-bs-theme=dark] .shortcode-contact-form input,
[data-bs-theme=dark] .shortcode-contact-form textarea {
  background: rgba(255, 255, 255, 0.04) !important;
  border: 1px solid rgba(0, 255, 159, 0.12) !important;
  color: #e8f0ff !important;
}

[data-bs-theme=dark] .contact-form input:focus,
[data-bs-theme=dark] .contact-form textarea:focus,
[data-bs-theme=dark] .shortcode-contact-form input:focus,
[data-bs-theme=dark] .shortcode-contact-form textarea:focus {
  border-color: var(--wts-mint) !important;
  box-shadow: 0 0 0 3px rgba(0, 255, 159, 0.08), 0 0 24px rgba(0, 255, 159, 0.06) !important;
  background: rgba(0, 255, 159, 0.04) !important;
}

[data-bs-theme=dark] .contact-form label,
[data-bs-theme=dark] .shortcode-contact-form label {
  color: #e8f0ff !important;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 6px;
}

/* Contact form style 1 — dark glass panel */
[data-bs-theme=dark] .section-contact-1 .bg-primary {
  background: rgba(8, 18, 50, 0.75) !important;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(0, 255, 159, 0.12);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.25);
  border-radius: 24px !important;
}

[data-bs-theme=dark] .section-contact-1 .bg-primary .btn.bg-white-keep {
  background: var(--wts-gradient) !important;
  color: #011640 !important;
  border: none !important;
  box-shadow: 0 8px 24px rgba(0, 255, 159, 0.25);
  transition: all 0.3s ease;
}

[data-bs-theme=dark] .section-contact-1 .bg-primary .btn.bg-white-keep:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0, 255, 159, 0.35);
}

[data-bs-theme=dark] .section-contact-1 .icon-shape.bg-white-keep {
  background: rgba(0, 255, 159, 0.1) !important;
  border: 1px solid rgba(0, 255, 159, 0.2);
}

/* Contact form style 2 — clean glass */
[data-bs-theme=dark] .section-contact-2 {
  background: transparent !important;
}

[data-bs-theme=dark] .section-contact-2 .btn-primary {
  background: var(--wts-gradient) !important;
  color: #011640 !important;
  border: none !important;
  box-shadow: 0 8px 24px rgba(0, 255, 159, 0.25);
}

[data-bs-theme=dark] .section-contact-2 .btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0, 255, 159, 0.35);
}

/* Contact form style 3 — bordered glass card */
[data-bs-theme=dark] .section-contact-6 .border.rounded-4.shadow-1 {
  background: rgba(8, 18, 50, 0.7) !important;
  border-color: rgba(0, 255, 159, 0.1) !important;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.2) !important;
}

[data-bs-theme=dark] .section-contact-6 .border.rounded-4.shadow-1 .btn-primary {
  background: var(--wts-gradient) !important;
  color: #011640 !important;
  border: none !important;
}

[data-bs-theme=dark] .section-contact-6 .border.rounded-4.shadow-1 h4 {
  color: #ffffff !important;
}

/* Contact block enhancement */
[data-bs-theme=dark] .shortcode-contact-block .bg-primary {
  background: rgba(8, 18, 50, 0.8) !important;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(0, 255, 159, 0.12);
  border-radius: 24px !important;
}

[data-bs-theme=dark] .shortcode-contact-block .btn.bg-white-keep {
  background: var(--wts-gradient) !important;
  color: #011640 !important;
}

[data-bs-theme=dark] .shortcode-contact-block .btn.bg-white-keep:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0, 255, 159, 0.35);
}

/* ---------------------------------------------------------------------------
   5. BLOCK SPACING CONSISTENCY — Fix margins and padding
   --------------------------------------------------------------------------- */
/* Section padding consistency for all shortcodes */
.shortcode-features,
.shortcode-services,
.shortcode-testimonials,
.shortcode-teams,
.shortcode-pricing-plans,
.shortcode-blog-posts,
.shortcode-partners,
.shortcode-faqs,
.shortcode-newsletter,
.shortcode-call-to-action,
.shortcode-information-block,
.shortcode-our-mission,
.shortcode-contact-form,
.shortcode-contact-block,
.shortcode-about-us-information,
.shortcode-simple-slider {
  padding-top: 80px;
  padding-bottom: 80px;
}

@media (max-width: 767px) {
  .shortcode-features,
  .shortcode-services,
  .shortcode-testimonials,
  .shortcode-teams,
  .shortcode-pricing-plans,
  .shortcode-blog-posts,
  .shortcode-partners,
  .shortcode-faqs,
  .shortcode-newsletter,
  .shortcode-call-to-action,
  .shortcode-information-block,
  .shortcode-our-mission,
  .shortcode-contact-form,
  .shortcode-contact-block,
  .shortcode-about-us-information,
  .shortcode-simple-slider {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}
/* Feature item spacing fix */
.feature-item {
  margin-bottom: 0 !important;
}

.features-1 .row [class*=col-] {
  margin-bottom: 30px;
}

@media (max-width: 767px) {
  .features-1 .row [class*=col-] {
    margin-bottom: 24px;
  }
}
/* Service card spacing */
.shortcode-services .card-service {
  margin-bottom: 0;
}

.shortcode-services .row [class*=col-] {
  margin-bottom: 24px;
}

/* Team card spacing */
.shortcode-teams .row [class*=col-] {
  margin-bottom: 30px;
}

/* Testimonial card spacing */
.shortcode-testimonials .row [class*=col-] {
  margin-bottom: 24px;
}

/* Blog post spacing */
.shortcode-blog-posts .row [class*=col-] {
  margin-bottom: 30px;
}

/* Pricing plan spacing */
.shortcode-pricing-plans .row [class*=col-] {
  margin-bottom: 24px;
}

/* Section title bottom spacing */
.shortcode-features .text-center + .row,
.shortcode-services .text-center + .row,
.shortcode-testimonials h3 + .row,
.shortcode-teams h3 + .row,
.shortcode-blog-posts h3 + .row {
  margin-top: 40px !important;
}

/* Remove duplicate mt-* classes */
.shortcode-features .mt-10,
.shortcode-services .mt-8 {
  margin-top: 0 !important;
}

/* ---------------------------------------------------------------------------
   6. ANIMATED SVG / MOVING OBJECTS — Corporate tech feel
   --------------------------------------------------------------------------- */
/* Floating tech orb animation */
.wts-tech-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0.6;
}

.wts-tech-orb-1 {
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(0, 255, 159, 0.2), transparent 70%);
  animation: wtsFloat 14s ease-in-out infinite;
  top: 10%;
  left: 5%;
}

.wts-tech-orb-2 {
  width: 80px;
  height: 80px;
  background: radial-gradient(circle, rgba(5, 175, 242, 0.2), transparent 70%);
  animation: wtsFloat 10s ease-in-out infinite reverse;
  bottom: 15%;
  right: 8%;
}

.wts-tech-orb-3 {
  width: 60px;
  height: 60px;
  background: radial-gradient(circle, rgba(0, 255, 159, 0.15), transparent 70%);
  animation: wtsFloat 18s ease-in-out infinite;
  top: 60%;
  right: 20%;
}

@keyframes wtsFloat {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  25% {
    transform: translate(20px, -30px) scale(1.1);
  }
  50% {
    transform: translate(-10px, 10px) scale(0.95);
  }
  75% {
    transform: translate(15px, 20px) scale(1.05);
  }
}
/* Sliding gradient line — tech accent */
.wts-tech-line {
  position: absolute;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 255, 159, 0.3), transparent);
  animation: wtsSlideLine 6s ease-in-out infinite;
  opacity: 0.5;
}

@keyframes wtsSlideLine {
  0% {
    transform: translateX(-100%);
    width: 30%;
  }
  50% {
    transform: translateX(0);
    width: 60%;
  }
  100% {
    transform: translateX(100%);
    width: 30%;
  }
}
/* Pulsing dot — status indicator */
.wts-pulse-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--wts-mint);
  box-shadow: 0 0 0 0 rgba(0, 255, 159, 0.6);
  animation: wtsPulseDot 2s infinite;
}

@keyframes wtsPulseDot {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 255, 159, 0.6);
  }
  70% {
    box-shadow: 0 0 0 12px rgba(0, 255, 159, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(0, 255, 159, 0);
  }
}
/* Animated activity bars — GitHub-style contribution graph */
.wts-activity-bars {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 40px;
}

.wts-activity-bars span {
  width: 6px;
  border-radius: 3px 3px 0 0;
  background: var(--wts-gradient);
  animation: wtsActivityPulse 2s ease-in-out infinite;
}

.wts-activity-bars span:nth-child(1) {
  height: 20%;
  animation-delay: 0s;
}

.wts-activity-bars span:nth-child(2) {
  height: 45%;
  animation-delay: 0.1s;
}

.wts-activity-bars span:nth-child(3) {
  height: 70%;
  animation-delay: 0.2s;
}

.wts-activity-bars span:nth-child(4) {
  height: 35%;
  animation-delay: 0.3s;
}

.wts-activity-bars span:nth-child(5) {
  height: 90%;
  animation-delay: 0.4s;
}

.wts-activity-bars span:nth-child(6) {
  height: 55%;
  animation-delay: 0.5s;
}

.wts-activity-bars span:nth-child(7) {
  height: 80%;
  animation-delay: 0.6s;
}

.wts-activity-bars span:nth-child(8) {
  height: 30%;
  animation-delay: 0.7s;
}

.wts-activity-bars span:nth-child(9) {
  height: 65%;
  animation-delay: 0.8s;
}

.wts-activity-bars span:nth-child(10) {
  height: 50%;
  animation-delay: 0.9s;
}

@keyframes wtsActivityPulse {
  0%, 100% {
    opacity: 0.4;
    transform: scaleY(0.95);
  }
  50% {
    opacity: 1;
    transform: scaleY(1);
  }
}
/* Spinning ring — loading / processing indicator */
.wts-spin-ring {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 2px solid rgba(0, 255, 159, 0.15);
  border-top-color: var(--wts-mint);
  border-radius: 50%;
  animation: wtsSpin 1s linear infinite;
}

@keyframes wtsSpin {
  to {
    transform: rotate(360deg);
  }
}
/* Animated gradient border — card accent */
.wts-gradient-border {
  position: relative;
}

.wts-gradient-border::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: linear-gradient(135deg, var(--wts-mint), var(--wts-cyan), var(--wts-mint));
  background-size: 200% 200%;
  animation: wtsGradientShift 4s ease infinite;
  z-index: -1;
  padding: 1px;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

/* Pulse ring — notification style */
.wts-pulse-ring {
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--wts-mint);
  position: relative;
}

.wts-pulse-ring::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1px solid rgba(0, 255, 159, 0.3);
  animation: wtsPulseRing 2s ease-out infinite;
}

@keyframes wtsPulseRing {
  0% {
    transform: scale(0.8);
    opacity: 1;
  }
  100% {
    transform: scale(2);
    opacity: 0;
  }
}
/* ---------------------------------------------------------------------------
   7. ENHANCED FEATURES SECTION — Native botble feature cards spacing
   --------------------------------------------------------------------------- */
.shortcode-features-style-2 .phase-items .phase-item {
  padding: 4px 0;
}

.shortcode-features-style-2 .phase-items .phase-item svg {
  flex-shrink: 0;
}

/* ---------------------------------------------------------------------------
   8. ENHANCED FAQs — Tech accordion style
   --------------------------------------------------------------------------- */
[data-bs-theme=dark] .accordion-item {
  background: rgba(8, 18, 50, 0.65) !important;
  border: 1px solid rgba(0, 255, 159, 0.08) !important;
  border-radius: 16px !important;
  margin-bottom: 12px;
  overflow: hidden;
}

[data-bs-theme=dark] .accordion-button {
  background: transparent !important;
  color: #e8f0ff !important;
  font-weight: 700;
  font-size: 16px;
  padding: 20px 24px !important;
  box-shadow: none !important;
}

[data-bs-theme=dark] .accordion-button::after {
  filter: brightness(0) invert(1);
  opacity: 0.5;
}

[data-bs-theme=dark] .accordion-button:not(.collapsed) {
  color: var(--wts-mint) !important;
  border-bottom: 1px solid rgba(0, 255, 159, 0.1);
}

[data-bs-theme=dark] .accordion-body {
  color: #8ba4c8;
  padding: 20px 24px !important;
}

/* ---------------------------------------------------------------------------
   9. ENHANCED NEWSLETTER — Glass subscribe form
   --------------------------------------------------------------------------- */
[data-bs-theme=dark] .shortcode-newsletter .subscribe-form input {
  background: rgba(255, 255, 255, 0.04) !important;
  border: 1px solid rgba(0, 255, 159, 0.12) !important;
  color: #e8f0ff !important;
}

[data-bs-theme=dark] .shortcode-newsletter .subscribe-form input:focus {
  border-color: var(--wts-mint) !important;
  box-shadow: 0 0 0 3px rgba(0, 255, 159, 0.08);
}

[data-bs-theme=dark] .shortcode-newsletter .subscribe-form button {
  background: var(--wts-gradient) !important;
  color: #011640 !important;
  border: none !important;
  box-shadow: 0 4px 16px rgba(0, 255, 159, 0.2);
}

/* ---------------------------------------------------------------------------
   10. SECTION OVERFLOW FIX — Prevent horizontal scroll
   --------------------------------------------------------------------------- */
section {
  overflow-x: hidden;
}

.container,
.container-fluid {
  overflow-x: visible;
}

/* ---------------------------------------------------------------------------
   11. IMAGE LOADING EFFECT — Corporate fade-in
   --------------------------------------------------------------------------- */
.wts-section img,
.shortcode-features img,
.shortcode-services img,
.shortcode-testimonials img,
.shortcode-teams img,
.shortcode-blog-posts img {
  opacity: 0;
  animation: wtsFadeIn 0.6s ease forwards;
}

@keyframes wtsFadeIn {
  to {
    opacity: 1;
  }
}
/* ---------------------------------------------------------------------------
   12. RESPONSIVE FIXES
   --------------------------------------------------------------------------- */
@media (max-width: 767px) {
  .section-page-header {
    padding: 20px 0 !important;
  }
  .section-page-header h3 {
    font-size: 22px;
  }
  .shortcode-simple-slider .backdrop-filter {
    padding: 24px !important;
  }
  .shortcode-simple-slider .backdrop-filter h3.ds-3 {
    font-size: 28px !important;
  }
}
