body {
  font-family: "Poppins", sans-serif;
  background-color: #f8f9fa;
  scroll-behavior: smooth;

}

/* ---------- HERO SECTION ---------- */
.services-banner {
  background: url('../images/serv5.gif') center center/cover no-repeat;
  /* You can replace with your actual background image */
  position: relative;
  height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;


}

.services-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6); /* dark overlay */
}

.services-content {
  position: relative;
  z-index: 1;
}

.services-content h1 {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.services-content p {
  font-size: 1.2rem;
  color: #ddd;
}


/* ---------- SERVICE BOXES ---------- */
.service-box {
  background: #fff;
  transition: all 0.3s ease-in-out;
  border-left: 4px solid #007bff;

}

.service-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.service-box img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 10px;
}

h2 i {
  color: #007bff;
  margin-right: 8px;
}

ul {
  margin-top: 10px;
  padding-left: 20px;
}


/* ---------- FOOTER ---------- */
footer {
  background: linear-gradient(135deg, #00205b, #0056d2);
}
