body {
  margin: 0;
  background: #000;
  color: #fff;
  font-family: 'Segoe UI', sans-serif;
}
.site-header {
  background: #111;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 40px; /* increased height */
}
.site-header nav a {
  margin: 0 15px;
  text-decoration: none;
  color: #00bfff;
  font-weight: bold;
}
.logo img {
  height: 70px; /* increased logo size */
}
.hero-slider img {
  width: 100%;
  display: block;
}
section {
  padding: 40px 20px;
  text-align: center;
}
.we-done h2,
.latest-works h2 {
  color: #00ffcc;
  margin-bottom: 30px;
  font-size: 28px;
}
.services {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
}
.service-box {
  width: 250px;
  background: #1a1a1a;
  border-radius: 8px;
  padding: 10px;
}
.service-box img {
  width: 100%;
  border-radius: 5px;
}
.gallery {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}
.gallery img {
  width: 200px;
  border-radius: 5px;
}
.site-footer {
  background: #111;
  padding: 20px;
  text-align: center;
  color: #aaa;
}
