/* Base Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
  background: #fff;
  color: #222;
  line-height: 1.6;
}

/* Navbar */
.navbar {
  position: sticky;
  top: 0;
  background: rgba(17, 17, 17, 0.95);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.8rem 2rem;
  z-index: 10;
}

.logo {
  font-weight: 700;
  font-size: 1.5rem;
  color: white;
}

.navbar nav a {
  color: white;
  margin: 0 1rem;
  text-decoration: none;
  font-weight: 600;
}

.navbar nav a:hover {
  text-decoration: underline;
}

/* Hero Section */
.hero {
  background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('bg-hero-gradient.jpg') no-repeat center/cover;
  color: white;
  padding: 8rem 1rem 6rem;
  text-align: center;
}

.hero-content h1 {
  font-size: 3rem;
  font-weight: 900;
  margin-bottom: 1rem;
}

.hero-content h1 em {
  font-style: normal;
  color: #ffdd57;
}

.hero-content p {
  max-width: 600px;
  margin: 0 auto 2rem;
  font-size: 1.2rem;
}

/* About Section */
.about {
  background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('bg-about-gradient.jpg') no-repeat center/cover;
  color: white;
  padding: 6rem 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.about-text {
  max-width: 700px;
}

.about-text h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.about-text p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.stats {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.stats div {
  flex: 1 1 150px;
  font-weight: 700;
  font-size: 1.2rem;
}

/* Services Section */
.services {
  background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('bg-services-gradient.jpg') no-repeat center/cover;
  color: white;
  padding: 6rem 1rem 8rem;
  text-align: center;
}

.services h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 3rem;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.service {
  background: rgba(255 255 255 / 0.15);
  border-radius: 12px;
  padding: 2rem 1.5rem;
  box-shadow: 0 8px 24px rgb(0 0 0 / 0.2);
  transition: transform 0.3s ease;
}

.service:hover {
  transform: translateY(-8px);
}

.service img {
  max-width: 100%;
  height: 80px;
  object-fit: contain;
  margin-bottom: 1rem;
  filter: brightness(0) invert(1);
}

.service h3 {
  margin-bottom: 1rem;
  font-weight: 700;
  font-size: 1.25rem;
}

.service p {
  font-size: 1rem;
}

/* Footer */
.footer {
  background: #111;
  color: #ccc;
  padding: 2rem 1rem;
  text-align: center;
}

.footer-content {
  max-width: 700px;
  margin: 0 auto 1rem;
}

.footer-content h4 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.footer-content p {
  margin: 0.3rem 0;
}

.footer a {
  color: #ffdd57;
  text-decoration: none;
}

.footer a:hover {
  text-decoration: underline;
}

footer .copyright {
  font-size: 0.9rem;
  color: #888;
  margin-top: 1rem;
}

/* Responsive */
@media (max-width: 768px) {
  .about {
    flex-direction: column;
    text-align: center;
  }

  .stats {
    justify-content: center;
  }
}
