/* Fonts */
:root {
	--default-font: 'Exo 2', system-ui, -apple-system, 'Segoe UI', sans-serif,
		'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji';
	--heading-font: 'Orbitron', sans-serif;
	--nav-font: 'Exo 2', sans-serif;
}

/* Global Colors - Completely new color scheme */
:root {
	--background-color: #0a0a0a;
	--default-color: #ff4d00;
	--heading-color: #001aff;
	--accent-color: #3300ff;
	--surface-color: #1a1a1a;
	--contrast-color: #ffffff;
	--nav-color: #ff4000;
	--nav-hover-color: #1900ff;
	--nav-mobile-background-color: #1a1a1a;
	--nav-dropdown-background-color: #0a0a0a;
	--nav-dropdown-color: #ff4d00;
	--nav-dropdown-hover-color: #000dff;
}

/* Color Presets */

.light-background {
	--background-color: #1a1a1a;
	--surface-color: #00ff88;
	position: relative;
}

.light-background::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: radial-gradient(
			circle at 20% 20%,
			rgba(0, 255, 136, 0.1) 0%,
			transparent 50%
		),
		radial-gradient(
			circle at 80% 80%,
			rgba(255, 0, 128, 0.1) 0%,
			transparent 50%
		);
	pointer-events: none;
	z-index: -1;
}

.dark-background {
	--background-color: #000000;
	--default-color: #00ffff;
	--heading-color: #ff0080;
	--surface-color: #0a0a0a;
	--contrast-color: #ffffff;
}

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

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
	color: var(--default-color);
	background: linear-gradient(
		135deg,
		var(--background-color) 0%,
		var(--surface-color) 50%,
		var(--accent-color) 100%
	);
	font-family: var(--default-font);
	line-height: 1.8;
	letter-spacing: 0.3px;
	position: relative;
}

body::before {
	content: '';
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: radial-gradient(
			circle at 20% 20%,
			rgba(0, 255, 136, 0.1) 0%,
			transparent 50%
		),
		radial-gradient(
			circle at 80% 20%,
			rgba(255, 0, 128, 0.1) 0%,
			transparent 50%
		),
		radial-gradient(
			circle at 20% 80%,
			rgba(0, 255, 255, 0.1) 0%,
			transparent 50%
		),
		radial-gradient(
			circle at 80% 80%,
			rgba(0, 255, 136, 0.1) 0%,
			transparent 50%
		);
	z-index: -1;
	animation: cosmicFloat 20s ease-in-out infinite;
}

@keyframes cosmicFloat {
	0%,
	100% {
		transform: translateY(0px) rotate(0deg);
	}
	25% {
		transform: translateY(-20px) rotate(1deg);
	}
	50% {
		transform: translateY(-10px) rotate(-1deg);
	}
	75% {
		transform: translateY(-30px) rotate(2deg);
	}
}

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

