* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  color: #222;
  line-height: 1.6;
}

header.hero {
  background: url('logo.jpg') center/cover no-repeat;
  background-color: rgba(255, 255, 255, 0.6);
  background-blend-mode: lighten;
  position: relative;
  height: 100vh;
  color: white;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.overlay {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.5);
}

.navbar {
  position: absolute;
  top: 0; width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 3rem;
  z-index: 2;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
}

.nav-links a {
  color: white;
  text-decoration: none;
  margin: 0 15px;
  font-weight: 500;
}

.hero-content {
  z-index: 2;
  position: relative;
  max-width: 600px;
  margin: 0 auto;
}

.hero-content h2 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.hero-buttons {
  margin-top: 20px;
}

.btn {
  display: inline-block;
  padding: 10px 25px;
  border-radius: 25px;
  text-decoration: none;
  margin: 5px;
  transition: 0.3s;
}

.btn.primary {
  background: #e63946;
  color: white;
}

.btn.secondary {
  background: #fff;
  color: #e63946;
  border: 2px solid #e63946;
}

.btn:hover {
  opacity: 0.9;
}

section {
  padding: 4rem 2rem;
  text-align: center;
}

.about, .contact {
  background: #f7f7f7;
}

.container {
  max-width: 1100px;
  margin: auto;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.service-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 3px 8px rgba(0,0,0,0.1);
  transition: transform 0.3s;
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-card img {
  width: 100%;
  height: 200px;
  object-fit: contain;
}

.service-card h3 {
  padding: 1rem;
  background: #e63946;
  color: white;
}

.contact-info a {
  color: #e63946;
  text-decoration: none;
}

footer {
  background: #222;
  color: white;
  text-align: center;
  padding: 1rem 0;
}

@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
  }
  .nav-links {
    margin-top: 10px;
  }
  .hero-content h2 {
    font-size: 1.5rem;
  }
}
