/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root {
	--background-color: #140f1a;
	--default-color: #d1d5db;
	--heading-color: #f3f4f6;
	--accent-color: #26acdc; /* dark red */
	--surface-color: #261b2d;
	--contrast-color: #ffffff;
	--bg-color: #331a3c;
	--nav-color: #f3f4f6;
	--nav-hover-color: #85fb24;
	--nav-mobile-background-color: #2c1b2d;
	--nav-dropdown-background-color: #371a3c;
	--nav-dropdown-color: #f3f4f6;
	--nav-dropdown-hover-color: #5dfb24;
	--light-text: #9ca3af;
	--shadow: 0 4px 12px rgba(172, 38, 220, 0.3);
	--transition: all 0.3s ease;
}

/* Color Presets */

.light-background {
	--background-color: #2c1b2d;
	--surface-color: #331a3c;
}

.dark-background {
	--background-color: #180f1a;
	--default-color: #d1d5db;
	--heading-color: #f3f4f6;
	--surface-color: #291b2d;
	--contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
	scroll-behavior: smooth;
}

html {
	overflow-x: hidden;
	margin: 0;
	padding: 0;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
	color: var(--default-color);
	background-color: var(--background-color);
	font-family: var(--default-font);
	overflow-x: hidden;
	margin: 0;
	padding: 0;
}

a {
	color: var(--accent-color);
	text-decoration: none;
	transition: 0.3s;
}

a:hover {
	color: color-mix(in srgb, var(--accent-color), transparent 25%);
	text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	color: var(--heading-color);
	font-family: var(--heading-font);
}

/* PHP Email Form Messages
------------------------------*/
.sitename {
	border-radius: 50%;
}
.php-email-form .error-message {
	display: none;
	background: #df1529;
	color: #ffffff;
	text-align: left;
	padding: 15px;
	margin-bottom: 24px;
	font-weight: 600;
}

.php-email-form .sent-message {
	display: none;
	color: #ffffff;
	background: #059652;
	text-align: center;
	padding: 15px;
	margin-bottom: 24px;
	font-weight: 600;
}

.php-email-form .loading {
	display: none;
	background: var(--surface-color);
	text-align: center;
	padding: 15px;
	margin-bottom: 24px;
}

.php-email-form .loading:before {
	content: '';
	display: inline-block;
	width: 24px;
	height: 24px;
	margin: 0 10px -6px 0;
	border: 3px solid var(--accent-color);
	border-top-color: var(--surface-color);
	animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
	}
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
	color: var(--contrast-color);
	background-color: var(--surface-color);
	padding: 15px 0;
	transition: all 0.5s;
	z-index: 997;
	box-shadow: var(--shadow);
}

.header .logo {
	line-height: 1;
}

.header .logo img {
	max-height: 36px;
	margin-right: 8px;
}

.header .logo h1 {
	font-size: 30px;
	margin: 0;
	font-weight: 400;
	color: var(--heading-color);
}

.header .btn-getstarted,
.header .btn-getstarted:focus {
	color: var(--contrast-color);
	background: var(--accent-color);
	font-size: 14px;
	padding: 8px 25px;
	margin: 0 0 0 30px;
	transition: 0.3s;
}

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
	color: var(--contrast-color);
	background: color-mix(in srgb, var(--accent-color), transparent 15%);
}

@media (max-width: 1200px) {
	.header .logo {
		order: 1;
	}

	.header .btn-getstarted {
		order: 2;
		margin: 0 15px 0 0;
		padding: 6px 15px;
	}

	.header .navmenu {
		order: 3;
	}
}

.scrolled .header {
	box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */
@media (min-width: 1200px) {
	.navmenu {
		padding: 0;
	}

	.navmenu ul {
		margin: 0;
		padding: 0;
		display: flex;
		list-style: none;
		align-items: center;
	}

	.navmenu li {
		position: relative;
	}

	.navmenu a,
	.navmenu a:focus {
		color: var(--nav-color);
		padding: 8px 11px;
		font-size: 16px;
		font-family: var(--nav-font);
		font-weight: 400;
		display: flex;
		align-items: center;
		justify-content: space-between;
		white-space: nowrap;
		transition: 0.3s;
	}

	.navmenu a i,
	.navmenu a:focus i {
		font-size: 12px;
		line-height: 0;
		margin-left: 5px;
		transition: 0.3s;
	}

	.navmenu li a {
		border: 1px solid var(--accent-color);
		border-radius: 1rem;
		margin: 0 1rem;
	}

	.navmenu li:hover > a,
	.navmenu .active,
	.navmenu .active:focus {
		color: var(--nav-hover-color);
		border-color: var(--default-color);
	}

	.navmenu .dropdown ul {
		margin: 0;
		padding: 10px 0;
		background: var(--nav-dropdown-background-color);
		display: block;
		position: absolute;
		visibility: hidden;
		left: 14px;
		top: 130%;
		opacity: 0;
		transition: 0.3s;

		z-index: 99;
		box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
	}

	.navmenu .dropdown ul li {
		min-width: 200px;
	}

	.navmenu .dropdown ul a {
		padding: 10px 20px;
		font-size: 15px;
		text-transform: none;
		color: var(--nav-dropdown-color);
	}

	.navmenu .dropdown ul a i {
		font-size: 12px;
	}

	.navmenu .dropdown ul a:hover,
	.navmenu .dropdown ul .active:hover,
	.navmenu .dropdown ul li:hover > a {
		color: var(--nav-dropdown-hover-color);
	}

	.navmenu .dropdown:hover > ul {
		opacity: 1;
		top: 100%;
		visibility: visible;
	}

	.navmenu .dropdown .dropdown ul {
		top: 0;
		left: -90%;
		visibility: hidden;
	}

	.navmenu .dropdown .dropdown:hover > ul {
		opacity: 1;
		top: 0;
		left: -100%;
		visibility: visible;
	}
}

/* Navmenu - Mobile */
@media (max-width: 1199px) {
	.mobile-nav-toggle {
		color: var(--nav-color);
		font-size: 28px;
		line-height: 0;
		margin-right: 10px;
		cursor: pointer;
		transition: color 0.3s;
	}

	.navmenu {
		padding: 0;
		z-index: 9997;
	}

	.navmenu ul {
		display: none;
		list-style: none;
		position: absolute;
		inset: 60px 20px 20px 20px;
		padding: 10px 0;
		margin: 0;

		background-color: var(--nav-mobile-background-color);
		overflow-y: auto;
		transition: 0.3s;
		z-index: 9998;
		box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
	}

	.navmenu a,
	.navmenu a:focus {
		color: var(--nav-dropdown-color);
		padding: 10px 20px;
		font-family: var(--nav-font);
		font-size: 17px;
		font-weight: 500;
		display: flex;
		align-items: center;
		justify-content: space-between;
		white-space: nowrap;
		transition: 0.3s;
	}

	.navmenu a i,
	.navmenu a:focus i {
		font-size: 12px;
		line-height: 0;
		margin-left: 5px;
		width: 30px;
		height: 30px;
		display: flex;
		align-items: center;
		justify-content: center;

		transition: 0.3s;
		background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
	}

	.navmenu a i:hover,
	.navmenu a:focus i:hover {
		background-color: var(--accent-color);
		color: var(--contrast-color);
	}

	.navmenu a:hover,
	.navmenu .active,
	.navmenu .active:focus {
		color: var(--nav-dropdown-hover-color);
	}

	.navmenu .active i,
	.navmenu .active:focus i {
		background-color: var(--accent-color);
		color: var(--contrast-color);
		transform: rotate(180deg);
	}

	.navmenu .dropdown ul {
		position: static;
		display: none;
		z-index: 99;
		padding: 10px 0;
		margin: 10px 20px;
		background-color: var(--nav-dropdown-background-color);
		border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
		box-shadow: none;
		transition: all 0.5s ease-in-out;
	}

	.navmenu .dropdown ul ul {
		background-color: rgba(33, 37, 41, 0.1);
	}

	.navmenu .dropdown > .dropdown-active {
		display: block;
		background-color: rgba(33, 37, 41, 0.03);
	}

	.mobile-nav-active {
		overflow: hidden;
	}

	.mobile-nav-active .mobile-nav-toggle {
		color: #fff;
		position: absolute;
		font-size: 32px;
		top: 15px;
		right: 15px;
		margin-right: 0;
		z-index: 9999;
	}

	.mobile-nav-active .navmenu {
		position: fixed;
		overflow: hidden;
		inset: 0;
		background: rgba(33, 37, 41, 0.8);
		transition: 0.3s;
	}

	.mobile-nav-active .navmenu > ul {
		display: block;
	}
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
	background-color: var(--heading-color);
	font-size: 14px;
	position: relative;
}

/* Dark theme for policy pages main content */
.policy-page .about.section {
	background-color: #1a1a1a;
	color: #ffffff;
}

.policy-page .about.section h2,
.policy-page .about.section h3,
.policy-page .about.section h4,
.policy-page .about.section h5,
.policy-page .about.section h6 {
	color: #ffffff;
}

.policy-page .about.section p {
	color: #e0e0e0;
}

.policy-page .about.section .section-title h2 {
	color: #ffffff;
}

.policy-page .about.section .section-title p {
	color: #e0e0e0;
}

.policy-page .about.section .content h3 {
	color: #ffffff;
	border-bottom: 2px solid #3b82f6;
	padding-bottom: 10px;
	margin-bottom: 20px;
}

.policy-page .about.section .content p {
	color: #e0e0e0;
	line-height: 1.6;
	margin-bottom: 15px;
}

.policy-page .about.section .content ul {
	color: #e0e0e0;
}

.policy-page .about.section .content li {
	color: #e0e0e0;
	margin-bottom: 8px;
}

/* Ensure footer stays white on policy pages */
.policy-page .footer {
	background-color: var(--heading-color);
}

.policy-page .footer .footer-links ul a:hover {
	color: var(--accent-color) !important;
}

.footer .footer-newsletter {
	background-color: color-mix(in srgb, var(--default-color), transparent 97%);
	padding: 50px 0;
}

.footer .footer-newsletter h4 {
	font-size: 24px;
}

.footer .footer-newsletter .newsletter-form {
	margin-top: 30px;
	margin-bottom: 15px;
	padding: 6px 8px;
	position: relative;
	background-color: var(--surface-color);
	border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
	box-shadow: 0px 2px 25px rgba(0, 0, 0, 0.1);
	display: flex;
	transition: 0.3s;
}

.footer .footer-newsletter .newsletter-form:focus-within {
	border-color: var(--accent-color);
}

.footer .footer-newsletter .newsletter-form input[type='email'] {
	border: 0;
	padding: 4px;
	width: 100%;
	background-color: var(--surface-color);
	color: var(--default-color);
}

.footer .footer-newsletter .newsletter-form input[type='email']:focus-visible {
	outline: none;
}

.footer .footer-newsletter .newsletter-form input[type='submit'] {
	border: 0;
	font-size: 16px;
	padding: 0 20px;
	margin: -7px -8px -7px 0;
	background: var(--accent-color);
	color: var(--contrast-color);
	transition: 0.3s;
}

.footer .footer-newsletter .newsletter-form input[type='submit']:hover {
	background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.footer .footer-top {
	padding-top: 50px;
}

.footer .social-links a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border: 1px solid rgba(255, 255, 255, 0.3);
	font-size: 16px;
	color: #ffffff;
	margin-right: 10px;
	transition: 0.3s;
}

.footer .social-links a:hover {
	color: var(--accent-color);
	border-color: var(--accent-color);
	background-color: rgba(255, 255, 255, 0.1);
}

.footer h4 {
	font-size: 16px;
	font-weight: bold;
	position: relative;
	padding-bottom: 12px;
	color: #ffffff;
}

.footer .footer-links {
	margin-bottom: 30px;
}

.footer .footer-links ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.footer .footer-links ul i {
	margin-right: 3px;
	font-size: 12px;
	line-height: 0;
	color: #ffffff;
}

.footer .footer-links ul li {
	padding: 10px 0;
	display: flex;
	align-items: center;
}

.footer .footer-links ul li:first-child {
	padding-top: 0;
}

.footer .footer-links ul a {
	display: inline-block;
	color: #ffffff;
	line-height: 1;
}

.footer .footer-links ul a:hover {
	color: var(--accent-color);
}

.footer .footer-about a {
	color: #ffffff;
	font-size: 24px;
	font-weight: 600;
	font-family: var(--heading-font);
}

.footer .footer-contact p {
	margin-bottom: 5px;
	color: #ffffff;
}

.footer .copyright {
	padding: 25px 0;
	border-top: 1px solid
		color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .copyright p {
	margin-bottom: 0;
	color: #ffffff;
}

.footer .credits {
	margin-top: 6px;
	font-size: 13px;
	color: #ffffff;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
	position: fixed;
	inset: 0;
	z-index: 999999;
	overflow: hidden;
	background: var(--background-color);
	transition: all 0.6s ease-out;
}

#preloader:before {
	content: '';
	position: fixed;
	top: calc(50% - 30px);
	left: calc(50% - 30px);
	border: 6px solid #ffffff;
	border-color: var(--accent-color) transparent var(--accent-color) transparent;
	width: 60px;
	height: 60px;
	animation: animate-preloader 1.5s linear infinite;
}

@keyframes animate-preloader {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
	}
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
	position: fixed;
	visibility: hidden;
	opacity: 0;
	right: 15px;
	bottom: 15px;
	z-index: 99999;
	background-color: var(--accent-color);
	width: 40px;
	height: 40px;
	transition: all 0.4s;
}

