* {
  font-family: "Poppins", sans-serif;
  box-sizing: border-box;
}

.contact-section {
  padding: 40px 20px;
  /* background-image: url("../images/bgImg.jpg"); */
  background-color: #032f4e;
  text-align: center;
  color: white;
  padding-top: 160px;
}

.contact-section h2 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.founder-cofounder-section {
  /* padding: 60px 0; */
  background-color: #f8f9fa;
  text-align: center;
}

.founder-cofounder-img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  object-fit: contain;
  max-height: 300px;
}

.founder-cofounder-name {
  font-size: 1.2rem;
  font-weight: bold;
  margin-top: 15px;
}

.founder-cofounder-role {
  font-size: 1rem;
  color: #6c757d;
}

.founder-cofounder-description {
  font-size: 1rem;
  color: #495057;
  margin-top: 10px;
  text-align: justify;
}

.team-members-section {
  /* padding: 60px 0; */
  text-align: center;
}

.team-member-card {
  margin: 20px;
  background-color: #ffffff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border: 1px solid transparent;
}
.team-member-card:hover {
  border: 1px solid #013d67;
}
.team-member-img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;
}

.team-member-name {
  font-size: 1.1rem;
  font-weight: bold;
  color: #013d67;
}

.team-member-role {
  font-size: 1rem;
  color: #6c757d;
}

.team-member-description {
  font-size: 1rem;
  color: #495057;
  margin-top: 10px;
}

.services-heading {
  text-align: center;
  font-size: 36px;
  font-weight: bold;
  color: #013d67;
  position: relative;
  margin-bottom: 10px;
}

.heading-underline {
  width: 60px;
  height: 6px;
  margin: 0 auto 20px auto;
  background: linear-gradient(to right, #013d67, #013d67);
  border-radius: 4px;
  animation: lineShrink 1s ease forwards;
}
