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

body {
	font-family: 'Inter', sans-serif;
	line-height: 1.6;
	color: #333;
	overflow-x: hidden;
}

.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

/* Navigation */
.navbar {
	position: fixed;
	top: 0;
	width: 100%;
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(10px);
	z-index: 1000;
	padding: 1rem 0;
	transition: all 0.3s ease;
	box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
}

.nav-container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

.nav-logo {
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.2rem;
	font-weight: 700;
	color: #1a1a1a;
	text-decoration: none;
}

.nav-logo img {
	height: 40px;
	width: auto;
}

.nav-menu {
	display: flex;
	list-style: none;
	gap: 2rem;
}

.nav-menu a {
	text-decoration: none;
	color: #333;
	font-weight: 500;
	transition: color 0.3s ease;
	position: relative;
}

.nav-menu a:hover,
.nav-menu a.active {
	color: #007bff;
}

.nav-menu a::after {
	content: '';
	position: absolute;
	bottom: -5px;
	left: 0;
	width: 0;
	height: 2px;
	background: #007bff;
	transition: width 0.3s ease;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
	width: 100%;
}

.hamburger {
	display: none;
	flex-direction: column;
	cursor: pointer;
}

.hamburger span {
	width: 25px;
	height: 3px;
	background: #333;
	margin: 3px 0;
	transition: 0.3s;
}

/* Hero Section */
.hero {
	height: 100vh;
	background-image: linear-gradient(
			103deg,
			rgba(18, 18, 17, 0.78) 2.03%,
			rgba(18, 18, 17, 0.6) 58.46%,
			rgba(18, 18, 17, 0) 90.36%
		),
		url('../img/h1.webp');
	background-repeat: no-repeat;
	background-position: center top;
	background-size: cover;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	color: white;
}

.hero-content {
	max-width: 800px;
	padding: 0 20px;
}

.hero h1 {
	font-size: 3.5rem;
	font-weight: 700;
	margin-bottom: 1.5rem;
	line-height: 1.2;
}

.hero p {
	font-size: 1.25rem;
	margin-bottom: 2rem;
	opacity: 0.95;
}

.hero-buttons {
	display: flex;
	gap: 1rem;
	justify-content: center;
	flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
	padding: 1rem 2rem;
	border: none;
	border-radius: 8px;
	font-size: 1.1rem;
	font-weight: 600;
	text-decoration: none;
	transition: all 0.3s ease;
	cursor: pointer;
}

.btn-primary {
	background: #007bff;
	color: white;
}

.btn-primary:hover {
	background: #0056b3;
	transform: translateY(-2px);
}

.btn-secondary {
	background: transparent;
	color: white;
	border: 2px solid white;
}

.btn-secondary:hover {
	background: white;
	color: #333;
}

/* Page Header */
.page-header {
	padding: 120px 0 80px;
	background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
	text-align: center;
}

.page-header h1 {
	font-size: 3rem;
	font-weight: 700;
	margin-bottom: 1rem;
	color: #1a1a1a;
}

.page-header p {
	font-size: 1.25rem;
	color: #6c757d;
	max-width: 600px;
	margin: 0 auto;
}

/* Sections */
section {
	padding: 80px 0;
}

.section-header {
	text-align: center;
	margin-bottom: 4rem;
}

.section-header h2 {
	font-size: 2.5rem;
	font-weight: 700;
	margin-bottom: 1rem;
	color: #1a1a1a;
}

.section-header p {
	font-size: 1.125rem;
	color: #6c757d;
	max-width: 600px;
	margin: 0 auto;
}

/* About Section */
.about {
	background: #f8f9fa;
}

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

.about-card {
	background: white;
	padding: 2rem;
	border-radius: 12px;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
	text-align: center;
	transition: transform 0.3s ease;
}

.about-card:hover {
	transform: translateY(-5px);
}

.about-icon {
	font-size: 3rem;
	margin-bottom: 1rem;
}

