body {
  font-family: 'Poppins', sans-serif;
}

/* Navbar */
.navbar {
  background: rgba(0, 0, 0, 0.7);
}

/* Hero */
.hero-section {
  height: 100vh;
  background: url('https://images.pexels.com/photos/3184287/pexels-photo-3184287.jpeg') center/cover no-repeat;
  background-size: cover;
  padding-top: 120px;
}

/* Services */
.service-card {
  border-radius: 15px;
  transition: 0.3s;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

/* Portfolio Text */
.portfolio-text {
  background: #fff;
  border-radius: 12px;
  padding: 25px;
}

/* Buttons */
.btn-warning {
  background: #ffb300;
  border: none;
}
