/* ============================================
   VXT Technologies - Custom CSS
   Professional Salesforce & NetSuite Partner
   ============================================ */

/* --- Google Fonts (loaded via stylesheet.php) --- */
:root {
  --vxt-navy: #0a1628;
  --vxt-navy-mid: #0f2140;
  --vxt-blue: #1b6fec;
  --vxt-blue-light: #3d8ef5;
  --vxt-orange: #f05a28;
  --vxt-orange-light: #ff7a4a;
  --vxt-white: #ffffff;
  --vxt-off-white: #f4f7fb;
  --vxt-gray: #6b7a95;
  --vxt-gray-light: #e8edf5;
  --vxt-text-dark: #1a2744;
  --vxt-text-mid: #3d4f6e;
  --transition-smooth: all 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-fast: all 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --shadow-card: 0 8px 40px rgba(10, 22, 40, 0.1);
  --shadow-card-hover: 0 20px 60px rgba(10, 22, 40, 0.18);
}

/* ===========================
   GLOBAL OVERRIDES
   =========================== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--vxt-text-dark);
  overflow-x: hidden;
  margin: 0;
}

/* Remove default template body padding if any */
body.tt-magic-cursor {
  cursor: auto;
}

/* Restore list defaults for those we reset */
ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* Smooth scroll */
html {
  scroll-behavior: smooth;
}

h1,
h2,
h3,
h4,
h5,
h6,
.section-title h2,
.section-title h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
}

/* ===========================
   HEADER - VXT STYLE
   =========================== */
.vxt-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  transition: var(--transition-smooth);
  padding: 0;
}

.vxt-header.transparent {
  background: transparent;
}

.vxt-header.scrolled {
  background: var(--vxt-navy);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.25);
}

.vxt-topbar {
  background: rgba(10, 22, 40, 0.9);
  padding: 8px 0;
  font-size: 13px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: var(--transition-smooth);
  overflow: hidden;
  max-height: 45px;
}

.vxt-header.scrolled .vxt-topbar {
  max-height: 0;
  padding: 0;
  border-bottom-color: transparent;
}

.vxt-topbar a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  transition: var(--transition-fast);
}

.vxt-topbar a:hover {
  color: var(--vxt-orange);
}

.vxt-topbar .top-info {
  display: flex;
  align-items: center;
  gap: 24px;
}

.vxt-topbar .top-info li {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 7px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 13px;
}

.vxt-topbar .top-info li i {
  color: var(--vxt-orange);
  font-size: 13px;
}

.vxt-topbar .top-social {
  display: flex;
  align-items: center;
  gap: 12px;
  list-style: none;
  margin: 0;
}

.vxt-nav-wrap {
  padding: 16px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.vxt-logo img {
  height: 42px;
  width: auto;
}

.vxt-nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 36px;
  margin: 0;
  padding: 0;
}

.vxt-nav ul li a {
  color: rgba(255, 255, 255, 0.9);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  position: relative;
  transition: var(--transition-fast);
  padding-bottom: 3px;
}

.vxt-nav ul li a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--vxt-orange);
  transition: var(--transition-fast);
}

.vxt-nav ul li a:hover,
.vxt-nav ul li.active a {
  color: var(--vxt-orange);
}

.vxt-nav ul li a:hover::after,
.vxt-nav ul li.active a::after {
  width: 100%;
}

.vxt-nav-cta {
  display: flex;
  align-items: center;
  gap: 16px;
}

.btn-vxt-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--vxt-orange);
  color: white !important;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: 4px;
  text-decoration: none !important;
  transition: var(--transition-smooth);
  white-space: nowrap;
  border: 2px solid var(--vxt-orange);
}

.btn-vxt-primary:hover {
  background: transparent;
  color: var(--vxt-orange) !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(240, 90, 40, 0.35);
}

.btn-vxt-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: white !important;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  padding: 11px 24px;
  border-radius: 4px;
  text-decoration: none !important;
  transition: var(--transition-smooth);
  border: 2px solid rgba(255, 255, 255, 0.4);
}

.btn-vxt-outline:hover {
  border-color: var(--vxt-orange);
  color: var(--vxt-orange) !important;
  background: rgba(240, 90, 40, 0.08);
}

/* Mobile hamburger */
.vxt-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
}

.vxt-hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: white;
  transition: var(--transition-fast);
  border-radius: 2px;
}

/* ===========================
   HERO SLIDER
   =========================== */
.vxt-hero {
  position: relative;
  height: 100vh;
  min-height: 680px;
  overflow: hidden;
  display: flex;
  align-items: center;
  background: var(--vxt-navy);
  padding-top: 112px;
  /* offset for fixed header (topbar ~38px + nav ~74px) */
}

