/* ============================================================
   AMNEXA TECHNOLOGIES — Premium Stylesheet
   Modern Dark Theme with Glassmorphism & Premium Effects
============================================================ */

/* ---- Reset & Base ---- */
*,
*::before,
*::after {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html,
body {
	width: 100%;
	max-width: 100%;
	overflow-x: hidden;
}

:root {
	--bg: #070b14;
	--bg-card: #0e1628;
	--bg-card2: #111827;
	--blue: #3B82F6;
	--purple: #8B5CF6;
	--cyan: #06B6D4;
	--gradient: linear-gradient(135deg, #8B5CF6, #3B82F6, #06B6D4);
	--gradient-primary: linear-gradient(135deg, #3B82F6, #8B5CF6);
	--gradient-secondary: linear-gradient(135deg, #8B5CF6, #06B6D4);
	--text: #ffffff;
	--text-muted: #94a3b8;
	--border: rgba(255, 255, 255, 0.08);
	--radius: 16px;
	--glass: rgba(14, 22, 40, 0.7);
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	background-color: #070b14;
	color: #ffffff;
	overflow-x: hidden;
	min-height: 100vh;
	line-height: 1.6;
	background-image:
		radial-gradient(ellipse at top, rgba(139, 92, 246, 0.08) 0%, transparent 50%),
		radial-gradient(ellipse at bottom right, rgba(59, 130, 246, 0.06) 0%, transparent 50%);
}

/* Hide scrollbar but keep functionality */
body::-webkit-scrollbar {
	width: 0px;
	background: transparent;
}

body {
	-ms-overflow-style: none;
	scrollbar-width: none;
}

html {
	-ms-overflow-style: none;
	scrollbar-width: none;
}

html::-webkit-scrollbar {
	width: 0px;
	background: transparent;
}

a {
	text-decoration: none;
	color: inherit;
}

/* ---- Reusable ---- */
.container {
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 24px;
	width: 100%;
	box-sizing: border-box;
}

.section {
	padding: 100px 0;
}

.section-label {
	display: inline-block;
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: #3B82F6;
	margin-bottom: 14px;
}

.section-title {
	font-size: clamp(28px, 4vw, 42px);
	font-weight: 800;
	line-height: 1.2;
	margin-bottom: 16px;
}

.section-subtitle {
	font-size: 16px;
	color: #94a3b8;
	max-width: 560px;
	line-height: 1.7;
}

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

.section-header .section-subtitle {
	margin: 0 auto;
}

.gradient-text {
	background: linear-gradient(135deg, #8B5CF6, #3B82F6);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 14px 32px;
	border-radius: 12px;
	font-size: 15px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	border: none;
	position: relative;
	overflow: hidden;
}

.btn::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
	opacity: 0;
	transition: opacity 0.3s;
}

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

.btn-primary {
	background: linear-gradient(135deg, #8B5CF6, #3B82F6);
	color: #fff;
	box-shadow: 0 4px 20px rgba(139, 92, 246, 0.3);
}

.btn-primary:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 30px rgba(139, 92, 246, 0.4);
}

.btn-outline {
	background: rgba(14, 22, 40, 0.6);
	color: #fff;
	border: 1.5px solid rgba(255, 255, 255, 0.2);
	backdrop-filter: blur(10px);
}

.btn-outline:hover {
	border-color: #3B82F6;
	color: #3B82F6;
	transform: translateY(-3px);
	background: rgba(59, 130, 246, 0.1);
}

/* ---- Navbar ---- */
.navbar {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	padding: 20px 0;
	background: rgba(7, 11, 20, 0.8);
	backdrop-filter: blur(20px);
	border-bottom: 1px solid rgba(255, 255, 255, 0.06);
	transition: all 0.3s ease;
	width: 100%;
	max-width: 100vw;
}

.navbar.scrolled {
	background: rgba(7, 11, 20, 0.95);
	padding: 16px 0;
	box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.navbar .container {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.navbar-logo {
	display: flex;
	align-items: center;
	gap: 12px;
	font-size: 18px;
	font-weight: 700;
}

.logo-icon {
	width: 40px;
	height: 40px;
	background: linear-gradient(135deg, #8B5CF6, #3B82F6);
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 800;
	font-size: 16px;
	box-shadow: 0 4px 20px rgba(139, 92, 246, 0.3);
}

.logo-text span {
	color: #3B82F6;
}

.navbar-links {
	display: flex;
	align-items: center;
	gap: 40px;
	list-style: none;
}

.navbar-links a {
	font-size: 14px;
	color: #94a3b8;
	transition: all 0.3s;
	font-weight: 500;
}

.navbar-links a:hover,
.navbar-links a.active {
	color: #fff;
}

.navbar-links a::after {
	content: '';
	position: absolute;
	bottom: -4px;
	left: 0;
	width: 0;
	height: 2px;
	background: linear-gradient(90deg, #8B5CF6, #3B82F6);
	transition: width 0.3s;
}

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

.hamburger {
	display: none;
	flex-direction: column;
	gap: 6px;
	cursor: pointer;
	padding: 12px;
	z-index: 1001;
	position: relative;
	background: rgba(59, 130, 246, 0.15);
	border-radius: 8px;
	border: 1px solid rgba(59, 130, 246, 0.4);
	min-width: 44px;
	min-height: 44px;
	justify-content: center;
	align-items: center;
}

.hamburger span {
	display: block;
	width: 28px;
	height: 3px;
	background: #fff;
	border-radius: 2px;
	transition: all 0.3s;
}

.hamburger:hover {
	background: rgba(59, 130, 246, 0.25);
	border-color: #3B82F6;
}

.hamburger:hover span {
	background: #3B82F6;
}

.mobile-nav {
	display: none !important;
	flex-direction: column;
	gap: 0;
	background: linear-gradient(135deg, #0e1628 0%, #070b14 100%);
	position: fixed;
	top: 0;
	right: 0;
	width: 320px;
	height: 100vh;
	z-index: 9999;
	box-shadow: -10px 0 40px rgba(0, 0, 0, 0.5);
	transform: translateX(100%);
	transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-nav.open {
	display: flex !important;
	transform: translateX(0);
}

.mobile-nav::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(180deg, rgba(139, 92, 246, 0.05) 0%, transparent 50%);
	pointer-events: none;
}

.mobile-nav-overlay {
	display: none;
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.6);
	backdrop-filter: blur(4px);
	z-index: 9998;
	opacity: 0;
	transition: opacity 0.3s ease;
}

.mobile-nav-overlay.open {
	display: block;
	opacity: 1;
}

.mobile-nav-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 24px 32px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	background: rgba(7, 11, 20, 0.5);
	backdrop-filter: blur(10px);
}

.mobile-nav-close {
	font-size: 28px;
	color: #fff;
	cursor: pointer;
	padding: 8px;
	transition: all 0.3s;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 8px;
	background: rgba(255, 255, 255, 0.05);
}

.mobile-nav-close:hover {
	background: rgba(139, 92, 246, 0.2);
	color: #8B5CF6;
	transform: rotate(90deg);
}

.mobile-nav a {
	padding: 18px 32px;
	font-size: 16px;
	color: #94a3b8;
	border-bottom: 1px solid rgba(255, 255, 255, 0.04);
	transition: all 0.3s;
	font-weight: 500;
	display: block;
	width: 100%;
	box-sizing: border-box;
	text-decoration: none;
	position: relative;
	overflow: hidden;
}

.mobile-nav a::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 3px;
	background: linear-gradient(180deg, #8B5CF6, #3B82F6);
	transform: scaleY(0);
	transition: transform 0.3s ease;
}

.mobile-nav a:hover {
	color: #fff;
	background: rgba(139, 92, 246, 0.1);
	padding-left: 40px;
}

.mobile-nav a:hover::before {
	transform: scaleY(1);
}

.mobile-nav a:first-child {
	border-top: none;
}

.mobile-nav a:last-child {
	border-bottom: none;
}

/* ---- Hero ---- */
#hero {
	min-height: 100vh;
	display: flex;
	align-items: center;
	padding-top: 100px;
	position: relative;
	overflow: hidden;
}

.hero-bg {
	position: absolute;
	inset: 0;
	z-index: 0;
}

.hero-bg::before {
	content: '';
	position: absolute;
	inset: 0;
	background-image: radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.03) 1px, transparent 0);
	background-size: 40px 40px;
}

.hero-bg::after {
	content: '';
	position: absolute;
	width: 700px;
	height: 700px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(139, 92, 246, 0.12) 0%, transparent 70%);
	top: -150px;
	right: -150px;
	animation: glowPulse 8s ease-in-out infinite;
	max-width: 100vw;
	max-height: 100vh;
}

.hero-glow2 {
	position: absolute;
	width: 500px;
	height: 500px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(59, 130, 246, 0.08) 0%, transparent 70%);
	bottom: 0;
	left: 200px;
	pointer-events: none;
	animation: glowPulse 8s ease-in-out infinite reverse;
	max-width: 100vw;
	max-height: 100vh;
}

@keyframes glowPulse {

	0%,
	100% {
		opacity: 0.6;
		transform: scale(1);
	}

	50% {
		opacity: 1;
		transform: scale(1.1);
	}
}

.hero-content {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 80px;
	align-items: center;
	width: 100%;
	max-width: 100%;
	overflow: hidden;
}

.hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 10px 20px;
	border: 1px solid rgba(59, 130, 246, 0.3);
	border-radius: 50px;
	font-size: 13px;
	color: #3B82F6;
	margin-bottom: 32px;
	background: rgba(59, 130, 246, 0.05);
	backdrop-filter: blur(10px);
}

.hero-badge::before {
	content: '';
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: #3B82F6;
	animation: pulse 2s infinite;
}

@keyframes pulse {

	0%,
	100% {
		opacity: 1;
		transform: scale(1);
	}

	50% {
		opacity: 0.5;
		transform: scale(1.2);
	}
}

.hero-title {
	font-size: clamp(40px, 5vw, 64px);
	font-weight: 800;
	line-height: 1.1;
	margin-bottom: 28px;
	letter-spacing: -0.02em;
}

.hero-title .line3 {
	background: linear-gradient(135deg, #8B5CF6, #3B82F6);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.hero-desc {
	font-size: 17px;
	color: #94a3b8;
	line-height: 1.75;
	max-width: 500px;
	margin-bottom: 40px;
	width: 100%;
}

.hero-actions {
	display: flex;
	gap: 20px;
	flex-wrap: wrap;
	width: 100%;
}

/* Hero visual */
.hero-visual {
	position: relative;
	height: 550px;
	width: 100%;
	max-width: 100%;
	overflow: hidden;
}

.hero-code-card {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background: rgba(14, 22, 40, 0.8);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 20px;
	width: 340px;
	max-width: 90%;
	overflow: hidden;
	box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
	backdrop-filter: blur(20px);
}

.code-topbar {
	background: rgba(26, 37, 64, 0.8);
	padding: 12px 16px;
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 12px;
	color: #94a3b8;
	border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.dot {
	width: 12px;
	height: 12px;
	border-radius: 50%;
}

.dot-red {
	background: #ff5f57;
}

.dot-yellow {
	background: #ffbd2e;
}

.dot-green {
	background: #28c840;
}

.code-body {
	padding: 20px 24px;
	font-family: 'Courier New', monospace;
	font-size: 13px;
	line-height: 1.9;
}

.code-keyword {
	color: #c792ea;
}

.code-var {
	color: #82aaff;
}

.code-string {
	color: #c3e88d;
}

.code-bool {
	color: #ff9d00;
}

.code-plain {
	color: #a6accd;
}

.float-card {
	position: absolute;
	background: rgba(14, 22, 40, 0.9);
	border: 1px solid rgba(139, 92, 246, 0.3);
	border-radius: 16px;
	width: 72px;
	height: 72px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 28px;
	box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
	backdrop-filter: blur(10px);
	animation: floatCard 4s ease-in-out infinite;
}

.float-card:nth-child(2) {
	animation-delay: -1.3s;
}

.float-card:nth-child(3) {
	animation-delay: -2.6s;
}

.float-card:nth-child(4) {
	animation-delay: -0.7s;
}

.float-card.top-left {
	top: 30px;
	left: -10px;
}

.float-card.top-right {
	top: 20px;
	right: 20px;
}

.float-card.bot-left {
	bottom: 80px;
	left: 20px;
}

.float-card.bot-right {
	bottom: 60px;
	right: 0;
}

@keyframes floatCard {

	0%,
	100% {
		transform: translateY(0);
	}

	50% {
		transform: translateY(-16px);
	}
}

/* ---- Services ---- */
#services {
	background: #070b14;
}

.services-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
	gap: 28px;
}

.service-card {
	background: rgba(14, 22, 40, 0.6);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 16px;
	padding: 36px 32px;
	transition: all 0.4s ease;
	position: relative;
	overflow: hidden;
	backdrop-filter: blur(10px);
}

.service-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(135deg, #8B5CF6, #3B82F6);
	opacity: 0;
	transition: opacity 0.4s;
}

.service-card::after {
	content: '';
	position: absolute;
	inset: 0;
	background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(139, 92, 246, 0.1) 0%, transparent 50%);
	opacity: 0;
	transition: opacity 0.4s;
}