.about-card h3 {
	font-size: 1.5rem;
	font-weight: 600;
	margin-bottom: 1rem;
	color: #1a1a1a;
}

.about-card p {
	color: #6c757d;
	line-height: 1.7;
}

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

.course-card {
	background: white;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s ease;
}

.course-card:hover {
	transform: translateY(-5px);
}

.course-image {
	height: 200px;
	overflow: hidden;
}

.course-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.course-content {
	padding: 1.5rem;
}

.course-content h3 {
	font-size: 1.25rem;
	font-weight: 600;
	margin-bottom: 1rem;
	color: #1a1a1a;
}

.course-content p {
	color: #6c757d;
	margin-bottom: 1rem;
	line-height: 1.6;
}

.course-meta {
	display: flex;
	gap: 1rem;
	flex-wrap: wrap;
}

.course-meta span {
	background: #e9ecef;
	padding: 0.25rem 0.75rem;
	border-radius: 20px;
	font-size: 0.875rem;
	color: #495057;
}

/* Detailed Courses */
.courses-detailed {
	padding: 80px 0;
}

.courses-grid-detailed {
	display: flex;
	flex-direction: column;
	gap: 4rem;
}

.course-detailed {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 3rem;
	align-items: center;
}

.course-detailed.reverse {
	direction: rtl;
}

.course-detailed.reverse > * {
	direction: ltr;
}

.course-image-large {
	border-radius: 12px;
	overflow: hidden;
}

.course-image-large img {
	width: 100%;
	height: auto;
	object-fit: cover;
}

.course-info h2 {
	font-size: 2rem;
	font-weight: 700;
	margin-bottom: 1rem;
	color: #1a1a1a;
}

.course-info p {
	font-size: 1.125rem;
	color: #6c757d;
	margin-bottom: 2rem;
	line-height: 1.7;
}

.course-highlights {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	margin-bottom: 2rem;
}

.highlight-item {
	color: #495057;
}

.tech-stack h3 {
	font-size: 1.25rem;
	font-weight: 600;
	margin-bottom: 1rem;
	color: #1a1a1a;
}

.tech-stack ul {
	list-style: none;
	padding-left: 0;
}

.tech-stack li {
	padding: 0.5rem 0;
	border-left: 3px solid #007bff;
	padding-left: 1rem;
	margin-bottom: 0.5rem;
	color: #495057;
}

/* Success Stories */
.success-stories {
	background: #f8f9fa;
}

.stories-content blockquote {
	font-size: 1.25rem;
	font-style: italic;
	color: #495057;
	margin-bottom: 1rem;
	padding: 1.5rem;
	background: white;
	border-left: 4px solid #007bff;
	border-radius: 8px;
	margin-bottom: 2rem;
}

.stories-content cite {
	font-weight: 600;
	color: #007bff;
	font-size: 1rem;
	display: block;
	margin-bottom: 2rem;
}

/* Enrollment Process */
.process-steps {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
}

.step-card {
	text-align: center;
	padding: 2rem;
}

.step-number {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	background: #007bff;
	color: white;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
	font-weight: 700;
	margin: 0 auto 1rem;
}

.step-card h3 {
	font-size: 1.25rem;
	font-weight: 600;
	margin-bottom: 1rem;
	color: #1a1a1a;
}

.step-card p {
	color: #6c757d;
	line-height: 1.6;
}

/* FAQ Section */
.faq {
	background: #f8f9fa;
}

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

.faq-item {
	background: white;
	border-radius: 8px;
	margin-bottom: 1rem;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.faq-question {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 1.5rem;
	cursor: pointer;
	transition: background 0.3s ease;
}

.faq-question:hover {
	background: #f8f9fa;
}

.faq-question h3 {
	font-size: 1.125rem;
	font-weight: 600;
	color: #1a1a1a;
}

.faq-toggle {
	font-size: 1.5rem;
	font-weight: 300;
	color: #007bff;
	transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
	transform: rotate(45deg);
}

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

.faq-item.active .faq-answer {
	padding: 0 1.5rem 1.5rem;
	max-height: 200px;
}

.faq-answer p {
	color: #6c757d;
	line-height: 1.6;
}

/* Contact Section */
.contact-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 3rem;
	align-items: start;
}

