body {
  font-family: "Arial", sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-size: 16px;
}

.container {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
}

/* Team Section */
.team-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-bottom: 20px;
}

.member-box {
  background-color: #fff;
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  border: 2px solid green;
  transition: transform 0.3s, box-shadow 0.3s;
  width: calc(33.333% - 40px);
  max-width: 200px;
  flex: 1 1 200px;
}

.member-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.member-box img {
  width: 100%;
  height: auto;
  border-radius: 50%;
  margin-bottom: 15px;
}

.member-box h2 {
  font-size: 1.5em;
  color: #000;
  margin-bottom: 10px;
}

.member-box h3,
.member-box p {
  font-size: 1em;
  color: #555;
  margin-bottom: 10px;
}

.social-icons a {
  color: #007bff;
  text-decoration: none;
  font-size: 1.2em;
  margin: 0 5px;
  transition: color 0.3s;
}

.social-icons a:hover {
  color: #ff6600;
}

/* Responsive Design */
@media (max-width: 768px) {
  .member-box {
    width: calc(50% - 40px);
    flex: 1 1 45%;
  }
}

@media (max-width: 480px) {
  .member-box {
    width: 100%;
    flex: 1 1 100%;
  }
}

/* Header styling */

.small-header {
  display: flex;
  justify-content: center; /* Adjusted for mobile */
  align-items: center;
  gap: 10px;
  padding: 10px;
  font-weight: 900;
  background-color: #1d932d;
  font-family: Arial, sans-serif;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.add-nav-bar {
  text-decoration: none;
  color: white;
  font-size: 18px;
  padding: 10px;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
}

.add-nav-bar:hover {
  border-bottom: 2px solid #ffcc00;
}
.add-nav-bar.active {
  color: black;
  border-bottom: 2px solid #ffcc00;
}

/* Menu Toggle Styles */
.menu-toggle {
  display: none; /* Hidden by default */
  flex-direction: column;
  cursor: pointer;
}

.bar {
  height: 3px;
  width: 25px;
  background-color: white;
  margin: 3px 0;
  transition: 0.3s;
}

/* Adjustments for the main-header */
.main-header {
  padding: 10px;
}
.icons img,
.icons2 img {
  width: 30px; /* Set the same width for all icons */
  height: 30px; /* Set the same height for all icons */
  margin-left: 10px;
  transition: transform 0.3s ease; /* Ensure the transition is uniform */
}

.icons img:hover,
.icons2 img:hover {
  transform: scale(1.2); /* Scale effect on hover */
}

.icons2 {
  display: flex;
}
/* Media Queries for Responsive Design */
@media (max-width: 768px) {
  .small-header {
    flex-direction: column; /* Stack items vertically */
    align-items: flex-start; /* Align items to start */
  }

  .nav-1 {
    display: none; /* Hide nav items by default */
    width: 100%; /* Full width for mobile */
  }

  .nav-1.active {
    display: flex; /* Show active item */
  }

  .nav-1.show {
    display: flex; /* Show all items when menu is active */
    flex-direction: column; /* Stack items */
  }

  .menu-toggle {
    display: flex; /* Show menu toggle */
  }
}

/* Existing styles remain unchanged */
