/* Reset and Base Styles */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	line-height: 1.6;
	color: #333;
}

/* Header Styles */
.header {
	background: linear-gradient(90deg, #1a365d, #40e0d0);
	padding: 1rem;
	position: fixed;
	width: 100%;
	top: 0;
	z-index: 1000;
}

.header-content {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin: 0 auto;
	/* padding: 1rem 0; */
	max-width: 1200px;
}

.logo {
	color: white;
	font-size: 1.5rem;
	font-weight: bold;
	cursor: pointer;
}

.nav-links li a:hover {
	color: #40e0d0;
}

.nav-links {
	display: flex;
	gap: 1rem;
	list-style: none;
}

.nav-links a {
	color: white;
	text-decoration: none;
	font-weight: 500;
	position: relative;
	padding: 0.5rem 0;
}

.nav-links a::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 2px;
	background: var(--gold);
	transition: width 0.3s;
}

.nav-links a:hover::after {
	width: 100%;
}
.nav-toggle {
	display: none;
}

/* Hero Section */
.hero {
	background: linear-gradient(rgba(26, 54, 93, 0.8), rgba(26, 54, 93, 0.8)),
		url('assets/hero.jpg');

	background-size: cover;
	background-position: center;
	height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	color: white;
	padding: 2rem;
}

.hero-content h1 {
	font-size: 3rem;
	margin-bottom: 1rem;
}

.cta-button {
	display: inline-block;
	padding: 1rem 2rem;
	background: #40e0d0;
	color: #1a365d;
	text-decoration: none;
	border-radius: 5px;
	font-weight: bold;
	transition: background 0.3s;
}

.cta-button:hover {
	background: #2db3a3;
}

/* Sections Common Styles */
section {
	padding: 5rem 2rem;
}

section h2 {
	text-align: center;
	margin-bottom: 3rem;
	color: #1a365d;
}

/* Courses Section */
.courses {
	background: linear-gradient(135deg, #1a365d, #40e0d0);
	padding: 6rem 2rem;
	color: white;
}

.courses h2 {
	text-align: center;
	margin-bottom: 4rem;
	font-size: 2.5rem;
	color: white;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.course-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: 2.5rem;
	max-width: 1200px;
	margin: 0 auto;
}

.course-card {
	background: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(10px);
	padding: 2.5rem;
	border-radius: 20px;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s, box-shadow 0.3s;
	border: 1px solid rgba(255, 255, 255, 0.2);
}

.course-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.course-icon {
	font-size: 3rem;
	margin-bottom: 1.5rem;
	text-align: center;
}

.course-card h3 {
	font-size: 1.8rem;
	margin-bottom: 1rem;
	color: #40e0d0;
}

.course-details {
	list-style: none;
	margin: 1.5rem 0;
	padding: 0;
}

.course-details li {
	margin-bottom: 0.8rem;
	padding-left: 1.5rem;
	position: relative;
}

.course-details li::before {
	content: '→';
	position: absolute;
	left: 0;
	color: #40e0d0;
}

.course-info {
	display: flex;
	justify-content: space-between;
	margin-top: 1.5rem;
	padding-top: 1.5rem;
	border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.course-info span {
	font-size: 0.9rem;
	color: #40e0d0;
}

/* Benefits Section */
.benefits {
	background: #f5f5f5;
	padding: 6rem 2rem;
	position: relative;
	overflow: hidden;
}

.benefits::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(
		45deg,
		rgba(255, 207, 139, 0.1) 0%,
		rgba(255, 207, 139, 0.3) 100%
	);
	z-index: 1;
}

.benefits h2 {
	text-align: center;
	margin-bottom: 4rem;
	font-size: 2.5rem;
	color: #1a365d;
	position: relative;
	z-index: 2;
}

.benefits-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 2rem;
	max-width: 1200px;
	margin: 0 auto;
	position: relative;
	z-index: 2;
}

.benefit-card {
	background: white;
	padding: 2.5rem;
	border-radius: 15px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s;
	text-align: left;
	position: relative;
	overflow: hidden;
}

