:root {
  --brand: #5b2b74;
  --brand-dark: #3d1c4e;
  --brand-light: #7a45a0;
  --brand-tint: #f4eef8;
  --ink: #1a1320;
  --muted: #5f5668;
  --paper: #ffffff;
  --line: #e7e0ec;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Sora", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a {
  text-decoration: none;
  color: inherit;
}
img {
  max-width: 100%;
  display: block;
}
.wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
}

/* ---------- announcement bar ---------- */
.topbar {
  background: var(--brand-dark);
  color: #fff;
  font-size: 13.5px;
  text-align: left;
  padding: 10px 16px;
  letter-spacing: 0.2px;
}
.topbar a {
  color: #fff;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ---------- header ---------- */
header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px;
}
.logo {
  font-weight: 800;
  font-size: 24px;
  letter-spacing: -0.5px;
  color: var(--brand);
}
.logo span {
  color: var(--ink);
}
.nav-links {
  display: flex;
  gap: 30px;
  list-style: none;
  font-size: 14.5px;
  font-weight: 500;
}
.nav-links a {
  color: var(--muted);
  transition: color 0.2s;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--brand);
}
.nav-cta {
  background: var(--brand);
  color: #fff;
  padding: 11px 22px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  transition:
    background 0.2s,
    transform 0.2s;
}
.nav-cta:hover {
  background: var(--brand-dark);
  transform: translateY(-2px);
}
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}
.burger span {
  width: 24px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
}

/* ---------- buttons ---------- */
.btn {
  display: inline-block;
  font-weight: 600;
  font-size: 15px;
  padding: 15px 32px;
  border-radius: 999px;
  transition: 0.25s;
  height: 100%;
}
.btn-solid {
  background: var(--brand);
  color: #fff;
}
.btn-solid:hover {
  background: var(--brand-dark);
  transform: translateY(-2px);
}
.btn-ghost {
  background: transparent;
  color: #fff;
  border: 1.6px solid rgba(255, 255, 255, 0.6);
}
.btn-ghost:hover {
  background: #fff;
  color: var(--brand);
  border-color: #fff;
}
.btn-outline {
  background: transparent;
  color: var(--brand);
  border: 1.6px solid var(--brand);
}
.btn-outline:hover {
  background: var(--brand);
  color: #fff;
}

/* ---------- hero ---------- */
.hero {
  position: relative;
  background:
    radial-gradient(
      900px 500px at 85% -10%,
      rgba(122, 69, 160, 0.35),
      transparent 60%
    ),
    linear-gradient(
      160deg,
      var(--brand-dark) 0%,
      var(--brand) 55%,
      #6f3690 100%
    );
  color: #fff;
  overflow: hidden;
  padding-top:0;
  padding-bottom:0;	
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    rgba(255, 255, 255, 0.07) 1px,
    transparent 1px
  );
  background-size: 26px 26px;
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 50px;
  align-items: center;
  padding: 90px 0 100px;
  position: relative;
  z-index: 2;
}
.eyebrow {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #d9b8ef;
  margin-bottom: 22px;
  text-align:center;
  margin-left:0;	
  margin-top:0;	
  font-family: "Poppins", sans-serif;	
}

.team{
	text-align:center;
	margin-left:10%;
}


.hero .reveal{
   width: 100%;
   max-width: 600px;
}

.hero h1 {
  font-size: clamp(38px, 5.2vw, 62px);
  line-height: 1.07;
  font-weight: 800;
  letter-spacing: -1.5px;
  margin-bottom: 24px;
  width: 100%;
  max-width: 560px;
 font-family: "Poppins", sans-serif;
margin-left:0
text-align:left;		
}
.hero p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.85);
  max-width: 520px;
  margin-bottom: 34px;
  padding-top:40px;	
}
.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.hero-img {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 40px 80px -30px rgba(0, 0, 0, 0.55);
  transform: rotate(1.5deg);
  border: 6px solid rgba(255, 255, 255, 0.08);
}
.hero-img img {
  width: 100%;
  height: 430px;
  object-fit: cover;
}

/* ---------- purpose strip ---------- */
.pmv {
  background: var(--brand-tint);
  padding: 74px 0;
}
.pmv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.pmv-card {
  background: #fff;
  border-radius: 16px;
  padding: 38px 32px;
  border: 1px solid var(--line);
  border-top: 4px solid var(--brand);
  transition:
    transform 0.25s,
    box-shadow 0.25s;
}
.pmv-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 40px -24px rgba(91, 43, 116, 0.4);
}
.pmv-card h3 {
  font-size: 16px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 14px;
  font-weight: 700;
  font-family:"Poppins", sans-serif;	
}
.pmv-card p {
  color: var(--muted);
  font-size: 15.5px;
}

