.ch-header {
  width: 100%;
  background: #ffffff;
  border-bottom: 3px solid #7b227e;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999999;
  font-family: 'Montserrat', sans-serif;
}

.ch-header-inner {
  width: 100%;
  max-width: 1720px;
  margin: 0 auto;
  padding: 8px 5vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.ch-brand {
  display: flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
}

.ch-logo {
  width: 60px;
  height: 60px;
  object-fit: contain;
  display: block;
}

.ch-brand span {
  font-size: 19px;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: #7b227e;
  text-transform: uppercase;
  white-space: nowrap;
}

.ch-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.ch-nav a {
  color: #000000;
  text-decoration: none;
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  transition: color 0.2s ease;
}

.ch-nav a:hover {
  color: #7b227e;
}

.ch-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: #000000;
  font-size: 24px;
  font-weight: 800;
  cursor: pointer;
}

/* Tablet */
@media (max-width: 1024px) {
  .ch-header-inner {
    padding: 12px 4vw;
  }

  .ch-logo {
    width: 46px;
    height: 46px;
  }

  .ch-brand span {
    font-size: 20px;
  }

  .ch-nav {
    gap: 18px;
  }

  .ch-nav a {
    font-size: 14px;
  }
}

/* Mobile */
@media (max-width: 767px) {
  .ch-header-inner {
    padding: 12px 5vw;
  }

  .ch-logo {
    width: 42px;
    height: 42px;
  }

  .ch-brand {
    gap: 12px;
  }

  .ch-brand span {
    font-size: 16px;
  }

  .ch-menu-toggle {
    display: block;
  }

  .ch-nav {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #ffffff;
    border-bottom: 3px solid #7b227e;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 12px 5vw 18px;
  }

  .ch-nav.is-open {
    display: flex;
  }

  .ch-nav a {
    width: 100%;
    padding: 14px 0;
    font-size: 15px;
    border-bottom: 1px solid rgba(123, 34, 126, 0.12);
  }

  .ch-nav a:last-child {
    border-bottom: none;
  }
}

:root {
  --purple: #6B3FA0;
  --purple-pale: #F3EDF9;
  --warm-white: #FFFEF9;
  --text-dark: #1A1218;
  --text-light: #7b227e;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  font-family: 'Montserrat', Arial, sans-serif;
  background: var(--warm-white);
  color: var(--text-dark);
}

button,
input,
select,
textarea {
  font-family: inherit;
}

img {
  max-width: 100%;
}

/* =========================
   Shared animations
========================= */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(36px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeSlideRight {
  from { opacity: 0; transform: translateX(-40px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeSlideLeft {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.96); }
  to { opacity: 1; transform: scale(1); }
}

/* Animation safe state */
.anim,
.deco-block,
.cert-badge {
  opacity: 1;
}

/* Only hide animated elements after JS confirms it is running */
body.animations-ready .anim {
  opacity: 0;
}

body.animations-ready .deco-block {
  opacity: 0;
}

body.animations-ready .cert-badge {
  opacity: 0;
  transform: translateY(20px);
}

body.animations-ready .anim.is-visible {
  animation-duration: 0.75s;
  animation-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
  animation-fill-mode: both;
}

body.animations-ready .anim-up.is-visible {
  animation-name: fadeSlideUp;
}

body.animations-ready .anim-right.is-visible {
  animation-name: fadeSlideRight;
}

body.animations-ready .anim-left.is-visible {
  animation-name: fadeSlideLeft;
}

body.animations-ready .anim-scale.is-visible {
  animation-name: scaleIn;
}

.anim-up.is-visible { animation-name: fadeSlideUp; }
.anim-right.is-visible { animation-name: fadeSlideRight; }
.anim-left.is-visible { animation-name: fadeSlideLeft; }
.anim-scale.is-visible { animation-name: scaleIn; }

.delay-1.is-visible { animation-delay: 0.10s; }
.delay-2.is-visible { animation-delay: 0.22s; }
.delay-3.is-visible { animation-delay: 0.34s; }
.delay-4.is-visible { animation-delay: 0.46s; }
.delay-5.is-visible { animation-delay: 0.58s; }
.delay-6.is-visible { animation-delay: 0.70s; }

.prog-divider-center,
.founder-divider,
.ct-divider {
  width: 0;
  height: 1px;
  background: var(--text-light);
  margin: 0 auto 20px;
  transition: width 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.2s;
}

.prog-divider-center.is-visible,
.founder-divider.is-visible,
.ct-divider.is-visible {
  width: 40px;
  opacity: 1;
}

/* =========================
   Hero
========================= */
#pw-hero {
  position: relative;
  min-height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

#pw-hero .hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://static.wixstatic.com/media/b13c94_981277a040e84723997f9339d4cbc3ef~mv2.jpg');
  background-size: cover;
  background-position: center;
  filter: brightness(0.55);
  animation: fadeIn 1.2s ease both;
}

#pw-hero .hero-content {
    position: relative;
    z-index: 2;
    max-width: 1050px;
    padding: 80px 5vw;
    transform: translateY(70px);
}

