/* service.css */

body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background-color: #fefefe;
  color: #333;
  line-height: 1.6;
}

.service-hero {
  background-size: cover;
  background-position: center;
  padding: 100px 20px;
  position: relative;
  color: #fff;
  text-align: center;
}

.service-hero .overlay {
  background-color: rgba(0, 0, 0, 0.6);
  padding: 60px 20px;
  border-radius: 12px;
  display: inline-block;
}

.service-hero h1 {
  font-size: 48px;
  margin-bottom: 10px;
}

.service-hero p {
  font-size: 20px;
  margin: 0;
}

.service-content {
  padding: 60px 20px;
}

.container {
  max-width: 1000px;
  margin: auto;
}

.service-content h2 {
  font-size: 32px;
  color: #007bff;
  margin-bottom: 20px;
}

.service-content p {
  font-size: 17px;
  color: #444;
  margin-bottom: 20px;
}

.btn-primary {
  display: inline-block;
  background-color: #007bff;
  color: white;
  padding: 12px 28px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.btn-primary:hover {
  background-color: #0056b3;
}