/* ---------- section heading ---------- */
.section {
  padding: 96px 0;
}
.sec-head {
  max-width: 680px;
  margin-bottom: 54px;
}
.sec-head .eyebrow {
  color: var(--brand);
}
.sec-head h2 {
  font-size: clamp(30px, 3.8vw, 44px);
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.12;
  color: var(--ink);
  font-family: "Poppins", sans-serif;	
}
.sec-head p {
  color: var(--muted);
  font-size: 17px;
  margin-top: 16px;
}
.center {
  text-align: left;
  margin-left: auto;
  margin-right: auto;
}

/* ---------- timeline ---------- */
.timeline {
  position: relative;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 34px;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--brand-light),
    transparent
  );
}
.tl-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  padding-bottom: 18px;
  scroll-snap-type: x mandatory;
}
.tl-track::-webkit-scrollbar {
  height: 6px;
}
.tl-track::-webkit-scrollbar-thumb {
  background: var(--brand-light);
  border-radius: 99px;
}
.tl-item {
  flex: 0 0 270px;
  scroll-snap-align: start;
  position: relative;
  padding-top: 70px;
}
.tl-dot {
  position: absolute;
  top: 25px;
  left: 0;
  width: 18px;
  height: 18px;
  background: var(--brand);
  border-radius: 50%;
  border: 4px solid #fff;
  box-shadow: 0 0 0 3px var(--brand-light);
}
.tl-year {
  font-size: 32px;
  font-weight: 800;
  color: var(--brand);
  letter-spacing: -1px;
 font-family:"Poppins", sans-serif;
}
.tl-item h4 {
  font-size: 17px;
  font-weight: 700;
  margin: 8px 0 8px;
}
.tl-item p {
  font-size: 14px;
  color: var(--muted);
}


/* ---------- values ---------- */
.values {
  background: var(--ink);
  color: #fff;
}
.values .sec-head h2 {
  color: #fff;
}
.values .sec-head p {
  color: rgba(255, 255, 255, 0.7);
}
.values .eyebrow {
  color: #d9b8ef;
}
.val-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}
.val-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  padding: 26px 22px;
  transition: 0.25s;
}

.val-card h4{
	font-family:"Poppins", sans-serif;
}


.val-card:hover {
  background: var(--brand);
  border-color: var(--brand-light);
  transform: translateY(-6px);
}
.val-num {
  font-size: 13px;
  font-weight: 700;
  color: var(--brand-light);
  margin-bottom: 14px;
  font-family:"Poppins", sans-serif;	
}
.val-card:hover .val-num {
  color: #d9b8ef;
}
.val-card h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.25;
  color:rgba(255, 255, 255, 0.65);
}
.val-card p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
}
.val-card:hover p {
  color: rgba(255, 255, 255, 0.85);
}

/* ---------- trio links ---------- */
.trio {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.trio-card {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 38px 32px;
  background: linear-gradient(180deg, #fff, var(--brand-tint));
  transition: 0.25s;
}
.trio-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 44px -26px rgba(91, 43, 116, 0.45);
}
.trio-card .ico {
  width: 52px;
  height: 52px;
  border-radius: 13px;
  background: var(--brand);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 20px;
}
.trio-card h3 {
  font-size: 21px;
  font-weight: 700;
  margin-bottom: 10px;
}
.trio-card p {
  color: var(--muted);
  font-size: 15px;
  margin-bottom: 20px;
}
.trio-link {
  color: var(--brand);
  font-weight: 700;
  font-size: 14.5px;
}
.trio-link::after {
  content: " →";
}

/* ---------- people ---------- */
.people-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.person {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  transition: 0.25s;
}
.person:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 46px -28px rgba(91, 43, 116, 0.4);
}
.person-img {
  height: 300px;
  background: var(--brand-tint);
  overflow: hidden;
}
.person-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.person-body {
  padding: 24px 26px 28px;
}
.person-body h4 {
  font-size: 20px;
  font-weight: 700;
}
.person-role {
  color: var(--brand);
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 4px 0 10px;
}
.person-body p {
  font-size: 14px;
  color: var(--muted);
}
.advisors {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 22px;
  margin-top: 24px;
}
.advisor {
  text-align: center;
}
.advisor-img {
  height: 170px;
  border-radius: 14px;
  overflow: hidden;
  background: var(--brand-tint);
  margin-bottom: 14px;
}
.advisor-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.advisor h4 {
  font-size: 15.5px;
  font-weight: 700;
  margin-top:10%;	
}
.advisor span {
  font-size: 12.5px;
  color: var(--muted);
}