#pw-hero h1 {
  font-family: 'Poppins', system-ui, sans-serif;
  color: rgba(255,255,255,0.14);
  -webkit-text-fill-color: rgba(255,255,255,0.14);
  -webkit-text-stroke: 2px #ffffff;
  text-stroke: 2px #ffffff;
  font-size: clamp(2.8rem, 6.5vw, 6rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin: 0 0 20px;
  animation: fadeSlideUp 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.3s both;
}

#pw-hero p {
  font-family: 'Poppins', system-ui, sans-serif;
  color: #fff;
  font-size: 15px;
  line-height: 1.7;
  font-weight: 300;
  max-width: 680px;
  margin: 0 auto;
  padding: 0 10px;
  animation: fadeSlideUp 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.55s both;
}

/* =========================
   About
========================= */
#about {
  background: var(--warm-white);
  padding: 60px 5vw 30px;
  padding-bottom: 60px;
  overflow: hidden;
}

.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 45px;
  align-items: center;
  margin-top: 3px;
}

.about-right {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.prog-head-style {
  text-align: center;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  color: var(--text-light);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 18px;
  line-height: 1.15;
}

.big-heading {
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 600;
  line-height: 1.0;
  color: var(--text-dark);
  margin-bottom: 22px;
}

.big-heading .accent {
  color: var(--text-light);
}

.about-body p {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.85;
  color: var(--text-dark);
  margin-bottom: 16px;
  opacity: 0.85;
}

.photo-wrap {
  position: relative;
  z-index: 1;
  overflow: hidden;
  width: 65%;
  max-width: 360px;
  aspect-ratio: 4 / 5;
}

.photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.deco-block {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 90%;
  height: 75%;
  background: var(--text-light);
  opacity: 0;
  z-index: 0;
  transition: opacity 0.8s ease 0.4s;
}

.deco-block.is-visible {
  opacity: 0.75;
}

/* =========================
   Purpose Mission Vision
========================= */
#pmv {
  background: var(--warm-white);
  padding: 30px 5vw 60px;
}

.pmv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.pmv-card {
  background: #fff;
  overflow: hidden;
  border: 1px solid rgba(107, 63, 160, 0.1);
}

.pmv-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.pmv-card:hover .pmv-img {
  transform: scale(1.04);
}

.pmv-body {
  padding: 24px 22px 28px;
}

.pmv-title {
  font-size: 22px;
  font-weight: 800;
  color: var(--text-light);
  margin-bottom: 12px;
  text-align: center;
}

.pmv-divider {
  width: 100%;
  height: 1px;
  background: rgba(107, 63, 160, 0.2);
  margin-bottom: 14px;
}

.pmv-desc {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.85;
  color: var(--text-dark);
  margin-bottom: 16px;
  opacity: 0.85;
}

/* =========================
   Founder
========================= */
#founder {
  padding: 70px 3vw 0;
  overflow: visible;
  background: rgba(123, 34, 126, 0.15);
}

.founder-text .eyebrow {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  color: var(--text-light);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 18px;
  line-height: 1.15;
  text-align: center;
}

