body,
html {
  margin: 0;
  padding: 0;
  font-family: "Arial", sans-serif;
  color: #333;
}

header {
  background: #b22222; /* Dark Red */
  color: #fff;
  padding: 20px 0;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 80%;
  margin: 0 auto;
}

header .logo {
  flex: 1;
}

header h1 {
  flex: 2;
  text-align: center;
  margin: 0;
  font-size: 1.8em;
}

nav {
  flex: 1;
  text-align: right;
}

nav ul {
  list-style: none;
  display: flex;
  justify-content: flex-end;
  margin: 0;
}

nav ul li {
  margin: 0 15px;
}

nav ul li a {
  color: #fff;
  text-decoration: none;
}

nav .menu-toggle {
  display: none; /* Hidden by default */
}

/* Responsive Navigation Menu for Mobile Screens */
@media screen and (max-width: 768px) {
  header .container {
    flex-direction: column; /* Stack the logo, title, and nav */
  }

  nav ul {
    flex-direction: column;
    position: absolute;
    right: 20px;
    top: 60px;
    background: #b22222;
    padding: 10px;
    border-radius: 5px;
    display: none; /* Hidden by default */
  }

  nav ul li {
    margin: 10px 0;
  }

  nav ul.show {
    display: flex; /* Show menu when toggled */
  }

  nav .menu-toggle {
    display: block;
    color: #fff;
    cursor: pointer;
    font-size: 1.5em;
    margin-right: 20px;
    position: absolute;
    right: 20px;
    top: 15px;
  }
}

.hero {
  background: #dc143c;
  color: #fff;
  padding: 150px 0; /* Increase padding to compensate for the fixed header */
  text-align: center;
  margin-top: 60px; /* Prevent overlap */
}

.hero h2 {
  margin: 0 0 10px;
  font-size: 2.5em;
}

.hero p {
  font-size: 1.2em;
}

.hero .btn {
  background: #8b0000;
  color: #fff;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 5px;
}

.container {
  width: 80%;
  margin: 0 auto;
  padding: 20px 0;
}

section {
  padding: 50px 0;
}

.placeholder-image {
  width: 100%;
  height: auto;
  border: 1px solid #ddd;
}

.service-card {
  background: #f9f9f9;
  border: 1px solid #ddd;
  padding: 20px;
  margin: 20px 0;
}

.service-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

footer {
  background: #333;
  color: #fff;
  padding: 20px 0;
  text-align: center;
}

footer p {
  margin: 0;
}
