@charset "utf-8";

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

:root {
	--primary: #a855f7;
	--primary-dark: #7c3aed;
	--primary-light: #c084fc;
	--accent-soft: #e9d5ff;

	--bg-dark: #090014;
	--bg-dark-2: #14042e;
	--bg-dark-3: #22074b;
	--bg-gradient: linear-gradient(135deg, #090014 0%, #14042e 45%, #22074b 100%);

	--glass: rgba(255, 255, 255, 0.08);
	--glass-strong: rgba(255, 255, 255, 0.12);
	--border: rgba(255, 255, 255, 0.14);

	--text-main: #ffffff;
	--text-soft: #e9d5ff;
	--text-muted: #c4b5fd;

	--shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
	--glow: 0 0 30px rgba(168, 85, 247, 0.35);
	--glow-strong: 0 0 45px rgba(168, 85, 247, 0.55);
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	background:
		radial-gradient(circle at 18% 20%, rgba(168, 85, 247, 0.22), transparent 28%),
		radial-gradient(circle at 85% 12%, rgba(124, 58, 237, 0.18), transparent 24%),
		radial-gradient(circle at 50% 100%, rgba(192, 132, 252, 0.12), transparent 30%),
		linear-gradient(135deg, #090014 0%, #14042e 45%, #22074b 100%);
	color: var(--text-main);
	overflow-x: hidden;
	line-height: 1.6;
	position: relative;
}

body::before {
	content: "";
	position: fixed;
	top: -140px;
	right: -140px;
	width: 520px;
	height: 520px;
	background: radial-gradient(circle, rgba(168, 85, 247, 0.35) 0%, transparent 70%);
	filter: blur(90px);
	z-index: -1;
	pointer-events: none;
}

body::after {
	content: "";
	position: fixed;
	bottom: -180px;
	left: -120px;
	width: 520px;
	height: 520px;
	background: radial-gradient(circle, rgba(192, 132, 252, 0.22) 0%, transparent 70%);
	filter: blur(100px);
	z-index: -1;
	pointer-events: none;
}

::-webkit-scrollbar {
	width: 8px;
}

::-webkit-scrollbar-track {
	background: rgba(255, 255, 255, 0.05);
}

::-webkit-scrollbar-thumb {
	background: linear-gradient(180deg, var(--primary), var(--primary-dark));
	border-radius: 10px;
}

/* Header */
header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	background: rgba(18, 6, 38, 0.62);
	backdrop-filter: blur(16px);
	-webkit-backdrop-filter: blur(16px);
	z-index: 1000;
	padding: 18px 0;
	transition: all 0.3s ease;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
}

header.scrolled {
	padding: 14px 0;
	background: rgba(16, 5, 34, 0.82);
	box-shadow: 0 14px 35px rgba(0, 0, 0, 0.28);
}

nav {
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 30px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 20px;
}

.logo {
	font-size: 24px;
	font-weight: 800;
	letter-spacing: -0.5px;
	color: var(--text-main);
	text-decoration: none;
	display: flex;
	align-items: center;
	gap: 12px;
	transition: all 0.3s ease;
}

.logo:hover {
	transform: translateY(-1px);
	color: #fff;
}

.logo svg {
	width: 32px;
	height: 32px;
	fill: var(--accent-soft);
	transition: all 0.35s ease;
	filter: drop-shadow(0 0 12px rgba(168, 85, 247, 0.45));
}

.logo:hover svg {
	transform: rotate(-6deg) scale(1.08);
	filter: drop-shadow(0 0 18px rgba(192, 132, 252, 0.65));
}

.nav-menu {
	display: flex;
	list-style: none;
	gap: 6px;
}

.nav-menu a {
	color: rgba(255, 255, 255, 0.78);
	text-decoration: none;
	font-size: 14px;
	font-weight: 500;
	padding: 11px 18px;
	position: relative;
	transition: all 0.3s ease;
	border-radius: 14px;
	border: 1px solid transparent;
	background: transparent;
}

.nav-menu a:hover {
	color: #fff;
	background: rgba(255, 255, 255, 0.08);
	border-color: rgba(255, 255, 255, 0.10);
	transform: translateY(-2px);
}

.nav-menu a.active {
	color: #fff;
	background: linear-gradient(135deg, rgba(168, 85, 247, 0.22), rgba(124, 58, 237, 0.22));
	border-color: rgba(192, 132, 252, 0.28);
	box-shadow: 0 8px 20px rgba(168, 85, 247, 0.18);
}

/* Mobile Menu Toggle */
.menu-toggle {
	display: none;
	flex-direction: column;
	cursor: pointer;
	gap: 4px;
}

.menu-toggle span {
	width: 25px;
	height: 2px;
	background: var(--text-main);
	transition: all 0.3s ease;
}

/* Hero */
.hero-section {
	height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	background:
		radial-gradient(circle at center, rgba(168, 85, 247, 0.10), transparent 28%),
		linear-gradient(135deg, rgba(9, 0, 20, 0.95) 0%, rgba(20, 4, 46, 0.96) 48%, rgba(34, 7, 75, 0.94) 100%);
	margin-top: 0;
	overflow: hidden;
}

.hero-bg {
	position: absolute;
	inset: 0;
	opacity: 0.12;
	background-image:
		repeating-linear-gradient(45deg, transparent, transparent 36px, rgba(255, 255, 255, 0.03) 36px, rgba(255, 255, 255, 0.03) 72px),
		repeating-linear-gradient(-45deg, transparent, transparent 36px, rgba(168, 85, 247, 0.05) 36px, rgba(168, 85, 247, 0.05) 72px);
}

.hero-section::before {
	content: '';
	position: absolute;
	top: 10%;
	right: 10%;
	width: 320px;
	height: 320px;
	border: 1px solid rgba(192, 132, 252, 0.18);
	border-radius: 50%;
	animation: floatCircle 14s ease-in-out infinite;
	box-shadow: 0 0 60px rgba(168, 85, 247, 0.12) inset;
}

.hero-section::after {
	content: '';
	position: absolute;
	left: 5%;
	bottom: 10%;
	width: 360px;
	height: 360px;
	border: 1px solid rgba(255, 255, 255, 0.10);
	border-radius: 50%;
	animation: floatCircle 17s ease-in-out infinite;
}

.hero-shapes {
	position: absolute;
	inset: 0;
	pointer-events: none;
}

.floating-accent {
	position: absolute;
	border: 1px solid rgba(192, 132, 252, 0.14);
	background: radial-gradient(circle at 30% 30%, rgba(192, 132, 252, 0.18), transparent 70%);
	animation: float 15s ease-in-out infinite;
}

.accent-1 {
	top: 18%;
	left: 8%;
	width: 140px;
	height: 140px;
	border-radius: 50%;
	animation-delay: 0s;
}

.accent-2 {
	bottom: 28%;
	right: 14%;
	width: 96px;
	height: 96px;
	border-radius: 30% 70% 70% 30%;
	animation-delay: -5s;
}

.accent-3 {
	top: 52%;
	right: 28%;
	width: 74px;
	height: 74px;
	border-radius: 50%;
	animation-delay: -9s;
}

@keyframes floatCircle {
	0%, 100% {
		transform: translateY(0px) scale(1);
	}
	50% {
		transform: translateY(-18px) scale(1.04);
	}
}

@keyframes float {
	0%, 100% {
		transform: translateY(0) translateX(0) rotate(0deg);
	}
	25% {
		transform: translateY(-18px) translateX(8px) rotate(90deg);
	}
	50% {
		transform: translateY(8px) translateX(-10px) rotate(180deg);
	}
	75% {
		transform: translateY(-10px) translateX(5px) rotate(270deg);
	}
}

.hero-content {
	text-align: center;
	z-index: 1;
	padding: 0 20px;
	max-width: 920px;
}

.hero-title {
	font-size: clamp(2.8rem, 8vw, 5.8rem);
	font-weight: 900;
	letter-spacing: -2px;
	margin-bottom: 20px;
	color: #fff;
	text-shadow: 0 10px 35px rgba(0, 0, 0, 0.35);
}

.hero-subtitle {
	font-size: clamp(1rem, 2vw, 1.3rem);
	color: var(--text-muted);
	margin-bottom: 38px;
	font-weight: 400;
	letter-spacing: 1px;
}

.cta-button {
	display: inline-block;
	padding: 16px 42px;
	background: linear-gradient(135deg, var(--primary), var(--primary-dark));
	color: #fff;
	text-decoration: none;
	font-weight: 700;
	font-size: 14px;
	letter-spacing: 1px;
	text-transform: uppercase;
	border-radius: 999px;
	transition: all 0.35s ease;
	position: relative;
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.18);
	box-shadow: 0 0 24px rgba(168, 85, 247, 0.45), 0 14px 30px rgba(124, 58, 237, 0.22);
}