.founder-grid {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 72px;
  align-items: center;
  padding-bottom: 35px;
  padding-right: 25px;
}

.founder-left {
  display: flex;
  flex-direction: column;
  gap: 34px;
  transform: translateY(-30px);
}

.founder-img-wrap {
  position: relative;
}

.founder-img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 20px 20px 80px 20px;
  display: block;
}

.founder-credentials {
  position: absolute;
  bottom: -15px;
  right: -15px;
  background: var(--text-light);
  color: white;
  border-radius: 14px;
  padding: 16px 20px;
  font-size: 13px;
  text-align: center;
  line-height: 1.5;
  box-shadow: 0 10px 20px rgba(107, 63, 160, 0.15);
}

.founder-credentials strong {
  display: block;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 2px;
}

.founder-hrdc-card {
  width: 100%;
  background: #ffffff;
  color: var(--text-light);
  border: 1px solid rgba(123, 34, 126, 0.18);
  border-radius: 14px;
  padding: 14px 16px;
  box-shadow: 0 10px 20px rgba(107, 63, 160, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  text-align: left;
}

.founder-hrdc-card p {
  font-size: 12.5px;
  font-weight: 700;
  line-height: 1.35;
  margin: 0;
  flex: 1;
}

.founder-hrdc-card img {
  width: 100px;
  max-width: 42%;
  height: auto;
  display: block;
  flex-shrink: 0;
}

.founder-text h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.2;
  margin-bottom: 28px;
}

.founder-text h2 em {
  font-style: normal;
  color: var(--text-light);
}

.founder-text p {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-dark);
  line-height: 1.85;
  margin-bottom: 16px;
  opacity: 0.85;
}

.founder-certs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 24px;
}

.cert-badge {
  opacity: 1;
  transform: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--text-light);
  color: #ffffff;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.3;
  padding: 18px 18px;
  border-radius: 16px;
  min-height: 120px;
}

.cert-badge img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  flex-shrink: 0;
  display: block;
}

/* only animate if JS is running */
body.animations-ready .cert-badge {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

body.animations-ready .cert-badge.is-visible {
  opacity: 1;
  transform: translateY(0);
}

body.animations-ready .cert-badge:nth-child(1) {
  transition-delay: 0.1s;
}

body.animations-ready .cert-badge:nth-child(2) {
  transition-delay: 0.22s;
}

body.animations-ready .cert-badge:nth-child(3) {
  transition-delay: 0.34s;
}

.cert-badge.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.cert-badge:nth-child(1) { transition-delay: 0.1s; }
.cert-badge:nth-child(2) { transition-delay: 0.25s; }
.cert-badge:nth-child(3) { transition-delay: 0.4s; }


/* =========================
   Programmes
========================= */
.prog-wrap {
  padding: 60px 20px;
  background: var(--warm-white);
}

.prog-head {
  text-align: center;
  margin-bottom: 48px;
}

.prog-head h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  color: var(--text-light);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 18px;
  line-height: 1.15;
}

.prog-head p {
  font-size: 15px;
  color: #000;
  line-height: 1.75;
  max-width: 700px;
  margin: 0 auto;
  font-weight: 600;
}

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

.prog-card {
  display: flex;
  flex-direction: column;
  border-radius: 8px;
  overflow: hidden;
}

.prog-img {
  position: relative;
  height: 260px;
  overflow: hidden;
  flex-shrink: 0;
}

.prog-img::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(to bottom, transparent, var(--text-light));
}

.prog-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.prog-card:hover .prog-img img {
  transform: scale(1.05);
}

.prog-panel {
  flex: 1;
  background: var(--text-light);
  padding: 24px 22px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.prog-panel h3 {
  font-size: 14px;
  text-align: center;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  line-height: 1.6;
  margin-bottom: 12px;
}

.prog-panel p {
  font-size: 12.5px;
  color: #fff;
  line-height: 1.75;
  font-weight: 400;
  text-align: center;
}

/* =========================
   Testimonials
========================= */
.ts {
  padding: 50px 0 20px;
  background: var(--warm-white);
}

.ts-outer-wrap {
  position: relative;
  overflow: hidden;
}

.ts-outer-wrap::before,
.ts-outer-wrap::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}

