body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: #ffffff;
  color: #1f2933;
}

header {
  background: #0f172a;
  color: white;
  padding: 80px 24px;
  text-align: center;
}

header h1 {
  margin: 0 0 12px;
  font-size: 48px;
}

header p {
  margin: 0;
  font-size: 22px;
}

#services {
  max-width: 1100px;
  margin: 0 auto;
  padding: 70px 24px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service {
  border: 1px solid #d6dbe1;
  padding: 24px;
  border-radius: 8px;
}


.about {
  background: #f4f6f8;
  padding: 70px 24px;
  text-align: center;
}

.about h2,
.about p {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.work-grid img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.work-grid figure {
  margin: 0;
}

.work-grid figcaption {
  margin-top: 10px;
}

.client-work {
  max-width: 1000px;
  margin: 0 auto;
  padding: 70px 40px;
}



.work-grid a {
  display: block;
  overflow: hidden;
  cursor: zoom-in;
}

.work-grid img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  transition: transform 0.25s ease, filter 0.25s ease;
}

.work-grid a:hover img {
  transform: scale(1.05);
  filter: brightness(1.08);
}




@media (max-width: 800px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .work-grid {
    grid-template-columns: 1fr 1fr;
  }

  .client-work {
    padding: 50px 20px;
  }

  header {
    padding: 60px 20px;
  }

  header h1 {
    font-size: 38px;
  }
}

@media (max-width: 500px) {
  .work-grid {
    grid-template-columns: 1fr;
  }
}

.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0);
  align-items: center;
  justify-content: center;
  z-index: 9999;
  cursor: zoom-out;
  animation: lightboxFade 0.25s ease forwards;
}

.lightbox img {
  max-width: 95%;
  max-height: 95%;
  object-fit: contain;
  animation: imageZoom 0.25s ease forwards;
}

@keyframes lightboxFade {
  from { background: rgba(0, 0, 0, 0); }
  to   { background: rgba(0, 0, 0, 0.9); }
}

@keyframes imageZoom {
  from {
    transform: scale(0.92);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
.site-logo {
  width: 480px;
  max-width: 60%;
  height: auto;
  margin-bottom: 20px;
  background: white;
  padding: 12px 18px;
  border-radius: 8px;
}

.service {
  border: 1px solid #d6dbe1;
  padding: 28px;
  border-radius: 10px;
  background: #ffffff;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service h3 {
  margin-top: 0;
  font-size: 22px;
}

.service:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

.about {
  background: #f4f6f8;
  padding: 80px 24px;
  text-align: center;
  border-top: 1px solid #e2e6ea;
  border-bottom: 1px solid #e2e6ea;
}

.about h2 {
  font-size: 34px;
  margin-bottom: 22px;
}

.about p {
  max-width: 760px;
  margin: 0 auto 18px;
  line-height: 1.7;
  font-size: 18px;
}




.site-footer {
  background: #0f172a;
  color: white;
  text-align: center;
  padding: 60px 24px;
}

.site-footer h2 {
  margin-top: 0;
  font-size: 32px;
}

.site-footer a {
  color: white;
  font-weight: bold;
  text-decoration: none;
}

.site-footer a:hover {
  text-decoration: underline;
}









.top-nav {
  background: #ffffff;
  padding: 16px 24px;
  text-align: center;
  border-bottom: 1px solid #e2e6ea;
}

.top-nav a {
  margin: 0 14px;
  color: #1f2933;
  text-decoration: none;
  font-weight: bold;
}

.top-nav a:hover {
  text-decoration: underline;
}





.company-about {
  max-width: 1100px;
  margin: 0 auto;
  padding: 70px 24px;
  line-height: 1.7;
  font-size: 18px;
}

.about-float-image {
  float: left;
  width: 360px;
  max-width: 45%;
  height: auto;
  margin: 0 30px 20px 0;
  border-radius: 8px;
}

.company-about::after {
  content: "";
  display: block;
  clear: both;
}

@media (max-width: 700px) {
  .about-float-image {
    float: none;
    width: 100%;
    max-width: 100%;
    margin: 0 0 24px 0;
  }
}