.contact-info {
	display: flex;
	flex-direction: column;
	gap: 2rem;
}

.contact-item h3 {
	font-size: 1.25rem;
	font-weight: 600;
	margin-bottom: 0.5rem;
	color: #1a1a1a;
}

.contact-item p {
	color: #6c757d;
	line-height: 1.6;
}

.contact-form {
	background: #f8f9fa;
	padding: 2rem;
	border-radius: 12px;
}

.form-group {
	margin-bottom: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
	width: 100%;
	padding: 1rem;
	border: 1px solid #ddd;
	border-radius: 8px;
	font-size: 1rem;
	transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
	outline: none;
	border-color: #007bff;
}

.checkbox-container {
	display: flex;
	align-items: flex-start;
	gap: 0.75rem;
	cursor: pointer;
	font-size: 0.95rem;
	color: #495057;
	line-height: 1.5;
}

.checkbox-container input[type='checkbox'] {
	width: auto;
	margin: 0;
	accent-color: #007bff;
}

.checkbox-container:hover {
	color: #333;
}

.btn-submit {
	background: #007bff;
	color: white;
	padding: 1rem 2rem;
	border: none;
	border-radius: 8px;
	font-size: 1.1rem;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	width: 100%;
}

.btn-submit:hover {
	background: #0056b3;
	transform: translateY(-2px);
}

/* Cookie Modal */
.cookie-modal {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 10000;
	transform: translateY(100%);
	transition: transform 0.3s ease;
}

.cookie-modal.show {
	transform: translateY(0);
}

.cookie-content {
	background: white;
	margin: 2rem;
	padding: 2rem;
	border-radius: 12px;
	text-align: center;
	box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
}

.cookie-content h3 {
	font-size: 1.5rem;
	font-weight: 600;
	margin-bottom: 1rem;
	color: #1a1a1a;
}

.cookie-content p {
	color: #6c757d;
	margin-bottom: 2rem;
	line-height: 1.6;
}

.cookie-buttons {
	display: flex;
	gap: 1rem;
	justify-content: center;
	flex-wrap: wrap;
}

.btn-accept,
.btn-decline {
	padding: 0.75rem 1.5rem;
	border: none;
	border-radius: 8px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
}

.btn-accept {
	background: #007bff;
	color: white;
}

.btn-accept:hover {
	background: #0056b3;
}

.btn-decline {
	background: #6c757d;
	color: white;
}

.btn-decline:hover {
	background: #545b62;
}

/* Legal Pages */
.legal-page {
	padding: 120px 0 80px;
	max-width: 800px;
	margin: 0 auto;
}

.legal-page h1 {
	font-size: 1.5rem;
	font-weight: 700;
	margin-bottom: 1rem;
	color: #1a1a1a;
}

.last-updated {
	color: #6c757d;
	font-style: italic;
	margin-bottom: 2rem;
}

.legal-content h2 {
	font-size: 1.5rem;
	font-weight: 600;
	margin: 2rem 0 1rem;
	color: #1a1a1a;
}

.legal-content h3 {
	font-size: 1.25rem;
	font-weight: 600;
	margin: 1.5rem 0 0.5rem;
	color: #1a1a1a;
}

.legal-content p {
	color: #495057;
	line-height: 1.7;
	margin-bottom: 1rem;
}

.legal-content ul,
.legal-content ol {
	margin: 1rem 0;
	padding-left: 2rem;
}

.legal-content li {
	color: #495057;
	line-height: 1.6;
	margin-bottom: 0.5rem;
}