.service-card:hover {
	border-color: rgba(139, 92, 246, 0.4);
	transform: translateY(-8px);
	box-shadow: 0 20px 60px rgba(139, 92, 246, 0.2);
}

.service-card:hover::before {
	opacity: 1;
}

.service-card:hover::after {
	opacity: 1;
}

.service-icon {
	font-size: 42px;
	margin-bottom: 20px;
	display: block;
	filter: drop-shadow(0 4px 20px rgba(139, 92, 246, 0.3));
}

.service-card h3 {
	font-size: 19px;
	font-weight: 700;
	margin-bottom: 12px;
}

.service-card p {
	font-size: 15px;
	color: #94a3b8;
	line-height: 1.75;
}

.service-card .learn-more {
	display: inline-block;
	margin-top: 20px;
	font-size: 14px;
	color: #3B82F6;
	font-weight: 600;
	transition: all 0.3s;
}

.service-card .learn-more:hover {
	text-decoration: underline;
	transform: translateX(4px);
}

.class-details {
	display: flex;
	flex-direction: column;
	gap: 8px;
	margin-top: 20px;
	padding-top: 20px;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.class-duration,
.class-level {
	font-size: 13px;
	color: #3B82F6;
	font-weight: 600;
}

/* ---- Technologies ---- */
#technologies {
	background: #09101f;
}

.tech-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
	gap: 16px;
}

.tech-item {
	background: #0e1628;
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 10px;
	padding: 22px 16px;
	text-align: center;
	transition: all 0.25s;
	cursor: default;
}

.tech-item:hover {
	border-color: #8B5CF6;
	background: rgba(139, 92, 246, 0.08);
	transform: translateY(-3px);
}

.tech-icon {
	font-size: 32px;
	margin-bottom: 10px;
	display: block;
}

.tech-item span {
	font-size: 13px;
	font-weight: 600;
	color: #94a3b8;
}

/* ---- Process ---- */
#process {
	background: #070b14;
}

.process-steps {
	display: flex;
	justify-content: space-between;
	position: relative;
	gap: 24px;
	flex-wrap: wrap;
}

.process-steps::before {
	content: '';
	position: absolute;
	top: 36px;
	left: 10%;
	right: 10%;
	height: 1px;
	background: linear-gradient(135deg, #8B5CF6, #3B82F6);
	opacity: 0.3;
}

.process-step {
	flex: 1;
	min-width: 140px;
	text-align: center;
	position: relative;
	z-index: 1;
}

.step-circle {
	width: 72px;
	height: 72px;
	border-radius: 50%;
	background: #0e1628;
	border: 2px solid rgba(139, 92, 246, 0.5);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 28px;
	margin: 0 auto 20px;
	transition: all 0.3s;
}

.process-step:hover .step-circle {
	background: linear-gradient(135deg, #8B5CF6, #3B82F6);
	border-color: transparent;
	box-shadow: 0 0 30px rgba(139, 92, 246, 0.4);
}

.process-step h3 {
	font-size: 16px;
	font-weight: 700;
	margin-bottom: 8px;
}

.process-step p {
	font-size: 13px;
	color: #94a3b8;
	line-height: 1.6;
	max-width: 160px;
	margin: 0 auto;
}

/* ---- Why Us ---- */
#why-us {
	background: #09101f;
}

.why-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
	gap: 32px;
}

.why-card {
	background: rgba(14, 22, 40, 0.6);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 16px;
	padding: 40px 32px;
	transition: all 0.4s ease;
	backdrop-filter: blur(10px);
	position: relative;
	overflow: hidden;
}

.why-card::before {
	content: '';
	position: absolute;
	inset: 0;
	background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(59, 130, 246, 0.08) 0%, transparent 50%);
	opacity: 0;
	transition: opacity 0.4s;
}

.why-card:hover {
	border-color: rgba(59, 130, 246, 0.4);
	transform: translateY(-8px);
	box-shadow: 0 20px 60px rgba(59, 130, 246, 0.15);
}

.why-card:hover::before {
	opacity: 1;
}

.why-icon {
	font-size: 44px;
	margin-bottom: 24px;
	display: block;
	filter: drop-shadow(0 4px 20px rgba(59, 130, 246, 0.3));
}

.why-card h3 {
	font-size: 19px;
	font-weight: 700;
	margin-bottom: 14px;
}

.why-card p {
	font-size: 15px;
	color: #94a3b8;
	line-height: 1.75;
}

/* ---- Portfolio ---- */
#portfolio {
	background: #070b14;
}

.portfolio-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
	gap: 32px;
}

.portfolio-card {
	background: rgba(14, 22, 40, 0.6);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 16px;
	overflow: hidden;
	transition: all 0.4s ease;
	backdrop-filter: blur(10px);
}

.portfolio-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 24px 60px rgba(139, 92, 246, 0.2);
	border-color: rgba(139, 92, 246, 0.4);
}

.portfolio-thumb {
	height: 200px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 64px;
	position: relative;
	overflow: hidden;
}

