/* Base Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background: #f4f4f4;
  color: #333;
}

/* Container */
.container {
  width: 90%;
  max-width: 1100px;
  margin: auto;
}

/* Header Styles */
header {
  background: #f0f0f0; /* Light background */
  color: #222; /* Dark text */
  padding: 10px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 40px;
  margin-right: 10px;
}

.logo h1 {
  font-size: 1.5rem;
  margin: 0;
  color: #222; /* Visible on light background */
}

/* Navigation Menu */
nav ul {
  list-style: none;
  display: flex;
  gap: 15px;
  padding-left: 0;
  margin: 0;
}

nav ul li a {
  color: #222; /* Dark links for light background */
  text-decoration: none;
  font-weight: bold;
  padding: 5px 10px;
  transition: background 0.3s;
}

nav ul li a:hover {
  background: rgba(0, 0, 0, 0.05);
  border-radius: 5px;
}

/* Hamburger Toggle Icon */
.menu-toggle {
  display: none;
  font-size: 28px;
  cursor: pointer;
  color: #222; /* Visible on light header */
}

/* Section Styling */
.section {
  padding: 40px 0;
  background: white;
  margin-bottom: 20px;
}

.section h2 {
  margin-bottom: 20px;
  font-size: 1.8rem;
  color: #004b7c;
}

/* Services and Clients List */
.services-list,
.clients-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 10px;
  list-style: none;
  margin-top: 20px;
  padding-left: 0;
}

.services-list li,
.clients-list li {
  background: #eef3f6;
  padding: 10px;
  border-left: 4px solid #004b7c;
}

/* Contact Section */
#contact p {
  margin-bottom: 10px;
}

/* Footer */
footer {
  background: #222;
  color: white;
  text-align: center;
  padding: 20px 0;
  font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  nav {
    display: none;
    width: 100%;
  }

  nav.active {
    display: block;
    margin-top: 10px;
  }

  nav ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .header-content {
    flex-direction: column;
    align-items: flex-start;
  }

  .logo {
    justify-content: space-between;
    width: 100%;
  }
}
