@charset "utf-8";
/* Centerleader.org | Home V1.3 | Last edited 4/23/26 | CSS */

/* ---- BODY ---- */
body {
  margin: 0;
  background: #fff;
  font-family: 'Montserrat', sans-serif;
}

html {
  scroll-behavior: smooth;
}

a {
	font-family: 'Montserrat', sans-serif;
	color: #00013B;
	font-weight: 700;
	text-decoration: none;
}

a:hover {
	color: #1edcb8;
}

b {
	color: #111;
	line-height: 2;
}

p {
	font-family: 'Open Sans', sans-serif;
	font-weight: 400;
	font-size: 16px;
	color: #111;
	line-height: 2;
}

h1 {
	font-family: 'Figtree', sans-serif;
	font-weight: 700;
	font-size: 44px;
	color: #233564;
	margin: 0 0 20px;
}

h2 {
	font-family: 'Figtree', sans-serif;
	font-weight: 700;
 	font-size: clamp(36px, 4vw, 44px);
	color: #233564;
	margin: 0 0 20px;
}

h3 {
	font-family: 'Montserrat', sans-serif;
	font-weight: 300;
	font-size: clamp(14px, 8vw, 18px);
	text-transform: uppercase;
	color: #00013b;
	letter-spacing: 0.08em;
}

h4 {
	font-family: 'Figtree', sans-serif;
	font-weight: 600;
 	font-size: clamp(26px, 4vw, 34px);
	color: #233564;
	margin: -15px 0 0 0;
}

/* ---- BUTTON ---- */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 35px;
	padding: 3px 25px;
	font-size: 16px;
	font-weight: 700;
	color: #fff;
	background: #233564;
	border-radius: 10px;
	border: none;
	text-decoration: none;
	transition: background .2s ease;
	position: relative;
	overflow: hidden;
}

.btn:hover {
  	color: #fff;
	background: #1edcb8;
}

.btn::after {
	content: "";
	position: absolute;
	top: -50%;
	left: -120%;
	width: 60%;
	height: 200%;
	background: linear-gradient(
		120deg,
		transparent 0%,
		rgba(255,255,255,.25) 45%,
		rgba(255,255,255,.45) 50%,
		rgba(255,255,255,.25) 55%,
		transparent 100%
	);
	transform: skewX(-120deg);
}

.btn:hover::after {
	animation: logoSweep .9s ease forwards;
}

@keyframes logoSweep {
	to { left: 140%; }
}

.btn.disabled {
	pointer-events: none;
	opacity: 0.6;
	cursor: default;
}

/* ---- SCROLL MARGIN ---- */
section {
	scroll-margin-top: 35px;
}

/* ---- HEADER ---- */
.site-header {
	position: sticky;
	top: 0;
	background: rgba(255,255,255,1);
	border-bottom: 1px solid #000;
	height: 145px;
	transition:
		height .3s ease,
		background .3s ease,
		backdrop-filter .3s ease,
		box-shadow .3s ease;
	z-index: 1000;
}

