:root {
	--primary: #4CAF50;
	--accent: #2196F3;
	--light: #f9f9f9;
	--dark: #333;
}

.announcement-banner {
	background: var(--dark);
	color: #fff;
	text-align: center;
	padding: 10px 50px 10px 20px;
	font-size: 0.95rem;
	position: relative;
	z-index: 600;
}

.announcement-banner a {
	color: #a5d6a7;
	font-weight: bold;
	text-decoration: none;
	white-space: nowrap;
}

.announcement-banner a:hover {
	text-decoration: underline;
}

.banner-dismiss {
	position: absolute;
	right: 14px;
	top: 50%;
	transform: translateY(-50%);
	background: none;
	border: none;
	color: #ccc;
	font-size: 1.3rem;
	cursor: pointer;
	line-height: 1;
	padding: 2px 6px;
}

.banner-dismiss:hover {
	color: #fff;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	line-height: 1.6;
	color: var(--dark);
	background: var(--light);
}

.container {
	max-width: 1100px;
	margin: 0 auto;
	padding: 0 20px;
}

header {
	background: linear-gradient(to right, var(--primary), #66BB6A);
	color: white;
	text-align: center;
	padding: 80px 20px 60px;
}

h1 {
	font-size: 2.8rem;
	margin-bottom: 12px;
}

h2 {
	font-size: 2.4rem;
	font-weight: 700;
	letter-spacing: -0.01em;
	margin: 40px 0 20px;
	text-align: center;
}

.tagline {
	font-size: 1.3rem;
	margin-bottom: 30px;
}

.btn {
	display: inline-block;
	background: white;
	color: var(--primary);
	font-weight: bold;
	padding: 14px 32px;
	border-radius: 50px;
	text-decoration: none;
	margin: 10px;
	font-size: 1.1rem;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
	transition: all 0.3s;
}

.btn:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

section {
	padding: 50px 0;
}

.skills {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
	justify-content: center;
}

.skill-card {
	background: white;
	border-radius: 12px;
	padding: 24px;
	width: 320px;
	box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
	text-align: center;
}

.skill-card h3 {
	color: var(--accent);
	margin-bottom: 12px;
}

ul.benefits {
	list-style: none;
	max-width: 700px;
	margin: 0 auto;
	font-size: 1.15rem;
}

ul.benefits li {
	margin: 16px 0;
	padding-left: 35px;
	position: relative;
}

ul.benefits li::before {
	content: "✔";
	color: var(--primary);
	position: absolute;
	left: 0;
	font-size: 1.4rem;
}

.cta-center {
	text-align: center;
	margin: 40px 0;
}

.sponsors {
	text-align: center;
}

.sponsors img {
	height: 80px;
	margin: 20px 30px;
	filter: grayscale(30%);
	transition: filter 0.3s, transform 0.3s;
}

.sponsors a.sponsor-logo {
	display: inline-block;
	margin: 20px 30px;
	border-radius: 10px;
	padding: 12px 20px;
	background: white;
	box-shadow: 0 4px 14px rgba(0, 0, 0, 0.10);
	transition: box-shadow 0.3s, transform 0.3s;
	text-decoration: none;
}

.sponsors a.sponsor-logo:hover {
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
	transform: translateY(-3px);
}

.sponsors a.sponsor-logo:hover img {
	filter: grayscale(0%);
}

.faq-list {
	max-width: 800px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.faq-item {
	background: white;
	border-radius: 12px;
	box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
	overflow: hidden;
	border-left: 4px solid var(--primary);
	transition: box-shadow 0.3s;
}

.faq-item:hover {
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.13);
}

.faq-item.open {
	border-left-color: var(--accent);
}

.faq-question {
	width: 100%;
	background: none;
	border: none;
	text-align: left;
	padding: 18px 22px;
	font-size: 1.05rem;
	font-weight: 600;
	color: var(--dark);
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	font-family: inherit;
}

.faq-question:hover {
	color: var(--accent);
}

.faq-icon {
	flex-shrink: 0;
	width: 28px;
	height: 28px;
	background: var(--light);
	border-radius: 50%;
	color: var(--primary);
	transition: transform 0.3s, background 0.3s, color 0.3s;
	position: relative;
	font-size: 0;
}

.faq-icon::before,
.faq-icon::after {
	content: '';
	position: absolute;
	background: currentColor;
	border-radius: 1px;
	top: 50%;
	left: 50%;
}

.faq-icon::before {
	width: 12px;
	height: 2px;
	transform: translate(-50%, -50%);
}

.faq-icon::after {
	width: 2px;
	height: 12px;
	transform: translate(-50%, -50%);
}

.faq-item.open .faq-icon {
	transform: rotate(45deg);
	background: var(--accent);
	color: white;
}

.faq-answer {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.35s ease, padding 0.35s ease;
	padding: 0 22px;
}

.faq-answer-inner {
	padding-bottom: 18px;
	color: #555;
	line-height: 1.7;
	font-size: 1rem;
}

.faq-item.open .faq-answer {
	max-height: 500px;
}

.team-gallery {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 25px;
	margin-top: 16px;
}

.team-group {
	width: 100%;
	margin-bottom: 44px;
}

.team-group:last-child {
	margin-bottom: 0;
}

.team-group-title {
	text-align: center;
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--accent);
	margin: 0 0 2px;
}

