:root {
  --ve-purple: #8b5cf6;
  --ve-cyan: #06b6d4;
  --ve-orange: #f97316;
  --ve-teal: #14b8a6;
  --ve-dark: #06070f;
  --ve-muted: #475569;
  --ve-light: #f8fafc;
  --ve-grad: linear-gradient(266deg, #f63 -1.18%, #6d2cf9 96.14%);
  --ve-glass: rgba(255, 255, 255, 0.05);
  --ve-glass-border: rgba(255, 255, 255, 0.1);
  --it-grad: var(--ve-grad);
}

/* ── VIDEO HERO SECTION ── */
.it-hero-video {
  position: relative;
  min-height: 95vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #000;
  padding: 100px 0 140px;
}

.it-video-container {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.it-bg-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.it-video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(6, 7, 15, 0.85) 0%, rgba(109, 44, 249, 0.25) 100%);
  z-index: 2;
}

.it-hero-content-v2 {
  position: relative;
  z-index: 10;
}

.it-hero-badge-v2 {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 10px 24px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 35px;
  backdrop-filter: blur(10px);
}

.pulse-spark {
  width: 8px;
  height: 8px;
  background: var(--ve-purple);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--ve-purple);
  animation: spark-pulse 2s infinite;
}

@keyframes spark-pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.5);
    opacity: 0.5;
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.it-hero-title-v2 {
  font-size: clamp(48px, 6vw, 88px);
  font-weight: 950;
  color: #fff;
  line-height: 1;
  letter-spacing: -4px;
  margin-bottom: 30px;
}

.it-grad-v2 {
  background: var(--ve-grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.it-hero-desc-v2 {
  font-size: 20px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  max-width: 700px;
  margin: 0 auto 50px;
  font-weight: 500;
}

.it-hero-features-v2 {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 50px;
}

.it-feat-chip {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 12px 25px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.it-feat-chip i {
  color: var(--ve-purple);
}

.it-feat-chip:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-5px);
  border-color: var(--ve-purple);
}

.it-hero-btns-v2 {
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
}

.it-btn-v2 {
  padding: 20px 45px;
  font-size: 16px;
  font-weight: 850;
  border-radius: 16px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  display: inline-flex;
  align-items: center;
  gap: 15px;
  text-decoration: none !important;
}

.it-btn-primary-v2 {
  background: var(--ve-grad);
  color: #fff;
  box-shadow: 0 15px 35px rgba(255, 102, 51, 0.3);
}

.it-btn-primary-v2:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 25px 50px rgba(255, 102, 51, 0.4);
  color: #fff;
}

.it-btn-outline-v2 {
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
}

.it-btn-outline-v2:hover {
  background: #fff;
  color: var(--ve-dark);
  transform: translateY(-8px);
}

@media (max-width: 991px) {
  .it-hero-title-v2 {
    font-size: 56px;
    letter-spacing: -2px;
  }

  .it-hero-desc-v2 {
    font-size: 18px;
  }

  .it-hero-video {
    padding: 120px 0 80px;
  }
}

@media (max-width: 576px) {
  .it-hero-title-v2 {
    font-size: 42px;
  }

  .it-feat-chip {
    width: 100%;
    justify-content: center;
  }
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Manrope', sans-serif;
  background: #ffffff;
  color: var(--ve-dark);
}



/* ── CONTACT SECTION ── */
.ve-contact {
  padding: 100px 0;
  background: #f8fafc;
  position: relative;
  overflow: hidden;
}

.ve-contact::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.03) 0%, transparent 70%);
  z-index: 0;
}


.ve-contact-content {
  position: relative;
  z-index: 2;
}

.ve-contact-feat-item {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}

.ve-feat-circle {
  width: 50px;
  height: 50px;
  background: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ve-purple);
  font-size: 18px;
  box-shadow: 0 10px 20px rgba(15, 23, 42, 0.05);
  flex-shrink: 0;
  border: 1px solid rgba(15, 23, 42, 0.05);
}

.ve-contact-feat-item h6 {
  font-size: 16px;
  font-weight: 850;
  color: var(--ve-navy);
  margin-bottom: 5px;
}