a:hover {
	color: color-mix(
		in srgb,
		var(--nav-dropdown-background-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
------------------------------*/
.php-email-form .error-message {
	display: none;
	background: #8b0000;
	color: #ffffff;
	text-align: left;
	padding: 15px;
	margin-bottom: 24px;
	font-weight: 600;
}

.php-email-form .sent-message {
	display: none;
	color: #ffffff;
	background: #228b22;
	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;
	border-radius: 50%;
	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(--default-color);
	background: linear-gradient(
		135deg,
		var(--background-color) 0%,
		var(--surface-color) 100%
	);
	padding: 15px 0;
	transition: all 0.5s;
	z-index: 997;
	border-bottom: 2px solid var(--accent-color);
	box-shadow: 0 0 30px rgba(0, 255, 255, 0.3);
	backdrop-filter: blur(10px);
}

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

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

.header .logo h1 {
	font-size: 30px;
	margin: 0;
	font-weight: 900;
	color: var(--accent-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;
	border-radius: 50px;
	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: 18px 15px;
		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:last-child a {
		padding-right: 0;
	}

	.navmenu li:hover > a,
	.navmenu .active,
	.navmenu .active:focus {
		color: var(--nav-hover-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;
		border-radius: 4px;
		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;
		border-radius: 6px;
		background-color: #e6f9f9;
		/* 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;
		border-radius: 50%;
		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 - Completely Redesigned
--------------------------------------------------------------*/
.footer {
	color: var(--default-color);
	background: linear-gradient(
		135deg,
		var(--background-color) 0%,
		var(--surface-color) 50%,
		var(--accent-color) 100%
	);
	font-size: 14px;
	position: relative;
	overflow: hidden;
	border-top: 3px solid var(--accent-color);
	box-shadow: 0 0 40px rgba(0, 255, 255, 0.3);
}

.footer::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 1px;
	background: linear-gradient(
		90deg,
		transparent,
		var(--accent-color),
		transparent
	);
}

.footer::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 1px;
	background: linear-gradient(
		90deg,
		transparent,
		var(--heading-color),
		transparent
	);
}

.footer .footer-newsletter {
	background: linear-gradient(
		135deg,
		rgba(255, 255, 255, 0.1) 0%,
		rgba(255, 255, 255, 0.05) 100%
	);
	backdrop-filter: blur(10px);
	padding: 80px 0;
	position: relative;
	border-radius: 30px;
	margin: 40px 20px;
	border: 1px solid rgba(255, 255, 255, 0.1);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.footer .footer-newsletter::before {
	content: '';
	position: absolute;
	top: -2px;
	left: -2px;
	right: -2px;
	bottom: -2px;
	background: linear-gradient(
		45deg,
		var(--accent-color),
		var(--heading-color),
		var(--accent-color)
	);
	border-radius: 32px;
	z-index: -1;
	opacity: 0.3;
}

.footer .footer-newsletter h4 {
	font-size: 32px;
	font-weight: 800;
	background: linear-gradient(45deg, var(--heading-color), var(--accent-color));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	text-align: center;
	margin-bottom: 20px;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.footer .footer-newsletter .newsletter-form {
	margin: 40px auto 20px auto;
	padding: 8px;
	position: relative;
	background: linear-gradient(
		135deg,
		var(--surface-color),
		var(--background-color)
	);
	border: 2px solid transparent;
	border-radius: 50px;
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
	display: flex;
	transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	max-width: 500px;
	overflow: hidden;
}

.footer .footer-newsletter .newsletter-form::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(45deg, var(--accent-color), var(--heading-color));
	border-radius: 48px;
	z-index: -1;
	opacity: 0;
	transition: opacity 0.4s ease;
}

.footer .footer-newsletter .newsletter-form:focus-within {
	border-color: var(--accent-color);
	transform: translateY(-5px);
	box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.footer .footer-newsletter .newsletter-form:focus-within::before {
	opacity: 0.1;
}

.footer .footer-newsletter .newsletter-form input[type='email'] {
	border: 0;
	padding: 15px 25px;
	width: 100%;
	background: transparent;
	color: var(--default-color);
	font-size: 16px;
	font-weight: 500;
}

.footer .footer-newsletter .newsletter-form input[type='email']::placeholder {
	color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.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;
	font-weight: 600;
	padding: 15px 30px;
	margin: -8px -8px -8px 0;
	background: linear-gradient(
		135deg,
		var(--accent-color),
		var(--heading-color)
	);
	color: var(--contrast-color);
	transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	border-radius: 50px;
	position: relative;
	overflow: hidden;
	cursor: pointer;
}

.footer .footer-newsletter .newsletter-form input[type='submit']::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(
		90deg,
		transparent,
		rgba(255, 255, 255, 0.3),
		transparent
	);
	transition: left 0.6s;
}

.footer .footer-newsletter .newsletter-form input[type='submit']:hover::before {
	left: 100%;
}

.footer .footer-newsletter .newsletter-form input[type='submit']:hover {
	background: linear-gradient(
		135deg,
		var(--heading-color),
		var(--accent-color)
	);
	transform: translateY(-2px);
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.footer .footer-top {
	padding: 60px 20px 40px;
	position: relative;
}

.footer .footer-top::before {
	content: '';
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 200px;
	height: 2px;
	background: linear-gradient(
		90deg,
		transparent,
		var(--accent-color),
		transparent
	);
}

.footer .social-links {
	display: flex;
	justify-content: center;
	gap: 15px;
	margin-bottom: 40px;
}

.footer .social-links a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background: linear-gradient(
		135deg,
		var(--surface-color),
		var(--background-color)
	);
	border: 2px solid transparent;
	font-size: 18px;
	color: var(--default-color);
	transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	position: relative;
	overflow: hidden;
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.footer .social-links a::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(
		135deg,
		var(--accent-color),
		var(--heading-color)
	);
	border-radius: 50%;
	opacity: 0;
	transition: opacity 0.4s ease;
}

.footer .social-links a:hover {
	color: var(--contrast-color);
	border-color: var(--accent-color);
	transform: translateY(-5px) scale(1.1);
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.25);
}

.footer .social-links a:hover::before {
	opacity: 1;
}

.footer .social-links a i {
	position: relative;
	z-index: 2;
}

.footer h4 {
	font-size: 20px;
	font-weight: 700;
	position: relative;
	padding-bottom: 15px;
	margin-bottom: 25px;
	color: var(--heading-color);
}

.footer h4::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 40px;
	height: 3px;
	background: linear-gradient(90deg, var(--accent-color), var(--heading-color));
	border-radius: 2px;
}

.footer .footer-links {
	margin-bottom: 40px;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 30px;
}

.footer .footer-about {
	text-align: center;
}

.footer .footer-about a {
	color: var(--heading-color);
	font-size: 28px;
	font-weight: 700;
	font-family: var(--heading-font);
	text-decoration: none;
	background: linear-gradient(45deg, var(--heading-color), var(--accent-color));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	transition: all 0.4s ease;
}

.footer .footer-about a:hover {
	background: linear-gradient(45deg, var(--accent-color), var(--heading-color));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	transform: scale(1.05);
}

.footer .footer-contact {
	text-align: center;
}

.footer .footer-contact p {
	margin-bottom: 10px;
	font-size: 16px;
	line-height: 1.6;
}

.footer .copyright {
	padding: 40px 0;
	border-top: 2px solid rgba(255, 255, 255, 0.1);
	text-align: center;
	position: relative;
}

.footer .copyright::before {
	content: '';
	position: absolute;
	top: -1px;
	left: 50%;
	transform: translateX(-50%);
	width: 100px;
	height: 2px;
	background: linear-gradient(
		90deg,
		transparent,
		var(--accent-color),
		transparent
	);
}

.footer .copyright p {
	margin-bottom: 0;
	font-size: 16px;
	font-weight: 500;
}

.footer p {
	color: var(--heading-color);
	line-height: 1.6;
}

.footer .credits {
	margin-top: 10px;
	font-size: 14px;
	opacity: 0.8;
}

.footer .footer-section {
	background: linear-gradient(
		135deg,
		rgba(255, 255, 255, 0.05) 0%,
		rgba(255, 255, 255, 0.02) 100%
	);
	border-radius: 20px;
	padding: 30px;
	margin-bottom: 30px;
	border: 1px solid rgba(255, 255, 255, 0.1);
	transition: all 0.4s ease;
}

.footer .footer-section:hover {
	transform: translateY(-5px);
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
	border-color: rgba(255, 255, 255, 0.2);
}

@media (max-width: 768px) {
	.footer .footer-newsletter {
		margin: 20px 10px;
		padding: 40px 20px;
	}

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

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

	.footer .social-links {
		gap: 10px;
	}

	.footer .social-links a {
		width: 45px;
		height: 45px;
		font-size: 16px;
	}
}

@media (min-width: 1200px) {
	.footer .footer-newsletter {
		margin: 60px 40px;
		padding: 100px 40px;
	}

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

	.footer .footer-top {
		padding: 80px 0 60px 0;
	}
}

/*--------------------------------------------------------------
# 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);
	font-size: 60px;
	color: var(--accent-color);
	text-shadow:
		0 0 20px var(--accent-color),
		0 0 40px var(--accent-color);
	animation: preloaderPulse 1.5s ease-in-out infinite alternate;
}

@keyframes preloaderPulse {
	from {
		transform: scale(1) rotate(0deg);
		text-shadow:
			0 0 20px var(--accent-color),
			0 0 40px var(--accent-color);
	}
	to {
		transform: scale(1.2) rotate(180deg);
		text-shadow:
			0 0 30px var(--accent-color),
			0 0 60px var(--accent-color);
	}
}

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

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

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
	position: fixed;
	visibility: hidden;
	opacity: 0;
	right: 20px;
	bottom: 20px;
	z-index: 99999;
	background: linear-gradient(
		135deg,
		var(--accent-color),
		var(--heading-color),
		var(--default-color)
	);
	width: 60px;
	height: 60px;
	border-radius: 50%;
	transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	box-shadow:
		0 8px 25px rgba(0, 0, 0, 0.3),
		0 0 20px rgba(0, 255, 255, 0.5);
	border: 3px solid var(--accent-color);
	animation: scrollTopGlow 2s ease-in-out infinite alternate;
}

@keyframes scrollTopGlow {
	from {
		box-shadow:
			0 8px 25px rgba(0, 0, 0, 0.3),
			0 0 20px rgba(0, 255, 255, 0.5);
	}
	to {
		box-shadow:
			0 8px 25px rgba(0, 0, 0, 0.3),
			0 0 30px rgba(0, 255, 255, 0.8);
	}
}

.scroll-top:hover {
	transform: scale(1.1) rotate(360deg);
	box-shadow:
		0 12px 35px rgba(0, 0, 0, 0.4),
		0 0 40px rgba(0, 255, 255, 0.6);
	background: linear-gradient(
		135deg,
		var(--heading-color),
		var(--accent-color),
		var(--default-color)
	);
}

.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,
.section {
	color: var(--default-color);
	background: radial-gradient(
		ellipse at center,
		var(--background-color) 0%,
		var(--surface-color) 100%
	);
	padding: 80px 0;
	scroll-margin-top: 90px;
	overflow: clip;
	position: relative;
	border-bottom: 1px solid rgba(0, 255, 255, 0.2);
}

section::before,
.section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 2px;
	background: linear-gradient(
		90deg,
		transparent,
		var(--accent-color),
		var(--heading-color),
		var(--accent-color),
		transparent
	);
	box-shadow: 0 0 10px var(--accent-color);
}

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

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

.section-title h2 {
	font-size: 30px;
	font-weight: 900;
	margin-bottom: 25px;

	text-transform: uppercase;
	letter-spacing: 3px;
	color: #fff;

	word-wrap: break-word;
}

.section-title p {
	margin-bottom: 0;
	font-size: 18px;
	max-width: 600px;
	margin: 0 auto;
	line-height: 1.6;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
	width: 100%;
	min-height: 70vh;
	position: relative;
	padding: 120px 0 80px 0;
	display: flex;
	align-items: center;
	background: linear-gradient(
			135deg,
			var(--background-color) 0%,
			var(--surface-color) 50%,
			var(--accent-color) 100%
		),
		radial-gradient(
			circle at 30% 30%,
			rgba(0, 255, 136, 0.3) 0%,
			transparent 70%
		),
		radial-gradient(
			circle at 70% 70%,
			rgba(255, 0, 128, 0.3) 0%,
			transparent 70%
		);
	background-size:
		400% 400%,
		200% 200%,
		200% 200%;
	animation:
		gradientShift 8s ease infinite,
		cosmicPulse 6s ease-in-out infinite;
	position: relative;
	overflow: hidden;
}

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

@keyframes cosmicPulse {
	0%,
	100% {
		opacity: 0.8;
	}
	50% {
		opacity: 1;
	}
}

@keyframes gridMove {
	0% {
		transform: translateX(0) translateY(0);
	}
	100% {
		transform: translateX(40px) translateY(40px);
	}
}

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

.hero h2 {
	margin: 0;
	font-size: 56px;
	font-weight: 900;
	line-height: 64px;
	text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.4);
	animation: fadeInUp 1.5s ease-out;
}

@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* Additional animations for new design */
@keyframes slideInLeft {
	from {
		opacity: 0;
		transform: translateX(-50px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

@keyframes slideInRight {
	from {
		opacity: 0;
		transform: translateX(50px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

@keyframes zoomIn {
	from {
		opacity: 0;
		transform: scale(0.8);
	}
	to {
		opacity: 1;
		transform: scale(1);
	}
}

@keyframes bounceIn {
	0% {
		opacity: 0;
		transform: scale(0.3);
	}
	50% {
		opacity: 1;
		transform: scale(1.05);
	}
	70% {
		transform: scale(0.9);
	}
	100% {
		opacity: 1;
		transform: scale(1);
	}
}

.hero p {
	color: color-mix(in srgb, var(--default-color), transparent 30%);
	margin: 5px 0 10px 0;
	font-size: 20px;
	font-weight: 400;
}

.hero .download-btn {
	color: var(--contrast-color);
	background: linear-gradient(
		135deg,
		var(--accent-color),
		var(--heading-color),
		var(--default-color)
	);
	font-family: var(--heading-font);
	font-weight: 800;
	font-size: 18px;
	padding: 18px 45px 20px 45px;
	border-radius: 50px;
	transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow:
		0 8px 25px rgba(0, 0, 0, 0.3),
		0 0 30px rgba(0, 255, 255, 0.5);
	position: relative;
	overflow: hidden;
	border: 2px solid var(--accent-color);
	text-transform: uppercase;
	letter-spacing: 2px;
}

.hero .download-btn::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;
}

.hero .download-btn:hover::before {
	left: 100%;
}

.hero .download-btn + .download-btn {
	margin-left: 20px;
}

.hero .download-btn:hover {
	background: linear-gradient(
		135deg,
		var(--heading-color),
		var(--accent-color),
		var(--default-color)
	);
	color: var(--contrast-color);
	transform: translateY(-3px) scale(1.05);
	box-shadow:
		0 12px 35px rgba(0, 0, 0, 0.4),
		0 0 40px rgba(0, 255, 255, 0.6);
}

.hero .download-btn i {
	font-size: 16px;
	line-height: 0;
	margin-right: 8px;
}

@media (max-width: 768px) {
	.hero h2 {
		font-size: 28px;
		line-height: 36px;
	}

	.hero p {
		font-size: 18px;
		line-height: 24px;
		margin-bottom: 30px;
	}

	.hero .download-btn {
		font-size: 14px;
		padding: 8px 20px 10px 20px;
	}
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/

.about {
	background: linear-gradient(
		135deg,
		rgba(0, 255, 136, 0.1),
		rgba(255, 0, 128, 0.05)
	);
	backdrop-filter: blur(15px);
	border-radius: 25px;
	padding: 50px;
	border: 2px solid rgba(0, 255, 255, 0.3);
	box-shadow:
		0 20px 40px rgba(0, 0, 0, 0.3),
		0 0 30px rgba(0, 255, 136, 0.2);
	position: relative;
	overflow: hidden;
}

.about::before {
	content: '';
	position: absolute;
	top: -50%;
	left: -50%;
	width: 200%;
	height: 200%;
	background: radial-gradient(
			circle at 30% 30%,
			rgba(0, 255, 255, 0.1) 0%,
			transparent 50%
		),
		radial-gradient(
			circle at 70% 70%,
			rgba(255, 0, 128, 0.1) 0%,
			transparent 50%
		);
	animation: aboutFloat 10s ease-in-out infinite;
	z-index: -1;
}

@keyframes aboutFloat {
	0%,
	100% {
		transform: translate(0, 0) rotate(0deg);
	}
	25% {
		transform: translate(-10px, -10px) rotate(1deg);
	}
	50% {
		transform: translate(10px, -5px) rotate(-1deg);
	}
	75% {
		transform: translate(-5px, 10px) rotate(2deg);
	}
}
.about ul {
	list-style: none;
	padding: 0;
}

.about ul li {
	display: flex;
	align-items: center;
}

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

.about .read-more {
	background: linear-gradient(45deg, var(--accent-color), var(--heading-color));
	color: var(--contrast-color);
	font-family: var(--heading-font);
	font-weight: 700;
	font-size: 18px;
	letter-spacing: 1.5px;
	padding: 18px 40px;
	border-radius: 50px;
	transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
	cursor: pointer;
	user-select: none;
	text-decoration: none;
	position: relative;
	overflow: hidden;
}

.about .read-more::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(
		90deg,
		transparent,
		rgba(255, 255, 255, 0.3),
		transparent
	);
	transition: left 0.6s;
}

.about .read-more:hover::before {
	left: 100%;
}

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

.about .read-more:hover {
	background: linear-gradient(
		135deg,
		var(--heading-color),
		var(--accent-color)
	);
	box-shadow: 0 8px 25px rgba(0, 255, 255, 0.5);
	transform: translateY(-3px) scale(1.02);
}

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

/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
.features .icon-box {
	display: flex;
	background: linear-gradient(
		135deg,
		var(--surface-color),
		var(--background-color)
	);
	padding: 30px;
	border-radius: 20px;
	box-shadow:
		0 15px 35px rgba(0, 0, 0, 0.3),
		0 0 20px rgba(0, 255, 136, 0.2);
	transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	position: relative;
	overflow: hidden;
	border: 1px solid rgba(0, 255, 136, 0.3);
	backdrop-filter: blur(10px);
}

.features .icon-box::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg, var(--accent-color), var(--heading-color));
	transform: scaleX(0);
	transition: transform 0.4s ease;
}

.features .icon-box:hover::before {
	transform: scaleX(1);
}

.features .icon-box:hover {
	transform: translateY(-10px) scale(1.02);
	box-shadow:
		0 25px 50px rgba(0, 0, 0, 0.3),
		0 0 30px rgba(0, 255, 136, 0.4);
	border-color: var(--accent-color);
}

.features .icon-box:hover i {
	animation: iconSpin 0.6s ease-in-out;
}

@keyframes iconSpin {
	0% {
		transform: scale(1) rotate(0deg);
	}
	50% {
		transform: scale(1.2) rotate(180deg);
	}
	100% {
		transform: scale(1.1) rotate(360deg);
	}
}

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

.features .icon-box i {
	font-size: 60px;
	line-height: 60px;
	color: var(--accent-color);
	margin-right: 20px;
	background: linear-gradient(
		45deg,
		var(--accent-color),
		var(--heading-color),
		var(--default-color)
	);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	filter: drop-shadow(0 0 10px var(--accent-color));
	animation: iconPulse 2s ease-in-out infinite alternate;
}

@keyframes iconPulse {
	from {
		transform: scale(1);
		filter: drop-shadow(0 0 10px var(--accent-color));
	}
	to {
		transform: scale(1.1);
		filter: drop-shadow(0 0 20px var(--accent-color));
	}
}

.features .icon-box p {
	font-size: 15px;
	color: color-mix(in srgb, var(--default-color), transparent 30%);
	margin-bottom: 0;
}

/*--------------------------------------------------------------
# Feature Details Section
--------------------------------------------------------------*/
.feature-details .features-item {
	color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.feature-details .features-item + .features-item {
	margin-top: 100px;
}

@media (max-width: 640px) {
	.feature-details .features-item + .features-item {
		margin-top: 40px;
	}
}

.feature-details .features-item h3 {
	font-weight: 700;
	font-size: 26px;
}

.feature-details .features-item ul {
	list-style: none;
	padding: 0;
}

.feature-details .features-item ul li {
	padding-bottom: 10px;
	display: flex;
	align-items: center;
}

.feature-details .features-item ul li:last-child {
	padding-bottom: 0;
}

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

.feature-details .features-item p:last-child {
	margin-bottom: 0;
}

/*--------------------------------------------------------------
# Gallery Section - Completely Redesigned
--------------------------------------------------------------*/
.gallery {
	overflow: hidden;
	position: relative;
	background: radial-gradient(
		ellipse at center,
		var(--background-color) 0%,
		var(--surface-color) 100%
	);
	padding: 40px 0;
}

.gallery::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 1px;
	background: linear-gradient(
		90deg,
		transparent,
		var(--accent-color),
		transparent
	);
}

.gallery .swiper-wrapper {
	height: auto;
	padding: 60px 0;
	position: relative;
}

.gallery .swiper-wrapper::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 300px;
	height: 2px;
	background: linear-gradient(
		90deg,
		transparent,
		var(--heading-color),
		transparent
	);
}

.gallery .swiper-slide {
	transition: all 2s cubic-bezier(0.68, -0.55, 0.265, 1.55);
	transform: scale(0.2) rotateX(45deg) rotateY(-30deg) translateZ(-200px);
	opacity: 0;
	filter: grayscale(100%) blur(15px) brightness(0) contrast(0) saturate(0)
		hue-rotate(0deg) sepia(1);
	position: relative;
	overflow: hidden;
	border-radius: 50%;
	box-shadow: none;
	perspective: 3000px;
	transform-style: preserve-3d;
	background: conic-gradient(from 0deg, #000, #333, #000, #666, #000);
	clip-path: polygon(
		20% 0%,
		80% 0%,
		100% 20%,
		100% 80%,
		80% 100%,
		20% 100%,
		0% 80%,
		0% 20%
	);
}

.gallery .swiper-slide::before {
	content: '★';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%) scale(3) rotate(45deg);
	font-size: 60px;
	color: #ff0000;
	z-index: 10;
	text-shadow: 0 0 20px #ff0000;
	animation: starTwinkle 1s ease-in-out infinite alternate;
}

.gallery .swiper-slide::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: repeating-linear-gradient(
		45deg,
		transparent,
		transparent 10px,
		rgba(255, 0, 0, 0.3) 10px,
		rgba(255, 0, 0, 0.3) 20px
	);
	z-index: 5;
	opacity: 0;
	transition: all 2s ease;
}

.gallery .swiper-slide:hover::after {
	opacity: 1;
	animation: stripeMove 0.5s linear infinite;
}

.gallery .swiper-slide:hover::before {
	animation: starTwinkle 0.3s ease-in-out infinite alternate;
	color: #ffff00;
	text-shadow: 0 0 30px #ffff00;
}

.gallery .swiper-slide:hover img {
	transform: scale(2.5) rotateX(90deg) rotateY(180deg);
	filter: contrast(2) saturate(3) brightness(2) hue-rotate(180deg) sepia(0);
}

.gallery .swiper-slide img {
	transition: all 2s ease;
	transform: scale(2) rotateX(60deg) rotateY(-45deg);
	filter: contrast(0) saturate(0) brightness(0) hue-rotate(0deg) sepia(1);
	border-radius: 0;
	position: relative;
	z-index: 3;
	clip-path: polygon(
		30% 0%,
		70% 0%,
		100% 30%,
		100% 70%,
		70% 100%,
		30% 100%,
		0% 70%,
		0% 30%
	);
}

.gallery .swiper-slide-prev {
	transform: scale(0.1) rotateX(60deg) rotateY(-60deg) translateZ(-500px)
		translateX(-100px) translateY(50px);
	opacity: 0;
	filter: grayscale(100%) blur(25px) brightness(0) contrast(0) saturate(0)
		hue-rotate(0deg) sepia(1) invert(1);
	clip-path: polygon(
		40% 0%,
		60% 0%,
		100% 40%,
		100% 60%,
		60% 100%,
		40% 100%,
		0% 60%,
		0% 40%
	);
}

.gallery .swiper-slide-next {
	transform: scale(0.1) rotateX(60deg) rotateY(60deg) translateZ(-500px)
		translateX(100px) translateY(-50px);
	opacity: 0;
	filter: grayscale(100%) blur(25px) brightness(0) contrast(0) saturate(0)
		hue-rotate(0deg) sepia(1) invert(1);
	clip-path: polygon(
		40% 0%,
		60% 0%,
		100% 40%,
		60% 100%,
		40% 100%,
		0% 60%,
		0% 40%
	);
}

.gallery .swiper-slide-active {
	text-align: center;
	position: relative;
	transform: scale(2.5) rotateX(0deg) rotateY(0deg) translateZ(100px);
	opacity: 1;
	filter: grayscale(0%) blur(0px) brightness(2) contrast(2) saturate(3)
		hue-rotate(0deg) sepia(0);
	z-index: 100;
	border-radius: 0;
	clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
	background: linear-gradient(
		135deg,
		#ff0000,
		#00ff00,
		#0000ff,
		#ffff00,
		#ff00ff,
		#00ffff
	);
	background-size: 400% 400%;
	animation: rainbowMove 3s ease infinite;
}

.gallery .swiper-slide-active::before {
	content: '🔥';
	position: absolute;
	top: -30px;
	left: 50%;
	transform: translateX(-50%) scale(2);
	font-size: 40px;
	z-index: 101;
	animation: fireBurn 0.5s ease-in-out infinite alternate;
}

.gallery .swiper-slide-active::after {
	content: '';
	position: absolute;
	top: -50px;
	left: -50px;
	right: -50px;
	bottom: -50px;
	background: radial-gradient(circle at 20% 20%, #ff0000, transparent 50%),
		radial-gradient(circle at 80% 20%, #00ff00, transparent 50%),
		radial-gradient(circle at 20% 80%, #0000ff, transparent 50%),
		radial-gradient(circle at 80% 80%, #ffff00, transparent 50%);
	border-radius: 0;
	z-index: -1;
	animation: colorExplosion 2s ease-in-out infinite;
	filter: blur(20px);
}

.gallery .swiper-slide-active img {
	transform: scale(1) rotateX(0deg) rotateY(0deg);
	filter: contrast(2) saturate(3) brightness(2) hue-rotate(0deg) sepia(0);
	border-radius: 0;
	clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
	box-shadow:
		0 0 100px rgba(255, 0, 0, 0.8),
		0 0 200px rgba(0, 255, 0, 0.6),
		0 0 300px rgba(0, 0, 255, 0.4),
		0 0 400px rgba(255, 255, 0, 0.2);
	transition: all 2s cubic-bezier(0.68, -0.55, 0.265, 1.55);
	position: relative;
	z-index: 3;
}

.gallery .swiper-slide-active:hover img {
	transform: scale(1.3) rotateX(5deg) rotateY(5deg);
	filter: contrast(3) saturate(4) brightness(3) hue-rotate(45deg) sepia(0);
	box-shadow:
		0 0 150px rgba(255, 0, 0, 1),
		0 0 300px rgba(0, 255, 0, 0.8),
		0 0 450px rgba(0, 0, 255, 0.6),
		0 0 600px rgba(255, 255, 0, 0.4);
}

.gallery .swiper-slide-active:hover::before {
	animation: fireBurn 0.2s ease-in-out infinite alternate;
	transform: translateX(-50%) scale(3);
}

.gallery .swiper-slide-active:hover::after {
	animation: colorExplosion 1s ease-in-out infinite;
	filter: blur(10px);
}

.gallery .swiper-pagination {
	margin-top: 40px;
	position: relative;
	z-index: 30;
}

.gallery .swiper-pagination .swiper-pagination-bullet {
	background: linear-gradient(
		135deg,
		var(--surface-color),
		var(--background-color)
	);
	border: 3px solid var(--accent-color);
	width: 20px;
	height: 20px;
	opacity: 0.5;
	transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
	position: relative;
	overflow: hidden;
	border-radius: 50%;
	margin: 0 8px;
}

.gallery .swiper-pagination .swiper-pagination-bullet::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(
		90deg,
		transparent,
		rgba(255, 255, 255, 0.4),
		transparent
	);
	transition: left 0.8s;
}

.gallery .swiper-pagination .swiper-pagination-bullet:hover::before {
	left: 100%;
}

.gallery .swiper-pagination .swiper-pagination-bullet-active {
	background: linear-gradient(
		135deg,
		var(--accent-color),
		var(--heading-color)
	);
	border-color: var(--heading-color);
	opacity: 1;
	transform: scale(1.4) rotate(180deg);
	box-shadow: 0 0 30px rgba(220, 20, 60, 0.7);
	animation: bulletPulse 2s ease-in-out infinite;
}

.gallery .swiper-pagination .swiper-pagination-bullet:hover {
	transform: scale(1.2) rotate(90deg);
	opacity: 0.9;
}

@keyframes conicRotate {
	from {
		transform: rotate(0deg);
	}
	to {
		transform: rotate(360deg);
	}
}

@keyframes pulseGlow {
	from {
		opacity: 0.4;
		transform: scale(1);
	}
	to {
		opacity: 0.9;
		transform: scale(1.1);
	}
}

@keyframes bulletPulse {
	0%,
	100% {
		transform: scale(1.4) rotate(180deg);
	}
	50% {
		transform: scale(1.6) rotate(180deg);
	}
}

@keyframes slideFloat {
	0%,
	100% {
		transform: translateY(0px) rotateZ(0deg);
	}
	25% {
		transform: translateY(-10px) rotateZ(1deg);
	}
	50% {
		transform: translateY(-5px) rotateZ(-1deg);
	}
	75% {
		transform: translateY(-15px) rotateZ(2deg);
	}
}

@keyframes imageGlow {
	0%,
	100% {
		filter: contrast(1.5) saturate(1.8) brightness(1.4) hue-rotate(0deg);
	}
	50% {
		filter: contrast(1.7) saturate(2) brightness(1.6) hue-rotate(5deg);
	}
}

@keyframes starTwinkle {
	0%,
	100% {
		opacity: 0.3;
		transform: translate(-50%, -50%) scale(3) rotate(45deg);
	}
	50% {
		opacity: 1;
		transform: translate(-50%, -50%) scale(4) rotate(45deg);
	}
}

@keyframes stripeMove {
	0% {
		background-position: 0px 0px;
	}
	100% {
		background-position: 40px 40px;
	}
}

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

@keyframes fireBurn {
	0%,
	100% {
		transform: translateX(-50%) scale(2) rotate(0deg);
	}
	50% {
		transform: translateX(-50%) scale(2.2) rotate(5deg);
	}
}

@keyframes colorExplosion {
	0%,
	100% {
		transform: scale(1) rotate(0deg);
		filter: blur(20px);
	}
	50% {
		transform: scale(1.2) rotate(180deg);
		filter: blur(10px);
	}
}

.gallery .swiper-slide-active {
	animation: slideFloat 6s ease-in-out infinite;
}

.gallery .swiper-slide-active img {
	animation: imageGlow 4s ease-in-out infinite;
}

@media (min-width: 992px) {
	.gallery .swiper-wrapper {
		padding: 150px 0;
	}

	.gallery .swiper-slide-active {
		transform: scale(3.5) rotateX(0deg) rotateY(0deg) translateZ(200px);
	}

	.gallery .swiper-slide-active:hover {
		transform: scale(4) rotateX(10deg) rotateY(10deg) translateZ(300px);
	}

	.gallery .swiper-slide-active:hover img {
		transform: scale(1.5) rotateX(10deg) rotateY(10deg);
		filter: contrast(4) saturate(5) brightness(4) hue-rotate(90deg) sepia(0);
	}

	.gallery .swiper-slide-active:hover::before {
		transform: translateX(-50%) scale(4);
		animation: fireBurn 0.1s ease-in-out infinite alternate;
	}

	.gallery .swiper-slide-active:hover::after {
		animation: colorExplosion 0.5s ease-in-out infinite;
		filter: blur(5px);
	}

	.gallery .swiper-button-next,
	.gallery .swiper-button-prev {
		background: linear-gradient(
			135deg,
			var(--accent-color),
			var(--heading-color)
		);
		width: 60px;
		height: 60px;
		border-radius: 50%;
		color: var(--contrast-color);
		transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
		box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4);
		border: 3px solid rgba(255, 255, 255, 0.3);
		position: relative;
		overflow: hidden;
	}

	.gallery .swiper-button-next::before,
	.gallery .swiper-button-prev::before {
		content: '';
		position: absolute;
		top: 0;
		left: -100%;
		width: 100%;
		height: 100%;
		background: linear-gradient(
			90deg,
			transparent,
			rgba(255, 255, 255, 0.3),
			transparent
		);
		transition: left 0.8s;
	}

	.gallery .swiper-button-next:hover::before,
	.gallery .swiper-button-prev:hover::before {
		left: 100%;
	}

	.gallery .swiper-button-next:hover,
	.gallery .swiper-button-prev:hover {
		transform: scale(1.15) rotate(360deg);
		box-shadow: 0 18px 45px rgba(0, 0, 0, 0.5);
		background: linear-gradient(
			135deg,
			var(--heading-color),
			var(--accent-color)
		);
	}

	.gallery .swiper-button-next::after,
	.gallery .swiper-button-prev::after {
		font-size: 24px;
		font-weight: bold;
		z-index: 2;
		position: relative;
	}
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials .testimonial-wrap {
	padding-left: 50px;
}

.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
	overflow: hidden;
}

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

.testimonials .testimonial-item {
	background: linear-gradient(
		135deg,
		var(--surface-color),
		var(--background-color)
	);
	box-shadow:
		0px 15px 35px rgba(0, 0, 0, 0.3),
		0 0 20px rgba(255, 0, 128, 0.2);
	box-sizing: content-box;
	padding: 30px;
	margin: 0;
	min-height: 280px;
	position: relative;
	border-radius: 20px;
	border: 2px solid rgba(255, 0, 128, 0.3);
	transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	backdrop-filter: blur(10px);
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.testimonials .testimonial-item:hover {
	transform: translateY(-8px) scale(1.02);
	box-shadow:
		0px 25px 50px rgba(0, 0, 0, 0.4),
		0 0 30px rgba(255, 0, 128, 0.4);
	border-color: var(--default-color);
}

.testimonials .testimonial-item:hover .testimonial-img {
	animation: imageGlow 0.6s ease-in-out;
}

@keyframes imageGlow {
	0%,
	100% {
		box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
	}
	50% {
		box-shadow: 0 0 30px rgba(0, 255, 255, 0.6);
	}
}

.testimonials .testimonial-item .testimonial-img {
	width: 80px;
	height: 80px;
	border-radius: 50%;
	border: 4px solid var(--accent-color);
	position: relative;
	left: auto;
	margin: 0 auto 1rem auto;
	object-fit: cover;
	box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
}

.testimonials .testimonial-item h3 {
	font-size: 20px;
	font-weight: bold;
	margin: 0 0 5px 0;
	text-align: center;
	color: var(--accent-color);
	text-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}

.testimonials .testimonial-item h4 {
	color: var(--heading-color);
	font-size: 16px;
	margin: 0 0 1rem 0;
	text-align: center;
	font-weight: 600;
}

.testimonials .testimonial-item .stars {
	margin: 0 0 1rem 0;
	text-align: center;
}

.testimonials .testimonial-item .stars i {
	color: #ffd700;
	margin: 0 2px;
	font-size: 18px;
	text-shadow: 0 0 10px #ffd700;
	animation: starTwinkle 2s ease-in-out infinite alternate;
}

.testimonials .testimonial-item .stars i:nth-child(2) {
	animation-delay: 0.2s;
}
.testimonials .testimonial-item .stars i:nth-child(3) {
	animation-delay: 0.4s;
}
.testimonials .testimonial-item .stars i:nth-child(4) {
	animation-delay: 0.6s;
}
.testimonials .testimonial-item .stars i:nth-child(5) {
	animation-delay: 0.8s;
}

@keyframes starTwinkle {
	from {
		opacity: 0.7;
		transform: scale(1);
	}
	to {
		opacity: 1;
		transform: scale(1.2);
	}
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
	color: var(--accent-color);
	font-size: 24px;
	line-height: 0;
	text-shadow: 0 0 10px var(--accent-color);
}

.testimonials .testimonial-item .quote-icon-left {
	display: inline-block;
	margin-right: 8px;
	position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
	display: inline-block;
	margin-left: 8px;
	position: relative;
	transform: scale(-1, -1);
}

.testimonials .testimonial-item p {
	font-style: italic;
	margin: 0;
	text-align: center;
	line-height: 1.6;
	flex-grow: 1;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.testimonials .swiper-wrapper {
	height: auto;
}

.testimonials .swiper-pagination {
	margin-top: 20px;
	position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
	width: 12px;
	height: 12px;
	background-color: var(--background-color);
	opacity: 1;
	border: 1px solid var(--accent-color);
}

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

@media (max-width: 767px) {
	.testimonials .testimonial-wrap {
		padding-left: 0;
	}

	.testimonials .testimonials-carousel,
	.testimonials .testimonials-slider {
		overflow: hidden;
	}

	.testimonials .testimonial-item {
		padding: 25px;
		margin: 0;
	}

	.testimonials .testimonial-item .testimonial-img {
		position: static;
		left: auto;
		width: 60px;
		height: 60px;
	}

	.testimonials-wrapper {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}

	.hero h2 {
		font-size: 32px;
		line-height: 40px;
	}

	.section-title h2 {
		font-size: 36px;
	}

	.header .logo h1 {
		font-size: 24px;
	}
}

/*--------------------------------------------------------------
# Pricing Section
--------------------------------------------------------------*/
.pricing .pricing-item {
	background: linear-gradient(
		135deg,
		var(--surface-color),
		var(--background-color)
	);
	padding: 60px 40px;
	box-shadow:
		0 15px 35px rgba(0, 0, 0, 0.3),
		0 0 25px rgba(0, 255, 136, 0.2);
	height: 100%;
	position: relative;
	border-radius: 25px;
	border: 2px solid transparent;
	transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	overflow: hidden;
	backdrop-filter: blur(10px);
}

.pricing .pricing-item::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(90deg, var(--accent-color), var(--heading-color));
	transform: scaleX(0);
	transition: transform 0.4s ease;
}

.pricing .pricing-item:hover::before {
	transform: scaleX(1);
}

.pricing .pricing-item:hover {
	transform: translateY(-10px) scale(1.02);
	box-shadow:
		0 25px 50px rgba(0, 0, 0, 0.4),
		0 0 35px rgba(0, 255, 136, 0.4);
	border-color: var(--accent-color);
}

.pricing .pricing-item:hover h3 {
	animation: titleBounce 0.6s ease-in-out;
}

@keyframes titleBounce {
	0%,
	100% {
		transform: scale(1);
	}
	50% {
		transform: scale(1.1);
	}
}

.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: #228b22;
	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: var(--contrast-color);
	background: linear-gradient(
		135deg,
		var(--accent-color),
		var(--heading-color)
	);
	display: inline-block;
	padding: 12px 40px 14px 40px;
	border-radius: 25px;
	border: 2px solid var(--accent-color);
	transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	font-size: 16px;
	font-weight: 700;
	font-family: var(--heading-font);
	text-transform: uppercase;
	letter-spacing: 1px;
	box-shadow: 0 5px 15px rgba(0, 255, 255, 0.3);
	position: relative;
	overflow: hidden;
}

.pricing .buy-btn::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(
		90deg,
		transparent,
		rgba(255, 255, 255, 0.3),
		transparent
	);
	transition: left 0.6s;
}

.pricing .buy-btn:hover::before {
	left: 100%;
}

.pricing .buy-btn:hover {
	background: linear-gradient(
		135deg,
		var(--heading-color),
		var(--accent-color)
	);
	transform: translateY(-3px) scale(1.02);
	box-shadow: 0 8px 25px rgba(0, 255, 255, 0.5);
}

.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: linear-gradient(
		135deg,
		var(--accent-color),
		var(--heading-color)
	);
	border: 3px solid var(--default-color);
	box-shadow:
		0 20px 40px rgba(0, 0, 0, 0.4),
		0 0 30px rgba(0, 255, 136, 0.5);
	transform: scale(1.05);
	position: relative;
}

.pricing .featured .pricing-item::after {
	content: '🔥';
	position: absolute;
	top: -15px;
	right: -15px;
	font-size: 30px;
	animation: fireBurn 1s ease-in-out infinite alternate;
}

@keyframes fireBurn {
	from {
		transform: scale(1) rotate(0deg);
	}
	to {
		transform: scale(1.2) rotate(5deg);
	}
}

@media (min-width: 992px) {
	.pricing .featured .pricing-item {
		transform: scale(1.02, 1.1);
	}
}

.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);
	text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.pricing .featured .buy-btn {
	background: linear-gradient(
		135deg,
		var(--default-color),
		var(--accent-color)
	);
	color: var(--background-color);
	border-color: var(--default-color);
	box-shadow: 0 5px 15px rgba(0, 255, 136, 0.5);
}

.pricing .featured .buy-btn:hover {
	background: linear-gradient(
		135deg,
		var(--accent-color),
		var(--default-color)
	);
	transform: translateY(-3px);
	box-shadow: 0 8px 25px rgba(0, 255, 136, 0.7);
}

/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
.faq .faq-container {
	margin-top: 15px;
}

.faq .faq-container .faq-item {
	background: linear-gradient(
		135deg,
		var(--surface-color),
		var(--background-color)
	);
	position: relative;
	padding: 25px;
	margin-bottom: 25px;
	overflow: hidden;
	transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	border-radius: 15px;
	border: 2px solid rgba(0, 255, 255, 0.3);
	box-shadow:
		0 8px 20px rgba(0, 0, 0, 0.3),
		0 0 15px rgba(0, 255, 255, 0.2);
	backdrop-filter: blur(10px);
}

.faq .faq-container .faq-item:hover {
	transform: translateY(-3px) scale(1.01);
	box-shadow:
		0 15px 30px rgba(0, 0, 0, 0.3),
		0 0 25px rgba(0, 255, 255, 0.4);
	border-color: var(--default-color);
}

.faq .faq-container .faq-item:hover .faq-icon {
	animation: iconPulse 0.6s ease-in-out;
}

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

.faq .faq-container .faq-item h3 {
	font-weight: 600;
	font-size: 18px;
	line-height: 24px;
	margin: 0 30px 0 32px;
	transition: 0.3s;
	cursor: pointer;
}

.faq .faq-container .faq-item h3 span {
	color: var(--accent-color);
	padding-right: 5px;
}

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

.faq .faq-container .faq-item .faq-content {
	display: grid;
	grid-template-rows: 0fr;
	transition: 0.3s ease-in-out;
	visibility: hidden;
	opacity: 0;
}

.faq .faq-container .faq-item .faq-content p {
	margin-bottom: 0;
	overflow: hidden;
}

.faq .faq-container .faq-item .faq-icon {
	position: absolute;
	top: 22px;
	left: 20px;
	font-size: 20px;
	line-height: 0;
	transition: 0.3s;
	color: var(--accent-color);
}

.faq .faq-container .faq-item .faq-toggle {
	position: absolute;
	top: 20px;
	right: 20px;
	font-size: 16px;
	line-height: 0;
	transition: 0.3s;
	cursor: pointer;
}

.faq .faq-container .faq-item .faq-toggle:hover {
	color: var(--accent-color);
}

.faq .faq-container .faq-active {
	background-color: var(--accent-color);
	transition: 0.3s;
}

.faq .faq-container .faq-active h3,
.faq .faq-container .faq-active h3:hover,
.faq .faq-container .faq-active .faq-toggle,
.faq .faq-container .faq-active .faq-icon,
.faq .faq-container .faq-active .faq-content {
	color: var(--contrast-color);
}

.faq .faq-container .faq-active .faq-content {
	grid-template-rows: 1fr;
	visibility: visible;
	opacity: 1;
	padding-top: 10px;
}

.faq .faq-container .faq-active .faq-toggle {
	transform: rotate(90deg);
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-item {
	background: linear-gradient(
		135deg,
		var(--surface-color),
		var(--background-color)
	);
	padding: 40px;
	border-radius: 20px;
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.1);
	transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	position: relative;
	overflow: hidden;
}

.contact .info-item::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg, var(--accent-color), var(--heading-color));
	transform: scaleX(0);
	transition: transform 0.4s ease;
}

.contact .info-item:hover::before {
	transform: scaleX(1);
}

.contact .info-item:hover {
	transform: translateY(-5px) scale(1.01);
	box-shadow:
		0 20px 40px rgba(0, 0, 0, 0.3),
		0 0 25px rgba(0, 255, 255, 0.4);
	border-color: var(--default-color);
}

.contact .info-item:hover i {
	animation: iconBounce 0.6s ease-in-out;
}

@keyframes iconBounce {
	0%,
	100% {
		transform: scale(1);
	}
	50% {
		transform: scale(1.2);
	}
}

.contact .info-item i {
	font-size: 38px;
	line-height: 0;
	color: var(--accent-color);
}

.contact .info-item h3 {
	font-size: 20px;
	font-weight: 700;
	margin: 20px 0 10px 0;
}

.contact .info-item p {
	padding: 0;
	line-height: 24px;
	font-size: 14px;
	margin-bottom: 0;
}

.contact .php-email-form {
	background: linear-gradient(
		135deg,
		var(--surface-color),
		var(--background-color)
	);
	padding: 40px;
	height: 100%;
	border-radius: 20px;
	box-shadow:
		0 15px 35px rgba(0, 0, 0, 0.3),
		0 0 25px rgba(0, 255, 136, 0.2);
	border: 2px solid rgba(0, 255, 136, 0.3);
	transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	backdrop-filter: blur(10px);
}

.contact .php-email-form:hover {
	box-shadow:
		0 20px 40px rgba(0, 0, 0, 0.3),
		0 0 30px rgba(0, 255, 136, 0.4);
	border-color: var(--default-color);
	transform: translateY(-2px);
}

.contact .php-email-form input[type='text'],
.contact .php-email-form input[type='email'],
.contact .php-email-form textarea {
	font-size: 14px;
	padding: 10px 15px;
	box-shadow: none;
	border-radius: 0;
	color: var(--default-color);
	background-color: color-mix(
		in srgb,
		var(--background-color),
		transparent 50%
	);
	border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.contact .php-email-form input[type='text']:focus,
.contact .php-email-form input[type='email']:focus,
.contact .php-email-form textarea:focus {
	border-color: var(--accent-color);
}

.contact .php-email-form input[type='text']::placeholder,
.contact .php-email-form input[type='email']::placeholder,
.contact .php-email-form textarea::placeholder {
	color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.contact .php-email-form button[type='submit'] {
	background: linear-gradient(
		135deg,
		var(--accent-color),
		var(--heading-color)
	);
	color: var(--contrast-color);
	border: 0;
	padding: 15px 40px;
	transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	border-radius: 25px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1px;
	box-shadow: 0 5px 15px rgba(0, 255, 255, 0.3);
	position: relative;
	overflow: hidden;
}

.contact .php-email-form button[type='submit']::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(
		90deg,
		transparent,
		rgba(255, 255, 255, 0.3),
		transparent
	);
	transition: left 0.6s;
}

.contact .php-email-form button[type='submit']:hover::before {
	left: 100%;
}

.contact .php-email-form button[type='submit']:hover {
	background: linear-gradient(
		135deg,
		var(--heading-color),
		var(--accent-color)
	);
	transform: translateY(-3px) scale(1.02);
	box-shadow: 0 8px 25px rgba(0, 255, 255, 0.5);
}

.contact .php-email-form button[type='submit']:hover {
	background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/
.starter-section {
	/* Add your styles here */
}

#cookie-popup {
	position: fixed;
	bottom: 20px;
	left: 20px;
	transform: translateX(-50%);
	background: linear-gradient(
		135deg,
		var(--background-color),
		var(--surface-color)
	);
	color: var(--default-color);
	border: 2px solid var(--accent-color);
	padding: 25px;
	font-family: var(--default-font);
	box-shadow:
		0 10px 30px rgba(0, 0, 0, 0.3),
		0 0 20px rgba(0, 255, 255, 0.3);
	border-radius: 25px;
	font-size: 14px;
	max-width: 400px;
	z-index: 1000;
	display: none;
	opacity: 0;
	transform: translateY(30px);
	transition: all 0.4s ease;
	backdrop-filter: blur(15px);
}

#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: linear-gradient(
		135deg,
		var(--accent-color),
		var(--heading-color)
	);
	color: white;
	border: none;
	padding: 12px 25px;
	border-radius: 25px;
	cursor: pointer;
	font-size: 14px;
	font-weight: 600;
	transition: all 0.4s ease;
	text-transform: uppercase;
	letter-spacing: 1px;
	box-shadow: 0 5px 15px rgba(0, 255, 255, 0.3);
}

#cookie-popup button:hover {
	background: linear-gradient(
		135deg,
		var(--heading-color),
		var(--accent-color)
	);
	transform: translateY(-2px) scale(1.05);
	box-shadow: 0 8px 20px rgba(0, 255, 255, 0.5);
}

