/* Vivid View — light theme, white + medium blue */
:root {
  --vv-bg-deep: #ffffff;
  --vv-bg-elevated: #f0f4fb;
  --vv-surface: #ffffff;
  --vv-border: rgba(30, 64, 175, 0.14);
  --vv-accent: #1d4ed8;
  --vv-accent-2: #3b82f6;
  --vv-accent-indigo: #4f46e5;
  --vv-accent-teal: #0d9488;
  --vv-accent-violet: #7c3aed;
  --vv-accent-sky: #0284c7;
  --vv-text-muted: #475569;
  --vv-nav-bg: rgba(255, 255, 255, 0.92);
  --vv-text: #0f172a;
  --vv-font: "Outfit", system-ui, sans-serif;
  --vv-mono: "JetBrains Mono", ui-monospace, monospace;
  --bs-primary: #1d4ed8;
  --bs-primary-rgb: 29, 78, 216;
  --bs-link-color: #1d4ed8;
  --bs-link-hover-color: #1e3a8a;
}

html {
  scroll-behavior: smooth;
}

.vv-body {
  font-family: var(--vv-font);
  background:
    radial-gradient(circle at 12% 6%, rgba(79, 70, 229, 0.08), transparent 42%),
    radial-gradient(circle at 88% 2%, rgba(13, 148, 136, 0.08), transparent 36%),
    var(--vv-bg-deep);
  color: var(--vv-text);
  -webkit-font-smoothing: antialiased;
}

.mono {
  font-family: var(--vv-mono);
}

.tracking-wide {
  letter-spacing: 0.12em;
}

.vv-accent {
  color: var(--vv-accent) !important;
}

.vv-gradient-text {
  background: linear-gradient(
    120deg,
    var(--vv-accent) 0%,
    var(--vv-accent-indigo) 35%,
    var(--vv-accent-teal) 68%,
    var(--vv-accent-2) 100%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: vv-gradient-flow 8s ease infinite;
}

@keyframes vv-gradient-flow {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

/* Navbar */
.vv-nav {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.9), rgba(240, 245, 255, 0.92)),
    var(--vv-nav-bg) !important;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--vv-border);
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.vv-nav.navbar-light .navbar-nav .nav-link {
  color: var(--vv-text);
}

.vv-nav.navbar-light .navbar-toggler {
  border-color: rgba(15, 23, 42, 0.12);
}

.vv-logo-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--vv-accent), var(--vv-accent-2));
  box-shadow: 0 0 14px rgba(29, 78, 216, 0.35);
}

.vv-logo-img {
  height: 52px;
  width: auto;
  max-width: min(72vw, 300px);
  object-fit: contain;
  object-position: left center;
  display: block;
  filter: drop-shadow(0 2px 12px rgba(15, 23, 42, 0.12)) drop-shadow(0 0 20px rgba(29, 78, 216, 0.15));
  transition: filter 0.35s ease, transform 0.35s ease;
}

@media (min-width: 992px) {
  .vv-logo-img {
    height: 64px;
    max-width: 340px;
  }
}

.vv-logo-brand:hover .vv-logo-img {
  animation: none;
  filter: drop-shadow(0 4px 16px rgba(15, 23, 42, 0.14)) drop-shadow(0 0 32px rgba(29, 78, 216, 0.28));
  transform: scale(1.02);
}

.vv-logo-brand .vv-logo-img {
  animation: vv-logo-glow 5s ease-in-out infinite;
}

@keyframes vv-logo-glow {
  0%,
  100% {
    filter: drop-shadow(0 2px 12px rgba(15, 23, 42, 0.12)) drop-shadow(0 0 14px rgba(29, 78, 216, 0.12));
  }
  50% {
    filter: drop-shadow(0 2px 12px rgba(15, 23, 42, 0.12)) drop-shadow(0 0 28px rgba(29, 78, 216, 0.22));
  }
}

.vv-logo-img-footer {
  height: 64px;
  width: auto;
  max-width: min(85vw, 320px);
  object-fit: contain;
  object-position: left center;
  display: block;
  filter: drop-shadow(0 2px 14px rgba(15, 23, 42, 0.1)) drop-shadow(0 0 18px rgba(29, 78, 216, 0.12));
}

@media (min-width: 992px) {
  .vv-logo-img-footer {
    height: 80px;
    max-width: 380px;
  }
}

.vv-logo-footer-glow {
  animation: vv-logo-footer-pulse 6s ease-in-out infinite;
}

