/* services.css */

body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  line-height: 1.6;
  background-color: #f1f8f6;
}

/* Navbar (reuse main colors) */
.navbar {
  background-color: #004d40;
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 30px;
}

nav a {
  color: white;
  text-decoration: none;
  margin-left: 20px;
  font-weight: bold;
}

nav a.active {
  text-decoration: underline;
}

/* Services Section */
.services {
  text-align: center;
  padding: 60px 20px;
}

.services h1 {
  color: #004d40;
  margin-bottom: 10px;
}

.services p {
  color: #555;
  margin-bottom: 40px;
  font-size: 1.1em;
}

.service-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin: 0 auto;
  max-width: 1100px;
}

.service-card {
  background-color: #e0f2f1;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  overflow: hidden;
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-8px);
}

.service-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.service-card h3 {
  margin: 15px 0 10px;
  color: #004d40;
}

.service-card p {
  color: #333;
  padding: 0 15px 20px;
}

/* Footer */
footer {
  background-color: #004d40;
  color: white;
  text-align: center;
  padding: 20px;
  margin-top: 40px;
}

/* Responsive */
@media (max-width: 600px) {
  nav a {
    display: block;
    margin: 10px 0;
  }
  .navbar {
    flex-direction:
