body {
  margin: 0;
  background: #052f3a;
  color: white;
  font-family: Arial, sans-serif;
}

.gallery-page {
  padding: 110px 2vw 30px;
  background:
    linear-gradient(rgba(0, 38, 48, 0.92), rgba(0, 38, 48, 0.96)),
    url("/images/window-cleaning-bg.jpg") center/cover fixed;
  min-height: 100vh;
}

.gallery-header {
  text-align: center;
  margin-bottom: 45px;
}

.gallery-header h1 {
  font-size: 4rem;
  margin: 0;
  color: #ffffff;
  font-weight: 900;
  letter-spacing: 1px;
  text-shadow: 0 0 18px rgba(0, 195, 255, 0.35);
}

.gallery-header p {
  max-width: 700px;
  margin: 15px auto 0;
  font-size: 1.2rem;
  color: #d8f7ff;
  line-height: 1.6;
}

.masonry-gallery {
  columns: 5 220px;
  column-gap: 18px;
  max-width: 1450px;
  margin: auto;
}
p{
  font-size:16px !important;
}
.gallery-card {
  break-inside: avoid;
  margin-bottom: 18px;
  border-radius: 8px;
  overflow: hidden;
  background: #073945;
  border: 2px solid rgba(0, 195, 255, 0.45);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.35);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.gallery-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 25px rgba(0, 195, 255, 0.45);
}

.gallery-card img {
  width: 100%;
  display: block;
  object-fit: cover;
}

.gallery-card.tall img {
  height: 420px;
}

.gallery-card.medium img {
  height: 310px;
}

.gallery-card.short img {
  height: 230px;
}

.gallery-caption {
  padding: 14px;
  font-size: 0.95rem;
  color: #eafcff;
  background: #052f3a;
  border-top: 1px solid rgba(0, 195, 255, 0.35);
}

@media (max-width: 900px) {
  .gallery-header h1 {
    font-size: 2.8rem;
  }

  .gallery-page {
    padding-top: 110px;
  }
}