#cookie-popup button:hover {
	background: #0056b3;
}

#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: #0056b3;
}

/*  New Swiper */
.feature-slider {
	position: relative;
	padding-bottom: 60px;
}

.feature-slider .swiper-pagination {
	position: absolute;
	bottom: 20px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 10;
	display: flex;
	gap: 8px;
	justify-content: center;
	align-items: center;
}

.feature-slider .swiper-pagination-bullet {
	width: 12px;
	height: 12px;
	background-color: var(--heading-color);
	opacity: 1;
	border-radius: 50%;
	transition: all 0.3s ease;
	box-shadow: 0 0 10px rgba(255, 0, 128, 0.3);
}

.feature-slider .swiper-pagination-bullet-active {
	width: 16px;
	height: 16px;
	background-color: var(--accent-color);
	box-shadow: 0 0 20px rgba(0, 255, 255, 0.6);
	animation: bulletPulse 2s ease-in-out infinite;
}

@keyframes bulletPulse {
	0%,
	100% {
		transform: scale(1);
	}
	50% {
		transform: scale(1.2);
	}
}

/* Completely Redesigned Feature Example */
.feature_example {
	position: relative;
	background: linear-gradient(
		135deg,
		rgba(0, 255, 136, 0.05) 0%,
		rgba(255, 0, 128, 0.05) 50%,
		rgba(0, 255, 255, 0.05) 100%
	);
	border: 2px solid rgba(0, 255, 255, 0.3);
	border-radius: 25px;
	color: var(--default-color);
	padding: 3rem;
	overflow: hidden;
	transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	transform-style: preserve-3d;
	perspective: 1000px;
	box-shadow:
		0 20px 40px rgba(0, 0, 0, 0.2),
		0 0 30px rgba(0, 255, 255, 0.1);
	backdrop-filter: blur(10px);
}

