/* ViaNext Intro Section */
.vianext-intro-section {
  padding: 100px 0;
  background: #fff;
}

.vianext-intro-section .content-box {
  padding-right: 40px;
}

.vianext-intro-section .sec-title .sub-title {
  display: inline-block;
  font-size: 16px;
  line-height: 24px;
  font-family: 'Matter', sans-serif;
  color: #0ABBED;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.vianext-intro-section .sec-title h2 {
  font-size: 42px;
  line-height: 1.2;
  font-weight: 700;
  font-family: 'Matter', sans-serif;
  color: #222;
  margin-bottom: 0;
}

.vianext-intro-section .text p {
  font-size: 17px;
  line-height: 28px;
  color: #555;
  font-family: 'Matter', sans-serif;
  margin-bottom: 20px;
}

.vianext-intro-section .text p:last-child {
  margin-bottom: 0;
}

.services-preview {
  margin-top: 40px;
  padding: 30px;
  background: #f8f9fa;
  border-radius: 16px;
}

.services-preview h4 {
  font-size: 24px;
  font-weight: 700;
  font-family: 'Matter', sans-serif;
  color: #222;
  margin-bottom: 24px;
}

.services-list {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
}

.services-list li {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
  font-family: 'Matter', sans-serif;
}

.services-list li:last-child {
  margin-bottom: 0;
}

.services-list li i {
  color: #0ABBED;
  font-size: 18px;
  margin-right: 12px;
}

.services-list li span {
  font-size: 16px;
  color: #333;
  font-weight: 500;
}

.view-all-btn {
  margin-top: 24px;
}

.stats-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.stat-item {
  text-align: center;
  padding: 40px 30px;
  background: linear-gradient(135deg, #0ABBED 0%, #106DB3 100%);
  border-radius: 16px;
  box-shadow: 0px 8px 24px rgba(10, 187, 237, 0.2);
  transition: transform 300ms ease;
}

.stat-item:hover {
  transform: translateY(-5px);
}

.stat-number {
  font-size: 48px;
  font-weight: 700;
  font-family: 'Matter', sans-serif;
  color: #fff;
  margin-bottom: 12px;
  line-height: 1;
}

.stat-label {
  font-size: 16px;
  font-weight: 500;
  font-family: 'Matter', sans-serif;
  color: #fff;
  opacity: 0.95;
}

/* Responsive */
@media (max-width: 991px) {
  .vianext-intro-section .content-box {
    padding-right: 0;
    margin-bottom: 50px;
  }
  
  .stats-box {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .vianext-intro-section {
    padding: 60px 0;
  }
  
  .vianext-intro-section .sec-title h2 {
    font-size: 32px;
  }
  
  .stats-box {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .stat-item {
    padding: 30px 20px;
  }
  
  .stat-number {
    font-size: 36px;
  }
}