@media (max-width: 991px) {
  .vxt-hero {
    padding-top: 75px;
    /* mobile: no topbar, just nav */
    min-height: 100svh;
  }
}

.vxt-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.vxt-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
}

/* Gradient overlays */
.vxt-hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
      rgba(10, 22, 40, 0.95) 0%,
      rgba(10, 22, 40, 0.7) 60%,
      rgba(27, 111, 236, 0.2) 100%);
  z-index: 1;
}

.vxt-hero-bg::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(to top, var(--vxt-navy), transparent);
  z-index: 2;
}

/* Decorative grid pattern */
.vxt-hero-grid {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image:
    linear-gradient(rgba(27, 111, 236, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(27, 111, 236, 0.06) 1px, transparent 1px);
  background-size: 60px 60px;
  animation: gridPulse 8s ease-in-out infinite;
}

@keyframes gridPulse {

  0%,
  100% {
    opacity: 0.5;
  }

  50% {
    opacity: 1;
  }
}

/* Floating orbs */
.vxt-hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  z-index: 1;
  animation: orbFloat 12s ease-in-out infinite;
}

.vxt-hero-orb-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(27, 111, 236, 0.25) 0%, transparent 70%);
  top: -100px;
  right: -100px;
  animation-delay: 0s;
}

.vxt-hero-orb-2 {
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(240, 90, 40, 0.2) 0%, transparent 70%);
  bottom: 100px;
  right: 30%;
  animation-delay: -4s;
}

@keyframes orbFloat {

  0%,
  100% {
    transform: translateY(0) scale(1);
  }

  50% {
    transform: translateY(-30px) scale(1.05);
  }
}

.vxt-hero-content {
  position: relative;
  z-index: 10;
  width: 100%;
}

/* Slider structure */
.vxt-slider {
  position: relative;
  overflow: hidden;
}

.vxt-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  pointer-events: none;
  transition: none;
}

.vxt-slide.active {
  position: relative;
  opacity: 1;
  pointer-events: auto;
}

/* Slide IN animation (entering) */
.vxt-slide.slide-in {
  animation: slideIn 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* Slide OUT animation (leaving) */
.vxt-slide.slide-out {
  animation: slideOut 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}

@keyframes slideIn {
  0% {
    opacity: 0;
    transform: translateY(60px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideOut {
  0% {
    opacity: 1;
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    transform: translateY(-60px);
  }
}

/* Staggered children animation */
.vxt-slide.slide-in .slide-tag {
  animation: slideInChild 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.1s both;
}

.vxt-slide.slide-in h1 {
  animation: slideInChild 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.2s both;
}

.vxt-slide.slide-in .slide-desc {
  animation: slideInChild 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.35s both;
}

.vxt-slide.slide-in .slide-btns {
  animation: slideInChild 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.5s both;
}

.vxt-slide.slide-in .slide-badge {
  animation: slideInChild 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.65s both;
}

@keyframes slideInChild {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.slide-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(27, 111, 236, 0.15);
  border: 1px solid rgba(27, 111, 236, 0.35);
  color: #7ab3f5;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 40px;
  margin-bottom: 24px;
}

.slide-tag::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--vxt-blue);
  animation: blink 1.5s ease-in-out infinite;
}

@keyframes blink {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.3;
  }
}

.vxt-hero h1 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(36px, 5vw, 68px);
  font-weight: 800;
  color: white;
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -1px;
}

.vxt-hero h1 em {
  font-style: normal;
  color: var(--vxt-orange);
  position: relative;
}

.vxt-hero h1 .blue-text {
  color: var(--vxt-blue-light);
}

.slide-desc {
  font-size: clamp(16px, 2vw, 19px);
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.7;
  max-width: 560px;
  margin-bottom: 36px;
}

.slide-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 48px;
}

.slide-badge {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.badge-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
}

.badge-item i {
  color: #4ade80;
  font-size: 15px;
}

/* Slider Controls */
.vxt-slider-controls {
  position: absolute;
  bottom: 40px;
  left: 0;
  right: 0;
  z-index: 20;
}

.vxt-slider-dots {
  display: flex;
  align-items: center;
  gap: 8px;
}

.vxt-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  border: none;
  cursor: pointer;
  transition: var(--transition-fast);
  padding: 0;
}

.vxt-dot.active {
  width: 32px;
  border-radius: 4px;
  background: var(--vxt-orange);
}

.vxt-slider-nav {
  display: flex;
  gap: 10px;
}

.vxt-nav-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-fast);
  font-size: 18px;
}

.vxt-nav-btn:hover {
  background: var(--vxt-orange);
  border-color: var(--vxt-orange);
  transform: scale(1.05);
}

/* Progress bar */
.vxt-slider-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  background: var(--vxt-orange);
  z-index: 20;
  animation: sliderProgress 5s linear infinite;
}

