/**
 * Codingfork Theme - Main Stylesheet
 * Responsive design for coaching website
 */

/* ============================================
   Reset & Base Styles
   ============================================ */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

ul, ol {
	list-style: none;
}

body {
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
	font-size: 16px;
	line-height: 1.6;
	color: #333;
	background-color: #fff;
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

a {
	text-decoration: none;
	color: #0073aa;
	transition: color 0.3s ease;
}

a:hover {
	color: #005177;
}

/* ============================================
   Container & Layout
   ============================================ */
.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

.row {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
}

.content-column {
	flex: 1;
	min-width: 300px;
}

.sidebar-column {
	flex: 0 0 300px;
}

/* ============================================
   Header Styles
   ============================================ */
.site-header {
	background-color: #fff;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
	position: sticky;
	top: 0;
	z-index: 1000;
	transition: all 0.3s ease;
}

.site-header.scrolled {
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.header-wrapper {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 15px 0;
}

.site-branding {
	flex: 0 0 auto;
}

.site-title {
	font-size: 24px;
	font-weight: 700;
	margin: 0;
}

.site-title a {
	color: #333;
	text-decoration: none;
}

.site-title a:hover {
	color: #0073aa;
}

.site-description {
	font-size: 14px;
	color: #666;
	margin: 5px 0 0;
}

.custom-logo {
	max-height: 60px;
	width: auto;
}

/* ============================================
   Navigation Styles
   ============================================ */
.main-navigation {
	flex: 1;
	display: flex;
	justify-content: flex-end;
	position: relative;
}

.menu-toggle {
	display: none;
	background: none;
	border: none;
	cursor: pointer;
	padding: 10px;
	flex-direction: column;
	gap: 5px;
}

.menu-icon {
	display: flex;
	flex-direction: column;
	gap: 5px;
	width: 25px;
}

.menu-icon span {
	display: block;
	height: 3px;
	width: 100%;
	background-color: #333;
	transition: all 0.3s ease;
}

.primary-menu,
#primary-menu {
	display: flex;
	list-style: none !important;
	gap: 30px;
	align-items: center;
	margin: 0 !important;
	padding: 0 !important;
}

.primary-menu li,
#primary-menu li {
	position: relative;
	list-style: none !important;
	margin: 0 !important;
	padding: 0 !important;
}

.primary-menu li::before,
.primary-menu li::after,
#primary-menu li::before,
#primary-menu li::after {
	display: none !important;
	content: none !important;
}

.primary-menu a,
#primary-menu a {
	color: #333;
	font-weight: 500;
	padding: 10px 15px;
	display: block;
	text-decoration: none !important;
	transition: color 0.3s ease;
}

.primary-menu a:hover,
#primary-menu a:hover {
	color: #0073aa;
}

/* ============================================
   Hero Section
   ============================================ */
.hero-section {
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	color: #fff;
	padding: 150px 0;
	text-align: center;
	position: relative;
	min-height: 600px;
	display: flex;
	align-items: center;
}

.hero-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.5);
	z-index: 1;
}

.hero-section .container {
	position: relative;
	z-index: 2;
}

.hero-content {
	max-width: 800px;
	margin: 0 auto;
	position: relative;
	z-index: 2;
}

.hero-title {
	font-size: 48px;
	font-weight: 700;
	margin-bottom: 20px;
	line-height: 1.2;
	color: #fff;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
	font-size: 20px;
	margin-bottom: 40px;
	opacity: 0.95;
	color: #fff;
	text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.hero-buttons {
	display: flex;
	gap: 20px;
	justify-content: center;
	flex-wrap: wrap;
}

/* ============================================
   Buttons
   ============================================ */
.btn {
	display: inline-block;
	padding: 12px 30px;
	border-radius: 5px;
	font-weight: 600;
	text-align: center;
	transition: all 0.3s ease;
	border: 2px solid transparent;
	cursor: pointer;
}

.btn-primary {
	background-color: #0073aa;
	color: #fff;
	border-color: #0073aa;
}

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

.btn-secondary {
	background-color: transparent;
	color: #fff;
	border-color: #fff;
}

.btn-secondary:hover {
	background-color: #fff;
	color: #667eea;
}

.btn-outline {
	background-color: transparent;
	color: #0073aa;
	border-color: #0073aa;
}

.btn-outline:hover {
	background-color: #0073aa;
	color: #fff;
}

.btn-large {
	padding: 15px 40px;
	font-size: 18px;
}

/* ============================================
   Section Styles
   ============================================ */
section {
	padding: 80px 0;
}

.section-header {
	text-align: center;
	margin-bottom: 50px;
}

.section-title {
	font-size: 36px;
	font-weight: 700;
	margin-bottom: 15px;
	color: #333;
}

.section-description {
	font-size: 18px;
	color: #666;
	max-width: 600px;
	margin: 0 auto;
}

/* ============================================
   About Section
   ============================================ */
.about-section {
	background-color: #f9f9f9;
}

.about-content {
	max-width: 900px;
	margin: 0 auto;
}

.about-text {
	font-size: 18px;
	line-height: 1.8;
	color: #555;
}

/* ============================================
   Courses Section
   ============================================ */
.courses-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 30px;
}

.course-card {
	background: #fff;
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.course-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.course-image {
	overflow: hidden;
}

.course-image {
	width: 100%;
	height: 200px;
	overflow: hidden;
	background-color: #f0f0f0;
}

.course-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
}

.course-card:hover .course-image img {
	transform: scale(1.05);
}

.course-image-placeholder {
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

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

.placeholder-icon {
	font-size: 60px;
	display: block;
}

.course-content {
	padding: 25px;
}

.course-title {
	font-size: 22px;
	font-weight: 600;
	margin-bottom: 15px;
}

.course-title a {
	color: #333;
}

.course-title a:hover {
	color: #0073aa;
}

.course-excerpt {
	color: #666;
	margin-bottom: 20px;
	line-height: 1.6;
}

/* ============================================
   Why Choose Us Section
   ============================================ */
.why-choose-section {
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	padding: 80px 0;
}

.why-choose-section .section-header {
	margin-bottom: 50px;
}

.why-choose-section .section-title {
	color: #fff;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.why-choose-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 30px;
}

.why-choose-card {
	background: #fff;
	border-radius: 15px;
	overflow: hidden;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
	transition: all 0.3s ease;
	display: flex;
	flex-direction: column;
}

.why-choose-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.why-choose-image {
	width: 100%;
	height: 200px;
	overflow: hidden;
	background-color: #f0f0f0;
}

.why-choose-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
}

.why-choose-card:hover .why-choose-image img {
	transform: scale(1.1);
}

.why-choose-content {
	padding: 25px;
	text-align: center;
	flex: 1;
	display: flex;
	flex-direction: column;
}

.why-choose-title {
	font-size: 22px;
	font-weight: 700;
	margin-bottom: 15px;
	color: #333;
}

.why-choose-description {
	color: #666;
	line-height: 1.6;
	font-size: 15px;
	margin: 0;
	flex: 1;
}

/* ============================================
   Founder Section
   ============================================ */
.founder-section {
	background-color: #fff;
	padding: 80px 0;
}

.founder-wrapper {
	display: flex;
	align-items: center;
	gap: 50px;
	max-width: 1000px;
	margin: 0 auto;
}

.founder-image-wrapper {
	flex: 0 0 400px;
}

.founder-image {
	width: 400px;
	height: 400px;
	border-radius: 50%;
	overflow: hidden;
	box-shadow: 0 0 0 8px rgba(102, 126, 234, 0.4);
	position: relative;
	animation: imageBlink 2s ease-in-out infinite;
}

@keyframes imageBlink {
	0%, 100% {
		box-shadow: 0 0 0 8px rgba(102, 126, 234, 0.4),
		            0 0 30px rgba(102, 126, 234, 0.7),
		            0 0 60px rgba(102, 126, 234, 0.5),
		            0 0 90px rgba(102, 126, 234, 0.3);
	}
	50% {
		box-shadow: 0 0 0 12px rgba(102, 126, 234, 0.8),
		            0 0 50px rgba(102, 126, 234, 1),
		            0 0 100px rgba(102, 126, 234, 0.8),
		            0 0 150px rgba(102, 126, 234, 0.5);
	}
}