/* ---------- join cards ---------- */
.join {
  background: var(--brand-tint);
}
.join-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.join-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  transition: 0.25s;
}
.join-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 46px -28px rgba(91, 43, 116, 0.4);
}
.join-card .jc-top {
  height: 150px;
  background: linear-gradient(135deg, var(--brand), var(--brand-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 46px;
}
.join-card .jc-body {
  padding: 28px 28px 32px;
}
.join-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}
.join-card p {
  font-size: 14.5px;
  color: var(--muted);
}

/* ---------- awards ---------- */
.awards {
  text-align: center;
}
.award-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  margin-top: 10px;
}
.award {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 24px 28px;
  min-width: 200px;
  flex: 1;
  max-width: 260px;
  transition: 0.25s;
}
.award:hover {
  border-color: var(--brand);
  transform: translateY(-5px);
}
.award .yr {
  font-size: 13px;
  font-weight: 700;
  color: var(--brand);
}
.award h4 {
  font-size: 15.5px;
  font-weight: 700;
  margin-top: 8px;
  line-height: 1.35;
}

/* ---------- final cta ---------- */
.final {
  background:
    radial-gradient(
      700px 400px at 20% 120%,
      rgba(122, 69, 160, 0.4),
      transparent 60%
    ),
    linear-gradient(150deg, var(--brand-dark), var(--brand));
  color: #fff;
  text-align: center;
  padding: 104px 0;
}
.final h2 {
  font-size: clamp(32px, 4.4vw, 52px);
  font-weight: 900;
  letter-spacing: -1px;
  margin-bottom: 18px;
  color:white;	
  font-family:"Poppins", sans-serif;	
}
.final p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
  max-width: 560px;
  margin: 0 auto 34px;
}

/* ---------- footer ---------- */
footer {
  color: rgba(255, 255, 255, 0.7);
}
.foot-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
}
.foot-logo {
  font-size: 24px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 14px;
}
.foot-logo span {
  color: var(--brand-light);
}
.foot-grid p {
  font-size: 14px;
  max-width: 280px;
}
.foot-col h5 {
  color: #fff;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.foot-col a {
  display: block;
  font-size: 14px;
  margin-bottom: 10px;
  transition: color 0.2s;
}
.foot-col a:hover {
  color: #fff;
}
.foot-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin-top: 48px;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  flex-wrap: wrap;
  gap: 10px;
}

/* ---------- reveal animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.reveal.show {
  opacity: 1;
  transform: none;
}
.reveal h1,
.reveal p {
  text-align: left;
  color: white;
}

/* ---------- responsive ---------- */
@media (max-width: 960px) {
  .hero-grid {
    grid-template-columns: 1fr;
    padding: 64px 0 72px;
  }
  .hero-img {
    transform: none;
    order: -1;
  }
  .hero-img img {
    height: 320px;
  }
  .pmv-grid,
  .trio,
  .people-grid,
  .join-grid {
    grid-template-columns: 1fr;
  }
  .val-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .advisors {
    grid-template-columns: repeat(2, 1fr);
  }
  .nav-links {
    display: none;
  }
  .burger {
    display: flex;
  }
  .foot-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 560px) {
  .val-grid,
  .advisors,
  .foot-grid {
    grid-template-columns: 1fr;
  }
  .section {
    padding: 50px 0;
  }
}

.section {
    padding: 58px 0 !important;
  }

/*New Changes*/

.advisors.reveal.show {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  justify-content: center;
  align-items: center;
  gap: 1px;
}

@media (max-width: 700px) {
  .advisors.reveal.show {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
}

.advisor {
  padding: 20px !important;
  border-radius: 50% !important;
}

.advisor img {
  border-radius: 50% !important;
	margin:auto;
}

@media (max-width: 700px) {
  .advisor-item img {
    max-width: 130px;
  }
}
.advisor img {
  border-radius: 50%;
}

@media (max-width: 700px) {
  .advisor img1 {
    margin-top: 10px;
  }
}

@media (max-width: 700px) {
  .advisor img2 {
    margin-top: 2px;
  }
}
