/* Global */
body {
  font-family: 'Inter', sans-serif;
  scroll-behavior: smooth;
}
h1, h2, h3 {
  color: #0d6efd; /* Bootstrap primary */
}

/* Hero */
.hero {
  position: relative;
  min-height: 80vh;
  background: 
    url('./images/65165016506058.jpg') 
    center/cover no-repeat;
}
.hero .overlay {
  position: absolute;
  inset: 0;
  background-color: rgb(37 68 115 / 85%);
}
.hero .container {
  position: relative;
  z-index: 1;
}

/* Service Cards */
.service-card {
  transition: transform 0.3s, box-shadow 0.3s;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 0.5rem 1rem rgba(0,0,0,0.15);
}

/* Pricing */
.price {
  color: #0d6efd;
}

/* Footer */
footer a:hover {
  text-decoration: underline;
}
