/* Hero Section */
.hero {
  position: relative;
  height: 70vh;
  background: url center no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.hero .overlay {
  background: rgba(0,0,0,0.6);
  padding: 2rem;
  border-radius: 1rem;
  color: #fff;
}
.hero h1 { font-size: 2.5rem; margin: 0; }
.hero p { font-size: 1.2rem; margin: 0.5rem 0 1.5rem; }

.btn {
  display: inline-block;
  padding: 0.75rem 1.25rem;
  background: #2563eb;
  color: #fff;
  font-weight: 600;
  border-radius: 0.5rem;
  text-decoration: none;
  transition: background 0.2s;
}
.btn:hover { background: #1d4ed8; }

/* Service Gallery */
.service-gallery {
  display: grid;
  gap: 2rem;
  max-width: 1200px;
  margin: 3rem auto;
  padding: 0 1rem;
}
.service-item {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
.service-item img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  display: block;
  transition: transform 0.3s;
}
.service-item:hover img { transform: scale(1.05); }

.service-text {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 1.5rem;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
  color: #fff;
}
.service-text h2 { margin: 0 0 0.5rem; }
.service-text p { margin: 0; font-size: 0.95rem; }

/* Footer */
footer {
  background: #111827;
  color: #fff;
  text-align: center;
  padding: 1rem;
  margin-top: 3rem;
}