.ts-outer-wrap::before {
  left: 0;
  background: linear-gradient(to right, var(--warm-white) 0%, transparent 100%);
}

.ts-outer-wrap::after {
  right: 0;
  background: linear-gradient(to left, var(--warm-white) 0%, transparent 100%);
}

.ts-outer {
  overflow: hidden;
  padding: 3px 30px 0;
}

.ts-track {
  display: flex;
  gap: 20px;
  transition: transform 0.4s cubic-bezier(.4,0,.2,1);
  will-change: transform;
}

.ts-card {
  flex: 0 0 calc(33.333% - 14px);
  background: #fff;
  padding: 40px 28px 28px;
  border: 1px solid rgba(123, 34, 126, 0.12);
  position: relative;
  display: flex;
  flex-direction: column;
  box-shadow: 0 6px 24px rgba(123, 34, 126, 0.08);
  margin-top: 4px;
}

.ts-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--text-light);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 600;
  position: absolute;
  top: 30px;
  left: 18px;
  border: 3px solid var(--warm-white);
}

.ts-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 2px;
  padding-left: 72px;
}

.ts-role {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding-left: 72px;
  margin-bottom: 16px;
}

.ts-stars {
  color: #ffbe1b;
  font-size: 25px;
  letter-spacing: 2px;
  padding-left: 72px;
  margin-bottom: 16px;
}

.ts-divider {
  height: 1px;
  background: rgba(0,0,0,0.07);
  margin-bottom: 16px;
}

.ts-quote {
  font-size: 2.2rem;
  line-height: 1;
  color: var(--text-light);
  opacity: 0.2;
  font-family: Georgia, serif;
  margin-bottom: 6px;
}

.ts-text {
  font-size: 0.88rem;
  line-height: 1.85;
  color: #555;
  font-style: italic;
  flex: 1;
  font-weight: 500;
}

.ts-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 36px;
}

.ts-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--text-light);
  background: #ffffff;
  color: var(--text-light);
  font-size: 20px;
  cursor: pointer;

  display: flex;
  align-items: center;
  justify-content: center;

  box-shadow: 0 6px 20px rgba(123, 34, 126, 0.12);
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease, opacity 0.2s ease;
}

.ts-btn:hover {
  background: var(--text-light);
  color: #ffffff;
  transform: scale(1.04);
}

.ts-btn:disabled {
  opacity: 0.28;
  cursor: default;
  pointer-events: none;
}

.ts-btn:disabled:hover {
  background: #ffffff;
  color: var(--text-light);
  transform: none;
}

.ts-dots {
  display: flex;
  gap: 8px;
  align-items: center;
}

.ts-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(123, 34, 126, 0.25);
  cursor: pointer;
  border: none;
  padding: 0;
  transition: background 0.2s, width 0.2s;
}

.ts-dot.active {
  background: var(--text-light);
  width: 24px;
  border-radius: 4px;
}

/* =========================
   Contact
========================= */
#contact {
  padding: 30px 5vw 60px;
  background: var(--warm-white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 100px;
  align-items: start;
  max-width: 1100px;
  margin: 0 auto;
}

.ct-eyebrow {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  color: var(--text-light);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 18px;
  line-height: 1.15;
  text-align: center;
}

.ct-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  line-height: 1.2;
  color: #222;
  font-weight: 700;
  margin-bottom: 28px;
  text-transform: uppercase;
}

.ct-title em {
  font-style: normal;
  color: var(--text-light);
  font-weight: 700;
}

.ct-desc {
  font-size: 15px;
  color: #555;
  line-height: 1.9;
  font-weight: 500;
  margin-bottom: 48px;
  max-width: 340px;
}

.ct-methods {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.ct-method {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: #333;
  transition: color .2s;
}

.ct-method:hover {
  color: var(--text-light);
}

.ct-icon {
  width: 40px;
  height: 40px;
  background: rgba(123, 34, 126, 0.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.25s ease;
}

.ct-method:hover .ct-icon {
  transform: translateY(-2px);
}

.ct-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--text-light);
  fill: none;
  stroke-width: 1.8;
}

