
body {
  margin: 0;
  font-family: 'Titillium Web', sans-serif;
  background-color: #fff;
  color: #111;
}


/* === Header Container === */
.top-header {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  background-color: #f1f1f1; /* light grey background */
  border-radius: 20px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
  text-align: center;
  margin-bottom: 30px;
}

/* Company Name */
.company-name {
  font-size: 72px;
  margin: 0;
  font-weight: 900;
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: center;
  color: transparent;
  -webkit-text-stroke: 2px #333; /* Outline effect */
  text-stroke: 2px #333;
}
/* === "Services Inc." Styling === */
.company-name .services-text {
  color: #111; /* solid dark black */
  -webkit-text-stroke: 0;
  font-weight: 900;
}

/* === Static Ampersand (Dark Black) === */
.letter-amp {
  color: #111; /* solid dark black */
  -webkit-text-stroke: 0;
  display: inline-block;
}

.letter-m,
.letter-e {
  color: #ffcc00; /* yellow */
  -webkit-text-stroke: 0;
  display: inline-block;
  animation: pulseME 3s ease-in-out infinite;
}

@keyframes pulseME {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
}



.navbar {
  background-color: #eeeeee;
  display: flex;
  justify-content: center;
  padding: 15px;
  gap: 20px;
  border-bottom: 2px solid #ccc;
  flex-wrap: wrap;
}

.navbar a {
  color: #222;
  text-decoration: none;
  font-weight: bold;
  padding: 8px 16px;
  transition: background-color 0.3s ease;
}

.navbar a:hover {
  background-color: #ddd;
  border-radius: 6px;
}

.page-title {
  text-align: center;
  font-size: 36px;
  margin: 30px auto 20px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  padding: 20px;
}

.gallery-grid img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.15);
  transition: transform 0.3s ease;
}

.gallery-grid img:hover {
  transform: scale(1.02);
}

.toggle-button {
  display: block;
  margin: 30px auto;
  padding: 10px 20px;
  background-color: #0077aa;
  color: white;
  border: none;
  font-size: 16px;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.toggle-button:hover {
  background-color: #005f88;
}