.founder-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.founder-content {
	flex: 1;
}

.founder-subtitle {
	font-size: 28px;
	font-weight: 700;
	color: #0073aa;
	margin-bottom: 20px;
}

.founder-description {
	margin-bottom: 30px;
}

.founder-description p {
	font-size: 16px;
	line-height: 1.8;
	color: #555;
	margin-bottom: 15px;
}

.founder-description p:last-child {
	margin-bottom: 0;
}

.founder-achievements {
	display: flex;
	gap: 20px;
	flex-wrap: wrap;
}

.achievement-card {
	background-color: #f5f5f5;
	border-radius: 10px;
	padding: 20px;
	text-align: center;
	flex: 1;
	min-width: 150px;
	transition: all 0.3s ease;
}

.achievement-card:hover {
	background-color: #e8e8e8;
	transform: translateY(-5px);
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.achievement-icon {
	font-size: 40px;
	margin-bottom: 10px;
}

.achievement-text {
	font-size: 14px;
	font-weight: 600;
	color: #333;
}

/* ============================================
   Class Schedule Section
   ============================================ */
.schedule-section {
	background-color: #f9f9f9;
}

.schedule-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 30px;
}

.schedule-card {
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	border-radius: 15px;
	overflow: hidden;
	box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
	transition: all 0.3s ease;
	position: relative;
}

.schedule-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(255, 255, 255, 0.95);
	z-index: 1;
}

.schedule-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.schedule-card:hover::before {
	background: rgba(255, 255, 255, 0.98);
}

.schedule-image {
	width: 100%;
	height: 150px;
	overflow: hidden;
	background-color: rgba(102, 126, 234, 0.1);
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	z-index: 3;
	padding: 20px;
	margin-bottom: 0;
}

.schedule-image img {
	max-width: 100%;
	max-height: 100%;
	width: auto;
	height: auto;
	object-fit: contain;
	transition: transform 0.3s ease;
	display: block;
}

.schedule-card:hover .schedule-image img {
	transform: scale(1.05);
}

.schedule-content {
	padding: 35px 25px;
	position: relative;
	z-index: 2;
	text-align: center;
}

.schedule-title {
	font-size: 24px;
	font-weight: 700;
	margin-bottom: 20px;
	color: #333;
	text-align: center;
}

.schedule-info {
	margin-bottom: 20px;
	padding-bottom: 20px;
	border-bottom: 2px solid rgba(102, 126, 234, 0.2);
	text-align: center;
}

.schedule-item {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	margin-bottom: 12px;
	font-size: 15px;
	text-align: center;
}

.schedule-item:last-child {
	margin-bottom: 0;
}

.schedule-icon {
	font-size: 20px;
	width: 28px;
	text-align: center;
	flex-shrink: 0;
}

.schedule-value {
	color: #333;
	font-weight: 600;
	font-size: 15px;
	text-align: center;
}

.schedule-description {
	color: #555;
	margin-bottom: 0;
	line-height: 1.7;
	font-size: 14px;
	text-align: center;
}

.no-schedules {
	text-align: center;
	padding: 40px;
	color: #666;
	grid-column: 1 / -1;
}

/* ============================================
   Testimonials Section
   ============================================ */
.testimonials-section {
	background-color: #f9f9f9;
}

.testimonials-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 30px;
}

.testimonial-card {
	background: #fff;
	padding: 30px;
	border-radius: 10px;
	box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.testimonial-text {
	font-size: 16px;
	line-height: 1.8;
	color: #555;
	margin-bottom: 20px;
	font-style: italic;
}

.testimonial-author {
	border-top: 1px solid #eee;
	padding-top: 15px;
}

.author-name {
	font-weight: 600;
	color: #333;
	margin-bottom: 5px;
}

.author-role {
	font-size: 14px;
	color: #666;
}

/* ============================================
   How It Works Section
   ============================================ */
.how-it-works-section {
	background-color: #fff;
	padding: 80px 0;
}

.how-it-works-steps {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 20px;
	max-width: 1200px;
	margin: 0 auto;
}

.step-card {
	background: #fff;
	border-radius: 15px;
	padding: 30px 20px;
	text-align: center;
	flex: 1;
	min-width: 220px;
	max-width: 250px;
	box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease;
}

.step-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 5px 25px rgba(0, 0, 0, 0.15);
}