.cta-button:hover {
	transform: translateY(-3px) scale(1.02);
	box-shadow: 0 0 34px rgba(168, 85, 247, 0.65), 0 18px 36px rgba(124, 58, 237, 0.28);
}

/* Portfolio */
.portfolio-section {
	padding: 100px 0;
	position: relative;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	background: transparent;
}

.section-header {
	text-align: center;
	margin-bottom: 60px;
	padding: 0 20px;
}

.section-title {
	font-size: clamp(2rem, 5vw, 3rem);
	font-weight: 800;
	letter-spacing: -1px;
	margin-bottom: 15px;
	color: #fff;
}

.section-subtitle {
	color: var(--text-muted);
	font-size: 16px;
	max-width: 600px;
	margin: 0 auto;
}

.coverflow-wrapper {
	width: 100%;
	position: relative;
	padding: 40px 0 80px;
}

.coverflow-container {
	width: 900px;
	max-width: 90vw;
	height: clamp(350px, 45vh, 500px);
	position: relative;
	transform-style: preserve-3d;
	margin: 0 auto;
	perspective: 1200px;
}

.coverflow-item {
	position: absolute;
	width: clamp(210px, 27vh, 300px);
	height: clamp(290px, 38vh, 420px);
	left: 50%;
	top: 50%;
	transform-origin: center center;
	cursor: pointer;
	transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
	border-radius: 22px;
	overflow: hidden;
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.10);
	box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.55);
}