@keyframes vv-logo-footer-pulse {
  0%,
  100% {
    filter: drop-shadow(0 2px 14px rgba(15, 23, 42, 0.1)) drop-shadow(0 0 14px rgba(29, 78, 216, 0.1));
  }
  50% {
    filter: drop-shadow(0 2px 14px rgba(15, 23, 42, 0.1)) drop-shadow(0 0 26px rgba(29, 78, 216, 0.2));
  }
}

.vv-nav-link {
  font-weight: 500;
  padding: 0.5rem 0.85rem !important;
  border-radius: 0.5rem;
  transition: color 0.25s ease, background 0.25s ease, transform 0.2s ease;
}

.vv-nav-link:hover {
  color: var(--vv-accent) !important;
  background: rgba(29, 78, 216, 0.08);
  transform: translateY(-1px);
}

.vv-nav-link.active {
  color: var(--vv-accent) !important;
  background: rgba(29, 78, 216, 0.1);
}

.vv-nav.vv-nav-scrolled {
  border-bottom-color: rgba(29, 78, 216, 0.18);
  box-shadow: 0 8px 32px rgba(15, 23, 42, 0.08);
}

.btn-vv-primary {
  --bs-btn-color: #ffffff;
  --bs-btn-bg: linear-gradient(135deg, #2563eb, #4f46e5);
  --bs-btn-border-color: transparent;
  --bs-btn-hover-color: #ffffff;
  --bs-btn-hover-bg: #3b82f6;
  --bs-btn-hover-border-color: transparent;
  --bs-btn-focus-shadow-rgb: 29, 78, 216;
  --bs-btn-active-color: #ffffff;
  --bs-btn-active-bg: #1e40af;
  font-weight: 600;
  border: none;
  background: linear-gradient(135deg, #2563eb, #4f46e5);
  background-size: 200% 200%;
  box-shadow: 0 6px 24px rgba(79, 70, 229, 0.28);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background-position 0.4s ease;
}

.btn-vv-primary:hover {
  background-position: 100% 50%;
  transform: translateY(-1px);
  box-shadow: 0 10px 30px rgba(79, 70, 229, 0.34);
}

.vv-body .btn-outline-primary {
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease, background-color 0.28s ease, color 0.28s ease;
}

.vv-body .btn-outline-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(29, 78, 216, 0.15);
}

/* Hero */
.vv-hero {
  padding-top: 6.25rem;
  min-height: 90vh;
  display: flex;
  flex-direction: column;
}

@media (min-width: 992px) {
  .vv-hero {
    padding-top: 6.75rem;
  }
}

.vv-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1.02);
  animation: vv-hero-bg-drift 32s ease-in-out infinite alternate;
}

/* Hero & page headers — bright, blue-white imagery for the light theme (Unsplash). Swap URLs to /Images/... for fully local hosting. */
.vv-hero-bg.vv-bg-home {
  background-color: #e2ebf7;
  background-image: url("https://images.unsplash.com/photo-1551434678-e076c223a692?auto=format&fit=crop&w=2400&q=82");
  background-position: center 35%;
}

@keyframes vv-hero-bg-drift {
  to {
    transform: scale(1.1);
  }
}

.vv-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    165deg,
    rgba(255, 255, 255, 0.9) 0%,
    rgba(240, 244, 251, 0.78) 45%,
    rgba(255, 255, 255, 0.94) 100%
  );
}

.vv-hero-content {
  flex: 1;
  display: flex;
  align-items: center;
}

.min-vh-50 {
  min-height: 50vh;
}

.vv-hero-wave {
  height: 80px;
  background: linear-gradient(to top, var(--vv-bg-deep), rgba(255, 255, 255, 0));
  margin-top: auto;
  position: relative;
  z-index: 1;
}

.vv-glass-card {
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.86), rgba(240, 246, 255, 0.82));
  border: 1px solid var(--vv-border);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 20px 60px rgba(15, 23, 42, 0.08), 0 0 0 1px rgba(255, 255, 255, 0.6) inset;
  animation: vv-glass-in 0.85s ease-out both;
}