.header-inner {
	max-width: 1275px;
	height: 100%;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.logo img {
	max-height: 60px;
	transition: max-height 0.9s ease;
}

.site-header.scrolled {
	height: 95px;
	background: rgba(255,255,255,0.75);
	backdrop-filter: blur(12px);
	box-shadow: 0 4px 20px rgba(0,0,0,.08);
}

.site-header.header-inner {
	height: 100%;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.site-header.scrolled .logo img {
	max-height: 50px;
	transition: max-height 0.9s ease;
}

/* ---- NAV ---- */
.main-nav {
	display: flex;
	gap: 35px;
}

.main-nav a {
	font-size: 18px;
	font-weight: 400;
	color: #000;
	text-decoration: none;
	transition: color .2s ease;
}

.main-nav a:hover {
	color: #2cccc4;
}

.main-nav a.active,
.mobile-nav a.active {
	color: #233564;
	font-weight: 700;
}

.site-header.scrolled {
	height: 95px;
	background: rgba(255,255,255,0.75);
	backdrop-filter: blur(10px);
}

.site-header.scrolled .logo img {
	max-height: 55px;
}

/* ---- Special Link ---- */
.nav-special {
  font-weight: 700 !important;
  color: #19d3c5;
  position: relative;
}

.nav-special::after {
  content: '';
  position: absolute;
  left: -2px;
  bottom: -6px;
  width: 110%;
  height: 3px;
  background: linear-gradient(90deg, transparent, #19d3c5, transparent);
  border-radius: 999px;
  opacity: 0.7;
}

/* ---- HERO ---- */
.hero {
	padding: 45px 0;
}

.hero .btn {
	font-size: 20px;
}

.hero-inner {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 32px;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px;
	align-items: center;
}

.hero-image img {
	width: 570px;
	height: 430px;
	object-fit: cover;
	display: block;
	border-radius: 5px;
}

/* ---- STATS ---- */
.stats {
	padding: 1px 0 60px;
	border-bottom: 1px solid #000;
}

.stats-grid {
	max-width: 1200px;
	margin: 20px auto;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	text-align: center;
	border-left: 2px solid #1EDCB8;
	border-right: 2px solid #1EDCB8;
}

.stat {
	padding: 0 24px;
}

.stat:not(:last-child) {
	border-right: 1px solid #1EDCB8;
}

.number {
	font-family: 'Oswald', sans-serif;
	font-weight: 800;
	font-size: clamp(60px, 8vw, 96px);
	color: #00013b;
	line-height: 1.2;
	margin-bottom: clamp(8px, 2vw, 16px);
}

/* ---- WHY CLA EXISTS ---- */
.why {
	padding: 100px 0;
	border-bottom: 1px solid #000;
}

.why-inner {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 32px;
	text-align: center;
}

.why-intro {
	margin: 0 auto 20px;
}

.why-grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 20px;
	margin: 40px 0;
}

.why-card {
	background: #f7f9fc;
	padding: 22px 18px;
	border-radius: 6px;
	box-shadow: 0 4px 12px rgba(0,0,0,0.08);
	text-align: center;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.why-card h4 {
	font-family: 'Oswald', sans-serif;
	font-size: 18px;
	margin-bottom: 6px;
	color: #00013B;
}

.why-card p {
	font-family: 'Montserrat', sans-serif;
	font-size: 14px;
	color: #555;
	margin: 0;
	line-height: 1.4;
}

.why-outro {
	margin: 0 auto;
}

@media (max-width: 1000px) {
	.why-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 600px) {
	.why-grid {
		grid-template-columns: 1fr;
	}
}

/* ---- TESTIMONIALS ---- */
.testimonials {
	background: url('images/bg-bottom-left.png') bottom left / contain no-repeat;
	border-bottom: 1px solid #000;
	padding: 100px 0;
}

.testimonials-inner {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 32px;
	text-align: center;
}

.testimonials-intro {
	margin: 0 auto 60px;
}

.testimonial-slider {
	position: relative;
	min-height: 360px;
}

.slides {
	overflow: hidden;
}

.slide {
	display: none;
}

.slide.active {
	display: block;
}

.quote {
	color: #00013B;
	margin-bottom: 40px;
	font-style: italic;
}

.author {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 16px;
}

.author img {
	width: 80px;
	height: 80px;
	border-radius: 50%;
	object-fit: cover;
}

.author-meta {
	line-height: 1.6;
	color: #00013b;
}

.arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background: none;
	border: none;
	font-size: 28px;
	cursor: pointer;
	color: #999;
}

.arrow.prev { left: -40px; }
.arrow.next { right: -40px; }

.dots {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.dot {
	width: 10px;
	height: 10px;
	border-radius: 100%;
	background: #bbb;
	border: none;
	cursor: pointer;
}

.dot.active {
	background: #233564;
}

/* ---- PROGRAMS & RESOURCES ---- */
.programs {
	padding: 100px 0;
	border-bottom: 1px solid #000;
}

.programs-inner {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 32px;
	text-align: center;
}

.programs-grid {
	margin-top: 50px;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 45px;
	text-align: center;
}

.program-box {
	padding: 60px;
	border-radius: 15px;
	border: 3px solid #233564;	
}

.program-block h4 {
	margin: 0 0 12px;
	line-height: 1.3;
}

.program-desc {
	margin-bottom: 20px;
	max-width: 500px;
}

.program-lead {
	font-weight: 600;
	margin-bottom: 10px;
}

.program-list {
	list-style: none;
	padding: 0;
	margin: 0 0 30px;
}

.program-box p,
.program-box ul {
	text-align: left;
	align-self: stretch;
}

.program-list li {
	position: relative;
	padding-left: 20px;
	margin-bottom: 12px;
	font-family: 'Montserrat', sans-serif;
	color: #00013B;
	line-height: 1.7;
}

.program-list li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 10px;
	width: 6px;
	height: 6px;
	background: #1EDCB8;
	border-radius: 50%;
}

.program-card .btn {
	margin-top: 10px;
}

.program-box p.program-subtext,
.program-box p.program-launch {
	text-align: center;
	align-self: center;
	width: 100%;
}

.program-subtext {
	text-align: center;
	font-size: 14px;
	margin-top: 10px;
}

.program-launch {
	text-align: center;
	font-weight: 700;
	font-size: 18px;
	color: #233564;
	margin-top: 5px;
}

/* ---- TEAM ---- */
.team {
	background: url('images/bg-top-right.png') top right / contain no-repeat;
	border-bottom: 1px solid #000;
	padding: 125px 0;
}

.team-inner {
	max-width: 1100px;
	margin: 0 auto;
	padding: 0 32px;
	text-align: center;
}

.team-subheader {
	font-family: 'Montserrat', sans-serif;
	font-size: 14px;
	font-weight: 500;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	margin: 0 0 10px;
}

.team-intro {
	margin: 0 auto 80px;
}

.team-group-title {
	text-align: left;
	margin: 80px 0 40px;
}

.team-grid {
	display: grid;
	gap: 80px;
	justify-content: center;
	margin-bottom: 20px;
}

.team-grid.three {
	grid-template-columns: repeat(3, 285px);
}

.team-grid.two {
	grid-template-columns: repeat(2, 200px);
}

.team-grid.bootcamp {
	grid-template-columns: repeat(4, 200px);
}

.team-member {
	font-size: 14px;
	font-family: 'Montserrat', sans-serif;
	color: #00013B;
	text-align: center;
}

.team-member img {
	width: 145px;
	height: 145px;
	border-radius: 50%;
	border: 3px solid #233564;
	object-fit: cover;
	margin-bottom: 16px;
}

.team-member a {
	display: block;
	font-size: 14px;
	margin-top: -3px;
}

.team-member span {
	font-size: 14px;
	line-height: 1.5;
}

/* ---- CONTACT ---- */
.contact {
	border-top: 1px solid #000;
	padding: 125px 0;
}

.contact-inner {
	max-width: 1100px;
	margin: 0 auto;
	padding: 0 10px;
	text-align: center;
}

.contact-intro {
	margin: 0 auto 80px;
}

.contact-form {
	max-width: 800px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
}

.form-group.full {
	grid-column: span 2;
}

.form-group input,
.form-group textarea {
	width: 100%;
	border: none;
	border-bottom: 2px solid #233564;
	padding: 12px 6px;
	font-family: 'Open Sans', sans-serif;
	font-size: 15px;
	background: transparent;
}

input:focus,
textarea:focus,
select:focus {
	outline: none;
	box-shadow: none;
}

input:focus-visible,
textarea:focus-visible,
select:focus-visible {
	outline: none;
}

.form-group textarea {
	min-height: 75px;
	resize: vertical;
}

.form-options {
	grid-column: span 2;
	display: grid;
	gap: 12px;
	text-align: left;
}

.form-options label {
	font-size: 15px;
}

.chk {
	display: flex;
	align-items: center;
	gap: 10px;
	cursor: pointer;
	font-size: 15px;
	color: #00013b;
}

.chk input {
	position: absolute;
	opacity: 0;
	pointer-events: none;
}

.chk-box {
	width: 15px;
	height: 14px;
	border: 1px solid #000;
	border-radius: 3px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	transition: border-color .2s ease, background .2s ease;
}

.chk input:checked + .chk-box::after {
	content: "✓";
	font-size: 30px;
	font-weight: 700;
	color: #22B8B1;
}

.chk:hover .chk-box {
	border-color: #2CCCC4;
}

.form-submit {
	grid-column: span 2;
	text-align: center;
	margin-top: 20px;
}

.form-submit .btn {
	padding: 0 40px;
}

/* ---- FOOTER ---- */
.site-footer {
  border-top: 1px solid #000;
  padding: 60px 0 40px;
  text-align: center;
}

.footer-inner {
	max-width: 900px;
	margin: 0 auto;
	padding: 0 32px;
}

.footer-logo {
	max-width: 225px;
}

.footer-copy {
	font-family: 'Montserrat', sans-serif;
	color: #00013B;
	font-size: 14px;
	line-height: 1.6;
}

/* wink wink honey */
.verify-email {
    position: absolute;
    left: -9999px;
    top: auto;
}