@media (min-height: 900px) {
	.coverflow-container {
		height: clamp(450px, 50vh, 550px);
	}

	.coverflow-item {
		width: clamp(280px, 30vh, 340px);
		height: clamp(390px, 42vh, 480px);
	}
}

@media (max-height: 768px) {
	.coverflow-container {
		height: clamp(300px, 42vh, 380px);
	}

	.coverflow-item {
		width: clamp(180px, 24vh, 240px);
		height: clamp(250px, 34vh, 320px);
	}
}

.coverflow-item::after {
	content: '';
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	height: 100%;
	background: inherit;
	transform: scaleY(-1) translateY(1px);
	opacity: 0.10;
	filter: blur(2px);
	mask: linear-gradient(to bottom, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0.12) 35%, transparent 60%);
	-webkit-mask: linear-gradient(to bottom, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0.12) 35%, transparent 60%);
	pointer-events: none;
}

.portfolio-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.6s ease;
}

.coverflow-item:hover .portfolio-image {
	transform: scale(1.05);
}

.portfolio-overlay {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	background: linear-gradient(to top,
		rgba(9, 0, 20, 0.96) 0%,
		rgba(20, 4, 46, 0.80) 44%,
		rgba(34, 7, 75, 0.30) 76%,
		transparent 100%);
	padding: 30px;
	transform: translateY(100px);
	transition: transform 0.4s ease;
}

.coverflow-item:hover .portfolio-overlay {
	transform: translateY(0);
}

.portfolio-category {
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: 2px;
	color: var(--accent-soft);
	margin-bottom: 8px;
	font-weight: 700;
}

.portfolio-title {
	font-size: 22px;
	font-weight: 700;
	margin-bottom: 8px;
	color: #fff;
}

.portfolio-description {
	font-size: 13px;
	color: rgba(255, 255, 255, 0.78);
	line-height: 1.5;
}

/* Controls */
.coverflow-controls {
	position: absolute;
	bottom: 20px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	gap: 15px;
	z-index: 10;
}

.control-btn {
	width: 50px;
	height: 50px;
	border: 1px solid rgba(255, 255, 255, 0.14);
	background: rgba(255, 255, 255, 0.08);
	backdrop-filter: blur(10px);
	color: #fff;
	cursor: pointer;
	font-size: 18px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	transition: all 0.3s ease;
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.18);
}

.control-btn:hover {
	background: linear-gradient(135deg, var(--primary), var(--primary-dark));
	color: #fff;
	transform: scale(1.08);
	box-shadow: var(--glow);
}

#playPauseBtn {
	padding-left: 2px;
}

#playPauseBtn.playing {
	padding-left: 0;
}

.indicators {
	position: absolute;
	bottom: -40px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	gap: 8px;
	z-index: 10;
}

.indicator {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.20);
	cursor: pointer;
	transition: all 0.3s ease;
}

.indicator.active {
	width: 34px;
	border-radius: 999px;
	background: linear-gradient(135deg, var(--primary), var(--primary-light));
	box-shadow: 0 0 18px rgba(168, 85, 247, 0.45);
}

/* About */
.about-section {
	padding: 100px 30px;
	background: transparent;
}

.about-container {
	max-width: 1200px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 80px;
	align-items: center;
}

