/* style.css */
body {
  font-family: 'Arial', sans-serif;
  margin: 0;
  padding: 0;
  line-height: 1.7;
  color: #333;
}

/* Header Styles */
header {
  background-color: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 100;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: centers;
  padding: 20px 0;
  position: relative;
}

.logo h1 {
  font-size: 24px;
  font-weight: 700;
  color: #4a6de5;
}

nav ul {
  display: flex;
  margin-right: 16vw;
}

nav ul li {
  margin-left: 10px;
}

nav ul li a {
  font-weight: 500;
  transition: color 0.3s;
}

nav ul li a:hover {
  color: #4a6de5;
}


.container {
  width: 85%;
  max-width: 1100px;
  margin: 50px auto;
  padding: 30px;
}

.section-title {
  font-size: 2.8em;
  text-align: center;
  margin-bottom: 40px;
  color: #2c3e50;
  font-weight: 600;
}

.about-section, .team-section, .values-section {
    margin-bottom: 60px;
}

.about-content {
  font-size: 15px;
  line-height: 1.8;
  text-align: justify;
}

.team-members {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.team-member {
  display: flex; /* Use flexbox for image and details */
  align-items: center; /* Vertically align items */
  width: 450px;
  margin: 30px;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  text-align: left; /* Align text left */
}

.team-member img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 25px;
}

.member-details h3 {
  font-size: 20px;
  margin-bottom: 5px;
  color: #34495e;
}

.member-details .member-title {
  font-size: 15px;
  color: #7f8c8d;
  margin-bottom: 10px;
}

.member-details .member-bio {
  font-size: 16px;
  color: #555;
}

.values-section .values-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.values-section .values-list li {
    background-color: #f0f0f0;
    padding: 15px 25px;
    margin: 10px;
    border-radius: 5px;
    font-weight: 500;
    color: #444;
}

/* image designing  */
.team-member img[src="placeholder-profile.jpg"] {
  background-color: #e0e0e0;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  color: #b0b0b0;
}