/* General Body Styles */
body {
  font-family: 'Arial', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #ffffff;
  color: #333333;
  line-height: 1.6;
}

/* Header Section */
header {
  background-color: #ffffff;
  color: black;
  padding: 40px 20px;
  text-align: center;
  position: relative;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
}

.logo img {
  width: 150px;
  height: auto;
}

/* Navigation Menu */
.nav-menu {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  list-style: none;
  margin: 20px 0 0;
  padding: 0;
}

.nav-menu li {
  margin: 0 15px;
}

.nav-menu a {
  text-decoration: none;
  color: black;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 1.1em;
}

.nav-menu a:hover {
  color: #333333;
}

/* Hero Section */
.hero {
  background-color: #000000;
  padding: 80px 20px;
  text-align: center;
  color: white;
}

.hero h1 {
  font-size: 3em;
  margin: 0;
}

.hero p {
  font-size: 1.2em;
  margin: 20px 0;
}

.cta-button {
  background-color: #333333;
  color: white;
  padding: 12px 25px;
  font-size: 1.1em;
  text-decoration: none;
  border-radius: 5px;
}

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

/* Shared Section Styles */
section {
  padding: 60px 20px;
  text-align: center;
}

section h2 {
  font-size: 2em;
  margin-bottom: 20px;
  color: #000000;
}

section p {
  font-size: 1.1em;
  max-width: 800px;
  margin: 0 auto 20px;
}

/* List Section Styling */
#services ul,
#expertise ul,
#industries ul,
ul {
  list-style: none;
  padding-left: 0;
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
}

#services li,
#expertise li,
#industries li,
li {
  font-size: 1.1em;
  margin-bottom: 15px;
}

/* Optional: Card Grid for Industries */
.application-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 30px;
}

.card {
  background-color: #ffffff;
  border: 1px solid #ddd;
  padding: 20px;
  text-align: center;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  margin: 15px;
  flex: 1 1 250px;
  max-width: 300px;
  box-sizing: border-box;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.card h3 {
  font-size: 1.2em;
  margin-bottom: 10px;
  color: #000;
}

.card p {
  font-size: 1em;
  color: #555;
}

/* Contact Section */
#contact {
  background-color: #ffffff;
  border-top: 1px solid #e6e6e6;
  padding-bottom: 50px;
}

form {
  display: block;
  max-width: 600px;
  margin: 0 auto;
  background-color: #f2f2f2;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.form-group {
  margin-bottom: 15px;
}

form label {
  font-size: 1.1em;
  margin-bottom: 5px;
  display: block;
  color: #000000;
}

form input,
form textarea {
  width: 100%;
  padding: 10px;
  font-size: 1em;
  border: 1px solid #ccc;
  border-radius: 5px;
}

form textarea {
  resize: vertical;
}

form button {
  background-color: #000000;
  color: white;
  padding: 12px 25px;
  font-size: 1.1em;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

form button:hover {
  background-color: #333333;
}

/* Footer Section */
footer {
  background-color: #000000;
  color: white;
  text-align: center;
  padding: 20px;
  font-size: 1.1em;
}
/* Team Grid */

.team-grid {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: nowrap;
  column-gap: 40px;
  margin: 40px auto;
  max-width: 500px;
}

.team-member {
  text-align: center;
  flex: 1;
}

.team-member img {
  display: block;
  width: 64px;
  height: 64px;
  object-fit: cover;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  margin: 0 auto 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}



.team-member h3 {
  font-size: 1em;
  margin: 6px 0 2px;
}

.team-member p {
  font-size: 0.85em;
  color: #555;
}



/* Responsive Styles */
@media (max-width: 768px) {
  .nav-menu {
    flex-direction: column;
  }

  .nav-menu li {
    margin: 10px 0;
  }
  .team-grid {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  margin: 40px auto;
  gap: 40px;
  max-width: 700px;
}

.team-member {
  text-align: center;
  flex: 1 1 200px;
  max-width: 200px;
}

.team-member img {
  width: 80px;
  height: 80px;
}



  .hero h1 {
    font-size: 2.5em;
  }

  .cta-button {
    padding: 10px 20px;
    font-size: 1em;
  }

  form {
    padding: 20px;
  }
}