.about-image {
	position: relative;
	overflow: hidden;
	border-radius: 24px;
	background: var(--glass);
	border: 1px solid var(--border);
	box-shadow: var(--shadow);
	backdrop-filter: blur(12px);
}

.about-image img {
	width: 100%;
	height: auto;
	display: block;
	transition: transform 0.5s ease;
}

.about-image:hover img {
	transform: scale(1.04);
}

.about-content h2 {
	font-size: clamp(2rem, 4vw, 2.5rem);
	margin-bottom: 20px;
	font-weight: 800;
	letter-spacing: -1px;
	color: #fff;
}

.about-content p {
	color: var(--text-muted);
	line-height: 1.8;
	margin-bottom: 20px;
	font-size: 16px;
}

.stats {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
	margin-top: 40px;
}

.stat-item {
	text-align: center;
	padding: 22px 14px;
	background: rgba(255, 255, 255, 0.07);
	backdrop-filter: blur(12px);
	border: 1px solid rgba(255, 255, 255, 0.10);
	border-radius: 18px;
	box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}

.stat-number {
	font-size: 2.5rem;
	font-weight: 800;
	color: var(--accent-soft);
	margin-bottom: 5px;
	text-shadow: 0 0 14px rgba(192, 132, 252, 0.30);
}

.stat-label {
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: var(--text-muted);
}

/* HCM Feature */
.hcm-feature-section {
	padding: 50px 20px;
	background: rgba(255, 255, 255, 0.03);
	overflow: hidden;
	backdrop-filter: blur(8px);
}

.hcm-container {
	max-width: 1180px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	flex-wrap: nowrap;
}

.hcm-left {
	flex: 0 0 360px;
	max-width: 360px;
}

.hcm-left h2 {
	font-size: 36px;
	line-height: 1.15;
	font-weight: 800;
	margin-bottom: 18px;
	color: #fff;
}

.hcm-left p {
	font-size: 16px;
	line-height: 1.7;
	color: var(--text-muted);
	margin-bottom: 18px;
}

.hcm-points {
	list-style: none;
	padding: 0;
	margin: 0;
}

.hcm-points li {
	margin-bottom: 8px;
	color: var(--accent-soft);
	font-size: 16px;
	font-weight: 500;
}

.hcm-right {
	flex: 1 1 600px;
	display: flex;
	justify-content: center;
	align-items: center;
	overflow: visible;
}

.hcm-circle-wrap {
	width: 620px;
	height: 620px;
	position: relative;
	margin: 0 auto;
	transform: scale(0.85);
	transform-origin: center center;
}

.hcm-center-logo {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 130px;
	height: 70px;
	transform: translate(-50%, -50%);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 2;
	background: rgba(255, 255, 255, 0.10);
	border-radius: 16px;
	padding: 10px;
	box-shadow: var(--shadow);
	border: 1px solid rgba(255, 255, 255, 0.16);
	backdrop-filter: blur(12px);
}

.hcm-center-logo img {
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
}

.hcm-item {
	position: absolute;
	width: 130px;
	text-align: center;
}

.hcm-bubble {
	width: 95px;
	height: 95px;
	border-radius: 50%;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	box-shadow: 0 14px 28px rgba(0, 0, 0, 0.24);
	padding: 8px;
	text-align: center;
	overflow: hidden;
	border: 2px solid rgba(255, 255, 255, 0.16);
	transition: all 0.25s ease;
}

.hcm-bubble img {
	width: 22px;
	height: 22px;
	object-fit: contain;
	margin-bottom: 5px;
	flex-shrink: 0;
}

.hcm-bubble span,
.hcm-bubble .bubble-text {
	font-size: 10px;
	line-height: 1.15;
	font-weight: 700;
	color: #fff;
	display: block;
	text-align: center;
	word-break: break-word;
}

.hcm-label {
	position: absolute;
	top: 103px;
	left: 50%;
	transform: translateX(-50%);
	width: 150px;
	font-size: 11px;
	line-height: 1.3;
	font-weight: 700;
	color: #f3e8ff;
	text-align: center;
}

.pos1  { top: 5px; left: 245px; }
.pos2  { top: 70px; left: 410px; }
.pos3  { top: 215px; left: 525px; }
.pos4  { top: 390px; left: 545px; }
.pos5  { top: 520px; left: 430px; }
.pos6  { top: 575px; left: 260px; }
.pos7  { top: 520px; left: 95px; }
.pos8  { top: 390px; left: 0px; }
.pos9  { top: 215px; left: 20px; }
.pos10 { top: 70px; left: 95px; }

