/* BASIC RESET & GLOBAL STYLES */
body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f8f9fa;
}

h1, h2, h3, h4, h5 {
  font-weight: 700;
}

p, li {
  line-height: 1.6;
  margin-bottom: 0.5rem;
}

a {
  text-decoration: none;
  color: inherit;
}

/* NAVBAR */
.navbar-brand {
  color: #000 !important;
}

/* HERO SECTION */
.hero {
  background: url("img/hero-bg.jpg") no-repeat center center/cover;
  height: 80vh;
  position: relative;
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

/* CTA (QUOTE) SECTION */
#quote {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* SERVICES SECTION */
.service-box img {
  max-width: 100%;
  margin-bottom: 1rem;
}

/* PROCESS SECTION */
.process-step h5 {
  color: #0d6efd;
}

/* TEAM SECTION */
.card-img-top {
  max-height: 250px;
  object-fit: cover;
}

/* CONTACT SECTION */
#contactForm .btn {
  width: 100%;
}

/* FOOTER */
footer {
  background-color: #212529;
  color: #fff;
}
footer a:hover {
  text-decoration: underline;
}

/* MEDIA QUERIES */
@media (max-width: 768px) {
  .hero {
    height: 60vh;
  }
}