.ct-method-label {
  font-size: 11px;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 2px;
  font-weight: 500;
}

.ct-method-val {
  font-size: 14.5px;
  color: #222;
  font-weight: 400;
}

.ct-form-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #222;
  margin-bottom: 6px;
}

.ct-form-sub {
  font-size: 14px;
  color: #333;
  margin-bottom: 36px;
  line-height: 1.6;
  font-weight: 500;
}

.ct-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.ct-field {
  margin-bottom: 16px;
}

.ct-field input,
.ct-field select {
  width: 100%;
  padding: 13px 0;
  border: none;
  border-bottom: 1.5px solid rgba(0,0,0,0.12);
  background: transparent;
  outline: none;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  color: #222;
  transition: border-color .2s;
  border-radius: 0;
  appearance: none;
}

.ct-field input::placeholder {
  color: #aaa;
}

.ct-field input:focus,
.ct-field select:focus {
  border-bottom-color: var(--text-light);
}

.ct-field select {
  color: #aaa;
  cursor: pointer;
}

.ct-field select.filled {
  color: #222;
}

.ct-btn {
  margin-top: 12px;
  padding: 15px 40px;
  background: var(--text-light);
  color: #fff;
  border: none;
  border-radius: 0;
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .2s, transform .2s;
}

.ct-btn:hover {
  background: #5a1a5e;
  transform: translateY(-1px);
}

.ct-note {
  font-size: 14px;
  color: #333;
  margin-top: 14px;
  line-height: 1.6;
  font-weight: 500;
}

.ct-success {
  display: none;
  padding: 40px 0;
}

.ct-success-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-light);
  margin-bottom: 10px;
}

.ct-success-text {
  font-size: 14px;
  color: #333;
  line-height: 1.8;
}

/* =========================
   Footer
========================= */
footer {
  background: var(--text-light);
  color: #fff;
  padding: 40px 40px 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto 40px auto;
}

.footer-logo-text {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.footer-desc {
  color: rgba(255, 255, 255, 0.65);
  font-size: 14px;
  margin-top: 14px;
  line-height: 1.8;
  max-width: 300px;
  font-weight: 300;
}

.footer-col-title {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 18px;
  color: #fff;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
  transition: color .2s;
}

.footer-links a:hover {
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  max-width: 1100px;
  margin: 0 auto;
  letter-spacing: 0.03em;
}

.footer-bottom a {
  color: rgba(255,255,255,0.4);
  text-decoration: none;
}

.footer-bottom a:hover {
  color: #fff;
}

/* =========================
   Responsive
========================= */
@media (min-width: 768px) and (max-width: 1023px) {
  #pw-hero {
    min-height: 75vh;
  }

  #pw-hero h1 {
    font-size: clamp(2.4rem, 5.5vw, 3.8rem);
    -webkit-text-stroke: 1.6px #ffffff;
    letter-spacing: -0.025em;
  }

  #pw-hero p {
    font-size: 14px;
    max-width: 560px;
  }

  .prog-wrap {
    padding: 50px 24px;
  }

  .prog-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }

  .prog-img {
    height: 200px;
  }

  .prog-panel {
    padding: 18px 16px;
  }

  .prog-panel h3 {
    font-size: 12px;
    letter-spacing: 0.14em;
    margin-bottom: 8px;
  }

  .prog-panel p {
    font-size: 11.5px;
  }

  .prog-head p {
    font-size: 14px;
  }

  .ts-outer {
    padding: 3px 24px 0;
  }

  .ts-outer-wrap::before,
  .ts-outer-wrap::after {
    width: 50px;
  }

  .ts-card {
    padding: 36px 22px 24px;
  }

  .ts-name {
    font-size: 0.88rem;
  }

  .ts-text {
    font-size: 0.83rem;
  }

  .ts-stars {
    font-size: 20px;
  }
}

