/* === GENERAL STYLES === */
body {
  margin: 0;
  font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  background: #f8f9fa;
  color: #333;
}

a {
  text-decoration: none;
  color: inherit;
}

h1, h2, h3 {
  color: #0096c7;
}

/* === NAVBAR === */
header {
  background-color: #0096c7;
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 999;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 60px;
  flex-wrap: wrap;
}

.navbar .logo img {
  max-height: 60px;
}

.menu {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 25px;
}

.menu li a {
  color: #fff;
  font-weight: 500;
  padding: 8px 12px;
  transition: all 0.3s ease;
}

.menu li a:hover,
.menu li a.active {
  background-color: #0077a3;
  border-radius: 4px;
}

/* === HAMBURGER (for smaller screens) === */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.hamburger span {
  height: 3px;
  width: 25px;
  background: white;
  margin: 4px 0;
  border-radius: 2px;
}

/* === RESPONSIVE NAV === */
@media (max-width: 1024px) {
  .navbar {
    padding: 10px 30px;
  }

  .menu {
    gap: 18px;
  }
}

@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .menu {
    flex-direction: column;
    width: 100%;
    display: none;
    background: #0096c7;
    text-align: center;
    padding: 10px 0;
  }

  .menu.active {
    display: flex;
  }

  .menu li {
    margin: 10px 0;
  }
}
/* FOOTER STYLES */

footer {
  background-color: #0096c7;
  color: #fff;
  padding: 30px 20px 15px;
  font-size: 16px;
  text-align: center;
}

.footer-container {
  max-width: 1100px;
  margin: 0 auto;
}

.footer-logo img {
  max-height: 60px;
  margin-bottom: 15px;
}

.footer-info p {
  margin: 5px 0;
}

.footer-info a {
  color: #fff;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.footer-info a:hover {
  color: #e0e0e0;
}

.footer-copy {
  margin-top: 20px;
  font-size: 14px;
  opacity: 0.8;
}
/* Center page headings */
section h1 {
  text-align: center;
  width: 100%;
  font-size: 2rem;
  margin-bottom: 30px;
}

/* Layout: text left, image right */
section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  flex-wrap: wrap;
  gap: 20px;
  padding: 40px;
}

/* About page image */
.section-image {
  flex: 1;
  max-width: 400px;
  height: auto;
}

/* Text container */
section p, section h2, section ul {
  flex: 1;
  min-width: 300px;
}

/* For services and solutions grids */
.services-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  text-align: left;
  gap: 30px;
}

.service-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex: 1 1 45%;
  gap: 20px;
}