.ve-contact-feat-item p {
  font-size: 14px;
  color: var(--ve-muted);
  line-height: 1.5;
  margin: 0;
}

/* Form Card */
.ve-contact-form-card {
  background: #ffffff;
  border-radius: 30px;
  padding: 50px;
  box-shadow: 0 40px 100px rgba(15, 23, 42, 0.08);
  border: 1px solid rgba(15, 23, 42, 0.05);
  position: relative;
  z-index: 2;
}

.ve-form-title {
  font-size: 28px;
  font-weight: 900;
  color: var(--ve-navy);
  margin-bottom: 35px;
  letter-spacing: -1px;
}

.ve-form-label {
  display: block;
  font-size: 13px;
  font-weight: 800;
  color: var(--ve-navy);
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.ve-form-input {
  width: 100%;
  padding: 15px 20px;
  background: #f1f5f9;
  border: 2px solid transparent;
  border-radius: 12px;
  font-size: 15px;
  color: var(--ve-navy);
  transition: all 0.3s ease;
  outline: none;
}

.ve-form-input:focus {
  background: #ffffff;
  border-color: var(--ve-purple);
  box-shadow: 0 10px 20px rgba(139, 92, 246, 0.1);
}

.ve-form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%230f172a' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 15px center;
  background-size: 18px;
  padding-right: 45px;
}

textarea.ve-form-input {
  resize: none;
}


.ve-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 34px;
  font-size: 14px;
  font-weight: 800;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.25s ease;
  letter-spacing: 0.5px;
  cursor: pointer;
}


.ve-btn-fill {
  background-image: linear-gradient(266deg, #f63 -1.18%, #6d2cf9 96.14%);
  color: #fff;

  background-size: 150% 100%;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}


.ve-btn-fill svg {
  transition: transform 0.25s ease;
}

.ve-btn-fill:hover svg {
  transform: translateX(4px);
}

.ve-btn-outline {
  background: transparent;
  color: var(--ve-purple);
  border: 2px solid var(--ve-purple);
}

.ve-btn-outline:hover {
  border-color: var(--ve-purple);
  background: rgba(15, 23, 42, 0.03);
  transform: translateY(-2px);
}

@media (max-width: 767px) {
  .ve-contact-form-card {
    padding: 30px 20px;
  }
}

.testi-section {
  padding: 100px 0px;
  background-color: #ffffff;
  position: relative;
  overflow: hidden;
}

.testi-section .shape-23 {
  position: absolute;
  top: 0;
  left: 0;
  width: 520px;
  height: 520px;
  background-image: url('https://expert-themes.com/html/ithub/ithub/assets/images/background/pattern-23.png');
  background-repeat: no-repeat;
  background-size: contain;
  pointer-events: none;
  z-index: 0;
  opacity: 0.55;
}

.top-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 44px;
  position: relative;
  z-index: 2;
  flex-wrap: wrap;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.8px;
  text-transform: uppercase;
  color: var(--ve-orange);
  margin-bottom: 18px;
}

.eyebrow .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--ve-purple);
}

.eyebrow .dot2 {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--ve-orange);
}

.eyebrow .dot3 {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #e5e7eb;
}

.eyebrow::before,
.eyebrow::after {
  content: "";
  width: 28px;
  height: 2px;
  background: linear-gradient(90deg, var(--ve-purple), var(--ve-orange));
  border-radius: 2px;
}

.main-title {
  font-size: clamp(36px, 4.5vw, 64px);
  font-weight: 950;
  color: var(--ve-dark);
  letter-spacing: -3px;
  line-height: 1;
}

