/* about-the-project-style.css */

.about-section {
    padding: 1rem;
    background-color: #f8f8f8;
    font-family: Arial, sans-serif;
    color: #333;
    line-height: 1.6;
  }
  
  .about-container {
    width: 100%;
    margin: 0 auto;
    background: #ffffff;
    padding: 1rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    line-height: 1.5; /* Optimal for readability, balancing spacing without overwhelming */
    word-spacing: 0.16em; /* Approximately 2.5px-3px depending on the font size */
    letter-spacing: 0.02em; /* Slightly looser spacing, equivalent to about 0.2px for a 16px font */
    font-size: clamp(16px, 1.5vw, 20px); /* Body text */    

    font-family: 'Roboto', sans-serif; /* Body text font */
  }
  
  .about-container h1 {
    margin: 0px;
    font-size: 2rem;
    color: #444;
  }
  
  .about-container a {
    color: #007bff;
    text-decoration: none;
  }
  
  .about-container a:hover {
    text-decoration: underline;
  }
  
  .about-container ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
  }
  
  .about-container ul li {
    margin: 0.5rem 0;
    list-style: disc;
  }
  

  .video-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: auto;
    margin: 0 auto; /* Center the container */
  }
  
  video {
    max-width: 100%;
    border-radius: 30px;
    height: auto;
    display: block;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 1); /* x-offset, y-offset, blur-radius, color */
  }


  /* --------------------- about-us ---------------------- */
  /* --------------------- about-us ---------------------- */
  
  .about-us {
    line-height: 1.6;
    padding: 1rem;
    margin: 1rem;
    background-color: #f8f8f8;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    line-height: 1.5; /* Optimal for readability, balancing spacing without overwhelming */
    word-spacing: 0.16em; /* Approximately 2.5px-3px depending on the font size */
    letter-spacing: 0.02em; /* Slightly looser spacing, equivalent to about 0.2px for a 16px font */
    font-size: clamp(16px, 1.5vw, 20px); /* Body text */    
    font-family: 'Roboto', sans-serif; /* Body text font */

    h1 {
      margin: 0px;
      font-size: 2rem;
      color: #444;
    }
  }
  
  /* Container for all cards */
.team-container {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: space-evenly;
  padding: 20px;
}

/* Individual card styles */
.team-card {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.205);
  text-align: center;
  padding: 20px;
  width: 250px;

  transition: transform 0.3s ease;
}

.team-card:hover {
  box-shadow: 0 8px 16px rgba(0, 77, 160, 0.356); /* Blue dark shadow */
}

/* Circular image */
.team-image {
  width: 80%;
  height: 150px;
  border-radius: 20px;
  border: 1px rgba(0, 77, 160, 0.404) solid;
  object-fit: cover;
  margin-bottom: 15px;
}

/* Member name */
.team-name {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #333;
}

/* Member bio */
.team-bio {
  font-size: 14px;
  color: #555;
  line-height: 1.5;
}