@keyframes vv-glass-in {
  from {
    opacity: 0;
    transform: translateY(16px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.vv-glass-card-stagger > .d-flex {
  animation: vv-row-rise 0.65s ease-out both;
}

.vv-glass-card-stagger > .d-flex:nth-child(1) {
  animation-delay: 0.12s;
}

.vv-glass-card-stagger > .d-flex:nth-child(2) {
  animation-delay: 0.24s;
}

.vv-glass-card-stagger > .d-flex:nth-child(3) {
  animation-delay: 0.36s;
}

.vv-glass-card-stagger > .d-flex:nth-child(4) {
  animation-delay: 0.48s;
}

@keyframes vv-row-rise {
  from {
    opacity: 0;
    transform: translateX(12px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.vv-stat-icon {
  width: 52px;
  height: 52px;
  background: rgba(29, 78, 216, 0.1);
  color: var(--vv-accent);
  font-size: 1.35rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.vv-glass-card-stagger .vv-stat-icon:hover {
  transform: scale(1.08) rotate(-3deg);
  box-shadow: 0 0 0 1px rgba(29, 78, 216, 0.25), 0 8px 24px rgba(29, 78, 216, 0.12);
}

/* Sections */
.py-lg-6 {
  padding-top: 4.5rem;
  padding-bottom: 4.5rem;
}

@media (min-width: 992px) {
  .py-lg-6 {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
}

.vv-section-alt {
  background:
    linear-gradient(180deg, #f2f6ff 0%, #ffffff 100%),
    radial-gradient(circle at 0% 0%, rgba(2, 132, 199, 0.07), transparent 35%);
  border-top: 1px solid var(--vv-border);
  border-bottom: 1px solid var(--vv-border);
}

.vv-card {
  background:
    linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
  border-color: rgba(30, 64, 175, 0.16) !important;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.35s ease, box-shadow 0.35s ease;
}

.vv-card:hover {
  transform: translateY(-4px);
  border-color: rgba(79, 70, 229, 0.34) !important;
  box-shadow: 0 18px 46px rgba(30, 64, 175, 0.14);
}

.vv-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(29, 78, 216, 0.12), rgba(59, 130, 246, 0.1));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: var(--vv-accent);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.vv-card:hover .vv-icon-wrap {
  transform: scale(1.06);
  box-shadow: 0 0 0 1px rgba(29, 78, 216, 0.18), 0 8px 18px rgba(59, 130, 246, 0.2);
}

/* Add controlled color variety without sacrificing professional tone */
.row > [class*="col"]:nth-child(4n + 1) .vv-card .vv-icon-wrap {
  background: linear-gradient(135deg, rgba(29, 78, 216, 0.15), rgba(2, 132, 199, 0.12));
}

.row > [class*="col"]:nth-child(4n + 2) .vv-card .vv-icon-wrap {
  background: linear-gradient(135deg, rgba(79, 70, 229, 0.15), rgba(124, 58, 237, 0.1));
}

.row > [class*="col"]:nth-child(4n + 3) .vv-card .vv-icon-wrap {
  background: linear-gradient(135deg, rgba(13, 148, 136, 0.14), rgba(14, 165, 233, 0.1));
}

.row > [class*="col"]:nth-child(4n + 4) .vv-card .vv-icon-wrap {
  background: linear-gradient(135deg, rgba(30, 64, 175, 0.14), rgba(79, 70, 229, 0.12));
}

.vv-img-frame {
  box-shadow: 0 16px 48px rgba(15, 23, 42, 0.1);
  overflow: hidden;
}

.vv-img-frame img {
  transition: transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

.vv-img-frame:hover img {
  transform: scale(1.04);
}

.vv-img-cover {
  object-fit: cover;
  aspect-ratio: 3 / 2;
}

.vv-checklist li {
  padding: 0.35rem 0;
  color: var(--vv-text-muted);
}

/* CTA band */
.vv-cta-band {
  background:
    linear-gradient(145deg, #eef4ff 0%, #edf8ff 50%, #f4f5ff 100%);
  border-top: 1px solid var(--vv-border);
}

.vv-cta-glow {
  position: absolute;
  width: 60%;
  height: 120%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(ellipse at center, rgba(29, 78, 216, 0.1) 0%, transparent 65%);
  pointer-events: none;
  animation: vv-cta-glow-pulse 5s ease-in-out infinite;
}

@keyframes vv-cta-glow-pulse {
  0%,
  100% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    opacity: 0.75;
    transform: translate(-50%, -50%) scale(1.08);
  }
}

/* Page headers */
.vv-page-header {
  padding-top: 6.5rem;
  padding-bottom: 3rem;
  position: relative;
  overflow: hidden;
}

@media (min-width: 992px) {
  .vv-page-header {
    padding-top: 7rem;
  }
}

.vv-page-header-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1);
  animation: vv-page-header-zoom 26s ease-in-out infinite alternate;
}

.vv-page-header-bg.vv-bg-services {
  background-color: #dbe4f3;
  background-image: url("https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?auto=format&fit=crop&w=2400&q=82");
}

.vv-page-header-bg.vv-bg-about {
  background-color: #e5edf8;
  background-image: url("https://images.unsplash.com/photo-1522071820081-009f0129c71c?auto=format&fit=crop&w=2400&q=82");
  background-position: center 30%;
}

.vv-page-header-bg.vv-bg-contact {
  background-color: #e8eef6;
  background-image: url("https://images.unsplash.com/photo-1542435503-909c7ca9a35f?auto=format&fit=crop&w=2400&q=82");
  background-position: center 40%;
}

.vv-page-header-bg.vv-bg-demos {
  background-color: #e8ecf2;
  background-image: url("https://images.unsplash.com/photo-1583121274602-3e2820c69888?auto=format&fit=crop&w=2400&q=82");
  background-position: center 45%;
}

@keyframes vv-page-header-zoom {
  to {
    transform: scale(1.08);
  }
}

.vv-page-header-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.88) 0%, var(--vv-bg-deep) 100%);
}

.vv-page-header .z-1 {
  z-index: 1;
}

/* Services */
.vv-service-hero {
  background: var(--vv-surface);
}

.vv-service-hero .vv-img-cover {
  aspect-ratio: 16 / 9;
  max-height: 280px;
}

.vv-service-icon {
  font-size: 1.75rem;
  color: var(--vv-accent);
}

/* Business solutions */
.vv-tier-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.35rem 0.65rem;
  border-radius: 6px;
  background: rgba(148, 163, 184, 0.12);
  color: var(--vv-text-muted);
  border: 1px solid var(--vv-border);
}

.vv-tier-badge-highlight {
  background: linear-gradient(135deg, rgba(29, 78, 216, 0.12), rgba(79, 70, 229, 0.1));
  color: var(--vv-accent);
  border-color: rgba(79, 70, 229, 0.26);
}

.vv-solution-tier-featured {
  border-color: rgba(59, 130, 246, 0.35) !important;
  box-shadow: 0 0 0 1px rgba(29, 78, 216, 0.06), 0 20px 50px rgba(15, 23, 42, 0.08);
}

@media (min-width: 992px) {
  .vv-solution-tier-featured {
    transform: translateY(-6px);
  }
}

.vv-solution-icon {
  font-size: 1.75rem;
  color: var(--vv-accent);
}

.vv-solutions-banner {
  background: linear-gradient(135deg, #e8eeff 0%, #e3ecff 45%, #e2f2f2 100%);
  box-shadow: 0 12px 40px rgba(15, 23, 42, 0.06);
}

.scroll-margin-nav {
  scroll-margin-top: 5.75rem;
}

.vv-service-jump .btn-outline-primary {
  --bs-btn-border-color: rgba(29, 78, 216, 0.45);
  --bs-btn-hover-bg: rgba(29, 78, 216, 0.08);
  --bs-btn-hover-border-color: rgba(29, 78, 216, 0.65);
}

/* About */
.vv-mini-stat {
  background: rgba(29, 78, 216, 0.04);
}

.vv-principle-num {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid var(--vv-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--vv-mono);
  font-size: 0.9rem;
  color: var(--vv-accent);
}

/* Contact */
.vv-contact-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(29, 78, 216, 0.1);
  color: var(--vv-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.vv-input,
.vv-form .form-select {
  background: #ffffff !important;
  border: 1px solid var(--vv-border) !important;
  color: var(--vv-text) !important;
}

.vv-input:focus,
.vv-form .form-select:focus {
  border-color: rgba(29, 78, 216, 0.45) !important;
  box-shadow: 0 0 0 3px rgba(29, 78, 216, 0.12) !important;
}

.vv-success-panel {
  background: rgba(34, 197, 94, 0.06);
}

.vv-success-icon {
  width: 64px;
  height: 64px;
  background: rgba(34, 197, 94, 0.2);
  color: #4ade80;
  font-size: 1.75rem;
}

/* Demos */
.min-vh-demo-img {
  min-height: 220px;
}

@media (min-width: 992px) {
  .min-vh-demo-img {
    min-height: 100%;
    min-height: 340px;
  }
}

.vv-demo-feature-visual {
  background: var(--vv-surface);
}

.vv-demo-info-panel {
  background: linear-gradient(160deg, rgba(79, 70, 229, 0.08), rgba(13, 148, 136, 0.06));
}

.vv-demo-object-cover {
  object-fit: cover;
  min-height: 220px;
}

@media (min-width: 992px) {
  .vv-demo-object-cover {
    min-height: 340px;
  }
}

.vv-demo-feature .p-4.p-lg-5 {
  padding: 1.1rem !important;
}

@media (min-width: 992px) {
  .vv-demo-feature .p-4.p-lg-5 {
    padding: 1.75rem !important;
  }
}

.vv-demo-placeholder {
  background: rgba(29, 78, 216, 0.04);
}

/* Floating demo chat preview */
.vv-demo-chat {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 1080;
  font-family: var(--vv-font);
}

.vv-demo-chat-panel {
  position: absolute;
  right: 0;
  bottom: calc(3.5rem + 0.75rem);
  width: min(100vw - 2.5rem, 360px);
  max-height: min(70vh, 520px);
  display: flex;
  flex-direction: column;
  background: var(--vv-bg-elevated);
  border: 1px solid var(--vv-border);
  border-radius: 1rem;
  overflow: hidden;
}

.vv-demo-chat-header {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--vv-border);
  background: rgba(29, 78, 216, 0.06);
}

.vv-demo-chat-avatar {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, rgba(29, 78, 216, 0.15), rgba(59, 130, 246, 0.12));
  color: var(--vv-accent);
}

.vv-demo-chat-close {
  text-decoration: none;
  line-height: 1;
}

.vv-demo-chat-body {
  padding: 1rem;
  overflow-y: auto;
  flex: 1;
  min-height: 0;
}

.vv-demo-chat-msg {
  border-radius: 0.75rem;
  padding: 0.75rem 1rem;
  background: var(--vv-surface);
  border: 1px solid var(--vv-border);
}

.vv-demo-chat-msg p:last-child {
  margin-bottom: 0;
}

.vv-demo-chat-footer .vv-input {
  font-size: 0.875rem;
}

.vv-demo-chat-launcher {
  width: 3.5rem;
  height: 3.5rem;
  float: right;
  animation: vv-chat-bob 2.8s ease-in-out infinite;
}

@keyframes vv-chat-bob {
  0%,
  100% {
    transform: translateY(0);
    box-shadow: 0 8px 28px rgba(29, 78, 216, 0.28);
  }
  50% {
    transform: translateY(-4px);
    box-shadow: 0 14px 36px rgba(29, 78, 216, 0.35);
  }
}

@media (max-width: 575.98px) {
  .vv-demo-chat {
    right: 1rem;
    bottom: 1rem;
  }

  .vv-demo-chat-panel {
    bottom: calc(3.25rem + 0.5rem);
  }

  .vv-demo-chat-launcher {
    width: 3.25rem;
    height: 3.25rem;
  }
}

/* Footer */
.vv-footer {
  background: linear-gradient(180deg, #edf3ff 0%, #e6eefc 55%, #eaf5f5 100%);
  border-top-color: rgba(30, 64, 175, 0.12) !important;
}

.vv-footer a.link-primary {
  transition: color 0.25s ease, opacity 0.25s ease, transform 0.2s ease;
}

.vv-footer a.link-primary:hover {
  color: var(--vv-accent-2) !important;
}

.vv-service-jump .btn {
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.vv-service-jump .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(29, 78, 216, 0.12);
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .vv-gradient-text {
    animation: none;
    background-size: 100% auto;
  }

  .vv-logo-brand .vv-logo-img,
  .vv-logo-footer-glow {
    animation: none;
  }

  .vv-hero-bg,
  .vv-page-header-bg {
    animation: none;
  }

  .vv-glass-card,
  .vv-glass-card-stagger > .d-flex {
    animation: none;
  }

  .vv-cta-glow {
    animation: none;
  }

  .vv-card:hover {
    transform: none;
  }

  .vv-card:hover .vv-icon-wrap {
    transform: none;
    box-shadow: none;
  }

  .vv-img-frame:hover img {
    transform: none;
  }

  .vv-nav-link:hover {
    transform: none;
  }

  .btn-vv-primary,
  .btn-vv-primary:hover {
    transform: none;
    background-position: 50% 50%;
  }

  .vv-service-jump .btn:hover {
    transform: none;
  }

  .vv-body .btn-outline-primary:hover {
    transform: none;
    box-shadow: none;
  }

  .vv-glass-card-stagger .vv-stat-icon:hover {
    transform: none;
    box-shadow: none;
  }

  .vv-demo-chat-launcher {
    animation: none;
  }

  .vv-solution-tier-featured {
    transform: none;
  }
}