.benefit-card::after {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	width: 100px;
	height: 100px;
	background: linear-gradient(135deg, transparent 50%, rgba(64, 224, 208, 0.1));
	border-radius: 0 15px 0 50%;
}

.benefit-card:hover {
	transform: translateY(-5px);
}

.benefit-icon {
	font-size: 2.5rem;
	margin-bottom: 1.5rem;
}

.benefit-card h3 {
	font-size: 1.5rem;
	color: #1a365d;
	margin-bottom: 1rem;
}

.benefit-details {
	list-style: none;
	margin: 1.5rem 0;
	padding: 0;
}

.benefit-details li {
	margin-bottom: 0.8rem;
	padding-left: 1.5rem;
	position: relative;
	color: #666;
}

.benefit-details li::before {
	content: '•';
	position: absolute;
	left: 0;
	color: #40e0d0;
	font-weight: bold;
}

/* Stats Section */
.stats {
	background: linear-gradient(135deg, #f5f5f5, #e0e0e0);
}

.stats-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 2rem;
	max-width: 1200px;
	margin: 0 auto;
	text-align: center;
}

.stat-card h3 {
	font-size: 2.5rem;
	color: #1a365d;
}

/* Contact Form Section */
.contact {
	background: white;
}

.contact-container {
	max-width: 1200px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 2rem;
}

/* .form-container {
	padding: 2rem;
} */

.form-group {
	margin-bottom: 1.5rem;
}

.form-group label {
	display: block;
	margin-bottom: 0.5rem;
	color: #1a365d;
}

.form-group input,
.form-group select {
	width: 100%;
	padding: 0.8rem;
	border: 1px solid #ddd;
	border-radius: 5px;
}

.submit-button {
	background: #1a365d;
	color: white;
	padding: 1rem 2rem;
	border: none;
	border-radius: 5px;
	cursor: pointer;
	width: 100%;
	transition: background 0.3s;
}

.submit-button:hover {
	background: #2a4a7f;
}

/* Map Section */
.map {
	height: 100%;
	/* border-radius: 1rem; */
	/* overflow: hidden; */
}

@media (max-width: 768px) {
	.map {
		height: 400px;
	}
}

.contact-map {
	position: relative;
	/* margin-top: 2rem; */
	/* border-radius: 10px; */
	/* overflow: hidden; */
}

.map-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;

	background-color: rgba(0, 0, 0, 0.1);
	z-index: 1;
	cursor: pointer;
}
.iti {
	width: 100%;
}

/* FAQ Section */
/* .faq {
	background: linear-gradient(135deg, #f5f5f5, #e0e0e0);
	padding: 6rem 2rem;
	position: relative;
	overflow: hidden;
}

.faq::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(
		45deg,
		rgba(64, 224, 208, 0.1) 0%,
		rgba(26, 54, 93, 0.1) 100%
	);
	z-index: 1;
}

.faq h2 {
	text-align: center;
	margin-bottom: 4rem;
	font-size: 2.5rem;
	color: #1a365d;
	position: relative;
	z-index: 2;
} */

/* .faq-container {
	max-width: 1000px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
	gap: 2rem;
	position: relative;
	z-index: 2;
} */

/* .faq-item {
	background: white;
	padding: 2rem;
	border-radius: 15px;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease;
	border-left: 5px solid #40e0d0;
} */

/* .faq-item:hover {
	transform: translateY(-5px);
	box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
	border-left-color: #1a365d;
} */

/* .faq-item h3 {
	color: #1a365d;
	font-size: 1.3rem;
	margin-bottom: 1rem;
	font-weight: 600;
}

.faq-item p {
	color: #666;
	line-height: 1.6;
} */

/* FAQ Section */
.faq {
	background: linear-gradient(135deg, #f5f5f5, #e0e0e0);
	padding: 6rem 2rem;
	position: relative;
	overflow: hidden;
}

.faq::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(
		45deg,
		rgba(64, 224, 208, 0.1) 0%,
		rgba(26, 54, 93, 0.1) 100%
	);
	z-index: 1;
}