.feature_example::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: radial-gradient(
			circle at 20% 20%,
			rgba(0, 255, 136, 0.1) 0%,
			transparent 50%
		),
		radial-gradient(
			circle at 80% 80%,
			rgba(255, 0, 128, 0.1) 0%,
			transparent 50%
		);
	opacity: 0;
	transition: opacity 0.6s ease;
	z-index: -1;
}

.feature_example:hover::before {
	opacity: 1;
}

.feature_example:hover {
	transform: translateY(-10px) scale(1.02);
	border-color: var(--accent-color);
	box-shadow:
		0 30px 60px rgba(0, 0, 0, 0.3),
		0 0 50px rgba(0, 255, 255, 0.3);
}

/* Feature Header Styles */
.feature-header {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	margin-bottom: 2rem;
	flex-wrap: wrap;
	gap: 1rem;
}

.feature-header h3 {
	font-size: 2.2rem;
	font-weight: 900;
	background: linear-gradient(
		45deg,
		var(--accent-color),
		var(--heading-color),
		var(--default-color)
	);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	margin: 0;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
	flex: 1;
	min-width: 300px;
}

/* Power Level Indicator */
.power-level {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.5rem;
	background: rgba(0, 255, 136, 0.1);
	padding: 1rem;
	border-radius: 15px;
	border: 2px solid rgba(0, 255, 136, 0.3);
	min-width: 120px;
}