.main-title em {
  font-style: italic;
  background: linear-gradient(135deg, var(--ve-purple), var(--ve-orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.lets-talk-col {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
  padding-top: 6px;
}

.lets-talk-text {
  font-size: 24px;
  font-weight: 800;
  font-style: italic;
  color: var(--ve-purple);
  display: flex;
  align-items: center;
  gap: 8px;
}

.contact-btn {
  display: inline-flex;
  align-items: center;
  padding: 12px 26px;
  background: var(--ve-dark);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s;
}

.contact-btn:hover {
  background: var(--ve-purple);
  box-shadow: 0 8px 24px rgba(139, 92, 246, 0.35);
  transform: translateY(-2px);
  color: #fff;
}

.lets-desc {
  font-size: 13px;
  line-height: 1.65;
  color: var(--ve-muted);
  max-width: 320px;
  text-align: right;
}

.testi-grid {
  display: grid;
  grid-template-columns: 270px 1fr;
  gap: 22px;
  align-items: start;
  position: relative;
  z-index: 2;
}

.rating-card_testi {
  background: linear-gradient(160deg, #f3f0ff 0%, #ede9fe 100%);
  border-radius: 24px;
  padding: 40px 30px 36px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  min-height: 400px;
  border: 1px solid rgba(139, 92, 246, 0.10);
}

.big-rating {
  font-size: 96px;
  font-weight: 900;
  color: var(--ve-dark);
  letter-spacing: -6px;
  line-height: 1;
  margin-bottom: 22px;
}

.avatar-stack {
  display: flex;
  align-items: center;
  margin-bottom: 4px;
}

.av {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 2.5px solid #fff;
  margin-right: -11px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 800;
  color: #fff;
}

.av1 {
  background: linear-gradient(135deg, #8b5cf6, #6d28d9);
  z-index: 4;
}

.av2 {
  background: linear-gradient(135deg, #f97316, #fb923c);
  z-index: 3;
}

.av3 {
  background: linear-gradient(135deg, #14b8a6, #0d9488);
  z-index: 2;
}

.av4 {
  background: linear-gradient(135deg, #f43f5e, #e11d48);
  z-index: 1;
}

.client-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--ve-dark);
  margin-top: 14px;
}

.client-sub {
  font-size: 12px;
  color: var(--ve-muted);
  margin-bottom: 22px;
}

.rating-tagline {
  font-size: 15.5px;
  font-weight: 800;
  color: var(--ve-dark);
  line-height: 1.35;
  margin-bottom: 30px;
  flex: 1;
}

.testi-right {
  background-image: url('https://expert-themes.com/html/ithub/ithub/assets/images/background/pattern-23.png');
  background-repeat: no-repeat;
  background-position: top left;
  background-size: cover;
  border-radius: 24px;
  padding: 36px 32px 40px;
  position: relative;
  overflow: hidden;
}

.testi-card {
  background: #fff;
  border-radius: 20px;
  padding: 34px 30px;
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  position: relative;
  transition: all 0.3s;
}

.testi-card:hover {
  transform: translateY(-5px);
}

.card-indicator {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 6px;
  height: 30px;
  background: var(--ve-purple);
  border-radius: 10px;
}

.card-indicator.orange {
  background: var(--ve-orange);
}

.card-indicator.teal {
  background: var(--ve-teal);
}

.card-quote {
  font-size: 15px;
  line-height: 1.7;
  color: var(--ve-muted);
  margin-bottom: 30px;
  flex: 1;
}

.card-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.c-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.c-avatar-fb {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
}

.author-info .c-name {
  font-size: 16px;
  font-weight: 800;
  color: var(--ve-dark);
}

.author-info .c-role {
  font-size: 12px;
  color: var(--ve-muted);
}

.card-rating {
  margin-top: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.r-num {
  font-size: 14px;
  font-weight: 800;
  color: var(--ve-dark);
}

.stars {
  display: flex;
  gap: 2px;
}

.st {
  width: 12px;
  height: 12px;
  background: #FFD700;
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}

.st.dim {
  background: #E5E7EB;
}

.nav-row {
  margin-top: 24px;
  display: flex;
  gap: 12px;
}

.nav-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid #E5E7EB;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
}

.nav-btn:hover {
  background: var(--ve-purple);
  color: #fff;
  border-color: var(--ve-purple);
}

/* FAQ */
.faq-section {
  padding: 120px 0;
  background: #ffffff;
  position: relative;
  overflow: hidden;
}

.faq-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 1;
}

.faq-orb-1 {
  width: 400px;
  height: 400px;
  background: rgba(139, 92, 246, 0.05);
  top: -100px;
  left: -150px;
}

.faq-orb-2 {
  width: 450px;
  height: 450px;
  background: rgba(20, 184, 166, 0.04);
  bottom: -150px;
  right: -100px;
}

.faq-header {
  text-align: center;
  margin-bottom: 70px;
}

.faq-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(139, 92, 246, 0.06);
  border: 1px solid rgba(139, 92, 246, 0.12);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--ve-purple);
  margin-bottom: 24px;
}

.faq-dot-pulse {
  width: 8px;
  height: 8px;
  background: var(--ve-purple);
  border-radius: 50%;
  position: relative;
}

.faq-dot-pulse::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid var(--ve-purple);
  opacity: 0;
  animation: pulse-ring 2s infinite;
}

@keyframes pulse-ring {
  0% {
    transform: scale(0.5);
    opacity: 0;
  }

  50% {
    opacity: 0.5;
  }

  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}

.faq-title {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 900;
  line-height: 1.1;
  color: var(--ve-dark);
  margin-bottom: 24px;
  letter-spacing: -1.5px;
}

.faq-title-grad {
  background: var(--ve-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.faq-title-bar {
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--ve-purple), var(--ve-teal));
  border-radius: 2px;
  margin: auto;
}

.faq-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 900px;
  margin: auto;
}

.faq-item {
  background: #ffffff;
  border: 1px solid #f0eeff;
  border-radius: 20px;
  padding: 6px;
  transition: all 0.4s;
  box-shadow: 0 4px 20px rgba(139, 92, 246, 0.03);
}

.faq-item:hover {
  border-color: rgba(139, 92, 246, 0.2);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(139, 92, 246, 0.08);
}

.faq-item.active {
  border-color: var(--ve-purple);
  background: linear-gradient(135deg, #ffffff, rgba(139, 92, 246, 0.02));
  box-shadow: 0 15px 40px rgba(139, 92, 246, 0.1);
}

.faq-question {
  padding: 24px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}

.faq-question span {
  font-size: 18px;
  font-weight: 700;
  color: var(--ve-dark);
}

.faq-item.active .faq-question span {
  color: var(--ve-purple);
}

.faq-toggle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #f3f0ff;
  color: var(--ve-purple);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: all 0.4s;
}

.faq-item.active .faq-toggle {
  background: var(--ve-purple);
  color: #ffffff;
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s;
  padding: 0 30px;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding-bottom: 30px;
}

.faq-answer p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--ve-muted);
  margin: 0;
}

