@import url("https://fonts.googleapis.com/css2?family=Macondo&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

.about-description {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  padding: 3rem 5rem;
}
.title {
  font-weight: 600;
  margin-bottom: 0;
  color: #221165;
}
.underLine {
  position: relative;
  bottom: 1rem;
  width: min(44ch, 90vw);
  height: 2px;
  border: 3px solid #0a0322;
}

.aboutAll {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 1000px;
  gap: 1.3rem;
  box-shadow: 0 4px 12px rgba(23, 67, 92, 0.45);
  padding: 1rem 1.2rem;
  border-radius: 12px;
}
#logo {
  width: 60px;
  height: 60px;
}

/* vision */
.about-content {
  padding: 1rem 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.about-content h2,
.team h2 {
  font-family: "Macondo", cursive;
  font-weight: 700;
  font-size: 2.5rem;
}
.about-content ul {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.about-content ul li {
  list-style: none;
  font-family: "Poppins";
  font-size: 1.3rem;
}
.visulizer img {
  width: 100%;
  max-width: 400px;
  height: auto;
}
.team {
  min-width: 0;
  width: 100%;
  flex-direction: column;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin: 24px 0;
}

.team-card {
  background: linear-gradient(135deg, #f5f7fa 0%, #ffffff 100%);
  padding: 28px 20px;
  border-radius: 16px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  text-align: center;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.team-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
  border-color: rgba(0, 0, 0, 0.1);
}

.team-image {
  margin-bottom: 16px;
}

.team-image img {
  max-width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 12px;
}

.team-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: bold;
  color: #fff;
  margin: 0 auto 18px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.team-card h3 {
  margin: 12px 0 6px;
  font-size: 1.3rem;
  color: #222;
  font-weight: 600;
}

.team-card .role {
  font-size: 0.9rem;
  color: #0077b5;
  font-weight: 600;
  margin: 4px 0 12px;
}

.team-card p {
  font-size: 0.95rem;
  color: #666;
  margin: 6px 0;
}

.team-card .bio {
  font-size: 0.85rem;
  color: #555;
  line-height: 1.5;
  margin: 10px 0;
}

.team-card .social-links {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 14px;
}

.team-card .social-links a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #f0f0f0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #333;
  transition: all 0.3s ease;
  font-size: 1rem;
}

.team-card .social-links a:hover {
  background: #0077b5;
  color: #fff;
  transform: scale(1.1);
}

.flex{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

@media (max-width: 992px) {
  .about-description {
    padding: 2rem 1rem;
  }

  .aboutAll {
    flex-direction: column;
    max-width: 100%;
  }

  .about-content h2,
  .team h2 {
    font-size: 2rem;
  }

  .about-content ul li {
    font-size: 1.05rem;
  }

  .team-grid {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
  }
}

@media (max-width: 576px) {
  .title {
    text-align: center;
    font-size: 1.6rem;
  }

  .aboutAll {
    padding: 0.75rem;
    gap: 1rem;
  }

  .team-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .team-card {
    padding: 18px 14px;
  }

  .team-image img {
    height: 180px;
  }

  .team-avatar {
    width: 70px;
    height: 70px;
    font-size: 1.5rem;
  }

  .team-card h3 {
    font-size: 1.1rem;
  }

  .team-card .role {
    font-size: 0.85rem;
  }

  .team-card .social-links a {
    width: 32px;
    height: 32px;
    font-size: 0.9rem;
  }
}