.step-icon {
	width: 80px;
	height: 80px;
	border-radius: 50%;
	background: linear-gradient(135deg, #0073aa 0%, #00a86b 100%);
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 20px;
	box-shadow: 0 5px 15px rgba(0, 115, 170, 0.3);
}

.step-number {
	font-size: 36px;
	font-weight: 700;
	color: #fff;
}

.step-title {
	font-size: 20px;
	font-weight: 700;
	margin-bottom: 15px;
	color: #333;
}

.step-description {
	font-size: 14px;
	line-height: 1.6;
	color: #666;
	margin: 0;
}

.step-arrow {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	color: #0073aa;
}

.step-arrow svg {
	width: 40px;
	height: 40px;
}

/* ============================================
   FAQ Section
   ============================================ */
.faq-section {
	background: linear-gradient(to bottom, #ffffff 0%, #f0f8ff 100%);
	padding: 80px 0;
}

.faq-list {
	max-width: 800px;
	margin: 0 auto;
}

.faq-item {
	background: #f5f5f5;
	border-radius: 10px;
	margin-bottom: 15px;
	overflow: hidden;
	transition: all 0.3s ease;
}

.faq-item:hover {
	background: #eeeeee;
}

.faq-item.active {
	background: #fff;
	box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.faq-question {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 20px 25px;
	cursor: pointer;
	user-select: none;
}

.faq-question h3 {
	font-size: 18px;
	font-weight: 600;
	color: #333;
	margin: 0;
	flex: 1;
}

.faq-icon {
	width: 30px;
	height: 30px;
	border-radius: 50%;
	background: linear-gradient(135deg, #0073aa 0%, #00a86b 100%);
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 20px;
	font-weight: 700;
	line-height: 1;
	flex-shrink: 0;
	transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
	transform: rotate(45deg);
	background: linear-gradient(135deg, #005177 0%, #00875a 100%);
}

.faq-answer {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease, padding 0.3s ease;
	padding: 0 25px;
}

.faq-item.active .faq-answer {
	max-height: 500px;
	padding: 0 25px 20px;
}

.faq-answer p {
	font-size: 15px;
	line-height: 1.7;
	color: #555;
	margin: 0;
	padding-top: 10px;
}

/* ============================================
   Statistics Section
   ============================================ */
.statistics-section {
	background: linear-gradient(135deg, #0073aa 0%, #005177 100%);
	padding: 80px 0;
	color: #fff;
}

.stats-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 40px;
	text-align: center;
}

.stat-card {
	padding: 20px;
}

.stat-number {
	font-size: 56px;
	font-weight: 700;
	line-height: 1.2;
	margin-bottom: 10px;
	color: #fff;
	display: inline-block;
}

.stat-symbol {
	font-size: 56px;
	font-weight: 700;
	display: inline-block;
	color: #fff;
}

.stat-label {
	font-size: 18px;
	font-weight: 500;
	color: rgba(255, 255, 255, 0.9);
	text-transform: uppercase;
	letter-spacing: 1px;
}

/* ============================================
   CTA Section
   ============================================ */
.cta-section {
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	color: #fff;
	text-align: center;
}

.cta-title {
	font-size: 36px;
	font-weight: 700;
	margin-bottom: 15px;
}

.cta-description {
	font-size: 18px;
	margin-bottom: 30px;
	opacity: 0.9;
}

/* ============================================
   Footer Styles
   ============================================ */
.site-footer {
	background-color: #364f6b;
	color: #ccc;
	padding: 40px 0 20px;
}

.footer-content {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	flex-wrap: wrap;
	gap: 40px;
	margin-bottom: 30px;
}

.footer-left {
	flex: 1;
	min-width: 300px;
}

.footer-right {
	flex: 0 0 auto;
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 20px;
}

.footer-bottom {
	text-align: center;
	color: #ccc;
	font-size: 14px;
	margin-top: 25px;
}

.footer-bottom p {
	margin: 0;
}

.footer-menu {
	margin-bottom: 25px;
}

.footer-menu-list {
	display: flex;
	flex-direction: column;
	list-style: none;
	margin: 0;
	padding: 0;
	gap: 8px;
}

.footer-menu-list li {
	margin: 0;
	padding: 0;
}

.footer-menu-list a {
	color: #ccc;
	font-size: 14px;
	text-decoration: none;
	transition: color 0.3s ease;
	text-transform: lowercase;
}

.footer-menu-list a:hover {
	color: #fff;
}

.footer-contact {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.contact-item {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	font-size: 14px;
	color: #ccc;
}

.contact-icon {
	font-size: 18px;
	flex-shrink: 0;
	margin-top: 2px;
}

.contact-text {
	line-height: 1.5;
}

.copyright {
	color: #ccc;
	font-size: 14px;
	text-align: right;
}

.copyright p {
	margin: 0;
}

.copyright-top {
	color: #ccc;
	font-size: 14px;
	text-align: right;
	margin-top: 0;
}

.copyright-top p {
	margin: 0;
}

.footer-separator {
	width: 100%;
	height: 1px;
	background-color: rgba(255, 255, 255, 0.2);
	margin-bottom: 20px;
}

.site-info {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 20px;
}

.footer-menu-bottom {
	flex: 1;
}

.footer-menu-list-bottom {
	display: flex;
	flex-direction: column;
	list-style: none;
	margin: 0;
	padding: 0;
	gap: 8px;
}

.footer-menu-list-bottom li {
	margin: 0;
	padding: 0;
}

.footer-menu-list-bottom a {
	color: #ccc;
	font-size: 14px;
	text-decoration: none;
	transition: color 0.3s ease;
	text-transform: lowercase;
}

.footer-menu-list-bottom a:hover {
	color: #fff;
}

.copyright-bottom {
	color: #ccc;
	font-size: 14px;
	text-align: right;
}

.copyright-bottom p {
	margin: 0;
}

/* ============================================
   Responsive Design
   ============================================ */

/* Tablet */
@media (max-width: 768px) {
	.container {
		padding: 0 20px;
	}
	
	/* Hero Section */
	.hero-section {
		padding: 100px 0;
		min-height: 500px;
	}
	
	.hero-title {
		font-size: 36px;
	}
	
	.hero-subtitle {
		font-size: 18px;
	}
	
	/* About Section */
	.about-text {
		font-size: 16px;
	}
	
	/* Section Headers */
	.section-title {
		font-size: 28px;
	}
	
	.section-description {
		font-size: 16px;
	}
	
	/* Courses Section */
	.courses-grid {
		grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
		gap: 25px;
	}
	
	.course-card {
		margin-bottom: 0;
	}
	
	/* Why Choose Us Section */
	.why-choose-grid {
		grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
		gap: 25px;
	}
	
	.why-choose-card {
		min-width: auto;
	}
	
	/* Founder Section */
	.founder-wrapper {
		flex-direction: column;
		text-align: center;
		gap: 30px;
	}
	
	.founder-image-wrapper {
		flex: 0 0 auto;
		margin: 0 auto;
	}
	
	.founder-image {
		width: 300px;
		height: 300px;
	}
	
	.founder-subtitle {
		font-size: 24px;
	}
	
	.founder-achievements {
		justify-content: center;
	}
	
	/* How It Works Section */
	.how-it-works-steps {
		flex-direction: column;
		gap: 15px;
	}
	
	.step-card {
		max-width: 100%;
		width: 100%;
	}
	
	.step-arrow {
		transform: rotate(90deg);
		margin: 10px 0;
	}
	
	/* Class Schedule Section */
	.schedule-grid {
		grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
		gap: 25px;
	}
	
	/* Testimonials Section */
	.testimonials-grid {
		grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
		gap: 25px;
	}
	
	/* Statistics Section */
	.stats-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 30px;
	}
	
	.stat-number {
		font-size: 42px;
	}
	
	.stat-label {
		font-size: 16px;
	}
	
	/* FAQ Section */
	.faq-question h3 {
		font-size: 16px;
	}
	
	.faq-answer p {
		font-size: 14px;
	}
	
	/* Footer */
	.footer-content {
		flex-direction: column;
		gap: 30px;
	}
	
	.footer-left,
	.footer-right {
		width: 100%;
	}
	
	.footer-right {
		align-items: flex-start;
	}
	
	.footer-bottom {
		margin-top: 15px;
	}
	
	.copyright,
	.copyright-top {
		text-align: left;
		margin-top: 20px;
	}
	
	.site-info {
		flex-direction: column;
		text-align: left;
	}
	
	.footer-menu-bottom {
		width: 100%;
	}
	
	.copyright-bottom {
		text-align: left;
		width: 100%;
		margin-top: 15px;
	}
}

/* Mobile */
@media (max-width: 600px) {
	.container {
		padding: 0 15px;
	}
	
	/* Header & Navigation */
	.menu-toggle {
		display: flex;
	}

	.main-navigation {
		position: relative;
		padding: 0 12px;
	}
	
	.primary-menu,
	#primary-menu {
		display: none;
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		width: auto;
		margin: 8px 0 0;
		background-color: #fff;
		flex-direction: column;
		padding: 20px 16px;
		box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
		border-radius: 10px;
		gap: 0;
		z-index: 1000;
	}
	
	.primary-menu.active,
	#primary-menu.active {
		display: flex;
	}
	
	.primary-menu li,
	#primary-menu li {
		width: 100%;
		border-bottom: 1px solid #eee;
	}
	
	.primary-menu a,
	#primary-menu a {
		padding: 15px 0;
		width: 100%;
		display: block;
	}
	
	.site-branding {
		font-size: 20px;
	}
	
	/* Hero Section */
	.hero-section {
		padding: 60px 0;
		min-height: 400px;
	}
	
	.hero-title {
		font-size: 28px;
		line-height: 1.3;
		margin-bottom: 15px;
	}
	
	.hero-subtitle {
		font-size: 16px;
		margin-bottom: 30px;
	}
	
	.hero-buttons {
		flex-direction: column;
		gap: 15px;
	}
	
	.btn {
		width: 100%;
		padding: 12px 24px;
		font-size: 16px;
	}
	
	/* All Sections */
	section {
		padding: 50px 0;
	}
	
	.section-header {
		margin-bottom: 30px;
	}
	
	.section-title {
		font-size: 24px;
		margin-bottom: 10px;
	}
	
	.section-description {
		font-size: 14px;
	}
	
	/* About Section */
	.about-text {
		font-size: 15px;
		line-height: 1.7;
	}
	
	.about-text p {
		margin-bottom: 15px;
	}
	
	/* Courses Section */
	.courses-grid {
		grid-template-columns: 1fr;
		gap: 20px;
	}
	
	.course-card {
		margin-bottom: 0;
	}
	
	.course-title {
		font-size: 20px;
	}
	
	.course-excerpt {
		font-size: 14px;
	}
	
	/* Single Course Page - Tablet */
	.single-course-page .row {
		gap: 25px;
	}
	
	.single-course-page .content-column {
		width: 100%;
	}
	
	.single-course-page .sidebar-column {
		width: 100%;
		flex: 1 1 100%;
	}
	
	.single-course-page .entry-title {
		font-size: 32px;
		line-height: 1.3;
	}
	
	.single-course-page .post-thumbnail {
		margin-bottom: 25px;
	}
	
	.single-course-page .post-thumbnail img {
		width: 100%;
		height: auto;
		border-radius: 8px;
	}
	
	.single-course-page .entry-content {
		font-size: 16px;
		line-height: 1.7;
	}
	
	.single-course-page .entry-content p {
		margin-bottom: 15px;
	}
	
	.single-course-page .course-booking-section {
		margin-top: 40px;
		padding: 50px 0;
	}
	
	.single-course-page .booking-form-wrapper {
		padding: 35px 25px;
		max-width: 100%;
	}
	
	.single-course-page .booking-form-title {
		font-size: 26px;
	}
	
	.single-course-page .booking-form-description {
		font-size: 15px;
	}
	
	.single-course-page .course-name-display {
		padding: 14px;
	}
	
	.single-course-page .course-name-value {
		font-size: 17px;
	}
	
	/* About Us Page - Tablet */
	.about-content-section {
		padding: 60px 0;
	}
	
	.about-text-content {
		font-size: 16px;
	}
	
	.mission-vision-grid {
		grid-template-columns: 1fr;
		gap: 30px;
	}
	
	.mission-card,
	.vision-card {
		padding: 30px 25px;
	}
	
	/* Contact Us Page - Tablet */
	.contact-info-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 25px;
	}
	
	.contact-form-map-wrapper {
		grid-template-columns: 1fr;
		gap: 30px;
	}
	
	.contact-form-box,
	.map-box {
		padding: 30px 25px;
	}
	
	.map-container iframe {
		height: 400px;
	}
	
	.additional-contact-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 25px;
	}
	
	/* Why Choose Us Section */
	.why-choose-grid {
		grid-template-columns: 1fr;
		gap: 20px;
	}
	
	.why-choose-card {
		min-width: auto;
	}
	
	.why-choose-title {
		font-size: 20px;
	}
	
	.why-choose-description {
		font-size: 14px;
	}
	
	/* Founder Section */
	.founder-wrapper {
		flex-direction: column;
		text-align: center;
		gap: 25px;
	}
	
	.founder-image-wrapper {
		flex: 0 0 auto;
		margin: 0 auto;
	}
	
	.founder-image {
		width: 250px;
		height: 250px;
	}
	
	.founder-subtitle {
		font-size: 22px;
		margin-bottom: 15px;
	}
	
	.founder-description {
		margin-bottom: 25px;
	}
	
	.founder-description p {
		font-size: 15px;
		margin-bottom: 12px;
	}
	
	.founder-achievements {
		justify-content: center;
		flex-wrap: wrap;
		gap: 15px;
	}
	
	.achievement-card {
		min-width: 120px;
		flex: 0 0 calc(50% - 10px);
	}
	
	.achievement-icon {
		font-size: 35px;
	}
	
	.achievement-text {
		font-size: 13px;
	}
	
	/* How It Works Section */
	.how-it-works-steps {
		flex-direction: column;
		gap: 15px;
	}
	
	.step-card {
		max-width: 100%;
		width: 100%;
		padding: 25px 15px;
	}
	
	.step-icon {
		width: 70px;
		height: 70px;
		margin-bottom: 15px;
	}
	
	.step-number {
		font-size: 32px;
	}
	
	.step-title {
		font-size: 18px;
		margin-bottom: 12px;
	}
	
	.step-description {
		font-size: 13px;
	}
	
	.step-arrow {
		transform: rotate(90deg);
		margin: 10px 0;
	}
	
	.step-arrow svg {
		width: 35px;
		height: 35px;
	}
	
	/* Class Schedule Section */
	.schedule-grid {
		grid-template-columns: 1fr;
		gap: 20px;
	}
	
	.schedule-card {
		margin-bottom: 0;
	}
	
	.schedule-title {
		font-size: 20px;
	}
	
	.schedule-item {
		font-size: 14px;
	}
	
	.schedule-description {
		font-size: 14px;
	}
	
	/* Testimonials Section */
	.testimonials-grid {
		grid-template-columns: 1fr;
		gap: 20px;
	}
	
	.testimonial-card {
		padding: 25px;
	}
	
	.testimonial-text {
		font-size: 15px;
	}
	
	/* Statistics Section */
	.stats-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 25px;
	}
	
	.stat-card {
		padding: 15px;
	}
	
	.stat-number {
		font-size: 36px;
	}
	
	.stat-symbol {
		font-size: 36px;
	}
	
	.stat-label {
		font-size: 14px;
	}
	
	/* FAQ Section */
	.faq-list {
		max-width: 100%;
	}
	
	.faq-item {
		margin-bottom: 12px;
	}
	
	.faq-question {
		padding: 15px 20px;
	}
	
	.faq-question h3 {
		font-size: 15px;
	}
	
	.faq-icon {
		width: 28px;
		height: 28px;
		font-size: 18px;
	}
	
	.faq-answer {
		padding: 0 20px;
	}
	
	.faq-item.active .faq-answer {
		padding: 0 20px 15px;
	}
	
	.faq-answer p {
		font-size: 14px;
		padding-top: 8px;
	}
	
	/* CTA Section */
	.cta-title {
		font-size: 28px;
	}
	
	.cta-description {
		font-size: 16px;
	}
	
	/* Footer */
	.footer-content {
		flex-direction: column;
		gap: 25px;
	}
	
	.footer-left,
	.footer-right {
		width: 100%;
	}
	
	.footer-menu {
		margin-bottom: 20px;
	}
	
	.footer-contact {
		gap: 10px;
	}
	
	.contact-item {
		font-size: 13px;
	}
	
	.contact-icon {
		font-size: 16px;
	}
	
	.copyright,
	.copyright-top {
		text-align: left;
		margin-top: 20px;
		font-size: 13px;
	}
	
	.site-info {
		flex-direction: column;
		text-align: left;
		gap: 15px;
	}
	
	.footer-menu-bottom {
		width: 100%;
	}
	
	.copyright-bottom {
		text-align: left;
		width: 100%;
		margin-top: 15px;
		font-size: 13px;
	}
	
	.content-column,
	.sidebar-column {
		flex: 1 1 100%;
	}
	
	/* Single Course Page - Mobile */
	.single-course-page .row {
		flex-direction: column;
		gap: 20px;
	}
	
	.single-course-page .content-column {
		width: 100%;
		order: 1;
	}
	
	.single-course-page .sidebar-column {
		width: 100%;
		order: 2;
		flex: 1 1 100%;
	}
	
	.single-course-page .entry-title {
		font-size: 24px;
		line-height: 1.2;
		margin-bottom: 15px;
	}
	
	.single-course-page .entry-content {
		font-size: 15px;
	}
	
	.single-course-page .entry-content p {
		margin-bottom: 12px;
	}
	
	.single-course-page .course-booking-section {
		margin-top: 25px;
		padding: 30px 0;
	}
	
	.single-course-page .booking-form-wrapper {
		padding: 25px 15px;
	}
	
	.single-course-page .booking-form-title {
		font-size: 22px;
		margin-bottom: 8px;
	}
	
	.single-course-page .booking-form-description {
		font-size: 13px;
		margin-bottom: 20px;
	}
	
	.single-course-page .course-name-display {
		padding: 12px;
		margin-bottom: 15px;
	}
	
	.single-course-page .course-name-value {
		font-size: 16px;
	}
	
	.single-course-page .course-booking-form .form-control {
		font-size: 14px;
		padding: 10px 12px;
	}
	
	.single-course-page .price-display {
		padding: 12px;
	}
	
	.single-course-page .price-amount {
		font-size: 28px;
	}
	
	.single-course-page .course-booking-form .btn-primary {
		padding: 12px 20px;
		font-size: 15px;
	}
	
	.single-course-page .post-thumbnail {
		margin-bottom: 20px;
	}
	
	.single-course-page .post-thumbnail img {
		width: 100%;
		height: auto;
		border-radius: 8px;
	}
	
	/* Expert Teachers Section - Mobile */
	.teachers-grid {
		grid-template-columns: 1fr;
		gap: 20px;
	}
	
	.teacher-image {
		height: 200px;
	}
	
	.teacher-name {
		font-size: 20px;
	}
	
	.teacher-designation {
		font-size: 15px;
	}
	
	.teacher-experience,
	.teacher-specialization {
		font-size: 13px;
	}
	
	.teacher-bio {
		font-size: 13px;
	}
	
	/* Contact Us Page - Mobile */
	.contact-info-section {
		padding: 50px 0;
	}
	
	.contact-info-grid {
		grid-template-columns: 1fr;
		gap: 20px;
	}
	
	.contact-info-card {
		padding: 25px 20px;
	}
	
	.contact-info-icon {
		font-size: 40px;
		margin-bottom: 12px;
	}
	
	.contact-info-title {
		font-size: 18px;
		margin-bottom: 12px;
	}
	
	.contact-info-text {
		font-size: 15px;
	}
	
	.contact-form-map-section {
		padding: 50px 0;
	}
	
	.contact-form-map-wrapper {
		grid-template-columns: 1fr;
		gap: 30px;
	}
	
	.contact-form-box,
	.map-box {
		padding: 25px 20px;
	}
	
	.contact-form-title,
	.map-title {
		font-size: 24px;
		margin-bottom: 15px;
	}
	
	.contact-form-description {
		font-size: 14px;
		margin-bottom: 25px;
	}
	
	.map-container iframe {
		height: 300px;
	}
	
	.additional-contact-section {
		padding: 50px 0;
	}
	
	.additional-contact-grid {
		grid-template-columns: 1fr;
		gap: 20px;
	}
	
	.additional-contact-card {
		padding: 25px 20px;
	}
	
	.additional-icon {
		font-size: 40px;
		margin-bottom: 12px;
	}
	
	.additional-title {
		font-size: 20px;
		margin-bottom: 12px;
	}
	
	.additional-description {
		font-size: 14px;
		margin-bottom: 12px;
	}
	
	.additional-time,
	.additional-link {
		font-size: 13px;
	}
	
	/* About Us Page - Mobile */
	.about-content-section {
		padding: 50px 0;
	}
	
	.about-text-content {
		font-size: 15px;
		line-height: 1.7;
	}
	
	.about-text-content p {
		margin-bottom: 15px;
	}
	
	.mission-vision-section {
		padding: 50px 0;
	}
	
	.mission-vision-grid {
		grid-template-columns: 1fr;
		gap: 25px;
	}
	
	.mission-card,
	.vision-card {
		padding: 25px 20px;
	}
	
	.mission-icon,
	.vision-icon {
		font-size: 50px;
		margin-bottom: 15px;
	}
	
	.mission-title,
	.vision-title {
		font-size: 24px;
		margin-bottom: 15px;
	}
	
	.mission-description,
	.vision-description {
		font-size: 15px;
	}
}

