* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background: #0f172a;
  color: #fff;
}

/* NAVBAR */
nav {
  display: flex;
  justify-content: space-between;
  padding: 20px 50px;
  background: rgba(15, 23, 42, 0.8);
  position: sticky;
  top: 0;
  backdrop-filter: blur(10px);
}

nav .logo {
  font-size: 20px;
  font-weight: 700;
}

nav ul {
  display: flex;
  gap: 20px;
  list-style: none;
}

nav a {
  text-decoration: none;
  color: #ccc;
  transition: 0.3s;
}

nav a:hover {
  color: #38bdf8;
}

/* HERO */
.hero {
  text-align: center;
  padding: 100px 20px;
}

.hero h1 {
  font-size: 40px;
  margin-bottom: 15px;
}

.hero p {
  color: #94a3b8;
  max-width: 500px;
  margin: auto;
}

/* PEOPLE */
.people {
  padding: 40px 20px;
}

.people h2 {
  text-align: center;
  margin-bottom: 30px;
}

/* GRID */
.card-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

/* CARD */
.card {
  background: #1e293b;
  padding: 15px;
  border-radius: 18px;
  transition: 0.3s;
  text-align: center;
}

.card:hover {
  transform: translateY(-8px);
  background: #334155;
}

/* IMAGE 1:1 (AUTO CROP) */
.img-box {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 14px;
  margin-bottom: 12px;
}

.img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* TEXT */
.card h3 {
  margin-bottom: 8px;
  font-size: 18px;
}

.card p {
  font-size: 13px;
  margin: 2px 0;
  color: #cbd5f5;
}

.card a {
  display: inline-block;
  margin-top: 8px;
  font-size: 13px;
  color: #38bdf8;
}

.card .desc {
  margin-top: 8px;
  font-size: 12px;
  color: #94a3b8;
}

/* ANIMATION */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
}

.fade-in.show {
  opacity: 1;
  transform: translateY(0);
  transition: 1s;
}

.delay {
  transition-delay: 0.3s;
}