@keyframes sliderProgress {
  from {
    width: 0%;
  }

  to {
    width: 100%;
  }
}

/* Right side hero visual */
.vxt-hero-visual {
  position: relative;
}

.vxt-hero-card {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 20px 24px;
  transition: var(--transition-smooth);
}

.vxt-hero-card:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-4px);
}

.vxt-hero-card .card-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--vxt-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: white;
  margin-bottom: 12px;
}

.vxt-hero-card h4 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: white;
  margin-bottom: 4px;
}

.vxt-hero-card p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  margin: 0;
}

.vxt-hero-main-img {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
  animation: imgFloat 6s ease-in-out infinite;
}

.vxt-hero-main-img img {
  width: 100%;
  height: auto;
  display: block;
  max-height: 480px;
  object-fit: contain;
}

@keyframes imgFloat {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

.vxt-hero-stat-bubble {
  position: absolute;
  background: white;
  border-radius: 12px;
  padding: 14px 18px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  animation: bubbleFloat 5s ease-in-out infinite;
}

.vxt-hero-stat-bubble .stat-num {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 26px;
  font-weight: 800;
  color: var(--vxt-navy);
  line-height: 1;
}

.vxt-hero-stat-bubble .stat-label {
  font-size: 12px;
  color: var(--vxt-gray);
  font-weight: 500;
}

.vxt-hero-stat-bubble.bubble-1 {
  top: 60px;
  left: -30px;
  animation-delay: 0s;
}

.vxt-hero-stat-bubble.bubble-2 {
  bottom: 60px;
  right: -20px;
  animation-delay: -2.5s;
}

@keyframes bubbleFloat {

  0%,
  100% {
    transform: translateY(0) rotate(-2deg);
  }

  50% {
    transform: translateY(-10px) rotate(2deg);
  }
}

/* ===========================
   STATS COUNTER SECTION
   =========================== */
.vxt-stats-section {
  background: var(--vxt-navy);
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}

.vxt-stats-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(27, 111, 236, 0.5), var(--vxt-orange), rgba(27, 111, 236, 0.5), transparent);
}

.vxt-stat-item {
  text-align: center;
  padding: 20px;
  position: relative;
}

.vxt-stat-item::after {
  content: '';
  position: absolute;
  right: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: rgba(255, 255, 255, 0.1);
}

.vxt-stat-item:last-child::after {
  display: none;
}

.vxt-stat-num {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 52px;
  font-weight: 800;
  color: white;
  line-height: 1;
  margin-bottom: 8px;
}

.vxt-stat-num span {
  color: var(--vxt-orange);
}

.vxt-stat-label {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 500;
}

.vxt-stat-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(27, 111, 236, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--vxt-blue-light);
  margin: 0 auto 16px;
}

/* ===========================
   WHY VXT SECTION
   =========================== */
.vxt-why-section {
  padding: 100px 0;
  background: white;
  position: relative;
  overflow: hidden;
}

.vxt-section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--vxt-orange);
  margin-bottom: 16px;
}

.vxt-section-tag::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--vxt-orange);
  border-radius: 2px;
}

.vxt-section-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(28px, 3.5vw, 46px);
  font-weight: 800;
  color: var(--vxt-navy);
  line-height: 1.15;
  letter-spacing: -0.5px;
  margin-bottom: 20px;
}

.vxt-section-title em {
  font-style: normal;
  color: var(--vxt-orange);
}

.vxt-why-card {
  background: var(--vxt-off-white);
  border-radius: 16px;
  padding: 36px 30px;
  height: 100%;
  border: 1px solid transparent;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.vxt-why-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--vxt-blue), var(--vxt-orange));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.vxt-why-card:hover {
  background: white;
  border-color: var(--vxt-gray-light);
  transform: translateY(-6px);
  box-shadow: var(--shadow-card-hover);
}

.vxt-why-card:hover::before {
  transform: scaleX(1);
}

.why-card-icon {
  width: 60px;
  height: 60px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--vxt-blue), var(--vxt-navy));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: white;
  margin-bottom: 20px;
  transition: var(--transition-smooth);
}

.vxt-why-card:hover .why-card-icon {
  background: linear-gradient(135deg, var(--vxt-orange), #c8441c);
  transform: scale(1.05) rotate(-3deg);
}

.why-card-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 19px;
  font-weight: 700;
  color: var(--vxt-navy);
  margin-bottom: 12px;
}

.why-card-text {
  font-size: 15px;
  color: var(--vxt-text-mid);
  line-height: 1.7;
  margin: 0;
}

/* ===========================
   SERVICES SECTION
   =========================== */
.vxt-services-section {
  padding: 100px 0;
  background: var(--vxt-navy);
  position: relative;
  overflow: hidden;
}

