* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background-color: #f9f9f9;
  color: #333;
  line-height: 1.6;
}

.header {
  background-color: #f9f9f9;
  color: #fff;
  padding: 10px 0;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.logo {
  font-size: 1.5rem;
  font-weight: bold;
  background-color: #f9f9f9;
}

.nav-links {
  list-style: none;
  display: flex;
}

.nav-links li {
  margin-left: 20px;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  padding: 8px 15px;
  transition: background-color 0.3s;
}

.nav-links a:hover {
  background-color: #555;
}

.hero {
  background-color: #333;
  color: #fff;
  text-align: center;
  padding: 100px 20px;
}

.hero h1 {
  font-size: 2.5rem;
}

.hero p {
  margin-top: 15px;
  font-size: 1.2rem;
}

.btn {
  margin-top: 20px;
  padding: 10px 20px;
  background-color: #fff;
  color: #333;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background-color 0.3s;
}

.btn:hover {
  background-color: #ddd;
}

.services, .about, .footer {
  max-width: 1200px;
  margin: 50px auto;
  padding: 20px;
  text-align: center;
}

.service-cards {
  display: flex;
  justify-content: space-around;
  margin-top: 20px;
}

.card {
  background-color: #fff;
  padding: 20px;
  border: 1px solid #ddd;
  width: 30%;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s;
}

.card:hover {
  box-shadow: 2px 2px 15px rgba(0, 0, 0, 0.3);
}

footer {
  background-color: #333;
  color: #fff;
  padding: 20px;
}

footer h2, footer p {
  margin-bottom: 10px;
}

.hero {
  background-image: url('old_mixer.webp'); /* Replace with the actual path to your image */
  background-size: cover;
  background-position: center;
  color: #fff;
  text-align: center;
  padding: 100px 20px;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6); /* Adds a dark overlay for better text contrast */
}

.hero h1, .hero p, .btn {
  position: relative; /* Ensures text is displayed over the background image */
  z-index: 1;
}
