/* ===============================
   TEAM SECTION
   =============================== */
.saitech-team-section {
  padding: 100px 20px;
  background: radial-gradient(circle at top, #121212, #000);
  color: #fff;
}

.saitech-team-container {
  max-width: 1800px;
  margin: 0 auto;
  padding-inline: 20rem;
}
#team,
.leadership-section {
  position: relative;
  z-index: 1;
  margin-top: 0;
  padding-top: 8rem; /* pushes it DOWN visually */
}


/* ===============================
   HEADER
   =============================== */
.saitech-team-header {
  text-align: center;
  margin-bottom: 60px;
}

.saitech-team-title {
  font-size: 2.5rem;
  font-weight: 500;
  margin-bottom: 15px;
}

.saitech-team-subtitle {
 font-size: 1rem;
  color: #9a9a9a;
  line-height: 1.6;
}

/* =========================
   LEADERSHIP GRID
========================= */
.saitech-team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  perspective: 1400px;
}

/* =========================
   TEAM CARD
========================= */
.saitech-team-card {
  background: linear-gradient(160deg, #0f0f0f, #070707);
  border-radius: 20px;
  overflow: hidden;
  box-shadow:
    0 35px 70px rgba(0,0,0,0.85),
    inset 0 0 0 1px rgba(255,255,255,0.04);
  transition:
    transform 0.6s ease,
    box-shadow 0.6s ease;
}

.saitech-team-card:hover {
  transform: translateY(-12px) rotateX(1deg);
  box-shadow:
    0 55px 110px rgba(0,0,0,0.95),
    inset 0 0 0 1px rgba(196,166,104,0.25);
}

/* =========================
   IMAGE
========================= */
.saitech-team-image {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
}

.saitech-team-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  transition:
    transform 0.9s ease,
    filter 0.6s ease;
}

.saitech-team-card:hover img {
  transform: scale(1.08);
  filter: grayscale(0%);
}

/* =========================
   OVERLAY
========================= */
.saitech-team-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to top,
      rgba(0,0,0,0.85),
      rgba(0,0,0,0.15),
      transparent
    );
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.saitech-team-card:hover .saitech-team-overlay {
  opacity: 1;
}

.saitech-team-overlay a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(0,0,0,0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #c4a668;
  font-size: 1.1rem;
  transition:
    transform 0.3s ease,
    background 0.3s ease,
    color 0.3s ease;
}

.saitech-team-overlay a:hover {
  background: #c4a668;
  color: #000;
  transform: scale(1.15);
}

/* =========================
   INFO
========================= */
.saitech-team-info {
  padding: 1.6rem;
  text-align: center;
}

.saitech-team-info h3 {
  font-size: 1.05rem;
  font-weight: 500;
  margin-bottom: 0.3rem;
}

.saitech-team-info span {
  font-size: 0.85rem;
  color: #9a9a9a;
  letter-spacing: 0.4px;
}

/* =========================
   EXECUTIVE QUOTE
========================= */
.saitech-team-quote {
  padding: 0 1.6rem 1.8rem;
  font-size: 0.85rem;
  line-height: 1.6;
  color: #a9a9a9;
  text-align: center;
  font-style: italic;
  opacity: 0.85;
  position: relative;
}

.saitech-team-quote::before {
  content: "—";
  display: block;
  margin-bottom: 0.4rem;
  color: #c4a668;
  font-weight: 600;
}