.portfolio-thumb::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(139, 92, 246, 0.2) 0%, rgba(59, 130, 246, 0.2) 100%);
	opacity: 0;
	transition: opacity 0.4s;
}

.portfolio-card:hover .portfolio-thumb::after {
	opacity: 1;
}

.portfolio-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.portfolio-thumb.web {
	background: linear-gradient(135deg, #0e1628, #1a2540);
}

.portfolio-thumb.shop {
	background: linear-gradient(135deg, #0e1628, #1a2035);
}

.portfolio-thumb.data {
	background: linear-gradient(135deg, #0e1628, #0e2030);
}

.portfolio-thumb.app {
	background: linear-gradient(135deg, #0e1628, #1a1a35);
}

.portfolio-thumb.custom {
	background: linear-gradient(135deg, #0e1628, #1a2540);
}

.portfolio-thumb.excel {
	background: linear-gradient(135deg, #0e1628, #1a2a20);
}

.portfolio-thumb.video {
	background: linear-gradient(135deg, #0e1628, #2a1a20);
}

.portfolio-thumb.website {
	background: linear-gradient(135deg, #0e1628, #1a2540);
}

.portfolio-thumb.dashboard {
	background: linear-gradient(135deg, #0e1628, #0e2a30);
}

.portfolio-thumb.poster {
	background: linear-gradient(135deg, #0e1628, #2a2520);
}

.portfolio-thumb.thumbnail {
	background: linear-gradient(135deg, #0e1628, #252a20);
}

.portfolio-info {
	padding: 28px;
}

.portfolio-tag {
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 2px;
	color: #3B82F6;
	margin-bottom: 12px;
	display: inline-block;
	padding: 4px 12px;
	background: rgba(59, 130, 246, 0.1);
	border-radius: 50px;
}

.portfolio-info h3 {
	font-size: 18px;
	font-weight: 700;
	margin-bottom: 10px;
}

.portfolio-info p {
	font-size: 14px;
	color: #94a3b8;
	line-height: 1.7;
}

/* Portfolio filter buttons */
.portfolio-filters {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
	margin-bottom: 48px;
	justify-content: center;
}

.filter-btn {
	padding: 10px 24px;
	border-radius: 50px;
	font-size: 14px;
	font-weight: 600;
	border: 1px solid rgba(255, 255, 255, 0.1);
	background: rgba(14, 22, 40, 0.6);
	color: #94a3b8;
	cursor: pointer;
	transition: all 0.3s;
	backdrop-filter: blur(10px);
}

.filter-btn:hover,
.filter-btn.active {
	border-color: #3B82F6;
	color: #3B82F6;
	background: rgba(59, 130, 246, 0.1);
	transform: translateY(-2px);
}

/* Technology tags */
.tech-tag {
	display: inline-block;
	padding: 6px 14px;
	border-radius: 50px;
	font-size: 12px;
	font-weight: 600;
	background: rgba(139, 92, 246, 0.12);
	border: 1px solid rgba(139, 92, 246, 0.3);
	color: #8B5CF6;
}

/* Demo project detail */
.project-detail-wrapper {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 48px;
	align-items: start;
}

.project-detail-visual {
	position: sticky;
	top: 100px;
}

.project-detail-content h2 {
	font-size: 24px;
	font-weight: 700;
	margin-bottom: 16px;
}

.project-detail-content h3 {
	font-size: 18px;
	font-weight: 700;
	margin-bottom: 12px;
}

/* ---- About ---- */
#about {
	background: #09101f;
}

.about-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 80px;
	align-items: center;
}

.about-text h2 {
	font-size: clamp(28px, 3.5vw, 42px);
	font-weight: 800;
	margin-bottom: 24px;
	line-height: 1.2;
}

.about-text p {
	font-size: 16px;
	color: #94a3b8;
	line-height: 1.8;
	margin-bottom: 20px;
}

.about-cards {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.about-card {
	background: rgba(14, 22, 40, 0.6);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 12px;
	padding: 28px;
	display: flex;
	gap: 20px;
	align-items: flex-start;
	transition: all 0.4s ease;
	backdrop-filter: blur(10px);
}

.about-card:hover {
	border-color: rgba(59, 130, 246, 0.3);
	transform: translateX(8px);
	box-shadow: 0 8px 30px rgba(59, 130, 246, 0.1);
}

.about-card-icon {
	font-size: 32px;
	flex-shrink: 0;
	filter: drop-shadow(0 4px 12px rgba(59, 130, 246, 0.3));
}

.about-card h4 {
	font-size: 16px;
	font-weight: 700;
	margin-bottom: 8px;
}

.about-card p {
	font-size: 14px;
	color: #94a3b8;
	line-height: 1.7;
}

/* ---- Contact ---- */
#contact {
	background: #070b14;
}

.contact-wrapper {
	display: flex;
	justify-content: center;
	align-items: center;
}

.contact-info {
	max-width: 600px;
	text-align: center;
}

.contact-info h2 {
	font-size: clamp(28px, 3vw, 40px);
	font-weight: 800;
	margin-bottom: 20px;
}

.contact-info p {
	font-size: 16px;
	color: #94a3b8;
	line-height: 1.75;
	margin-bottom: 40px;
}

.contact-items {
	display: flex;
	flex-direction: column;
	gap: 24px;
	align-items: center;
}

.contact-item {
	display: flex;
	align-items: center;
	gap: 16px;
	font-size: 15px;
	color: #94a3b8;
	padding: 16px;
	background: rgba(14, 22, 40, 0.4);
	border-radius: 12px;
	border: 1px solid rgba(255, 255, 255, 0.06);
	transition: all 0.3s;
	width: 100%;
	max-width: 400px;
	justify-content: flex-start;
	text-align: left;
}

.contact-item:hover {
	border-color: rgba(59, 130, 246, 0.3);
	background: rgba(59, 130, 246, 0.05);
}

.contact-item-icon {
	width: 48px;
	height: 48px;
	border-radius: 12px;
	background: rgba(14, 22, 40, 0.8);
	border: 1px solid rgba(255, 255, 255, 0.1);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 20px;
	flex-shrink: 0;
	filter: drop-shadow(0 4px 12px rgba(59, 130, 246, 0.2));
}

/* Form */
.contact-form {
	background: rgba(14, 22, 40, 0.6);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 20px;
	padding: 48px;
	backdrop-filter: blur(10px);
}

.form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
	margin-bottom: 20px;
}

.form-group {
	margin-bottom: 20px;
}

.form-group label {
	display: block;
	font-size: 14px;
	font-weight: 600;
	color: #94a3b8;
	margin-bottom: 10px;
}

.form-group input,
.form-group textarea,
.form-group select,
.form-input {
	width: 100%;
	background: rgba(7, 11, 20, 0.8);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 12px;
	padding: 14px 16px;
	color: #fff;
	font-size: 15px;
	font-family: 'Inter', sans-serif;
	outline: none;
	transition: all 0.3s;
	backdrop-filter: blur(10px);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus,
.form-input:focus {
	border-color: #8B5CF6;
	box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.1);
}

.form-group textarea {
	resize: vertical;
	min-height: 140px;
}

.form-group select option {
	background: #0e1628;
}

.form-submit {
	width: 100%;
	padding: 16px;
	font-size: 16px;
}

/* Django messages */
.messages-container {
	padding: 16px 0;
}

.message {
	padding: 16px 24px;
	border-radius: 12px;
	margin-bottom: 12px;
	font-size: 15px;
	backdrop-filter: blur(10px);
}

.message.success {
	background: rgba(0, 200, 100, 0.12);
	border: 1px solid rgba(0, 200, 100, 0.3);
	color: #00e087;
}

.message.error {
	background: rgba(255, 80, 80, 0.12);
	border: 1px solid rgba(255, 80, 80, 0.3);
	color: #ff6b6b;
}

/* ---- Blog ---- */
.blog-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
	gap: 32px;
}

.blog-card {
	background: rgba(14, 22, 40, 0.6);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 16px;
	overflow: hidden;
	transition: all 0.4s ease;
	backdrop-filter: blur(10px);
}

.blog-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 20px 60px rgba(139, 92, 246, 0.15);
	border-color: rgba(139, 92, 246, 0.3);
}

.blog-thumb {
	height: 220px;
	background: linear-gradient(135deg, #0e1628, #1a2540);
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
}

.blog-thumb::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(139, 92, 246, 0.2) 0%, rgba(59, 130, 246, 0.2) 100%);
	opacity: 0;
	transition: opacity 0.4s;
}

.blog-card:hover .blog-thumb::after {
	opacity: 1;
}

.blog-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.blog-thumb-placeholder {
	font-size: 56px;
}

.blog-info {
	padding: 28px;
}

.blog-meta {
	display: flex;
	gap: 16px;
	margin-bottom: 16px;
	font-size: 13px;
	color: #94a3b8;
}

.blog-info h3 {
	font-size: 19px;
	font-weight: 700;
	margin-bottom: 12px;
	line-height: 1.4;
}

.blog-info p {
	font-size: 15px;
	color: #94a3b8;
	line-height: 1.7;
	margin-bottom: 20px;
}

.blog-read-more {
	font-size: 14px;
	color: #3B82F6;
	font-weight: 600;
}

.blog-read-more:hover {
	text-decoration: underline;
}

/* Blog detail */
.blog-detail-header {
	padding: 120px 0 60px;
	background: #09101f;
}

.blog-detail-meta {
	display: flex;
	gap: 16px;
	margin-bottom: 20px;
	font-size: 13px;
	color: #94a3b8;
}

.blog-detail-hero {
	width: 100%;
	height: 400px;
	object-fit: cover;
	border-radius: 12px;
	margin: 40px 0;
}

.blog-detail-content {
	max-width: 760px;
	margin: 0 auto;
}

.blog-detail-content h1 {
	font-size: clamp(28px, 4vw, 42px);
	font-weight: 800;
	line-height: 1.2;
	margin-bottom: 20px;
}

.blog-content-body {
	font-size: 16px;
	color: #94a3b8;
	line-height: 1.85;
}

.blog-content-body p {
	margin-bottom: 20px;
}

.blog-content-body h2 {
	font-size: 24px;
	font-weight: 700;
	color: #ffffff;
	margin: 32px 0 16px;
}

.blog-content-body h3 {
	font-size: 20px;
	font-weight: 700;
	color: #ffffff;
	margin: 24px 0 12px;
}

/* Service detail page */
.page-hero {
	padding: 140px 0 80px;
	background: #09101f;
	position: relative;
	overflow: hidden;
}

.page-hero::before {
	content: '';
	position: absolute;
	inset: 0;
	background-image: radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.04) 1px, transparent 0);
	background-size: 40px 40px;
}

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

.page-hero-label {
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: #3B82F6;
	margin-bottom: 16px;
	display: block;
}

.page-hero h1 {
	font-size: clamp(32px, 5vw, 52px);
	font-weight: 800;
	line-height: 1.15;
	margin-bottom: 20px;
}

.page-hero p {
	font-size: 16px;
    color: #94a3b8;
    max-width: 600px;
    line-height: 1.7;
    margin: 0 auto;
}

.service-icon-large {
	font-size: 64px;
	margin-bottom: 24px;
	display: block;
}

.features-list {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 12px;
	margin-top: 24px;
}

.features-list li {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 15px;
	color: #94a3b8;
}

.features-list li::before {
	content: '✓';
	color: #3B82F6;
	font-weight: 700;
}

/* ---- Footer ---- */
footer {
	background: #040710;
	border-top: 1px solid rgba(255, 255, 255, 0.06);
	padding: 80px 0 40px;
	position: relative;
}

footer::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 1px;
	background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.3), transparent);
}

