/* home.css - old style */
.hero {
  background: linear-gradient(to right, #ffecd2, #fcb69f);
  padding: 100px 20px;
  text-align: center;
  color: #333;
}

.hero h1 {
  font-size: 48px;
  margin-bottom: 10px;
}

.hero p {
  font-size: 20px;
  margin-bottom: 20px;
}

.hero .btn {
  background: #333;
  color: white;
  padding: 10px 25px;
  text-decoration: none;
  border-radius: 25px;
  font-weight: bold;
  transition: background 0.3s ease;
  cursor: pointer;
}

.hero .btn:hover {
  background: #555;
}

/* Services Section */
.section.services {
  padding: 60px 20px;
  background-color: #f9f9f9;
  text-align: center;
}

.section.services h2 {
  font-size: 32px;
  margin-bottom: 30px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
  padding: 0 20px;
}

.service-card {
  background: white;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.service-card h3 {
  font-size: 22px;
  margin-bottom: 10px;
}

.service-card p {
  font-size: 16px;
  color: #555;
}
