/* ---------------- */
/* Global Styles */
/* ---------------- */
body {
  margin: 0;
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background: #f9f9f9;
  color: #333;
}

/*header {
  background: #F8F9FA;
  color: #222;
  padding: 25px 15px;
  text-align: center;
}*/


nav {
  background: #003366;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 10px;
}

nav a {
  color: white;
  padding: 12px 18px;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.95rem;
}

nav a:hover {
  background: #00224a;
}

.container {
  max-width: 1100px;
  margin: auto;
  padding: 30px 20px;
}

h1, h2 {
  color: #004B8D;
}

.grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  margin-top: 20px;
}

.card {
  background: white;
  padding: 18px;
  border-radius: 8px;
  box-shadow: 0 3px 8px rgba(0,0,0,0.10);
  text-align: center;
}

.card img {
  max-width: 120px;
  border-radius: 50%;
  margin-bottom: 12px;
}

footer {
  text-align: center;
  background: #f8f9fa;   /* LIGHT background */
  color: #333;
  padding: 25px 10px;
  font-size: 0.9rem;
  margin-top: 30px;
  border-top: 1px solid #ddd;
}

.footer-logos {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 60px;
  margin-bottom: 10px;
}

.footer-logos img {
  height: 55px;
}
/* Header with logos on both sides and centered text */
/* Header with logos on both ends and centered text */
/* Header with logos on each side and truly centered lab name */
.header-logos {
  display: flex;
  align-items: center;
  padding: 12px 40px;
  background: #F8F9FA;
  border-bottom: 1px solid #ddd;
  gap: 20px;
}

/* Fixed logo containers so size doesn’t stretch */
.left-logo,
.right-logo {
  flex: 0 0 180px; /* same width for both side containers */
  display: flex;
  justify-content: center;
}

/* Logo sizing inside fixed container */
.left-logo img,
.right-logo img {
  max-height: 60px;
  width: auto;
}

/* Center text expands to fill space */
.header-text {
  flex: 1 1 auto;
  text-align: center;
}

/* Lab main title styling */
.header-text h1 {
  margin: 0;
  font-size: 2.0rem;
  color: #003366;
}

/* Tagline under title */
.header-text p {
  margin: 4px 0 0;
  font-size: 1rem;
  color: #333;
}
.bottom-logos {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 15px;
  padding: 0 30px;
}

.bottom-logos img {
  height: 40px;
}