.power-bar {
	width: 100px;
	height: 8px;
	background: rgba(0, 0, 0, 0.3);
	border-radius: 4px;
	overflow: hidden;
	position: relative;
}

.power-fill {
	height: 100%;
	background: linear-gradient(90deg, var(--default-color), var(--accent-color));
	border-radius: 4px;
	animation: powerPulse 2s ease-in-out infinite;
}

@keyframes powerPulse {
	0%,
	100% {
		opacity: 0.8;
	}
	50% {
		opacity: 1;
	}
}

.power-text {
	font-size: 0.9rem;
	font-weight: 600;
	color: var(--default-color);
	text-align: center;
}

/* Ritual Timer */
.ritual-timer {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.5rem;
	background: rgba(255, 0, 128, 0.1);
	padding: 1rem;
	border-radius: 15px;
	border: 2px solid rgba(255, 0, 128, 0.3);
	min-width: 120px;
}

.timer-icon {
	font-size: 1.5rem;
	animation: timerTick 1s ease-in-out infinite;
}

@keyframes timerTick {
	0%,
	100% {
		transform: scale(1);
	}
	50% {
		transform: scale(1.1);
	}
}

.timer-text {
	font-size: 0.9rem;
	font-weight: 600;
	color: var(--heading-color);
	text-align: center;
}