.footer-grid {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr 1fr;
	gap: 56px;
	margin-bottom: 56px;
}

.footer-brand p {
	font-size: 15px;
	color: #94a3b8;
	line-height: 1.8;
	margin: 16px 0 28px;
	max-width: 280px;
}

.footer-socials {
	display: flex;
	gap: 14px;
}

.social-btn {
	width: 44px;
	height: 44px;
	border-radius: 12px;
	background: rgba(14, 22, 40, 0.6);
	border: 1px solid rgba(255, 255, 255, 0.08);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 18px;
	transition: all 0.3s;
	backdrop-filter: blur(10px);
}

.social-btn:hover {
	border-color: #8B5CF6;
	background: rgba(139, 92, 246, 0.15);
	transform: translateY(-4px);
	box-shadow: 0 8px 24px rgba(139, 92, 246, 0.3);
}

.footer-col h4 {
	font-size: 15px;
	font-weight: 700;
	margin-bottom: 24px;
	color: #fff;
}

.footer-col ul {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.footer-col ul li a {
	font-size: 14px;
	color: #94a3b8;
	transition: all 0.3s;
}

.footer-col ul li a:hover {
	color: #3B82F6;
	transform: translateX(4px);
}

.footer-bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.06);
	padding-top: 32px;
	text-align: center;
	font-size: 14px;
	color: #94a3b8;
}

/* ---- WhatsApp button ---- */
.whatsapp-btn {
	position: fixed;
	bottom: 24px;
	right: 24px;
	width: 56px;
	height: 56px;
	border-radius: 16px;
	background: linear-gradient(135deg, #25d366, #128c7e);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 1000;
	box-shadow: 0 8px 32px rgba(37, 211, 102, 0.4);
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	border: none;
	cursor: pointer;
	backdrop-filter: blur(10px);
}

.whatsapp-btn::before {
	content: '';
	position: absolute;
	inset: 0;
	border-radius: 16px;
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent);
	opacity: 0;
	transition: opacity 0.3s;
}

.whatsapp-btn:hover::before {
	opacity: 1;
}

.whatsapp-btn:hover {
	transform: translateY(-4px) scale(1.05);
	box-shadow: 0 16px 48px rgba(37, 211, 102, 0.5);
}

/* ---- Call button ---- */
.call-btn {
	position: fixed;
	bottom: 24px;
	right: 88px;
	width: 56px;
	height: 56px;
	border-radius: 16px;
	background: linear-gradient(135deg, #3B82F6, #1d4ed8);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 22px;
	z-index: 1000;
	box-shadow: 0 8px 32px rgba(59, 130, 246, 0.4);
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	border: none;
	cursor: pointer;
	backdrop-filter: blur(10px);
}

.call-btn::before {
	content: '';
	position: absolute;
	inset: 0;
	border-radius: 16px;
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent);
	opacity: 0;
	transition: opacity 0.3s;
}

.call-btn:hover::before {
	opacity: 1;
}

.call-btn:hover {
	transform: translateY(-4px) scale(1.05);
	box-shadow: 0 16px 48px rgba(59, 130, 246, 0.5);
}

/* ---- Email button ---- */
.email-btn {
	position: fixed;
	bottom: 24px;
	right: 152px;
	width: 56px;
	height: 56px;
	border-radius: 16px;
	background: linear-gradient(135deg, #8B5CF6, #6d28d9);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 1000;
	box-shadow: 0 8px 32px rgba(139, 92, 246, 0.4);
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	border: none;
	cursor: pointer;
	backdrop-filter: blur(10px);
}

.email-btn::before {
	content: '';
	position: absolute;
	inset: 0;
	border-radius: 16px;
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent);
	opacity: 0;
	transition: opacity 0.3s;
}

.email-btn:hover::before {
	opacity: 1;
}

.email-btn:hover {
	transform: translateY(-4px) scale(1.05);
	box-shadow: 0 16px 48px rgba(139, 92, 246, 0.5);
}

/* ---- Back to top button ---- */
.back-to-top {
	position: fixed;
	bottom: 24px;
	right: 152px;
	width: 56px;
	height: 56px;
	border-radius: 16px;
	background: linear-gradient(135deg, #8B5CF6, #3B82F6);
	display: none;
	align-items: center;
	justify-content: center;
	z-index: 1000;
	box-shadow: 0 8px 32px rgba(139, 92, 246, 0.4);
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	border: none;
	cursor: pointer;
	color: #fff;
	backdrop-filter: blur(10px);
}

.back-to-top::before {
	content: '';
	position: absolute;
	inset: 0;
	border-radius: 16px;
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent);
	opacity: 0;
	transition: opacity 0.3s;
}

.back-to-top:hover::before {
	opacity: 1;
}

.back-to-top:hover {
	transform: translateY(-4px) scale(1.05);
	box-shadow: 0 16px 48px rgba(139, 92, 246, 0.5);
}


/* ---- Loading screen ---- */
#loading-screen {
	position: fixed;
	inset: 0;
	background: #070b14;
	z-index: 9999;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: opacity 0.5s ease;
}

#loading-screen::before {
	content: '';
	position: absolute;
	inset: 0;
	background-image: radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.03) 1px, transparent 0);
	background-size: 40px 40px;
}

#loading-screen.hidden {
	opacity: 0;
	pointer-events: none;
}

.loading-content {
	text-align: center;
	position: relative;
	z-index: 1;
}

