
     /* Navigation styling */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #333; /* Adjust as needed */
  padding: 10px 20px; /* Adjust padding as needed */
}

.nav-left {
  flex: 1;
}

.logo {
  height: 50px; /* Adjust size as needed */
  
}

.nav-right {
  flex: 2;
}

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

.nav-right li {
  margin-left: 20px; /* Adjust spacing between links */
}

.nav-right a {
  color: white; /* Adjust text color as needed */
  text-decoration: none;
  font-weight: bold;
}

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



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

nav ul li {
  margin: 0 15px;
}

nav ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 1em;
}

    nav ul li a:hover {
      text-decoration: underline;
    }
.logo {
  display: block;
  margin: 0 auto;
  width: 150px;
  height: auto;
}
body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  margin: 0;
  padding: 0;
  background-color: #f0f0f0;
  color: #333;
}

section {
    padding: 20px;
    margin: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
header {
    padding: 10px;
    margin: 10px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.why-choose-us {
    margin: 10px 20px;
}

header {
  text-align: center;
}

header h1 {
  margin: 0;
  font-size: 2.5em;
  color: #333;
}

section h2 {
  font-size: 2em;
  color: #444;
}

section h4 {
    font-size: 1.1em;
    color: #444;
}

section ul {
    list-style: none;
    padding: 0;
}

section ul li {
    margin-bottom: 10px;
}

section p, section ul li, footer {
    font-size: 1em;
}

.portfolio-item {
  flex: 1 1 calc(33.333% - 20px);
  background-color: #f9f9f9;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  text-align: center;
}



..portfolio-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 15px;
}

.portfolio-item img {
  width: 100%;
  height: auto;
}


.portfolio-item p {
  font-size: 1em;
  margin-top: 10px;
}

.portfolio-item a {
  color: #0066cc;
  text-decoration: none;
}

.portfolio-item a:hover {
  text-decoration: underline;
}



#contact {
  padding: 20px;
}

#contactForm div {
  margin-bottom: 10px;
}

#contactForm label {
  display: block;
  margin-bottom: 5px;
}

#contactForm input, #contactForm textarea {
  width: 100%;
  padding: 8px;
  box-sizing: border-box;
}

#contactForm button {
  padding: 10px 20px;
  background-color: #007BFF;
  color: white;
  border: none;
  cursor: pointer;
}

#contactForm button:hover {
  background-color: #0056b3;
}


blockquote {
  border-left: 5px solid #007bff;
  padding-left: 15px;
  margin: 20px 0;
  color: #555;
}

form {
      display: flex;
      flex-direction: column;
      gap: 10px;
      max-width: 600px;
      margin: auto;
    }
form input, form textarea {
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 1em;
}

form button {
  padding: 12px 25px;
  background-color: #007bff;
  border: none;
  border-radius: 5px;
  color: white;
  cursor: pointer;
}

form button:hover {
  background-color: #0056b3;
}


footer {
    text-align: center;
    font-size: 0.8em;
}
footer ul {
      list-style: none;
      padding: 0;
      display: flex;
      justify-content: center;
      gap: 15px;
    }
a {
    color: #0066cc;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.cta-button {
    display: inline-block;
    padding: 10px 20px;
    margin-top: 10px;
    background-color: #0066cc;
    color: #fff;
    border-radius: 5px;
    text-decoration: none;
}

.cta-button:hover {
    background-color: #005bb5;
}

 hero {
      text-align: center;
      padding: 50px 20px;
      background-image: url(' IMG-20240805-WA0008 (1).jpg');
 
 
      background-size: cover;
      background-position: center;
      color: #fff;
    }
 
.restoration-list, .networking-list {
  list-style-type: disc;
  padding-left: 20px;
  margin: 10px 0;
}

.restoration-list li {
  font-size: 1em;
  margin-bottom: 5px;
}

.networking-list li {
  font-size: 1em;
  margin-bottom: 5px;
}
article {
  margin-bottom: 20px;
}

article h3 {
  font-size: 1.5em;
}

article p {
  font-size: 1em;
}
  @media (max-width: 768px) {
  nav ul {
    flex-direction: column;
    text-align: center;
     }