@media (max-width: 900px) {
  .founder-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    padding-right: 15px;
  }

  .founder-left {
    transform: none;
    max-width: 340px;
    margin: 0 auto;
  }

  .founder-credentials {
    bottom: -10px;
    right: -10px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .ct-row {
    grid-template-columns: 1fr;
  }

  .ct-desc {
    max-width: 100%;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 24px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 10px;
  }
}

@media (max-width: 768px) {
  .about-layout,
  .pmv-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 767px) {
  #pw-hero {
    min-height: 100svh;
    align-items: flex-end;
    padding-bottom: 60px;
  }

  #pw-hero .hero-content {
    padding: 40px 6vw 0;
  }

  #pw-hero h1 {
    font-size: clamp(2rem, 9.5vw, 3rem);
    line-height: 1.12;
    letter-spacing: -0.02em;
    -webkit-text-stroke: 1.4px #ffffff;
    margin-bottom: 16px;
  }

  #pw-hero p {
    font-size: 13px;
    line-height: 1.65;
    padding: 0;
  }

  #about,
  #pmv {
    padding: 40px 6vw;
  }

  .about-right {
    padding: 20px;
  }

  .photo-wrap {
    width: 100%;
  }

  .founder-certs {
    grid-template-columns: 1fr;
  }

  .prog-wrap {
    padding: 40px 16px;
  }

  .prog-head {
    margin-bottom: 36px;
    padding: 0 18px;
  }

  .prog-head h2 {
    font-size: clamp(1.9rem, 10vw, 2.7rem);
    letter-spacing: 0.04em;
    text-align: center;
  }

  .prog-head p {
    font-size: 13.5px;
  }

  .prog-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .prog-card {
    flex-direction: row;
    height: 160px;
  }

  .prog-img {
    flex: 0 0 38%;
    height: 100%;
  }

  .prog-img::after {
    display: none;
  }

  .prog-panel {
    flex: 1;
    padding: 16px 14px;
    justify-content: center;
  }

  .prog-panel h3 {
    font-size: 11px;
    letter-spacing: 0.12em;
    text-align: left;
    margin-bottom: 8px;
  }

  .prog-panel p {
    font-size: 11px;
    line-height: 1.65;
    text-align: left;
  }

  .ts {
    padding: 36px 0 16px;
    width: 100%;
    overflow: hidden;
  }

  .ts-outer-wrap {
    width: 100%;
    overflow: hidden;
  }

  .ts-outer-wrap::before,
  .ts-outer-wrap::after {
    display: none;
  }

  .ts-outer {
    width: 100%;
    overflow: hidden;
    padding: 3px 16px 0;
  }

  .ts-track {
    gap: 20px;
  }

  .ts-card {
    padding: 32px 20px 22px;
    margin-top: 4px;
  }

  .ts-avatar {
    width: 52px;
    height: 52px;
    font-size: 0.85rem;
    top: 24px;
    left: 18px;
  }

  .ts-name {
    font-size: 0.9rem;
    padding-left: 68px;
  }

  .ts-role {
    font-size: 0.68rem;
    padding-left: 68px;
    margin-bottom: 12px;
    letter-spacing: 0.08em;
  }

  .ts-stars {
    font-size: 18px;
    padding-left: 68px;
    margin-bottom: 12px;
  }

  .ts-text {
    font-size: 0.86rem;
    line-height: 1.75;
  }

  .ts-nav {
    margin-top: 24px;
    gap: 14px;
    padding: 0 16px;
  }

  .ts-btn {
    width: 42px;
    height: 42px;
    font-size: 1rem;
  }

  footer {
    padding: 36px 24px 22px;
  }
}

@media (max-width: 380px) {
  #pw-hero h1 {
    font-size: clamp(1.7rem, 9vw, 2.4rem);
    -webkit-text-stroke: 1.2px #ffffff;
  }

  #pw-hero p {
    font-size: 12px;
  }

  .prog-card {
    height: 140px;
  }

  .prog-img {
    flex: 0 0 35%;
  }

  .prog-panel h3,
  .prog-panel p {
    font-size: 10px;
  }
}

/* =========================
   Featured Upcoming Event
========================= */
.events-feature-section {
  padding: 60px 5vw;
  background: var(--warm-white);
}

