body, header {
  margin: 0;
  padding: 0;
  border: none;
}
/* Interactive service icons for home page */
.service-icons {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin: 24px 0 32px 0;
}
.service-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #fff;
  border-radius: 12px;
  padding: 24px 20px 12px 20px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
  min-width: 100px;
  border: 2px solid #111;
  position: relative;
}
.icon-bw {
  font-size: 2.2rem;
  margin-bottom: 10px;
}
.service-icon div {
  font-size: 1.05rem;
  color: #111;
  margin-top: 2px;
}
.service-icon:focus {
  outline: 2px solid #222;
}
.service-icon:hover, .service-icon:focus {
  transform: translateY(-8px) scale(1.07);
  box-shadow: 0 6px 18px rgba(0,0,0,0.22);
  background: #111;
}
.service-icon:hover .icon-bw, .service-icon:focus .icon-bw {
  filter: none;
}
.service-icon:hover div, .service-icon:focus div {
  color: #fff;
}
.service-detail {
  display: none;
  position: absolute;
  left: 50%;
  top: 100%;
  transform: translateX(-50%);
  background: #111;
  color: #fff;
  padding: 16px 20px;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.18);
  min-width: 220px;
  z-index: 10;
  margin-top: 12px;
  font-size: 0.98rem;
  text-align: left;
}
.service-icon:hover .service-detail, .service-icon:focus .service-detail {
  display: block;
}
/* Center align content for about-us-list and services summary */
.center-content {
  text-align: center;
}
/* Ensure About Us and Mission, Vision, Values font size is consistent */
.about-us-list {
  font-size: 1rem;
}
body {
  margin: 0;
  font-family: sans-serif;
  background: #000 !important;
  color: white;
}
header {
  border-bottom: 1px solid #333;
  padding: 20px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: transparent;
}
.header-center-logo {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 22px;
}
nav {
  margin-bottom: 0;
}
footer {
  font-size: 0.9rem;
  color: #888;
  padding: 20px 40px;
  text-align: center;
}
.logo-left {
  display: flex;
  align-items: center;
}
.logo-left img {
  width: 120px;
  height: auto;
  margin-right: 20px;
}
nav a {
  color: white;
  margin: 0 10px;
  text-decoration: none;
}

.hero {
  padding-top: 12px;
  padding-bottom: 32px;
}
section {
  padding: 40px 40px;
  max-width: 1000px;
  margin: auto;
}
.hero h1 {
  font-size: 3rem;
  margin-bottom: 0.5rem;
}
.hero p {
  color: #aaa;
  font-size: 1.1rem;
}
.button {
  background: white;
  color: black;
  padding: 10px 20px;
  margin: 10px;
  border: none;
  cursor: pointer;
  font-weight: bold;
}
.card {
  background: #111;
  margin-bottom: 40px;
  padding: 20px;
  border-radius: 8px;
  border: 1px solid #333;
}
.service-list {
  list-style: none;
  margin: 0;
  padding-left: 1.75rem;
  border-left: 2px solid #555;
}
.service-list li {
  position: relative;
  margin: 12px 0;
  padding-left: 0.25rem;
  line-height: 1.5;
}
.service-list li::before {
  content: '';
  position: absolute;
  left: -1.05rem;
  top: 0.55em;
  width: 10px;
  height: 10px;
  background: white;
  border-radius: 50%;
  border: 2px solid #555;
}
.timeline {
  border-left: 2px solid #555;
  margin-left: 15px;
  padding-left: 20px;
}
.timeline-step {
  position: relative;
  margin-bottom: 20px;
}
.timeline-step::before {
  content: '';
  position: absolute;
  left: -11px;
  top: 5px;
  width: 12px;
  height: 12px;
  background: white;
  border-radius: 50%;
  border: 2px solid #555;
}
.why {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  color: #ccc;
}
form input, form textarea {
  width: 100%;
  padding: 10px;
  margin: 10px 0;
  background: #111;
  color: white;
  border: 1px solid #555;
}

/* --- Consistent section spacing across all pages --- */
hr {
  border: none;
  border-top: 1.5px solid #444;
  margin: 20px 0;  /* Adjusts top and bottom space */
}

h2, h3 {
  margin-top: 20px;   /* Space above the heading */
  margin-bottom: 8px; /* Space below the heading */
}
