
body {
  margin: 0;
  font-family: "Segoe UI", sans-serif;
  background: #f4f4f4;
  color: #333;
  line-height: 1.6;
}

header {
  text-align: center;
  background: linear-gradient(to right, #1c1c1c, #444);
  color: #fff;
  padding: 2rem 1rem;
}

.logo {
  max-width: 250px;
  margin-bottom: 1rem;
}

.tagline {
  font-size: 1.1rem;
  color: #ccc;
}

.intro, .services, .custom, .cta, .contact-form {
  max-width: 800px;
  margin: 2rem auto;
  padding: 0 1rem;
}

.services ul {
  list-style: none;
  padding: 0;
}

.services li {
  background: #fff;
  padding: 1rem;
  margin: 0.5rem 0;
  border-left: 5px solid #e53935;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.custom p {
  background: #fff;
  padding: 1rem;
  margin: 0.5rem 0;
  border-left: 5px solid #1976d2;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.image-block img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 1rem auto;
  border-radius: 8px;
}

.cta {
  text-align: center;
  background: #e53935;
  color: #fff;
  padding: 2rem 1rem;
  border-radius: 8px;
}

.call-button, .whatsapp-button {
  display: inline-block;
  margin: 0.5rem;
  background: #25D366;
  color: #fff;
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  text-decoration: none;
  font-weight: bold;
}

.call-button {
  background: #1976d2;
}

.contact-form form {
  background: #fff;
  padding: 1rem;
  border-radius: 8px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
}

.contact-form label {
  margin-top: 1rem;
}

.contact-form input, .contact-form textarea {
  padding: 0.5rem;
  margin-top: 0.3rem;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.contact-form button {
  margin-top: 1rem;
  padding: 0.75rem;
  background: #1c1c1c;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

footer {
  text-align: center;
  padding: 1rem;
  font-size: 0.9rem;
  background: #222;
  color: #aaa;
}
.image-background {
  position: relative;
  background: url('office-tech.jpg') center center / cover no-repeat;
  height: 350px;
  margin: 2rem 0;
  border-radius: 12px;
  overflow: hidden;
}

.image-background::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45); /* dark fade overlay */
}

.overlay-content {
  position: relative;
  z-index: 1;
  color: #fff;
  text-align: center;
  padding: 3rem 1rem;
}

.overlay-content h2 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.overlay-content p {
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}
.image-background {
  position: relative;
  background: url('office-tech.jpg') center center / cover no-repeat;
  height: 350px;
  margin: 2rem 0;
  border-radius: 12px;
  overflow: hidden;
}

.image-background::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45); /* overlay */
}

.overlay-content {
  position: relative;
  z-index: 1;
  color: #fff;
  text-align: center;
  padding: 3rem 1rem;
}

.overlay-content h2 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.overlay-content p {
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

.faq {
  max-width: 800px;
  margin: 2rem auto;
  padding: 0 1rem;
}

.faq dl dt {
  font-weight: bold;
  margin-top: 1rem;
}

.faq dl dd {
  margin: 0.5rem 0 1rem 1rem;
}
.sticky-buttons {
  display: none;
}

@media (max-width: 768px) {
  .sticky-buttons {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #fff;
    border-top: 1px solid #ccc;
    display: flex;
    justify-content: space-around;
    padding: 0.5rem 0;
    z-index: 999;
    box-shadow: 0 -1px 5px rgba(0,0,0,0.1);
  }

  .sticky-buttons a {
    flex: 1;
    margin: 0 0.5rem;
    padding: 0.75rem;
    border-radius: 8px;
    text-align: center;
    font-weight: bold;
    color: #fff;
    text-decoration: none;
  }

  .sticky-buttons .call-button {
    background: #1976d2;
  }

  .sticky-buttons .whatsapp-button {
    background: #25D366;
  }
}
/* Hide desktop buttons on mobile */
@media (max-width: 768px) {
  .desktop-buttons {
    display: none;
  }
}
/* Optional: Center buttons side by side on desktop */
.desktop-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1rem;
}