* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  color: #222;
  line-height: 1.7;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

.hero {
  background:
    linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.65)),
    url("images/about-banner.jpg") center/cover;
  color: #fff;
  text-align: center;
  padding: 140px 20px;
}

.hero h1 {
  font-size: 58px;
  margin-bottom: 20px;
}

.hero p {
  max-width: 700px;
  margin: auto;
  font-size: 18px;
}

.section {
  padding: 90px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 60px;
}

.section-title span {
  color: #0b6efd;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.section-title h2 {
  font-size: 42px;
  margin-top: 10px;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.card {
  background: #fff;
  padding: 35px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.card h3 {
  margin-bottom: 15px;
}

.light-bg {
  background: #f8fafc;
}

.stats-about-us {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
  gap: 20px;
}

.stats h3 {
  font-size: 42px;
  color: #0b6efd;
}

.values {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.value-box {
  background: white;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.cta {
  background: #0b6efd;
  color: white;
  text-align: center;
  padding: 90px 20px;
}

.cta h2 {
  font-size: 42px;
  margin-bottom: 20px;
}

.btn {
  display: inline-block;
  margin-top: 25px;
  background: white;
  color: #0b6efd;
  text-decoration: none;
  padding: 15px 35px;
  border-radius: 6px;
  font-weight: 600;
}

@media (max-width: 992px) {
  .grid-2,
  .grid-3,
  .stats,
  .values {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: 42px;
  }
}

.team-wrapper {
  display: flex;
  justify-content: center;
}

.team-card {
  max-width: 900px;
  display: flex;
  gap: 40px;
  align-items: center;
  background: #fff;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.team-image img {
  /* width: 250px;
  height: 250px;
  object-fit: cover; */
  border-radius: 15px;
}

.team-content h3 {
  font-size: 30px;
  margin-bottom: 5px;
}

.team-content span {
  display: block;
  color: #0b6efd;
  font-weight: 600;
  margin-bottom: 20px;
}

.team-content p {
  color: #666;
}

@media (max-width: 768px) {
  .team-card {
    flex-direction: column;
    text-align: center;
  }

  .team-image img {
    width: 220px;
    height: 220px;
  }
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.member-card {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.member-card:hover {
  transform: translateY(-8px);
}

.member-card img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.member-info {
  padding: 25px;
  text-align: center;
}

.member-info h3 {
  margin-bottom: 15px;
  font-size: 20px;
}

.member-info span {
  color: #0b6efd;
  font-weight: 600;
  display: block;
  margin-bottom: 15px;
}

.member-info p {
  color: #666;
  font-size: 15px;
  line-height: 1.7;
}

@media (max-width: 992px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .team-grid {
    grid-template-columns: 1fr;
  }

  .member-card img {
    height: 280px;
  }
}
