@charset "utf-8";
/* CSS Document 
Byteping
*/

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

/* Root */
:root {
	--primary-gradient: linear-gradient(135deg, #d1346e, #7b45c7, #4b7ed9);
	--secondary-gradient: linear-gradient(45deg, #40c4cc, #d1346e, #e06040);
	--muted-gradient: linear-gradient(135deg, #b8306a, #6d3fb3, #3d6cc7);
	--dark-gradient: linear-gradient(135deg, #0a0a0f 0%, #151520 25%, #222242 50%, #16213e 75%, #0f3460 100%);
	--box-gradient: linear-gradient(135deg, #a02859, #5e3492, #325aa6);
	--box-gradient-switch: linear-gradient(135deg, #325aa6, #5e3492, #a02859);
	--dark-bg: #0a0a0a;
	--card-bg: rgba(20, 20, 20, 0.8);
	--text-primary: #e0e0e0;
	--text-secondary: #9a9a9a;
	--neon-pink: #d1346e;
	--neon-blue: #40c4cc;
	--neon-purple: #7b45c7;
	--muted-pink: #b8306a;
	--muted-blue: #3a9da3;
	--muted-purple: #6d3fb3;
	--font-display: 'Orbitron', monospace;
	--font-heading: 'Space Grotesk', sans-serif;
	--primary: #00d9ff;
	--secondary: #ff00ea;
	--dark: #0a0a0f;
	--glow: #00ffcc;
	--light: #ffffff;
}

/* Navigation */
nav {
	position: fixed;
	top: 0;
	width: 100%;
	background: rgba(10, 10, 10, 0.95);
	backdrop-filter: blur(10px);
	z-index: 1000;
	padding: 1rem 0;
	box-shadow: 0 2px 20px rgba(255, 0, 110, 0.3);
}

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

/* Logo */

.logo {
	font-family: 'Orbitron', sans-serif;
	font-size: 2rem;
	font-weight: 900;
	background: var(--muted-gradient);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	text-shadow: 0 0 20px rgba(211, 52, 110, 0.3);
	animation: neonFlicker 2s ease-in-out infinite;
	text-decoration: none;
	display: flex;
	align-items: center;
	gap: 0.5rem;
	letter-spacing: 2px;
}

.logo-icon {
	width: 40px;
	height: 40px;
	position: relative;
}

.logo-icon svg {
	width: 100%;
	height: 100%;
	filter: drop-shadow(0 0 10px rgba(255, 0, 110, 0.5));
}

.logo:hover {
	transform: scale(1.05);
	transition: transform 0.3s ease;
}

@keyframes neonFlicker {

	0%,
	100% {
		opacity: 1;
	}

	50% {
		opacity: 0.8;
	}
}

/* Nav links */
.nav-links {
	display: flex;
	gap: 2rem;
	list-style: none;
}

.nav-links a {
	font-family: 'Exo 2', sans-serif;
	color: var(--text-primary);
	text-decoration: none;
	position: relative;
	transition: all 0.3s ease;
	padding: 0.5rem 1rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.nav-links a::before {
	content: '';
	position: absolute;
	bottom: -2px;
	left: 50%;
	transform: translateX(-50%);
	width: 0;
	height: 2px;
	background: linear-gradient(90deg, transparent, var(--muted-pink), var(--muted-purple), transparent);
	transition: width 0.3s ease;
}

.nav-links a::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(180deg, transparent, rgba(184, 48, 106, 0.1));
	opacity: 0;
	transition: opacity 0.3s ease;
	z-index: -1;
}

.nav-links a:hover {
	color: var(--muted-blue);
	text-shadow: 0 0 8px rgba(58, 157, 163, 0.3);
}

.nav-links a:hover::before {
	width: 100%;
}

.nav-links a:hover::after {
	opacity: 1;
}

.nav-links a.active {
	color: var(--muted-pink);
	text-shadow: 0 0 10px rgba(184, 48, 106, 0.4);
}

.nav-links a.active::before {
	width: 100%;
	background: linear-gradient(90deg, transparent, var(--muted-pink), transparent);
}

/* Mobile menu toggle */
.menu-toggle {
	display: none;
	flex-direction: column;
	cursor: pointer;
	padding: 0.5rem;
	z-index: 1001;
}

.menu-toggle span {
	width: 25px;
	height: 3px;
	background: var(--muted-gradient);
	margin: 3px 0;
	transition: 0.3s;
	border-radius: 2px;
}

.menu-toggle.active span:nth-child(1) {
	transform: rotate(-45deg) translate(-5px, 6px);
}

.menu-toggle.active span:nth-child(2) {
	opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
	transform: rotate(45deg) translate(-5px, -6px);
}

/* Hero section */
.hero {
    min-height: 30vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 160px 1rem 50px 1rem;
    position: relative;
    overflow: hidden;
	background: var(--dark-gradient)
}

/* Hero Title*/
.hero-title {
	font-family: 'Orbitron', monospace;
	font-size: 4rem;
	font-weight: 900;
	margin-bottom: 1rem;
	background: var(--muted-gradient);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	animation: gradientShift 4s ease-in-out infinite alternate;
	filter: drop-shadow(0 0 20px rgba(123, 69, 199, 0.3));
	letter-spacing: 3px;
	text-transform: uppercase;
}

.hero-title-focus {
	font-family: 'Orbitron', monospace;
	font-size: 5rem;
	font-weight: 900;
	margin-bottom: 1rem;
	background: var(--light);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	animation: gradientShift 4s ease-in-out infinite alternate;
	filter: drop-shadow(0 0 20px rgba(123, 69, 199, 0.3));
	letter-spacing: 3px;
	text-transform: uppercase;
}

.hero-value {
	font-family: 'Orbitron', monospace;
	font-size: 2rem;
	font-weight: 100;
	margin-bottom: 1rem;
	padding: 10px 0 0 0;
	background: var(--text-primary);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	animation: gradientShift 4s ease-in-out infinite alternate;
	filter: drop-shadow(0 0 20px rgba(123, 69, 199, 0.3));
	letter-spacing: 3px;
	text-transform: uppercase;
}

.hero-subtitle {
	font-family: 'Share Tech Mono', monospace;
	font-size: 1.5rem;
	color: var(--text-primary);
	margin-bottom: 2rem;
	text-shadow: 0 0 8px rgba(64, 196, 204, 0.3);
	letter-spacing: 1px;
}

/* cta button */
.cta-button {
	font-family: 'Exo 2', sans-serif;
	padding: 1rem 3rem;
	background: var(--muted-gradient);
	border: none;
	border-radius: 50px;
	color: white;
	font-size: 1.2rem;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	box-shadow: 0 5px 15px rgba(123, 69, 199, 0.3);
	text-decoration: none;
	display: inline-block;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.cta-button:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 25px rgba(123, 69, 199, 0.4);
	background: var(--box-gradient);
}

.cta-secondary {
	background: transparent;
	border: 2px solid;
	border-image: var(--muted-gradient) 1;
	color: var(--text-primary);
	position: relative;
	overflow: hidden;
}

.cta-secondary::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: var(--muted-gradient);
	transition: left 0.3s ease;
	z-index: -1;
}

.cta-secondary:hover {
	color: white;
	border-image: none;
	border-color: transparent;
}

.cta-secondary:hover::before {
	left: 0;
}

@keyframes gradientShift {

	0%,
	100% {
		filter: hue-rotate(0deg) drop-shadow(0 0 20px rgba(123, 69, 199, 0.3));
	}

	50% {
		filter: hue-rotate(20deg) drop-shadow(0 0 20px rgba(123, 69, 199, 0.3));
	}
}

@keyframes glow-text {
	from {
		filter: drop-shadow(0 0 20px rgba(0, 217, 255, 0.5));
	}

	to {
		filter: drop-shadow(0 0 30px rgba(255, 0, 234, 0.8));
	}
}

.text-fade-out {
	opacity: 0;
}

/* Offer section */
.offer {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 50px 1rem 50px 1rem;
    overflow: hidden;
	background: var(--muted-gradient)
}

.offer-section {
	justify-content: center;
}

.offer-title {
	font-family: 'Orbitron', monospace;
	text-align: center;
	font-size: 4rem;
	font-weight: 900;
	margin-bottom: 1rem;
	background: var(--light);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	animation: gradientShift 4s ease-in-out infinite alternate;
	filter: drop-shadow(0 0 20px rgba(123, 69, 199, 0.3));
	letter-spacing: 3px;
	text-transform: uppercase;
}

.offer-value {
	font-family: 'Orbitron', monospace;
	font-size: 6rem;
	font-weight: 900;
	margin-bottom: 1rem;
	background: var(--light);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	animation: gradientShift 4s ease-in-out infinite alternate;
	filter: drop-shadow(0 0 20px rgba(123, 69, 199, 0.3));
	letter-spacing: 3px;
	text-transform: uppercase;
	text-align: center ;
}

/* Section Styles */
.container {
	max-width: 1200px;
	margin: 1rem auto;
}

.section-title {
	font-family: var(--font-display);
	font-size: clamp(2rem, 5vw, 3.5rem);
	font-weight: 700;
	color: var(--light);
	text-align: center;
	margin-bottom: 50px;
	position: relative;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.section-title::after {
	content: '';
	position: absolute;
	bottom: -10px;
	left: 50%;
	transform: translateX(-50%);
	width: 100px;
	height: 3px;
	background: linear-gradient(90deg, var(--primary), var(--secondary));
}

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

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

/* Scroll Animations */
.fade-in {
	opacity: 0;
	transform: translateY(40px);
	transition: all 0.8s ease;
}

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

/* Features Section */
.features-section-bg {
	position: relative;
	background: linear-gradient(135deg, #1a1a2e 0%, #0a0a0f 100%);
}

/* stats sections */
.stats-section {
	display: flex;
	flex-direction: column;
	position: relative;
	gap: 1rem;
	padding: 30px 40px;
	background: var(--light);
	overflow: hidden;
}

.stats-container {
	display: flex;
	max-width: 1200px;
	margin: 1rem auto;
	flex-wrap: wrap;
}

.stat-card {
    background: var(--box-gradient);
	backdrop-filter: blur(20px);
	margin: 3 auto;
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    min-width: 250px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
	margin: 1rem;
}

.stat-card:hover {
    background: var(--box-gradient-switch);
	transform: scale(1.2) rotate(-0.5deg);
	transition: transform 0.3s ease;
	box-shadow:
		0 30px 60px rgba(0, 217, 255, 0.4),
		inset 0 0 30px rgba(255, 255, 255, 0.1);
}

.stat-number {
    font-size: 5rem;
    font-weight: 700;
	font-family: var(--font-display);
    color: var(--light);
    display: block;
}

.stat-client {
	font-size: 2rem;
    font-weight: 700;
	font-family: var(--font-display);
    color: var(--light);
    display: block;
}

.stat-label {
    font-size: 1.5rem;
	font-family: var(--font-heading);
    color: var(--text-secondary);
    margin-top: 1rem;
}

/* Content Sections */
.content-section {
	position: relative;
	min-height: 100vh;
	padding: 100px 5%;
	background: var(--dark);
	z-index: 20;
	overflow: hidden;
}

.section-gradient {
	background: linear-gradient(180deg, var(--dark) 0%, #1a1a2e 50%, var(--dark) 100%);
}

/* 3D Carousel Features Section */
.features-container {
	position: relative;
	height: 520px;
	perspective: 1200px;
	margin: 50px 0;
}

.carousel-3d {
	position: absolute;
	width: 100%;
	height: 100%;
	transform-style: preserve-3d;
	transition: transform 0.8s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.feature-card-3d {
	position: absolute;
	width: 255px;
	height: 340px;
	left: 50%;
	top: 50%;
	margin-left: -127px;
	margin-top: -170px;
	background: linear-gradient(135deg, rgba(0, 217, 255, 0.1), rgba(255, 0, 234, 0.1));
	backdrop-filter: blur(20px);
	border: 2px solid rgba(255, 255, 255, 0.2);
	border-radius: 22px;
	padding: 32px;
	transition: all 0.5s ease;
	transform-style: preserve-3d;
	cursor: pointer;
	overflow: hidden;
	backface-visibility: hidden;
}

.feature-card-3d::before {
	content: '';
	position: absolute;
	top: -2px;
	left: -2px;
	right: -2px;
	bottom: -2px;
	background: linear-gradient(45deg, var(--primary), var(--secondary), var(--glow), var(--primary));
	border-radius: 22px;
	opacity: 0;
	z-index: -1;
	transition: opacity 0.5s ease;
	animation: gradient-border 3s linear infinite;
	background-size: 300% 300%;
}

@keyframes gradient-border {
	0% {
		background-position: 0% 50%;
	}

	50% {
		background-position: 100% 50%;
	}

	100% {
		background-position: 0% 50%;
	}
}

.feature-card-3d:hover::before {
	opacity: 1;
}

.feature-card-3d:nth-child(1) {
	transform: rotateY(0deg) translateZ(320px);
}

.feature-card-3d:nth-child(2) {
	transform: rotateY(60deg) translateZ(320px);
}

.feature-card-3d:nth-child(3) {
	transform: rotateY(120deg) translateZ(320px);
}

.feature-card-3d:nth-child(4) {
	transform: rotateY(180deg) translateZ(320px);
}

.feature-card-3d:nth-child(5) {
	transform: rotateY(240deg) translateZ(320px);
}

.feature-card-3d:nth-child(6) {
	transform: rotateY(300deg) translateZ(320px);
}

.feature-card-3d:hover {
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.05));
	box-shadow:
		0 30px 60px rgba(0, 217, 255, 0.4),
		inset 0 0 30px rgba(255, 255, 255, 0.1);
}

.feature-icon-3d {
	width: 64px;
	height: 64px;
	background: linear-gradient(135deg, var(--primary), var(--secondary));
	border-radius: 16px;
	margin: 0 auto 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 28px;
	position: relative;
	transform: translateZ(20px);
	box-shadow: 0 10px 30px rgba(0, 217, 255, 0.3);
}

.feature-title-3d {
	font-family: var(--font-heading);
	color: var(--light);
	font-size: 1.25rem;
	font-weight: 600;
	margin-bottom: 12px;
	text-align: center;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	transform: translateZ(10px);
}

.feature-description-3d {
	font-family: var(--font-heading);
	color: var(--light);
	line-height: 1.6;
	text-align: center;
	font-weight: 400;
	font-size: 0.9rem;
	letter-spacing: 0.02em;
}

.feature-number {
	position: absolute;
	top: 16px;
	right: 16px;
	font-family: var(--font-display);
	font-size: 2.4rem;
	font-weight: 900;
	background: linear-gradient(135deg, var(--primary), var(--secondary));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	opacity: 0.3;
}

/* Carousel Controls */
.carousel-controls {
	position: absolute;
	bottom: -50px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	gap: 20px;
	z-index: 100;
}

.carousel-btn {
	width: 50px;
	height: 50px;
	background: rgba(0, 0, 0, 1);
	backdrop-filter: blur(10px);
	border: 2px solid rgba(255, 255, 255, 1);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all 0.3s ease;
	color: var(--light);
	font-size: 20px;
	user-select: none;
}

.carousel-btn:hover {
	background: linear-gradient(135deg, var(--primary), var(--secondary));
	transform: scale(1.1);
	box-shadow: 0 10px 30px rgba(0, 217, 255, 0.4);
}

.carousel-btn:active {
	transform: scale(0.95);
}

/* Carousel Indicators */
.carousel-indicators {
	position: absolute;
	bottom: -90px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	gap: 10px;
}

.indicator {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.2);
	transition: all 0.3s ease;
	cursor: pointer;
}

.indicator.active {
	background: var(--primary);
	box-shadow: 0 0 10px var(--primary);
	transform: scale(1.3);
}

/* banner sections */
.banner-section {
	position: relative;
	gap: 1rem;
	padding: 30px 30px;
	background: var(--light);
}

.banner-container {
	position: relative;
	max-width: 1200px;
	margin: 1rem auto;
	flex-wrap: wrap;
	text-align: center;
	justify-content: center;
}

.banner-title-section {
	text-align: center;
}

.banner-title-section::after {
	content: '';
	position: absolute;
	bottom: -10px;
	left: 50%;
	transform: translateX(-50%);
	width: 100px;
	height: 3px;
	background: linear-gradient(90deg, var(--primary), var(--secondary));
}

.banner-title {
	font-family: var(--font-display);
	font-size: clamp(2rem, 3vh, 3rem);
	font-weight: 700;
	color: var(--dark);
	text-align: center;
	margin-bottom: 10px;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	position: relative;
}

.banner-box{
	display: flex;
	gap: 20px;
	margin-top: 20px;
	padding: 20px 20px;
	position: relative;
	max-width: 1200px;
	margin: 0.1rem auto;
	flex-wrap: wrap;
}

.banner-card {
	width: 350px;
	height: 340px;
	left: 50%;
	top: 50%;
	background: var(--box-gradient);
	backdrop-filter: blur(20px);
	border: 2px solid rgba(255, 255, 255, 0.2);
	border-radius: 22px;
	padding: 32px;
	transition: all 0.5s ease;
	overflow: hidden;
}

.banner-card:hover {
	background: var(--box-gradient-switch);
	transform: scale(1.05) rotate(-0.5deg);
	transition: transform 0.3s ease;
	box-shadow:
		0 30px 60px rgba(0, 217, 255, 0.4),
		inset 0 0 30px rgba(255, 255, 255, 0.1);
}

.banner-feature-title {
	font-family: var(--font-heading);
	color: var(--light);
	font-size: 1.75rem;
	font-weight: 600;
	margin-bottom: 12px;
	text-align: center;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	transform: translateZ(10px);
	padding: 20px;
}

.banner-feature-description {
	font-family: var(--font-heading);
	color: var(--light);
	line-height: 1.6;
	text-align: center;
	font-weight: 400;
	font-size: 1rem;
	letter-spacing: 0.09em;
}

/* Services Section */
.service-section {
	position: relative;
	gap: 1rem;
	padding: 30px 30px;
	background: var(--light);
}

.service-container {
	position: relative;
	max-width: 1200px;
	margin: 1rem auto;
	flex-wrap: wrap;
	text-align: center;
}

.service-title-section {
	text-align: center;
}

.service-title {
	font-family: var(--font-display);
	font-size: clamp(2rem, 5vw, 3.5rem);
	font-weight: 700;
	color: var(--dark);
	text-align: center;
	margin-bottom: 10px;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	position: relative;
}

.service-title-section::after {
	content: '';
	position: absolute;
	bottom: -10px;
	left: 50%;
	transform: translateX(-50%);
	width: 100px;
	height: 3px;
	background: linear-gradient(90deg, var(--primary), var(--secondary));
}

.service-box{
	display: flex;
	justify-content: center;
	gap: 20px;
	margin-top: 20px;
	padding: 20px 20px;
	position: relative;
	max-width: 1200px;
	margin: 0.1rem auto;
	flex-wrap: wrap;
}

.service-card {
	width: 400px;
	/*height: 340px;*/
	left: 50%;
	top: 50%;
	background: var(--box-gradient);
	backdrop-filter: blur(20px);
	border: 2px solid rgba(255, 255, 255, 0.2);
	border-radius: 22px;
	padding: 20px;
	transition: all 0.5s ease;
	overflow: hidden;
}

.service-card:hover {
	background: var(--box-gradient-switch);
	transform: scale(1.01);
	transition: transform 0.3s ease;
	box-shadow:
		0 30px 60px rgba(57, 191, 86, 0.4),
		inset 0 0 30px rgba(255, 255, 255, 0.1);
}

.service-card-title {
	font-family: var(--font-heading);
	color: var(--light);
	font-size: 1.75rem;
	font-weight: 600;
	margin-bottom: 2px;
	text-align: left;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	transform: translateZ(10px);
	padding: 3px;
}

.service-card-cost {
	font-family: var(--font-heading);
	color: var(--text-secondary);
	font-size: 1.25rem;
	font-weight: 500;
	margin-bottom: 8px;
	text-align: left;
	letter-spacing: 0.05em;
	transform: translateZ(10px);
	padding: 5px;
}

.service-card-cost-offer {
	font-family: var(--font-heading);
	color: var(--light);
	font-size: 1.6rem;
	font-weight: 100;
	margin-bottom: 8px;
	text-align: left;
	letter-spacing: 0.05em;
	transform: translateZ(10px);
	padding: 5px;
	line-height: 1.75rem;
}

.service-card-description {
	font-family: var(--font-heading);
	color: var(--light);
	line-height: 1.6;
	text-align: left;
	font-weight: 100;
	font-size: 0.9rem;
	letter-spacing: 0.09em;
	margin-top: 3px;
}

.service-features {
	list-style: none;
	padding: 0;
	margin-top: 1.5rem;
	color: var(--light);
	font-size: 1rem;
	font-weight: 100;
	font-family: var(--font-heading);
}

.service-features li {
	display: flex;
	align-items: center;
	gap: 0.8rem;
	padding: 0.6rem 0;
	border-bottom: 1px solid rgba(71, 85, 105, 0.08);
}

.service-features li:last-child {
	border-bottom: none;
}

.feature-check {
	width: 20px;
	height: 20px;
	background: linear-gradient(135deg, #23d172, #124613);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-size: 0.7rem;
	flex-shrink: 0;
}

.service-button {
	font-family: 'Exo 2', sans-serif;
	padding: 1rem 2rem;
	background: var(--dark);
	border: none;
	text-align: center;
	border-radius: 50px;
	color: white;
	font-size: 1.1rem;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	box-shadow: 0 5px 15px rgba(123, 69, 199, 0.3);
	text-decoration: none;
	display: inline-block;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.service-button:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 25px rgba(123, 69, 199, 0.4);
	background: var(--secondary-gradient);
}

/* work sections */
.work-section {
	display: flex;
	flex-direction: column;
	position: relative;
	gap: 1rem;
	padding: 30px 30px;
	background: var(--dark-gradient);
}

.work-container {
	display: flex;
	position: relative;
	justify-content: center;
	max-width: 1200px;
	margin: 1rem auto;
	flex-wrap: wrap;
	text-align: center;
	align-items: center;
}

.work-title-section {
	text-align: center;
}

.work-title-section::after {
	content: '';
	position: absolute;
	bottom: -10px;
	left: 50%;
	transform: translateX(-50%);
	width: 100px;
	height: 3px;
	background: linear-gradient(90deg, var(--primary), var(--secondary));
}

.work-title {
	font-family: var(--font-display);
	font-size: clamp(2rem, 5vw, 3.5rem);
	font-weight: 700;
	color: var(--light);
	text-align: center;
	margin-bottom: 10px;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	position: relative;
}

.work-card {
	width: 320px;
	height: 280px;
	left: 50%;
	top: 50%;
	background: var(--text-secondary);
	backdrop-filter: blur(0px);
	border: 2px solid rgba(255, 255, 255, 0.2);
	border-radius: 22px;
	padding: 5px;
	transition: all 0.5s ease;
	overflow: hidden;
	margin: 1rem;
}

.work-card:hover {
	background: var(--box-gradient-switch);
	transform: scale(1.05) rotate(-0.5deg);
	transition: transform 0.3s ease;
	box-shadow:
		0 30px 60px rgba(0, 217, 255, 0.4),
		inset 0 0 30px rgba(255, 255, 255, 0.1);
}

.work-feature-title {
	font-family: var(--font-heading);
	color: var(--light);
	font-size: 2rem;
	font-weight: 400;
	margin-bottom: 12px;
	text-align: center;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	transform: translateZ(10px);
	padding: 20px;
}

.work-feature-description {
	font-family: var(--font-heading);
	color: var(--light);
	line-height: 1.6;
	text-align: center;
	font-weight: 200;
	font-size: 1rem;
	letter-spacing: 0.09em;
}

.work-tech-title {
	font-family: var(--font-display);
	font-size: clamp(2rem, 2vw, 3.5rem);
	font-weight: 500;
	color: var(--light);
	text-align: center;
	margin-bottom: 10px;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	position: relative;
}

.work-tech-card {
	width: 320px;
	height: 280px;
	left: 50%;
	top: 50%;
	background: var(--box-gradient);
	backdrop-filter: blur(0px);
	border: 2px solid rgba(255, 255, 255, 0.2);
	border-radius: 22px;
	padding: 5px;
	transition: all 0.5s ease;
	overflow: hidden;
	margin: 1rem;
}

.work-tech-card:hover {
	background: var(--box-gradient-switch);
	transform: scale(1.05) rotate(-0.5deg);
	transition: transform 0.3s ease;
	box-shadow:
		0 30px 60px rgba(0, 217, 255, 0.4),
		inset 0 0 30px rgba(255, 255, 255, 0.1);
}

/* client sections */
.client-section {
	display: flex;
	flex-direction: column;
	position: relative;
	gap: 1rem;
	padding: 30px 30px;
	background: var(--light);
}

.client-container {
	display: flex;
	position: relative;
	max-width: 1200px;
	margin: 1rem auto;
	flex-wrap: wrap;
	text-align: center;
}

.client-title-section {
	text-align: center;
}

.client-title-section::after {
	content: '';
	position: absolute;
	bottom: -10px;
	left: 50%;
	transform: translateX(-50%);
	width: 100px;
	height: 3px;
	background: linear-gradient(90deg, var(--primary), var(--secondary));
}

.client-title {
	font-family: var(--font-display);
	font-size: clamp(2rem, 5vw, 3.5rem);
	font-weight: 700;
	color: var(--dark);
	text-align: center;
	margin-bottom: 10px;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	position: relative;
}

.client-grid {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 3rem;
	min-height: 500px;
}

.client-member {
	width: 300px;
	position: relative;
	opacity: 1;
	transform: translateY(40px);
	transition: all 0.6s ease;
}

.fade-in {
	opacity: 1;
	transform: translateY(40px);
	transition: all 0.8s ease;
}

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

.client-card {
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.7));
	border-radius: 25px;
	padding: 2.5rem;
	text-align: center;
	position: relative;
	overflow: hidden;
	backdrop-filter: blur(10px);
	border: 2px solid rgba(139, 69, 19, 0.1);
	transition: all 0.5s ease;
}

.client-card:hover {
	transform: translateY(-10px) rotate(-2deg);
	border-color: rgba(71, 85, 105, 0.3);
	box-shadow: 0 20px 40px rgba(71, 85, 105, 0.2);
}

.client-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(100, 116, 139, 0.1), transparent);
	transition: left 0.5s ease;
}

.client-card:hover::before {
	left: 100%;
}

.client-avatar {
	width: 144px;
	height: 144px;
	background: var(--neon-purple);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 1.5rem;
	font-size: 2rem;
	color: white;
	position: relative;
	z-index: 2;
	overflow: hidden;
}

.client-avatar img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 50%;
	line-height: 125px;
	text-align: center;
}

.client-info h3 {
	font-size: 1.4rem;
	font-weight: 700;
	margin-bottom: 0.5rem;
	color: #1e293b;
	position: relative;
	z-index: 2;
}

.client-role {
	color: #475569;
	font-weight: 600;
	margin-bottom: 1rem;
	position: relative;
	z-index: 2;
}

.client-info p {
	color: #64748b;
	font-size: 0.95rem;
	line-height: 1.6;
	position: relative;
	z-index: 2;
}

/* contact sections */
.contact-section {
	position: relative;
	gap: 1rem;
	padding: 30px 30px;
	background: var(--dark);
}

.contact-container {
	position: relative;
	max-width: 1200px;
	margin: 1rem auto;
	flex-wrap: wrap;
	text-align: center;
}

.contact-title-section {
	text-align: center;
}

.contact-title-section::after {
	content: '';
	position: absolute;
	bottom: -10px;
	left: 50%;
	transform: translateX(-50%);
	width: 100px;
	height: 3px;
	background: linear-gradient(90deg, var(--primary), var(--secondary));
}

.contact-title {
	font-family: var(--font-display);
	font-size: clamp(2rem, 5vw, 3.5rem);
	font-weight: 700;
	color: var(--light);
	text-align: center;
	margin-bottom: 10px;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	position: relative;
}

.contact-box {
	display: flex;
	flex-direction: column;
	position: relative;
	max-width: 1200px;
	margin: 1rem auto;
	flex-wrap: wrap;
	text-align: center;
}

.contact-subtitle {
	font-family: 'Share Tech Mono', monospace;
	font-size: 2rem;
	font-weight: 50;
	color: var(--light);
	text-align: center;
	margin-bottom: 10px;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	position: relative;
	padding: 1rem;
}

.contact-button {
	font-family: 'Exo 2', sans-serif;
	padding: 1rem 3rem;
	background: var(--muted-gradient);
	border: none;
	border-radius: 50px;
	color: white;
	font-size: 1.2rem;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	box-shadow: 0 5px 15px rgba(123, 69, 199, 0.3);
	text-decoration: none;
	display: inline-block;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.contact-button:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 25px rgba(123, 69, 199, 0.4);
	background: var(--box-gradient);
}

/* Footer */
.footer {
	background: rgba(10, 10, 10, 0.95);
	padding: 3rem 0 2rem;
	border-top: 1px solid rgba(184, 48, 106, 0.2);
}

.footer-content {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 2rem;
	text-align: center;
}

.footer-links {
	display: flex;
	justify-content: center;
	gap: 3rem;
	margin-bottom: 2rem;
	flex-wrap: wrap;
}

.footer-links a {
	color: var(--light);
	text-decoration: none;
	transition: all 0.3s ease;
	position: relative;
}

.footer-links a::after {
	content: '';
	position: absolute;
	bottom: -5px;
	left: 0;
	width: 0;
	height: 1px;
	background: var(--muted-gradient);
	transition: width 0.3s ease;
}

.footer-links a:hover {
	color: var(--muted-pink);
}

.footer-links a:hover::after {
	width: 100%;
}

.copyright {
	font-family: 'Share Tech Mono', monospace;
	color: var(--text-secondary);
	font-size: 0.9rem;
	margin-top: 2rem;
	padding-top: 2rem;
	border-top: 1px solid rgba(109, 63, 179, 0.1);
	letter-spacing: 1px;
}
.copyright a {
	color: var(--text-secondary);
}

/* Responsive */
@media (max-width: 768px) {
	.hero-title {
		font-size: 3rem;
	}

	.menu-toggle {
		display: flex;
	}

	.nav-links {
		position: fixed;
		top: 80px;
		left: 0;
		width: 100%;
		height: calc(100vh - 80px);
		background: rgba(10, 10, 10, 0.98);
		backdrop-filter: blur(20px);
		flex-direction: column;
		justify-content: flex-start;
		align-items: center;
		padding-top: 2rem;
		gap: 2rem;
		transform: translateX(-100%);
		transition: transform 0.3s ease;
		z-index: 999;
	}

	.nav-links.active {
		transform: translateX(0);
	}

	.nav-links a {
		font-size: 1.5rem;
		padding: 1rem 2rem;
		text-align: center;
		width: 100%;
		border-bottom: 1px solid rgba(109, 63, 179, 0.1);
	}

	.menu-container {
		grid-template-columns: 1fr;
	}

	.contact-container {
		grid-template-columns: 1fr;
	}

	.about-tabs {
		flex-wrap: wrap;
		gap: 1rem;
	}

	.tab-button {
		padding: 0.8rem 1.5rem;
		font-size: 0.9rem;
	}

	.glitch {
		font-size: 2rem;
	}

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

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

	.hero-buttons {
		flex-direction: column;
		gap: 1rem;
	}

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