/* Love Meter */
.love-meter {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.5rem;
	background: rgba(255, 0, 128, 0.1);
	padding: 1rem;
	border-radius: 15px;
	border: 2px solid rgba(255, 0, 128, 0.3);
	min-width: 120px;
}

.love-icon {
	font-size: 1.5rem;
	animation: loveBeat 1.5s ease-in-out infinite;
}

@keyframes loveBeat {
	0%,
	100% {
		transform: scale(1);
	}
	50% {
		transform: scale(1.2);
	}
}

.love-text {
	font-size: 0.9rem;
	font-weight: 600;
	color: var(--heading-color);
	text-align: center;
}

/* Cosmic Level */
.cosmic-level {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.5rem;
	background: rgba(0, 255, 255, 0.1);
	padding: 1rem;
	border-radius: 15px;
	border: 2px solid rgba(0, 255, 255, 0.3);
	min-width: 120px;
}

.cosmic-icon {
	font-size: 1.5rem;
	animation: cosmicFloat 3s ease-in-out infinite;
}

@keyframes cosmicFloat {
	0%,
	100% {
		transform: translateY(0) rotate(0deg);
	}
	50% {
		transform: translateY(-5px) rotate(5deg);
	}
}

.cosmic-text {
	font-size: 0.9rem;
	font-weight: 600;
	color: var(--accent-color);
	text-align: center;
}

