* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	font-family: Arial, sans-serif;
	color: #172033;
	background:
		linear-gradient(135deg, #fff8e7 0%, #f2ead7 45%, #e8f1ec 100%);
	position: relative;
	z-index: 1;
}

body::before {
	content: "";
	position: fixed;
	inset: 0;
	z-index: 0;
	pointer-events: none;
	background-image: url("images/kadga.png");
	background-repeat: no-repeat;
	background-position: center;
	background-size: min(520px, 78vw);
	opacity: 0.045;
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 20;
	background: linear-gradient(90deg, #101828, #163020);
	box-shadow: 0 8px 24px rgba(16, 24, 40, 0.22);
}

.navbar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	max-width: 1180px;
	margin: 0 auto;
	padding: 14px 20px;
}

.brand {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 52px;
	height: 52px;
	border-radius: 50%;
	background: #d4af37;
	color: #172315;
	font-size: 20px;
	font-weight: 800;
	text-decoration: none;
}

.nav-links {
	display: flex;
	gap: 22px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.nav-links a {
	color: #ffffff;
	text-decoration: none;
	font-size: 15px;
	font-weight: 700;
}

.nav-links a:hover {
	color: #d4af37;
}

.menu-button {
	display: none;
	background: none;
	border: 0;
	color: #ffffff;
	font-size: 30px;
	cursor: pointer;
	position: relative;
	z-index: 50;
}

.nav-links {
	z-index: 40;
}

.hero {
	min-height: 680px;
	display: grid;
	place-items: center;
	padding: 80px 20px;
	position: relative;
	overflow: hidden;
	background:
		linear-gradient(135deg, rgba(16, 24, 40, 0.9), rgba(10, 92, 76, 0.78)),
		url("images/background.jpg");
	background-color: #101828;
	background-position: center;
	background-size: cover;
}

.hero::after {
	content: "";
	position: absolute;
	right: -80px;
	bottom: -100px;
	width: min(520px, 80vw);
	height: min(520px, 80vw);
	background-image: url("images/kadga.png");
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	opacity: 0.12;
	pointer-events: none;
}

.hero-card {
	max-width: 780px;
	padding: 48px;
	text-align: center;
	border: 1px solid rgba(255, 183, 3, 0.35);
	border-radius: 34px;
	background: rgba(255, 255, 255, 0.13);
	color: #ffffff;
	box-shadow: 0 28px 80px rgba(0, 0, 0, 0.42);
	position: relative;
	z-index: 2;
}

.eyebrow {
	margin: 0 0 10px;
	color: #ffb703;
	font-size: 14px;
	font-weight: 800;
	letter-spacing: 1.4px;
	text-transform: uppercase;
}

.hero h1 {
	margin: 0;
	font-size: clamp(38px, 7vw, 76px);
	line-height: 1.05;
}

.hero h1 span {
	display: block;
	margin-bottom: 12px;
	color: #ffb703;
	text-shadow: 0 4px 20px rgba(255, 183, 3, 0.22);
	font-size: clamp(42px, 8vw, 86px);
}

.hero p {
	max-width: 660px;
	margin: 22px auto 0;
	font-size: 18px;
}

.hero-actions {
	display: flex;
	justify-content: center;
	gap: 14px;
	margin-top: 30px;
	flex-wrap: wrap;
}

.button {
	display: inline-block;
	padding: 13px 24px;
	border-radius: 999px;
	font-weight: 800;
	text-decoration: none;
}

.primary {
	background: linear-gradient(135deg, #ffb703, #fb8500);
	color: #101828;
	box-shadow: 0 12px 28px rgba(251, 133, 0, 0.28);
}

.secondary {
	border-color: #ffb703;
	color: #ffffff;
}

.section {
	max-width: 1180px;
	margin: 0 auto;
	padding: 82px 20px;
}

.section-heading {
	max-width: 760px;
	margin: 0 auto 38px;
	text-align: center;
}

.section-heading h2 {
	margin: 0;
	font-size: clamp(30px, 4vw, 46px);
	line-height: 1.15;
	color: #101828;
}

.section-heading p:last-child {
	color: #60705a;
	font-size: 18px;
}

.feature-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}

.feature-card {
	padding: 30px;
	border-radius: 28px;
	background: rgba(255, 255, 255, 0.92);
	border: 1px solid rgba(22, 48, 32, 0.08);
	box-shadow: 0 16px 38px rgba(16, 24, 40, 0.1);
}

.feature-card span {
	display: inline-block;
	margin-bottom: 18px;
	color: #fb8500;
	font-size: 34px;
	font-weight: 900;
}

.feature-card h3 {
	margin: 0 0 10px;
	font-size: 22px;
	color: #101828;
}

.feature-card p {
	margin: 0;
	color: #60705a;
}

.students-section {
	max-width: none;
	background: linear-gradient(135deg, #101828, #163020);
	color: #ffffff;
}

.students-section .section-heading h2 {
	color: #ffffff;
}

.students-section .section-heading p:last-child {
	color: #d9e2d1;
}

.students-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 22px;
	max-width: 1180px;
	margin: 0 auto;
}

.student-card {
	position: relative;
	overflow: hidden;
	min-height: 340px;
	padding: 0;
	border-radius: 28px;
	background: #101828;
	box-shadow: 0 18px 42px rgba(0, 0, 0, 0.28);
}

.student-card img {
	width: 100%;
	height: 340px;
	display: block;
	object-fit: cover;
	border: 4px solid #ffffff;
	border-radius: 28px;
}

.student-card h3,
.student-card p {
	position: absolute;
	left: 18px;
	right: 18px;
	z-index: 2;
	margin: 0;
}

.student-card h3 {
	bottom: 48px;
	color: #ffffff;
	font-size: 22px;
	font-weight: 900;
}

.student-card p {
	bottom: 20px;
	color: #ffb703;
	font-weight: 800;
}

.student-card::after {
	content: "";
	position: absolute;
	left: 4px;
	right: 4px;
	bottom: 4px;
	height: 45%;
	border-radius: 0 0 24px 24px;
	background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.82));
	pointer-events: none;
}

