/**/
body {
  font-family: 'Helvetica Neue', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #3d3c3c;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
/**/
header {
  background-color: #fff;
  box-shadow: 1px 1px 4px rgba(0,0,0,0.1);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  height: 40px; /* Increase the height */
  padding: 2px 10%;/**/
}
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}
.logo {
  font-size: 26px;/**/
  font-weight: bold;
  color: #0d25f7;
  float: left;
  margin-top: 5px; /*change*/
}
nav {
  display: flex;/**/
  float: right;
  margin-top: 12px; /* Adjust the margin to center the navigation links */
}
nav ul {
  list-style: none;
  margin: 0 10px; /**/
}
nav ul li {
  display: inline-block;
  margin-left: 20px;
  font-size: 18px; /* Increase the font size of the navigation links */
}
nav ul li a:hover, /**/
nav ul li a:active,/**/
nav ul li a.current {
  border-bottom: 3px solid #e67e22;
}

nav ul li a {
  color: #333;
  text-decoration: none;
}
nav ul li a:hover {
  color: #e67e22;
}
/* Hero Styles */
.hero {
  background-image: url(../media/images/background/PCB.jpg);
  background-size: cover;
  background-position: center;
  height: 500px;
  display: flex;
  align-items: center;
}
.hero h1 {
  font-size: 60px;
  font-weight: bold;
  color: #fff;
  text-shadow: 1px 1px 4px rgba(0,0,0,0.3);
  margin-bottom: 20px;
}
.hero p {
  font-size: 24px;
  color: #fff;
  text-shadow: 1px 1px 4px rgba(0,0,0,0.3);
  margin-bottom: 30px;
}
.hero button {
  background-color: #e67e22;
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  padding: 10px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.hero button:hover {
  background-color: #d35400;
}
/* Services Styles */
.services {
  padding: 100px 0;
  background-color: #d3cece;
}
.services h2 {
  text-align: center;
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 60px;
}
.service {
  display: flex;
  margin-bottom: 60px;
}
.service .icon {
  font-size: 48px;
  color: #e67e22;
  margin-right: 30px;
  flex-shrink: 0;
}
.service h3 {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 20px;
}
.service p {
  font-size: 16px;
  color: #555;
}
/* Testimonials Styles */
.testimonials {
  background-color: #f8f8f8;
  padding: 100px 0;
}
.testimonials h2 {
  text-align: center;
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 60
}
/* Dropdown Styles */
.dropdown {
  position: relative;
  display: inline-block;
}
.dropdown-toggle {
  cursor: pointer;
}
.dropdown-content {
  display: none;
  position: absolute;
  z-index: 1;
}
.dropdown:hover .dropdown-content {
  display: block;
}
.dropdown-content a {
  display: block;
  padding: 5px;
  text-decoration: none;
  color: #000;
  background-color: #f9f9f9;
}
footer {
  margin-top: auto;
  background-color: #333;
  color: #fff;
  text-align: center;
  padding: 1rem;
}
main {
  flex: 1;
}