body {
  margin: 0;
  font-family: "gopher", sans-serif;
  
}

.newNavBar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 40px;
  background-color: #0a0d11;
}

.newNavImage {
  width: 200px;
}

.newNavBarList {
  display: flex;
  flex-direction: row;
  gap: 2vw;
  margin: 0;
  padding: 0;
}

.newNavBarList li {
  list-style: none;
}

.newNavBarList a {
  text-decoration: none;
  color: #e4e4e4;
  font-weight: 300;
  transition: color 0.3s ease;
}

.newNavBarList a:hover {
  color: #ffffff;
}

.newContactButton {
  padding: 8px 16px;
  background-color: #4c9eff;
  border-radius: 4px;
}

.newQuoteButton {
  padding: 8px 16px;
  border: 1px solid #4c9eff;
  color: #4c9eff !important;
  border-radius: 4px;
  font-weight: 500;
}

.hamburger {
  display: none;
  font-size: 2rem;
  color: #e4e4e4;
  cursor: pointer;
}

/* Responsive styles */
@media (max-width: 1000px) {
  .hamburger {
    display: block;
  }

  .newNavBar {
    flex-wrap: wrap;
    background-color: #0a0d11;
  }

  .newNavBarList {
    flex-direction: column;
    width: 100%;
    display: none;
    gap: 30px;
    margin-top: 20px;
    margin-bottom: 20px;
    
  }

  .newNavBarList.show {
    display: flex;
  }

  .newNavBarList li {
    text-align: center;
    padding-right: 20px;
  }
  
  .newNavBarList li:nth-child(5) {
    margin-bottom: 15px;
}

}
.newNavBar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body Styling */
body {
    font-family: 'Gopher', sans-serif; /* Updated font */
    background-color: #0a0d11; /* Background color */
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    padding: 20px;
    text-align: left;
}

/* Container for content */
.container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    width: 100%;
    gap: 30px;
}

/* Contact Info Section */
.contact-info {
    flex: 1;
    min-width: 300px;
    background-color: #1a1d23;
    padding: 20px;
    border-radius: 8px;
    display: flex; /* Enable flexbox inside contact-info */
    flex-direction: column; /* Stack content vertically */
    justify-content: center; /* Vertically center content */
    align-items: center; /* Horizontally center content */
    text-align: center; /* Center text inside */
}

.contact-info h2 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #fff;
}

.contact-info p {
    font-size: 16px;
    margin-bottom: 15px;
}

.contact-info strong {
    color: #4c9eff; /* Highlight for labels like Email, Phone, Address */
}

/* Contact Form Section */
.contact-form {
    flex: 1;
    min-width: 300px;
    background-color: #1a1d23;
    padding: 20px;
    border-radius: 8px;
}

.contact-form h1 {
    font-size: 24px;
    color: #fff;
    margin-bottom: 20px;
}

.contact-form label {
    display: block;
    margin: 10px 0 5px;
    font-size: 14px;
    color: #aaa;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 10px;
    margin: 10px 0 20px 0;
    border: 1px solid #dddddd94;
    border-radius: 4px;
    font-size: 14px;
    background-color: #333;
    color: white;
}
.wplink {
    text-decoration: none;
    color: white;
}
.contact-form button {
    width: 100%;
    padding: 10px;
    background-color: #4c9eff;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
}

.contact-form button:hover {
    background-color: #0056b3;
}

/* Responsive Design for Mobile */
@media (max-width: 768px) {
    .container {
        flex-direction: column;
        align-items: center;
        gap: 20px;
        margin-top: 180px;
    }

    .contact-info,
    .contact-form {
        width: 100%;
    }

    .contact-info h2,
    .contact-form h1 {
        text-align: center;
    }
}

