.team-section {
  padding: 140px 0 80px;
  background: #fff;
}

.teampage-head {
  display: block;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
}
.foundertean-section {
  padding: 74px 0;
}
.teamdiv-section {
  padding: 74px 0;
  background: var(--white);
}

.team-category {
  margin-top: 0px;
}

.team-category h2 {
  margin-bottom: 30px;
}

/* Founder Section */
.founderteam-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.founderteam-card {
  display: flex;
  align-items: flex-start;
  overflow: hidden;
  background: #fff;
  border-radius: 24px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.06);
  transition: 0.3s ease;
}

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

.founderteam-image {
  flex: 0 0 250px;
  height: 330px;
  overflow: hidden;
}

.founderteam-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.4s ease;
}

.founderteam-card:hover img {
  transform: scale(1.08);
}

.founderteam-card:hover img {
  transform: scale(1.08);
}

.founderteam-content {
  padding: 24px;
}

.founderteam-content h3 {
  margin-bottom: 8px;
}

.founderteam-content span {
  display: block;

  color: var(--primary);

  font-weight: 700;

  margin-bottom: 12px;
}

.founderteam-content p {
  color: var(--muted);
}

/* TechCartel Team */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.team-card {
  background: white;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
  transition: 0.35s ease;
}

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

.team-image {
  height: 320px;
  overflow: hidden;
}

.team-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.4s ease;
}

.team-card:hover img {
  transform: scale(1.08);
}

.team-content {
  padding: 24px;
}

.team-content h3 {
  margin-bottom: 8px;
}

.team-content span {
  display: block;

  color: var(--primary);

  font-weight: 700;

  margin-bottom: 12px;
}

.team-content p {
  color: var(--muted);
}

/* CTA */
.teamcta-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #0f766e, #f5f9ff);
}
.teamcta-case {
  padding: 34px;
  border-radius: 8px;
  color: var(--white);
  /* background: linear-gradient(135deg, var(--white), var(--blue)); */
  background: linear-gradient(135deg, #0f766e, #111827);
}
.teamcta-case h2 {
  margin-bottom: 10px;
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.08;
}
.teamcta-case p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.76);
}

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

  .team-image {
    height: 280px;
  }
}

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

  .team-image {
    height: 320px;
  }
}
