* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: Arial, sans-serif;
	line-height: 1.6;
	color: #333;
	background: #f9f9f9;
}

.container {
	width: 90%;
	max-width: 1200px;
	margin: auto;
}

.navbar {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 70px;
	display: flex;
	align-items: center;
	padding: 0 20px;
	background-color: #000;
	z-index: 100;
}

.navbar .logo {
	position: absolute;
	top: 10px;
	left: 5%;
	transform: translateX(-50%);
	width: 150px;
	height: 150px;
	border-radius: 50%;
	object-fit: cover;
	border: 4px solid #fff;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
	transition: width 0.5s ease, height 0.5s ease, top 0.5s ease, transform 0.5s ease;
	z-index: 10;
	transform-origin: top center;
}

.navbar .logo.shrink {
	width: 50px;
	height: 50px;
	top: 10px;
	transform: translateX(-50%);
}

.navbar .container {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.navbar-brand {
	color: #fff;
	font-size: 1.4rem;
	font-weight: bold;
	text-decoration: none;
}

.navbar-nav {
	list-style: none;
	display: flex;
	gap: 1.5rem;
}

.navbar-nav li a {
	color: #fff;
	text-decoration: none;
	font-size: 1rem;
	transition: color 0.3s ease;
}

.navbar-nav li a:hover {
	color: #ff9800;
}

.home {
	position: relative;
	height: 100vh;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	text-align: center;
}

.bg-slider {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: flex;
	transition: transform 1s ease-in-out;
}

.bg-slide {
	min-width: 100%;
	height: 100%;
	background-size: cover;
	background-position: center;
	flex-shrink: 0;
	opacity: 0;
	transition: opacity 1.5s ease-in-out;
	position: absolute;
	top: 0;
	left: 0;
}

.bg-slide.active {
	opacity: 1;
	z-index: 1;
}

.home::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.4);
	z-index: 2;
}

.home h1 {
	position: relative;
	z-index: 3;
	font-size: 3rem;
	margin: 0;
	padding: 0;
}

.button,
.button-form {
	display: inline-block;
	padding: 0.7rem 1.5rem;
	background: linear-gradient(45deg, #ff9800, #ffb74d);
	color: #fff;
	font-weight: bold;
	text-decoration: none;
	border-radius: 25px;
	border: none;
	cursor: pointer;
	transition: all 0.3s ease;
	text-align: center;
	font-size: 1rem;
	box-shadow: 0 4px 15px rgba(255, 152, 0, 0.5);
}

.button:hover,
.button-form:hover {
	background: linear-gradient(45deg, #ffb74d, #ff9800);
	transform: translateY(-3px) scale(1.05);
	box-shadow: 0 6px 20px rgba(255, 152, 0, 0.6);
}

#requestCallBtn {
	position: fixed;
	bottom: 20px;
	right: 20px;
	background-color: #007BFF;
	color: white;
	border: none;
	padding: 15px 20px;
	border-radius: 50px;
	cursor: pointer;
	font-size: 16px;
	z-index: 1001;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
	transition: transform 0.2s;
}

#requestCallBtn:hover {
	transform: scale(1.1);
}

