/* =============================================
   Preloader Override
   ============================================= */
.preloader {
	display: none !important;
}

body,
.page-wrapper {
	opacity: 1 !important;
	visibility: visible !important;
	display: block !important;
}

/* =============================================
   FAQ Section Styles
   ============================================= */
.faq-section {
	padding: 100px 0;
	background: #0a1f13;
	position: relative;
	overflow: hidden;
}

.faq-section::before {
	content: '';
	position: absolute;
	top: -150px;
	right: -150px;
	width: 400px;
	height: 400px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(65, 197, 117, 0.08) 0%, transparent 70%);
	pointer-events: none;
}

.faq-section::after {
	content: '';
	position: absolute;
	bottom: -100px;
	left: -100px;
	width: 300px;
	height: 300px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(255, 133, 63, 0.06) 0%, transparent 70%);
	pointer-events: none;
}

.faq-section .sec-title {
	margin-bottom: 50px;
}

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

.faq-item {
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 12px;
	margin-bottom: 16px;
	overflow: hidden;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item:hover {
	border-color: rgba(65, 197, 117, 0.3);
	background: rgba(255, 255, 255, 0.05);
}

.faq-item.active {
	border-color: rgba(65, 197, 117, 0.5);
	background: rgba(65, 197, 117, 0.05);
	box-shadow: 0 8px 32px rgba(65, 197, 117, 0.1);
}

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

.faq-question h3 {
	font-size: 18px;
	font-weight: 600;
	color: #ffffff;
	margin: 0;
	line-height: 1.4;
	transition: color 0.3s ease;
}

.faq-item.active .faq-question h3 {
	color: #41C575;
}

.faq-question .faq-number {
	font-size: 14px;
	font-weight: 700;
	color: #41C575;
	background: rgba(65, 197, 117, 0.1);
	min-width: 36px;
	height: 36px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	transition: all 0.3s ease;
}

.faq-item.active .faq-question .faq-number {
	background: #41C575;
	color: #0a1f13;
}

.faq-toggle-icon {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	border: 2px solid rgba(255, 255, 255, 0.15);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	transition: all 0.4s ease;
	position: relative;
}

.faq-toggle-icon::before,
.faq-toggle-icon::after {
	content: '';
	position: absolute;
	background: #ffffff;
	transition: all 0.4s ease;
}

.faq-toggle-icon::before {
	width: 14px;
	height: 2px;
}

.faq-toggle-icon::after {
	width: 2px;
	height: 14px;
}

.faq-item.active .faq-toggle-icon {
	border-color: #41C575;
	background: rgba(65, 197, 117, 0.15);
	transform: rotate(45deg);
}

.faq-item.active .faq-toggle-icon::before,
.faq-item.active .faq-toggle-icon::after {
	background: #41C575;
}

.faq-answer {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1), padding 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer-inner {
	padding: 0 28px 24px 80px;
}

.faq-answer-inner p {
	font-size: 16px;
	line-height: 1.7;
	color: rgba(255, 255, 255, 0.65);
	margin: 0;
}

.faq-item.active .faq-answer {
	max-height: 300px;
}

.faq-left-content {
	position: relative;
}

.faq-left-content .faq-highlight-box {
	background: linear-gradient(135deg, #41C575 0%, #2d9e5a 100%);
	border-radius: 16px;
	padding: 40px 32px;
	margin-top: 30px;
	position: relative;
	overflow: hidden;
}

.faq-highlight-box::before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	width: 120px;
	height: 120px;
	border-radius: 0 0 0 100%;
	background: rgba(255, 255, 255, 0.1);
}

.faq-highlight-box .faq-highlight-icon {
	width: 60px;
	height: 60px;
	background: rgba(255, 255, 255, 0.2);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 20px;
}

.faq-highlight-box .faq-highlight-icon i {
	font-size: 24px;
	color: #fff;
}

.faq-highlight-box h4 {
	color: #fff;
	font-size: 22px;
	font-weight: 700;
	margin-bottom: 12px;
}

.faq-highlight-box p {
	color: rgba(255, 255, 255, 0.85);
	font-size: 15px;
	line-height: 1.6;
	margin-bottom: 20px;
}

.faq-highlight-box .faq-contact-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: #fff;
	color: #0a1f13;
	padding: 12px 28px;
	border-radius: 50px;
	font-weight: 600;
	font-size: 15px;
	text-decoration: none;
	transition: all 0.3s ease;
}

.faq-highlight-box .faq-contact-btn:hover {
	background: #0a1f13;
	color: #41C575;
	transform: translateY(-2px);
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

@media (max-width: 991px) {
	.faq-section {
		padding: 70px 0;
	}

	.faq-left-content {
		margin-bottom: 40px;
	}

	.faq-answer-inner {
		padding: 0 20px 20px 20px;
	}
}

@media (max-width: 575px) {
	.faq-question {
		padding: 18px 20px;
	}

	.faq-question h3 {
		font-size: 15px;
	}

	.faq-answer-inner {
		padding: 0 20px 18px 20px;
	}

	.faq-answer-inner p {
		font-size: 14px;
	}
}

/* =============================================
   Certificate Section Styles
   ============================================= */
.certificate-item {
	margin-bottom: 30px;
	position: relative;
	overflow: hidden;
	border-radius: 10px;
	box-shadow: 0 10px 30px rgba(0,0,0,0.1);
	transition: all 0.3s ease;
}

.certificate-item:hover {
	transform: translateY(-10px);
}

.certificate-thumb img {
	width: 100%;
	transition: all 0.5s ease;
}

.certificate-item:hover .certificate-thumb img {
	transform: scale(1.1);
}

.certificate-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.5);
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transition: all 0.3s ease;
}

.certificate-item:hover .certificate-overlay {
	opacity: 1;
}

.certificate-overlay i {
	color: #fff;
	font-size: 30px;
}
