
/* ---------------- HEADER IMAGE ---------------- */
.site-header {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.header-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* Navigation overlay styling */
.main-nav {
  position: absolute;
  bottom: 0;
  width: 100%;
  background: rgba(0, 95, 107, 0.8);
  text-align: center;
  padding: 0.5em 0;
}

/* Navigation menu */
.main-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
}

.main-nav li {
  margin: 0 1em;
}

.main-nav a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: color 0.3s;
}

.main-nav a:hover {
  color: #e0f7fa;
}

/* ---------------- RESPONSIVE BEHAVIOR ---------------- */
@media (max-width: 768px) {
  .header-image {
    object-fit: contain; /* prevent cropping on smaller screens */
  }

  .main-nav {
    position: static;
    background: #005f6b;
  }

  .main-nav ul {
    flex-direction: column;
  }

  .main-nav li {
    margin: 0.5em 0;
  }
}

@media (max-width: 480px) {
  .header-image {
    width: 100%;
    height: auto;
  }

  .main-nav a {
    font-size: 0.9em;
  }
}


/* Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "Segoe UI", Tahoma, sans-serif;
  line-height: 1.6;
  color: #333;
}
h1, h2 {
  color: #005f6b; /* A deep teal/blue for headings to match health industry theme */
}
h1 {
  font-size: 2.5em;
  margin-bottom: 0.2em;
}
h2 {
  font-size: 1.8em;
  margin-bottom: 0.5em;
}
p {
  margin-bottom: 1em;
}
ul {
  margin-bottom: 1em;
  padding-left: 1.2em;
}
ul li {
  margin-bottom: 0.5em;
}
/* Container to center content and set max width */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}
/* Navigation Bar */
nav {
  background: rgba(0, 95, 107, 0.9);  /* semi-transparent teal background */
  color: #fff;
}
nav .container {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
nav ul {
  list-style: none;
  display: flex;
}
nav li {
  margin-left: 2em;
}
nav a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
}
nav a:hover {
  text-decoration: underline;
}
/* Hero Section */
.hero {
  /* Teal-blue gradient background */
  background: linear-gradient(135deg, #00adb3 0%, #66ced1 100%);
  color: #fff;
  text-align: center;
  padding: 4em 0 5em;
}
.hero .tagline {
  font-size: 1.2em;
  margin: 0.5em 0 1em;
}
.cta-button {
  display: inline-block;
  padding: 0.75em 1.5em;
  background: #00424d;  /* darker shade for contrast */
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  border-radius: 4px;
}
.cta-button:hover {
  background: #00323a;
}
/* Sections */
section {
  padding: 3em 0;
}
section h2 {
  text-align: left;
}
#products, #partners {
  background: #f9f9f9;  /* light grey alternate background for contrast */
}
/* About Us Section */
#about p {
  text-align: justify;
}
/* Products & Services Section */
#products ul {
  list-style: disc;
  margin-left: 1.5em;
}
#products li strong {
  color: #005f6b;
}
/* Regulatory & Quality Section */
#quality ul {
  list-style: disc;
  margin-left: 1.5em;
}
#quality li {
  margin-bottom: 0.5em;
}
#quality li strong {
  color: #005f6b;
}
/* Partners Section */
.partners-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  margin-top: 1em;
}
.partners-logos img {
  max-height: 60px;
  margin: 1em;
  filter: grayscale(50%);
  opacity: 0.8;
}
.partners-logos img:hover {
  filter: grayscale(0%);
  opacity: 1;
}
/* Contact Section */
.contact-flex {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 2em;
}
.contact-info {
  flex: 1 1 300px;
}
.contact-info p {
  margin-bottom: 0.5em;
}
.contact-info a {
  color: #005f6b;
  text-decoration: none;
}
.contact-info a:hover {
  text-decoration: underline;
}
.map-container {
  flex: 1 1 300px;
  min-height: 250px;
}
/* Footer */
footer {
  background: #333;
  color: #fff;
  text-align: center;
  padding: 1.5em 0;
}
footer a {
  color: #fff;
  text-decoration: none;
}
footer a:hover {
  text-decoration: underline;
}
footer .social-links {
  margin-bottom: 0.5em;
  font-size: 0.95em;
}
/* Responsive Design */
@media (max-width: 600px) {
  nav .container {
    flex-direction: column;
    padding: 0.5em 0;
  }
  nav ul {
    flex-direction: column;
    align-items: center;
  }
  nav li {
    margin: 0.5em 0;
  }
  .hero {
    padding: 3em 1em;
  }
  .hero h1 {
    font-size: 2em;
  }
  .hero .tagline {
    font-size: 1em;
  }
  .cta-button {
    padding: 0.6em 1.2em;
    font-size: 0.95em;
  }
  .contact-flex {
    flex-direction: column;
  }
}
--this is the styles.css