section {
	padding: 80px 2rem;
	text-align: center;
	background: linear-gradient(180deg, #f9f9f9 0%, #fff 100%);
}

section:nth-of-type(even) {
	background: linear-gradient(180deg, #fff 0%, #f2f2f2 100%);
}

section h2.underline {
	position: relative;
	display: inline-block;
	margin-bottom: 20px;
}

section h2.underline::after {
	content: "";
	display: block;
	width: 60px;
	height: 3px;
	background: #ff9800;
	margin: 10px auto 0;
}

.card {
	background: #fff;
	padding: 20px;
	margin: 15px;
	border-radius: 12px;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.hover-up:hover {
	transform: translateY(-10px) scale(1.02);
	box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
	background: linear-gradient(145deg, #fff, #ffe6b3);
}

.trainers {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
	gap: 15px;
	justify-items: center;
	margin: 20px 0;
}

.trainers img {
	width: 100%;
	max-width: 200px;
	height: 200px;
	object-fit: cover;
	border-radius: 10px;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	cursor: pointer;
}

.trainers img:hover {
	transform: scale(1.08);
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.program-cards,
.trainer-cards,
.testimonial-cards {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}

.program-cards .card,
.trainer-cards .card,
.testimonial-cards .card {
	flex: 1 1 calc(33% - 40px);
	min-width: 250px;
}

.contact p {
	margin-bottom: 1rem;
}

.social-links {
	margin: 1.5rem 0;
	display: flex;
	justify-content: center;
	gap: 1.5rem;
}

.social-links i {
	font-size: 2rem;
	transition: transform 0.3s, color 0.3s;
}

.social-links a:hover i.fa-instagram {
	color: #e4405f;
	transform: scale(1.2);
}

.social-links a:hover i.fa-envelope {
	color: #0072c6;
	transform: scale(1.2);
}

.social-links a:hover i.fa-youtube-play {
	color: #ff0000;
	transform: scale(1.2);
}

.contact-form {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	text-align: left;
	max-width: 700px;
	margin: 2rem auto;
}

.contact-form label {
	font-weight: 600;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
	width: 100%;
	padding: 0.7rem;
	border: 1px solid #ccc;
	border-radius: 8px;
	font-size: 1rem;
}

.contact-form textarea {
	resize: vertical;
}

.footer {
	background: #222;
	color: #fff;
	text-align: center;
	padding: 20px;
}

.modal {
	display: none;
	position: fixed;
	z-index: 2000;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	overflow: auto;
	background-color: rgba(0, 0, 0, 0.6);
}

.modal-content {
	background-color: #fefefe;
	margin: 10% auto;
	padding: 20px;
	border-radius: 10px;
	width: 90%;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
	position: fixed;
	display: block;
	max-height: 80vh;
	overflow-y: auto;
	max-width: 800px;
	transform: scale(0.9);
}

.center-class {
	display: flex;
	justify-content: center;
	width: 100%;
}

.tiny-modal {
	display: none;
	position: fixed;
	z-index: 999;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	overflow: auto;
	background-color: rgba(0, 0, 0, 0.5);
}

.tiny-modal-content {
	position: fixed;
	bottom: 20px;
	right: 20px;
	width: 400px;
	max-width: 90%;
	background-color: #fefefe;
	padding: 20px;
	border-radius: 12px;
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
	z-index: 2001;
	display: block;
	overflow-y: auto;
	transform: scale(0.9);
	max-height: 80vh;
}

.close {
	position: absolute;
	top: 12px;
	right: 15px;
	font-size: 26px;
	font-weight: bold;
	cursor: pointer;
	color: #333;
}

.close:hover {
	color: #ff9800;
}

.fade-in {
	animation: fadeIn 0.5s ease-in-out;
}

.slide-down {
	animation: slideDown 1s ease-out;
}

.pulse {
	animation: pulse 2s infinite;
}

@keyframes fadeIn {
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}

@keyframes slideDown {
	from {
		transform: translateY(-50px);
		opacity: 0;
	}

	to {
		transform: translateY(0);
		opacity: 1;
	}
}

@keyframes pulse {
	0% {
		transform: scale(1);
	}

	50% {
		transform: scale(1.05);
	}

	100% {
		transform: scale(1);
	}
}

.awards-row {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	justify-content: center;
}

.award-column {
	flex: 1 1 45%;
	text-align: center;
}

.junior-award-slider,
.senior-award-slider {
	position: relative;
	width: 100%;
	height: 250px;
	overflow: hidden;
	border-radius: 12px;
}

.junior-award-slide,
.senior-award-slide {
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: center;
	border-radius: 12px;
}

@media (max-width: 768px) {
	.navbar {
		height: auto;
		padding: 10px 0;
		flex-direction: column;
		align-items: center;
	}

	.navbar .logo {
		position: relative;
		top: 0;
		left: 50%;
		transform: translateX(-50%);
		width: 90px;
		height: 90px;
		margin-bottom: 10px;
		z-index: 5;
	}

	.navbar-nav {
		flex-wrap: wrap;
		justify-content: center;
		gap: 1rem;
		padding: 10px 0;
	}

	.home {
		height: 60vh;
		padding: 0 10px;
	}

	.home h1 {
		margin-top: 100px;
		font-size: 1.8rem;
		padding: 0 10px;
		line-height: 1.3;
	}

	.program-cards .card,
	.trainer-cards .card,
	.testimonial-cards .card {
		flex: 1 1 100%;
		min-width: auto;
	}

	.award-column {
		flex: 1 1 100%;
	}

	.junior-award-slider,
	.senior-award-slider {
		height: 350px;
		width: 350px;
	}

	.bg-slider {
		height: 60vh;
	}

	.bg-slide {
		background-size: cover;
		background-position: center center;
	}
}

.center-text {
	text-align: center;
}

.highlight-text {
	background: linear-gradient(90deg, #ff9800, #ff5722);
	color: #fff;
	padding: 1rem 1.2rem;
	border-radius: 12px;
	font-size: 1rem;
	font-weight: 500;
	line-height: 1.6;
	text-align: center;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.highlight-text:hover {
	transform: translateY(-3px);
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.lightbox {
	display: none;
	position: fixed;
	z-index: 10000;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.85);
	justify-content: center;
	align-items: center;
	flex-direction: column;
}

.lightbox-img-container {
	max-width: 90%;
	max-height: 80%;
	display: flex;
	justify-content: center;
	align-items: center;
}

.lightbox-img {
	max-width: 100%;
	max-height: 100%;
	border-radius: 8px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.lightbox .close {
	position: absolute;
	top: 20px;
	right: 40px;
	color: #fff;
	font-size: 40px;
}

/* gallery.html styles */
.awards-gallery {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
	gap: 15px;
	justify-items: center;
	margin: 20px 0;
}

.awards-gallery img {
	width: 100%;
	max-width: 200px;
	height: 200px;
	object-fit: cover;
	border-radius: 10px;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	cursor: pointer;
}

.awards-gallery img:hover {
	transform: scale(1.08);
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.all-images-gallery {
	column-count: 4;
	column-gap: 10px;
	margin-top: 20px;
}

.all-images-gallery img {
	width: 100%;
	height: auto;
	display: block;
	margin-bottom: 10px;
	border-radius: 8px;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	cursor: pointer;
}

.lightbox {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.9);
	justify-content: center;
	align-items: center;
	z-index: 1000;
}

.lightbox .lightbox-img-container {
	max-width: 90%;
	max-height: 90%;
}

.lightbox .lightbox-img {
	width: 100%;
	height: auto;
}

.lightbox .close {
	position: absolute;
	top: 20px;
	right: 30px;
	font-size: 40px;
	color: white;
	cursor: pointer;
	z-index: 1100;
}

.lightbox .nav-btn {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	font-size: 60px;
	color: white;
	cursor: pointer;
	padding: 10px;
	user-select: none;
	z-index: 1100;
}

.lightbox .prev-btn {
	left: 20px;
}

.lightbox .next-btn {
	right: 20px;
}
