/* Custom CSS - No imports */
:root {
	--text: #333;
	--white: #ffffff;
	--gradient-primary: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
	--gradient-secondary: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
}
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
html {
	scroll-behavior: smooth;
}
section {
	scroll-margin-top: 80px; /* Navbar height ke according adjust karein */
}      
body {
	color: var(--text);
	background-color: var(--light);
	overflow-x: hidden;
}
.container {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}
.section {
	padding: 80px 0;
}
.section-title {
	text-align: center;
	margin-bottom: 50px;
	position: relative;
}
.section-title h2 {
	font-size: 2.5rem;
	color: var(--primary);
	margin-bottom: 30px;
	position: relative;
	display: inline-block;
	font-family: "Roboto Condensed", sans-serif;
	letter-spacing: 1px;
}
.section-title h2::after {
	content: '';
	position: absolute;
	width: 70%;
	height: 3px;
	background-color: var(--secondary);
	bottom: -10px;
	left: 15%;
	transform: scaleX(0);
	animation: titleUnderline 1.5s forwards;
}
@keyframes titleUnderline {
	to { transform: scaleX(1); }
}
.section-title p {
	color: var(--text);
	font-size: 1.1rem;
	max-width: 700px;
	margin: 0 auto;
	font-family: "Roboto Condensed", sans-serif;
	letter-spacing: 1px;
	line-height: 30px;
}
/* Hero Section with Slider */
.hero {
	height: 140vh;
	position: relative;
	overflow: hidden;
	margin-top: 0;
}
.slider-container {
	width: 100%;
	height: 100%;
	position: relative;
}
.slide {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	transition: opacity 1s ease;
	background-size: cover;
	background-position: center;
	display: flex;
	align-items: center;
}
.slide.active {
	opacity: 1;
}
.slide-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
}
.slide-content {
	position: relative;
	z-index: 2;
	color: var(--white);
	max-width: 600px;
	margin-left: 50px;
	animation: slideInLeft 1s ease forwards;
	opacity: 0;
}
@keyframes slideInLeft {
	from {
		transform: translateX(-50px);
		opacity: 0;
	}
	to {
		transform: translateX(0);
		opacity: 1;
	}
}
.slide-content h2 {
	font-size: 3rem;
	margin-bottom: 20px;
	font-family: "Roboto Condensed", sans-serif;
	letter-spacing: 1px;
}
.slide-content p {
	font-size: 1.2rem;
	margin-bottom: 30px;
	font-family: "Roboto Condensed", sans-serif;
	letter-spacing: 1px;
	line-height: 30px;
}
.btn {
	display: inline-block;
	padding: 12px 30px;
	background-color: var(--secondary);
	color: var(--white);
	text-decoration: none;
	border-radius: 5px;
	font-weight: 500;
	transition: all 0.3s ease;
	border: none;
	cursor: pointer;
	font-family: "Roboto Condensed", sans-serif;
	letter-spacing: 1px;
}
.btn:hover {
	background-color: #c0392b;
	transform: translateY(-3px);
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.slider-nav {
	position: absolute;
	bottom: 30px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	z-index: 10;
}
.slider-dot {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background-color: rgba(255, 255, 255, 0.5);
	margin: 0 5px;
	cursor: pointer;
	transition: all 0.3s ease;
}
.slider-dot.active {
	background-color: var(--white);
	transform: scale(1.2);
}
/* Contact Form in Hero */
.contact-form-container {
	position: absolute;
	top: 50%;
	right: 50px;
	transform: translateY(-50%);
	background-color: rgba(255, 255, 255, 0.95);
	padding: 30px;
	border-radius: 10px;
	width: 350px;
	z-index: 10;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
	animation: fadeIn 1s ease forwards;
}
@keyframes fadeIn {
	from { opacity: 0; }
	to { opacity: 1; }
}
.contact-form-container h3 {
	color: var(--primary);
	margin-bottom: 20px;
	text-align: center;
	font-size: 1.5rem;
	font-family: "Roboto Condensed", sans-serif;
	letter-spacing: 1px;
}
.form-group {
	margin-bottom: 15px;
}
.form-group label {
	display: block;
	margin-bottom: 10px;
	color: var(--dark);
	font-weight: 500;
	font-family: "Roboto Condensed", sans-serif;
	letter-spacing: 1px;
}
.form-control {
	width: 100%;
	padding: 10px 15px;
	border: 1px solid #ddd;
	border-radius: 5px;
	font-size: 1rem;
	transition: all 0.3s ease;
	font-family: "Roboto Condensed", sans-serif;
	letter-spacing: 1px;
}
.form-control:focus {
	border-color: var(--accent);
	outline: none;
	box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.2);
}
/* About Section */
.about {
	background-color: var(--white);
}
.about-content {
	display: flex;
	align-items: center;
	gap: 50px;
}
.about-img {
	flex: 1;
	position: relative;
	height: 400px;
}
.about-img-main {
	width: 80%;
	height: 80%;
	object-fit: cover;
	border-radius: 10px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
	position: relative;
	z-index: 2;
}
.about-img::before {
	content: '';
	position: absolute;
	width: 80%;
	height: 80%;
	border: 5px solid var(--secondary);
	border-radius: 10px;
	top: 30px;
	left: 30px;
	z-index: 1;
}
.about-text {
	flex: 1;
}
.about-text h3 {
	font-size: 2rem;
	color: var(--primary);
	margin-bottom: 20px;
	font-family: "Roboto Condensed", sans-serif;
	letter-spacing: 1px;
}
.about-text p {
	margin-bottom: 20px;
	line-height: 1.7;
	font-family: "Roboto Condensed", sans-serif;
	letter-spacing: 1px;
}
.about-features {
	display: flex;
	flex-wrap: wrap;
	margin-top: 30px;
}
.feature-item {
	flex: 0 0 50%;
	margin-bottom: 20px;
	display: flex;
	align-items: center;
	font-family: "Roboto Condensed", sans-serif;
	letter-spacing: 1px;
}
.feature-icon {
	width: 40px;
	height: 40px;
	background-color: rgba(231, 76, 60, 0.1);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 15px;
	color: var(--secondary);
	font-size: 1.2rem;
}
/* Call to Action */
.cta {
	background: #d43338;
	color: var(--white);
	text-align: center;
	padding: 60px 0;
}
.cta h2 {
	font-size: 2.5rem;
	margin-bottom: 20px;
	font-family: "Roboto Condensed", sans-serif;
	letter-spacing: 1px;
}
.cta p {
	font-size: 1.2rem;
	max-width: 700px;
	margin: 0 auto 30px;
	font-family: "Roboto Condensed", sans-serif;
	letter-spacing: 1px;
}
.cta .btn {
	background-color: var(--white);
	color: var(--primary);
	font-size: 1.1rem;
	padding: 15px 40px;
}
.cta .btn:hover {
	background-color: var(--light);
}
/* Courses Section */
.courses {
	background-color: var(--light);
}
.courses-container {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
	justify-content: center;
}
.course-card {
	background-color: var(--white);
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
	transition: all 0.3s ease;
	flex: 0 0 calc(33.333% - 20px);
	max-width: calc(33.333% - 20px);
	transform: translateY(50px);
	opacity: 0;
	animation: fadeInUp 0.5s forwards;
}
@keyframes fadeInUp {
	to {
		opacity: 1;
		transform: translateY(0);
	}
}
.course-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}
.course-img {
	height: auto;
	overflow: hidden;
}
.course-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}
.course-card:hover .course-img img {
	transform: scale(1.1);
}
.course-content {
	padding: 25px;
}
.course-content h3 {
	font-size: 1.5rem;
	margin-bottom: 15px;
	color: var(--primary);
	font-family: "Roboto Condensed", sans-serif;
	letter-spacing: 1px;
}
.course-content p {
	margin-bottom: 20px;
	color: #666;
	line-height: 1.6;
	font-family: "Roboto Condensed", sans-serif;
	letter-spacing: 1px;
}
.course-meta {
	display: flex;
	justify-content: space-between;
	padding-top: 15px;
	border-top: 1px solid #eee;
}
.meta-item {
	display: flex;
	align-items: center;
	color: #777;
	font-size: 0.9rem;
	font-family: "Roboto Condensed", sans-serif;
	letter-spacing: 1px;
}
.meta-item i {
	margin-right: 5px;
	color: var(--secondary);
}
/* Gallery Section */
.gallery {
	background-color: var(--white);
}
.gallery-container {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
	gap: 20px;
}
.gallery-item {
	position: relative;
	overflow: hidden;
	border-radius: 10px;
	height: 250px;
	cursor: pointer;
	transform: scale(0.95);
	transition: all 0.3s ease;
}
.gallery-item:hover {
	transform: scale(1);
}
.gallery-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}
.gallery-item:hover img {
	transform: scale(1.1);
}
.gallery-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(44, 62, 80, 0.7);
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transition: opacity 0.3s ease;
}
.gallery-item:hover .gallery-overlay {
	opacity: 1;
}
.gallery-overlay i {
	color: var(--white);
	font-size: 2rem;
}
.gallery-popup {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.9);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 1100;
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease;
}
.gallery-popup.active {
	opacity: 1;
	visibility: visible;
}
.popup-img {
	max-width: 80%;
	max-height: 80%;
	object-fit: contain;
	border: 5px solid var(--white);
	box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}
