@charset "utf-8";
/* Centerleader.org | Shared 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: 30px;
}

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

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

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