/* Alumni / testimonials page — dark landing theme */
:root {
  --p: #14275c;
  --pd: #0d1b42;
  --pl: #2f57a8;
  --pp: #e9eefa;
  --ppp: #f4f7fd;
  --acc: #3a64bf;
  --acc2: #88a8e0;
  --txt: #0f0e1a;
  --sub: #52525b;
  --bdr: #e4e4e7;
  --ig: linear-gradient(135deg, #3a64bf 0%, #14275c 100%);
}

/* ── base navbar layout (colors are themed dark by header.css) ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 300; height: 62px;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--bdr); transition: box-shadow 0.3s;
}
nav.sc { box-shadow: 0 4px 28px rgba(20, 39, 92, 0.09); }
.nw { max-width: 1200px; margin: 0 auto; padding: 0 24px; display: flex; align-items: center; height: 100%; }
.logo { display: flex; align-items: center; gap: 9px; text-decoration: none; flex-shrink: 0; margin-right: 36px; }
.logo-name { font-family: "Bricolage Grotesque", sans-serif; font-size: 1rem; font-weight: 700; color: var(--txt); letter-spacing: -0.03em; }
.logo-name em { color: var(--p); font-style: normal; }
.nl { display: flex; align-items: center; gap: 4px; list-style: none; }
.nl a { font-size: 0.82rem; font-weight: 500; color: var(--sub); text-decoration: none; padding: 6px 12px; border-radius: 7px; transition: color 0.2s, background 0.2s; white-space: nowrap; }
.nl a:hover, .nl a.on { color: var(--p); background: var(--ppp); }
.nr { display: flex; align-items: center; gap: 10px; margin-left: auto; }
.hbg { display: none; flex-direction: column; gap: 4.5px; cursor: pointer; padding: 5px; background: none; border: none; }
.hbg span { width: 22px; height: 1.8px; background: var(--txt); border-radius: 2px; transition: all 0.3s; }
.hbg.op span:nth-child(1) { transform: translateY(6.3px) rotate(45deg); }
.hbg.op span:nth-child(2) { opacity: 0; }
.hbg.op span:nth-child(3) { transform: translateY(-6.3px) rotate(-45deg); }
.mm { display: none; position: fixed; top: 62px; left: 0; right: 0; background: #0a0820; z-index: 299; padding: 18px; flex-direction: column; gap: 2px; box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4); transform: translateY(-10px); opacity: 0; pointer-events: none; transition: all 0.3s; }
.mm.op { transform: translateY(0); opacity: 1; pointer-events: all; }
.mm a { font-size: 0.95rem; font-weight: 500; color: rgba(255, 255, 255, 0.85); text-decoration: none; padding: 12px 14px; border-radius: 9px; display: block; }
.mm a:hover { background: rgba(255, 255, 255, 0.08); color: #fff; }
@media (max-width: 980px) {
  .nl { display: none; }
  .hbg { display: flex; }
  .mm { display: flex; }
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: "Outfit", sans-serif;
  background: #03010d;
  color: #fff;
  overflow-x: hidden;
}

/* one dark section holds the whole page (ambient injects the animated bg) */
.al-sec {
  padding: 128px 24px 96px;
  min-height: 100vh;
}

.al-head {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 52px;
}
.al-eyebrow {
  display: inline-block;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #c7b8ff;
  margin-bottom: 14px;
}
.al-head h1 {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: clamp(2rem, 4.4vw, 3.1rem);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #fff;
}
.al-head p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  margin-top: 14px;
}

.al-grid {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

/* testimonial card — same look as the landing wall */
.tw-card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background:
    radial-gradient(circle at 82% 8%, rgba(124, 92, 231, 0.32), transparent 46%),
    radial-gradient(circle at 8% 98%, rgba(58, 100, 191, 0.24), transparent 52%),
    linear-gradient(150deg, #0e0a28 0%, #12012e 55%, #0a0420 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  padding: 26px 24px 24px;
  box-shadow: 0 12px 34px rgba(8, 5, 30, 0.4);
  transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.35s, border-color 0.35s;
}
.tw-card::before {
  content: "\201C";
  position: absolute;
  top: 6px;
  right: 18px;
  font-family: "Bricolage Grotesque", Georgia, serif;
  font-size: 4.4rem;
  line-height: 1;
  font-weight: 800;
  color: rgba(167, 139, 250, 0.28);
  pointer-events: none;
  z-index: 0;
}
.tw-card::after {
  content: "";
  position: absolute;
  left: -45px;
  bottom: -45px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(124, 92, 231, 0.28), transparent 70%);
  opacity: 0;
  transition: opacity 0.35s;
  pointer-events: none;
  z-index: 0;
}
.tw-card:hover {
  transform: translateY(-6px);
  border-color: rgba(167, 139, 250, 0.42);
  box-shadow: 0 24px 52px rgba(8, 5, 30, 0.6);
}
.tw-card:hover::after { opacity: 1; }

.tw-stars {
  color: #fbbf24;
  font-size: 0.92rem;
  letter-spacing: 3px;
  margin-bottom: 11px;
  position: relative;
  z-index: 1;
}
.tw-text {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.86);
  line-height: 1.65;
  margin-bottom: 18px;
  position: relative;
  z-index: 1;
}
.tw-by {
  display: flex;
  align-items: center;
  gap: 11px;
  position: relative;
  z-index: 1;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.tw-av {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  padding: 2px;
  background: var(--ig);
  flex-shrink: 0;
  overflow: hidden;
}
.tw-av img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  display: block;
}
.tw-name { font-size: 0.86rem; font-weight: 700; color: #fff; }
.tw-role { font-size: 0.72rem; color: rgba(255, 255, 255, 0.55); margin-top: 1px; }

/* scroll reveal */
.rv { opacity: 0; transform: translateY(26px); transition: opacity 0.7s ease, transform 0.7s ease; }
.rv.vi { opacity: 1; transform: translateY(0); }

@media (max-width: 900px) {
  .al-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .al-sec { padding: 104px 16px 60px; }
  .al-grid { grid-template-columns: 1fr; }
}