.faq h2 {
	text-align: center;
	margin-bottom: 4rem;
	font-size: 2.5rem;
	color: #1a365d;
	position: relative;
	z-index: 2;
}

.faq-container {
	max-width: 1000px;
	margin: 0 auto;
	display: grid;
	grid-template-rows: repeat(auto-fit, minmax(100px, 1fr));
	gap: 2rem;
	position: relative;
	z-index: 2;
}

.faq-item {
	background: white;
	padding: 2rem;
	border-radius: 15px;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease;
	border-left: 5px solid #40e0d0;
	overflow: hidden;
}

.faq-item:hover {
	transform: translateY(-5px);
	box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
	border-left-color: #1a365d;
}

.faq-item h3 {
	color: #1a365d;
	font-size: 1.3rem;
	margin-bottom: 1rem;
	font-weight: 600;
	cursor: pointer;
	position: relative;
	padding-right: 30px;
	transition: color 0.3s ease;
}

.faq-item h3:hover {
	color: #40e0d0;
}

.faq-item h3::after {
	content: '+';
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	font-size: 1.5rem;
	color: #40e0d0;
	transition: transform 0.3s ease;
}

.faq-item h3.active::after {
	transform: translateY(-50%) rotate(45deg);
}

.faq-item p {
	color: #666;
	line-height: 1.6;
	transition: all 0.3s ease;
	overflow: hidden;
}

/* Footer Styles */
.footer {
	background: linear-gradient(135deg, #1a365d, #102a4c);
	color: white;
	padding: 5rem 2rem 1rem;
	position: relative;
}

.footer::after {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	width: 300px;
	height: 300px;
	background: radial-gradient(
		circle,
		rgba(64, 224, 208, 0.1) 0%,
		transparent 70%
	);
	pointer-events: none;
}

.footer-content {
	max-width: 1200px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 3rem;
}

.footer-section {
	position: relative;
}

.footer-section h3 {
	color: #40e0d0;
	font-size: 1.5rem;
	margin-bottom: 1.5rem;
	position: relative;
	padding-bottom: 0.5rem;
}

.footer-section h3::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 50px;
	height: 3px;
	background: #40e0d0;
	border-radius: 2px;
}

.footer-section.company-info p {
	margin-bottom: 1.5rem;
	line-height: 1.6;
}

.contact-info p {
	margin-bottom: 0.5rem;
	font-size: 0.9rem;
}

.footer-section ul {
	list-style: none;
	padding: 0;
}

.footer-section ul li {
	margin-bottom: 0.8rem;
}

.footer-section ul li a {
	color: #fff;
	text-decoration: none;
	transition: color 0.3s ease;
	position: relative;
	padding-left: 1.2rem;
}

.footer-section ul li a::before {
	content: '→';
	position: absolute;
	left: 0;
	color: #40e0d0;
}

.footer-section ul li a:hover {
	color: #40e0d0;
}

.footer-bottom {
	margin-top: 4rem;
	padding-top: 2rem;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	text-align: center;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 1rem;
}

.certifications {
	display: flex;
	gap: 2rem;
}

.certifications span {
	font-size: 0.9rem;
	opacity: 0.8;
}

