
    body {
      font-family: Arial, sans-serif;
      margin: 0;
      background-color: #f4f4f4;
      text-align: center;
    }

    .hero {
      background-color: #333;
      color: white;
      padding: 80px 20px;
    }

    .section {
      padding: 60px 20px;
    }

    .row {
      display: flex;
      justify-content: center;
      gap: 20px;
      flex-wrap: wrap;
    }

    .box {
      background: white;
      padding: 20px;
      width: 250px;
      border-radius: 10px;
      box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    }

    .cta-button {
      display: inline-block;
      margin-top: 20px;
      padding: 12px 25px;
      background-color: #1f3c6d;
      color: white;
      text-decoration: none;
      border-radius: 5px;
    }

.hero {
  height: 400px;
  background:
    linear-gradient(rgba(20, 20, 20, 0.35), rgba(20, 20, 20, 0.35)),
    url("../../assets/images/construction.jpg");

  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
}

.hero-content h1 {
  font-size: 64px;
  font-weight: 800;
  margin-bottom: 15px;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
}

.hero-content p {
  font-size: 26px;
  font-weight: 500;
  text-shadow: 1px 1px 6px rgba(0,0,0,0.5);
}

.services {
  background-color: #f3f4f6;
  padding: 70px 20px;
  text-align: center;
}

.services h2,
.project-strip h2,
.contact-section h2 {
  font-size: 34px;
  color: #1f2937;
  margin-bottom: 10px;
}

.section-intro {
  max-width: 650px;
  margin: 0 auto 35px;
  font-size: 18px;
  color: #4b5563;
}

.service-grid {
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
}

.service-card {
  background-color: white;
  border-left: 6px solid #f59e0b;
  padding: 30px;
  width: 260px;
  text-align: left;
  box-shadow: 0 4px 12px rgba(0,0,0,0.12);
}

.service-card h3 {
  color: #111827;
  margin-bottom: 12px;
  font-size: 22px;
}

.service-card p {
  color: #374151;
  line-height: 1.5;
}

.project-strip {
  background-color: #1f2937;
  color: white;
  padding: 70px 20px;
  text-align: center;
}

.project-strip h2 {
  color: white;
}

.project-strip p {
  max-width: 750px;
  margin: 0 auto;
  font-size: 18px;
  line-height: 1.6;
}

.contact-section {
  background-color: #111827;
  color: white;
  text-align: center;
  padding: 70px 20px;
}

.contact-section h2 {
  color: white;
}

.contact-section p {
  font-size: 18px;
  margin-bottom: 25px;
}

.quote-button {
  display: inline-block;
  background-color: #f59e0b;
  color: #111827;
  padding: 14px 28px;
  font-weight: bold;
  text-decoration: none;
  border-radius: 3px;
}

.why-section {
  background-color: #f59e0b;
  color: #111827;
  padding: 65px 20px;
  text-align: center;
}

.why-section h2 {
  font-size: 34px;
  margin-bottom: 30px;
}

.why-grid {
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
}

.why-item {
  background-color: white;
  width: 280px;
  padding: 25px;
  text-align: left;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.why-item h3 {
  margin-bottom: 10px;
  color: #111827;
}

.service-card,
.why-item {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover,
.why-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 18px rgba(0,0,0,0.2);
}

.quote-button {
  display: inline-block;
  background-color: #f59e0b;
  color: #111827;
  padding: 16px 34px;
  font-weight: bold;
  text-decoration: none;
  border-radius: 4px;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.quote-button:hover {
  background-color: #ffb703;
  transform: scale(1.05);
}

.services h2::after,
.why-section h2::after,
.contact-section h2::after {
  content: "";
  display: block;
  width: 70px;
  height: 4px;
  background-color: #f59e0b;
  margin: 12px auto 0;
}
  footer {
  background-color: #111827;
  color: white;
  text-align: center;
  padding: 20px;
}
footer {
  background-color: #111827;
  color: white;
  text-align: center;
  padding: 20px;
  margin-top: 0;
}

footer p {
  margin: 0;
}
.back-home {
  text-align: center;
  padding: 25px 0;
  background-color: #f4f4f4;
}  


