/* ── Stats Strip Modular Styles (V4) ── */
.stats-v3-section {
  position: relative;
  z-index: 100;
  margin-top: -50px; /* Overlap effect */
  padding: 0;
}

.stats-v3-container-glass {
  background: #ffffff;
  border-radius: 15px;
  box-shadow: 0 25px 70px rgba(0,0,0,0.1);
  border: 1px solid rgba(23, 81, 145, 0.05);
  padding: 40px 20px;
}

.stats-v3-item {
  text-align: center;
  transition: all 0.4s ease;
  border-right: 1px solid #f1f5f9;
}

.stats-v3-item:last-child {
  border-right: none;
}

.stats-v3-icon {
  font-size: 2.2rem;
  color: var(--v2-primary, #175191);
  margin-bottom: 12px;
  display: block;
  transition: transform 0.3s ease;
}

.stats-v3-item:hover .stats-v3-icon {
  transform: translateY(-5px) scale(1.1);
  color: var(--v2-accent, #f59e0b);
}

.stats-v3-title {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--v2-dark, #0f172a);
  margin-bottom: 3px;
  letter-spacing: -0.5px;
}

.stats-v3-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: #64748b;
  text-transform: none;
}

/* Responsive fixes */
@media (max-width: 991px) {
  .stats-v3-section { margin-top: -30px; padding: 0 15px; }
  .stats-v3-item { border-right: none; border-bottom: 1px solid #f1f5f9; padding: 20px 0; }
  .stats-v3-item:last-child { border-bottom: none; }
}

/* Responsive fixes */
@media (max-width: 991px) {
  .stats-v3-item { border-right: none; border-bottom: 1px solid #f1f5f9; }
  .stats-v3-item:last-child { border-bottom: none; }
}

/* ── Capabilities (Dhruva Difference) Modular Styles (V4) ── */
.cap-v3-section {
  background: #fff;
  padding: 100px 0;
  position: relative;
}

.cap-v3-card {
  background: #ffffff;
  padding: 35px;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.04);
  border: 1px solid #f1f5f9;
  height: 100%;
  transition: all 0.4s ease;
}

.cap-v3-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
  border-color: var(--v2-primary, #175191);
}

.cap-v3-icon {
  width: 60px;
  height: 60px;
  background: rgba(23, 81, 145, 0.05);
  color: var(--v2-primary, #175191);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 25px;
  transition: all 0.4s ease;
}

.cap-v3-card:hover .cap-v3-icon {
  background: var(--v2-primary, #175191);
  color: #fff;
}

.cap-v3-card h4 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #0f172a;
}

.cap-v3-card p {
  font-size: 0.95rem;
  color: #64748b;
  line-height: 1.6;
  margin: 0;
}