.faq-footer-cta {
  margin-top: 50px;
  text-align: center;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.faq-cta-link {
  color: var(--ve-purple);
  font-weight: 800;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.3s;
}

.faq-cta-link:hover {
  gap: 12px;
}

@media(max-width:1100px) {
  .testi-grid {
    grid-template-columns: 240px 1fr;
  }
}

@media(max-width:991px) {
  .testi-grid {
    grid-template-columns: 1fr;
  }

  .rating-card_testi {
    min-height: auto;
  }

  .lets-talk-col {
    display: none;
  }
}

@media (max-width: 768px) {
  .faq-section {
    padding: 40px 0;
  }

  .faq-question {
    padding: 20px;
  }

  .faq-question span {
    font-size: 16px;
  }

  .faq-answer {
    padding: 0 20px;
  }

  .faq-item.active .faq-answer {
    padding-bottom: 20px;
  }
}

@media(max-width:576px) {
  .testi-section {
    padding: 70px 0 0;
  }

  .big-rating {
    font-size: 72px;
  }
}

/* ── IT STATS BAR V2 (PREMIUM) ── */
.it-stats-v2 {
  /* background: #06070f; */
  padding: 0 0 60px;
  position: relative;
  z-index: 20;
}

.it-stats-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #ffff;
  /* background: rgba(255, 255, 255, 0.07); */
  backdrop-filter: blur(40px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 40px 60px;
  border-radius: 35px;
  margin-top: -65px;
  /* Overlap with Hero */
  box-shadow:
    0 40px 80px rgba(0, 0, 0, 0.5),
    0 0 40px rgba(139, 92, 246, 0.15);
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.it-stats-wrapper:hover {
  transform: translateY(-5px);
  border-color: rgba(139, 92, 246, 0.3);
  box-shadow:
    0 40px 80px rgba(0, 0, 0, 0.5),
    0 0 30px rgba(139, 92, 246, 0.2);
}

.it-stat-item-v2 {
  display: flex;
  align-items: center;
  gap: 20px;
  flex: 1;
  justify-content: center;
}

.it-stat-icon-v2 {
  width: 60px;
  height: 60px;
  background: rgba(139, 92, 246, 0.1);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--ve-purple);
  border: 1px solid rgba(139, 92, 246, 0.2);
  transition: all 0.4s ease;
}

.it-stat-item-v2:hover .it-stat-icon-v2 {
  background: var(--ve-grad);
  color: #fff;
  transform: scale(1.1) rotate(10deg);
}

.it-stat-num-v2 {
  font-size: 36px;
  font-weight: 950;
  color: #fff;
  line-height: 1;
  margin-bottom: 4px;
  background: var(--ve-grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -1px;
}

.it-stat-label-v2 {
  font-size: 11px;
  font-weight: 800;
  color: #000;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.it-stat-sep-v2 {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.1), transparent);
  margin: 0 10px;
}

@media (max-width: 1199px) {
  .it-stats-wrapper {
    padding: 30px 40px;
  }

  .it-stat-num-v2 {
    font-size: 28px;
  }
}

@media (max-width: 991px) {
  .it-stats-wrapper {
    flex-wrap: wrap;
    margin-top: -50px;
    padding: 30px;
    gap: 30px;
  }

  .it-stat-item-v2 {
    flex: 0 0 45%;
    justify-content: flex-start;
  }

  .it-stat-sep-v2 {
    display: none;
  }
}

@media (max-width: 576px) {
  .it-stat-item-v2 {
    flex: 0 0 100%;
  }

  .it-stats-v2 {
    padding-bottom: 60px;
  }
}

/* ── OVERVIEW SECTION ── */
.it-overview {
  padding: 60px 0 100px;
  background: #ffffff;
  position: relative;
  overflow: hidden;
}

.it-ov-row {
  background-image: url('https://img.freepik.com/premium-photo/abstract-plexus-background-with-connected-lines-dots-wave-flow-plexus-geometric-effect-big-data_230610-1274.jpg?w=1480');
  background-size: cover;
  background-position: center;
  border-radius: 50px;
  padding: 80px 60px;
  border: 12px solid #ffffff;
  background-repeat: no-repeat;
  box-shadow:
    0 40px 100px rgba(0, 0, 0, 0.1),
    inset 0 0 40px rgba(0, 0, 0, 0.05),
    0 0 0 1px rgba(139, 92, 246, 0.1);
  position: relative;
  overflow: hidden;
}

.it-ov-row::before {
  content: '';
  position: absolute;
  inset: -2px;
  border: 1px solid rgba(139, 92, 246, 0.1);
  border-radius: 52px;
  pointer-events: none;
}

.it-ov-img-wrapper {
  position: relative;
  z-index: 1;
  padding: 15px;
  background: #ffffff;
  border-radius: 40px;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(139, 92, 246, 0.1);
}

.it-ov-img-wrapper::after {
  content: '';
  position: absolute;
  inset: 5px;
  border: 2px solid rgba(139, 92, 246, 0.05);
  border-radius: 35px;
  pointer-events: none;
  z-index: 3;
}

.it-ov-img {
  width: 100%;
  height: auto;
  border-radius: 25px;
  display: block;
  position: relative;
  z-index: 2;
  transition: all 0.5s ease;
}

.it-ov-img-wrapper:hover .it-ov-img {
  transform: scale(1.02);
}


.it-ov-card {
  position: absolute;
  right: -20px;
  bottom: 30px;
  background: #ffffff;
  padding: 20px 30px;
  border-radius: 24px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 15px;
  z-index: 3;
  border: 1px solid rgba(139, 92, 246, 0.1);
}

.it-ov-card-icon {
  width: 50px;
  height: 50px;
  background: rgba(139, 92, 246, 0.1);
  color: var(--ve-purple);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

.it-ov-card-val {
  font-size: 26px;
  font-weight: 900;
  color: var(--ve-dark);
  line-height: 1;
}

.it-ov-card-lbl {
  font-size: 11px;
  color: var(--ve-muted);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.it-ov-subtitle {
  display: inline-block;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--ve-purple);
  margin-bottom: 20px;
}

.it-ov-title {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 950;
  color: var(--ve-dark);
  line-height: 1.1;
  margin-bottom: 30px;
  letter-spacing: -2px;
}

.it-ov-title span {
  background: var(--ve-grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.it-ov-desc {
  font-size: 17px;
  line-height: 1.8;
  color: var(--ve-muted);
  margin-bottom: 40px;
  font-weight: 500;
}

.it-ov-list {
  list-style: none;
  padding: 0;
  margin-bottom: 45px;
}

.it-ov-list li {
  display: flex;
  gap: 20px;
  margin-bottom: 25px;
}

.it-ov-list-icon {
  width: 28px;
  height: 28px;
  background: var(--ve-purple);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  flex-shrink: 0;
  margin-top: 4px;
  box-shadow: 0 5px 15px rgba(139, 92, 246, 0.3);
}

.it-ov-list-text {
  font-size: 16px;
  color: var(--ve-dark);
  line-height: 1.6;
}

.it-ov-list-text strong {
  display: block;
  font-weight: 850;
  color: var(--ve-dark);
  margin-bottom: 4px;
}

/* ── SPECIALIZED SERVICES SECTION ── */
.it-services {
  padding: 100px 0;
  background: #f8fafc;
  position: relative;
  z-index: 10;
}

.it-services-header {
  margin-bottom: 70px;
  text-align: center;
}

.it-service-card {
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: 28px;
  padding: 50px 40px;
  height: 100%;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}

.it-service-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 40px 80px rgba(139, 92, 246, 0.12);
  border-color: var(--ve-purple);
}

.it-service-card::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.08) 0%, transparent 70%);
  transition: all 0.6s ease;
}

.it-service-card:hover::before {
  transform: scale(4);
}

.it-service-icon {
  width: 75px;
  height: 75px;
  background: rgba(139, 92, 246, 0.05);
  border-radius: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  margin-bottom: 35px;
  transition: all 0.5s ease;
  border: 1px solid rgba(139, 92, 246, 0.1);
}

.it-service-icon i {
  background: var(--ve-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.it-service-card:hover .it-service-icon {
  background: var(--ve-grad);
  transform: rotateY(180deg);
}

.it-service-card:hover .it-service-icon i {
  -webkit-text-fill-color: #ffffff;
}

.it-service-title {
  font-size: 24px;
  font-weight: 900;
  color: var(--ve-dark);
  margin-bottom: 20px;
  line-height: 1.2;
  letter-spacing: -1px;
}

.it-service-text {
  font-size: 15.5px;
  line-height: 1.75;
  color: var(--ve-muted);
  margin-bottom: 35px;
  flex-grow: 1;
}

.it-service-link {
  font-size: 13px;
  font-weight: 900;
  color: var(--ve-purple);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.it-service-link i {
  font-size: 14px;
  transition: transform 0.3s ease;
}

.it-service-card:hover .it-service-link {
  color: var(--ve-dark);
  gap: 18px;
}

.it-service-card:hover .it-service-link i {
  transform: translateX(8px);
}

@media (max-width: 991px) {
  .it-services {
    padding: 70px 0;
  }

  .it-service-card {
    padding: 40px 30px;
  }

  .it-service-grid {
    gap: 0px;
  }

  .it-ov-row {
    padding: 10px;

  }
}

/* ── STRATEGIC PROCESS SECTION V2 (INTERACTIVE) ── */
.it-process-v2 {
  padding: 120px 0;
  background: #ffffff;
  position: relative;
  overflow: hidden;
}

.it-process-row {
  display: flex;
  align-items: center;
  gap: 80px;
}

/* Left: Process List */
.it-process-list {
  flex: 1;
}

.it-process-item-v2 {
  padding: 25px 35px;
  border-radius: 20px;
  border: 1px solid transparent;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  cursor: pointer;
  margin-bottom: 10px;
  position: relative;
  background: transparent;
}

.it-process-item-v2:last-child {
  margin-bottom: 0;
}

.it-process-item-v2.active,
.it-process-item-v2:hover {
  background: #ffffff;
  border-color: rgba(139, 92, 246, 0.15);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.06);
}

/* Active Indicator Dot */
.it-process-item-v2::before {
  content: '';
  position: absolute;
  left: -15px;
  top: 50%;
  width: 8px;
  height: 8px;
  background: var(--ve-purple);
  border-radius: 50%;
  transform: translateY(-50%) scale(0);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 0 15px var(--ve-purple);
}

.it-process-item-v2.active::before {
  transform: translateY(-50%) scale(1);
}

.it-process-num-v2 {
  font-size: 13px;
  font-weight: 900;
  color: var(--ve-purple);
  text-transform: uppercase;
  letter-spacing: 2.5px;
  margin-bottom: 15px;
  display: block;
  opacity: 0.6;
}

.it-process-item-v2.active .it-process-num-v2 {
  opacity: 1;
}

.it-process-title-v2 {
  font-size: 22px;
  font-weight: 850;
  color: var(--ve-dark);
  margin: 0;
  letter-spacing: -0.5px;
  transition: color 0.4s ease;
}

.it-process-item-v2.active .it-process-title-v2 {
  background: var(--ve-grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.it-process-text-v2 {
  font-size: 16px;
  line-height: 1.7;
  color: var(--ve-muted);
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: all 0.5s ease;
}

.it-process-item-v2.active .it-process-text-v2 {
  max-height: 200px;
  opacity: 1;
  margin-top: 10px;
}

/* Right: Dynamic Visuals */
.it-process-visual {
  flex: 1;
  position: relative;
  padding: 20px;
}

.it-process-frame {
  position: relative;
  border-radius: 40px;
  background: #fff;
  box-shadow: 0 50px 100px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(139, 92, 246, 0.1);
  aspect-ratio: 1 / 1.25;
  overflow: hidden;
}

.it-process-img-container {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.it-process-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.1);
  transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.it-process-img.active {
  opacity: 1;
  transform: scale(1);
}

@media (max-width: 991px) {
  .it-process-row {
    flex-direction: column;
    gap: 50px;
  }

  .it-process-visual {
    width: 100%;
    order: -1;
  }

  .it-process-frame {
    aspect-ratio: 16/10;
  }
}

/* ── TECH ECOSYSTEM MARQUEE (REFINED) ── */
.it-ecosystem {
  padding: 80px 0;
  background: #f8fafc;
  overflow: hidden;
  position: relative;
  border-top: 1px solid rgba(15, 23, 42, 0.05);
  border-bottom: 1px solid rgba(15, 23, 42, 0.05);
  width: 100%;
  display: block;
}

.it-marquee-container {
  display: flex;
  flex-wrap: nowrap;
  gap: 100px;
  animation: marquee-scroll 40s linear infinite;
  width: max-content;
  align-items: center;
}

.it-marquee-item {
  font-size: 26px;
  font-weight: 800;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 2px;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 20px;
  transition: all 0.4s ease;
  cursor: default;
  opacity: 0.5;
  flex-shrink: 0;
}

.it-marquee-item i {
  font-size: 34px;
  color: #94a3b8;
  transition: all 0.4s ease;
}

.it-marquee-item:hover {
  color: var(--ve-purple);
  opacity: 1;
  transform: translateY(-5px);
}

.it-marquee-item:hover i {
  color: var(--ve-purple);
  transform: scale(1.2);
}

@keyframes marquee-scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}