.popup-prev,
.popup-next {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	font-size: 40px;
	color: white;
	background: none;
	border: none;
	cursor: pointer;
	z-index: 10001;
}
.popup-prev { left: 20px; }
.popup-next { right: 20px; }
.close-popup {
	position: absolute;
	top: 20px;
	right: 20px;
	color: var(--white);
	font-size: 2rem;
	cursor: pointer;
	transition: all 0.3s ease;
}
.close-popup:hover {
	color: var(--secondary);
	transform: rotate(90deg);
}
/* Facilities Section */
.facilities {
	background-color: var(--light);
}
.facilities-container {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
	justify-content: center;
}
.facility-card {
	background-color: var(--white);
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
	transition: all 0.3s ease;
	flex: 0 0 calc(25% - 22.5px);
	max-width: calc(25% - 22.5px);
	text-align: center;
	padding: 30px 20px;
}
.facility-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}
.facility-icon {
	width: 70px;
	height: 70px;
	background-color: rgba(52, 152, 219, 0.1);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 20px;
	color: var(--accent);
	font-size: 1.8rem;
	transition: all 0.3s ease;
}
.facility-card:hover .facility-icon {
	background-color: var(--accent);
	color: var(--white);
	transform: rotateY(180deg);
}
.facility-card h3 {
	font-size: 1.3rem;
	margin-bottom: 15px;
	color: var(--primary);
	font-family: "Roboto Condensed", sans-serif;
	letter-spacing: 1px;
}
.facility-card p {
	color: #666;
	line-height: 1.6;
	font-family: "Roboto Condensed", sans-serif;
	letter-spacing: 1px;
}
/* Testimonials */
.testimonials {
	background-color: var(--white);
	position: relative;
	overflow: hidden;
}
.testimonials::before {
	content: '';
	position: absolute;
	width: 300px;
	height: 300px;
	background-color: rgba(231, 76, 60, 0.05);
	border-radius: 50%;
	top: -150px;
	left: -150px;
}
.testimonials::after {
	content: '';
	position: absolute;
	width: 300px;
	height: 300px;
	background-color: rgba(52, 152, 219, 0.05);
	border-radius: 50%;
	bottom: -150px;
	right: -150px;
}
.testimonials-container {
	position: relative;
	max-width: 800px;
	margin: 0 auto;
}
.testimonial-slide {
	display: none;
	text-align: center;
	padding: 0 20px;
}
.testimonial-slide.active {
	display: block;
	animation: fadeIn 0.5s ease forwards;
}
.testimonial-img {
	width: 100px;
	height: 100px;
	border-radius: 50%;
	margin: 0 auto 20px;
	overflow: hidden;
	border: 5px solid var(--light);
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.testimonial-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.testimonial-content {
	position: relative;
	padding: 30px;
	background-color: var(--light);
	border-radius: 10px;
	margin-bottom: 30px;
}
.testimonial-content::after {
	content: '';
	position: absolute;
	width: 20px;
	height: 20px;
	background-color: var(--light);
	top: -10px;
	left: 50%;
	transform: translateX(-50%) rotate(45deg);
}
.testimonial-content p {
	font-style: italic;
	line-height: 1.7;
	color: #555;
	font-family: "Roboto Condensed", sans-serif;
	letter-spacing: 1px;
}
.testimonial-content p::before,
.testimonial-content p::after {
	content: '"';
	color: var(--secondary);
	font-size: 1.5rem;
	font-weight: bold;
}
.testimonial-author h4 {
	font-size: 1.2rem;
	color: var(--primary);
	margin-bottom: 5px;
	font-family: "Roboto Condensed", sans-serif;
	letter-spacing: 1px;
}
.testimonial-author p {
	color: #777;
	font-family: "Roboto Condensed", sans-serif;
	letter-spacing: 1px;
}
.testimonial-nav {
	display: flex;
	justify-content: center;
	margin-top: 30px;
}
.testimonial-dot {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background-color: #ddd;
	margin: 0 5px;
	cursor: pointer;
	transition: all 0.3s ease;
}
.testimonial-dot.active {
	background-color: var(--secondary);
	transform: scale(1.2);
}
/* Counter Section */
.counter {
	background: linear-gradient(rgba(44, 62, 80, 0.9), rgba(44, 62, 80, 0.9)), url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect width="100" height="100" fill="%232c3e50"/><path d="M0 0L100 100M100 0L0 100" stroke="%23ffffff" stroke-width="1" stroke-opacity="0.1"/></svg>');
	background-size: cover;
	background-attachment: fixed;
	color: var(--white);
	padding: 80px 0;
}
.counter-container {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around;
}
.counter-item {
	text-align: center;
	flex: 0 0 calc(25% - 30px);
	max-width: calc(25% - 30px);
	padding: 20px;
}
.counter-icon {
	font-size: 2.5rem;
	color: var(--secondary);
	margin-bottom: 20px;
}
.counter-number {
	font-size: 3rem;
	font-weight: 700;
	margin-bottom: 10px;
	line-height: 1;
	font-family: "Roboto Condensed", sans-serif;
	letter-spacing: 1px;
}
.counter-text {
	font-size: 1.1rem;
	text-transform: uppercase;
	letter-spacing: 1px;
	font-family: "Roboto Condensed", sans-serif;
	letter-spacing: 1px;
}
/* Enhanced Contact Section */
.contact {
	background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
	position: relative;
	overflow: hidden;
}
.contact::before {
	content: '';
	position: absolute;
	width: 400px;
	height: 400px;
	background: radial-gradient(circle, rgba(231, 76, 60, 0.1) 0%, rgba(231, 76, 60, 0) 70%);
	border-radius: 50%;
	top: -200px;
	left: -200px;
}
.contact::after {
	content: '';
	position: absolute;
	width: 400px;
	height: 400px;
	background: radial-gradient(circle, rgba(52, 152, 219, 0.1) 0%, rgba(52, 152, 219, 0) 70%);
	border-radius: 50%;
	bottom: -200px;
	right: -200px;
}
.contact-container {
	display: flex;
	gap: 50px;
	position: relative;
	z-index: 1;
}
.contact-info {
	flex: 1;
	background-color: var(--white);
	border-radius: 15px;
	padding: 40px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
	position: relative;
	overflow: hidden;
	transform: translateY(20px);
	opacity: 0;
	animation: fadeInUp 0.5s 0.2s forwards;
}
.contact-info::before {
	content: '';
	position: absolute;
	width: 150px;
	height: 150px;
	background-color: rgba(231, 76, 60, 0.05);
	border-radius: 50%;
	top: -75px;
	left: -75px;
}
.contact-info h3 {
	font-size: 2rem;
	color: var(--primary);
	margin-bottom: 30px;
	position: relative;
	display: inline-block;
	font-family: "Roboto Condensed", sans-serif;
	letter-spacing: 1px;
}
.contact-info h3::after {
	content: '';
	position: absolute;
	width: 50px;
	height: 3px;
	background-color: var(--secondary);
	bottom: -10px;
	left: 0;
}
.contact-item {
	display: flex;
	margin-bottom: 30px;
	transition: all 0.3s ease;
	padding: 15px;
	border-radius: 10px;
}
.contact-item:hover {
	background-color: rgba(236, 240, 241, 0.5);
	transform: translateX(10px);
}
.contact-icon {
	width: 60px;
	height: 60px;
	background: var(--gradient-primary);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--white);
	font-size: 1.5rem;
	margin-right: 20px;
	flex-shrink: 0;
	box-shadow: 0 5px 15px rgba(231, 76, 60, 0.3);
	transition: all 0.3s ease;
}
.contact-item:hover .contact-icon {
	transform: rotateY(180deg);
}
.contact-text h4 {
	font-size: 1.3rem;
	color: var(--primary);
	margin-bottom: 8px;
	font-family: "Roboto Condensed", sans-serif;
	letter-spacing: 1px;
}
.contact-text p, .contact-text a {
	color: #666;
	text-decoration: none;
	transition: color 0.3s ease;
	font-size: 1.1rem;
	line-height: 1.6;
	font-family: "Roboto Condensed", sans-serif;
	letter-spacing: 1px;
}
.contact-text a:hover {
	color: var(--secondary);
}
.contact-form {
	flex: 1;
	background-color: var(--white);
	padding: 40px;
	border-radius: 15px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
	position: relative;
	overflow: hidden;
	transform: translateY(20px);
	opacity: 0;
	animation: fadeInUp 0.5s 0.4s forwards;
}
.contact-form::before {
	content: '';
	position: absolute;
	width: 150px;
	height: 150px;
	background-color: rgba(52, 152, 219, 0.05);
	border-radius: 50%;
	bottom: -75px;
	right: -75px;
}
.contact-form h3 {
	font-size: 2rem;
	color: var(--primary);
	margin-bottom: 30px;
	text-align: center;
	position: relative;
	display: inline-block;
	left: 50%;
	transform: translateX(-50%);
	font-family: "Roboto Condensed", sans-serif;
	letter-spacing: 1px;
}
.contact-form h3::after {
	content: '';
	position: absolute;
	width: 50px;
	height: 3px;
	background-color: var(--accent);
	bottom: -10px;
	left: 50%;
	transform: translateX(-50%);
}
.contact-form .form-group {
	margin-bottom: 25px;
	position: relative;
}
.contact-form .form-control {
	padding: 15px;
	border: 2px solid #eee;
	border-radius: 10px;
	font-size: 1rem;
	transition: all 0.3s ease;
	background-color: #f9f9f9;
}
.contact-form .form-control:focus {
	border-color: var(--accent);
	background-color: var(--white);
	box-shadow: 0 5px 15px rgba(52, 152, 219, 0.1);
}
.contact-form textarea.form-control {
	height: 150px;
	resize: none;
}
.contact-form .btn {
	width: 100%;
	padding: 15px;
	font-size: 1.1rem;
	background: #363435;
	border-radius: 10px;
	transition: all 0.3s ease;
}
.contact-form .btn:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 20px rgba(52, 152, 219, 0.2);
}
.contact-map {
	margin-top: 50px;
	border-radius: 15px;
	overflow: hidden;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
	height: 400px;
	position: relative;
	transform: translateY(20px);
	opacity: 0;
	animation: fadeInUp 0.5s 0.6s forwards;
}
.map-container {
	width: 100%;
	height: 100%;
	background-color: #eee;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
}	
.map-container iframe{
	width: 100%;
	height: 100%;
}	
/* Enhanced Footer */
.custom-footer {
	color: #fff;
	text-align: center;
	padding: 40px 20px;
	background-color: #353334;
	background-origin: padding-box;
	background-repeat: no-repeat;
	background-size: cover;
	padding: 50px 0;
}
.footer-logo {
	font-size: 30px;
	font-weight: 500;
	margin-bottom: 20px;
	color: #fff;
	font-family: "Roboto Condensed", sans-serif;
	letter-spacing: 1px;
}
.footer-nav {
	margin-bottom: 20px;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 10px;
}
.footer-nav a {
	color: #ffffff;
	text-decoration: none;
	font-size: 16px;
	padding: 6px 12px;
	transition: color 0.3s ease;
	font-family: "Roboto Condensed", sans-serif;
	letter-spacing: 2px;
}
.footer-nav a:hover {
	color: #fff;
}
.footer-socials {
	margin-bottom: 20px;
}
.social-icon {
	display: inline-block;
	margin: 0 8px;
	width: 40px;
	height: 40px;
	line-height: 40px;
	border: 1px solid #ffffff;
	border-radius: 50%;
	color: #ffffff;
	font-size: 18px;
	transition: background 0.3s ease, color 0.3s ease;
}
.social-icon:hover {
	background-color: #ca9739;
	color: #111;
}
.footer-credit {
	font-size: 20px;
	color: #ffffff;
	margin-top: 10px;
	padding: 0 10px;
	font-family: "Roboto Condensed", sans-serif;
	letter-spacing: 1px;
	margin-bottom: 0px;
}
.footer-credit i {
	color: #555;
	margin: 0 5px;
}
.footer-credit a {
	color: #a5ff89;
	text-decoration: none;
}
.footer-credit a:hover {
	text-decoration: underline;
}
/* Floating Contact Buttons CSS */
.contact-buttons {
	position: fixed;
	bottom: 20px;
	left: 20px;
	display: flex;
	flex-direction: column;
	gap: 10px;
	z-index: 1000;
}
.contact-buttons a {
	color: white;
	font-size: 15px;
	padding: 10px 10px;
	border-radius: 50px;
	box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
	text-align: center;
	transition: all 0.3s;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 500;
	width: 125px;
	text-decoration: none;
	transition: transform 0.3s ease;
	font-family: "Roboto Condensed", sans-serif;
	letter-spacing: 1px;
}
.contact-buttons a.call-button {
	background-color: #d43338;
}
.contact-buttons a.whatsapp-button {
	background-color: #25D366;
}
.contact-buttons a i {
	margin-right: 10px;
}
.contact-buttons a:hover {
	transform: scale(0.95);
}
.page-scroll-buttons {
	position: fixed;
	right: 10px;
	bottom: 60px;
	z-index: 9999;
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 5px;
}
.page-scroll-buttons button {
	width: 35px;
	height: 35px;
	background-color: #d43338;
	color: white;
	border: none;
	border-radius: 50%;
	font-size: 14px;
	cursor: pointer;
	opacity: 1;
	transition: background-color 0.3s ease, transform 0.2s ease;
	box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}
