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/service-banner.jpeg') left center/cover no-repeat;
 padding: 0 5%;
  box-sizing: border-box;
  position: relative;
}

/* Company Info Section */
.company-info {
  padding: 60px 10%;
  background-color: #041A34;
  color: #ffffff;
}

.company-info h2 {
  font-size: 28px;
  margin-bottom: 20px;
  text-align: left; /* ensure it's aligned with the text */
}

.info-content {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: center;
  justify-content: space-between;
}

.info-text {
  flex: 1 1 400px;
}

.info-text p {
  font-size: 18px;
  line-height: 1.6;
}

.info-image {
  flex: 1 1 350px;
  display: flex;
  justify-content: center;
}

.info-image img {
  max-width: 400px;
  height: 300px;
  border-radius: 10px;
}

/* Customer Relations */
.customer-relations {
  padding: 60px 10%;
  background-color: #ffffff;
  color: #041A34;
  text-align: center;
}

.customer-relations h2 {
  font-size: 28px;
  margin-bottom: 20px;
}

.customer-relations p {
  font-size: 18px;
  margin-bottom: 30px;
}

.logos {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  align-items: center;
}

.logos img {
  height: auto;
  object-fit: contain;
  max-width: 1000px;
}

/* Facilities Section */
.facilities {
  padding: 60px 10%;
  background-color: #f4f4f4;
  color: #041A34;
}

.facilities-content {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: center;
  justify-content: space-between;
}

.facilities-text {
  flex: 1 1 400px;
}

.facilities-text h2 {
  font-size: 28px;
  margin-bottom: 20px;
  text-align: left;
}

.facilities-text p {
  font-size: 18px;
  line-height: 1.6;
}

.facilities-image {
  flex: 1 1 350px;
  display: flex;
  justify-content: center;
}

.facilities-image img {
  max-width: 500px;
  height: 400px;
  border-radius: 10px;
}

/* 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;
}
