body {
  font-family: 'Segoe UI', sans-serif;
  margin-top: 75px;
}

.navbar {
  background: #0b1c2d;
}

.navbar-brand,
.navbar-nav .nav-link {
  color: #fff !important;
  font-weight: 500;
}

.hero {
  height: 90vh;
  background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)),
              url('../images/hero.jpg') center/cover no-repeat;
  color: #fff;
  display: flex;
  align-items: center;
  text-align: center;
}

.hero h1 {
  font-size: 3rem;
}

.section {
  padding: 90px 0;
}

.section-title {
  font-size: 2.4rem;
  font-weight: 600;
}

.service-card {
  background: #f4f7fb;
  padding: 30px;
  border-radius: 12px;
  transition: 0.3s;
}

.service-card:hover {
  transform: translateY(-10px);
}

.pricing-card {
  background: #fff;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 0 20px rgba(0,0,0,0.08);
}

.pricing-card.active {
  border: 2px solid #0d6efd;
}

.price {
  font-size: 1.8rem;
  font-weight: bold;
}

.contact-form {
  max-width: 500px;
  margin: auto;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border-radius: 6px;
  border: 1px solid #ccc;
}

.contact-form button {
  background: #0d6efd;
  color: #fff;
  padding: 12px;
  border: none;
  width: 100%;
  border-radius: 6px;
}

.footer {
  background: #0b1c2d;
  color: #fff;
  padding: 25px;
  text-align: center;
}
