@charset "utf-8";
/* Centerleader.org | Home V1.3 | Last edited 4/23/26 | CSS */

/* ---- 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;
}

/* ---- wink wink ---- */
.email_verify {
    position: absolute;
    left: -9999px;
    opacity: 0;
    height: 0;
    overflow: hidden;
}

.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;
}

/* ---- CONTACT FORM MESSAGES ---- */
.contact-message {
    display: none;
    margin-bottom: 20px;
    padding: 14px 16px;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 600;
}

.contact-message.success {
    display: block;
    color: #00013B;
    background: rgba(0, 1, 59, 0.08);
    border: 1px solid rgba(0, 1, 59, 0.25);
}

.contact-message.error {
    display: block;
    color: #b00020;
    background: rgba(176, 0, 32, 0.08);
    border: 1px solid rgba(176, 0, 32, 0.25);
}