/* ============================================
   Single Course Page Styles
   ============================================ */
.single-course-page {
	padding: 40px 0;
}

.single-course-page .entry-title {
	font-size: 36px;
	font-weight: 700;
	margin-bottom: 20px;
	color: #333;
	line-height: 1.2;
}

.single-course-page .post-thumbnail {
	margin-bottom: 30px;
	border-radius: 10px;
	overflow: hidden;
}

.single-course-page .post-thumbnail img {
	width: 100%;
	height: auto;
	display: block;
}

.single-course-page .entry-content {
	font-size: 17px;
	line-height: 1.8;
	color: #555;
}

.single-course-page .entry-content p {
	margin-bottom: 20px;
}

.single-course-page .entry-content h2,
.single-course-page .entry-content h3,
.single-course-page .entry-content h4 {
	margin-top: 30px;
	margin-bottom: 15px;
	color: #333;
}

.single-course-page .entry-content ul,
.single-course-page .entry-content ol {
	margin-left: 20px;
	margin-bottom: 20px;
}

.single-course-page .entry-content li {
	margin-bottom: 10px;
}

/* ============================================
   About Us Page Styles
   ============================================ */
.about-us-page-content {
	background-color: #fff;
}

.about-content-section {
	padding: 80px 0;
	background-color: #fff;
}