.vxt-services-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(27, 111, 236, 0.12) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(240, 90, 40, 0.08) 0%, transparent 50%);
}

.vxt-service-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 36px 30px;
  height: 100%;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.vxt-service-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 0;
  background: linear-gradient(135deg, rgba(27, 111, 236, 0.12), rgba(240, 90, 40, 0.08));
  transition: height 0.4s ease;
}

.vxt-service-card:hover {
  border-color: rgba(27, 111, 236, 0.4);
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.vxt-service-card:hover::before {
  height: 100%;
}

.service-card-icon {
  width: 64px;
  height: 64px;
  border-radius: 14px;
  background: rgba(27, 111, 236, 0.15);
  border: 1px solid rgba(27, 111, 236, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: var(--vxt-blue-light);
  margin-bottom: 22px;
  transition: var(--transition-smooth);
  position: relative;
  z-index: 1;
}

.vxt-service-card:hover .service-card-icon {
  background: var(--vxt-orange);
  border-color: var(--vxt-orange);
  color: white;
  transform: scale(1.08);
}

.service-card-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 19px;
  font-weight: 700;
  color: white;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.service-card-text {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.7;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--vxt-blue-light);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition-fast);
  position: relative;
  z-index: 1;
}

.service-card-link:hover {
  color: var(--vxt-orange);
  gap: 10px;
}

/* Services tabs */
.vxt-service-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.vxt-tab-btn {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  padding: 10px 22px;
  border-radius: 40px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: transparent;
  color: rgba(255, 255, 255, 0.65);
  cursor: pointer;
  transition: var(--transition-fast);
}

.vxt-tab-btn.active,
.vxt-tab-btn:hover {
  background: var(--vxt-orange);
  border-color: var(--vxt-orange);
  color: white;
}

/* ===========================
   ABOUT SECTION
   =========================== */
.vxt-about-section {
  padding: 100px 0;
  background: white;
  position: relative;
  overflow: hidden;
}

.vxt-about-img-wrap {
  position: relative;
}

.vxt-about-img-main {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-card-hover);
  position: relative;
}

.vxt-about-img-main img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.vxt-about-img-main:hover img {
  transform: scale(1.03);
}

.vxt-about-badge {
  position: absolute;
  bottom: 30px;
  left: -30px;
  background: white;
  border-radius: 16px;
  padding: 20px 24px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  gap: 14px;
  animation: badgeFloat 5s ease-in-out infinite;
  z-index: 2;
}

@keyframes badgeFloat {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

.about-badge-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--vxt-orange), #c8441c);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: white;
  flex-shrink: 0;
}

.about-badge-text h4 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 26px;
  font-weight: 800;
  color: var(--vxt-navy);
  line-height: 1;
  margin-bottom: 3px;
}

.about-badge-text p {
  font-size: 13px;
  color: var(--vxt-gray);
  margin: 0;
}

.vxt-about-img-secondary {
  position: absolute;
  top: 40px;
  right: -20px;
  width: 160px;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
  border: 4px solid white;
  z-index: 2;
}

.vxt-about-img-secondary img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  display: block;
}

.vxt-about-list {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

@media (max-width: 600px) {
  .vxt-about-list {
    grid-template-columns: 1fr;
  }
}

.vxt-about-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: var(--vxt-text-dark);
  font-weight: 500;
}

.vxt-about-list li i {
  color: var(--vxt-orange);
  font-size: 18px;
  flex-shrink: 0;
}

/* Locations grid */
.vxt-locations {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 32px;
}

.vxt-location-item {
  background: var(--vxt-off-white);
  border-radius: 12px;
  padding: 16px;
  text-align: center;
  transition: var(--transition-fast);
}

.vxt-location-item:hover {
  background: var(--vxt-blue);
  transform: translateY(-3px);
}

.vxt-location-item:hover .loc-name,
.vxt-location-item:hover .loc-flag {
  color: white;
}

.loc-flag {
  font-size: 24px;
  display: block;
  margin-bottom: 6px;
}

.loc-name {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--vxt-navy);
  display: block;
  transition: var(--transition-fast);
}

/* ===========================
   INDUSTRIES SECTION
   =========================== */
.vxt-industries-section {
  padding: 100px 0;
  background: var(--vxt-off-white);
  position: relative;
  overflow: hidden;
}

.vxt-industry-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

@media (max-width: 991px) {
  .vxt-industry-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 575px) {
  .vxt-industry-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.vxt-industry-card {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
  group: true;
}

.vxt-industry-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.vxt-industry-card:hover img {
  transform: scale(1.1);
}

.vxt-industry-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 22, 40, 0.9) 0%, rgba(10, 22, 40, 0.3) 60%, transparent 100%);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  transition: var(--transition-smooth);
}