.page-scroll-buttons button:hover {
	background-color: #353334;
	transform: scale(1.1);
}
/* Responsive Styles */
@media (max-width: 1024px) {
	.facility-card {
		flex: 0 0 calc(33.333% - 20px);
		max-width: calc(33.333% - 20px);
	}
	.counter-item {
		flex: 0 0 calc(50% - 30px);
		max-width: calc(50% - 30px);
		margin-bottom: 30px;
	}
	.contact-container {
		flex-direction: column;
	}
}
@media (max-width: 768px) {
	.section {
		padding: 60px 0;
	}        
	.section-title h2 {
		font-size: 2rem;
	}
	.slide-content {
		margin-left: 20px;
		max-width: 80%;
	}
	.slide-content h2 {
		font-size: 2rem;
	}        
	.contact-form-container {
		position: relative;
		top: auto;
		right: auto;
		transform: none;
		width: 90%;
		margin: 30px auto 0;
	}        
	.about-content {
		flex-direction: column;
		gap: 30px;
	}        
	.about-img {
		height: 300px;
	}        
	.course-card {
		flex: 0 0 calc(50% - 15px);
		max-width: calc(50% - 15px);
	}        
	.facility-card {
		flex: 0 0 calc(50% - 15px);
		max-width: calc(50% - 15px);
	}        
	.contact-buttons {
		width: 100%;
		margin: 0;
		padding: 0;
		position: fixed;
		left: 0;
		bottom: 0;
		z-index: 99;
		display: block;
	}
	.contact-buttons a {
		min-width: auto;
        padding: 10px 12px;
        font-size: 14px;
        float: left;
        width: 50%;
        overflow: hidden;
        text-align: center;
        border-radius: 0;
	}
}
@media (max-width: 576px) {
	.section-title h2 {
		font-size: 1.8rem;
	}        
	.slide-content {
		margin-left: 10px;
		max-width: 90%;
	}        
	.slide-content h2 {
		font-size: 1.5rem;
	}        
	.course-card, .facility-card {
		flex: 0 0 100%;
		max-width: 100%;
	}
	.counter-item {
		flex: 0 0 100%;
		max-width: 100%;
	}      
	.gallery-container {
		grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
	}
	.footer-nav {
		flex-direction: column;
		gap: 6px;
	}
	.footer-logo {
		font-size: 22px;
	}
	.social-icon {
		width: 36px;
		height: 36px;
		line-height: 36px;
		font-size: 16px;
		margin: 0 6px;
	}
	.footer-credit {
		font-size: 13px;
		line-height: 1.4;
	}
}
/* Animation Classes */
.animate-fade-in {
	animation: fadeIn 1s ease forwards;
}
.animate-fade-in-up {
	animation: fadeInUp 1s ease forwards;
}        
.animate-fade-in-left {
	animation: fadeInLeft 1s ease forwards;
}        
.animate-fade-in-right {
	animation: fadeInRight 1s ease forwards;
}        
@keyframes fadeInLeft {
	from {
		opacity: 0;
		transform: translateX(-50px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}        
@keyframes fadeInRight {
	from {
		opacity: 0;
		transform: translateX(50px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}