:root{
  --primary:#3b82f6;
  --bg:#fafafa;
  --text:#263238;
  --muted:#475569;
  --card:#ffffff;
  --radius:12px;
  --shadow:0 12px 30px rgba(16,24,40,0.06);
}

/* Section */
.team6-section{
  padding:3.5rem 5%;
  font-family:"Segoe UI", Roboto, Arial, sans-serif;
  color:var(--text);
  background:var(--bg);
}

/* Header */
.team6-header{
  max-width:900px;
  margin:0 auto 2.5rem;
  text-align:center;
}
.team6-tagline{ font-weight:600; color:var(--muted); margin-bottom:0.5rem; }
.team6-heading{ font-size:2rem; font-weight:800; margin-bottom:0.5rem; color:#071133; }
.team6-text{ font-size:1rem; color:var(--muted); }

/* Team grid & cards */
.team6-grid{
  display:grid;
  grid-template-columns:1fr;
  gap:1.5rem;
  max-width:1100px;
  margin:0 auto;
}
.team6-member{
  background:var(--card);
  padding:1.25rem;
  border-radius:var(--radius);
  text-align:center;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:0.5rem;
  box-shadow:var(--shadow);
  border:1px solid rgba(15,23,42,0.03);
  transition:transform .18s ease, box-shadow .18s ease;
}
.team6-member:hover{
  transform:translateY(-6px);
  box-shadow:0 22px 44px rgba(15,23,42,0.08);
}

/* Avatar */
.team6-member-image img{
  width:120px;
  height:120px;
  object-fit:cover;
  border-radius:50%;
  margin:0 auto 0.75rem;
  box-shadow:0 8px 20px rgba(16,24,40,0.04);
}

/* Text */
.team6-member-name{ font-size:1.125rem; font-weight:700; color:#0b2540; }
.team6-member-role{ font-size:0.95rem; color:var(--muted); margin-bottom:0.5rem; }
.team6-member-desc{ font-size:0.95rem; color:var(--muted); }

/* Social links */
.team6-socials{ display:flex; justify-content:center; gap:0.5rem; margin-top:0.5rem; }
.team6-socials a{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:36px;
  height:36px;
  background:rgba(15,23,42,0.04);
  border-radius:50%;
  color:var(--muted);
  text-decoration:none;
  font-size:0.95rem;
  transition:background .15s ease, transform .15s ease;
}
.team6-socials a:hover{ background:rgba(59,130,246,0.08); transform:translateY(-2px); color:var(--primary); }

/* Hiring panel */
.team6-hiring{
  max-width:520px;
  margin:2.5rem auto 0;
  text-align:center;
  background:var(--card);
  padding:1.25rem;
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  border:1px solid rgba(15,23,42,0.03);
}
.team6-hiring-title{ font-weight:800; font-size:1.25rem; margin-bottom:0.5rem; color:#071133; }
.team6-hiring-text{ color:var(--muted); margin-bottom:1rem; }

/* Buttons (pill) */
.btn{
  display:inline-block;
  padding:0.55rem 1rem;
  border-radius:999px;
  font-weight:700;
  text-decoration:none;
  color:#fff;
  background:var(--primary);
  border:none;
  box-shadow:0 8px 20px rgba(16,24,40,0.04);
}
.btn-secondary{ background:var(--primary); }

/* Responsive */
@media(min-width:768px){
  .team6-grid{ grid-template-columns:repeat(3,1fr); gap:1.75rem; }
  .team6-member-image img{ width:120px; height:120px; }
}
@media(max-width:900px){
  .team6-section{ padding:2.5rem 4%; }
}
@media(max-width:480px){
  .team6-heading{ font-size:1.6rem; }
  .team6-member{ padding:1rem; }
  .btn{ padding:0.5rem 0.9rem; font-size:0.95rem; }
}
