Skip to content

Contact Us

Tell us what you’re trying to build. We’ll respond with next steps for enrollment, course fit, or partnerships.

Phone
+1 202 555 0184
Mon–Fri · 09:00–18:00
Email
Global-friendly response windows
Priority
Admissions & Partnerships
We reply in order of queue
Use your full name (min 2 characters).
We’ll only use this to respond to your request.
Optional. Include country code if possible.
Helps us route your message faster.
Min 10 characters. Keep it under 1000.
0 / 1000
Availability Meter
Availability: calculating…
Now Next reply
Submitting this form sends your message to our team.
PLACEHOLDER_EXTRA_WORDS
{ const clock = $("#u7r2p"); const next = $("#t5k8y"); function pad(n) { return String(n).padStart(2, "0"); } function tickClock() { const d = new Date(); const s = pad(d.getHours()) + ":" + pad(d.getMinutes()) + ":" + pad(d.getSeconds()); safeText(clock, s); } let remain = 10 * 60; function tickCountdown() { remain -= 1; if (remain <= 0) remain = 10 * 60; const m = Math.floor(remain / 60); const s = remain % 60; safeText(next, pad(m) + ":" + pad(s)); } tickClock(); tickCountdown(); window.setInterval(tickClock, 1000); window.setInterval(tickCountdown, 1000); } function injectHeaderFooter() { return Promise.all([ fetch("header.html", { cache: "no-store" }).then(r => r.ok ? r.text() : ""), fetch("footer.html", { cache: "no-store" }).then(r => r.ok ? r.text() : "") ]).then(([h, f]) => { const header = document.querySelector("header"); const footer = document.querySelector("footer"); if (header) header.innerHTML = h || ""; if (footer) footer.innerHTML = f || ""; state.injected = true; }).catch(() => { state.injected = true; }); } function init() { setThemeFromStorage(); wireGenericOpenClose(); wireThemeToggle(); wireCookieBanner(); wireHeaderForms(); wireContactForm(); wireA11yButton(); wireTimers(); } injectHeaderFooter().then(init); })();