.pos1 .hcm-label,
.pos2 .hcm-label,
.pos3 .hcm-label,
.pos4 .hcm-label,
.pos5 .hcm-label,
.pos6 .hcm-label,
.pos7 .hcm-label,
.pos8 .hcm-label,
.pos9 .hcm-label,
.pos10 .hcm-label {
	top: 103px;
	left: 50%;
	transform: translateX(-50%);
}

.hcm-bubble:hover {
	transform: translateY(-4px) scale(1.05);
	box-shadow: var(--glow);
}

/* Services */
.services-section {
	padding: 100px 30px;
	background: transparent;
}

.services-container {
	max-width: 1200px;
	margin: 0 auto;
}

.services-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 40px;
	margin-top: 60px;
}

.service-card {
	background: rgba(255, 255, 255, 0.07);
	backdrop-filter: blur(14px);
	-webkit-backdrop-filter: blur(14px);
	padding: 40px 30px;
	border-radius: 22px;
	text-align: center;
	transition: all 0.4s ease;
	border: 1px solid rgba(255, 255, 255, 0.10);
	position: relative;
	overflow: hidden;
	box-shadow: 0 14px 34px rgba(0, 0, 0, 0.18);
}

.service-card::before {
	content: '';
	position: absolute;
	top: -50%;
	right: -50%;
	width: 200%;
	height: 200%;
	background: radial-gradient(circle, rgba(168, 85, 247, 0.20) 0%, transparent 70%);
	opacity: 0;
	transition: opacity 0.4s ease;
	pointer-events: none;
}

.service-card:hover::before {
	opacity: 0.20;
}

.service-card:hover {
	transform: translateY(-10px);
	border-color: rgba(192, 132, 252, 0.28);
	box-shadow: 0 18px 40px rgba(0, 0, 0, 0.26), var(--glow);
}

.service-icon {
	width: 60px;
	height: 60px;
	margin: 0 auto 25px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, rgba(168, 85, 247, 0.18), rgba(124, 58, 237, 0.10));
	border-radius: 50%;
	transition: all 0.4s ease;
	border: 1px solid rgba(255, 255, 255, 0.10);
}

.service-card:hover .service-icon {
	transform: scale(1.1);
	box-shadow: 0 0 20px rgba(168, 85, 247, 0.28);
}

.service-icon svg {
	width: 30px;
	height: 30px;
	fill: var(--accent-soft);
}

.service-title {
	font-size: 1.5rem;
	margin-bottom: 18px;
	font-weight: 700;
	color: #fff;
	letter-spacing: -0.5px;
}

.service-description {
	color: var(--text-muted);
	line-height: 1.8;
	font-size: 15px;
	margin-bottom: 25px;
}

.service-price {
	font-size: 13px;
	color: var(--accent-soft);
	text-transform: uppercase;
	letter-spacing: 2px;
	font-weight: 700;
}

/* Contact */
.contact-section {
	padding: 100px 30px;
	background: transparent;
}

.contact-container {
	max-width: 800px;
	margin: 0 auto;
	text-align: center;
}

.contact-info {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 40px;
	margin-top: 60px;
}

.contact-item {
	display: block;
	padding: 30px;
	background: rgba(255, 255, 255, 0.07);
	border-radius: 20px;
	transition: all 0.4s ease;
	text-decoration: none;
	border: 1px solid rgba(255, 255, 255, 0.10);
	cursor: pointer;
	position: relative;
	overflow: hidden;
	box-shadow: 0 12px 30px rgba(0, 0, 0, 0.16);
	backdrop-filter: blur(12px);
}

.contact-item::before {
	content: '';
	position: absolute;
	top: -50%;
	left: -50%;
	width: 200%;
	height: 200%;
	background: radial-gradient(circle, rgba(168, 85, 247, 0.16) 0%, transparent 70%);
	opacity: 0;
	transition: opacity 0.4s ease;
	pointer-events: none;
}

.contact-item:hover::before {
	opacity: 0.16;
}

.contact-item:hover {
	transform: translateY(-8px) scale(1.02);
	box-shadow: 0 16px 36px rgba(0, 0, 0, 0.25), var(--glow);
	border-color: rgba(192, 132, 252, 0.22);
}

.contact-label {
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: var(--accent-soft);
	margin-bottom: 10px;
	font-weight: 700;
}

.contact-value {
	color: #fff;
	font-size: 16px;
	text-decoration: none;
	transition: color 0.3s ease;
}

.contact-item:hover .contact-value {
	color: var(--accent-soft);
}

