body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  color: #333;
}

/* Navbar */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 50px;
  background-color: #fff;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 100;
}

header img {
  height: 40px;
}

nav a {
  text-decoration: none;
  color: #333;
  margin: 0 15px;
  font-weight: 600;
}

nav a:hover {
  color: red;
}

/* Intro */
.intro {
  text-align: center;
  padding: 50px 20px;
}

.intro-text {
  max-width: 700px;
  margin: 20px auto;
}

/* Sections */
section {
  padding: 40px 60px;
}

h1, h2 {
  text-align: center;
  color: #222;
}

/* Services & Work */
.service-list, .work-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 30px;
}

.service-item, .work-item {
  width: 300px;
  border: 1px solid #ddd;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.service-item img, .work-item img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.service-item p, .work-item p {
  padding: 10px;
  font-size: 14px;
}

/* Clients */
.client-logos {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 30px;
}

.client-logos img {
  width: 100px;
  height: auto;
  margin: 10px;
  filter: grayscale(100%);
  transition: 0.3s;
}

.client-logos img:hover {
  filter: none;
}

/* Footer */
footer {
  background-color: #222;
  color: white;
  text-align: center;
  padding: 30px;
}

/* Responsive */
@media (max-width: 768px) {
  header {
    flex-direction: column;
    text-align: center;
  }

  nav a {
    display: inline-block;
    margin: 10px;
  }

  .service-item, .work-item {
    width: 90%;
  }
}