.vxt-industry-card:hover .vxt-industry-overlay {
  background: linear-gradient(to top, rgba(27, 111, 236, 0.9) 0%, rgba(27, 111, 236, 0.4) 60%, transparent 100%);
}

.industry-info {
  width: 100%;
}

.industry-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: white;
  margin-bottom: 8px;
  transition: var(--transition-fast);
}

.vxt-industry-card:hover .industry-icon {
  background: var(--vxt-orange);
}

.industry-name {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: white;
  margin: 0;
}

/* ===========================
   TOOLS & TECH SECTION
   =========================== */
.vxt-tools-section {
  padding: 100px 0;
  background: var(--vxt-navy);
  position: relative;
  overflow: hidden;
}

.vxt-tech-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-top: 60px;
}

@media (max-width: 1199px) {
  .vxt-tech-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 767px) {
  .vxt-tech-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
  }
}

@media (max-width: 480px) {
  .vxt-tech-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.vxt-tech-item {
  background: white;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 24px 16px 18px;
  text-align: center;
  transition: var(--transition-smooth);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.vxt-tech-item:hover {
  transform: translateY(-7px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  border-color: white;
}

.vxt-tech-item img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  margin-bottom: 12px;
  transition: var(--transition-fast);
  display: block;
  filter: none;
}

/* NetSuite logo is a wide text-based SVG — give it more room */
.vxt-tech-item img.vxt-tech-wide {
  width: 96px;
  height: 32px;
  margin-bottom: 14px;
}

.vxt-tech-item:hover img {
  transform: scale(1.08);
}

.vxt-tech-item span {
  font-size: 11.5px;
  font-weight: 700;
  color: var(--vxt-text-mid);
  display: block;
  transition: var(--transition-fast);
  letter-spacing: 0.3px;
}

.vxt-tech-item:hover span {
  color: var(--vxt-navy);
}

/* ===========================
   CASE STUDIES / PORTFOLIO
   =========================== */
.vxt-portfolio-section {
  padding: 100px 0;
  background: white;
}

/* ===========================
   TESTIMONIALS
   =========================== */
.vxt-testimonial-section {
  padding: 100px 0;
  background: var(--vxt-off-white);
  overflow: hidden;
}

.vxt-testi-card {
  background: white;
  border-radius: 20px;
  padding: 36px 32px;
  height: 100%;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--vxt-gray-light);
  transition: var(--transition-smooth);
}

.vxt-testi-card:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-5px);
}

.testi-quote {
  font-size: 48px;
  color: var(--vxt-blue-light);
  line-height: 1;
  font-family: Georgia, serif;
  opacity: 0.3;
  margin-bottom: 8px;
}

.testi-text {
  font-size: 16px;
  color: var(--vxt-text-mid);
  line-height: 1.75;
  margin-bottom: 28px;
  font-style: italic;
}

.testi-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 20px;
}

.testi-stars i {
  color: #fbbf24;
  font-size: 15px;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testi-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--vxt-blue-light);
}

.testi-author-info h5 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--vxt-navy);
  margin-bottom: 2px;
}

.testi-author-info span {
  font-size: 13px;
  color: var(--vxt-gray);
}

/* Testimonial tag */
.testi-platform {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-left: auto;
}

/* ===========================
   PARTNERS MARQUEE
   =========================== */
.vxt-partners-section {
  padding: 50px 0;
  background: white;
  border-top: 1px solid var(--vxt-gray-light);
  border-bottom: 1px solid var(--vxt-gray-light);
}

.vxt-marquee-label {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--vxt-gray);
  text-align: center;
  margin-bottom: 28px;
}

/* ===========================
   BLOG / INSIGHTS
   =========================== */
.vxt-blog-section {
  padding: 100px 0;
  background: white;
}

.vxt-blog-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--vxt-gray-light);
  transition: var(--transition-smooth);
  height: 100%;
}

.vxt-blog-card:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-6px);
  border-color: transparent;
}

.vxt-blog-img {
  overflow: hidden;
  height: 220px;
}

.vxt-blog-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.vxt-blog-card:hover .vxt-blog-img img {
  transform: scale(1.06);
}

.vxt-blog-content {
  padding: 24px;
}

.vxt-blog-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.blog-tag {
  background: rgba(27, 111, 236, 0.08);
  color: var(--vxt-blue);
  font-size: 12px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.blog-date {
  font-size: 13px;
  color: var(--vxt-gray);
}

.vxt-blog-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--vxt-navy);
  line-height: 1.4;
  margin-bottom: 14px;
  text-decoration: none;
  display: block;
  transition: var(--transition-fast);
}

.vxt-blog-title:hover {
  color: var(--vxt-orange);
}

.vxt-blog-excerpt {
  font-size: 14px;
  color: var(--vxt-gray);
  line-height: 1.65;
  margin-bottom: 20px;
}

.vxt-read-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--vxt-orange);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: var(--transition-fast);
}

.vxt-read-more:hover {
  gap: 10px;
  color: var(--vxt-navy);
}

/* ===========================
   CTA SECTION
   =========================== */
.vxt-cta-section {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--vxt-navy) 0%, var(--vxt-navy-mid) 50%, rgba(27, 111, 236, 0.15) 100%);
  position: relative;
  overflow: hidden;
}

.vxt-cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(27, 111, 236, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(27, 111, 236, 0.05) 1px, transparent 1px);
  background-size: 50px 50px;
}

.vxt-cta-section::after {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(240, 90, 40, 0.15) 0%, transparent 70%);
}

.vxt-cta-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 800;
  color: white;
  line-height: 1.15;
  letter-spacing: -0.5px;
}

.vxt-cta-title em {
  font-style: normal;
  color: var(--vxt-orange);
}

.vxt-cta-text {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.7;
  margin-bottom: 36px;
}

/* ===========================
   FOOTER
   =========================== */
.vxt-footer {
  background: #050d1a;
  color: rgba(255, 255, 255, 0.65);
  padding-top: 80px;
}

.vxt-footer-brand {
  margin-bottom: 24px;
}

.vxt-footer-brand img {
  height: 40px;
  width: auto;
  margin-bottom: 20px;
}

.vxt-footer-brand p {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.5);
  max-width: 280px;
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 15px;
  text-decoration: none;
  transition: var(--transition-fast);
}

.footer-social a:hover {
  background: var(--vxt-orange);
  border-color: var(--vxt-orange);
  color: white;
  transform: translateY(-2px);
}

.footer-widget-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: white;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links li a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  font-size: 14px;
  transition: var(--transition-fast);
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-links li a::before {
  content: '';
  width: 5px;
  height: 1px;
  background: var(--vxt-orange);
  transition: width 0.2s ease;
  flex-shrink: 0;
}

.footer-links li a:hover {
  color: white;
  padding-left: 6px;
}

.footer-links li a:hover::before {
  width: 12px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
}

.footer-contact-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(27, 111, 236, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  color: var(--vxt-blue-light);
  flex-shrink: 0;
}

.footer-contact-text span {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.35);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: block;
  margin-bottom: 2px;
}

.footer-contact-text a,
.footer-contact-text p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  margin: 0;
  transition: var(--transition-fast);
}

.footer-contact-text a:hover {
  color: var(--vxt-orange);
}

.vxt-footer-bottom {
  margin-top: 60px;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.vxt-footer-bottom p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.35);
  margin: 0;
}

.vxt-footer-bottom a {
  color: var(--vxt-orange);
  text-decoration: none;
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-bottom-links a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.35);
  text-decoration: none;
  transition: var(--transition-fast);
}

.footer-bottom-links a:hover {
  color: white;
}

/* ===========================
   BACK TO TOP
   =========================== */
#scroll-percentage {
  bottom: 30px;
  right: 30px;
}

/* ===========================
   MOBILE NAVIGATION
   =========================== */
.vxt-mobile-menu {
  position: fixed;
  top: 0;
  right: -320px;
  width: 300px;
  height: 100vh;
  background: var(--vxt-navy);
  z-index: 99999;
  transition: right 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  padding: 80px 30px 40px;
  overflow-y: auto;
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.4);
}

.vxt-mobile-menu.open {
  right: 0;
}

.vxt-mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 99998;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.vxt-mobile-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.vxt-mobile-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.vxt-mobile-close:hover {
  background: var(--vxt-orange);
}

.vxt-mobile-nav {
  list-style: none;
  padding: 0;
  margin: 0 0 30px;
}

.vxt-mobile-nav li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.vxt-mobile-nav li a {
  display: block;
  padding: 14px 0;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 16px;
  font-weight: 600;
  transition: var(--transition-fast);
}

.vxt-mobile-nav li a:hover {
  color: var(--vxt-orange);
  padding-left: 8px;
}

/* ===========================
   ANIMATED UNDERLINE UTILITY
   =========================== */
.hover-underline {
  position: relative;
}

.hover-underline::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--vxt-orange);
  transition: width 0.3s ease;
}

.hover-underline:hover::after {
  width: 100%;
}

/* ===========================
   SCROLL ANIMATIONS
   =========================== */
.vxt-reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.vxt-reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.vxt-reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.vxt-reveal-left.revealed {
  opacity: 1;
  transform: translateX(0);
}

.vxt-reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.vxt-reveal-right.revealed {
  opacity: 1;
  transform: translateX(0);
}

/* Stagger delays */
.delay-1 {
  transition-delay: 0.1s;
}