/* Footer */
footer {
	background: rgba(6, 1, 16, 0.92);
	padding: 40px 30px;
	text-align: center;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-content {
	max-width: 1200px;
	margin: 0 auto;
}

.social-links {
	display: flex;
	justify-content: center;
	gap: 20px;
	margin-bottom: 30px;
}

.social-link {
	width: 45px;
	height: 45px;
	border: 1px solid rgba(255, 255, 255, 0.10);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--text-soft);
	text-decoration: none;
	transition: all 0.3s ease;
	background: rgba(255, 255, 255, 0.05);
	position: relative;
	overflow: hidden;
}

.social-link::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 0;
	height: 0;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--primary), var(--primary-dark));
	transition: all 0.4s ease;
	transform: translate(-50%, -50%);
}

.social-link:hover::before {
	width: 100%;
	height: 100%;
}

.social-link svg {
	width: 20px;
	height: 20px;
	fill: var(--text-soft);
	z-index: 1;
	transition: all 0.3s ease;
	pointer-events: none;
}

.social-link:hover {
	border-color: rgba(192, 132, 252, 0.26);
	transform: translateY(-3px);
	box-shadow: var(--glow);
}

.social-link:hover svg {
	fill: #fff;
}

.footer-text {
	color: var(--text-muted);
	font-size: 14px;
	line-height: 1.8;
}

.footer-text a {
	color: var(--accent-soft);
	text-decoration: none;
	font-weight: 600;
	transition: opacity 0.3s ease;
}

.footer-text a:hover {
	opacity: 0.8;
}

