body {
  font-family: 'Poppins', sans-serif;
  scroll-behavior: smooth;
}

/* NAVBAR */
.navbar {
  background: rgba(0,0,0,0.7);
}
.navbar-brand, .nav-link {
  color: #fff !important;
}
.navbar .btn {
  border-radius: 30px;
}

/* HERO */
.hero {
  height: 100vh;
  background: url('https://images.unsplash.com/photo-1522202176988-66273c2fd55f') center/cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
}
.hero .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.65);
}
.hero-content {
  position: relative;
  color: #fff;
  max-width: 700px;
}
.hero h1 {
  font-size: 3rem;
  font-weight: 700;
}

/* STATS */
.stats {
  padding: 60px 0;
  background: #f8f9fa;
}
.stats h2 {
  color: #0d6efd;
  font-weight: 700;
}

/* ABOUT */
.about {
  padding: 80px 0;
}

/* SERVICES */
.services {
  padding: 80px 0;
  background: #f8f9fa;
}
.service-card {
  background: #fff;
  padding: 30px;
  text-align: center;
  border-radius: 12px;
  transition: 0.3s;
}
.service-card i {
  font-size: 40px;
  color: #0d6efd;
  margin-bottom: 15px;
}
.service-card:hover {
  transform: translateY(-10px);
}

/* VALUES */
.values {
  padding: 80px 0;
}

/* REVIEWS */
.reviews {
  padding: 80px 0;
  background: #f8f9fa;
}
.review-card {
  background: #fff;
  padding: 25px;
  border-radius: 10px;
}

/* CONTACT */
.contact {
  padding: 80px 0;
  background: #0d6efd;
  color: #fff;
}

/* FOOTER */
footer {
  background: #000;
  color: #aaa;
  padding: 20px;
  text-align: center;
}