.delay-2 {
  transition-delay: 0.2s;
}

.delay-3 {
  transition-delay: 0.3s;
}

.delay-4 {
  transition-delay: 0.4s;
}

.delay-5 {
  transition-delay: 0.5s;
}

.delay-6 {
  transition-delay: 0.6s;
}

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 991px) {

  .vxt-nav,
  .vxt-nav-cta {
    display: none;
  }

  .vxt-hamburger {
    display: flex;
  }

  .vxt-about-badge {
    left: 10px;
  }

  .vxt-about-img-secondary {
    right: 10px;
  }

  .vxt-locations {
    grid-template-columns: repeat(2, 1fr);
  }

  .vxt-hero h1 {
    font-size: 38px;
  }
}

@media (max-width: 575px) {

  .vxt-why-section,
  .vxt-services-section,
  .vxt-about-section,
  .vxt-industries-section,
  .vxt-tools-section,
  .vxt-testimonial-section,
  .vxt-blog-section,
  .vxt-cta-section {
    padding: 70px 0;
  }

  .slide-btns {
    flex-direction: column;
  }

  .slide-badge {
    display: none;
  }

  .vxt-about-img-secondary {
    display: none;
  }

  .vxt-stat-num {
    font-size: 38px;
  }
}

/* ===========================
   SECTION SPACING
   =========================== */
.section-gap {
  margin-bottom: 100px;
}

/* ===========================
   GRADIENT TEXT
   =========================== */
.gradient-text {
  background: linear-gradient(135deg, var(--vxt-blue-light), var(--vxt-orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===========================
   PAGE HERO BANNER
   =========================== */
.vxt-page-hero {
  background: var(--vxt-navy);
  padding: 160px 0 80px;
  position: relative;
  overflow: hidden;
}

.vxt-page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 80% 50%, rgba(27,111,236,0.12) 0%, transparent 70%),
              radial-gradient(ellipse 40% 60% at 20% 80%, rgba(240,90,40,0.08) 0%, transparent 60%);
}

.vxt-page-hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 40%, transparent 100%);
}

.vxt-page-hero-content {
  position: relative;
  z-index: 2;
}

.vxt-page-hero h1 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 800;
  color: white;
  line-height: 1.12;
  margin-bottom: 20px;
}

.vxt-page-hero h1 em {
  font-style: normal;
  color: var(--vxt-orange);
}

.vxt-page-hero p {
  font-size: 17px;
  color: rgba(255,255,255,0.65);
  line-height: 1.75;
  max-width: 600px;
  margin-bottom: 0;
}

.vxt-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  font-size: 13px;
}

.vxt-breadcrumb li {
  color: rgba(255,255,255,0.45);
}

.vxt-breadcrumb li a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color .2s;
}

.vxt-breadcrumb li a:hover { color: var(--vxt-orange); }

.vxt-breadcrumb li + li::before {
  content: '/';
  margin-right: 8px;
  color: rgba(255,255,255,0.25);
}

.vxt-breadcrumb li:last-child { color: var(--vxt-orange); }

/* ===========================
   INNER PAGE SECTIONS
   =========================== */
.vxt-inner-section {
  padding: 100px 0;
}

.vxt-inner-section-alt {
  padding: 100px 0;
  background: var(--vxt-off-white);
}

.vxt-inner-section-dark {
  padding: 100px 0;
  background: var(--vxt-navy);
  position: relative;
  overflow: hidden;
}

/* Feature card (light bg) */
.vxt-feature-card {
  background: white;
  border-radius: 16px;
  padding: 36px 28px;
  height: 100%;
  border: 1px solid var(--vxt-gray-light);
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-card);
}

.vxt-feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card-hover);
  border-color: var(--vxt-blue);
}

.vxt-feature-card-icon {
  width: 60px;
  height: 60px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(27,111,236,0.1), rgba(240,90,40,0.08));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--vxt-blue);
  margin-bottom: 20px;
  transition: var(--transition-fast);
}

.vxt-feature-card:hover .vxt-feature-card-icon {
  background: var(--vxt-orange);
  color: white;
}

.vxt-feature-card h4 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--vxt-navy);
  margin-bottom: 10px;
}

.vxt-feature-card p {
  font-size: 15px;
  color: var(--vxt-gray);
  line-height: 1.65;
  margin: 0;
}

/* Service detail card */
.vxt-svc-card {
  background: white;
  border-radius: 16px;
  padding: 32px 28px;
  height: 100%;
  border: 1px solid var(--vxt-gray-light);
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-card);
}

.vxt-svc-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card-hover);
  border-color: var(--vxt-orange);
}

.vxt-svc-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(240,90,40,0.1), rgba(240,90,40,0.05));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--vxt-orange);
  margin-bottom: 18px;
  transition: var(--transition-fast);
}