.about-content-wrapper {
	max-width: 900px;
	margin: 0 auto;
}

.about-main-content {
	text-align: left;
}

.about-text-content {
	font-size: 18px;
	line-height: 1.8;
	color: #555;
}

.about-text-content p {
	margin-bottom: 20px;
}

.about-text-content h2,
.about-text-content h3 {
	margin-top: 30px;
	margin-bottom: 15px;
	color: #333;
}

/* Mission & Vision Section */
.mission-vision-section {
	background-color: #f9f9f9;
	padding: 80px 0;
}

.mission-vision-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
	gap: 40px;
	max-width: 1000px;
	margin: 0 auto;
}

.mission-card,
.vision-card {
	background: #fff;
	padding: 40px;
	border-radius: 15px;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
	text-align: center;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mission-card:hover,
.vision-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.mission-icon,
.vision-icon {
	font-size: 60px;
	margin-bottom: 20px;
}

.mission-title,
.vision-title {
	font-size: 28px;
	font-weight: 700;
	margin-bottom: 20px;
	color: #333;
}

.mission-description,
.vision-description {
	font-size: 16px;
	line-height: 1.7;
	color: #666;
	margin: 0;
}

/* ============================================
   Expert Teachers Section
   ============================================ */
.expert-teachers-section {
	background-color: #fff;
	padding: 80px 0;
}

.teachers-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 30px;
	margin-top: 50px;
}

.teacher-card {
	background: #fff;
	border-radius: 15px;
	overflow: hidden;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
	transition: all 0.3s ease;
	text-align: center;
	display: flex;
	flex-direction: column;
}

.teacher-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.teacher-image {
	width: 100%;
	height: 250px;
	overflow: hidden;
	background-color: #f0f0f0;
	display: flex;
	align-items: center;
	justify-content: center;
}

.teacher-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
}

.teacher-card:hover .teacher-image img {
	transform: scale(1.1);
}

.teacher-image-placeholder {
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.teacher-image-placeholder .placeholder-icon {
	font-size: 80px;
	color: #fff;
}

.teacher-content {
	padding: 25px 20px;
	flex-grow: 1;
	display: flex;
	flex-direction: column;
}

.teacher-name {
	font-size: 22px;
	font-weight: 700;
	margin-bottom: 10px;
	color: #333;
}

.teacher-designation {
	font-size: 16px;
	color: #667eea;
	font-weight: 600;
	margin-bottom: 15px;
}

.teacher-experience,
.teacher-specialization {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	font-size: 14px;
	color: #666;
	margin-bottom: 10px;
}

.teacher-icon {
	font-size: 18px;
}

.teacher-bio {
	font-size: 14px;
	color: #555;
	line-height: 1.6;
	margin-top: 15px;
	padding-top: 15px;
	border-top: 1px solid #eee;
}

.no-teachers {
	text-align: center;
	padding: 40px;
	color: #666;
	grid-column: 1 / -1;
}

/* ============================================
   Contact Us Page Styles
   ============================================ */
.contact-us-page-content {
	background-color: #fff;
}

/* Contact Information Section */
.contact-info-section {
	background-color: #f9f9f9;
	padding: 60px 0;
}

.contact-info-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 30px;
}

.contact-info-card {
	background: #fff;
	padding: 30px 20px;
	border-radius: 10px;
	text-align: center;
	box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
	transition: all 0.3s ease;
}

.contact-info-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.12);
}

.contact-info-icon {
	font-size: 50px;
	margin-bottom: 15px;
}

.contact-info-title {
	font-size: 20px;
	font-weight: 700;
	margin-bottom: 15px;
	color: #333;
}

.contact-info-text {
	font-size: 16px;
	color: #666;
	line-height: 1.6;
	margin: 0;
}

.contact-info-text a {
	color: #667eea;
	text-decoration: none;
}

.contact-info-text a:hover {
	color: #005177;
	text-decoration: underline;
}

/* Contact Form & Map Section */
.contact-form-map-section {
	padding: 80px 0;
	background-color: #fff;
}

.contact-form-map-wrapper {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px;
	align-items: start;
}

.contact-form-column {
	flex: 1;
}