.team-group-title::after {
	content: '';
	display: block;
	width: 36px;
	height: 3px;
	background: var(--accent);
	border-radius: 2px;
	margin: 5px auto 0;
}

.team-role-badge {
	display: inline-block;
	font-size: 0.68rem;
	font-weight: 700;
	letter-spacing: 0.07em;
	text-transform: uppercase;
	padding: 2px 10px;
	border-radius: 99px;
	margin-bottom: 6px;
}

.team-role-leader {
	background: var(--accent);
	color: #fff;
}

.team-role-support {
	background: #e2e2e2;
	color: #666;
}

.team-member--placeholder img {
	filter: grayscale(35%);
	opacity: 0.82;
}

.team-member {
	text-align: center;
	max-width: 220px;
}

.team-member img {
	width: 100%;
	height: 220px;
	object-fit: cover;
	object-position: center top;
	border-radius: 12px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
	margin-bottom: 12px;
}

.team-member p {
	font-weight: bold;
	margin: 8px 0 4px;
}

.team-member small {
	color: #555;
	font-size: 0.95rem;
}

.bio-toggle {
	background: none;
	border: none;
	color: var(--accent);
	cursor: pointer;
	font-size: 0.9rem;
	font-weight: bold;
	padding: 0;
	text-decoration: underline;
}

.bio-modal-overlay {
	display: flex;
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.55);
	z-index: 1000;
	align-items: center;
	justify-content: center;
	padding: 20px;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition: opacity 0.3s ease, visibility 0.3s ease;
}

.bio-modal-overlay.open {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
}

.bio-modal {
	background: white;
	border-radius: 14px;
	max-width: 560px;
	width: 100%;
	padding: 32px 28px 28px;
	box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
	position: relative;
	max-height: 85vh;
	overflow-y: auto;
	transform: scale(0.95);
	transition: transform 0.3s ease;
}

.bio-modal-overlay.open .bio-modal {
	transform: scale(1);
}

.bio-modal h3 {
	margin-bottom: 14px;
	color: var(--accent);
}

.bio-modal p {
	line-height: 1.7;
	color: #444;
}

.bio-modal-close {
	position: absolute;
	top: 14px;
	right: 18px;
	background: none;
	border: none;
	font-size: 1.5rem;
	cursor: pointer;
	color: #888;
	line-height: 1;
}

.bio-modal-close:hover {
	color: var(--dark);
}

.bio-modal--letter {
	max-width: 680px;
	line-height: 1.8;
}

.bio-modal--letter p {
	margin-bottom: 1rem;
}

.bio-modal--letter h4 {
	margin-top: 1.5rem;
	font-size: 1.05rem;
	color: var(--accent);
}

.team-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 32px;
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
}

/* Founder letter card — in Team section */
.founder-letter-card {
	background: #f0f7f0;
	border-left: 4px solid var(--primary);
	border-radius: 12px;
	max-width: 680px;
	margin: 0 auto 28px;
	padding: 22px 28px;
}

.founder-letter-card p {
	font-style: italic;
	color: #555;
	font-size: 1.05rem;
	line-height: 1.65;
	margin-bottom: 14px;
}

.founder-letter-card .bio-toggle {
	font-size: 1rem;
}

footer {
	background: var(--dark);
	color: white;
	text-align: center;
	padding: 30px 0;
	font-size: 0.95rem;
}

@media (max-width: 768px) {
	h1 {
		font-size: 2.3rem;
	}

	header {
		padding: 60px 15px 40px;
	}

	.skills {
		flex-direction: column;
		align-items: center;
	}

	.team-gallery {
		flex-direction: column;
		align-items: center;
	}
}

.float-actions {
	position: fixed;
	bottom: 30px;
	right: 30px;
	z-index: 500;
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 12px;
}

.share-wrapper {
	position: relative;
	display: inline-block;
}

.share-toggle-btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 14px 32px;
	border-radius: 50px;
	font-weight: bold;
	font-size: 1.1rem;
	background: var(--primary);
	color: white;
	border: none;
	cursor: pointer;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
	transition: all 0.3s;
}