.feature_example:hover {
	transform: scale(1.05) rotateY(5deg) rotateX(5deg);
	clip-path: polygon(
		0% 10%,
		10% 0%,
		90% 0%,
		100% 10%,
		100% 90%,
		90% 100%,
		10% 100%,
		0% 90%
	);
	border-color: #ff0000;
	box-shadow:
		0 30px 60px rgba(0, 0, 0, 0.4),
		0 0 0 5px rgba(255, 0, 0, 0.3),
		inset 0 2px 0 rgba(255, 255, 255, 0.4);
}

.feature_example:hover::before {
	animation: rainbowRotate 2s linear infinite;
	opacity: 0.6;
}

/* Feature Description */
.feature-description {
	font-size: 1.2rem;
	font-style: italic;
	color: var(--heading-color);
	margin-bottom: 2rem;
	text-align: center;
	padding: 1rem;
	background: rgba(0, 255, 255, 0.05);
	border-radius: 15px;
	border-left: 4px solid var(--accent-color);
	position: relative;
}

.feature-description::before {
	content: '"';
	position: absolute;
	top: -10px;
	left: 10px;
	font-size: 3rem;
	color: var(--accent-color);
	opacity: 0.5;
}

.feature-description::after {
	content: '"';
	position: absolute;
	bottom: -20px;
	right: 10px;
	font-size: 3rem;
	color: var(--accent-color);
	opacity: 0.5;
}

/* Feature Benefits */
.feature-benefits {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
	margin-bottom: 2rem;
}

.benefit-item {
	display: flex;
	align-items: flex-start;
	gap: 1rem;
	padding: 1.5rem;
	background: rgba(0, 255, 136, 0.05);
	border-radius: 15px;
	border: 1px solid rgba(0, 255, 136, 0.2);
	transition: all 0.4s ease;
}

.benefit-item:hover {
	background: rgba(0, 255, 136, 0.1);
	border-color: var(--default-color);
	transform: translateX(10px);
	box-shadow: 0 5px 15px rgba(0, 255, 136, 0.2);
}

.benefit-item i {
	font-size: 2rem;
	color: var(--default-color);
	background: linear-gradient(45deg, var(--default-color), var(--accent-color));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	flex-shrink: 0;
	margin-top: 0.5rem;
}

.benefit-content h4 {
	font-size: 1.3rem;
	font-weight: 700;
	color: var(--accent-color);
	margin: 0 0 0.5rem 0;
	text-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
}

.benefit-content p {
	font-size: 1rem;
	color: var(--default-color);
	margin: 0;
	line-height: 1.6;
}

/* Ritual Steps */
.ritual-steps {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
	margin-bottom: 2rem;
}

.step-item {
	display: flex;
	align-items: flex-start;
	gap: 1rem;
	padding: 1.5rem;
	background: rgba(255, 0, 128, 0.05);
	border-radius: 15px;
	border: 1px solid rgba(255, 0, 128, 0.2);
	transition: all 0.4s ease;
}

.step-item:hover {
	background: rgba(255, 0, 128, 0.1);
	border-color: var(--heading-color);
	transform: translateX(10px);
	box-shadow: 0 5px 15px rgba(255, 0, 128, 0.2);
}

.step-number {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	background: linear-gradient(
		135deg,
		var(--heading-color),
		var(--accent-color)
	);
	color: var(--contrast-color);
	border-radius: 50%;
	font-weight: 900;
	font-size: 1.2rem;
	flex-shrink: 0;
	box-shadow: 0 0 15px rgba(255, 0, 128, 0.4);
}

.step-content h4 {
	font-size: 1.3rem;
	font-weight: 700;
	color: var(--heading-color);
	margin: 0 0 0.5rem 0;
	text-shadow: 0 0 10px rgba(255, 0, 128, 0.3);
}

.step-content p {
	font-size: 1rem;
	color: var(--default-color);
	margin: 0;
	line-height: 1.6;
}

/* Love Practices */
.love-practices {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
	margin-bottom: 2rem;
}

.practice-item {
	display: flex;
	align-items: flex-start;
	gap: 1rem;
	padding: 1.5rem;
	background: rgba(255, 0, 128, 0.05);
	border-radius: 15px;
	border: 1px solid rgba(255, 0, 128, 0.2);
	transition: all 0.4s ease;
}

.practice-item:hover {
	background: rgba(255, 0, 128, 0.1);
	border-color: var(--heading-color);
	transform: translateX(10px);
	box-shadow: 0 5px 15px rgba(255, 0, 128, 0.2);
}

.practice-item i {
	font-size: 2rem;
	color: var(--heading-color);
	background: linear-gradient(45deg, var(--heading-color), var(--accent-color));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	flex-shrink: 0;
	margin-top: 0.5rem;
}

.practice-content h4 {
	font-size: 1.3rem;
	font-weight: 700;
	color: var(--heading-color);
	margin: 0 0 0.5rem 0;
	text-shadow: 0 0 10px rgba(255, 0, 128, 0.3);
}

.practice-content p {
	font-size: 1rem;
	color: var(--default-color);
	margin: 0;
	line-height: 1.6;
}

/* Cosmic Moments */
.cosmic-moments {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
	margin-bottom: 2rem;
}

.moment-item {
	display: flex;
	align-items: flex-start;
	gap: 1rem;
	padding: 1.5rem;
	background: rgba(0, 255, 255, 0.05);
	border-radius: 15px;
	border: 1px solid rgba(0, 255, 255, 0.2);
	transition: all 0.4s ease;
}

.moment-item:hover {
	background: rgba(0, 255, 255, 0.1);
	border-color: var(--accent-color);
	transform: translateX(10px);
	box-shadow: 0 5px 15px rgba(0, 255, 255, 0.2);
}

.moment-item i {
	font-size: 2rem;
	color: var(--accent-color);
	background: linear-gradient(45deg, var(--accent-color), var(--heading-color));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	flex-shrink: 0;
	margin-top: 0.5rem;
}

.moment-content h4 {
	font-size: 1.3rem;
	font-weight: 700;
	color: var(--accent-color);
	margin: 0 0 0.5rem 0;
	text-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
}

.moment-content p {
	font-size: 1rem;
	color: var(--default-color);
	margin: 0;
	line-height: 1.6;
}

.feature_example h3,
.feature_example h4,
.feature_example p {
	position: relative;
	z-index: 5;
	transition: all 0.6s ease;
}

.feature_example h3 {
	font-size: 2rem;
	font-weight: 800;
	background: linear-gradient(45deg, #ff0000, #00ff00, #0000ff);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	margin-bottom: 1rem;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.feature_example h4 {
	font-size: 1.5rem;
	font-weight: 600;
	color: var(--heading-color);
	margin-bottom: 1rem;
	border-left: 4px solid var(--accent-color);
	padding-left: 1rem;
}

.feature_example p {
	font-size: 1.1rem;
	line-height: 1.8;
	color: var(--default-color);
	margin-bottom: 1.5rem;
	text-align: justify;
}

/* Feature Action */
.feature-action {
	text-align: center;
	margin-top: 2rem;
}

/* Power Button */
.power-btn {
	background: linear-gradient(
		135deg,
		var(--default-color),
		var(--accent-color)
	);
	color: var(--contrast-color);
	border: none;
	padding: 1rem 2rem;
	border-radius: 50px;
	font-weight: 700;
	font-size: 1.1rem;
	text-transform: uppercase;
	letter-spacing: 1px;
	transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	box-shadow: 0 5px 15px rgba(0, 255, 136, 0.3);
	position: relative;
	overflow: hidden;
	cursor: pointer;
}

.power-btn::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(
		90deg,
		transparent,
		rgba(255, 255, 255, 0.3),
		transparent
	);
	transition: left 0.6s;
}

.power-btn:hover::before {
	left: 100%;
}

.power-btn:hover {
	background: linear-gradient(
		135deg,
		var(--accent-color),
		var(--default-color)
	);
	transform: translateY(-3px) scale(1.05);
	box-shadow: 0 8px 25px rgba(0, 255, 136, 0.5);
}

/* Ritual Button */
.ritual-btn {
	background: linear-gradient(
		135deg,
		var(--heading-color),
		var(--accent-color)
	);
	color: var(--contrast-color);
	border: none;
	padding: 1rem 2rem;
	border-radius: 50px;
	font-weight: 700;
	font-size: 1.1rem;
	text-transform: uppercase;
	letter-spacing: 1px;
	transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	box-shadow: 0 5px 15px rgba(255, 0, 128, 0.3);
	position: relative;
	overflow: hidden;
	cursor: pointer;
}

.ritual-btn::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(
		90deg,
		transparent,
		rgba(255, 255, 255, 0.3),
		transparent
	);
	transition: left 0.6s;
}

.ritual-btn:hover::before {
	left: 100%;
}

.ritual-btn:hover {
	background: linear-gradient(
		135deg,
		var(--accent-color),
		var(--heading-color)
	);
	transform: translateY(-3px) scale(1.05);
	box-shadow: 0 8px 25px rgba(255, 0, 128, 0.5);
}

/* Love Button */
.love-btn {
	background: linear-gradient(
		135deg,
		var(--heading-color),
		var(--accent-color)
	);
	color: var(--contrast-color);
	border: none;
	padding: 1rem 2rem;
	border-radius: 50px;
	font-weight: 700;
	font-size: 1.1rem;
	text-transform: uppercase;
	letter-spacing: 1px;
	transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	box-shadow: 0 5px 15px rgba(255, 0, 128, 0.3);
	position: relative;
	overflow: hidden;
	cursor: pointer;
}

.love-btn::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(
		90deg,
		transparent,
		rgba(255, 255, 255, 0.3),
		transparent
	);
	transition: left 0.6s;
}

.love-btn:hover::before {
	left: 100%;
}

.love-btn:hover {
	background: linear-gradient(
		135deg,
		var(--accent-color),
		var(--heading-color)
	);
	transform: translateY(-3px) scale(1.05);
	box-shadow: 0 8px 25px rgba(255, 0, 128, 0.5);
}

