/* assets/css/style.css */

/* Hero Section (The big banner at the top) */
.hero-section {
  background: linear-gradient(rgba(0, 50, 100, 0.7), rgba(0, 50, 100, 0.7)),
    url("../img/hero-bg.jpg");
  background-size: cover;
  background-position: center;
  color: white;
  padding: 150px 0;
  text-align: center;
}

/* Service Cards */
.service-card {
  transition: transform 0.3s ease;
  border: none;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Primary Color Override (Making it a nice medical blue) */
.text-primary {
  color: #0056b3 !important;
}
.btn-primary {
  background-color: #0056b3;
  border-color: #0056b3;
}
.btn-primary:hover {
  background-color: #004494;
}