.share-toggle-btn:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.share-menu {
	display: none;
	position: absolute;
	bottom: calc(100% + 10px);
	top: auto;
	right: 0;
	left: auto;
	transform: none;
	background: white;
	border-radius: 14px;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18);
	min-width: 230px;
	z-index: 100;
	overflow: hidden;
	flex-direction: column;
}

.share-menu.open {
	display: flex;
}

.share-menu-item {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 13px 20px;
	background: none;
	border: none;
	border-top: 1px solid #f0f0f0;
	cursor: pointer;
	font-size: 0.95rem;
	font-weight: 600;
	color: var(--dark);
	text-align: left;
	width: 100%;
	transition: background 0.15s;
}

.share-menu-item:first-child {
	border-top: none;
}

.share-menu-item:hover {
	background: #f5f7fa;
}

.menu-dot {
	width: 32px;
	height: 32px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	color: white;
	font-size: 1rem;
}

.menu-dot-native {
	background: var(--accent);
}

.menu-dot-sms {
	background: #34a853;
}

.menu-dot-whatsapp {
	background: #25D366;
}

.menu-dot-facebook {
	background: #1877F2;
}

.menu-dot-twitter {
	background: #14171A;
}

.float-signup-btn {
	display: inline-block;
	background: var(--accent);
	color: white;
	font-weight: bold;
	padding: 14px 32px;
	border-radius: 50px;
	text-decoration: none;
	font-size: 1.1rem;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
	transition: all 0.3s;
}

.float-signup-btn:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

/* ─────────────────────────────────────────
   Scroll padding for sticky nav
───────────────────────────────────────── */
html {
	scroll-padding-top: 70px;
}

/* ─────────────────────────────────────────
   Sticky Navigation
───────────────────────────────────────── */
.site-nav {
	position: sticky;
	top: 0;
	z-index: 550;
	background: #fff;
	border-bottom: 1px solid #e8e8e8;
	transition: box-shadow 0.3s;
}

.site-nav.nav-scrolled {
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.12);
}

.nav-inner {
	display: flex;
	align-items: center;
	gap: 24px;
	height: 58px;
}

.nav-brand {
	font-weight: 700;
	font-size: 1rem;
	color: var(--primary);
	text-decoration: none;
	white-space: nowrap;
	margin-right: auto;
}

.nav-brand:hover {
	color: var(--accent);
}

.nav-links {
	list-style: none;
	display: flex;
	gap: 28px;
	margin: 0;
}

.nav-links a {
	text-decoration: none;
	color: var(--dark);
	font-size: 0.95rem;
	font-weight: 500;
	transition: color 0.2s;
}

.nav-links a:hover {
	color: var(--accent);
}

.nav-cta {
	display: inline-block;
	background: var(--accent);
	color: white;
	font-weight: 700;
	padding: 8px 20px;
	border-radius: 50px;
	text-decoration: none;
	font-size: 0.9rem;
	white-space: nowrap;
	transition: background 0.2s, transform 0.2s;
}

.nav-cta:hover {
	background: #1976D2;
	transform: translateY(-1px);
}

.hamburger {
	display: none;
	background: none;
	border: none;
	font-size: 1.5rem;
	color: var(--dark);
	cursor: pointer;
	padding: 4px 8px;
	line-height: 1;
	margin-left: auto;
	flex-shrink: 0;
}

@media (max-width: 768px) {
	.hamburger {
		display: block;
	}

	.nav-links {
		display: none;
		flex-direction: column;
		gap: 0;
		position: absolute;
		top: 58px;
		left: 0;
		right: 0;
		background: #fff;
		box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
		padding: 10px 0;
		z-index: 549;
	}

	.nav-links.open {
		display: flex;
	}

	.nav-links li a {
		display: block;
		padding: 12px 24px;
	}

	.nav-cta {
		display: none;
	}
}

/* ─────────────────────────────────────────
   Section intro text
───────────────────────────────────────── */
.section-intro {
	text-align: center;
	max-width: 720px;
	margin: 0 auto 36px;
	font-size: 1.1rem;
	color: #555;
}

/* ─────────────────────────────────────────
   Outline button variant
───────────────────────────────────────── */
.btn-outline {
	background: transparent;
	color: white;
	border: 2px solid rgba(255, 255, 255, 0.85);
	box-shadow: none;
}

.btn-outline:hover {
	background: rgba(255, 255, 255, 0.15);
	color: white;
	border-color: white;
}

/* ─────────────────────────────────────────
   Program Overview — two pillar cards
───────────────────────────────────────── */
.pillar-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 30px;
	margin-top: 10px;
}

.pillar-card {
	background: var(--light);
	border-radius: 14px;
	padding: 30px 28px;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.07);
	border-top: 4px solid var(--primary);
}