/* Cosmic Button */
.cosmic-btn {
	background: linear-gradient(
		135deg,
		var(--accent-color),
		var(--heading-color)
	);
	color: var(--contrast-color);
	border: none;
	padding: 1rem 2rem;
	border-radius: 50px;
	font-weight: 700;
	font-size: 1.1rem;
	text-transform: uppercase;
	letter-spacing: 1px;
	transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	box-shadow: 0 5px 15px rgba(0, 255, 255, 0.3);
	position: relative;
	overflow: hidden;
	cursor: pointer;
}

.cosmic-btn::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(
		90deg,
		transparent,
		rgba(255, 255, 255, 0.3),
		transparent
	);
	transition: left 0.6s;
}

.cosmic-btn:hover::before {
	left: 100%;
}

.cosmic-btn:hover {
	background: linear-gradient(
		135deg,
		var(--heading-color),
		var(--accent-color)
	);
	transform: translateY(-3px) scale(1.05);
	box-shadow: 0 8px 25px rgba(0, 255, 255, 0.5);
}

/* Hover Effects for Feature Elements */
.feature_example:hover h3 {
	background: linear-gradient(
		45deg,
		var(--accent-color),
		var(--heading-color),
		var(--default-color)
	);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	transform: scale(1.02);
}

.feature_example:hover .power-level {
	border-color: var(--default-color);
	box-shadow: 0 0 20px rgba(0, 255, 136, 0.4);
}

.feature_example:hover .ritual-timer {
	border-color: var(--heading-color);
	box-shadow: 0 0 20px rgba(255, 0, 128, 0.4);
}

.feature_example:hover .love-meter {
	border-color: var(--heading-color);
	box-shadow: 0 0 20px rgba(255, 0, 128, 0.4);
}

.feature_example:hover .cosmic-level {
	border-color: var(--accent-color);
	box-shadow: 0 0 20px rgba(0, 255, 255, 0.4);
}

.feature_example .btn,
.feature_example button {
	position: relative;
	z-index: 5;
	background: linear-gradient(
		135deg,
		var(--accent-color),
		var(--heading-color)
	);
	color: var(--contrast-color);
	border: none;
	padding: 12px 30px;
	border-radius: 50px;
	font-weight: 600;
	font-size: 1rem;
	transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
	overflow: hidden;
}

.feature_example .btn::before,
.feature_example button::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(
		90deg,
		transparent,
		rgba(255, 255, 255, 0.3),
		transparent
	);
	transition: left 0.6s;
}

.feature_example .btn:hover::before,
.feature_example button:hover::before {
	left: 100%;
}

.feature_example .btn:hover,
.feature_example button:hover {
	transform: scale(1.1) translateY(-3px);
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
	background: linear-gradient(
		135deg,
		var(--heading-color),
		var(--accent-color)
	);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
	.feature_example {
		padding: 2rem;
	}

	.feature-header {
		flex-direction: column;
		align-items: center;
		text-align: center;
	}

	.feature-header h3 {
		font-size: 1.8rem;
		min-width: auto;
		margin-bottom: 1rem;
	}

	.power-level,
	.ritual-timer,
	.love-meter,
	.cosmic-level {
		min-width: 100px;
		padding: 0.8rem;
	}

	.power-bar {
		width: 80px;
	}

	.benefit-item,
	.step-item,
	.practice-item,
	.moment-item {
		padding: 1rem;
	}

	.benefit-item i,
	.practice-item i,
	.moment-item i {
		font-size: 1.5rem;
	}

	.step-number {
		width: 35px;
		height: 35px;
		font-size: 1rem;
	}

	.power-btn,
	.ritual-btn,
	.love-btn,
	.cosmic-btn {
		padding: 0.8rem 1.5rem;
		font-size: 1rem;
	}
}

@media (max-width: 576px) {
	.feature_example {
		padding: 1.5rem;
	}

	.feature-header h3 {
		font-size: 1.5rem;
	}

	.feature-description {
		font-size: 1rem;
		padding: 0.8rem;
	}

	.benefit-content h4,
	.step-content h4,
	.practice-content h4,
	.moment-content h4 {
		font-size: 1.1rem;
	}

	.benefit-content p,
	.step-content p,
	.practice-content p,
	.moment-content p {
		font-size: 0.9rem;
	}
}

@media (min-width: 1200px) {
	.feature_example {
		padding: 3.5rem;
		transform: perspective(1500px) rotateY(0deg);
	}

	.feature_example:hover {
		transform: perspective(1500px) rotateY(5deg) rotateX(3deg) scale(1.03);
	}

	.feature-header h3 {
		font-size: 2.5rem;
	}

	.power-level,
	.ritual-timer,
	.love-meter,
	.cosmic-level {
		min-width: 140px;
		padding: 1.2rem;
	}

	.power-bar {
		width: 120px;
		height: 10px;
	}

	.benefit-item,
	.step-item,
	.practice-item,
	.moment-item {
		padding: 2rem;
	}

	.power-btn,
	.ritual-btn,
	.love-btn,
	.cosmic-btn {
		padding: 1.2rem 2.5rem;
		font-size: 1.2rem;
	}
}

.feature-list {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 2rem;
	list-style: none;
	padding: 0;
	margin: 0;
}

/* Additional animations for feature elements */
.feature_example {
	animation: featureSlideIn 0.8s ease-out;
}

@keyframes featureSlideIn {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.feature_example:nth-child(1) {
	animation-delay: 0.1s;
}
.feature_example:nth-child(2) {
	animation-delay: 0.2s;
}
.feature_example:nth-child(3) {
	animation-delay: 0.3s;
}
.feature_example:nth-child(4) {
	animation-delay: 0.4s;
}

/* Enhanced hover effects */
.feature_example:hover .benefit-item,
.feature_example:hover .step-item,
.feature_example:hover .practice-item,
.feature_example:hover .moment-item {
	transform: translateX(15px);
}

.feature_example:hover .power-fill {
	animation: powerSurge 0.5s ease-in-out;
}

@keyframes powerSurge {
	0%,
	100% {
		transform: scaleX(1);
	}
	50% {
		transform: scaleX(1.1);
	}
}

.feature_example:hover .timer-icon {
	animation: timerTick 0.3s ease-in-out infinite;
}

.feature_example:hover .love-icon {
	animation: loveBeat 0.8s ease-in-out infinite;
}

.feature_example:hover .cosmic-icon {
	animation: cosmicFloat 1.5s ease-in-out infinite;
}

.feature-card {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	background: linear-gradient(
		135deg,
		var(--surface-color),
		var(--background-color)
	);
	border-radius: 1.5rem;
	box-shadow:
		0 15px 35px rgba(0, 0, 0, 0.3),
		0 0 20px rgba(0, 255, 136, 0.2);
	padding: 2rem;
	transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	border: 2px solid rgba(0, 255, 136, 0.3);
	position: relative;
	overflow: hidden;
	backdrop-filter: blur(10px);
}

.feature-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg, var(--accent-color), var(--heading-color));
	transform: scaleX(0);
	transition: transform 0.4s ease;
}

.feature-card:hover::before {
	transform: scaleX(1);
}

.feature-card:hover {
	transform: translateY(-8px) scale(1.02);
	box-shadow:
		0 25px 50px rgba(0, 0, 0, 0.4),
		0 0 30px rgba(0, 255, 136, 0.4);
	border-color: var(--accent-color);
}

.feature-card:hover i {
	animation: iconGlow 0.6s ease-in-out;
}

@keyframes iconGlow {
	0%,
	100% {
		filter: drop-shadow(0 0 10px var(--accent-color));
	}
	50% {
		filter: drop-shadow(0 0 20px var(--accent-color));
	}
}

.feature-content {
	display: flex;
	align-items: flex-start;
	gap: 0.75rem;
	font-size: 1rem;
	line-height: 1.5;
	margin-bottom: 1.5rem;
}

.feature-content i {
	font-size: 1.5rem;
	color: #f4d03f;
	flex-shrink: 0;
}

.read-more {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 0.5rem;
	background: linear-gradient(
		135deg,
		var(--accent-color),
		var(--heading-color)
	);
	color: #fff;
	padding: 1rem 1.5rem;
	border-radius: 1rem;
	text-decoration: none;
	transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	width: 100%;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1px;
	border: 2px solid var(--accent-color);
	box-shadow: 0 5px 15px rgba(0, 255, 255, 0.3);
	position: relative;
	overflow: hidden;
}

.read-more::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(
		90deg,
		transparent,
		rgba(255, 255, 255, 0.3),
		transparent
	);
	transition: left 0.6s;
}

.read-more:hover::before {
	left: 100%;
}

.read-more:hover {
	transform: translateY(-3px) scale(1.02);
	box-shadow: 0 8px 25px rgba(0, 255, 255, 0.5);
	background: linear-gradient(
		135deg,
		var(--heading-color),
		var(--accent-color)
	);
}

.read-more:hover {
	background-color: var(--accent-color);
}

footer div a {
	display: inline-block;
	margin-right: 1.5rem;
	font-size: 1rem;
	color: var(--accent-color);
	text-decoration: none;
	transition: all 0.4s ease;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1px;
	padding: 0.5rem 1rem;
	border-radius: 0.5rem;
	border: 1px solid transparent;
}

footer div a:hover {
	color: var(--default-color);
	text-decoration: none;
	background: rgba(0, 255, 136, 0.1);
	border-color: var(--accent-color);
	transform: translateY(-2px);
	box-shadow: 0 5px 15px rgba(0, 255, 255, 0.3);
}

footer div a:last-child {
	margin-right: 0;
}

footer div a:hover {
	color: var(--default-color);
	text-decoration: none;
	background: rgba(0, 255, 136, 0.1);
	border-color: var(--accent-color);
	transform: translateY(-2px);
	box-shadow: 0 5px 15px rgba(0, 255, 255, 0.3);
}