/* Keep the whole event neat and not oversized */
.event-feature-card {
  position: relative;
  max-width: 980px;
  margin: 0 auto;
  background: #ffffff;
  border: 1px solid rgba(123, 34, 126, 0.12);
  box-shadow: 0 6px 24px rgba(123, 34, 126, 0.08);
  display: grid;
  grid-template-columns: 420px 1fr;
  align-items: stretch;
  overflow: visible;
}

/* =========================
   Event Poster Slider
========================= */
.event-feature-poster {
  width: 420px;
  height: 560px;
  background: #ffffff;
  overflow: visible;
}

.event-poster-slider {
  position: relative;
  background: #ffffff;
  overflow: visible;
}

/* This is the actual clipping box.
   The arrows sit outside this, so they don't get clipped. */
.event-poster-viewport {
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #ffffff;
}

.event-poster-track {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.4s ease;
  will-change: transform;
}

.event-poster-slide {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  background: #ffffff;

  display: flex;
  align-items: center;
  justify-content: center;
}

.event-poster-slide img {
  width: 100%;
  max-width: 100%;
  height: auto;
  max-height: 100%;
  object-fit: contain;
  object-position: center center;
  display: block;
  background: #ffffff;
}

/* Poster arrows */
.event-poster-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 50;
  width: 44px;
  height: 44px;
  border: 1.5px solid var(--text-light);
  background: #ffffff;
  color: var(--text-light);
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  box-shadow: 0 6px 20px rgba(123, 34, 126, 0.16);
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease, opacity 0.2s ease;
}

/* Arrows sit on top of the poster edge, not inside the clipped viewport */
.event-poster-prev {
  left: -22px;
}

.event-poster-next {
  right: -22px;
}

.event-poster-arrow:hover {
  background: var(--text-light);
  color: #ffffff;
  transform: translateY(-50%) scale(1.04);
}

.event-poster-arrow:disabled,
.gallery-arrow:disabled,
.ts-btn:disabled {
  opacity: 0.28;
  cursor: default;
  pointer-events: none;
}

/* =========================
   Event Content
========================= */
.event-feature-content {
  padding: 36px 38px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.event-label {
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 12px;
}

.event-feature-content h3,
.event-support-card h3 {
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.15;
  margin-bottom: 18px;
}

.event-feature-desc {
  font-size: 14px;
  line-height: 1.75;
  color: #555;
  font-weight: 500;
  margin-bottom: 22px;
}

.event-info-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-bottom: 24px;
}

.event-info-box {
  background: rgba(123, 34, 126, 0.06);
  border: 1px solid rgba(123, 34, 126, 0.1);
  padding: 13px 15px;
}

.event-info-box span {
  display: block;
  font-size: 10px;
  font-weight: 800;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 5px;
}

.event-info-box strong {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.4;
}

.event-btn {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--text-light);
  color: #ffffff;
  text-decoration: none;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 13px 20px;
  transition: background 0.2s ease, transform 0.2s ease;
}

.event-btn:hover {
  background: #5a1a5e;
  transform: translateY(-1px);
}

.event-btn-outline {
  background: transparent;
  color: var(--text-light);
  border: 1.5px solid var(--text-light);
}

.event-btn-outline:hover {
  background: var(--text-light);
  color: #ffffff;
}

/* Optional support cards, only used if you add them back */
.event-support-grid {
  max-width: 980px;
  margin: 22px auto 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.event-support-card {
  background: #ffffff;
  border: 1px solid rgba(123, 34, 126, 0.12);
  box-shadow: 0 6px 24px rgba(123, 34, 126, 0.08);
  padding: 30px 28px;
}

.event-support-card h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
}

.event-support-card p {
  font-size: 13px;
  line-height: 1.75;
  color: #555;
  font-weight: 500;
  margin-bottom: 22px;
}

/* =========================
   Event Mobile / Tablet
========================= */
@media (max-width: 1023px) {
  .event-feature-card {
    max-width: 860px;
    grid-template-columns: 380px 1fr;
  }

  .event-feature-poster {
    height: 500px;
  }

  .event-feature-content {
    padding: 32px 30px;
  }
}