.programs-section {
	background: #f6f1e8;
}

.program-list {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 18px;
}

.program-list div {
	padding: 22px;
	border-radius: 18px;
	background: #ffffff;
	color: #172315;
	font-size: 18px;
	font-weight: 800;
	text-align: center;
	box-shadow: 0 10px 28px rgba(23, 35, 21, 0.09);
}

.gallery-section {
	max-width: none;
	background: #ebe2d4;
	background:
		linear-gradient(135deg, #f8ead2, #e7f0ec);
}

.gallery-section .section-heading,
.gallery {
	max-width: 1180px;
	margin-left: auto;
	margin-right: auto;
}

.gallery {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 22px;
}

.gallery img {
	width: 100%;
	height: 290px;
	object-fit: cover;
	border-radius: 28px;
	box-shadow: 0 18px 42px rgba(16, 24, 40, 0.18);
	border: 4px solid #ffffff;
}

.contact-section {
	display: grid;
	place-items: center;
}

.contact-card {
	width: min(100%, 760px);
	padding: 42px;
	text-align: center;
	border-radius: 34px;
	background: #ffffff;
	box-shadow: 0 18px 44px rgba(23, 35, 21, 0.13);
}

.contact-card h2 {
	margin: 0 0 18px;
	font-size: clamp(30px, 4vw, 44px);
}

.contact-card a {
	color: #2e5f2f;
	font-weight: 800;
}

.note {
	margin-top: 24px;
	color: #60705a;
	font-size: 14px;
}

.site-footer {
	padding: 24px 20px;
	text-align: center;
	background: linear-gradient(90deg, #101828, #163020);
}

.brand-full {
	width: auto;
	height: auto;
	gap: 12px;
	border-radius: 0;
	background: transparent;
	color: #ffffff;
}

.brand-full img {
	width: 54px;
	height: 54px;
	object-fit: contain;
	border-radius: 50%;
	background: #ffffff;
}

.brand-full span {
	display: grid;
	line-height: 1.1;
}

.brand-full strong {
	font-size: 22px;
	font-weight: 900;
	color: #ffffff;
}

.brand-full small {
	margin-top: 4px;
	color: #d4af37;
	font-size: 13px;
	font-weight: 800;
	letter-spacing: 1px;
}

.leader-photo {
	width: 100%;
	max-width: 300px;
	height: auto;
	border-radius: 50%;
	border: 4px solid #d4af37;
	box-shadow: 0 8px 24px rgba(16, 24, 40, 0.22);
}

.founder-section {
	background: linear-gradient(135deg, #fff8e7, #e8f1ec);
}

.founder-card {
	display: grid;
	grid-template-columns: 360px 1fr;
	gap: 38px;
	align-items: center;
	max-width: 1080px;
	margin: 0 auto;
	padding: 34px;
	border-radius: 34px;
	background: #ffffff;
	box-shadow: 0 18px 48px rgba(16, 24, 40, 0.14);
}

.founder-image img {
	width: 100%;
	height: 430px;
	object-fit: cover;
	border-radius: 28px;
	border: 5px solid #ffb703;
	box-shadow: 0 16px 36px rgba(16, 24, 40, 0.18);
}

.founder-content h2 {
	margin: 0 0 18px;
	color: #101828;
	font-size: clamp(34px, 5vw, 56px);
	line-height: 1.1;
}

.founder-content p {
	color: #60705a;
	font-size: 18px;
}

@media (max-width: 992px) {
	.nav-links {
		gap: 14px;
	}

	.feature-grid,
	.program-list,
	.gallery {
		grid-template-columns: repeat(2, 1fr);
	}

	.students-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 768px) {
	.menu-button {
		display: block;
		position: relative;
		z-index: 50;
	}

	.nav-links {
		display: none;
		position: absolute;
		top: 80px;
		left: 16px;
		right: 16px;
		z-index: 40;
		flex-direction: column;
		gap: 0;
		padding: 14px;
		border-radius: 18px;
		background: #172315;
		box-shadow: 0 18px 44px rgba(0, 0, 0, 0.25);
	}

	.nav-links.open {
		display: flex;
	}

	.nav-links a {
		display: block;
		padding: 12px;
	}

	.hero {
		min-height: 620px;
		padding: 60px 16px;
	}

	.hero-card {
		padding: 34px 22px;
		border-radius: 26px;
	}

	.section {
		padding: 64px 16px;
	}

	.feature-grid,
	.program-list,
	.gallery,
	.students-grid {
		grid-template-columns: 1fr;
	}

	.gallery img {
		height: 230px;
	}

	.founder-card {
		grid-template-columns: 1fr;
		padding: 22px;
	}

	.founder-image img {
		height: 340px;
	}

	.founder-content {
		text-align: center;
	}

	.contact-card {
		padding: 32px 20px;
	}
}