

:root {
	--primary-color: #FF9F1C;
	--secondary-color: #2EC4B6;
	--accent-color: #FF3366;
	--light-color: #FDFFFC;
	--dark-color: #011627;
}

body {
	font-family: 'Nunito', sans-serif;
	color: var(--dark-color);
}

h1, h2, h3, h4, h5, .navbar-brand {
	font-family: 'Fredoka One', cursive;
}

.hero-section {
	background: linear-gradient(rgba(1, 22, 39, 0.7), rgba(1, 22, 39, 0.7)), 
				url('images/home-banner.jpg') center/cover;
	height: 80vh;
	position: relative;
}

.navbar {
	background-color: var(--light-color) !important;
	box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.navbar-brand {
	color: var(--primary-color) !important;
	font-size: 1.8rem;
}

.nav-link {
	color: var(--dark-color) !important;
	font-weight: 600;
	margin: 0 10px;
}

.nav-link:hover {
	color: var(--accent-color) !important;
}

.btn-primary {
	background-color: var(--primary-color);
	border-color: var(--primary-color);
}

.btn-primary:hover {
	background-color: #e68a19;
	border-color: #e68a19;
}

.btn-secondary {
	background-color: var(--secondary-color);
	border-color: var(--secondary-color);
}

.feature-icon {
	font-size: 2.5rem;
	color: var(--primary-color);
	margin-bottom: 15px;
}

.program-card {
	border-radius: 20px;
	transition: all 0.3s ease;
	border: none;
	overflow: hidden;
}

.program-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.program-card .card-body {
	padding: 30px;
}

.testimonial-carousel {
	background-color: var(--light-color);
	border-radius: 20px;
	padding: 30px;
	box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.testimonial-img {
	width: 80px;
	height: 80px;
	object-fit: cover;
	border: 3px solid var(--primary-color);
}

.carousel-indicators button {
	background-color: var(--primary-color);
	width: 12px;
	height: 12px;
	border-radius: 50%;
	margin: 0 5px;
}

footer {
	background-color: var(--dark-color);
	color: var(--light-color);
}

.footer-links a {
	color: var(--light-color);
	text-decoration: none;
	display: block;
	margin-bottom: 8px;
}

.footer-links a:hover {
	color: var(--primary-color);
}

.social-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	background-color: rgba(255,255,255,0.1);
	border-radius: 50%;
	margin-right: 10px;
	transition: all 0.3s ease;
}

.social-icon:hover {
	background-color: var(--primary-color);
	transform: translateY(-3px);
}

.contact-form {
	background-color: white;
	border-radius: 20px;
	padding: 30px;
	box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.form-control, .form-select {
	padding: 12px 15px;
	border-radius: 10px;
	border: 1px solid #eee;
}

.section-title {
	position: relative;
	display: inline-block;
	margin-bottom: 30px;
}

.section-title:after {
	content: '';
	position: absolute;
	width: 50%;
	height: 4px;
	background: var(--primary-color);
	bottom: -10px;
	left: 0;
	border-radius: 2px;
}

.highlight-bg {
	background-color: rgba(46, 196, 182, 0.1);
	border-radius: 20px;
	padding: 30px;
}

 .gallery-item {
	position: relative;
	overflow: hidden;
	border-radius: 15px;
	margin-bottom: 20px;
	height: 250px;
}

.gallery-item img {
	transition: transform 0.5s;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.gallery-item:hover img {
	transform: scale(1.1);
}

.gallery-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(42, 92, 170, 0.7);
	color: white;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	opacity: 0;
	transition: opacity 0.3s;
}

.gallery-item:hover .gallery-overlay {
	opacity: 1;
}