
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

html, body {
    height: 100%;
}

body {
    background-color: #f7f9fc;
    color: #1a1a1a;
    line-height: 1.6;
    display: flex;
    flex-direction: column;
}

header {
    background-color: rgb(88, 174, 217);
    color: #fff;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 999;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

nav .logo {
    font-size: 1.5rem;
    font-weight: 600;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 1.5rem;
}

nav ul li a {
    text-decoration: none;
    color: #fff;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: #66ccff;
}
.info.onImage {
  position: relative;
  width: 100%;
  height: 500px;
  background-image: url("genes2.jpg"); /* Replace with your image */
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.background-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 35, 82, 0.4); /* Optional blue overlay */
  z-index: 1;
}

.content-box {
  position: relative;
  z-index: 2;
  background-color: white;
  padding: 30px 40px;
  max-width: 700px;
  text-align: left;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.content-box h1 {
  color: #0F1B33;
  font-size: 2.5rem;
  margin-bottom: 10px;
  border-bottom: 2px solid #0F1B33;
  padding-bottom: 10px;
}

.content-box p {
  color: #333;
  font-size: 1rem;
  line-height: 1.6;
}
.overlayer {
  background-image: url('genes1.jpg'); /* Replace with your image path */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
}

.overlay-content {
  background-color: white;
  color: #002244; /* Dark navy color similar to your sample */
  padding: 40px;
  max-width: 800px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  border-radius: 6px;
  font-family: 'Segoe UI', sans-serif;
}

.overlay-content h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.overlay-content hr {
  border: none;
  border-top: 3px solid #002244;
  width: 100%;
  margin: 10px 0 20px;
}

.overlay-content p {
  font-size: 1.1rem;
  line-height: 1.6;
}
  
.section {
    padding: 3rem 1rem;
    max-width: 1000px;
    margin: 0 auto;
    flex: 1;
}

.team-member {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.team-member img {
  width: 150px;
  height: auto;
  border-radius: 10px;
}

.mainImage img {
    width: 1000px;
    height: 300px;
    border-radius: 20px;
  }

  .imageContainer{
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 2rem;
  }
  .secondImage img {
    display: block;
    width: 500px;
    height: 300px;
    border-radius: 30px;
  }

.member-info {
  flex: 1;
}

.section h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    text-align: center;
}

.services-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 2rem;
}

.services-table th,
.services-table td {
    border: 1px solid #ccc;
    padding: 0.75rem;
    text-align: left;
}

.services-table th {
    background-color: #eaeaea;
}

footer {
    text-align: center;
    padding: 1rem;
    background-color: #0F111A;
    color: #fff;
    margin-top: auto;
}