.scroll-top i {
	font-size: 24px;
	color: var(--contrast-color);
	line-height: 0;
}

.scroll-top:hover {
	background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
	color: var(--contrast-color);
}

.scroll-top.active {
	visibility: visible;
	opacity: 1;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
	[data-aos-delay] {
		transition-delay: 0 !important;
	}
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
	color: var(--default-color);
	background-color: var(--background-color);
	padding: 20px 0;
	position: relative;
}

.page-title h1 {
	font-size: 28px;
	font-weight: 700;
	margin: 0;
}

.page-title .breadcrumbs ol {
	display: flex;
	flex-wrap: wrap;
	list-style: none;
	padding: 0 0 10px 0;
	margin: 0;
	font-size: 14px;
	font-weight: 400;
}

.page-title .breadcrumbs ol li + li {
	padding-left: 10px;
}

.page-title .breadcrumbs ol li + li::before {
	content: '/';
	display: inline-block;
	padding-right: 10px;
	color: color-mix(in srgb, var(--default-color), transparent 70%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
.section {
	color: var(--contrast-color);
	background-color: var(--background-color);
	padding: 60px 0;
	scroll-margin-top: 90px;
	overflow: clip;
}

/* Dark Theme Cards */
.dark-card {
	background: linear-gradient(135deg, var(--surface-color) 0%, #3c1a1a 100%);
	border: 1px solid rgba(220, 38, 38, 0.2);
	border-radius: 16px;
	padding: 24px;
	box-shadow: 0 8px 32px rgba(220, 38, 38, 0.15);
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.dark-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg, var(--accent-color) 0%, #fbbf24 100%);
}

.dark-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 16px 48px rgba(220, 38, 38, 0.25);
	border-color: rgba(251, 191, 36, 0.4);
}

.dark-card h3 {
	color: var(--heading-color);
	font-weight: 700;
	margin-bottom: 16px;
	font-size: 1.25rem;
}

.dark-card p {
	color: var(--light-text);
	line-height: 1.6;
	margin-bottom: 0;
}

.dark-card .card-icon {
	width: 60px;
	height: 60px;
	background: linear-gradient(135deg, var(--accent-color) 0%, #fbbf24 100%);
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 20px;
	box-shadow: 0 4px 16px rgba(220, 38, 38, 0.3);
}

.dark-card .card-icon i {
	font-size: 24px;
	color: var(--contrast-color);
}

/* New Section Styles */
.hero-modern {
	background: linear-gradient(135deg, #1a0f0f 0%, #2d1b1b 50%, #3c1a1a 100%);
	position: relative;
	overflow: hidden;
}

.hero-modern::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: radial-gradient(
			circle at 30% 20%,
			rgba(220, 38, 38, 0.1) 0%,
			transparent 50%
		),
		radial-gradient(
			circle at 70% 80%,
			rgba(251, 191, 36, 0.1) 0%,
			transparent 50%
		);
	pointer-events: none;
}

.hero-content-modern {
	position: relative;
	z-index: 2;
}

.hero-title-modern {
	font-size: 3.5rem;
	font-weight: 800;
	background: linear-gradient(135deg, #f3f4f6 0%, #d1d5db 50%, #9ca3af 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	line-height: 1.1;
	margin-bottom: 1.5rem;
}

.hero-subtitle-modern {
	font-size: 1.25rem;
	color: var(--light-text);
	margin-bottom: 2rem;
	line-height: 1.6;
}

.cta-button-modern {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	padding: 16px 32px;
	background: linear-gradient(135deg, var(--accent-color) 0%, #fbbf24 100%);
	color: var(--contrast-color);
	text-decoration: none;
	border-radius: 50px;
	font-weight: 600;
	font-size: 1.1rem;
	transition: all 0.3s ease;
	box-shadow: 0 8px 32px rgba(220, 38, 38, 0.3);
	position: relative;
	overflow: hidden;
}

.cta-button-modern::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(
		90deg,
		transparent,
		rgba(255, 255, 255, 0.2),
		transparent
	);
	transition: left 0.5s ease;
}

.cta-button-modern:hover::before {
	left: 100%;
}

.cta-button-modern:hover {
	transform: translateY(-3px);
	box-shadow: 0 12px 48px rgba(220, 38, 38, 0.4);
}

/* Features Section Modern */
.features-modern {
	background: linear-gradient(180deg, #2d1b1b 0%, #1a0f0f 100%);
	position: relative;
}

.features-modern::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23dc2626" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="%23fbbf24" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="%23dc2626" opacity="0.05"/><circle cx="10" cy="60" r="0.5" fill="%23fbbf24" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
	opacity: 0.3;
	pointer-events: none;
}

.feature-card-modern {
	background: linear-gradient(145deg, #2d1b1b 0%, #3c1a1a 100%);
	border: 1px solid rgba(220, 38, 38, 0.2);
	border-radius: 20px;
	padding: 32px;
	height: 100%;
	position: relative;
	overflow: hidden;
	transition: all 0.4s ease;
}

.feature-card-modern::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(
		90deg,
		var(--accent-color) 0%,
		#fbbf24 50%,
		var(--accent-color) 100%
	);
	background-size: 200% 100%;
	animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
	0% {
		background-position: -200% 0;
	}
	100% {
		background-position: 200% 0;
	}
}

.feature-card-modern:hover {
	transform: translateY(-12px) scale(1.02);
	border-color: rgba(251, 191, 36, 0.4);
	box-shadow: 0 20px 60px rgba(220, 38, 38, 0.3);
}

.feature-icon-modern {
	width: 80px;
	height: 80px;
	background: linear-gradient(135deg, var(--accent-color) 0%, #fbbf24 100%);
	border-radius: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 24px;
	position: relative;
	overflow: hidden;
}

.feature-icon-modern::before {
	content: '';
	position: absolute;
	top: -50%;
	left: -50%;
	width: 200%;
	height: 200%;
	background: linear-gradient(
		45deg,
		transparent,
		rgba(255, 255, 255, 0.1),
		transparent
	);
	transform: rotate(45deg);
	transition: all 0.6s ease;
}

.feature-card-modern:hover .feature-icon-modern::before {
	animation: shine 0.6s ease-in-out;
}

@keyframes shine {
	0% {
		transform: translateX(-100%) translateY(-100%) rotate(45deg);
	}
	100% {
		transform: translateX(100%) translateY(100%) rotate(45deg);
	}
}

.feature-icon-modern i {
	font-size: 32px;
	color: var(--contrast-color);
	position: relative;
	z-index: 2;
}

.feature-title-modern {
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--background-color);
	margin-bottom: 16px;
	line-height: 1.3;
}

.feature-text-modern {
	color: var(--light-text);
	line-height: 1.7;
	font-size: 1.05rem;
}

/* Testimonials Modern */
.testimonials-modern {
	background: linear-gradient(135deg, #1a0f0f 0%, #2d1b1b 50%, #3c1a1a 100%);
	position: relative;
}

.testimonial-card-modern {
	background: linear-gradient(145deg, #2d1b1b 0%, #3c1a1a 100%);
	border: 1px solid rgba(220, 38, 38, 0.2);
	border-radius: 24px;
	padding: 40px;
	text-align: center;
	position: relative;
	overflow: hidden;
	transition: all 0.4s ease;
}

.testimonial-card-modern::before {
	content: '"';
	position: absolute;
	top: 20px;
	left: 30px;
	font-size: 4rem;
	color: rgba(220, 38, 38, 0.2);
	font-family: serif;
	line-height: 1;
}

.testimonial-card-modern:hover {
	transform: translateY(-8px);
	border-color: rgba(251, 191, 36, 0.4);
	box-shadow: 0 20px 60px rgba(220, 38, 38, 0.2);
}

.testimonial-text-modern {
	font-size: 1.2rem;
	color: var(--light-text);
	line-height: 1.7;
	margin-bottom: 24px;
	font-style: italic;
	position: relative;
	z-index: 2;
}

.testimonial-author-modern {
	font-weight: 600;
	color: var(--heading-color);
	font-size: 1.1rem;
}

/* About Section Modern */
.about-modern {
	background: linear-gradient(180deg, #3c1a1a 0%, #2d1b1b 100%);
	position: relative;
}

.about-content-modern {
	position: relative;
	z-index: 2;
}

.about-title-modern {
	font-size: 3rem;
	font-weight: 800;
	color: var(--heading-color);
	line-height: 1.2;
	margin-bottom: 1.5rem;
}

.about-text-modern {
	font-size: 1.2rem;
	color: var(--light-text);
	line-height: 1.7;
	margin-bottom: 2rem;
}

/* Leadership Journey Modern */
.leadership-modern {
	background: linear-gradient(135deg, #1a0f0f 0%, #2d1b1b 50%, #3c1a1a 100%);
	position: relative;
}

.leadership-card-modern {
	background: linear-gradient(145deg, #2d1b1b 0%, #3c1a1a 100%);
	border: 1px solid rgba(220, 38, 38, 0.2);
	border-radius: 20px;
	padding: 32px;
	text-align: center;
	position: relative;
	overflow: hidden;
	transition: all 0.4s ease;
	height: 100%;
}

.leadership-card-modern::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg, var(--accent-color) 0%, #fbbf24 100%);
}

.leadership-card-modern:hover {
	transform: translateY(-10px);
	border-color: rgba(251, 191, 36, 0.4);
	box-shadow: 0 20px 60px rgba(220, 38, 38, 0.3);
}

.leadership-step-modern {
	font-size: 0.9rem;
	font-weight: 600;
	color: var(--accent-color);
	text-transform: uppercase;
	letter-spacing: 0.1em;
	margin-bottom: 16px;
}

.leadership-title-modern {
	font-size: 1.4rem;
	font-weight: 700;
	color: var(--heading-color);
	margin-bottom: 16px;
}

.leadership-text-modern {
	color: var(--light-text);
	line-height: 1.6;
	font-size: 1rem;
}

/* FAQ Modern */
.faq-modern {
	background: linear-gradient(180deg, #291b2d 0%, #180f1a 100%);
	position: relative;
}

.faq-item-modern {
	background: linear-gradient(145deg, #2d1b1b 0%, #3c1a1a 100%);
	border: 1px solid rgba(220, 38, 38, 0.2);
	border-radius: 16px;
	margin-bottom: 16px;
	overflow: hidden;
	transition: all 0.3s ease;
}

.faq-item-modern:hover {
	border-color: rgba(251, 191, 36, 0.4);
	box-shadow: 0 8px 32px rgba(220, 38, 38, 0.2);
}

.faq-question-modern {
	padding: 24px;
	background: transparent;
	border: none;
	width: 100%;
	text-align: left;
	font-size: 1.1rem;
	font-weight: 600;
	color: var(--heading-color);
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	align-items: center;
	transition: all 0.3s ease;
}

.faq-question-modern:hover {
	color: var(--accent-color);
}

.faq-answer-modern {
	padding: 0 24px 24px;
	color: var(--light-text);
	line-height: 1.6;
	font-size: 1rem;
}

/* Contact Modern */
.contact-modern {
	background: linear-gradient(135deg, #1a0f0f 0%, #2d1b1b 50%, #3c1a1a 100%);
	position: relative;
}

.contact-form-modern {
	background: linear-gradient(145deg, #2d1b1b 0%, #3c1a1a 100%);
	border: 1px solid rgba(220, 38, 38, 0.2);
	border-radius: 24px;
	padding: 40px;
	position: relative;
	overflow: hidden;
}

.contact-form-modern::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(90deg, var(--accent-color) 0%, #fbbf24 100%);
}

.form-group-modern {
	margin-bottom: 24px;
}

.form-label-modern {
	display: block;
	font-weight: 600;
	color: var(--heading-color);
	margin-bottom: 8px;
	font-size: 1rem;
}

.form-input-modern {
	width: 100%;
	padding: 16px 20px;
	background: rgba(26, 15, 15, 0.5);
	border: 1px solid rgba(220, 38, 38, 0.3);
	border-radius: 12px;
	color: var(--heading-color);
	font-size: 1rem;
	transition: all 0.3s ease;
}

.form-input-modern:focus {
	outline: none;
	border-color: var(--accent-color);
	box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

.form-textarea-modern {
	min-height: 120px;
	resize: vertical;
}

.submit-button-modern {
	background: linear-gradient(135deg, var(--accent-color) 0%, #fbbf24 100%);
	color: var(--contrast-color);
	border: none;
	padding: 16px 32px;
	border-radius: 50px;
	font-size: 1.1rem;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	box-shadow: 0 8px 32px rgba(220, 38, 38, 0.3);
}

.submit-button-modern:hover {
	transform: translateY(-2px);
	box-shadow: 0 12px 48px rgba(220, 38, 38, 0.4);
}

/* Mobile overflow fix */
@media (max-width: 768px) {
	* {
		box-sizing: border-box;
	}

	.container,
	.container-fluid {
		max-width: 100%;
		overflow-x: hidden;
	}

	.row {
		margin-left: -15px;
		margin-right: -15px;
	}

	.col-12,
	.col-lg-6,
	.col-lg-4,
	.col-lg-3,
	.col-md-6,
	.col-md-4,
	.col-md-3 {
		padding-left: 15px;
		padding-right: 15px;
	}

	.feature-card-modern,
	.dark-card,
	.testimonial-card-modern,
	.leadership-card-modern,
	.faq-item-modern {
		margin-left: 0;
		margin-right: 0;
	}

	.hero-modern,
	.features-modern,
	.testimonials-modern,
	.about-modern,
	.leadership-modern,
	.faq-modern,
	.contact-modern {
		padding-left: 15px;
		padding-right: 15px;
	}
}

/* Extra small devices */
@media (max-width: 480px) {
	.container,
	.container-fluid {
		padding-left: 10px;
		padding-right: 10px;
	}

	.row {
		margin-left: -10px;
		margin-right: -10px;
	}

	.col-12,
	.col-lg-6,
	.col-lg-4,
	.col-lg-3,
	.col-md-6,
	.col-md-4,
	.col-md-3 {
		padding-left: 10px;
		padding-right: 10px;
	}

	.hero-modern,
	.features-modern,
	.testimonials-modern,
	.about-modern,
	.leadership-modern,
	.faq-modern,
	.contact-modern {
		padding-left: 10px;
		padding-right: 10px;
	}
}

@media (max-width: 1199px) {
	section,
	.section {
		scroll-margin-top: 66px;
	}
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
	text-align: center;
	padding-bottom: 60px;
	position: relative;
}

.section-title h2 {
	font-size: 32px;
	font-weight: 700;
	margin-bottom: 15px;
}

.section-title p {
	margin-bottom: 0;
}

/*--------------------------------------------------------------
# Hero Section - Modern Design
--------------------------------------------------------------*/
.hero-section {
	position: relative;
	min-height: 100vh;
	display: flex;
	align-items: center;
	overflow: hidden;
	background: linear-gradient(135deg, #0ea5a3 0%, #16a34a 100%);
}

.hero-background {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
}

.hero-gradient-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(
		135deg,
		rgba(14, 165, 163, 0.85) 0%,
		rgba(22, 163, 74, 0.85) 50%,
		rgba(255, 255, 255, 0.12) 100%
	);
}

.hero-particles {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: radial-gradient(
			circle at 20% 80%,
			rgba(255, 255, 255, 0.1) 0%,
			transparent 50%
		),
		radial-gradient(
			circle at 80% 20%,
			rgba(255, 255, 255, 0.1) 0%,
			transparent 50%
		),
		radial-gradient(
			circle at 40% 40%,
			rgba(255, 255, 255, 0.05) 0%,
			transparent 50%
		);
	animation: float 20s ease-in-out infinite;
}

@keyframes float {
	0%,
	100% {
		transform: translateY(0px) rotate(0deg);
	}
	50% {
		transform: translateY(-20px) rotate(180deg);
	}
}

.hero-content {
	position: relative;
	z-index: 2;
	color: white;
}

.hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: rgba(255, 255, 255, 0.15);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 50px;
	padding: 12px 24px;
	margin-bottom: 24px;
	font-size: 14px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.badge-icon {
	color: #ffd700;
	font-size: 16px;
}

.hero-title {
	font-size: 3.5rem;
	font-weight: 800;
	line-height: 1.2;
	margin-bottom: 24px;
	text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.gradient-text {
	background: linear-gradient(45deg, #ffd700, #ffed4e, #ffd700);
	background-size: 200% 200%;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	animation: gradientShift 3s ease-in-out infinite;
}

@keyframes gradientShift {
	0%,
	100% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
}

.hero-description {
	font-size: 1.25rem;
	line-height: 1.6;
	margin-bottom: 32px;
	opacity: 0.95;
	max-width: 500px;
}

.hero-actions {
	display: flex;
	gap: 16px;
	margin-bottom: 48px;
	flex-wrap: wrap;
}

.btn-primary-modern {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	background: linear-gradient(45deg, #10b981, #0ea5a3);
	color: white;
	padding: 16px 32px;
	border-radius: 50px;
	text-decoration: none;
	font-weight: 600;
	font-size: 16px;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
	box-shadow: 0 8px 25px rgba(16, 185, 129, 0.35);
}

.btn-primary-modern:hover {
	transform: translateY(-2px);
	box-shadow: 0 12px 35px rgba(14, 165, 163, 0.45);
	color: white;
}

.btn-outline-modern {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	background: transparent;
	color: white;
	padding: 16px 32px;
	border: 2px solid rgba(255, 255, 255, 0.3);
	border-radius: 50px;
	text-decoration: none;
	font-weight: 600;
	font-size: 16px;
	transition: all 0.3s ease;
	backdrop-filter: blur(10px);
}

.btn-outline-modern:hover {
	background: rgba(255, 255, 255, 0.1);
	border-color: rgba(255, 255, 255, 0.5);
	transform: translateY(-2px);
	color: white;
}

.btn-ripple {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 0;
	height: 0;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.3);
	transform: translate(-50%, -50%);
	transition:
		width 0.6s,
		height 0.6s;
}

.btn-primary-modern:hover .btn-ripple {
	width: 300px;
	height: 300px;
}

.hero-stats {
	display: flex;
	gap: 48px;
	flex-wrap: wrap;
}

.stat-item {
	text-align: center;
}

.stat-number {
	font-size: 2.5rem;
	font-weight: 800;
	color: #ffd700;
	line-height: 1;
	margin-bottom: 8px;
}

.stat-label {
	font-size: 14px;
	font-weight: 500;
	opacity: 0.9;
	text-transform: uppercase;
	letter-spacing: 1px;
}

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

.hero-image-container {
	position: relative;
	max-width: 500px;
	margin: 0 auto;
}

.hero-image-wrapper {
	position: relative;
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.hero-image {
	width: 100%;
	height: auto;
	display: block;
	transition: transform 0.3s ease;
}

.image-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(
		45deg,
		rgba(102, 126, 234, 0.3),
		rgba(118, 75, 162, 0.3)
	);
	opacity: 0;
	transition: opacity 0.3s ease;
}

.hero-image-wrapper:hover .image-overlay {
	opacity: 1;
}

.hero-image-wrapper:hover .hero-image {
	transform: scale(1.05);
}

.floating-card {
	position: absolute;
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(10px);
	border-radius: 16px;
	padding: 16px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
	display: flex;
	align-items: center;
	gap: 12px;
	min-width: 160px;
	animation: floatCard 6s ease-in-out infinite;
}

.floating-card.card-1 {
	top: 10%;
	right: -10%;
	animation-delay: 0s;
}

.floating-card.card-2 {
	top: 30%;
	left: -15%;
	animation-delay: 1.5s;
}

.floating-card.card-3 {
	bottom: 30%;
	right: -10%;
	animation-delay: 3s;
}

.floating-card.card-4 {
	bottom: 10%;
	left: -15%;
	animation-delay: 4.5s;
}

@keyframes floatCard {
	0%,
	100% {
		transform: translateY(0px);
	}
	50% {
		transform: translateY(-10px);
	}
}

.card-icon {
	width: 40px;
	height: 40px;
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 18px;
	color: white;
}

.card-1 .card-icon {
	background: linear-gradient(45deg, #ff6b6b, #ee5a24);
}
.card-2 .card-icon {
	background: linear-gradient(45deg, #4ecdc4, #44a08d);
}
.card-3 .card-icon {
	background: linear-gradient(45deg, #45b7d1, #96c93d);
}
.card-4 .card-icon {
	background: linear-gradient(45deg, #f093fb, #f5576c);
}

.card-content h4 {
	font-size: 14px;
	font-weight: 700;
	margin: 0 0 4px 0;
	color: #333;
}

.card-content p {
	font-size: 12px;
	margin: 0;
	color: #666;
}

@media (max-width: 768px) {
	html,
	body {
		overflow-x: hidden;
		width: 100%;
		margin: 0;
		padding: 0;
	}

	.container,
	.container-fluid {
		padding-left: 15px;
		padding-right: 15px;
		margin-left: auto;
		margin-right: auto;
	}

	.row {
		margin-left: 0;
		margin-right: 0;
	}

	.col-12,
	.col-lg-6,
	.col-lg-4,
	.col-lg-3,
	.col-md-6,
	.col-md-4,
	.col-md-3 {
		padding-left: 15px;
		padding-right: 15px;
	}

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

	.hero-description {
		font-size: 1.1rem;
	}

	.hero-actions {
		flex-direction: column;
		align-items: flex-start;
	}

	.hero-stats {
		gap: 24px;
	}

	.stat-number {
		font-size: 2rem;
	}

	.floating-card {
		position: static;
		margin: 16px auto;
		max-width: 200px;
	}
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about ul {
	list-style: none;
	padding: 0;
}

.about ul li {
	padding-bottom: 5px;
	display: flex;
	align-items: center;
}

.about ul i {
	font-size: 20px;
	padding-right: 4px;
	color: var(--accent-color);
}

.about .read-more {
	background: var(--accent-color);
	color: var(--contrast-color);
	font-family: var(--heading-font);
	font-weight: 600;
	font-size: 16px;
	letter-spacing: 1.2px;
	padding: 12px 32px;
	transition:
		background-color 0.3s ease,
		box-shadow 0.3s ease;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
	cursor: pointer;
	user-select: none;
	text-decoration: none;
}

.about .read-more i {
	font-size: 18px;
	margin-left: 8px;
	line-height: 0;
	transition: transform 0.3s ease;
}

.about .read-more:hover {
	background: color-mix(in srgb, var(--accent-color), transparent 20%);
	box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.about .read-more:hover i {
	transform: translateX(6px);
}

/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
#features {
	color: var(--contrast-color);
}

.features .icon-box {
	display: flex;
	align-items: center;
	width: 30%;
	margin: 1rem;
}

.features .icon-box {
	background: var(--bg-primary);
	border-bottom: 5px solid #f0f0f0;
	padding: 0.5rem 0;
}

.features .icon-box:hover {
	border-color: var(--accent-color);
	box-shadow: var(--shadow);
	transform: translateY(-3px);
}

.faq-elem:hover {
	border-color: var(--accent-color);
	box-shadow: var(--shadow);
	transform: translateY(-3px);
}

.features .icon-box h4 {
	font-size: 20px;
	font-weight: 700;
	margin: 0 0 10px 0;
}

.features .icon-box i {
	font-size: 44px;
	line-height: 44px;
	color: var(--accent-color);
	margin-right: 15px;
}

.features .icon-box p {
	font-size: 15px;
	margin-bottom: 0;
}

/*--------------------------------------------------------------
# Feature Details Section - Modern Design
--------------------------------------------------------------*/
.feature-details-section {
	padding: 100px 0;
	background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
	position: relative;
	overflow: hidden;
}

.feature-details-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: radial-gradient(
			circle at 10% 20%,
			rgba(102, 126, 234, 0.05) 0%,
			transparent 50%
		),
		radial-gradient(
			circle at 90% 80%,
			rgba(118, 75, 162, 0.05) 0%,
			transparent 50%
		);
	pointer-events: none;
}

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

.section-badge-modern {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: linear-gradient(45deg, #0ea5a3, #16a34a);
	color: white;
	padding: 12px 24px;
	border-radius: 50px;
	font-size: 14px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1px;
	margin-bottom: 24px;
	box-shadow: 0 8px 25px rgba(22, 163, 74, 0.3);
}

.section-badge-modern .badge-icon {
	font-size: 16px;
}

.section-title-modern {
	font-size: 3rem;
	font-weight: 800;
	line-height: 1.2;
	margin-bottom: 24px;
	color: #2c3e50;
}

.section-description-modern {
	font-size: 1.25rem;
	line-height: 1.6;
	color: #6c757d;
	max-width: 800px;
	margin: 0 auto;
}

.features-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
	gap: 40px;
	margin-bottom: 80px;
}

.feature-card-modern {
	background: white;
	border-radius: 24px;
	overflow: hidden;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
	transition: all 0.4s ease;
	position: relative;
	border: 1px solid rgba(255, 255, 255, 0.2);
}

.feature-card-modern::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 4px;
	background: linear-gradient(45deg, #0ea5a3, #16a34a);
}

.feature-card-modern:hover {
	transform: translateY(-10px);
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.feature-card-header {
	position: relative;
	height: 200px;
	overflow: hidden;
}

.feature-image-container {
	position: relative;
	width: 100%;
	height: 100%;
}

.feature-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.4s ease;
}

.feature-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(
		45deg,
		rgba(14, 165, 163, 0.85),
		rgba(22, 163, 74, 0.85)
	);
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transition: opacity 0.3s ease;
}

.feature-card-modern:hover .feature-overlay {
	opacity: 1;
}

.feature-card-modern:hover .feature-image {
	transform: scale(1.1);
}

.feature-overlay .feature-icon {
	width: 60px;
	height: 60px;
	background: rgba(255, 255, 255, 0.2);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 24px;
	color: white;
	backdrop-filter: blur(10px);
}

.feature-badge {
	position: absolute;
	top: 20px;
	left: 20px;
	display: flex;
	align-items: center;
	gap: 8px;
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(10px);
	padding: 8px 16px;
	border-radius: 20px;
	font-size: 12px;
	font-weight: 600;
	color: #667eea;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.feature-badge i {
	font-size: 14px;
}

.feature-card-body {
	padding: 32px;
}

.feature-title {
	font-size: 1.5rem;
	font-weight: 700;
	margin-bottom: 16px;
	color: #2c3e50;
	line-height: 1.3;
}

.feature-description {
	font-size: 1rem;
	line-height: 1.6;
	color: #6c757d;
	margin-bottom: 24px;
}

.feature-benefits {
	margin-bottom: 32px;
}

.benefit-item {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 12px;
	padding: 8px 0;
}

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

.benefit-icon {
	width: 20px;
	height: 20px;
	background: linear-gradient(45deg, #28a745, #20c997);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 12px;
	color: white;
	flex-shrink: 0;
}

.benefit-item span {
	font-size: 14px;
	color: #495057;
	font-weight: 500;
}

.feature-card-footer {
	padding: 0 32px 32px;
}

.btn-feature {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	background: linear-gradient(45deg, #0ea5a3, #16a34a);
	color: white;
	padding: 14px 28px;
	border-radius: 50px;
	text-decoration: none;
	font-weight: 600;
	font-size: 14px;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
	box-shadow: 0 6px 20px rgba(22, 163, 74, 0.3);
}

.btn-feature:hover {
	transform: translateY(-2px);
	box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
	color: white;
}

.btn-feature .btn-icon {
	transition: transform 0.3s ease;
}

.btn-feature:hover .btn-icon {
	transform: translateX(4px);
}

.cta-section-modern {
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	border-radius: 24px;
	padding: 60px 40px;
	text-align: center;
	position: relative;
	overflow: hidden;
}

.cta-section-modern::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: radial-gradient(
			circle at 20% 80%,
			rgba(255, 255, 255, 0.12) 0%,
			transparent 50%
		),
		radial-gradient(
			circle at 80% 20%,
			rgba(255, 255, 255, 0.12) 0%,
			transparent 50%
		);
	pointer-events: none;
}

.cta-content {
	position: relative;
	z-index: 2;
	color: white;
}

.cta-title {
	font-size: 2.5rem;
	font-weight: 800;
	margin-bottom: 16px;
	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.cta-description {
	font-size: 1.25rem;
	margin-bottom: 32px;
	opacity: 0.95;
}

.cta-buttons {
	display: flex;
	gap: 16px;
	justify-content: center;
	flex-wrap: wrap;
}

@media (max-width: 768px) {
	.feature-details-section {
		padding: 60px 0;
	}

	.section-title-modern {
		font-size: 2.2rem;
	}

	.section-description-modern {
		font-size: 1.1rem;
	}

	.features-grid {
		grid-template-columns: 1fr;
		gap: 30px;
		margin-bottom: 60px;
	}

	.feature-card-body {
		padding: 24px;
	}

	.feature-card-footer {
		padding: 0 24px 24px;
	}

	.cta-section-modern {
		padding: 40px 20px;
	}

	.cta-title {
		font-size: 2rem;
	}

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

/*--------------------------------------------------------------
# Gallery Section
--------------------------------------------------------------*/

/* Styles pour le bloc Témoignages */
.testimonials-section {
	padding: 100px 0;
	background-color: white;
	position: relative;
}

.testimonial-item {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.testimonial-card {
	background-color: var(--background-color);
	padding: 40px 30px;
	box-shadow: var(--shadow);
	position: relative;
	transition: var(--transition);
	height: 100%;
}

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

.testimonial-quote {
	font-size: 3rem;
	color: var(--contrast-color);
	opacity: 0.2;
	position: absolute;
	top: 20px;
	left: 20px;
}

.testimonial-text {
	font-size: 1.1rem;
	line-height: 1.8;
	font-style: italic;
	margin-bottom: 20px;
	position: relative;
	z-index: 2;
}

.testimonial-author {
	display: flex;
	align-items: center;
}

.testimonial-author-img {
	width: 60px;
	height: 60px;
	overflow: hidden;
	margin-right: 15px;
	border: 2px solid var(--accent-color);
}

.testimonial-author-name {
	font-weight: 600;
	margin-bottom: 3px;
}

.testimonial-author-title {
	font-size: 0.9rem;
	opacity: 0.7;
}

.testimonial-rating {
	display: flex;
	margin-bottom: 15px;
}

.rating-star {
	color: var(--default-color);
	margin-right: 3px;
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
	.pricing-section,
	.testimonials-section {
		padding: 70px 0;
	}

	.pricing-card.featured {
		transform: scale(1);
		margin-top: 30px;
		margin-bottom: 30px;
	}

	.pricing-card.featured:hover {
		transform: translateY(-10px);
	}
}

@media (max-width: 767.98px) {
	.pricing-price {
		font-size: 2rem;
	}

	.pricing-title {
		font-size: 1.3rem;
	}

	.testimonial-card {
		margin-bottom: 30px;
	}
}

/*--------------------------------------------------------------
# Leadership Journey Section
--------------------------------------------------------------*/
.leadership-journey .journey-item {
	background: var(--surface-color);
	padding: 40px 30px;
	border-radius: 15px;
	box-shadow: var(--shadow);
	transition: var(--transition);
	height: 100%;
	border: 1px solid rgba(59, 130, 246, 0.1);
}

.leadership-journey .journey-item:hover {
	transform: translateY(-10px);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
	border-color: var(--accent-color);
}

.leadership-journey .journey-icon {
	width: 80px;
	height: 80px;
	background: linear-gradient(135deg, var(--accent-color), #0ea5a3);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 25px;
	transition: var(--transition);
}

.leadership-journey .journey-item:hover .journey-icon {
	transform: scale(1.1);
}

.leadership-journey .journey-icon i {
	font-size: 35px;
	color: var(--contrast-color);
}

.leadership-journey .journey-content h3 {
	font-size: 24px;
	font-weight: 600;
	margin-bottom: 15px;
	color: var(--heading-color);
}

.leadership-journey .journey-content p {
	color: var(--default-color);
	margin-bottom: 20px;
	line-height: 1.6;
}

.leadership-journey .journey-content ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.leadership-journey .journey-content ul li {
	display: flex;
	align-items: center;
	margin-bottom: 10px;
	color: var(--default-color);
}

.leadership-journey .journey-content ul li i {
	color: var(--accent-color);
	margin-right: 10px;
	font-size: 16px;
}

.leadership-journey .journey-cta {
	background: linear-gradient(
		135deg,
		var(--heading-color),
		var(--default-color)
	);
	padding: 60px 40px;
	border-radius: 20px;
	color: var(--contrast-color);
	text-align: center;
}

.leadership-journey .journey-cta h3 {
	font-size: 32px;
	font-weight: 700;
	margin-bottom: 20px;
	color: var(--contrast-color);
}

.leadership-journey .journey-cta p {
	font-size: 18px;
	margin-bottom: 30px;
	color: rgba(255, 255, 255, 0.9);
}

.leadership-journey .journey-cta .btn {
	background: var(--accent-color);
	border: none;
	padding: 15px 40px;
	font-size: 18px;
	font-weight: 600;
	border-radius: 50px;
	transition: var(--transition);
	text-transform: uppercase;
	letter-spacing: 1px;
}

.leadership-journey .journey-cta .btn:hover {
	background: #1d4ed8;
	transform: translateY(-3px);
	box-shadow: 0 10px 25px rgba(59, 130, 246, 0.3);
}

/*--------------------------------------------------------------
# Pricing Section (Legacy - can be removed)
--------------------------------------------------------------*/
.pricing .pricing-item {
	background-color: var(--surface-color);
	padding: 60px 40px;
	box-shadow: 0 3px 20px -2px rgba(0, 0, 0, 0.1);
	height: 100%;
	position: relative;
}

.pricing h3 {
	font-weight: 600;
	margin-bottom: 15px;
	font-size: 20px;
}

.pricing h4 {
	font-size: 48px;
	color: var(--accent-color);
	font-family: var(--heading-font);
	font-weight: 400;
}

.pricing h4 sup {
	font-size: 28px;
}

.pricing h4 span {
	color: color-mix(in srgb, var(--default-color), transparent 60%);
	font-size: 18px;
}

.pricing ul {
	padding: 20px 0;
	list-style: none;
	color: color-mix(in srgb, var(--default-color), transparent 30%);
	text-align: left;
	line-height: 20px;
}

.pricing ul li {
	padding: 10px 0;
	display: flex;
	align-items: center;
}

.pricing ul i {
	color: #059652;
	font-size: 24px;
	padding-right: 3px;
}

.pricing ul .na {
	color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.pricing ul .na i {
	color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.pricing ul .na span {
	text-decoration: line-through;
}

.pricing .buy-btn {
	color: color-mix(in srgb, var(--default-color), transparent 40%);
	background-color: var(--background-color);
	display: inline-block;
	padding: 8px 35px 10px 35px;
	border: 1px solid color-mix(in srgb, var(--default-color), transparent 60%);
	transition: none;
	font-size: 16px;
	font-weight: 500;
	font-family: var(--heading-font);
	transition: 0.3s;
}

.pricing .buy-btn:hover {
	background: var(--accent-color);
	border-color: var(--accent-color);
	color: var(--contrast-color);
}

.pricing .featured {
	z-index: 10;
}

.pricing .featured .pricing-item {
	background: var(--accent-color);
}

.pricing .featured h3,
.pricing .featured h4,
.pricing .featured h4 span,
.pricing .featured ul,
.pricing .featured ul .na,
.pricing .featured ul i,
.pricing .featured ul .na i {
	color: var(--contrast-color);
}

.pricing .featured .buy-btn {
	background: var(--accent-color);
	color: var(--contrast-color);
	border-color: var(--contrast-color);
}

.pricing .featured .buy-btn:hover {
	background: color-mix(in srgb, var(--background-color), transparent 92%);
}

/*--------------------------------------------------------------
# FAQ Section
--------------------------------------------------------------*/
.faq-accordion {
	max-width: 800px;
	margin: 0 auto;
}

.faq-item {
	background: var(--surface-color);
	border-radius: 15px;
	margin-bottom: 20px;
	box-shadow: var(--shadow);
	overflow: hidden;
	transition: var(--transition);
	border: 1px solid rgba(59, 130, 246, 0.1);
}

.faq-item:hover {
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
	border-color: var(--accent-color);
}

.faq-question {
	padding: 25px 30px;
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	align-items: center;
	transition: var(--transition);
	background: linear-gradient(
		135deg,
		var(--surface-color),
		rgba(59, 130, 246, 0.02)
	);
}

.faq-question:hover {
	background: linear-gradient(
		135deg,
		rgba(59, 130, 246, 0.05),
		rgba(59, 130, 246, 0.1)
	);
}

.faq-question h3 {
	font-size: 20px;
	font-weight: 600;
	margin: 0;
	color: var(--heading-color);
	transition: var(--transition);
}

.faq-question:hover h3 {
	color: var(--accent-color);
}

.faq-toggle {
	font-size: 20px;
	color: var(--accent-color);
	transition: transform 0.3s ease;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 30px;
	height: 30px;
	border-radius: 50%;
	background: rgba(59, 130, 246, 0.1);
}

.faq-answer {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease;
	background: var(--surface-color);
}

.faq-answer p {
	margin-bottom: 15px;
	color: var(--default-color);
	line-height: 1.6;
}

.faq-answer ul {
	margin: 0 0 15px 0;
	padding-left: 0;
	list-style: none;
}

.faq-answer ul li {
	margin-bottom: 8px;
	color: var(--default-color);
	position: relative;
	padding-left: 20px;
}

.faq-answer ul li:before {
	content: '✓';
	position: absolute;
	left: 0;
	color: var(--accent-color);
	font-weight: bold;
}

.faq-answer strong {
	color: var(--heading-color);
	font-weight: 600;
}

.faq-item.active .faq-question {
	background: linear-gradient(135deg, var(--accent-color), #1d4ed8);
	color: var(--contrast-color);
}

.faq-item.active .faq-question h3 {
	color: var(--contrast-color);
}

.faq-item.active .faq-toggle {
	background: rgba(255, 255, 255, 0.2);
	color: var(--contrast-color);
}

.faq-item.active .faq-answer {
	padding: 0 30px 30px 30px;
}

/* Comparison Grid for FAQ Item 5 */
.comparison-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 30px;
	margin-top: 20px;
}

.comparison-item {
	background: rgba(59, 130, 246, 0.05);
	padding: 20px;
	border-radius: 10px;
	border: 1px solid rgba(59, 130, 246, 0.1);
}

.comparison-item h4 {
	color: var(--accent-color);
	font-size: 18px;
	font-weight: 600;
	margin-bottom: 15px;
	text-align: center;
}

.comparison-item ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.comparison-item ul li {
	padding: 8px 0;
	color: var(--default-color);
	position: relative;
	padding-left: 20px;
}

.comparison-item ul li:before {
	content: '•';
	position: absolute;
	left: 0;
	color: var(--accent-color);
	font-weight: bold;
}

/* Responsive Design */
@media (max-width: 768px) {
	.faq-question {
		padding: 20px;
	}

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

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

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

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact-info-card {
	background: var(--surface-color);
	padding: 40px 30px;
	border-radius: 20px;
	text-align: center;
	box-shadow: var(--shadow);
	transition: var(--transition);
	height: 100%;
	border: 1px solid rgba(59, 130, 246, 0.1);
	position: relative;
	overflow: hidden;
}

.contact-info-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(135deg, var(--accent-color), #0ea5a3);
}

.contact-info-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
	border-color: var(--accent-color);
}

.contact-icon {
	width: 80px;
	height: 80px;
	background: linear-gradient(135deg, var(--accent-color), #1d4ed8);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 25px;
	transition: var(--transition);
}

.contact-info-card:hover .contact-icon {
	transform: scale(1.1);
}

.contact-icon i {
	font-size: 35px;
	color: var(--contrast-color);
}

.contact-content h3 {
	font-size: 22px;
	font-weight: 600;
	margin-bottom: 15px;
	color: var(--heading-color);
}

.contact-content p {
	color: var(--default-color);
	margin-bottom: 20px;
	line-height: 1.6;
}

.contact-link {
	color: var(--accent-color);
	text-decoration: none;
	font-weight: 600;
	font-size: 16px;
	transition: var(--transition);
	display: inline-block;
	padding: 10px 20px;
	border: 2px solid var(--accent-color);
	border-radius: 25px;
	background: transparent;
}

.contact-link:hover {
	background: var(--accent-color);
	color: var(--contrast-color);
	transform: translateY(-2px);
}

/* Contact Form */
.contact-form-container {
	background: var(--surface-color);
	padding: 50px 40px;
	border-radius: 20px;
	box-shadow: var(--shadow);
	border: 1px solid rgba(59, 130, 246, 0.1);
	position: relative;
	overflow: hidden;
}

.contact-form-container::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 6px;
	background: linear-gradient(135deg, var(--accent-color), #1d4ed8);
}

.form-header {
	text-align: center;
	margin-bottom: 40px;
}

.form-header h3 {
	font-size: 28px;
	font-weight: 700;
	color: var(--heading-color);
	margin-bottom: 15px;
}

.form-header p {
	color: var(--default-color);
	font-size: 16px;
	line-height: 1.6;
	margin: 0;
}

.modern-contact-form .form-group {
	margin-bottom: 25px;
}

.modern-contact-form label {
	display: block;
	margin-bottom: 8px;
	font-weight: 600;
	color: var(--heading-color);
	font-size: 14px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.modern-contact-form .form-control {
	width: 100%;
	padding: 15px 20px;
	border: 2px solid rgba(59, 130, 246, 0.1);
	border-radius: 10px;
	font-size: 16px;
	transition: var(--transition);
	background: var(--surface-color);
	color: var(--default-color);
}

.modern-contact-form .form-control:focus {
	outline: none;
	border-color: var(--accent-color);
	box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.modern-contact-form .form-control::placeholder {
	color: var(--light-text);
}

.modern-contact-form select.form-control {
	cursor: pointer;
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
	background-position: right 12px center;
	background-repeat: no-repeat;
	background-size: 16px;
	padding-right: 40px;
}

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

/* Checkbox Styling */
.checkbox-group {
	margin-top: 20px;
}

.checkbox-label {
	display: flex;
	align-items: flex-start;
	cursor: pointer;
	font-size: 14px;
	line-height: 1.5;
	color: var(--default-color);
}

.checkbox-label input[type='checkbox'] {
	display: none;
}

.checkmark {
	width: 20px;
	height: 20px;
	border: 2px solid rgba(59, 130, 246, 0.3);
	border-radius: 4px;
	margin-right: 12px;
	margin-top: 2px;
	flex-shrink: 0;
	position: relative;
	transition: var(--transition);
}

.checkbox-label input[type='checkbox']:checked + .checkmark {
	background: var(--accent-color);
	border-color: var(--accent-color);
}

.checkbox-label input[type='checkbox']:checked + .checkmark::after {
	content: '✓';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	color: white;
	font-size: 12px;
	font-weight: bold;
}

.checkbox-label a {
	color: var(--accent-color);
	text-decoration: none;
}

.checkbox-label a:hover {
	text-decoration: underline;
}

/* Form Messages */
.form-messages {
	margin-bottom: 30px;
}

.form-messages .loading,
.form-messages .error-message,
.form-messages .sent-message {
	display: none;
	padding: 15px 20px;
	border-radius: 10px;
	margin-bottom: 20px;
	font-weight: 600;
}

.form-messages .loading {
	background: rgba(59, 130, 246, 0.1);
	color: var(--accent-color);
	border: 1px solid rgba(59, 130, 246, 0.2);
}

.form-messages .error-message {
	background: rgba(239, 68, 68, 0.1);
	color: #dc2626;
	border: 1px solid rgba(239, 68, 68, 0.2);
}

.form-messages .sent-message {
	background: rgba(34, 197, 94, 0.1);
	color: #16a34a;
	border: 1px solid rgba(34, 197, 94, 0.2);
}

/* Submit Button */
.modern-contact-form .btn {
	background: linear-gradient(135deg, var(--accent-color), #1d4ed8);
	border: none;
	padding: 18px 40px;
	font-size: 18px;
	font-weight: 600;
	border-radius: 50px;
	transition: var(--transition);
	text-transform: uppercase;
	letter-spacing: 1px;
	color: var(--contrast-color);
	box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.modern-contact-form .btn:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
	background: linear-gradient(135deg, #1d4ed8, var(--accent-color));
}

/* Contact CTA */
.contact-cta {
	background: linear-gradient(
		135deg,
		var(--heading-color),
		var(--default-color)
	);
	padding: 60px 40px;
	border-radius: 20px;
	text-align: center;
	color: var(--contrast-color);
	position: relative;
	overflow: hidden;
}

.contact-cta::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
	opacity: 0.3;
}

.cta-content {
	position: relative;
	z-index: 1;
}

.cta-content h3 {
	font-size: 32px;
	font-weight: 700;
	margin-bottom: 20px;
	color: var(--contrast-color);
}

.cta-content p {
	font-size: 18px;
	margin-bottom: 30px;
	color: rgba(255, 255, 255, 0.9);
	line-height: 1.6;
}

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

.cta-buttons .btn {
	padding: 15px 30px;
	font-size: 16px;
	font-weight: 600;
	border-radius: 50px;
	transition: var(--transition);
	text-decoration: none;
	display: inline-flex;
	align-items: center;
}

.cta-buttons .btn-outline-primary {
	background: transparent;
	border: 2px solid var(--contrast-color);
	color: var(--contrast-color);
}

.cta-buttons .btn-outline-primary:hover {
	background: var(--contrast-color);
	color: var(--heading-color);
	transform: translateY(-3px);
}

.cta-buttons .btn-outline-secondary {
	background: transparent;
	border: 2px solid rgba(255, 255, 255, 0.5);
	color: var(--contrast-color);
}

.cta-buttons .btn-outline-secondary:hover {
	background: rgba(255, 255, 255, 0.1);
	border-color: var(--contrast-color);
	transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 768px) {
	.contact-form-container {
		padding: 30px 20px;
	}

	.form-header h3 {
		font-size: 24px;
	}

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

	.contact-cta {
		padding: 40px 20px;
	}

	.cta-content h3 {
		font-size: 24px;
	}

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

	.cta-buttons .btn {
		width: 100%;
		max-width: 300px;
	}
}

/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/

#cookie-popup {
	position: fixed;
	bottom: 20px;
	left: 20px;
	transform: translateX(-50%);
	background: var(--surface-color);
	color: var(--default-color);
	border: 1px solid var(--accent-color);
	padding: 20px;
	font-family: 'Cossette Texte', sans-serif;
	box-shadow: var(--shadow);
	font-size: 14px;
	max-width: 400px;
	z-index: 1000;
	display: none;
	opacity: 0;
	/* Start invisible */
	transform: translateY(30px);
	/* Slide up effect */
	transition:
		opacity 0.4s ease,
		transform 0.4s ease;
}

#cookie-popup.show {
	opacity: 1;
	transform: translateY(0);
}

#cookie-popup p {
	margin: 0;
	padding: 0;
}

#cookie-popup .popup-content {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

#cookie-popup button {
	background: var(--accent-color);
	color: var(--contrast-color);
	border: none;
	padding: 10px 20px;
	border-radius: 6px;
	cursor: pointer;
	font-size: 14px;
	font-family: 'Cossette Texte', sans-serif;
	transition: background-color 0.3s ease;
}

#cookie-popup button:hover {
	background: var(--accent-color);
}

#cookie-popup .popup-message {
	max-width: 80%;
}

#cookie-popup .popup-message a {
	color: var(--accent-color);
	text-decoration: none;
	font-weight: bold;
	transition: color 0.3s ease;
}

#cookie-popup .popup-message a:hover {
	color: var(--accent-color);
}

.footer .copyright {
	padding: 1.5rem 0;
	font-size: 15px;
	border-top: 1px solid rgba(22, 163, 74, 0.1);
	margin-top: 2rem;
}

.footer .copyright a {
	color: var(--light-text);
}

.about_elem {
	margin-bottom: 2rem;
}

.swiper-slide {
	opacity: 0.4;
	transform: scale(0.92);
	transition: all 0.3s ease-in-out;
}

.swiper-slide-active {
	opacity: 1;
	transform: scale(1);
	z-index: 2;
}

.swiper-pagination-bullet {
	background-color: #888;
	opacity: 0.6;
	transition: all 0.3s ease;
}

.swiper-button-next,
.swiper-button-prev {
	background-color: rgba(255, 255, 255, 0);
	border: 1px solid var(--bg-color);
	color: var(--accent-color);
	width: 40px;
	height: 40px;
	transition: all 0.3s ease;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
	background-color: var(--bg-color);
	color: var(--accent-color);
}

.swiper-button-next::after,
.swiper-button-prev::after {
	font-size: 20px;
}

.swiper-pagination {
	position: absolute;
	bottom: -10px;
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 10;
}

.swiper-pagination .swiper-pagination-bullet {
	width: 12px;
	height: 12px;
	margin: 0 5px;
	background-color: #999;
	border-radius: 50%;
	transition: background-color 0.3s ease;
}

.swiper-pagination .swiper-pagination-bullet-active {
	background-color: var(--accent-color);
}

.swiper-pagination .swiper-pagination-bullet:hover {
	background-color: var(--accent-color);
}

.swiper-pagination.hidden {
	display: none;
}

.swiper-pagination .swiper-pagination-button {
	background-color: transparent;
	border: none;
	outline: none;
	cursor: pointer;
}

.swiper-pagination .swiper-pagination-button-prev,
.swiper-pagination .swiper-pagination-button-next {
	font-size: 20px;
	color: var(--accent-color);
	transition: color 0.3s ease;
}

.swiper-pagination .swiper-pagination-button-prev:hover,
.swiper-pagination .swiper-pagination-button-next:hover {
	color: var(--accent-color);
}

.testimonial-img {
	width: 100%;
	max-width: 250px;
	max-height: 250px;
	height: 250px;
	object-fit: cover;
	border-radius: 50%;
	margin-bottom: 1rem;
}

/*--------------------------------------------------------------
# Growth Section
--------------------------------------------------------------*/
.growth {
	background: linear-gradient(
		135deg,
		var(--heading-color) 0%,
		var(--default-color) 100%
	);
	color: var(--contrast-color);
	padding: 120px 0;
	position: relative;
	overflow: hidden;
}

.growth::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
	opacity: 0.3;
}

.growth-content {
	position: relative;
	z-index: 1;
}

/* Growth Badge */
.growth-badge {
	display: inline-flex;
	align-items: center;
	background: rgba(59, 130, 246, 0.2);
	color: var(--accent-color);
	padding: 8px 20px;
	border-radius: 25px;
	font-size: 14px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1px;
	margin-bottom: 30px;
	border: 1px solid rgba(59, 130, 246, 0.3);
}

.growth-badge i {
	font-size: 16px;
}

/* Growth Title */
.growth-title {
	font-size: 3.5rem;
	font-weight: 700;
	margin-bottom: 25px;
	line-height: 1.2;
	color: var(--contrast-color);
}

.growth-title .highlight {
	background: linear-gradient(135deg, var(--accent-color), #60a5fa);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	position: relative;
}

.growth-title .highlight::after {
	content: '';
	position: absolute;
	bottom: -5px;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(135deg, var(--accent-color), #60a5fa);
	border-radius: 2px;
}

/* Growth Description */
.growth-description {
	font-size: 1.25rem;
	margin-bottom: 40px;
	opacity: 0.9;
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.9);
}

/* Growth Stats */
.growth-stats {
	display: flex;
	gap: 40px;
	margin-bottom: 40px;
	flex-wrap: wrap;
}

.stat-item {
	text-align: center;
}

.stat-number {
	font-size: 2.5rem;
	font-weight: 700;
	color: var(--accent-color);
	line-height: 1;
	margin-bottom: 5px;
}

.stat-label {
	font-size: 14px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1px;
	opacity: 0.8;
	color: var(--contrast-color);
}

/* Growth Actions */
.growth-actions {
	display: flex;
	gap: 20px;
	flex-wrap: wrap;
}

.growth-actions .btn {
	padding: 18px 35px;
	font-size: 16px;
	font-weight: 600;
	border-radius: 50px;
	transition: var(--transition);
	text-transform: uppercase;
	letter-spacing: 1px;
	display: inline-flex;
	align-items: center;
	text-decoration: none;
}

.growth-actions .btn-primary {
	background: linear-gradient(135deg, var(--accent-color), #1d4ed8);
	border: none;
	color: var(--contrast-color);
	box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.growth-actions .btn-primary:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
	background: linear-gradient(135deg, #1d4ed8, var(--accent-color));
}

.growth-actions .btn-outline-primary {
	background: transparent;
	border: 2px solid var(--contrast-color);
	color: var(--contrast-color);
}

.growth-actions .btn-outline-primary:hover {
	background: var(--contrast-color);
	color: var(--heading-color);
	transform: translateY(-3px);
}

/* Growth Visual */
.growth-visual {
	position: relative;
	height: 500px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.visual-container {
	position: relative;
	width: 400px;
	height: 400px;
}

/* Main Circle */
.main-circle {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 120px;
	height: 120px;
	background: linear-gradient(135deg, var(--accent-color), #1d4ed8);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
	animation: pulse 2s infinite;
}

.circle-content {
	text-align: center;
	color: var(--contrast-color);
}

.circle-content i {
	font-size: 30px;
	margin-bottom: 5px;
	display: block;
}

.circle-content span {
	font-size: 12px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1px;
}

/* Floating Elements */
.floating-element {
	position: absolute;
	background: var(--surface-color);
	border-radius: 15px;
	padding: 15px;
	box-shadow: var(--shadow);
	border: 1px solid rgba(59, 130, 246, 0.1);
	transition: var(--transition);
	animation: float 3s ease-in-out infinite;
}

.floating-element:hover {
	transform: translateY(-5px);
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.element-1 {
	top: 20px;
	left: 50px;
	animation-delay: 0s;
}

.element-2 {
	top: 20px;
	right: 50px;
	animation-delay: 0.5s;
}

.element-3 {
	bottom: 20px;
	left: 50px;
	animation-delay: 1s;
}

.element-4 {
	bottom: 20px;
	right: 50px;
	animation-delay: 1.5s;
}

.element-icon {
	width: 40px;
	height: 40px;
	background: linear-gradient(135deg, var(--accent-color), #1d4ed8);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 10px;
}

.element-icon i {
	font-size: 18px;
	color: var(--contrast-color);
}

.element-text {
	font-size: 12px;
	font-weight: 600;
	color: var(--heading-color);
	text-align: center;
	line-height: 1.2;
}

/* Connection Lines */
.connection-lines {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
}

/* Animations */
@keyframes pulse {
	0%,
	100% {
		transform: translate(-50%, -50%) scale(1);
	}
	50% {
		transform: translate(-50%, -50%) scale(1.05);
	}
}

@keyframes float {
	0%,
	100% {
		transform: translateY(0px);
	}
	50% {
		transform: translateY(-10px);
	}
}

/* Responsive Design */
@media (max-width: 768px) {
	.growth {
		padding: 80px 0;
	}

	.growth-title {
		font-size: 2.5rem;
	}

	.growth-stats {
		gap: 20px;
		justify-content: center;
	}

	.stat-number {
		font-size: 2rem;
	}

	.growth-actions {
		flex-direction: column;
		align-items: center;
	}

	.growth-actions .btn {
		width: 100%;
		max-width: 300px;
		justify-content: center;
	}

	.growth-visual {
		height: 300px;
		margin-top: 50px;
	}

	.visual-container {
		width: 300px;
		height: 300px;
	}

	.main-circle {
		width: 80px;
		height: 80px;
	}

	.circle-content i {
		font-size: 20px;
	}

	.floating-element {
		padding: 10px;
	}

	.element-icon {
		width: 30px;
		height: 30px;
	}

	.element-icon i {
		font-size: 14px;
	}

	.element-text {
		font-size: 10px;
	}
}

/* Hero Section Styles */
.hero {
	position: relative;
	min-height: 100vh;
	display: flex;
	align-items: center;
	overflow: hidden;
}

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

.hero-badge {
	display: inline-flex;
	align-items: center;
	background: linear-gradient(135deg, var(--accent-color), #22c55e);
	color: white;
	padding: 8px 16px;
	border-radius: 50px;
	font-size: 14px;
	font-weight: 600;
	margin-bottom: 24px;
	box-shadow: 0 4px 12px rgba(22, 163, 74, 0.3);
}

.hero-title {
	font-size: 3.5rem;
	font-weight: 700;
	line-height: 1.2;
	margin-bottom: 24px;
	color: var(--heading-color);
}

.hero-description {
	font-size: 1.25rem;
	line-height: 1.6;
	color: var(--light-text);
	margin-bottom: 32px;
}

.hero-actions {
	display: flex;
	gap: 16px;
	flex-wrap: wrap;
}

.hero-visual {
	position: relative;
	z-index: 1;
}

.hero-image-container {
	position: relative;
	width: 100%;
	height: 500px;
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.hero-image-wrapper {
	position: relative;
	width: 100%;
	height: 100%;
}

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

.hero-image:hover {
	transform: scale(1.05);
}

.image-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(
		135deg,
		rgba(22, 163, 74, 0.1),
		rgba(34, 197, 94, 0.1)
	);
	z-index: 1;
}

.floating-card {
	position: absolute;
	background: white;
	padding: 16px;
	border-radius: 12px;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
	z-index: 2;
	animation: float 3s ease-in-out infinite;
}

.floating-card.card-1 {
	top: 20%;
	right: -10%;
	animation-delay: 0s;
}

.floating-card.card-2 {
	top: 50%;
	right: -15%;
	animation-delay: 0.5s;
}

.floating-card.card-3 {
	bottom: 30%;
	right: -5%;
	animation-delay: 1s;
}

.floating-card.card-4 {
	top: 10%;
	left: -10%;
	animation-delay: 1.5s;
}

.card-icon {
	width: 40px;
	height: 40px;
	background: linear-gradient(135deg, var(--accent-color), #22c55e);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 8px;
}

.card-icon i {
	color: white;
	font-size: 18px;
}

.card-content h4 {
	font-size: 14px;
	font-weight: 600;
	margin: 0 0 4px 0;
	color: var(--heading-color);
}

.card-content p {
	font-size: 12px;
	margin: 0;
	color: var(--light-text);
}

/* Hero Responsive Design */
@media (max-width: 768px) {
	.hero {
		padding: 80px 0;
	}

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

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

	.hero-actions .btn {
		width: 100%;
		max-width: 300px;
		justify-content: center;
	}

	.hero-image-container {
		height: 300px;
		margin-top: 50px;
	}

	.floating-card {
		display: none;
	}
}

.lead {
	color: var(--accent-color);
	font-weight: 500;
}

/* IT-style sections */
.it-hero {
	background: linear-gradient(135deg, #0b2e13 0%, #10332a 100%);
	padding: 100px 0;
}
.it-hero__eyebrow {
	color: #86efac;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	margin-bottom: 12px;
}
.it-hero__title {
	color: #eafff3;
	font-size: 2.75rem;
	font-weight: 800;
	line-height: 1.15;
	margin-bottom: 14px;
}
.it-hero__subtitle {
	color: #bfead2;
	font-size: 1.125rem;
	line-height: 1.7;
	margin-bottom: 20px;
}
.it-hero__actions .btn {
	border-radius: 12px;
}
.it-hero__panel {
	background: #0f2d25;
	border: 1px solid rgba(134, 239, 172, 0.15);
	border-radius: 16px;
	padding: 20px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}
.it-hero__code pre {
	margin: 0;
	color: #def7e6;
}

.it-section__title {
	font-size: 2rem;
	font-weight: 800;
	color: var(--heading-color);
	margin-bottom: 10px;
}
.it-section__lead {
	color: var(--light-text);
	margin-bottom: 24px;
}

.it-about__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 16px;
	margin-top: 16px;
}
.it-about__item {
	background: var(--surface-color);
	border: 1px solid rgba(16, 51, 42, 0.07);
	border-radius: 12px;
	padding: 16px;
}
.it-about__panel {
	background: var(--surface-color);
	border: 1px dashed rgba(16, 51, 42, 0.2);
	border-radius: 16px;
	padding: 20px;
}
.it-about__stats {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 12px;
}
.it-kpi {
	background: #f2fbf7;
	border: 1px solid rgba(16, 51, 42, 0.08);
	border-radius: 10px;
	padding: 12px;
	text-align: center;
}
.it-kpi__label {
	color: #3c5b51;
	font-size: 12px;
}
.it-kpi__value {
	color: #0b2e13;
	font-weight: 800;
	font-size: 18px;
}
.it-note {
	color: #5b776e;
	font-size: 12px;
	margin-top: 10px;
}

.it-journey .it-steps {
	margin-top: 12px;
}
.it-step {
	display: flex;
	gap: 16px;
	padding: 16px;
	background: var(--surface-color);
	border: 1px solid rgba(16, 51, 42, 0.07);
	border-radius: 12px;
	margin-bottom: 12px;
}
.it-step__num {
	width: 48px;
	height: 48px;
	border-radius: 12px;
	background: #e9f7f0;
	color: #0b2e13;
	font-weight: 800;
	display: flex;
	align-items: center;
	justify-content: center;
}
.it-step__body h3 {
	margin: 0 0 4px 0;
	font-weight: 700;
}
.it-journey__cta .btn {
	border-radius: 12px;
}

.it-features .it-cards {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 16px;
	margin-top: 16px;
}
.it-card {
	background: var(--surface-color);
	border: 1px solid rgba(16, 51, 42, 0.07);
	border-radius: 12px;
	padding: 20px;
	display: flex;
	flex-direction: column;
	gap: 8px;
}
.link-arrow {
	color: var(--accent-color);
	font-weight: 600;
}

@media (max-width: 991px) {
	.it-features .it-cards {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}
@media (max-width: 575px) {
	.it-features .it-cards {
		grid-template-columns: 1fr;
	}
	.it-about__grid {
		grid-template-columns: 1fr;
	}
	.it-about__stats {
		grid-template-columns: 1fr 1fr;
	}
}