/* Loading */
.loading-screen {
	position: fixed;
	inset: 0;
	background: linear-gradient(135deg, #090014, #14042e);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 9999;
	transition: opacity 0.5s ease;
}

.loading-screen.hidden {
	opacity: 0;
	pointer-events: none;
}

.loader {
	width: 50px;
	height: 50px;
	border: 3px solid rgba(255, 255, 255, 0.10);
	border-top-color: var(--primary-light);
	border-radius: 50%;
	animation: spin 1s linear infinite;
	box-shadow: 0 0 20px rgba(168, 85, 247, 0.22);
}

@keyframes spin {
	0% { transform: rotate(0deg); }
	100% { transform: rotate(360deg); }
}

/* Reveal */
.reveal {
	opacity: 0;
	transform: translateY(40px);
	transition: all 0.9s ease;
}

.reveal.active {
	opacity: 1;
	transform: translateY(0);
}

::selection {
	background: var(--primary);
	color: #fff;
}

/* Responsive */
@media (max-width: 991px) {
	.hcm-container {
		flex-direction: column;
		gap: 10px;
	}

	.hcm-left {
		flex: 1 1 100%;
		max-width: 100%;
		text-align: center;
	}

	.hcm-circle-wrap {
		width: 620px;
		height: 620px;
		transform: scale(0.68);
		transform-origin: top center;
		margin-top: -20px;
		margin-bottom: -70px;
	}
}

@media (max-width: 768px) {
	.nav-menu {
		position: fixed;
		left: -100%;
		top: 70px;
		flex-direction: column;
		background: rgba(18, 6, 38, 0.94);
		width: 100%;
		text-align: center;
		transition: 0.3s;
		padding: 30px 0;
		gap: 10px;
		backdrop-filter: blur(14px);
		box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
	}

	.nav-menu.active {
		left: 0;
	}

	.nav-menu a {
		padding: 12px 20px;
		display: block;
		font-size: 16px;
	}

	.menu-toggle {
		display: flex;
	}

	.menu-toggle.active span:nth-child(1) {
		transform: rotate(45deg) translate(5px, 5px);
	}

	.menu-toggle.active span:nth-child(2) {
		opacity: 0;
	}

	.menu-toggle.active span:nth-child(3) {
		transform: rotate(-45deg) translate(5px, -5px);
	}

	.coverflow-container {
		height: clamp(280px, 40vh, 350px);
	}

	.coverflow-item {
		width: clamp(170px, 22vh, 220px);
		height: clamp(230px, 30vh, 300px);
	}

	.about-container {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.stats {
		grid-template-columns: repeat(3, 1fr);
		gap: 20px;
	}

	.stat-number {
		font-size: 1.8rem;
	}

	.contact-info {
		grid-template-columns: 1fr;
		gap: 20px;
	}
}

@media (max-width: 576px) {
	.hcm-feature-section {
		padding: 30px 10px;
	}

	.hcm-left h2 {
		font-size: 28px;
	}

	.hcm-left p,
	.hcm-points li {
		font-size: 15px;
	}

	.hcm-circle-wrap {
		width: 620px;
		height: 620px;
		transform: scale(0.46);
		transform-origin: top center;
		margin-top: -120px;
		margin-bottom: -220px;
	}
}

@media (max-width: 480px) {
	.hero-title {
		font-size: 2.5rem;
	}

	.coverflow-container {
		height: clamp(250px, 38vh, 320px);
	}

	.coverflow-item {
		width: clamp(150px, 20vh, 200px);
		height: clamp(200px, 28vh, 280px);
	}

	.portfolio-overlay {
		padding: 20px;
	}

	.portfolio-title {
		font-size: 18px;
	}

	.services-grid {
		grid-template-columns: 1fr;
	}

	.stats {
		grid-template-columns: 1fr;
	}
}

.logo-section {
    padding: 50px 0;
    background: #F8F6FF;
    overflow: hidden;
}

.logo-container {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.logo-track {
    display: flex;
    align-items: center;
    gap: 70px;
    width: max-content;
    animation: scrollLeft 20s linear infinite;
}

/* pause on hover */
.logo-track:hover {
    animation-play-state: paused;
}

.logo-track img {
    height: 55px;
    width: auto;
    opacity: 0.6;
    filter: grayscale(100%);
	transition: all 0.4s ease;
}

.logo-track img:hover {
    opacity: 1;
    filter: grayscale(0%);
    transform: scale(1.1);
}

/* animation */
@keyframes scrollLeft {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.logo-container::before,
.logo-container::after {
    content: "";
    position: absolute;
    top: 0;
    width: 120px;
    height: 100%;
    z-index: 2;
}

.logo-container::before {
    left: 0;
    background: linear-gradient(to right, #F8F6FF, transparent);
}

.logo-container::after {
    right: 0;
    background: linear-gradient(to left, #F8F6FF, transparent);
}

@media (max-width: 768px) {
    .logo-track {
        gap: 40px;
        animation-duration: 20s;
    }

    .logo-track img {
        height: 40px;
    }
}

.contact-form-section {
    padding: 90px 30px;
    background:
        radial-gradient(circle at bottom left, rgba(124, 58, 237, 0.22), transparent 28%),
        linear-gradient(135deg, #090014 0%, #14042e 45%, #22074b 100%);
    position: relative;
    overflow: hidden;
}

.contact-form-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 60px;
    align-items: start;
}

.contact-form-left {
    padding-top: 20px;
}

.contact-badge {
    display: inline-block;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255,255,255,0.12);
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 22px;
    border: 1px solid rgba(255,255,255,0.12);
}

.contact-form-left h2 {
    font-size: clamp(2.2rem, 5vw, 3.7rem);
    line-height: 1.1;
    color: #fff;
    margin-bottom: 18px;
    font-weight: 800;
    letter-spacing: -1px;
}

.contact-form-left p {
    color: #c4b5fd;
    font-size: 20px;
    line-height: 1.7;
}

.contact-form-left p a {
    color: #a78bfa;
    text-decoration: none;
}

.contact-form-left p a:hover {
    color: #fff;
}

.modern-contact-form {
    background: rgba(255, 255, 255, 0.08); /* light purple glass */
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(14px);

    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 24px;

    box-shadow: 0 20px 50px rgba(0,0,0,0.25);
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
}

.input-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 58px;
    padding: 0 16px;
    border-radius: 999px;
    background: rgba(10, 18, 40, 0.68);
    border: 1px solid rgba(167, 139, 250, 0.22);
    transition: all 0.3s ease;
}

.input-wrap:focus-within {
    border-color: #7c3aed;
    box-shadow: 0 0 0 4px rgba(124, 58, 237, 0.18);
}

.input-icon {
    font-size: 15px;
    opacity: 0.85;
}

.input-wrap input,
.input-wrap textarea {
    width: 100%;
    border: none;
    outline: none;
    background: transparent;
    color: #fff;
    font-size: 15px;
    font-family: inherit;
	resize: none;
    min-height: 80px;
    white-space: pre-wrap;   /* allow spaces + line breaks */
    word-break: break-word;
}

.input-wrap input::placeholder,
.input-wrap textarea::placeholder {
    color: rgba(255,255,255,0.55);
}

.phone-wrap {
    justify-content: flex-start;
}

.country-code {
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    padding-right: 10px;
    border-right: 1px solid rgba(255,255,255,0.12);
}

.phone-wrap input {
    padding-left: 6px;
}

.textarea-wrap {
    align-items: flex-start;
    min-height: auto;
    border-radius: 20px;
    padding: 14px 16px 30px;
    position: relative;
}

.textarea-wrap textarea {
    resize: none;
    min-height: 120px;
}

.char-limit {
    position: absolute;
    left: 16px;
    bottom: 10px;
    color: rgba(255,255,255,0.45);
    font-size: 12px;
}

.form-check {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 6px 0 22px;
}

.form-check input {
    accent-color: #7c3aed;
    width: 16px;
    height: 16px;
}

.form-check label {
    color: #ddd6fe;
    font-size: 14px;
}

.form-check label a {
    color: #a78bfa;
    text-decoration: none;
}

.form-check label a:hover {
    color: #fff;
}

.submit-btn {
    width: 100%;
    border: none;
    border-radius: 999px;
    padding: 18px 24px;
    background: linear-gradient(135deg, #7c3aed, #6366f1);
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 12px 28px rgba(124, 58, 237, 0.30);
}

.submit-btn span {
    margin-left: 8px;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 35px rgba(124, 58, 237, 0.40);
}

@media (max-width: 991px) {
    .contact-form-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .contact-form-left {
        padding-top: 0;
    }
}

@media (max-width: 576px) {
    .contact-form-section {
        padding: 70px 16px;
    }

    .modern-contact-form {
        padding: 18px;
        border-radius: 18px;
    }

    .contact-form-left p {
        font-size: 16px;
    }

    .input-wrap {
        min-height: 52px;
    }

    .submit-btn {
        padding: 16px 20px;
    }
}

.contact-form-section {
    position: relative;
    overflow: hidden;
}

/* VIDEO BACKGROUND */
.video-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.video-bg iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120vw;
    height: 120vh;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

/* DARK OVERLAY */
.video-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 0, 30, 0.55);
    z-index: 1;
}

/* CONTENT ABOVE VIDEO */
.contact-form-container {
    position: relative;
    z-index: 2;
}

@media (max-width: 768px) {
    .video-bg {
        display: none;
    }

    .contact-form-section {
        background: linear-gradient(135deg, #090014, #22074b);
    }
}

.video-play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;

    width: 70px;
    height: 70px;
    border-radius: 50%;

    background: rgba(0,0,0,0.6);
    color: #fff;
    font-size: 28px;

    display: flex;
    align-items: center;
    justify-content: center;

    cursor: pointer;
    transition: 0.3s;
}

.video-play-overlay:hover {
    background: rgba(124, 58, 237, 0.8);
    transform: translate(-50%, -50%) scale(1.1);
}

.portfolio-popup-btn{
    margin-top:12px;
    padding:8px 14px;
    border:none;
    border-radius:999px;
    background:linear-gradient(135deg,#7C3AED,#A78BFA);
    color:#fff;
    font-size:12px;
    font-weight:700;
    cursor:pointer;
}

.portfolio-modal{
    position:fixed;
    inset:0;
    display:none;
    align-items:center;
    justify-content:center;
    z-index:9999;
    padding:20px;
}

.portfolio-modal.active{
    display:flex;
}

.portfolio-modal-backdrop{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,0.72);
}

.portfolio-modal-content{
    position:relative;
    z-index:2;
    width:min(980px,100%);
    background:#fff;
    border-radius:22px;
    overflow:hidden;
    box-shadow:0 20px 60px rgba(0,0,0,0.28);
}

.portfolio-modal-close{
    position:absolute;
    top:12px;
    right:14px;
    width:40px;
    height:40px;
    border:none;
    border-radius:50%;
    background:rgba(0,0,0,0.6);
    color:#fff;
    font-size:24px;
    cursor:pointer;
    z-index:3;
}

.portfolio-modal-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
}

.portfolio-modal-image-wrap img{
    width:100%;
    height:100%;
    min-height:420px;
    object-fit:cover;
    display:block;
}

.portfolio-modal-text{
    padding:34px 28px;
}

.portfolio-modal-category{
    font-size:12px;
    text-transform:uppercase;
    letter-spacing:2px;
    color:#7C3AED;
    margin-bottom:10px;
    font-weight:700;
}

.portfolio-modal-text h3{
    font-size:30px;
    margin-bottom:16px;
    color:#1E1B4B;
}

.portfolio-modal-text p{
    font-size:15px;
    line-height:1.8;
    color:#6B7280;
    white-space:pre-wrap;
}

@media(max-width:768px){
    .portfolio-modal-grid{
        grid-template-columns:1fr;
    }

    .portfolio-modal-image-wrap img{
        min-height:260px;
    }
}