@media (max-width: 767px) {
  .events-feature-section {
    padding: 40px 16px;
  }

  .event-feature-card {
    max-width: 100%;
    grid-template-columns: 1fr;
    overflow: visible;
  }

  .event-feature-poster {
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 5;
  }

  .event-poster-prev {
    left: 10px;
  }

  .event-poster-next {
    right: 10px;
  }

  .event-poster-arrow {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }

  .event-feature-content {
    padding: 28px 22px;
  }

  .event-feature-content h3 {
    font-size: 1.5rem;
  }

  .event-support-grid {
    grid-template-columns: 1fr;
  }

  .event-support-card {
    padding: 24px 20px;
  }
}


.hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 34px;
  background: #7b227e;
  color: #ffffff;
  padding: 18px 70px;
  border-radius: 999px;
  border: none;
  font-family: 'Poppins', system-ui, sans-serif;
  font-size: 18px;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.12);
  transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.hero-btn:hover {
  background: #8f2b91;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.16);
}

/* =========================
   Gallery Slider
========================= */
.gallery-slider-section {
  position: relative;
  width: 100%;
  padding: 60px 5vw;
  background: var(--warm-white);
  overflow: visible;
}

.gallery-slider {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  overflow: hidden;
}

.gallery-track {
  display: flex;
  gap: 20px;
  transition: transform 0.4s ease;
}

.gallery-card {
  flex: 0 0 calc((100% - 40px) / 3);
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(123, 34, 126, 0.12);
  box-shadow: 0 6px 24px rgba(123, 34, 126, 0.08);
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Arrows */
.gallery-arrow {
  position: absolute;
  top: calc(50% + 60px);
  transform: translateY(-50%);
  z-index: 10;
  width: 44px;
  height: 44px;
  border: 1.5px solid var(--text-light);
  background: #ffffff;
  color: var(--text-light);
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  box-shadow: 0 6px 20px rgba(123, 34, 126, 0.12);
  transition: background 0.2s, color 0.2s, transform 0.2s;
}

.gallery-arrow:hover {
  background: var(--text-light);
  color: #ffffff;
  transform: translateY(-50%) scale(1.04);
}

.gallery-prev {
  left: calc(5vw - 40px);
}

.gallery-next {
  right: calc(5vw - 40px);
}

.event-poster-arrow:disabled,
.gallery-arrow:disabled,
.ts-btn:disabled {
  opacity: 0.28;
  cursor: default;
  pointer-events: none;
}

/* Tablet */
@media (max-width: 900px) {
  .gallery-card {
    flex: 0 0 calc((100% - 20px) / 2);
  }

  .gallery-prev {
    left: 18px;
  }

  .gallery-next {
    right: 18px;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .gallery-slider-section {
    padding: 40px 16px;
  }

  .gallery-card {
    flex: 0 0 100%;
  }

  .gallery-arrow {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }

  .gallery-prev {
    left: 24px;
  }

  .gallery-next {
    right: 24px;
  }
}

.ct-icon-facebook svg circle {
  fill: var(--text-light);
  stroke: none;
}

.ct-icon-facebook svg path {
  fill: #ffffff;
  stroke: none;
}

/* =========================
   Mobile Hero Fix
========================= */
@media (max-width: 767px) {
  #pw-hero {
    min-height: calc(100svh - 72px);
    padding-top: 72px;
    padding-bottom: 28px;
    align-items: center;
  }

  #pw-hero .hero-content {
    transform: none;
    padding: 40px 7vw 28px;
    max-width: 100%;
  }

  #pw-hero h1 {
    font-size: clamp(2.3rem, 12vw, 3.6rem);
    line-height: 1.05;
    margin-bottom: 26px;
    -webkit-text-stroke: 1.2px #ffffff;
    text-stroke: 1.2px #ffffff;
  }
  
  #pw-hero p {
    font-size: 14px;
    line-height: 1.75;
    max-width: 92%;
    margin: 0 auto;
  }

  .hero-btn {
    margin-top: 28px;
    padding: 16px 38px;
    min-width: 250px;
    font-size: 16px;
  }
}