.loading-logo {
	width: 90px;
	height: 90px;
	background: linear-gradient(135deg, #8B5CF6, #3B82F6);
	border-radius: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 800;
	font-size: 36px;
	margin-bottom: 28px;
	color: #fff;
	box-shadow: 0 20px 60px rgba(139, 92, 246, 0.4);
	animation: logoPulse 2s ease-in-out infinite;
}

@keyframes logoPulse {

	0%,
	100% {
		transform: scale(1);
	}

	50% {
		transform: scale(1.05);
	}
}

.loading-spinner {
	width: 48px;
	height: 48px;
	border: 3px solid rgba(255, 255, 255, 0.1);
	border-top-color: #3B82F6;
	border-radius: 50%;
	animation: spin 1s linear infinite;
	margin: 0 auto;
}

@keyframes spin {
	to {
		transform: rotate(360deg);
	}
}

/* ---- Trusted By section ---- */
.trusted-logos {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 48px;
	flex-wrap: wrap;
	padding: 40px 0;
	background: rgba(14, 22, 40, 0.4);
	border-radius: 16px;
	border: 1px solid rgba(255, 255, 255, 0.06);
	backdrop-filter: blur(10px);
}

.trust-item {
	font-size: 24px;
	color: #94a3b8;
	opacity: 0.6;
	transition: all 0.3s;
}

.trust-item:hover {
	opacity: 1;
	color: #fff;
}

/* ---- Statistics section ---- */
.stats-section {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 32px;
	padding: 60px;
	background: rgba(14, 22, 40, 0.6);
	border-radius: 20px;
	border: 1px solid rgba(255, 255, 255, 0.08);
	backdrop-filter: blur(10px);
}

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

.stat-number {
	font-size: 48px;
	font-weight: 800;
	background: linear-gradient(135deg, #8B5CF6, #3B82F6);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	margin-bottom: 8px;
}

.stat-label {
	font-size: 14px;
	color: #94a3b8;
	font-weight: 500;
}

/* ---- Testimonials ---- */
.testimonials-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
	gap: 32px;
}

.testimonial-card {
	background: rgba(14, 22, 40, 0.6);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 16px;
	padding: 36px;
	transition: all 0.4s ease;
	backdrop-filter: blur(10px);
	position: relative;
}

.testimonial-card::before {
	content: '"';
	position: absolute;
	top: 20px;
	right: 24px;
	font-size: 80px;
	color: rgba(139, 92, 246, 0.1);
	font-family: Georgia, serif;
}

.testimonial-card:hover {
	border-color: rgba(139, 92, 246, 0.3);
	transform: translateY(-8px);
	box-shadow: 0 20px 60px rgba(139, 92, 246, 0.15);
}

.testimonial-text {
	font-size: 15px;
	color: #94a3b8;
	line-height: 1.8;
	margin-bottom: 24px;
	font-style: italic;
}

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

.testimonial-avatar {
	width: 52px;
	height: 52px;
	border-radius: 50%;
	background: linear-gradient(135deg, #8B5CF6, #3B82F6);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 20px;
	font-weight: 700;
}

.testimonial-info h4 {
	font-size: 16px;
	font-weight: 700;
	margin-bottom: 4px;
}

.testimonial-info p {
	font-size: 13px;
	color: #94a3b8;
}

/* ---- FAQ ---- */
.faq-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(480px, 1fr));
	gap: 24px;
}

.faq-item {
	background: rgba(14, 22, 40, 0.6);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 16px;
	overflow: hidden;
	transition: all 0.4s ease;
	backdrop-filter: blur(10px);
}

.faq-item:hover {
	border-color: rgba(59, 130, 246, 0.3);
}

.faq-question {
	padding: 24px 28px;
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 16px;
	font-weight: 600;
	color: #fff;
	transition: all 0.3s;
}

.faq-question:hover {
	color: #3B82F6;
}

.faq-toggle {
	width: 32px;
	height: 32px;
	border-radius: 50%;
	background: rgba(59, 130, 246, 0.1);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 18px;
	color: #3B82F6;
	font-weight: 700;
	transition: all 0.3s;
}

