body {
  margin: 0;
  font-family: 'Arial', sans-serif;
}

/*nav bar styles*/
.navbar {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 40px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  z-index: 1000;
  width: fit-content;
}

.logo {
  height: 60px;
  margin-right: 30px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-links a {
  text-decoration: none;
  color: #041A34;
  font-size: 20px;
  font-weight: normal;
  transition: font-weight 0.2s ease;
  white-space: nowrap;
}

.nav-links a.active {
  font-weight: bold;
}

.nav-links a:hover {
color: #7c16bb;
} 

/* Page Header */
.page-header {
display: flex;
  align-items: center;
  height: 70vh;
  background: url('images/customer.jpg') left center/cover no-repeat;
 padding: 0 5%;
  box-sizing: border-box;
  position: relative;
}

/*contact section styles*/
.contact-section {
  display: flex;
  flex-wrap: nowrap;
  gap: 30px;
  background: #f9f9f9;
  padding: 60px 5%;
  justify-content: center;
  align-items: stretch;
}

.contact-info,
.contact-form {
  background: #fff;
  padding: 30px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  width: 50%;
  box-sizing: border-box;
  border-radius: 10px;
}

.contact-info h2,
.contact-form h2 {
  margin-top: 0;
  font-size: 22px;
  color: #002244;
  padding-top: 10px;
}

.contact-info p {
  margin: 10px 0;
  font-size: 18px;
  color: #333;
}

.contact-form form {
  display: flex;
  flex-direction: column;
}

.contact-form label {
  font-weight: 600;
  margin-bottom: 5px;
  margin-top: 15px;
  color: #002244;
}

.contact-form input,
.contact-form textarea {
  margin-bottom: 15px;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.contact-form button {
  padding: 10px;
  border: none;
  background-color: #002244;
  color: white;
  font-weight: bold;
  cursor: pointer;
  border-radius: 5px;
}

.social-media img {
  width: 40px;
  height: 40px;
  transition: transform 0.3s ease;
}

.map iframe {
  width: 100%;
  height: 600px;
  border: none;
}

/* Footer Section */
footer {
  text-align: center;
  background-color: #041A34;
  color: white;
  padding: 30px 10px;
}

footer a {
  color: white;
  text-decoration: none;
  margin: 0 5px;
}

footer p:last-of-type {
  border-top: 1px solid white;
  padding-top: 15px;
  margin-top: 20px;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin: 20px 0;
}

.social-icons img {
  width: 40px;
  height: 40px;
  transition: transform 0.3s ease;
}

.footer-links a:hover {
  text-decoration: underline;
}