/* Footer */
.footer {
	background: #1a1a1a;
	color: white;
	padding: 3rem 0 1rem;
}

.footer-content {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 2rem;
}

.footer-section h3 {
	font-size: 1.25rem;
	font-weight: 600;
	margin-bottom: 1rem;
}

.footer-section p {
	color: #ccc;
	line-height: 1.6;
}

.footer-section ul {
	list-style: none;
}

.footer-section ul li {
	margin-bottom: 0.5rem;
}

.footer-section ul li a {
	color: #ccc;
	text-decoration: none;
	transition: color 0.3s ease;
}

.footer-section ul li a:hover {
	color: #007bff;
}

.footer-bottom {
	border-top: 1px solid #333;
	margin-top: 2rem;
	padding-top: 2rem;
	text-align: center;
	color: #ccc;
}

/* Animations */
.scroll-animate {
	opacity: 0;
	transform: translateY(30px);
	transition: all 0.8s ease;
}

.scroll-animate.animate {
	opacity: 1;
	transform: translateY(0);
}

/* Success Message */
.success-message {
	background: #d4edda;
	color: #155724;
	padding: 1rem;
	border-radius: 8px;
	margin-bottom: 1rem;
	text-align: center;
	display: none;
}

/* Success Modal */
.success-modal {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.8);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 10000;
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease;
}

.success-modal.show {
	opacity: 1;
	visibility: visible;
}

.success-modal-content {
	background: white;
	padding: 2rem;
	border-radius: 12px;
	text-align: center;
	max-width: 400px;
	width: 90%;
	transform: scale(0.7);
	transition: transform 0.3s ease;
}

.success-modal.show .success-modal-content {
	transform: scale(1);
}

.success-modal h3 {
	color: #28a745;
	margin-bottom: 1rem;
	font-size: 1.5rem;
}

.success-modal p {
	color: #6c757d;
	margin-bottom: 1.5rem;
	line-height: 1.6;
}

.loading-spinner {
	width: 40px;
	height: 40px;
	border: 4px solid #f3f3f3;
	border-top: 4px solid #007bff;
	border-radius: 50%;
	animation: spin 1s linear infinite;
	margin: 0 auto 1rem;
}

@keyframes spin {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}

/* Responsive Design */
@media (max-width: 768px) {
	.hamburger {
		display: flex;
	}

	.nav-menu {
		position: fixed;
		left: -100%;
		top: 70px;
		flex-direction: column;
		background-color: white;
		width: 100%;
		text-align: center;
		transition: 0.3s;
		box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
		padding: 2rem 0;
	}

	.nav-menu.active {
		left: 0;
	}

	.hero h1 {
		font-size: 2.5rem;
	}

	.hero p {
		font-size: 1.125rem;
	}

	.hero-buttons {
		flex-direction: column;
		align-items: center;
	}

	.page-header h1 {
		font-size: 2rem;
	}

	.section-header h2 {
		font-size: 2rem;
	}

	.about-grid {
		grid-template-columns: 1fr;
	}

	.courses-grid {
		grid-template-columns: 1fr;
	}

	.course-detailed {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.course-detailed.reverse {
		direction: ltr;
	}

	.contact-content {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.process-steps {
		grid-template-columns: 1fr;
	}

	.cookie-content {
		margin: 1rem;
		padding: 1.5rem;
	}

	.cookie-buttons {
		flex-direction: column;
	}

	.footer-content {
		grid-template-columns: 1fr;
		text-align: center;
	}
}

@media (max-width: 480px) {
	.hero h1 {
		font-size: 2rem;
	}

	.hero p {
		font-size: 1rem;
	}

	.btn-primary,
	.btn-secondary {
		padding: 0.75rem 1.5rem;
		font-size: 1rem;
	}

	.course-image-large {
		height: 250px;
	}

	.legal-page {
		padding: 100px 20px 60px;
	}
}