.faq-item.active .faq-toggle {
	background: linear-gradient(135deg, #8B5CF6, #3B82F6);
	color: #fff;
}

.faq-answer {
	padding: 0 28px 24px;
	display: none;
	font-size: 15px;
	color: #94a3b8;
	line-height: 1.75;
}

.faq-item.active .faq-answer {
	display: block;
}

/* ---- Tech Badge ---- */
.tech-badge {
	display: inline-block;
	padding: 8px 16px;
	border-radius: 50px;
	font-size: 13px;
	font-weight: 600;
	background: rgba(14, 22, 40, 0.6);
	border: 1px solid rgba(255, 255, 255, 0.1);
	color: #94a3b8;
	transition: all 0.3s;
}

.tech-badge:hover {
	border-color: #8B5CF6;
	background: rgba(139, 92, 246, 0.1);
	color: #8B5CF6;
	transform: translateY(-2px);
}

/* ---- Responsive Design ---- */
@media (min-width: 1440px) {
	.container {
		max-width: 1320px;
	}
}

/* Desktop text alignment */
@media (min-width: 769px) {
	.section-header {
		text-align: center;
	}

	.section-subtitle {
		margin: 0 auto;
	}

	.hero-content {
		text-align: left;
	}

	.hero-desc {
		margin: 0 0 40px;
		text-align: left;
	}

	.hero-actions {
		justify-content: flex-start;
	}

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

	.contact-items {
		align-items: center;
	}

	.contact-item {
		text-align: left;
	}

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

	.mvv-card {
		text-align: center;
	}

	.team-card {
		text-align: center;
	}

	.benefit-card {
		text-align: center;
	}

	.culture-card {
		text-align: center;
	}

	.error-404 {
		text-align: center;
	}

	.newsletter-section {
		text-align: center;
	}

	.page-hero {
		text-align: center;
	}

	.breadcrumb {
		text-align: center;
	}
}

@media (max-width: 900px) {
	.navbar-links {
		display: none !important;
	}

	.navbar .btn-outline {
		display: none !important;
	}

	.hamburger {
		display: flex !important;
	}
}

@media (max-width: 1200px) {
	.container {
		max-width: 1140px;
	}

	.hero-content {
		gap: 60px;
	}

	.about-grid {
		gap: 60px;
	}

	.project-detail-wrapper {
		gap: 32px;
	}
}

@media (max-width: 1024px) {
	.container {
		max-width: 960px;
	}

	.hero-content {
		grid-template-columns: 1fr;
		gap: 48px;
	}

	.hero-visual {
		height: 400px;
	}

	.about-grid {
		grid-template-columns: 1fr;
		gap: 48px;
	}

	.project-detail-wrapper {
		grid-template-columns: 1fr;
	}

	.project-detail-visual {
		position: static;
		margin-bottom: 32px;
	}

	.stats-section {
		grid-template-columns: repeat(2, 1fr);
		gap: 24px;
		padding: 40px;
	}

	.footer-grid {
		grid-template-columns: 2fr 1fr 1fr;
		gap: 40px;
	}

	.mvv-grid {
		grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	}

	.team-grid {
		grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	}

	.tech-grid {
		grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	}

	.portfolio-modal-content {
		max-width: 95%;
		margin: 0 auto;
	}

	.portfolio-modal-media {
		height: 300px;
	}
}

@media (max-width: 768px) {
	.container {
		max-width: 720px;
		padding: 0 20px;
	}

	.navbar-links {
		display: none !important;
	}

	.navbar .btn-outline {
		display: none !important;
	}

	.hamburger {
		display: flex !important;
	}

	.mobile-nav {
		display: none;
	}

	.mobile-nav.open {
		display: flex;
		position: fixed;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		background: rgba(7, 11, 20, 0.98);
		z-index: 1000;
	}

	.mobile-nav-header {
		display: flex;
		justify-content: space-between;
		align-items: center;
		padding: 20px 24px;
		border-bottom: 1px solid rgba(255, 255, 255, 0.08);
		background: rgba(7, 11, 20, 0.98);
		position: sticky;
		top: 0;
		z-index: 10;
	}

	.mobile-nav-close {
		font-size: 28px;
		color: #fff;
		cursor: pointer;
		padding: 8px;
		transition: all 0.3s;
	}

	.mobile-nav-close:hover {
		color: #3B82F6;
		transform: rotate(90deg);
	}

	.mobile-nav a {
		padding: 18px 24px;
		font-size: 16px;
	}

	/* Text alignment for mobile */
	.section-header {
		text-align: center;
	}

	.section-subtitle {
		margin: 0 auto;
		text-align: center;
	}

	.hero-content {
		text-align: center;
	}

	.hero-desc {
		margin: 0 auto 40px;
		text-align: center;
	}

	.hero-actions {
		justify-content: center;
	}

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

	.contact-items {
		align-items: center;
	}

	.contact-item {
		text-align: left;
	}

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

	.mvv-card {
		text-align: center;
	}

	.team-card {
		text-align: center;
	}

	.benefit-card {
		text-align: center;
	}

	.culture-card {
		text-align: center;
	}

	.error-404 {
		text-align: center;
	}

	.newsletter-section {
		text-align: center;
	}

	.page-hero {
		text-align: center;
	}

	.breadcrumb {
		text-align: center;
	}

	.section {
		padding: 60px 0;
	}

	.section-header {
		margin-bottom: 48px;
	}

	.hero-content {
		gap: 32px;
	}

	.hero-title {
		font-size: 36px;
	}

	.hero-visual {
		height: 300px;
	}

	.hero-code-card {
		width: 280px;
	}

	.float-card {
		width: 60px;
		height: 60px;
		font-size: 24px;
	}

	.services-grid {
		grid-template-columns: 1fr;
		gap: 24px;
	}

	.portfolio-grid {
		grid-template-columns: 1fr;
		gap: 24px;
	}

	.testimonials-grid {
		grid-template-columns: 1fr;
		gap: 24px;
	}

	.faq-grid {
		grid-template-columns: 1fr;
		gap: 16px;
	}

	.why-grid {
		grid-template-columns: 1fr;
		gap: 24px;
	}

	.blog-grid {
		grid-template-columns: 1fr;
		gap: 24px;
	}

	.contact-wrapper {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.form-row {
		grid-template-columns: 1fr;
	}

	.stats-section {
		grid-template-columns: 1fr;
		padding: 32px;
		gap: 24px;
	}

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

	.mvv-grid {
		grid-template-columns: 1fr;
		gap: 24px;
	}

	.team-grid {
		grid-template-columns: 1fr;
		gap: 24px;
	}

	.tech-grid {
		grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
		gap: 16px;
	}

	.whatsapp-btn,
	.call-btn,
	.back-to-top,
	.dark-mode-toggle {
		width: 52px;
		height: 52px;
		font-size: 20px;
	}

	.whatsapp-btn {
		bottom: 20px;
		right: 20px;
	}

	.call-btn {
		bottom: 20px;
		right: 76px;
	}

	.back-to-top {
		bottom: 20px;
		right: 132px;
	}

	.dark-mode-toggle {
		bottom: 20px;
		right: 188px;
	}

	/* Portfolio modal mobile adjustments */
	.portfolio-modal-content {
		max-height: 95vh;
		border-radius: 16px;
	}

	.portfolio-modal-media {
		height: 250px;
	}

	.portfolio-modal-body {
		padding: 24px;
	}

	.portfolio-modal-title {
		font-size: 22px;
	}

	.portfolio-modal-meta {
		grid-template-columns: 1fr;
		gap: 12px;
	}

	.portfolio-modal-actions {
		flex-direction: column;
	}

	/* Touch-friendly tap targets */
	.btn {
		min-height: 48px;
		min-width: 48px;
	}

	.portfolio-card,
	.service-card,
	.why-card {
		min-height: auto;
	}

	/* Process steps mobile */
	.process-steps {
		flex-direction: column;
		gap: 32px;
	}

	.process-steps::before {
		display: none;
	}

	.process-step {
		min-width: auto;
	}

	/* Trusted logos mobile */
	.trusted-logos {
		gap: 24px;
	}

	.trust-item {
		font-size: 18px;
	}

	/* Page hero adjustments */
	.page-hero {
		padding: 120px 0 60px;
	}

	.page-hero h1 {
		font-size: 32px;
	}

	/* Blog detail mobile */
	.blog-detail-hero {
		height: 300px;
	}

	.blog-detail-content {
		padding: 0 20px;
	}
}

@media (max-width: 480px) {
	.container {
		padding: 0 16px;
	}

	.hero-title {
		font-size: 28px;
	}

	.section-title {
		font-size: 24px;
	}

	.section-subtitle {
		font-size: 14px;
	}

	.hero-badge {
		font-size: 12px;
		padding: 8px 16px;
	}

	.hero-desc {
		font-size: 15px;
	}

	.hero-visual {
		height: 250px;
	}

	.hero-code-card {
		width: 240px;
	}

	.code-body {
		padding: 16px 20px;
		font-size: 11px;
	}

	.float-card {
		width: 52px;
		height: 52px;
		font-size: 20px;
	}

	.service-card,
	.why-card,
	.portfolio-card,
	.testimonial-card {
		padding: 24px;
	}

	.contact-form {
		padding: 24px;
	}

	.btn {
		padding: 12px 24px;
		font-size: 14px;
	}

	.whatsapp-btn,
	.call-btn,
	.back-to-top,
	.dark-mode-toggle {
		width: 48px;
		height: 48px;
		font-size: 18px;
	}

	.whatsapp-btn {
		bottom: 16px;
		right: 16px;
	}

	.call-btn {
		bottom: 16px;
		right: 68px;
	}

	.back-to-top {
		bottom: 16px;
		right: 120px;
	}

	.dark-mode-toggle {
		bottom: 16px;
		right: 172px;
	}

	/* Hide less important floating buttons on very small screens */
	.dark-mode-toggle {
		display: none;
	}

	.back-to-top {
		display: none;
	}

	/* Portfolio filters mobile */
	.portfolio-filters {
		gap: 8px;
	}

	.filter-btn {
		padding: 8px 16px;
		font-size: 13px;
	}

	/* Page hero mobile */
	.page-hero {
		padding: 100px 0 60px;
	}

	.page-hero h1 {
		font-size: 28px;
	}

	.page-hero p {
		font-size: 14px;
	}

	/* Breadcrumb mobile */
	.breadcrumb {
		padding: 12px 0;
	}

	.breadcrumb ol {
		font-size: 13px;
	}

	/* Navbar mobile adjustments */
	.navbar {
		padding: 16px 0;
	}

	.logo-icon {
		width: 36px;
		height: 36px;
		font-size: 14px;
	}

	.navbar-logo {
		font-size: 16px;
	}

	.navbar .btn-outline {
		display: none;
	}

	/* Section spacing mobile */
	.section {
		padding: 48px 0;
	}

	/* Card spacing mobile */
	.services-grid,
	.portfolio-grid,
	.testimonials-grid,
	.why-grid,
	.blog-grid {
		gap: 20px;
	}

	/* Form mobile */
	.form-group input,
	.form-group textarea,
	.form-group select {
		padding: 12px 14px;
		font-size: 14px;
	}

	/* Footer mobile */
	footer {
		padding: 48px 0 24px;
	}

	.footer-grid {
		gap: 24px;
	}

	.footer-brand p {
		font-size: 14px;
	}

	/* Statistics mobile */
	.stat-number {
		font-size: 36px;
	}

	.stat-label {
		font-size: 13px;
	}

	/* Tech badges mobile */
	.tech-tag {
		padding: 4px 10px;
		font-size: 11px;
	}

	/* Modal close button mobile */
	.portfolio-modal-close {
		width: 36px;
		height: 36px;
		font-size: 20px;
		top: 12px;
		right: 12px;
	}

	/* Contact items mobile */
	.contact-item {
		padding: 12px;
	}

	.contact-item-icon {
		width: 40px;
		height: 40px;
		font-size: 18px;
	}

	/* Tech grid mobile */
	.tech-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 12px;
	}

	.tech-item {
		padding: 16px 12px;
	}

	.tech-icon {
		font-size: 24px;
	}

	.tech-item span {
		font-size: 11px;
	}
}

/* Additional responsive improvements */
@media (max-width: 360px) {
	.container {
		padding: 0 12px;
	}

	.hero-title {
		font-size: 24px;
	}

	.section-title {
		font-size: 20px;
	}

	.hero-code-card {
		width: 200px;
		max-width: 85%;
	}

	.code-body {
		padding: 12px 16px;
		font-size: 10px;
	}

	.float-card {
		width: 48px;
		height: 48px;
		font-size: 18px;
	}

	.btn {
		padding: 10px 20px;
		font-size: 13px;
	}

	.service-card,
	.why-card,
	.portfolio-card,
	.testimonial-card {
		padding: 20px;
	}

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

	.hero-actions {
		flex-direction: column;
		gap: 12px;
	}

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

	.navbar-logo {
		font-size: 14px;
	}

	.logo-icon {
		width: 32px;
		height: 32px;
		font-size: 12px;
	}
}

/* Landscape mobile adjustments */
@media (max-width: 768px) and (orientation: landscape) {
	.hero-visual {
		height: 200px;
	}

	.section {
		padding: 40px 0;
	}

	.hero-title {
		font-size: 28px;
	}
}

.stat-number {
	font-size: 48px;
	font-weight: 800;
	background: linear-gradient(135deg, #8B5CF6, #3B82F6);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	margin-bottom: 8px;
}

.stat-label {
	font-size: 14px;
	color: #94a3b8;
	font-weight: 600;
}

/* ---- MVV Grid ---- */
.mvv-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 28px;
	margin-top: 48px;
}

.mvv-card {
	background: #0e1628;
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 16px;
	padding: 32px;
	text-align: center;
}

.mvv-icon {
	font-size: 48px;
	margin-bottom: 16px;
}

.mvv-card h3 {
	font-size: 20px;
	font-weight: 700;
	margin-bottom: 12px;
}

.mvv-card p {
	font-size: 14px;
	color: #94a3b8;
	line-height: 1.6;
}

/* ---- Team Grid ---- */
.team-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 28px;
	margin-top: 48px;
}

.team-card {
	background: #0e1628;
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 16px;
	padding: 32px;
	text-align: center;
}

.team-avatar {
	width: 80px;
	height: 80px;
	background: linear-gradient(135deg, #8B5CF6, #3B82F6);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 32px;
	margin: 0 auto 16px;
}

.team-card h3 {
	font-size: 18px;
	font-weight: 700;
	margin-bottom: 4px;
}

.team-role {
	display: block;
	font-size: 13px;
	color: #3B82F6;
	font-weight: 600;
	margin-bottom: 12px;
}

.team-card p {
	font-size: 14px;
	color: #94a3b8;
	line-height: 1.5;
}

/* ---- Tech Grid ---- */
.tech-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 28px;
	margin-top: 48px;
}

.tech-item {
	background: #0e1628;
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 16px;
	padding: 32px;
	transition: all 0.3s;
}

.tech-item:hover {
	border-color: #3B82F6;
	transform: translateY(-4px);
}

.tech-icon {
	font-size: 40px;
	margin-bottom: 16px;
}

.tech-item h3 {
	font-size: 20px;
	font-weight: 700;
	margin-bottom: 12px;
}

.tech-item p {
	font-size: 14px;
	color: #94a3b8;
	line-height: 1.6;
}

