/* --- Hero Section --- */
.hero {
  height: 80vh;
  background: linear-gradient(135deg, #1e293b 0%, #2563eb 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  padding: 0 20px;
}

.hero-title span {
  display: inline-block;
}

.hero-content h2 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  line-height: 1.4;
  word-break: keep-all;
  overflow-wrap: anywhere;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

/* --- Service Section --- */
.services {
  padding: 100px 0;
  background-color: var(--light-color);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 900px;
  margin: 0 auto;
}

.service-card {
  background: var(--white);
  padding: 50px 30px;
  border-radius: 12px;
  text-align: center;
  border: 1px solid #e2e8f0;

  min-height: 350px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.icon-wrapper {
  width: 100px;
  height: 100px;
  margin-bottom: 25px;
  background-color: #f1f5f9;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.service-card p {
  font-size: 1rem;
  line-height: 1.6;
  color: #64748b;
}

/* --- Responsive Design --- */
@media (max-width: 768px) {
  .hero-content h2 {
    font-size: 1.8rem;
    padding: 0 10px;
    br {
      display: none;
    }
  }
  .service-grid {
    grid-template-columns: 1fr;
  }
  .service-card {
    min-height: auto;
  }
}