.contact-form-box {
	background: #fff;
	padding: 40px;
	border-radius: 10px;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.contact-form-title {
	font-size: 28px;
	font-weight: 700;
	margin-bottom: 10px;
	color: #333;
}

.contact-form-description {
	font-size: 16px;
	color: #666;
	margin-bottom: 30px;
	line-height: 1.6;
}

.map-column {
	flex: 1;
}

.map-box {
	background: #fff;
	padding: 40px;
	border-radius: 10px;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.map-title {
	font-size: 28px;
	font-weight: 700;
	margin-bottom: 20px;
	color: #333;
}

.map-container {
	border-radius: 8px;
	overflow: hidden;
}

.map-container iframe {
	width: 100%;
	height: 450px;
	border: none;
	display: block;
}

.map-note {
	margin-top: 15px;
	font-size: 14px;
	color: #666;
	text-align: center;
	padding: 10px;
	background-color: #f5f5f5;
	border-radius: 5px;
}

/* Additional Contact Section */
.additional-contact-section {
	background-color: #f9f9f9;
	padding: 80px 0;
}

.additional-contact-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 30px;
}

.additional-contact-card {
	background: #fff;
	padding: 35px 25px;
	border-radius: 10px;
	text-align: center;
	box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
	transition: all 0.3s ease;
}

.additional-contact-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.12);
}

.additional-icon {
	font-size: 50px;
	margin-bottom: 15px;
}

.additional-title {
	font-size: 22px;
	font-weight: 700;
	margin-bottom: 15px;
	color: #333;
}

.additional-description {
	font-size: 15px;
	color: #666;
	line-height: 1.6;
	margin-bottom: 15px;
}

.additional-time {
	font-size: 14px;
	color: #888;
	margin: 0;
}

.additional-link {
	margin: 0;
}

.additional-link a {
	color: #667eea;
	text-decoration: none;
	font-weight: 600;
	font-size: 15px;
	transition: color 0.3s ease;
}

.additional-link a:hover {
	color: #005177;
	text-decoration: underline;
}

.whatsapp-link {
	display: inline-block;
	padding: 8px 20px;
	background-color: #25D366;
	color: #fff !important;
	border-radius: 5px;
	text-decoration: none !important;
	transition: background-color 0.3s ease;
}

.whatsapp-link:hover {
	background-color: #128C7E;
	color: #fff !important;
	text-decoration: none !important;
}

/* Contact Form Styling */
.contact-form-wrapper {
	width: 100%;
}

.contact-form-wrapper .form-row {
	margin-bottom: 20px;
}

.contact-form-wrapper .form-group {
	margin-bottom: 0;
}

.contact-form-wrapper label {
	display: block;
	font-weight: 600;
	margin-bottom: 8px;
	color: #333;
	font-size: 14px;
}

.contact-form-wrapper .form-control {
	width: 100%;
	padding: 12px 15px;
	border: 1px solid #ddd;
	border-radius: 5px;
	font-size: 15px;
	transition: border-color 0.3s ease;
	font-family: inherit;
}