/* ---- Industries Grid ---- */
.industries-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 28px;
	margin-top: 48px;
}

.industry-card {
	background: #0e1628;
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 16px;
	padding: 32px;
	transition: all 0.3s;
}

.industry-card:hover {
	border-color: #8B5CF6;
	transform: translateY(-4px);
}

.industry-icon {
	font-size: 48px;
	margin-bottom: 16px;
}

.industry-card h3 {
	font-size: 20px;
	font-weight: 700;
	margin-bottom: 12px;
}

.industry-card p {
	font-size: 14px;
	color: #94a3b8;
	line-height: 1.6;
	margin-bottom: 16px;
}

.industry-features {
	list-style: none;
	padding: 0;
	margin: 0;
}

.industry-features li {
	font-size: 13px;
	color: #94a3b8;
	padding: 4px 0;
	padding-left: 20px;
	position: relative;
}

.industry-features li::before {
	content: "•";
	position: absolute;
	left: 0;
	color: #3B82F6;
}

/* ---- Blog Page ---- */
.featured-post {
	display: grid;
	grid-template-columns: 1.5fr 1fr;
	gap: 0;
	background: #0e1628;
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 16px;
	overflow: hidden;
	margin-bottom: 48px;
}

.featured-post-image {
	background: linear-gradient(135deg, #8B5CF6, #3B82F6);
	min-height: 300px;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
}

.featured-badge {
	position: absolute;
	top: 16px;
	left: 16px;
	background: #8B5CF6;
	color: #fff;
	padding: 8px 16px;
	border-radius: 50px;
	font-size: 12px;
	font-weight: 600;
}

.featured-post-content {
	padding: 40px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.post-category {
	display: inline-block;
	background: rgba(59, 130, 246, 0.1);
	color: #3B82F6;
	padding: 6px 12px;
	border-radius: 50px;
	font-size: 12px;
	font-weight: 600;
	margin-bottom: 16px;
}

.featured-post-content h2 {
	font-size: 28px;
	font-weight: 700;
	margin-bottom: 16px;
}

.featured-post-content p {
	font-size: 15px;
	color: #94a3b8;
	line-height: 1.6;
	margin-bottom: 20px;
}

.post-meta {
	display: flex;
	gap: 16px;
	font-size: 13px;
	color: #94a3b8;
	margin-bottom: 24px;
}

/* ---- Blog Grid ---- */
.blog-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: 28px;
	margin-top: 48px;
}

.blog-card {
	background: #0e1628;
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 16px;
	overflow: hidden;
	transition: all 0.3s;
}

.blog-card:hover {
	border-color: #8B5CF6;
	transform: translateY(-4px);
}

.blog-image {
	background: linear-gradient(135deg, #8B5CF6, #3B82F6);
	height: 200px;
}

.blog-content {
	padding: 24px;
}

.blog-content h3 {
	font-size: 18px;
	font-weight: 700;
	margin-bottom: 12px;
}

.blog-content p {
	font-size: 14px;
	color: #94a3b8;
	line-height: 1.6;
	margin-bottom: 16px;
}

.read-more {
	color: #3B82F6;
	font-weight: 600;
	text-decoration: none;
	font-size: 14px;
}

/* ---- Categories Grid ---- */
.categories-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 20px;
	margin-top: 48px;
}

.category-card {
	background: #0e1628;
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 12px;
	padding: 24px;
	text-align: center;
	text-decoration: none;
	transition: all 0.3s;
}

.category-card:hover {
	border-color: #3B82F6;
	transform: translateY(-4px);
}

.category-icon {
	font-size: 32px;
	margin-bottom: 12px;
}

.category-card h3 {
	font-size: 16px;
	font-weight: 700;
	margin-bottom: 8px;
	color: #ffffff;
}

.category-count {
	font-size: 13px;
	color: #94a3b8;
}

/* ---- Newsletter Section ---- */
.newsletter-section {
	text-align: center;
	max-width: 600px;
	margin: 0 auto;
}

.newsletter-form {
	display: flex;
	gap: 12px;
	margin-top: 24px;
}

.newsletter-form input {
	flex: 1;
	padding: 16px 24px;
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 50px;
	background: #0e1628;
	color: #ffffff;
	font-size: 15px;
}

.newsletter-form input:focus {
	outline: none;
	border-color: #3B82F6;
}

/* ---- Career Page ---- */
.benefits-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 24px;
	margin-top: 48px;
}

.benefit-card {
	background: #0e1628;
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 12px;
	padding: 28px;
	text-align: center;
}

.benefit-icon {
	font-size: 40px;
	margin-bottom: 16px;
}

.benefit-card h3 {
	font-size: 18px;
	font-weight: 700;
	margin-bottom: 12px;
}

.benefit-card p {
	font-size: 14px;
	color: #94a3b8;
	line-height: 1.6;
}

/* ---- Jobs Grid ---- */
.jobs-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
	gap: 24px;
	margin-top: 48px;
}

.job-card {
	background: #0e1628;
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 16px;
	padding: 28px;
}

.job-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 16px;
}

.job-header h3 {
	font-size: 20px;
	font-weight: 700;
}

.job-type {
	background: rgba(139, 92, 246, 0.1);
	color: #8B5CF6;
	padding: 6px 12px;
	border-radius: 50px;
	font-size: 12px;
	font-weight: 600;
}

.job-details {
	display: flex;
	gap: 16px;
	margin-bottom: 16px;
	font-size: 13px;
	color: #94a3b8;
}

.job-card p {
	font-size: 14px;
	color: #94a3b8;
	line-height: 1.6;
	margin-bottom: 16px;
}

.job-skills {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 20px;
}

.skill-tag {
	background: #111827;
	color: #94a3b8;
	padding: 6px 12px;
	border-radius: 50px;
	font-size: 12px;
	font-weight: 600;
}

/* ---- Culture Grid ---- */
.culture-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 24px;
	margin-top: 48px;
}

.culture-item {
	background: #0e1628;
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 12px;
	padding: 28px;
	text-align: center;
}

.culture-icon {
	font-size: 40px;
	margin-bottom: 16px;
}

.culture-item h3 {
	font-size: 18px;
	font-weight: 700;
	margin-bottom: 12px;
}

.culture-item p {
	font-size: 14px;
	color: #94a3b8;
	line-height: 1.6;
}

/* ---- FAQ Page ---- */
.faq-container {
	max-width: 900px;
	margin: 0 auto;
}

.faq-category {
	margin-bottom: 48px;
}

.faq-category-title {
	font-size: 24px;
	font-weight: 700;
	margin-bottom: 24px;
	color: #3B82F6;
}

/* ---- Legal Content ---- */
.legal-content {
	max-width: 800px;
	margin: 0 auto;
}

.legal-content h2 {
	font-size: 28px;
	font-weight: 700;
	margin-bottom: 16px;
	margin-top: 32px;
}

.legal-content h3 {
	font-size: 20px;
	font-weight: 600;
	margin-bottom: 12px;
	margin-top: 24px;
}

.legal-content p {
	font-size: 15px;
	color: #94a3b8;
	line-height: 1.7;
	margin-bottom: 16px;
}

.legal-content ul {
	margin-bottom: 16px;
	padding-left: 24px;
}

.legal-content li {
	font-size: 15px;
	color: #94a3b8;
	line-height: 1.7;
	margin-bottom: 8px;
}

/* ---- 404 Page ---- */
.error-404 {
	text-align: center;
	max-width: 600px;
	margin: 0 auto;
}

.error-code {
	font-size: 120px;
	font-weight: 800;
	background: linear-gradient(135deg, #8B5CF6, #3B82F6);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	line-height: 1;
	margin-bottom: 24px;
}

.error-404 h1 {
	font-size: 36px;
	font-weight: 700;
	margin-bottom: 16px;
}

.error-404 p {
	font-size: 16px;
	color: #94a3b8;
	margin-bottom: 32px;
}

.error-actions {
	display: flex;
	gap: 16px;
	justify-content: center;
	margin-bottom: 48px;
}

.error-help {
	background: #0e1628;
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 12px;
	padding: 24px;
}

.error-help h3 {
	font-size: 18px;
	font-weight: 700;
	margin-bottom: 16px;
}

.quick-links {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	justify-content: center;
}

.quick-links a {
	color: #3B82F6;
	text-decoration: none;
	font-weight: 600;
}

.quick-links a:hover {
	text-decoration: underline;
}

/* ---- Responsive ---- */
@media (max-width: 900px) {
	.hero-content {
		grid-template-columns: 1fr;
	}

	.hero-visual {
		display: none;
	}

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

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

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

	.process-steps::before {
		display: none;
	}

	.project-detail-wrapper {
		grid-template-columns: 1fr;
	}

	.project-detail-visual {
		position: static;
	}
}

@media (max-width: 640px) {
	.navbar-links {
		display: none;
	}

	.navbar .btn {
		display: none;
	}

	.hamburger {
		display: flex !important;
	}

	.form-row {
		grid-template-columns: 1fr;
	}

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

	.section {
		padding: 72px 0;
	}
}

/* ---- Portfolio Modal ---- */
.portfolio-modal {
	position: fixed;
	inset: 0;
	z-index: 2000;
	display: none;
	align-items: center;
	justify-content: center;
	background: rgba(7, 11, 20, 0.95);
	backdrop-filter: blur(20px);
	padding: 24px;
	opacity: 0;
	transition: opacity 0.3s ease;
}

.portfolio-modal.active {
	display: flex;
	opacity: 1;
}

.portfolio-modal-content {
	background: rgba(14, 22, 40, 0.95);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 20px;
	max-width: 900px;
	width: 100%;
	max-height: 90vh;
	overflow-y: auto;
	position: relative;
	transform: scale(0.9) translateY(20px);
	transition: transform 0.3s ease;
	backdrop-filter: blur(20px);
}

.portfolio-modal.active .portfolio-modal-content {
	transform: scale(1) translateY(0);
}

.portfolio-modal-close {
	position: absolute;
	top: 20px;
	right: 20px;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.2);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 24px;
	color: #fff;
	cursor: pointer;
	transition: all 0.3s;
	z-index: 10;
}

