/* ===== About Intro ===== */
.about-intro {
  padding: 80px 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.about-text h3 {
  font-size: 2rem;
  margin-bottom: 15px;
}

.about-text p {
  color: #475569;
  line-height: 1.7;
  margin-bottom: 15px;
}

.about-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

/* ===== Core Values ===== */
.bg-light {
  background: #f8fafc;
}

.values .value-card {
  background: #ffffff;
  padding: 35px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 60px rgba(0,0,0,0.18);
}

.value-card h4 {
  font-size: 1.4rem;
  margin-bottom: 10px;
}

/* ===== Services Overview ===== */
.services-overview .service-box {
  background: linear-gradient(135deg, #2563eb, #1e40af);
  color: #ffffff;
  padding: 30px;
  border-radius: 18px;
  text-align: center;
  font-weight: 600;
  box-shadow: 0 15px 35px rgba(37,99,235,0.4);
  transition: transform 0.3s ease;
}

.services-overview .service-box:hover {
  transform: translateY(-6px);
}

/* ===== Stats ===== */
.stats {
  background: #0f172a;
  color: #ffffff;
}

.stat-box {
  text-align: center;
}

.stat-box h3 {
  font-size: 2.5rem;
  color: #60a5fa;
}

.stat-box p {
  color: #cbd5e1;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr;
  }

  .stat-box h3 {
    font-size: 2rem;
  }
}
