body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #f9f9f9;
}

/* Navbar logo */
.navbar-brand img {
  height: 50px;
}

/* Section titles */
.section-title {
  margin-top: 60px;
  margin-bottom: 30px;
  color: #1d3557;
  border-left: 5px solid #1d3557;
  padding-left: 15px;
}

/* Services cards */
.service-card {
  background: white;
  border: none;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: 0.3s ease-in-out;
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

/* Icons */
.icon-img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  margin-bottom: 20px;
}

/* Footer */
footer {
  background-color: #1d3557;
  color: white;
  padding: 20px 0;
}
