.main-navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid #e5e7eb;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* LOGO */
.nav-logo {
  font-weight: 600;
  font-size: 18px;
  color: #111827;
}

/* LINKS */
.nav-links {
  display: flex;
  gap: 28px;
}

.nav-links a {
  text-decoration: none;
  font-size: 14px;
  color: #374151;
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: #111827;
}

/* RIGHT SIDE */
.nav-right {
  display: flex;
  align-items: center;
  gap: 14px;
}

/* ICONS */
.nav-icon {
  width: 34px;
  height: 34px;
  border: 1px solid #d1d5db;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.nav-icon svg {
  width: 16px;
  height: 16px;
  fill: #374151;
}

.nav-icon:hover {
  background: #111827;
  transform: translateY(-1px);
}

.nav-icon:hover svg {
  fill: #ffffff;
}

/* CTA */
.nav-cta {
  margin-left: 8px;
  padding: 8px 16px;
  background: #111827;
  color: #ffffff;
  border-radius: 999px;
  font-size: 14px;
  text-decoration: none;
  transition: background 0.2s ease;
}

.nav-cta:hover {
  background: #000000;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .nav-links {
    display: none;
  }
}



.team-section {
  background: #e3e7ed;
  padding: 90px 6%;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

.team-inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

/* HEADER */
.team-header {
  max-width: 520px;
  margin-bottom: 60px;
}

.eyebrow {
  font-size: 14px;
  color: #6b7280;
  display: block;
  margin-bottom: 14px;
}

.team-header h2 {
  font-size: 42px;
  font-weight: 600;
  line-height: 1.15;
  color: #111827;
  margin-bottom: 18px;
}

.team-header h2 span {
  font-weight: 400;
  color: #6b7280;
}

.team-header p {
  font-size: 15px;
  color: #4b5563;
  line-height: 1.6;
  max-width: 420px;
}

/* ARROWS */
.team-arrows {
  position: absolute;
  top: 40px;
  right: 0;
  display: flex;
  gap: 12px;
}

.team-arrows button {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid #d1d5db;
  background: transparent;
  font-size: 18px;
  cursor: pointer;
  color: #374151;
}

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

/* CARD */
.team-card {
  text-align: left;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  background: #ffffff;
  padding: 10px;
  border-radius: 10px;
  transition: all 600ms;
  cursor: pointer;
}

.team-card img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  border-radius: 2px;
  margin-bottom: 14px;
}

.team-card:hover {
  transform: scale(1.1);
  background: #dbdbdb25;
}
.team-card h4 {
  font-size: 16px;
  font-weight: 600;
  color: #111827;
  margin-bottom: 4px;
}

.team-card span {
  font-size: 14px;
  color: #6b7280;
}

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

  .team-arrows {
    display: none;
  }
}

@media (max-width: 600px) {
  .team-header h2 {
    font-size: 32px;
  }

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

  .team-card img {
    height: 300px;
  }
}
.team-socials {
  display: flex;
  gap: 12px;
  margin-top: 10px;
}

.team-socials a {
  width: 34px;
  height: 34px;
  border: 1px solid #d1d5db;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, transform 0.2s ease;
}

.team-socials a:hover {
  background: #111827;
  transform: translateY(-2px);
}

.team-socials svg {
  width: 18px;
  height: 18px;
  fill: #374151;
}

.team-socials a:hover svg {
  fill: #ffffff;
}