.pillar-card--accent {
	border-top-color: var(--accent);
}

.pillar-card h3 {
	font-size: 1.3rem;
	margin-bottom: 16px;
	color: var(--dark);
}

.pillar-card ul {
	list-style: none;
	padding: 0;
}

.pillar-card ul li {
	padding: 8px 0 8px 28px;
	position: relative;
	color: #555;
	font-size: 1rem;
	line-height: 1.5;
}

.pillar-card ul li::before {
	content: "\2192";
	color: var(--primary);
	position: absolute;
	left: 0;
	font-weight: bold;
}

.pillar-card--accent ul li::before {
	color: var(--accent);
}

@media (max-width: 768px) {
	.pillar-grid {
		grid-template-columns: 1fr;
	}
}

/* ─────────────────────────────────────────
   What You'll Explore — 6-card responsive grid
───────────────────────────────────────── */
.explore-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}

@media (max-width: 900px) {
	.explore-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 600px) {
	.explore-grid {
		grid-template-columns: 1fr;
	}
}

/* ─────────────────────────────────────────
   Your Learning Journey
───────────────────────────────────────── */
.journey-steps {
	display: flex;
	align-items: flex-start;
	justify-content: center;
	margin-top: 16px;
	flex-wrap: wrap;
	gap: 0;
}

.journey-step {
	background: var(--light);
	border-radius: 14px;
	padding: 28px 24px;
	text-align: center;
	flex: 1;
	min-width: 180px;
	max-width: 280px;
	box-shadow: 0 4px 14px rgba(0, 0, 0, 0.07);
}

.journey-step-number {
	width: 44px;
	height: 44px;
	background: var(--primary);
	color: white;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.2rem;
	font-weight: 700;
	margin: 0 auto 14px;
}

.journey-step h3 {
	color: var(--dark);
	margin-bottom: 10px;
	font-size: 1.15rem;
}

.journey-step p {
	color: #555;
	font-size: 0.95rem;
	line-height: 1.5;
}

.journey-step-divider {
	font-size: 2rem;
	color: #ccc;
	padding: 0 10px;
	align-self: center;
	flex-shrink: 0;
}

@media (max-width: 768px) {
	.journey-steps {
		flex-direction: column;
		align-items: center;
	}

	.journey-step-divider {
		transform: rotate(90deg);
		padding: 4px 0;
	}

	.journey-step {
		max-width: 100%;
		width: 100%;
	}
}

/* ─────────────────────────────────────────
   Testimonials (hidden at launch)
───────────────────────────────────────── */
.testimonials-section {
	display: none;
	/* Remove display:none from the inline style to reveal after first sessions */
}

.testimonials-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	margin-top: 20px;
}

.testimonial-card {
	background: var(--light);
	border-radius: 14px;
	padding: 24px;
	box-shadow: 0 4px 14px rgba(0, 0, 0, 0.07);
	border-left: 4px solid var(--primary);
}

.testimonial-card blockquote {
	font-size: 1rem;
	color: #444;
	line-height: 1.7;
	font-style: italic;
	margin-bottom: 14px;
}

.testimonial-card footer {
	font-size: 0.9rem;
	color: #888;
	font-weight: 600;
	background: none;
	padding: 0;
	text-align: left;
}

@media (max-width: 900px) {
	.testimonials-grid {
		grid-template-columns: 1fr 1fr;
	}
}

@media (max-width: 600px) {
	.testimonials-grid {
		grid-template-columns: 1fr;
	}
}

/* ─────────────────────────────────────────
   Animations
───────────────────────────────────────── */

/* Hero entrance */
@keyframes fadeUp {
	from {
		opacity: 0;
		transform: translateY(20px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

header h1 {
	animation: fadeUp 0.6s ease both;
}

header .tagline {
	animation: fadeUp 0.6s 0.15s ease both;
}

header>.container>div {
	animation: fadeUp 0.6s 0.30s ease both;
}

/* Scroll-reveal */
.reveal {
	opacity: 0;
	transform: translateY(24px);
	transition: opacity 0.5s ease, transform 0.5s ease;
}

.reveal.visible {
	opacity: 1;
	transform: none;
}

/* Card hover lifts */
.skill-card {
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.skill-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 10px 24px rgba(0, 0, 0, 0.14);
}

.pillar-card {
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.pillar-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
}

/* Team portrait hover scale */
.team-member img {
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-member img:hover {
	transform: scale(1.05);
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.22);
}

/* Respect reduced-motion preference */
@media (prefers-reduced-motion: reduce) {

	*,
	*::before,
	*::after {
		animation-duration: 0.01ms !important;
		transition-duration: 0.01ms !important;
	}
}