.contact-form-wrapper .form-control:focus {
	outline: none;
	border-color: #667eea;
	box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.contact-form-wrapper textarea.form-control {
	resize: vertical;
	min-height: 120px;
}

.contact-form-wrapper .btn-primary {
	width: 100%;
	padding: 15px;
	font-size: 16px;
	font-weight: 600;
	margin-top: 10px;
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	border: none;
	color: #fff;
	cursor: pointer;
	transition: all 0.3s ease;
}

.contact-form-wrapper .btn-primary:hover {
	background: linear-gradient(135deg, #5568d3 0%, #6a3d8f 100%);
	transform: translateY(-2px);
	box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

/* ============================================
   Course Booking Form
   ============================================ */
.course-booking-section {
	background-color: #f9f9f9;
	padding: 60px 0;
	margin-top: 50px;
}

.booking-form-wrapper {
	max-width: 600px;
	margin: 0 auto;
	background: #fff;
	padding: 40px;
	border-radius: 10px;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.booking-form-title {
	font-size: 28px;
	font-weight: 700;
	margin-bottom: 10px;
	color: #333;
	text-align: center;
}

.booking-form-description {
	font-size: 16px;
	color: #666;
	text-align: center;
	margin-bottom: 30px;
}

.course-booking-form .form-row {
	margin-bottom: 20px;
}

.course-booking-form .form-group {
	margin-bottom: 0;
}

.course-booking-form label {
	display: block;
	font-weight: 600;
	margin-bottom: 8px;
	color: #333;
	font-size: 14px;
}

.course-name-display {
	background-color: #f0f7ff;
	padding: 15px;
	border-radius: 5px;
	border: 2px solid #667eea;
	margin-bottom: 20px;
}

.course-name-value {
	font-size: 18px;
	font-weight: 700;
	color: #667eea;
	margin-top: 5px;
}

.course-booking-form .form-control {
	width: 100%;
	padding: 12px 15px;
	border: 1px solid #ddd;
	border-radius: 5px;
	font-size: 15px;
	transition: border-color 0.3s ease;
}

.course-booking-form .form-control:focus {
	outline: none;
	border-color: #667eea;
	box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.price-display {
	background-color: #f5f5f5;
	padding: 15px;
	border-radius: 5px;
	text-align: center;
}

.price-amount {
	font-size: 32px;
	font-weight: 700;
	color: #667eea;
	margin-top: 5px;
}

.course-booking-form .btn-primary {
	width: 100%;
	padding: 15px;
	font-size: 16px;
	font-weight: 600;
	margin-top: 10px;
}

/* ============================================
   Payment Success/Cancelled Pages
   ============================================ */
.payment-success-page,
.payment-cancelled-page {
	padding: 80px 0;
	min-height: 60vh;
	display: flex;
	align-items: center;
}

.payment-success-wrapper,
.payment-cancelled-wrapper {
	max-width: 600px;
	margin: 0 auto;
	text-align: center;
	background: #fff;
	padding: 50px 40px;
	border-radius: 15px;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.success-icon {
	width: 100px;
	height: 100px;
	border-radius: 50%;
	background: linear-gradient(135deg, #00c851 0%, #007e33 100%);
	color: #fff;
	font-size: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 30px;
	font-weight: 700;
}

.cancelled-icon {
	width: 100px;
	height: 100px;
	border-radius: 50%;
	background: linear-gradient(135deg, #ff4444 0%, #cc0000 100%);
	color: #fff;
	font-size: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 30px;
	font-weight: 700;
}

.success-title,
.cancelled-title {
	font-size: 32px;
	font-weight: 700;
	margin-bottom: 15px;
	color: #333;
}

.success-message,
.cancelled-message {
	font-size: 18px;
	color: #666;
	margin-bottom: 25px;
	line-height: 1.6;
}

.course-name {
	font-size: 16px;
	color: #555;
	margin-bottom: 10px;
}

.session-id {
	font-size: 14px;
	color: #888;
	margin-bottom: 30px;
}

.success-actions,
.cancelled-actions {
	display: flex;
	gap: 15px;
	justify-content: center;
	flex-wrap: wrap;
	margin-top: 30px;
}

.success-actions .btn,
.cancelled-actions .btn {
	padding: 12px 30px;
	font-size: 16px;
}

/* ============================================
   Utility Classes
   ============================================ */
.screen-reader-text {
	clip: rect(1px, 1px, 1px, 1px);
	position: absolute !important;
	height: 1px;
	width: 1px;
	overflow: hidden;
}

.skip-link:focus {
	clip: auto;
	height: auto;
	width: auto;
	display: block;
	padding: 10px;
	background: #000;
	color: #fff;
	text-decoration: none;
}

.no-courses {
	text-align: center;
	padding: 40px;
	color: #666;
}

/* ============================================
   Login & Signup Page Styles
   ============================================ */

/* Login Page */
.login-page-content {
	background-color: #f9f9f9;
	min-height: 100vh;
}

.login-hero-section {
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	padding: 80px 0 60px;
	color: #fff;
	text-align: center;
}

.login-hero-title {
	font-size: 42px;
	font-weight: 700;
	margin-bottom: 15px;
	color: #fff;
}

.login-hero-subtitle {
	font-size: 18px;
	color: rgba(255, 255, 255, 0.9);
	margin: 0;
}

.login-form-section {
	padding: 60px 0 80px;
}

.login-form-wrapper {
	max-width: 500px;
	margin: 0 auto;
}

.login-form-box {
	background: #fff;
	padding: 40px;
	border-radius: 10px;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.login-form-title {
	font-size: 28px;
	font-weight: 700;
	margin-bottom: 10px;
	color: #333;
	text-align: center;
}

.login-form-description {
	font-size: 16px;
	color: #666;
	text-align: center;
	margin-bottom: 30px;
}

.login-error-message {
	background-color: #fee;
	border: 1px solid #fcc;
	color: #c33;
	padding: 12px 15px;
	border-radius: 5px;
	margin-bottom: 20px;
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 14px;
}

.error-icon {
	font-size: 18px;
}

.student-login-form .form-group {
	margin-bottom: 20px;
}

.student-login-form label {
	display: block;
	font-weight: 600;
	margin-bottom: 8px;
	color: #333;
	font-size: 14px;
}

.student-login-form .form-control {
	width: 100%;
	padding: 12px 15px;
	border: 1px solid #ddd;
	border-radius: 5px;
	font-size: 15px;
	transition: border-color 0.3s ease;
	font-family: inherit;
}

.student-login-form .form-control:focus {
	outline: none;
	border-color: #667eea;
	box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.form-group-checkbox {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 25px;
}

.checkbox-label {
	display: flex;
	align-items: center;
	gap: 8px;
	font-weight: 400;
	cursor: pointer;
	font-size: 14px;
	color: #555;
}

.checkbox-label input[type="checkbox"] {
	width: auto;
	margin: 0;
	cursor: pointer;
}

.forgot-password-link {
	color: #667eea;
	text-decoration: none;
	font-size: 14px;
	transition: color 0.3s ease;
}

.forgot-password-link:hover {
	color: #005177;
	text-decoration: underline;
}

.btn-login {
	width: 100%;
	padding: 15px;
	font-size: 16px;
	font-weight: 600;
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	border: none;
	color: #fff;
	cursor: pointer;
	border-radius: 5px;
	transition: all 0.3s ease;
}

.btn-login:hover {
	background: linear-gradient(135deg, #5568d3 0%, #6a3d8f 100%);
	transform: translateY(-2px);
	box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

.login-form-footer {
	text-align: center;
	margin-top: 25px;
	padding-top: 25px;
	border-top: 1px solid #eee;
}

.login-form-footer p {
	margin: 0;
	color: #666;
	font-size: 14px;
}

.signup-link {
	color: #667eea;
	text-decoration: none;
	font-weight: 600;
	transition: color 0.3s ease;
}

.signup-link:hover {
	color: #005177;
	text-decoration: underline;
}

/* Signup Page */
.signup-page-content {
	background-color: #f9f9f9;
	min-height: 100vh;
}

.signup-hero-section {
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	padding: 80px 0 60px;
	color: #fff;
	text-align: center;
}

.signup-hero-title {
	font-size: 42px;
	font-weight: 700;
	margin-bottom: 15px;
	color: #fff;
}

.signup-hero-subtitle {
	font-size: 18px;
	color: rgba(255, 255, 255, 0.9);
	margin: 0;
}

.signup-form-section {
	padding: 60px 0 80px;
}

.signup-form-wrapper {
	max-width: 700px;
	margin: 0 auto;
}

.signup-form-box {
	background: #fff;
	padding: 40px;
	border-radius: 10px;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.signup-form-title {
	font-size: 28px;
	font-weight: 700;
	margin-bottom: 10px;
	color: #333;
	text-align: center;
}

.signup-form-description {
	font-size: 16px;
	color: #666;
	text-align: center;
	margin-bottom: 30px;
}

.signup-error-message {
	background-color: #fee;
	border: 1px solid #fcc;
	color: #c33;
	padding: 12px 15px;
	border-radius: 5px;
	margin-bottom: 20px;
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 14px;
}

.signup-success-message {
	background-color: #efe;
	border: 1px solid #cfc;
	color: #3c3;
	padding: 12px 15px;
	border-radius: 5px;
	margin-bottom: 20px;
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 14px;
}

.success-icon {
	font-size: 18px;
}

.student-signup-form .form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
	margin-bottom: 20px;
}

.student-signup-form .form-group {
	margin-bottom: 20px;
}

.student-signup-form label {
	display: block;
	font-weight: 600;
	margin-bottom: 8px;
	color: #333;
	font-size: 14px;
}

.student-signup-form .form-control {
	width: 100%;
	padding: 12px 15px;
	border: 1px solid #ddd;
	border-radius: 5px;
	font-size: 15px;
	transition: border-color 0.3s ease;
	font-family: inherit;
	box-sizing: border-box;
}

.student-signup-form .form-control:focus {
	outline: none;
	border-color: #667eea;
	box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.form-help-text {
	display: block;
	font-size: 12px;
	color: #888;
	margin-top: 5px;
	font-weight: 400;
}

.btn-signup {
	width: 100%;
	padding: 15px;
	font-size: 16px;
	font-weight: 600;
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	border: none;
	color: #fff;
	cursor: pointer;
	border-radius: 5px;
	transition: all 0.3s ease;
}

.btn-signup:hover {
	background: linear-gradient(135deg, #5568d3 0%, #6a3d8f 100%);
	transform: translateY(-2px);
	box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

.signup-form-footer {
	text-align: center;
	margin-top: 25px;
	padding-top: 25px;
	border-top: 1px solid #eee;
}

.signup-form-footer p {
	margin: 0;
	color: #666;
	font-size: 14px;
}

.login-link {
	color: #667eea;
	text-decoration: none;
	font-weight: 600;
	transition: color 0.3s ease;
}

.login-link:hover {
	color: #005177;
	text-decoration: underline;
}

/* Responsive adjustments for Login & Signup Pages */
@media (max-width: 768px) {
	.login-hero-title,
	.signup-hero-title {
		font-size: 32px;
	}

	.login-hero-subtitle,
	.signup-hero-subtitle {
		font-size: 16px;
	}

	.login-form-section,
	.signup-form-section {
		padding: 40px 0 60px;
	}

	.login-form-box,
	.signup-form-box {
		padding: 30px 20px;
	}

	.login-form-title,
	.signup-form-title {
		font-size: 24px;
	}

	.student-signup-form .form-row {
		grid-template-columns: 1fr;
		gap: 0;
	}

	.form-group-checkbox {
		flex-direction: column;
		align-items: flex-start;
		gap: 10px;
	}
}

@media (max-width: 600px) {
	.login-hero-section,
	.signup-hero-section {
		padding: 60px 0 40px;
	}

	.login-hero-title,
	.signup-hero-title {
		font-size: 28px;
	}

	.login-form-box,
	.signup-form-box {
		padding: 25px 15px;
	}

	.login-form-title,
	.signup-form-title {
		font-size: 22px;
	}

	.login-form-description,
	.signup-form-description {
		font-size: 14px;
	}
}

/* ============================================
   Additional Responsive Styles for All Templates
   ============================================ */

/* Contact Us Page - Additional Responsive */
@media (max-width: 768px) {
	.contact-info-section {
		padding: 50px 0;
	}

	.contact-info-grid {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.contact-info-card {
		padding: 25px 20px;
	}

	.contact-info-icon {
		font-size: 40px;
	}

	.contact-info-title {
		font-size: 18px;
	}

	.contact-info-text {
		font-size: 15px;
	}

	.contact-form-map-section {
		padding: 50px 0;
	}

	.contact-form-map-wrapper {
		grid-template-columns: 1fr;
		gap: 30px;
	}

	.contact-form-box {
		padding: 30px 20px;
	}

	.contact-form-title {
		font-size: 24px;
	}

	.contact-form-description {
		font-size: 15px;
	}

	.map-column iframe {
		min-height: 300px;
	}

	.additional-contact-section {
		padding: 50px 0;
	}

	.additional-contact-grid {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.additional-contact-card {
		padding: 30px 20px;
	}

	.additional-icon {
		font-size: 40px;
	}

	.additional-title {
		font-size: 20px;
	}
}

@media (max-width: 600px) {
	.contact-info-section,
	.contact-form-map-section,
	.additional-contact-section {
		padding: 40px 0;
	}

	.contact-info-card,
	.additional-contact-card {
		padding: 20px 15px;
	}

	.contact-form-box {
		padding: 25px 15px;
	}

	.contact-form-title {
		font-size: 22px;
	}

	.contact-form-description {
		font-size: 14px;
	}

	.map-column iframe {
		min-height: 250px;
	}
}

/* About Us Page - Additional Responsive */
@media (max-width: 768px) {
	.about-us-page-content .hero-section {
		padding: 80px 0 60px;
		min-height: 400px;
	}

	.about-us-page-content .hero-title {
		font-size: 32px;
	}

	.about-us-page-content .hero-subtitle {
		font-size: 16px;
	}

	.mission-vision-section {
		padding: 50px 0;
	}

	.mission-vision-grid {
		grid-template-columns: 1fr;
		gap: 25px;
	}

	.mission-card,
	.vision-card {
		padding: 30px 20px;
	}

	.mission-title,
	.vision-title {
		font-size: 24px;
	}

	.expert-teachers-section {
		padding: 50px 0;
	}

	.teachers-grid {
		grid-template-columns: 1fr;
		gap: 25px;
	}

	.teacher-card {
		padding: 25px 20px;
	}

	.teacher-image {
		width: 150px;
		height: 150px;
		margin: 0 auto 20px;
	}

	.teacher-name {
		font-size: 20px;
	}

	.teacher-designation {
		font-size: 15px;
	}

	.teacher-meta {
		font-size: 14px;
	}
}

@media (max-width: 600px) {
	.about-us-page-content .hero-section {
		padding: 60px 0 40px;
		min-height: 300px;
	}

	.about-us-page-content .hero-title {
		font-size: 28px;
	}

	.mission-vision-section {
		padding: 40px 0;
	}

	.mission-card,
	.vision-card {
		padding: 25px 15px;
	}

	.mission-title,
	.vision-title {
		font-size: 22px;
	}

	.mission-text,
	.vision-text {
		font-size: 14px;
	}

	.expert-teachers-section {
		padding: 40px 0;
	}

	.teachers-grid {
		gap: 20px;
	}

	.teacher-card {
		padding: 20px 15px;
	}

	.teacher-image {
		width: 120px;
		height: 120px;
	}

	.teacher-name {
		font-size: 18px;
	}

	.teacher-bio {
		font-size: 14px;
	}
}

/* Our Courses Page - Additional Responsive */
@media (max-width: 768px) {
	.our-courses-page-content .hero-section {
		padding: 80px 0 60px;
		min-height: 400px;
	}

	.our-courses-page-content .hero-title {
		font-size: 32px;
	}

	.our-courses-page-content .hero-subtitle {
		font-size: 16px;
	}
}

@media (max-width: 600px) {
	.our-courses-page-content .hero-section {
		padding: 60px 0 40px;
		min-height: 300px;
	}

	.our-courses-page-content .hero-title {
		font-size: 28px;
	}

	.our-courses-page-content .hero-subtitle {
		font-size: 14px;
	}
}

/* Single Course Page - Additional Responsive */
@media (max-width: 768px) {
	.single-course-page {
		padding: 30px 0;
	}

	.single-course-page .row {
		flex-direction: column;
		gap: 30px;
	}

	.single-course-page .content-column {
		width: 100%;
		order: 1;
	}

	.single-course-page .sidebar-column {
		width: 100%;
		order: 2;
	}

	.single-course-page .entry-title {
		font-size: 28px;
	}

	.single-course-page .entry-content {
		font-size: 16px;
	}

	.course-booking-section {
		padding: 40px 0;
	}

	.booking-form-wrapper {
		padding: 30px 20px;
	}

	.booking-form-title {
		font-size: 24px;
	}

	.booking-form-description {
		font-size: 15px;
	}
}

@media (max-width: 600px) {
	.single-course-page {
		padding: 20px 0;
	}

	.single-course-page .entry-title {
		font-size: 24px;
		line-height: 1.3;
	}

	.single-course-page .entry-content {
		font-size: 15px;
	}

	.single-course-page .entry-content p {
		margin-bottom: 15px;
	}

	.course-booking-section {
		padding: 30px 0;
	}

	.booking-form-wrapper {
		padding: 25px 15px;
	}

	.booking-form-title {
		font-size: 22px;
	}

	.booking-form-description {
		font-size: 14px;
	}

	.course-booking-form .form-row {
		margin-bottom: 15px;
	}

	.course-booking-form label {
		font-size: 14px;
	}

	.course-booking-form .form-control {
		padding: 10px 12px;
		font-size: 14px;
	}
}

/* Payment Pages - Responsive */
@media (max-width: 768px) {
	.payment-success-page,
	.payment-cancelled-page {
		padding: 60px 0;
		min-height: 50vh;
	}

	.payment-success-wrapper,
	.payment-cancelled-wrapper {
		padding: 40px 30px;
	}

	.payment-success-wrapper .success-icon,
	.payment-cancelled-wrapper .cancelled-icon {
		width: 80px;
		height: 80px;
		font-size: 40px;
		margin-bottom: 20px;
	}

	.payment-success-wrapper .success-title,
	.payment-cancelled-wrapper .cancelled-title {
		font-size: 28px;
	}

	.payment-success-wrapper .success-message,
	.payment-cancelled-wrapper .cancelled-message {
		font-size: 16px;
	}
}

@media (max-width: 600px) {
	.payment-success-page,
	.payment-cancelled-page {
		padding: 40px 0;
		min-height: 40vh;
	}

	.payment-success-wrapper,
	.payment-cancelled-wrapper {
		padding: 30px 20px;
	}

	.payment-success-wrapper .success-icon,
	.payment-cancelled-wrapper .cancelled-icon {
		width: 70px;
		height: 70px;
		font-size: 35px;
		margin-bottom: 15px;
	}

	.payment-success-wrapper .success-title,
	.payment-cancelled-wrapper .cancelled-title {
		font-size: 24px;
	}

	.payment-success-wrapper .success-message,
	.payment-cancelled-wrapper .cancelled-message {
		font-size: 15px;
		line-height: 1.6;
	}

	.payment-success-wrapper .course-name,
	.payment-cancelled-wrapper .course-name,
	.payment-success-wrapper .session-id {
		font-size: 14px;
		padding: 15px;
		margin: 15px 0;
		background-color: #f5f5f5;
		border-radius: 5px;
	}

	.success-actions,
	.cancelled-actions {
		display: flex;
		flex-direction: column;
		gap: 15px;
		margin-top: 30px;
	}

	.success-actions .btn,
	.cancelled-actions .btn {
		width: 100%;
	}
}

/* Home Page - Additional Responsive Improvements */
@media (max-width: 480px) {
	.hero-title {
		font-size: 28px;
	}

	.hero-subtitle {
		font-size: 14px;
	}

	.section-title {
		font-size: 24px;
	}

	.section-description {
		font-size: 14px;
	}

	.courses-grid,
	.schedule-grid,
	.why-choose-grid,
	.testimonials-grid {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.course-card,
	.schedule-card,
	.why-choose-card {
		padding: 20px 15px;
	}

	.stats-grid {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.stat-number {
		font-size: 36px;
	}

	.stat-label {
		font-size: 14px;
	}

	.founder-image {
		width: 250px;
		height: 250px;
	}

	.founder-subtitle {
		font-size: 20px;
	}
}

/* General Template Improvements */
@media (max-width: 768px) {
	.container {
		padding: 0 20px;
	}

	.section-header {
		margin-bottom: 40px;
	}

	.section-title {
		font-size: 28px;
		margin-bottom: 15px;
	}

	.section-description {
		font-size: 16px;
	}
}

@media (max-width: 600px) {
	.container {
		padding: 0 15px;
	}

	.section-header {
		margin-bottom: 30px;
	}

	.section-title {
		font-size: 24px;
		margin-bottom: 12px;
	}

	.section-description {
		font-size: 14px;
	}
}

@media (max-width: 480px) {
	.container {
		padding: 0 12px;
	}

	.section-header {
		margin-bottom: 25px;
	}

	.section-title {
		font-size: 22px;
	}

	.section-description {
		font-size: 13px;
	}
}