.vxt-svc-card:hover .vxt-svc-card-icon {
  background: var(--vxt-orange);
  color: white;
}

.vxt-svc-card h4 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--vxt-navy);
  margin-bottom: 12px;
}

.vxt-svc-card ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.vxt-svc-card ul li {
  font-size: 14px;
  color: var(--vxt-gray);
  padding: 5px 0;
  padding-left: 18px;
  position: relative;
}

.vxt-svc-card ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 13px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--vxt-orange);
}

/* Career job card */
.vxt-job-card {
  background: white;
  border-radius: 16px;
  padding: 30px 28px;
  border: 1px solid var(--vxt-gray-light);
  cursor: pointer;
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-card);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.vxt-job-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card-hover);
  border-color: var(--vxt-orange);
}

.vxt-job-location {
  font-size: 13px;
  font-weight: 600;
  color: var(--vxt-blue);
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 10px;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.vxt-job-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 19px;
  font-weight: 700;
  color: var(--vxt-navy);
  margin-bottom: 12px;
}

.vxt-job-tag {
  display: inline-block;
  background: rgba(240,90,40,0.09);
  color: var(--vxt-orange);
  font-size: 12px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 16px;
}

.vxt-job-arrow {
  margin-top: auto;
  color: var(--vxt-orange);
  font-size: 13px;
  font-weight: 600;
  font-family: 'Plus Jakarta Sans', sans-serif;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: gap .2s;
}

.vxt-job-card:hover .vxt-job-arrow { gap: 10px; }

/* Contact form section */
.vxt-contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 24px;
  background: white;
  border-radius: 14px;
  border: 1px solid var(--vxt-gray-light);
  box-shadow: var(--shadow-card);
  margin-bottom: 16px;
  transition: var(--transition-fast);
}

.vxt-contact-info-item:hover {
  border-color: var(--vxt-orange);
  transform: translateX(4px);
}

.vxt-contact-icon {
  width: 50px;
  height: 50px;
  min-width: 50px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--vxt-orange), var(--vxt-orange-light));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 18px;
}

.vxt-contact-info-item h5 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--vxt-gray);
  margin: 0 0 4px;
  text-transform: uppercase;
  letter-spacing: .5px;
}

.vxt-contact-info-item p, .vxt-contact-info-item a {
  font-size: 16px;
  font-weight: 600;
  color: var(--vxt-navy);
  margin: 0;
  text-decoration: none;
  transition: color .2s;
}

.vxt-contact-info-item a:hover { color: var(--vxt-orange); }

.vxt-contact-form-wrap {
  background: white;
  border-radius: 20px;
  padding: 44px 40px;
  box-shadow: 0 20px 60px rgba(10,22,40,0.1);
  border: 1px solid var(--vxt-gray-light);
}

.vxt-form-input {
  width: 100%;
  border: 1.5px solid var(--vxt-gray-light);
  border-radius: 10px;
  padding: 13px 16px;
  font-size: 15px;
  font-family: 'DM Sans', sans-serif;
  color: var(--vxt-navy);
  outline: none;
  transition: border-color .2s;
  background: var(--vxt-off-white);
}

.vxt-form-input:focus {
  border-color: var(--vxt-blue);
  background: white;
}

.vxt-form-btn {
  width: 100%;
  background: var(--vxt-orange);
  color: white;
  border: none;
  border-radius: 10px;
  padding: 15px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition-fast);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.vxt-form-btn:hover {
  background: var(--vxt-navy);
  transform: translateY(-2px);
}

/* Modal styling for careers */
.modal-content {
  border-radius: 16px;
  border: none;
  box-shadow: 0 30px 80px rgba(0,0,0,0.2);
}

.modal-header {
  background: var(--vxt-navy);
  color: white;
  border-radius: 16px 16px 0 0;
  padding: 20px 28px;
  border-bottom: none;
}

.modal-header .modal-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 20px;
}

.modal-header .btn-close {
  filter: invert(1);
}

.modal-body {
  padding: 28px;
}

.modal-body ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.modal-body ul li {
  padding: 8px 0;
  padding-left: 22px;
  position: relative;
  font-size: 15px;
  color: var(--vxt-text-mid);
  line-height: 1.6;
  border-bottom: 1px solid var(--vxt-gray-light);
}

.modal-body ul li:last-child { border-bottom: none; }

.modal-body ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 16px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--vxt-orange);
}

.modal-footer {
  padding: 20px 28px;
  border-top: 1px solid var(--vxt-gray-light);
}

.modal-footer .btn-primary {
  background: var(--vxt-orange);
  border: none;
  border-radius: 8px;
  padding: 10px 24px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  transition: background .2s;
}

.modal-footer .btn-primary:hover { background: var(--vxt-navy); }