.portfolio-modal-close:hover {
	background: rgba(139, 92, 246, 0.3);
	border-color: #8B5CF6;
	transform: rotate(90deg);
}

.portfolio-modal-media {
	width: 100%;
	height: 400px;
	background: linear-gradient(135deg, #0e1628, #1a2540);
	border-radius: 20px 20px 0 0;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 80px;
	position: relative;
	overflow: hidden;
}

.portfolio-modal-media img,
.portfolio-modal-media video {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.portfolio-modal-video-btn {
	position: absolute;
	width: 80px;
	height: 80px;
	border-radius: 50%;
	background: linear-gradient(135deg, #8B5CF6, #3B82F6);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 32px;
	color: #fff;
	cursor: pointer;
	transition: all 0.3s;
	box-shadow: 0 8px 32px rgba(139, 92, 246, 0.4);
}

.portfolio-modal-video-btn:hover {
	transform: scale(1.1);
	box-shadow: 0 12px 40px rgba(139, 92, 246, 0.5);
}

.portfolio-modal-body {
	padding: 40px;
}

.portfolio-modal-tag {
	display: inline-block;
	padding: 6px 16px;
	border-radius: 50px;
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 2px;
	color: #3B82F6;
	background: rgba(59, 130, 246, 0.1);
	margin-bottom: 16px;
}

.portfolio-modal-title {
	font-size: 28px;
	font-weight: 800;
	margin-bottom: 16px;
	color: #fff;
}

.portfolio-modal-description {
	font-size: 16px;
	color: #94a3b8;
	line-height: 1.8;
	margin-bottom: 24px;
}

.portfolio-modal-tech {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 24px;
}

.portfolio-modal-tech .tech-tag {
	margin: 0;
}

.portfolio-modal-meta {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 16px;
	padding-top: 24px;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.portfolio-meta-item {
	display: flex;
	align-items: center;
	gap: 12px;
	font-size: 14px;
	color: #94a3b8;
}

.portfolio-meta-item-icon {
	width: 40px;
	height: 40px;
	border-radius: 10px;
	background: rgba(59, 130, 246, 0.1);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 18px;
}

.portfolio-modal-actions {
	display: flex;
	gap: 16px;
	margin-top: 32px;
}

.portfolio-modal-actions .btn {
	flex: 1;
	justify-content: center;
}

/* Video preview overlay on portfolio cards */
.portfolio-thumb .video-preview {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.6);
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transition: opacity 0.3s;
	cursor: pointer;
}

.portfolio-card:hover .portfolio-thumb .video-preview {
	opacity: 1;
}

.portfolio-thumb .video-preview-icon {
	width: 64px;
	height: 64px;
	border-radius: 50%;
	background: linear-gradient(135deg, #8B5CF6, #3B82F6);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 24px;
	color: #fff;
	box-shadow: 0 8px 32px rgba(139, 92, 246, 0.4);
	transition: transform 0.3s;
}

.portfolio-thumb .video-preview:hover .video-preview-icon {
	transform: scale(1.1);
}

/* Fade animation for filter */
@keyframes fadeIn {
	from {
		opacity: 0;
		transform: translateY(20px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* Enhanced micro-interactions */
.service-card,
.why-card,
.portfolio-card,
.blog-card,
.testimonial-card,
.about-card {
	cursor: pointer;
}

/* Magnetic button effect */
.btn {
	position: relative;
	overflow: hidden;
}

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

.btn:active::after {
	width: 300px;
	height: 300px;
}

/* Smooth reveal animations */
.reveal {
	opacity: 0;
	transform: translateY(30px);
	transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.active {
	opacity: 1;
	transform: translateY(0);
}

/* Stagger children animation */
.stagger-children>* {
	opacity: 0;
	transform: translateY(20px);
	transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.stagger-children.active>*:nth-child(1) {
	transition-delay: 0.1s;
}

.stagger-children.active>*:nth-child(2) {
	transition-delay: 0.2s;
}

.stagger-children.active>*:nth-child(3) {
	transition-delay: 0.3s;
}

.stagger-children.active>*:nth-child(4) {
	transition-delay: 0.4s;
}

.stagger-children.active>*:nth-child(5) {
	transition-delay: 0.5s;
}

.stagger-children.active>*:nth-child(6) {
	transition-delay: 0.6s;
}

.stagger-children.active>*:nth-child(7) {
	transition-delay: 0.7s;
}

.stagger-children.active>*:nth-child(8) {
	transition-delay: 0.8s;
}

.stagger-children.active>* {
	opacity: 1;
	transform: translateY(0);
}

/* Parallax effect on hero */
.hero-bg {
	will-change: transform;
}

/* Smooth scale on hover */
.navbar-logo {
	transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar-logo:hover {
	transform: scale(1.05);
}

/* Glow effect on focus */
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
	animation: glowPulse 2s ease-in-out infinite;
}

@keyframes glowPulse {

	0%,
	100% {
		box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.1);
	}

	50% {
		box-shadow: 0 0 0 5px rgba(139, 92, 246, 0.2);
	}
}

/* Text gradient animation */
@keyframes gradientShift {
	0% {
		background-position: 0% 50%;
	}

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

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

.animated-gradient {
	background-size: 200% 200%;
	animation: gradientShift 5s ease infinite;
}

/* Floating animation for icons */
@keyframes float {

	0%,
	100% {
		transform: translateY(0px);
	}

	50% {
		transform: translateY(-10px);
	}
}

.float-animation {
	animation: float 3s ease-in-out infinite;
}

/* Pulse ring effect */
.pulse-ring {
	position: relative;
}

.pulse-ring::before {
	content: '';
	position: absolute;
	inset: -4px;
	border-radius: inherit;
	border: 2px solid currentColor;
	opacity: 0;
	animation: pulseRing 2s ease-out infinite;
}

@keyframes pulseRing {
	0% {
		transform: scale(1);
		opacity: 0.5;
	}

	100% {
		transform: scale(1.5);
		opacity: 0;
	}
}

/* Smooth card tilt effect */
.card-tilt {
	transform-style: preserve-3d;
	transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Loading skeleton animation */
@keyframes shimmer {
	0% {
		background-position: -200% 0;
	}

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

.skeleton {
	background: linear-gradient(90deg, rgba(255, 255, 255, 0.05) 25%, rgba(255, 255, 255, 0.1) 50%, rgba(255, 255, 255, 0.05) 75%);
	background-size: 200% 100%;
	animation: shimmer 1.5s infinite;
}

/* Smooth counter animation */
.counter {
	transition: all 0.3s ease;
}

/* Progress bar animation */
@keyframes progressFill {
	from {
		width: 0;
	}
}

.progress-bar {
	animation: progressFill 1s ease-out forwards;
}

/* Ripple effect */
.ripple {
	position: relative;
	overflow: hidden;
}

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

.ripple:active::after {
	width: 500px;
	height: 500px;
}

/* Smooth image reveal */
.image-reveal {
	position: relative;
	overflow: hidden;
}

.image-reveal::after {
	content: '';
	position: absolute;
	inset: 0;
	background: #0e1628;
	transform: translateX(-100%);
	transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.image-reveal.loaded::after {
	transform: translateX(100%);
}

/* Text highlight effect */
.text-highlight {
	position: relative;
	display: inline;
}

.text-highlight::before {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 3px;
	background: linear-gradient(135deg, #8B5CF6, #3B82F6);
	transition: width 0.3s ease;
}

.text-highlight:hover::before {
	width: 100%;
}

/* Smooth scroll behavior enhancement */
html {
	scroll-behavior: smooth;
}

/* Custom scrollbar */
::-webkit-scrollbar {
	width: 10px;
}

::-webkit-scrollbar-track {
	background: #070b14;
}

::-webkit-scrollbar-thumb {
	background: linear-gradient(135deg, #8B5CF6, #3B82F6);
	border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
	background: linear-gradient(135deg, #3B82F6, #06B6D4);
}

/* Selection styling */
::selection {
	background: rgba(139, 92, 246, 0.3);
	color: #fff;
}

::-moz-selection {
	background: rgba(139, 92, 246, 0.3);
	color: #fff;
}