@media (max-width: 768px) {
	.faq-container {
		grid-template-columns: 1fr;
	}

	.footer-content {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.footer-bottom {
		flex-direction: column;
		text-align: center;
	}

	.certifications {
		justify-content: center;
	}
}

/* Cookie Consent */
.cookie-consent {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	background: rgba(26, 54, 93, 0.95);
	color: white;
	padding: 1rem;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 1rem;
	z-index: 1000;
	display: none;
}

.cookie-consent button {
	background: #40e0d0;
	color: #1a365d;
	border: none;
	padding: 0.5rem 1rem;
	border-radius: 5px;
	cursor: pointer;
}

/* Responsive Design */
@media (max-width: 768px) {
	.nav-toggle {
		display: block;
		background: none;
		border: none;
		cursor: pointer;
		padding: 10px;
	}

	.nav-links a {
		color: #40e0d0;
	}
	.hamburger {
		display: block;
		position: relative;
		width: 30px;
		height: 3px;
		background: #1a365d;
		transition: all 0.3s ease-in-out;
	}

	.hamburger::before,
	.hamburger::after {
		content: '';
		position: absolute;
		width: 30px;
		height: 3px;
		background: #1a365d;
		transition: all 0.3s ease-in-out;
	}

	.hamburger::before {
		transform: translateY(-10px) translateX(-15px);
	}

	.hamburger::after {
		transform: translateY(10px) translateX(-15px);
	}

	.nav-toggle.active .hamburger {
		background: transparent;
		transform: translateX(-15px);
	}

	.nav-toggle.active .hamburger::before {
		transform: rotate(45deg);
	}

	.nav-toggle.active .hamburger::after {
		transform: rotate(-45deg);
	}

	.nav {
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		background: white;
		box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
		max-height: 0;
		overflow: hidden;

		transition: max-height 0.3s ease-out;
	}

	/* .hidden {
		display: none;
	} */

	.nav.active {
		max-height: 400px;
	}

	.nav-links {
		flex-direction: column;
		padding: 20px;
	}

	.nav-links li {
		margin: 10px 0;
	}

	.hero-content h1 {
		font-size: 2rem;
	}

	.contact-container {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 768px) {
	.course-grid,
	.benefits-grid {
		grid-template-columns: 1fr;
	}

	.course-card,
	.benefit-card {
		padding: 1.5rem;
	}

	.courses h2,
	.benefits h2 {
		font-size: 2rem;
		margin-bottom: 2rem;
	}
}

/* Styles for Privacy Policy and Terms of Use pages */
.privacy-policy,
.terms-of-use {
	padding: 4rem 0;
}

.policy-content,
.terms-content {
	max-width: 800px;
	margin: 0 auto;
}

.policy-content h2,
.terms-content h2 {
	color: #40e0d0;
	margin-top: 2rem;
	margin-bottom: 1rem;
}

.policy-content p,
.terms-content p {
	margin-bottom: 1rem;
}

.terms-content p a {
	color: var(--primary-color);
}

.policy-content ul,
.terms-content ul {
	list-style-type: disc;
	margin-left: 2rem;
	margin-bottom: 1rem;
}

.policy-content li,
.terms-content li {
	margin-bottom: 0.5rem;
}
.page-header {
	padding: 6rem 0 2rem;
	text-align: center;
}

.page-header h1 {
	font-size: 2.5rem;
	animation: fadeInUp 1s ease;
	margin-top: 30px;
}

.page-hero {
	background-color: var(--primary-color);
	color: var(--primary);
	text-align: center;
	padding: 10px;
	margin-top: 115px;
}

.page-hero h1 {
	font-size: 3rem;

	margin-bottom: 1rem;
}

.page-hero p {
	font-size: 1.2rem;
	max-width: 600px;
	margin: 0 auto;
}

/* Responsive Design */
@media (max-width: 768px) {
	.page-header h1 {
		font-size: 24px;
	}
}

/* Cookie popup */
.cookie-popup {
	position: fixed;
	bottom: 20px;
	left: 20px;
	right: 20px;
	background-color: #102a4c;
	color: white;
	padding: 1rem;
	border-radius: 20px;
	text-align: center;
	z-index: 1000;
	display: none;
}

.cookie-popup a {
	color: #2db3a3;
}

.cookie-popup.show {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.cookie-popup p {
	margin: 0;
	padding-right: 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
	.cookie-popup.show {
		gap: 8px;
		flex-direction: column;
	}
}

.btn {
	background-color: #2db3a3;
	color: white;
	border: none;
	padding: 0.75rem 1.5rem;
	border-radius: 0.5rem;
	cursor: pointer;
	font-weight: 500;
	transition: background-color 0.3s ease;
}

.btn:hover {
	background-color: var(--secondary);
}
