@charset "utf-8";
/* CSS Document 

TECNEER - Innovation and Elevation

*/

:root {
	--bg-color: #fafbf9;
	--surface-color: #ffffff;
	--surface-alt-color: #f5f7f4;
	--text-primary: #0f1d1a;
	--text-secondary: #4f5d57;
	--accent-green: #1bcf83;
	--accent-green-strong: #0ba56a;
	--accent-green-light: #a9f5d4;
	--accent-warm: #ff8e53;
	--border-soft: rgba(15, 29, 26, 0.08);
	--shadow-soft: 0 15px 30px rgba(15, 29, 26, 0.08);
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
	background: var(--bg-color);
	color: var(--text-primary);
	overflow-x: hidden;
	max-width: 100%;
	width: 100%;
	position: relative;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	color: var(--text-primary);
}

p,
li,
span {
	color: var(--text-secondary);
}

/* Navigation */
nav {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	width: 100%;
	padding: 20px 50px;
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(10px);
	border-bottom: 1px solid rgba(15, 29, 26, 0.06);
	z-index: 1000;
	transition: all 0.3s ease;
	will-change: transform;
}

nav.scrolled {
	padding: 15px 50px;
	background: rgba(255, 255, 255, 0.98);
}

.nav-container {
	display: grid;
	grid-template-columns: auto 1fr auto;
	align-items: center;
	gap: 20px;
	max-width: 1400px;
	margin: 0 auto;
	position: relative;
}

.nav-container .logo {
	order: 1;
}

.nav-container .nav-links {
	order: 2;
	justify-self: center;
}

.nav-container .hamburger {
	order: 3;
}

.nav-container .language-switcher {
	order: 3;
}

/* RTL - Arabic */
html[dir="rtl"] .nav-container .logo {
	order: 3;
}

html[dir="rtl"] .nav-container .nav-links {
	order: 2;
	justify-self: center;
}

html[dir="rtl"] .nav-container .hamburger {
	order: 1;
}

html[dir="rtl"] .nav-container .language-switcher {
	order: 1;
}

.logo {
	display: flex;
	align-items: center;
	gap: 15px;
	cursor: pointer;
	text-decoration: none;
}

.logo-icon {
	width: 40px;
	height: 40px;
	background: transparent;
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	overflow: hidden;
}

.logo-icon svg {
	width: 24px;
	height: 24px;
	fill: #ffffff;
}

.logo-icon img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	padding: 0;
}

.logo-text {
	font-size: 20px;
	font-weight: 700;
	background: linear-gradient(135deg, var(--text-primary) 0%, var(--accent-green-strong) 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.nav-links {
	display: flex;
	gap: 40px;
	list-style: none;
	flex-direction: row;
}

html[dir="rtl"] .nav-links {
	flex-direction: row-reverse;
}

.nav-links a {
	color: var(--text-primary);
	text-decoration: none;
	font-size: 16px;
	transition: color 0.3s ease;
	position: relative;
}

.nav-links a::before {
	content: '';
	position: absolute;
	bottom: -8px;
	left: 50%;
	width: 0;
	height: 3px;
	background: linear-gradient(90deg, var(--accent-green), var(--accent-green-strong));
	transition: all 0.3s ease;
	transform: translateX(-50%);
	border-radius: 2px;
}

.nav-links a:hover {
	color: var(--accent-green-strong);
	text-shadow: 0 0 10px rgba(27, 207, 131, 0.3);
}

.nav-links a:hover::before {
	width: 100%;
}

.nav-links a.active::after {
	content: '';
	position: absolute;
	bottom: -8px;
	left: 50%;
	width: 100%;
	height: 3px;
	background: linear-gradient(90deg, var(--accent-green), var(--accent-green-strong));
	transform: translateX(-50%);
	box-shadow: 0 0 15px rgba(27, 207, 131, 0.4);
	border-radius: 2px;
}

.search-icon {
	width: 24px;
	height: 24px;
	cursor: pointer;
	transition: transform 0.3s ease;
	fill: var(--text-primary);
}

.search-icon:hover {
	transform: scale(1.1);
}

.login-btn {
	display: inline-flex;
	align-items: center;
	padding: 8px 16px;
	background: linear-gradient(135deg, var(--accent-green), var(--accent-green-strong));
	color: white;
	text-decoration: none;
	border-radius: 8px;
	font-weight: 600;
	transition: all 0.3s ease;
	font-size: 14px;
	box-shadow: 0 2px 10px rgba(27, 207, 131, 0.3);
}

.login-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 4px 15px rgba(27, 207, 131, 0.4);
	color: white;
}

.login-btn svg {
	width: 18px;
	height: 18px;
	margin-right: 6px;
}

.nav-login-link {
	color: var(--text-primary);
	text-decoration: none;
	font-size: 16px;
	transition: color 0.3s ease;
	position: relative;
	font-weight: 500;
}

.nav-login-link::before {
	content: '';
	position: absolute;
	bottom: -8px;
	left: 50%;
	width: 0;
	height: 3px;
	background: linear-gradient(90deg, var(--accent-green), var(--accent-green-strong));
	transition: all 0.3s ease;
	transform: translateX(-50%);
	border-radius: 2px;
}

.nav-login-link:hover {
	color: var(--accent-green-strong);
	text-shadow: 0 0 10px rgba(27, 207, 131, 0.3);
}

.nav-login-link:hover::before {
	width: 100%;
}

/* Hero Section */
.hero {
	position: relative;
	min-height: 100vh;
	display: flex;
	align-items: center;
	overflow: hidden;
	background: linear-gradient(135deg, #f4f8f1 0%, #e8f4e8 100%);
}

/* No divider for hero section */

.hero-video {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: 0;
}

.hero-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, rgba(244, 248, 241, 0.75) 0%, rgba(232, 244, 232, 0.65) 100%);
	z-index: 1;
}

.hero-bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0.4;
	background-image:
		linear-gradient(45deg, transparent 30%, rgba(27, 207, 131, 0.08) 50%, transparent 70%),
		linear-gradient(-45deg, transparent 30%, rgba(255, 142, 83, 0.08) 50%, transparent 70%);
	animation: bgShift 20s ease-in-out infinite;
	z-index: 2;
}

@keyframes bgShift {
	0%,
	100% {
		transform: translate(0, 0);
	}
	50% {
		transform: translate(-20px, -20px);
	}
}

.geometric-shapes {
	position: absolute;
	width: 100%;
	height: 100%;
	overflow: hidden;
}

.shape {
	position: absolute;
	border: 2px solid rgba(27, 207, 131, 0.2);
}

.shape1 {
	width: 300px;
	height: 300px;
	top: 10%;
	left: -150px;
	transform: rotate(45deg);
	animation: float 15s ease-in-out infinite;
}

.shape2 {
	width: 200px;
	height: 200px;
	top: 60%;
	right: -100px;
	border-color: rgba(255, 142, 83, 0.2);
	animation: float 20s ease-in-out infinite reverse;
}

.shape3 {
	width: 150px;
	height: 150px;
	bottom: 20%;
	left: 10%;
	border-color: rgba(27, 207, 131, 0.2);
	transform: rotate(30deg);
	animation: float 18s ease-in-out infinite;
}

.shape4 {
	width: 250px;
	height: 250px;
	top: 15%;
	right: 5%;
	border-color: rgba(255, 142, 83, 0.15);
	transform: rotate(45deg);
	animation: float 16s ease-in-out infinite;
}

.shape5 {
	width: 180px;
	height: 180px;
	top: 55%;
	right: 12%;
	border-color: rgba(27, 207, 131, 0.15);
	transform: rotate(-30deg);
	animation: float 22s ease-in-out infinite reverse;
}

.shape6 {
	width: 120px;
	height: 120px;
	bottom: 15%;
	right: 8%;
	border-color: rgba(27, 207, 131, 0.15);
	transform: rotate(20deg);
	animation: float 19s ease-in-out infinite;
}

@keyframes float {
	0%, 100% {
		transform: translate(0, 0) rotate(0deg);
	}
	33% {
		transform: translate(30px, -30px) rotate(120deg);
	}
	66% {
		transform: translate(-20px, 20px) rotate(240deg);
	}
}

.hero-content {
	position: relative;
	z-index: 10;
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 50px;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
}

.hero-text {
	animation: slideInLeft 1s ease-out;
}

@keyframes slideInLeft {
	from {
		opacity: 0;
		transform: translateX(-50px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

.hero-text h1 {
	font-size: 48px;
	font-weight: 700;
	line-height: 1.2;
	margin-bottom: 25px;
	background: linear-gradient(135deg, var(--text-primary) 0%, var(--accent-green-strong) 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.hero-text p {
	font-size: 18px;
	line-height: 1.6;
	color: var(--text-secondary);
	margin-bottom: 40px;
	max-width: 500px;
}

.cta-button {
	display: inline-block;
	padding: 15px 40px;
	background: linear-gradient(135deg, var(--accent-green), var(--accent-green-strong));
	color: #ffffff;
	text-decoration: none;
	border-radius: 30px;
	font-size: 16px;
	font-weight: 600;
	transition: all 0.3s ease;
	box-shadow: 0 12px 25px rgba(27, 207, 131, 0.25);
	border: none;
	cursor: pointer;
}

.cta-button:hover {
	transform: translateY(-2px);
	box-shadow: 0 15px 28px rgba(27, 207, 131, 0.35);
}

.cta-button.secondary {
	background: linear-gradient(135deg, #ffffff, var(--surface-alt-color));
	color: var(--text-primary);
	border: 2px solid var(--accent-green);
}

.hero-visual {
	position: relative;
	animation: slideInRight 1s ease-out;
}

.hero-main-img {
	animation: floatUp 3s ease-in-out infinite;
}

.hero-floating-images {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	pointer-events: none;
}

.floating-img-1,
.floating-img-2,
.floating-img-3 {
	position: absolute;
	width: 160px;
	height: 160px;
	border-radius: 15px;
	object-fit: cover;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
	border: 3px solid rgba(255, 255, 255, 0.9);
}

.floating-img-1 {
	top: 10%;
	right: 5%;
	animation: float1 4s ease-in-out infinite;
}

.floating-img-2 {
	bottom: 20%;
	right: 10%;
	animation: float2 5s ease-in-out infinite;
}

.floating-img-3 {
	top: 50%;
	left: -5%;
	animation: float3 6s ease-in-out infinite;
}

@keyframes floatUp {
	0%, 100% {
		transform: translateY(0);
	}
	50% {
		transform: translateY(-10px);
	}
}

@keyframes float1 {
	0%, 100% {
		transform: translate(0, 0) rotate(0deg);
	}
	50% {
		transform: translate(10px, -15px) rotate(5deg);
	}
}

@keyframes float2 {
	0%, 100% {
		transform: translate(0, 0) rotate(0deg);
	}
	50% {
		transform: translate(-10px, 15px) rotate(-5deg);
	}
}

@keyframes float3 {
	0%, 100% {
		transform: translate(0, 0) rotate(0deg);
	}
	50% {
		transform: translate(15px, -10px) rotate(3deg);
	}
}

@keyframes slideInRight {
	from {
		opacity: 0;
		transform: translateX(50px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

/* Interactive Background Canvas */
.interactive-bg {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
	pointer-events: none;
	opacity: 1;
	will-change: transform;
}

/* Dashboard Section */
.dashboard-section {
	padding: 80px 50px;
	background: transparent;
	position: relative;
	overflow: hidden;
}

.dashboard-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 20%;
	right: 20%;
	height: 1px;
	background: linear-gradient(90deg, 
		transparent 0%, 
		rgba(27, 207, 131, 0.2) 20%, 
		rgba(27, 207, 131, 0.4) 50%, 
		rgba(27, 207, 131, 0.2) 80%, 
		transparent 100%);
	opacity: 0.6;
}

.dashboard-container {
	max-width: 1400px;
	margin: 0 auto;
	padding-top: 0;
	padding-bottom: 0;
}

.dashboard-container > *:first-child {
	margin-top: 0;
}

.dashboard-container > *:last-child {
	margin-bottom: 0;
}

.section-title {
	font-size: 36px;
	margin-top: 0;
	margin-bottom: 30px;
	text-align: center;
	background: linear-gradient(135deg, var(--text-primary) 0%, var(--accent-green-strong) 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

/* Stats Cards */
.stats-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 30px;
	margin-top: 0;
	margin-bottom: 0;
}

.stat-card {
	background: var(--surface-color);
	border: 1px solid var(--border-soft);
	border-radius: 20px;
	padding: 30px;
	position: relative;
	overflow: hidden;
	transition: all 0.3s ease;
	box-shadow: var(--shadow-soft);
}

.stat-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 20px 35px rgba(27, 207, 131, 0.15);
	border-color: rgba(27, 207, 131, 0.25);
}

.stat-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 2px;
	background: linear-gradient(90deg, transparent, var(--accent-green), transparent);
	animation: scan 3s linear infinite;
}

.stat-header {
	display: flex;
	align-items: center;
	gap: 15px;
	margin-bottom: 20px;
}

.stat-icon {
	width: 40px;
	height: 40px;
	background: linear-gradient(135deg, var(--accent-green), var(--accent-green-strong));
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 20px;
	color: white;
}

.stat-icon i {
	color: white;
}

.stat-title {
	font-size: 14px;
	color: var(--text-secondary);
	font-weight: 500;
}

.stat-value {
	font-size: 32px;
	font-weight: 700;
	margin-bottom: 10px;
	background: linear-gradient(135deg, var(--text-primary) 0%, var(--accent-green-strong) 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.stat-description {
	font-size: 13px;
	color: var(--text-secondary);
	line-height: 1.5;
}

/* About Us with 3D Coverflow */
.about-us-coverflow {
	padding: 80px 50px;
	min-height: 80vh;
}

.about-us-header {
	text-align: center;
	margin-bottom: 50px;
}

.about-us-description {
	text-align: center;
	margin: 0 auto 40px;
	font-size: 18px;
	color: var(--text-secondary);
	max-width: 800px;
	line-height: 1.6;
}

.about-us-tabs {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 15px;
	margin-bottom: 50px;
}

.about-us-tab-btn {
	padding: 12px 30px;
	background: var(--surface-color);
	border: 2px solid var(--border-soft);
	border-radius: 30px;
	font-size: 16px;
	font-weight: 600;
	color: var(--text-secondary);
	cursor: pointer;
	transition: all 0.3s ease;
	display: flex;
	align-items: center;
	gap: 10px;
	box-shadow: var(--shadow-soft);
}

.about-us-tab-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 10px 25px rgba(27, 207, 131, 0.15);
	border-color: rgba(27, 207, 131, 0.3);
}

.about-us-tab-btn.active {
	background: linear-gradient(135deg, var(--accent-green), var(--accent-green-strong));
	color: white;
	border-color: transparent;
	box-shadow: 0 10px 25px rgba(27, 207, 131, 0.3);
}

.about-us-tab-btn i {
	font-size: 18px;
}

.about-us-content-wrapper {
	display: grid;
	grid-template-columns: 1fr 1.5fr;
	gap: 60px;
	align-items: center;
	min-height: 500px;
}

html[dir="rtl"] .about-us-content-wrapper {
	grid-template-columns: 1.5fr 1fr;
}

html[dir="rtl"] .about-us-info {
	padding-right: 30px;
}

.about-us-info {
	display: flex;
	align-items: center;
	justify-content: center;
}

.tab-info-content {
	text-align: left;
	max-width: 100%;
}

html[dir="rtl"] .tab-info-content {
	text-align: right;
}

.tab-icon-wrapper {
	width: 60px;
	height: 60px;
	background: linear-gradient(135deg, var(--accent-green), var(--accent-green-strong));
	border-radius: 15px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 25px;
	font-size: 28px;
	color: white;
}

.tab-title {
	font-size: 36px;
	font-weight: 700;
	margin-bottom: 15px;
	background: linear-gradient(135deg, var(--text-primary) 0%, var(--accent-green-strong) 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	text-align: left;
	direction: ltr;
}

html[dir="rtl"] .tab-title {
	text-align: right;
	direction: rtl;
}

.tab-value {
	font-size: 42px;
	font-weight: 700;
	margin-bottom: 20px;
	background: linear-gradient(135deg, var(--text-primary) 0%, var(--accent-green-strong) 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	text-align: left;
	direction: ltr;
}

html[dir="rtl"] .tab-value {
	text-align: right;
	direction: rtl;
}

.tab-description {
	font-size: 16px;
	color: var(--text-secondary);
	line-height: 1.8;
	text-align: left;
}

html[dir="rtl"] .tab-description {
	text-align: right;
}

.about-us-coverflow-wrapper {
	position: relative;
	height: 500px;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

html[dir="rtl"] .about-us-coverflow-wrapper {
	overflow: visible;
	padding-right: 20px;
}

.coverflow-container {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	perspective: 1200px;
	position: relative;
}

.coverflow {
	display: flex;
	align-items: center;
	justify-content: center;
	transform-style: preserve-3d;
	position: relative;
	width: 100%;
	height: 400px;
}

.coverflow-item {
	position: absolute;
	width: 300px;
	height: 300px;
	transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
	cursor: pointer;
	user-select: none;
}

.coverflow-item .cover {
	width: 100%;
	height: 100%;
	border-radius: 15px;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
	position: relative;
	overflow: hidden;
	transform-style: preserve-3d;
	background: var(--surface-color);
}

html[dir="rtl"] .coverflow-item .cover {
	box-shadow: -20px 20px 40px rgba(0, 0, 0, 0.15);
}

.coverflow-item .cover img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 15px;
}

.coverflow-item .reflection {
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	height: 100%;
	border-radius: 15px;
	transform: scaleY(-1);
	opacity: 0.15;
	filter: blur(2px);
	background: linear-gradient(to bottom, 
		rgba(0, 0, 0, 0) 0%, 
		rgba(0, 0, 0, 0.5) 50%, 
		rgba(0, 0, 0, 1) 100%);
	overflow: hidden;
	pointer-events: none;
}

.coverflow-item.active {
	z-index: 100;
	transform: translateX(0) translateZ(0) rotateY(0deg);
}

.coverflow-item.active .cover {
	box-shadow: 0 30px 60px rgba(27, 207, 131, 0.25);
}

html[dir="rtl"] .coverflow-item.active .cover {
	box-shadow: -30px 30px 60px rgba(27, 207, 131, 0.25);
}

.nav-button {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background: var(--surface-color);
	border: 2px solid var(--border-soft);
	color: var(--text-primary);
	width: 50px;
	height: 50px;
	border-radius: 50%;
	cursor: pointer;
	font-size: 24px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
	z-index: 200;
	box-shadow: var(--shadow-soft);
}

.nav-button:hover {
	background: linear-gradient(135deg, var(--accent-green), var(--accent-green-strong));
	color: white;
	border-color: transparent;
	transform: translateY(-50%) scale(1.1);
	box-shadow: 0 10px 25px rgba(27, 207, 131, 0.3);
}

.nav-button.prev {
	left: 20px;
}

.nav-button.next {
	right: 20px;
}

.dots-container {
	position: absolute;
	bottom: 20px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	gap: 10px;
	z-index: 200;
}

.dot {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: rgba(79, 93, 87, 0.3);
	cursor: pointer;
	transition: all 0.3s ease;
}

.dot.active {
	background: var(--accent-green);
	transform: scale(1.3);
}

@media (max-width: 1024px) {
	.about-us-content-wrapper {
		grid-template-columns: 1fr;
		gap: 40px;
	}
	
	.about-us-coverflow-wrapper {
		height: 400px;
	}
	
	.coverflow-item {
		width: 250px;
		height: 250px;
	}
}

@media (max-width: 768px) {
	.about-us-coverflow {
		padding: 60px 20px;
	}
	
	.about-us-tabs {
		gap: 10px;
	}
	
	.about-us-tab-btn {
		padding: 10px 20px;
		font-size: 14px;
	}
	
	.about-us-coverflow-wrapper {
		height: 350px;
	}
	
	.coverflow-item {
		width: 200px;
		height: 200px;
	}
	
	.nav-button {
		width: 40px;
		height: 40px;
		font-size: 20px;
	}
	
	.nav-button.prev {
		left: 10px;
	}
	
	.nav-button.next {
		right: 10px;
	}
	
	html[dir="rtl"] .nav-button.prev {
		left: auto;
		right: 10px;
	}
	
	html[dir="rtl"] .nav-button.next {
		right: auto;
		left: 10px;
	}
	
	.tab-title {
		font-size: 28px;
		text-align: center;
	}
	
	html[dir="rtl"] .tab-title {
		text-align: center;
		direction: rtl;
	}
	
	.tab-value {
		font-size: 32px;
		text-align: center;
	}
	
	html[dir="rtl"] .tab-value {
		text-align: center;
		direction: rtl;
	}
	
	.tab-description {
		text-align: center;
		font-size: 15px;
		line-height: 1.6;
	}
	
	html[dir="rtl"] .tab-description {
		text-align: center;
		direction: rtl;
	}
	
	.tab-info-content {
		text-align: center;
		width: 100%;
	}
	
	html[dir="rtl"] .tab-info-content {
		text-align: center;
		direction: rtl;
	}
	
	.about-us-info {
		justify-content: center;
		width: 100%;
	}
	
	html[dir="rtl"] .about-us-info {
		justify-content: center;
	}
	
	.about-us-content-wrapper {
		grid-template-columns: 1fr;
		gap: 30px;
		text-align: center;
	}
	
	html[dir="rtl"] .about-us-content-wrapper {
		grid-template-columns: 1fr;
		direction: rtl;
	}
	
	.about-us-tabs {
		justify-content: center;
		flex-wrap: wrap;
		gap: 8px;
		padding: 0 10px;
	}
	
	html[dir="rtl"] .about-us-tabs {
		flex-direction: row-reverse;
		justify-content: center;
	}
	
	.about-us-tab-btn {
		font-size: 13px;
		padding: 8px 16px;
		white-space: nowrap;
	}
	
	.about-us-header {
		text-align: center;
	}
	
	html[dir="rtl"] .about-us-header {
		text-align: center;
		direction: rtl;
	}
	
	.about-us-description {
		text-align: center;
		font-size: 16px;
		padding: 0 10px;
	}
	
	html[dir="rtl"] .about-us-description {
		text-align: center;
		direction: rtl;
	}
	
	.tab-icon-wrapper {
		margin: 0 auto 20px;
	}
	
	html[dir="rtl"] .tab-icon-wrapper {
		margin: 0 auto 20px;
	}
}


/* Analytics Section */
/* Technical Arsenal Section */
.skills-section {
	padding: 80px 50px;
	background: transparent;
	position: relative;
	overflow: hidden;
}

.skills-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 20%;
	right: 20%;
	height: 1px;
	background: linear-gradient(90deg, 
		transparent 0%, 
		rgba(27, 207, 131, 0.2) 20%, 
		rgba(27, 207, 131, 0.4) 50%, 
		rgba(27, 207, 131, 0.2) 80%, 
		transparent 100%);
	opacity: 0.6;
}

.skills-container {
	max-width: 1200px;
	margin: 0 auto;
	padding-top: 0;
	padding-bottom: 0;
}

.skills-container > *:first-child {
	margin-top: 0;
}

.skills-container > *:last-child {
	margin-bottom: 0;
}

.section-header {
	text-align: center;
	margin-top: 0;
	margin-bottom: 50px;
}

.section-header .section-title {
	font-size: 48px;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: 3px;
	margin-bottom: 20px;
	background: linear-gradient(135deg, var(--text-primary), var(--accent-green-strong));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	text-align: center;
}

.section-subtitle {
	color: var(--text-secondary);
	font-size: 18px;
	max-width: 600px;
	margin: 0 auto;
}

/* Hexagonal Skills Grid */
.skills-hexagon-grid {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 20px;
	margin-top: 0;
	margin-bottom: 0;
}

.skill-hexagon {
	width: 200px;
	height: 230px;
	position: relative;
	margin: 30px 10px;
	cursor: pointer;
	transition: all 0.3s ease;
}

.skill-hexagon:hover {
	transform: translateY(-10px);
}

.hexagon-inner {
	width: 100%;
	height: 100%;
	position: relative;
	transform: rotate3d(0, 0, 1, 30deg);
	overflow: hidden;
	border-radius: 20px;
	background: linear-gradient(135deg, var(--surface-color), var(--surface-alt-color));
	border: 2px solid var(--accent-green-light);
	box-shadow: 0 4px 15px rgba(15, 29, 26, 0.1);
	backdrop-filter: none !important;
	filter: none !important;
	-webkit-backface-visibility: visible;
	backface-visibility: visible;
	transform-style: preserve-3d;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

.skill-hexagon:hover .hexagon-inner {
	border-color: var(--accent-green-strong);
	box-shadow: 0 0 30px rgba(27, 207, 131, 0.4);
}

.hexagon-content {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	transform: rotate3d(0, 0, 1, -30deg);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 15px 8px;
	gap: 8px;
	text-align: center;
	filter: none !important;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	backdrop-filter: none !important;
	text-rendering: optimizeLegibility;
	-webkit-text-stroke: 0.01px transparent;
	transform-style: preserve-3d;
	perspective: 1000px;
}

.skill-icon-hex {
	font-size: 42px;
	margin: 0;
	color: var(--accent-green-strong);
	animation: float 3s ease-in-out infinite;
	line-height: 1;
	filter: none !important;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	text-rendering: optimizeLegibility;
	backdrop-filter: none !important;
	transform: translate3d(0, 0, 0);
	-webkit-text-stroke: 0.01px transparent;
	will-change: transform;
}

.skill-icon-hex i {
	color: var(--accent-green-strong);
	filter: none !important;
	backdrop-filter: none !important;
}

@keyframes float {
	0%, 100% {
		transform: translate3d(0, 0, 0);
	}
	50% {
		transform: translate3d(0, -10px, 0);
	}
}

.skill-name-hex {
	font-size: 14px;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	color: var(--text-primary);
	margin: 0 auto;
	text-align: center;
	line-height: 1.2;
	width: calc(100% + 40px);
	margin-left: -20px;
	margin-right: -20px;
	position: relative;
	z-index: 10;
	filter: none !important;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	text-rendering: optimizeLegibility;
	backdrop-filter: none !important;
	transform: translate3d(0, 0, 0);
	-webkit-text-stroke: 0.01px transparent;
}

.skill-level {
	width: 90%;
	max-width: 90%;
	height: 4px;
	background: var(--surface-alt-color);
	border-radius: 2px;
	overflow: hidden;
	position: relative;
	margin: 4px auto 0;
	display: block;
	margin-left: auto;
	margin-right: auto;
	transform: translate3d(0, 0, 0);
}

.skill-level-fill {
	height: 100%;
	background: linear-gradient(90deg, var(--accent-green), var(--accent-green-strong));
	border-radius: 2px;
	position: relative;
	animation: fillLevel 2s ease-out;
}

@keyframes fillLevel {
	0% {
		width: 0;
	}
}

.skill-description-hex {
	font-size: 9px;
	color: var(--text-secondary);
	margin: 4px auto 0;
	text-align: center;
	line-height: 1.3;
	opacity: 0.85;
	max-width: 90%;
	padding: 0;
	font-weight: 500;
	text-transform: capitalize;
	filter: none !important;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	text-rendering: optimizeLegibility;
	display: block;
	width: 90%;
	margin-left: auto;
	margin-right: auto;
	backdrop-filter: none !important;
	transform: translate3d(0, 0, 0);
	-webkit-text-stroke: 0.01px transparent;
}

/* Skill Categories Tabs */
.skill-categories {
	display: flex;
	justify-content: center;
	gap: 20px;
	margin-bottom: 40px;
	flex-wrap: wrap;
}

.category-tab {
	padding: 12px 30px;
	background: var(--surface-color);
	border: 1px solid var(--accent-green-light);
	border-radius: 30px;
	color: var(--text-secondary);
	cursor: pointer;
	transition: all 0.3s ease;
	text-transform: uppercase;
	font-size: 14px;
	letter-spacing: 1px;
}

.category-tab:hover {
	background: rgba(27, 207, 131, 0.1);
	border-color: var(--accent-green);
	color: var(--text-primary);
}

.category-tab.active {
	background: linear-gradient(135deg, var(--accent-green), var(--accent-green-strong));
	border-color: var(--accent-green-strong);
	color: white;
	box-shadow: 0 5px 20px rgba(27, 207, 131, 0.3);
}

.analytics-section {
	padding: 80px 50px;
	background: linear-gradient(180deg, var(--surface-color) 0%, var(--bg-color) 100%);
}

/* Chart Cards */
.charts-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
	gap: 30px;
	margin-bottom: 60px;
}

.chart-card {
	background: var(--surface-color);
	border: 1px solid var(--border-soft);
	border-radius: 20px;
	padding: 30px;
	position: relative;
	min-height: 400px;
	box-shadow: var(--shadow-soft);
}

.chart-card:hover {
	box-shadow: 0 20px 35px rgba(27, 207, 131, 0.12);
}

.chart-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 30px;
}

.chart-title {
	font-size: 20px;
	font-weight: 600;
}

.chart-options {
	display: flex;
	gap: 10px;
}

.chart-option {
	padding: 8px 16px;
	background: var(--surface-alt-color);
	border: 1px solid var(--border-soft);
	border-radius: 8px;
	font-size: 12px;
	cursor: pointer;
	transition: all 0.3s ease;
}

.chart-option:hover,
.chart-option.active {
	background: rgba(27, 207, 131, 0.1);
	border-color: rgba(27, 207, 131, 0.3);
	color: var(--accent-green-strong);
}

.chart-container {
	position: relative;
	height: 300px;
}

/* Bar Chart */
.bar-chart {
	display: flex;
	align-items: flex-end;
	justify-content: space-around;
	height: 100%;
	padding: 20px 0;
}

.bar {
	width: 30px;
	background: linear-gradient(180deg, var(--accent-green) 0%, var(--accent-green-strong) 100%);
	border-radius: 5px 5px 0 0;
	position: relative;
	transition: all 0.3s ease;
	cursor: pointer;
}

.bar:hover {
	transform: scaleY(1.05);
	filter: brightness(1.2);
}

.bar-label {
	position: absolute;
	bottom: -25px;
	left: 50%;
	transform: translateX(-50%);
	font-size: 11px;
	color: var(--text-secondary);
}

.bar-value {
	position: absolute;
	top: -25px;
	left: 50%;
	transform: translateX(-50%);
	font-size: 12px;
	font-weight: 600;
	color: var(--accent-green-strong);
	opacity: 0;
	transition: opacity 0.3s ease;
}

.bar:hover .bar-value {
	opacity: 1;
}

/* Line Chart */
.line-chart {
	position: relative;
	width: 100%;
	height: 100%;
}

.line-chart-svg {
	width: 100%;
	height: 100%;
}

.chart-grid-line {
	stroke: rgba(15, 29, 26, 0.08);
	stroke-width: 1;
}

.chart-line {
	fill: none;
	stroke: var(--accent-green-strong);
	stroke-width: 2;
	filter: drop-shadow(0 0 10px rgba(27, 207, 131, 0.4));
}

.chart-area {
	fill: url(#gradient);
	opacity: 0.3;
}

.chart-dot {
	fill: var(--accent-green-strong);
	stroke: #ffffff;
	stroke-width: 2;
	r: 4;
	cursor: pointer;
	transition: all 0.3s ease;
}

.chart-dot:hover {
	r: 6;
	filter: drop-shadow(0 0 15px rgba(27, 207, 131, 0.6));
}

/* Metrics Grid */
.metrics-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 20px;
	margin-bottom: 40px;
}

.metric-item {
	background: var(--surface-color);
	border: 1px solid var(--border-soft);
	border-radius: 15px;
	padding: 20px;
	text-align: center;
	transition: all 0.3s ease;
	box-shadow: var(--shadow-soft);
}

.metric-item:hover {
	transform: translateY(-3px);
	border-color: rgba(27, 207, 131, 0.25);
	box-shadow: 0 15px 25px rgba(27, 207, 131, 0.12);
}

.metric-value {
	font-size: 24px;
	font-weight: 700;
	color: var(--accent-green-strong);
	margin-bottom: 5px;
}

.metric-label {
	font-size: 12px;
	color: var(--text-secondary);
}

/* Projects Carousel Section */
.projects-carousel-section {
	padding: 80px 50px;
	background: transparent;
	position: relative;
	overflow: hidden;
	max-width: 100%;
	width: 100%;
}

.projects-carousel-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 20%;
	right: 20%;
	height: 1px;
	background: linear-gradient(90deg, 
		transparent 0%, 
		rgba(27, 207, 131, 0.2) 20%, 
		rgba(27, 207, 131, 0.4) 50%, 
		rgba(27, 207, 131, 0.2) 80%, 
		transparent 100%);
	opacity: 0.6;
}

.projects-carousel-section .dashboard-container {
	padding-top: 20px;
	padding-bottom: 20px;
}


.carousel-container {
	width: 100%;
	max-width: 1600px;
	height: 650px;
	perspective: 1200px;
	position: relative;
	margin: 0 auto;
	padding-top: 0;
	padding-bottom: 0;
	overflow: visible;
}

.carousel {
	width: 100%;
	height: 100%;
	position: relative;
	transform-style: preserve-3d;
}

.carousel-item {
	position: absolute;
	width: 400px;
	height: 500px;
	left: 50%;
	top: 50%;
	transform-style: preserve-3d;
	transition: all 0.8s cubic-bezier(0.4, 0.0, 0.2, 1);
	cursor: pointer;
	transform-origin: center center;
	visibility: visible;
	display: block;
}

.carousel-item .card {
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, var(--surface-color), var(--surface-alt-color));
	border: 2px solid var(--border-soft);
	border-radius: 20px;
	padding: 30px;
	position: relative;
	overflow: auto;
	box-shadow: var(--shadow-soft);
	display: flex;
	flex-direction: column;
}

.carousel-item .card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 1px;
	background: linear-gradient(90deg,
			transparent,
			rgba(27, 207, 131, 0.5),
			transparent);
	animation: scanline 3s linear infinite;
}

@keyframes scanline {
	0% {
		transform: translateY(0);
	}
	100% {
		transform: translateY(500px);
	}
}

.card-number {
	position: absolute;
	top: 20px;
	right: 30px;
	font-size: 72px;
	font-weight: 900;
	color: rgba(27, 207, 131, 0.1);
	font-family: 'Orbitron', monospace;
}

.card-image {
	width: 100%;
	height: 200px;
	min-height: 200px;
	max-height: 200px;
	background: var(--surface-alt-color);
	border-radius: 10px;
	margin-bottom: 20px;
	overflow: hidden;
	position: relative;
	border: 1px solid var(--border-soft);
	flex-shrink: 0;
}

.card-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: grayscale(20%) contrast(1.1);
	transition: all 0.5s ease;
}

.carousel-item:hover .card-image img {
	filter: grayscale(0%) contrast(1.2);
	transform: scale(1.1);
}

.card-title {
	font-size: 18px;
	font-weight: 700;
	margin-bottom: 15px;
	text-transform: uppercase;
	letter-spacing: 2px;
	background: linear-gradient(135deg, var(--text-primary), var(--accent-green-strong));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	line-height: 1.3;
	word-wrap: break-word;
	overflow-wrap: break-word;
	flex-shrink: 0;
}

.card-description {
	color: var(--text-secondary);
	line-height: 1.6;
	margin-bottom: 20px;
	font-size: 14px;
	overflow-wrap: break-word;
	word-wrap: break-word;
	flex: 1;
	min-height: 0;
	overflow-y: auto;
}

.card-tech {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 20px;
	flex-shrink: 0;
}

.tech-badge {
	padding: 5px 12px;
	background: rgba(27, 207, 131, 0.1);
	border: 1px solid var(--accent-green);
	border-radius: 20px;
	font-size: 12px;
	color: var(--accent-green-strong);
	text-transform: uppercase;
	letter-spacing: 1px;
}

.card-cta {
	padding: 12px 30px;
	background: linear-gradient(135deg, var(--accent-green), var(--accent-green-strong));
	border: none;
	border-radius: 30px;
	color: #ffffff;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 2px;
	cursor: pointer;
	transition: all 0.3s ease;
	box-shadow: 0 5px 15px rgba(27, 207, 131, 0.3);
	width: 100%;
	flex-shrink: 0;
}

.card-cta:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(27, 207, 131, 0.5);
}

/* Carousel Controls */
.carousel-controls {
	position: absolute;
	bottom: -70px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	gap: 20px;
	z-index: 100;
}

.carousel-btn {
	width: 60px;
	height: 60px;
	background: linear-gradient(135deg, var(--surface-color), var(--surface-alt-color));
	border: 2px solid var(--accent-green);
	border-radius: 50%;
	color: var(--accent-green-strong);
	font-size: 24px;
	cursor: pointer;
	transition: all 0.3s ease;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: var(--shadow-soft);
}

.carousel-btn:hover {
	border-color: var(--accent-green-strong);
	box-shadow: 0 8px 25px rgba(27, 207, 131, 0.3);
	transform: scale(1.1);
	background: linear-gradient(135deg, var(--accent-green-light), var(--surface-color));
}

.carousel-indicators {
	position: absolute;
	top: 10px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	gap: 15px;
	z-index: 100;
}

.indicator {
	width: 12px;
	height: 12px;
	background: var(--surface-alt-color);
	border: 1px solid var(--accent-green);
	border-radius: 50%;
	cursor: pointer;
	transition: all 0.3s ease;
}

.indicator.active {
	background: linear-gradient(135deg, var(--accent-green), var(--accent-green-strong));
	box-shadow: 0 0 10px rgba(27, 207, 131, 0.5);
	transform: scale(1.3);
}

/* Info Cards Section */
.info-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 30px;
	margin-bottom: 60px;
}

.info-card {
	background: var(--surface-color);
	border: 1px solid var(--border-soft);
	border-radius: 20px;
	padding: 25px;
	text-align: center;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
	box-shadow: var(--shadow-soft);
}

.info-card:hover {
	transform: translateY(-5px);
	border-color: rgba(27, 207, 131, 0.25);
	box-shadow: 0 20px 35px rgba(27, 207, 131, 0.15);
}

.info-icon {
	width: 60px;
	height: 60px;
	margin: 0 auto 20px;
	background: linear-gradient(135deg, var(--accent-green) 0%, var(--accent-green-strong) 100%);
	border-radius: 15px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 24px;
}

.info-title {
	font-size: 18px;
	font-weight: 600;
	margin-bottom: 10px;
}

.info-value {
	font-size: 28px;
	font-weight: 700;
	color: var(--accent-green-strong);
	margin-bottom: 10px;
}

/* Shared Section Helpers */
.section-heading {
	max-width: 800px;
	margin: 0 auto 50px;
	text-align: center;
}

.section-eyebrow {
	font-size: 12px;
	letter-spacing: 3px;
	text-transform: uppercase;
	color: var(--accent-green-strong);
	margin-bottom: 15px;
	display: block;
	text-align: center;
}

.section-description {
	color: var(--text-secondary);
	font-size: 16px;
	line-height: 1.7;
	margin-top: 15px;
}

/* Innovation Showcase */
.innovation-showcase,
.prism-philosophy,
.performance-metrics,
.skills-lab,
.connection-panel,
.summit-hero,
.summit-about,
.summit-speakers,
.summit-schedule,
.summit-sponsors,
.summit-register {
	padding: 80px 50px;
	background: transparent;
	position: relative;
	overflow: hidden;
}

.innovation-showcase::before,
.prism-philosophy::before,
.performance-metrics::before,
.skills-lab::before,
.connection-panel::before,
.summit-hero::before,
.summit-about::before {
	content: '';
	position: absolute;
	top: 0;
	left: 20%;
	right: 20%;
	height: 1px;
	background: linear-gradient(90deg, 
		transparent 0%, 
		rgba(27, 207, 131, 0.2) 20%, 
		rgba(27, 207, 131, 0.4) 50%, 
		rgba(27, 207, 131, 0.2) 80%, 
		transparent 100%);
	opacity: 0.6;
	transition: opacity 0.3s ease;
}

.innovation-showcase:hover::before,
.prism-philosophy:hover::before,
.performance-metrics:hover::before,
.skills-lab:hover::before,
.summit-hero:hover::before,
.summit-about:hover::before {
	opacity: 0.8;
}

.innovation-showcase .dashboard-container,
.prism-philosophy .dashboard-container,
.performance-metrics .dashboard-container,
.skills-lab .dashboard-container,
.connection-panel .dashboard-container,
.summit-hero .dashboard-container,
.summit-about .dashboard-container,
.summit-speakers .dashboard-container,
.summit-schedule .dashboard-container,
.summit-sponsors .dashboard-container,
.summit-register .dashboard-container {
	max-width: 1200px;
	padding-top: 0;
	padding-bottom: 0;
}

.innovation-showcase .dashboard-container > *:first-child,
.prism-philosophy .dashboard-container > *:first-child,
.performance-metrics .dashboard-container > *:first-child,
.skills-lab .dashboard-container > *:first-child,
.summit-hero .dashboard-container > *:first-child,
.summit-about .dashboard-container > *:first-child {
	margin-top: 0;
}

.innovation-showcase .dashboard-container > *:last-child,
.prism-philosophy .dashboard-container > *:last-child,
.performance-metrics .dashboard-container > *:last-child,
.skills-lab .dashboard-container > *:last-child,
.summit-hero .dashboard-container > *:last-child,
.summit-about .dashboard-container > *:last-child {
	margin-bottom: 0;
}

.showcase-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: 40px;
	align-items: stretch;
	margin-top: 0;
	margin-bottom: 0;
}

.showcase-carousel {
	position: relative;
	padding: 40px;
	background: var(--surface-color);
	border: 1px solid var(--border-soft);
	border-radius: 30px;
	overflow: hidden;
	box-shadow: var(--shadow-soft);
}

.showcase-card {
	display: none;
	flex-direction: column;
	gap: 20px;
}

.showcase-card.active {
	display: flex;
}

.card-eyebrow {
	font-size: 14px;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: var(--accent-green-strong);
	margin-bottom: 10px;
}

.showcase-card h3 {
	margin-bottom: 15px;
}

.showcase-preview {
	position: relative;
}

.showcase-preview .carousel-indicators {
	position: absolute;
	bottom: 20px;
	left: 50%;
	transform: translateX(-50%);
	margin-top: 0;
	margin-bottom: 0;
	z-index: 10;
}

.card-highlights {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.card-highlights li {
	position: relative;
	padding-left: 20px;
	color: var(--text-secondary);
}

.card-highlights li::before {
	content: '→';
	position: absolute;
	left: 0;
	color: var(--accent-green-strong);
}

.carousel-controls {
	display: flex;
	justify-content: space-between;
	margin-top: 30px;
}

.carousel-btn {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	border: 1px solid var(--border-soft);
	background: var(--surface-alt-color);
	color: var(--text-primary);
	font-size: 32px;
	cursor: pointer;
	transition: all 0.3s ease;
}

.carousel-btn:hover {
	transform: translateY(-3px);
	border-color: rgba(27, 207, 131, 0.5);
	box-shadow: 0 10px 25px rgba(27, 207, 131, 0.2);
}

.carousel-indicators {
	display: flex;
	gap: 10px;
	margin-top: 20px;
	justify-content: center;
}

.carousel-indicators span {
	width: 20px;
	height: 6px;
	border-radius: 999px;
	background: rgba(15, 29, 26, 0.15);
	cursor: pointer;
	transition: all 0.3s;
}

.carousel-indicators span.active {
	background: linear-gradient(90deg, var(--accent-green), var(--accent-green-strong));
	width: 40px;
	box-shadow: 0 0 15px rgba(27, 207, 131, 0.4);
}

.showcase-preview {
	position: relative;
	background: radial-gradient(circle at top, rgba(27, 207, 131, 0.15), transparent 70%);
	border-radius: 30px;
	border: 1px solid rgba(27, 207, 131, 0.15);
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	min-height: 420px;
	padding-bottom: 60px;
	box-shadow: var(--shadow-soft);
}

.preview-core {
	position: relative;
	width: 220px;
	height: 220px;
}

.preview-prism {
	width: 100%;
	height: 100%;
	border-radius: 20px;
	background: linear-gradient(135deg, rgba(27, 207, 131, 0.8), rgba(11, 165, 106, 0.6));
	box-shadow: 0 0 40px rgba(27, 207, 131, 0.3);
	animation: rotate 8s linear infinite;
}

@keyframes rotate {
	from {
		transform: rotate(0deg);
	}
	to {
		transform: rotate(360deg);
	}
}

.preview-ring {
	position: absolute;
	border: 2px solid rgba(27, 207, 131, 0.3);
	border-radius: 50%;
	animation: pulse-ring 3s ease-in-out infinite;
}

.ring-one {
	width: 280px;
	height: 280px;
	top: -30px;
	left: -30px;
}

.ring-two {
	width: 340px;
	height: 340px;
	top: -60px;
	left: -60px;
	animation-delay: 1.5s;
}

@keyframes pulse-ring {
	0%, 100% {
		opacity: 0.3;
		transform: scale(1);
	}
	50% {
		opacity: 0.6;
		transform: scale(1.1);
	}
}

.preview-orbit {
	position: absolute;
	width: 20px;
	height: 20px;
	background: var(--accent-green);
	border-radius: 50%;
	box-shadow: 0 0 20px rgba(27, 207, 131, 0.8);
}

.orbit-one {
	top: 0;
	left: 50%;
	animation: orbit 4s linear infinite;
}

.orbit-two {
	bottom: 0;
	right: 0;
	animation: orbit 6s linear infinite reverse;
}

@keyframes orbit {
	from {
		transform: rotate(0deg) translateX(120px) rotate(0deg);
	}
	to {
		transform: rotate(360deg) translateX(120px) rotate(-360deg);
	}
}

.preview-floating {
	position: absolute;
	display: flex;
	flex-direction: column;
	gap: 15px;
	right: 30px;
	bottom: 30px;
}

.floating-tag {
	padding: 8px 16px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.9);
	border: 1px solid var(--border-soft);
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 2px;
	color: var(--text-primary);
	box-shadow: var(--shadow-soft);
}

/* Philosophy */
.prism-philosophy {
	background: transparent;
}

.philosophy-intro {
	text-align: center;
	max-width: 780px;
	margin: 0 auto 50px;
}

.philosophy-intro > *:last-child {
	margin-bottom: 0;
}

.philosophy-pillars {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 30px;
	margin-top: 0;
	margin-bottom: 0;
}

.pillar-card {
	padding: 30px;
	background: var(--surface-color);
	border: 1px solid var(--border-soft);
	border-radius: 20px;
	text-align: left;
	box-shadow: var(--shadow-soft);
}

.pillar-icon {
	width: 60px;
	height: 60px;
	border-radius: 18px;
	background: linear-gradient(135deg, var(--accent-green), var(--accent-green-strong));
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 26px;
	margin-bottom: 20px;
	color: white;
}

.pillar-icon i {
	color: white;
}

.pillar-card a {
	color: var(--accent-green-strong);
	text-decoration: none;
	font-size: 14px;
}

/* Performance Metrics */
.performance-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 25px;
	margin-top: 0;
	margin-bottom: 0;
}

.performance-card {
	text-align: center;
	padding: 30px;
	border-radius: 20px;
	background: var(--surface-color);
	border: 1px solid var(--border-soft);
	box-shadow: var(--shadow-soft);
}

.performance-icon {
	width: 60px;
	height: 60px;
	margin: 0 auto 20px;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--accent-green), var(--accent-green-strong));
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 24px;
	color: white;
}

.performance-icon i {
	color: white;
}

.performance-value {
	font-size: 42px;
	font-weight: 700;
	color: var(--accent-green-strong);
	margin-bottom: 10px;
}

/* Skills */
.skills-lab {
	background: transparent;
}

.skills-header {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: 30px;
	flex-wrap: wrap;
	margin-bottom: 40px;
}

.skills-header > div {
	text-align: center;
	flex: 1;
	min-width: 100%;
}

.skills-header > div > *:last-child {
	margin-bottom: 0;
}

.skill-tabs {
	display: flex;
	gap: 15px;
	flex-wrap: wrap;
}

.skill-tab {
	padding: 10px 20px;
	border: 1px solid rgba(15, 29, 26, 0.12);
	border-radius: 999px;
	background: var(--surface-alt-color);
	color: var(--text-primary);
	cursor: pointer;
	font-size: 14px;
	transition: all 0.2s ease;
}

.skill-tab.active {
	background: linear-gradient(135deg, var(--accent-green), var(--accent-green-strong));
	color: #ffffff;
	box-shadow: 0 10px 20px rgba(27, 207, 131, 0.25);
}

.skills-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
	gap: 20px;
	margin-top: 0;
	margin-bottom: 0;
}

.skill-card {
	padding: 25px;
	border-radius: 18px;
	background: var(--surface-color);
	border: 1px solid var(--border-soft);
	transition: transform 0.3s ease, border-color 0.3s ease;
	box-shadow: var(--shadow-soft);
}

.skill-card:hover {
	transform: translateY(-6px);
	border-color: rgba(27, 207, 131, 0.25);
	box-shadow: 0 15px 30px rgba(27, 207, 131, 0.15);
}

/* Connection Panel */
.connection-panel {
	background: transparent;
}

.connection-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 20px;
}

.connection-card {
	padding: 25px;
	border-radius: 20px;
	border: 1px solid var(--border-soft);
	background: var(--surface-color);
	display: flex;
	gap: 15px;
	align-items: center;
	color: inherit;
	text-decoration: none;
	transition: transform 0.3s ease, border-color 0.3s ease;
	box-shadow: var(--shadow-soft);
}

.connection-card:hover {
	transform: translateY(-4px);
	border-color: rgba(27, 207, 131, 0.3);
	box-shadow: 0 15px 30px rgba(27, 207, 131, 0.15);
}

.connection-icon {
	width: 48px;
	height: 48px;
	border-radius: 12px;
	background: linear-gradient(135deg, var(--accent-green), var(--accent-green-strong));
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 24px;
}

/* Summit Hero */
.summit-hero {
	background: transparent;
}

.summit-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: 50px;
	align-items: center;
}

.summit-content {
	text-align: center;
}

.summit-content > *:last-child {
	margin-bottom: 0;
}

.summit-stats {
	display: grid;
	grid-template-columns: repeat(2, minmax(120px, 1fr));
	gap: 20px;
	margin: 30px 0 0 0;
}

.summit-stats[style*="margin"] {
	margin: 50px auto !important;
}

.summit-stat {
	padding: 20px;
	border-radius: 18px;
	border: 1px solid var(--border-soft);
	background: var(--surface-color);
	text-align: center;
	box-shadow: var(--shadow-soft);
}

.stat-number {
	font-size: 36px;
	font-weight: 700;
	color: var(--accent-green-strong);
	display: block;
}

.stat-label {
	font-size: 14px;
	color: var(--text-secondary);
	text-transform: uppercase;
	letter-spacing: 2px;
}

.summit-countdown {
	padding: 40px;
	border-radius: 30px;
	background: var(--surface-color);
	border: 1px solid var(--border-soft);
	box-shadow: var(--shadow-soft);
}

.countdown-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 15px;
	margin: 20px 0;
}

.countdown-unit {
	text-align: center;
	padding: 20px;
	border-radius: 18px;
	background: var(--surface-alt-color);
	border: 1px solid var(--border-soft);
}

.countdown-unit span {
	font-size: 34px;
	font-weight: 700;
	color: var(--accent-warm);
}

.countdown-note {
	font-size: 14px;
	color: var(--text-secondary);
}

/* Summit About */
.summit-about-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
	margin-top: 0;
	margin-bottom: 0;
}

.summit-about-visual {
	min-height: 500px;
}

.summit-about-visual {
	position: relative;
	width: 100%;
	height: 100%;
}

.neural-block {
	padding: 25px;
	text-align: center;
	border-radius: 16px;
	border: 1px solid var(--border-soft);
	background: var(--surface-color);
	font-weight: 600;
	letter-spacing: 4px;
	box-shadow: var(--shadow-soft);
}

.about-stats {
	display: grid;
	grid-template-columns: repeat(2, minmax(120px, 1fr));
	gap: 20px;
	margin-top: 30px;
}

.about-stats span {
	font-size: 32px;
	font-weight: 700;
	color: var(--accent-green-strong);
	display: block;
}

/* Speakers */
.speakers-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: 25px;
}

.speaker-card {
	padding: 30px;
	background: var(--surface-color);
	border: 1px solid var(--border-soft);
	border-radius: 20px;
	text-align: center;
	box-shadow: var(--shadow-soft);
}

.speaker-avatar {
	width: 70px;
	height: 70px;
	margin: 0 auto 15px;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--accent-green), var(--accent-green-strong));
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	color: #ffffff;
}

.speaker-role {
	color: var(--text-secondary);
	font-size: 14px;
	margin-bottom: 10px;
}

/* Schedule */
.summit-schedule {
	background: transparent;
}

.schedule-tabs {
	display: flex;
	gap: 15px;
	flex-wrap: wrap;
	margin-bottom: 30px;
}

.schedule-tab {
	padding: 10px 25px;
	border-radius: 999px;
	border: 1px solid rgba(15, 29, 26, 0.12);
	background: var(--surface-alt-color);
	color: var(--text-primary);
	cursor: pointer;
	transition: all 0.3s ease;
}

.schedule-tab.active {
	background: linear-gradient(135deg, var(--accent-green), var(--accent-green-strong));
	border-color: transparent;
	color: #ffffff;
}

.schedule-content {
	display: none;
}

.schedule-content.active {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.timeline-item {
	border-radius: 20px;
	padding: 25px;
	background: var(--surface-color);
	border: 1px solid var(--border-soft);
	box-shadow: var(--shadow-soft);
}

.timeline-item header {
	display: flex;
	justify-content: space-between;
	gap: 20px;
	align-items: center;
}

.timeline-time {
	font-weight: 600;
	color: var(--accent-green-strong);
}

.timeline-toggle {
	border: none;
	background: transparent;
	color: var(--text-primary);
	cursor: pointer;
	font-size: 18px;
}

.timeline-details {
	margin-top: 15px;
	color: var(--text-secondary);
	display: none;
}

.timeline-item.open .timeline-details {
	display: block;
}

/* Sponsors */
.sponsor-tiers {
	display: flex;
	flex-direction: column;
	gap: 30px;
}

.sponsor-tier {
	padding: 30px;
	border-radius: 25px;
	background: var(--surface-color);
	border: 1px solid var(--border-soft);
	box-shadow: var(--shadow-soft);
}

.tier-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 20px;
	margin-top: 20px;
}

.sponsor-card {
	padding: 20px;
	border-radius: 18px;
	border: 1px solid var(--border-soft);
	background: var(--surface-color);
	box-shadow: var(--shadow-soft);
}

.sponsor-logo {
	width: 60px;
	height: 60px;
	border-radius: 16px;
	background: rgba(27, 207, 131, 0.1);
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 600;
	margin-bottom: 15px;
	color: var(--accent-green-strong);
}

.sponsor-tier.platinum {
	border-color: rgba(27, 207, 131, 0.25);
}

.sponsor-tier.gold {
	border-color: rgba(255, 215, 0, 0.25);
}

.sponsor-tier.silver {
	border-color: rgba(15, 29, 26, 0.15);
}

.register-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 30px;
}

.register-card {
	padding: 35px;
	border-radius: 25px;
	border: 1px solid var(--border-soft);
	background: var(--surface-color);
	box-shadow: var(--shadow-soft);
}

.register-card form {
	display: flex;
	gap: 10px;
	margin-top: 20px;
}

.register-card input {
	flex: 1;
	padding: 15px;
	border-radius: 12px;
	border: 1px solid var(--border-soft);
	background: var(--surface-alt-color);
	color: var(--text-primary);
}

.register-card .form-message {
	margin-top: 10px;
	font-size: 14px;
	color: var(--accent-green-strong);
}

.contact-info-grid {
	display: grid;
	gap: 15px;
	margin-top: 20px;
}

.contact-info-grid .label {
	font-size: 12px;
	text-transform: uppercase;
	color: var(--text-secondary);
	letter-spacing: 2px;
}

/* Contact Section */
.contact-section {
	padding: 80px 50px;
	background: transparent;
	position: relative;
	overflow: hidden;
}

.contact-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 20%;
	right: 20%;
	height: 1px;
	background: linear-gradient(90deg, 
		transparent 0%, 
		rgba(27, 207, 131, 0.2) 20%, 
		rgba(27, 207, 131, 0.4) 50%, 
		rgba(27, 207, 131, 0.2) 80%, 
		transparent 100%);
	opacity: 0.6;
	transition: opacity 0.3s ease;
}

.contact-section:hover::before {
	opacity: 0.8;
}

.contact-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	max-width: 1200px;
	margin: 0 auto;
	align-items: start;
	padding-top: 0;
	padding-bottom: 0;
}

.contact-form {
	background: var(--surface-color);
	border: 1px solid var(--border-soft);
	border-radius: 20px;
	padding: 40px;
	box-shadow: var(--shadow-soft);
}

.form-group {
	margin-bottom: 25px;
}

.form-group label {
	display: block;
	margin-bottom: 8px;
	font-size: 14px;
	color: var(--text-secondary);
	font-weight: 500;
}

.form-group input,
.form-group textarea {
	width: 100%;
	padding: 15px 20px;
	background: var(--surface-alt-color);
	border: 1px solid rgba(15, 29, 26, 0.1);
	border-radius: 10px;
	color: var(--text-primary);
	font-size: 16px;
	transition: all 0.3s ease;
	font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
	outline: none;
	border-color: rgba(27, 207, 131, 0.5);
	background: var(--surface-color);
	box-shadow: 0 0 20px rgba(27, 207, 131, 0.1);
}

.form-group textarea {
	resize: vertical;
	min-height: 120px;
}

.contact-info {
	padding: 20px 0;
	margin-top: 0;
	margin-bottom: 0;
}

.contact-info > *:last-child {
	margin-bottom: 0;
}

.contact-info h3 {
	font-size: 24px;
	margin-bottom: 30px;
	background: linear-gradient(135deg, var(--text-primary) 0%, var(--accent-green-strong) 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.contact-item {
	display: flex;
	align-items: center;
	gap: 20px;
	margin-bottom: 30px;
	padding: 20px;
	background: var(--surface-color);
	border: 1px solid var(--border-soft);
	border-radius: 15px;
	transition: all 0.3s ease;
	cursor: pointer;
	box-shadow: var(--shadow-soft);
}

.contact-item:hover {
	transform: translateX(5px);
	border-color: rgba(27, 207, 131, 0.25);
	background: rgba(27, 207, 131, 0.03);
	box-shadow: 0 15px 30px rgba(27, 207, 131, 0.12);
}

.contact-icon {
	width: 50px;
	height: 50px;
	background: linear-gradient(135deg, var(--accent-green), var(--accent-green-strong));
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 20px;
	flex-shrink: 0;
	color: white;
}

.contact-icon i {
	color: white;
}

.social-media-links a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 50px;
	height: 50px;
	border-radius: 12px;
	background: linear-gradient(135deg, var(--accent-green), var(--accent-green-strong));
	color: white;
	text-decoration: none;
	font-size: 24px;
	transition: all 0.3s ease;
	border: 2px solid transparent;
}

.social-media-links a:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 20px rgba(27, 207, 131, 0.3);
	border-color: var(--accent-green-strong);
}

.contact-details h4 {
	font-size: 16px;
	margin-bottom: 5px;
	color: var(--text-primary);
}

.contact-details p {
	font-size: 14px;
	color: var(--text-secondary);
	line-height: 1.4;
}

/* Footer */
footer {
	padding: 40px 50px;
	background: var(--surface-color);
	border-top: 1px solid var(--border-soft);
	text-align: center;
	position: relative;
}

.footer-content {
	position: relative;
}

.footer-login-link {
	color: var(--text-secondary);
	text-decoration: none;
	font-size: 14px;
	transition: all 0.3s ease;
	font-weight: 400;
}

.footer-login-link:hover {
	color: var(--accent-green-strong);
}

.copyright {
	font-size: 14px;
	color: var(--text-secondary);
	line-height: 1.6;
}

/* Scroll to Top Button */
.scroll-to-top {
	position: fixed;
	bottom: 30px;
	right: 30px;
	width: 50px;
	height: 50px;
	background: rgba(27, 207, 131, 0.15);
	border: 2px solid rgba(27, 207, 131, 0.3);
	border-radius: 50%;
	color: var(--accent-green-strong);
	font-size: 20px;
	cursor: pointer;
	display: none;
	align-items: center;
	justify-content: center;
	z-index: 999;
	transition: all 0.3s ease;
	backdrop-filter: blur(10px);
	box-shadow: 0 4px 15px rgba(27, 207, 131, 0.2);
}

.scroll-to-top:hover {
	background: rgba(27, 207, 131, 0.25);
	border-color: rgba(27, 207, 131, 0.5);
	transform: translateY(-3px);
	box-shadow: 0 6px 20px rgba(27, 207, 131, 0.3);
}

.scroll-to-top.active {
	display: flex;
}

.scroll-to-top i {
	display: flex;
	align-items: center;
	justify-content: center;
}

.copyright a,
.copyright .footer-icon-link {
	color: var(--text-secondary);
	text-decoration: none;
	transition: all 0.3s ease;
	display: inline-block;
	margin: 0 4px;
	padding: 4px 6px;
	border-radius: 4px;
}

.copyright a:hover,
.copyright .footer-icon-link:hover {
	color: var(--accent-green-strong);
	text-shadow: 0 0 10px rgba(27, 207, 131, 0.3);
	transform: translateY(-2px);
	background: rgba(27, 207, 131, 0.1);
}

.copyright a i,
.copyright .footer-icon-link i {
	transition: transform 0.3s ease;
	font-size: 1.1em;
	vertical-align: middle;
}

.copyright a:hover i,
.copyright .footer-icon-link:hover i {
	transform: scale(1.2);
}

.copyright strong {
	color: var(--accent-green-strong);
	font-weight: 600;
}

.footer-icon-link {
	margin-left: 8px;
}

/* Mobile Menu */
.hamburger {
	display: none;
	flex-direction: column;
	cursor: pointer;
	gap: 6px;
	z-index: 1001;
}

.hamburger span {
	width: 25px;
	height: 3px;
	background: var(--text-primary);
	border-radius: 2px;
	transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
	transform: rotate(45deg) translate(10px, 10px);
}

.hamburger.active span:nth-child(2) {
	opacity: 0;
}

.hamburger.active span:nth-child(3) {
	transform: rotate(-45deg) translate(8px, -8px);
}

.nav-links-mobile {
	display: none;
	position: fixed;
	top: 70px;
	left: 0;
	right: 0;
	width: 100%;
	max-width: 100vw;
	background: rgba(255, 255, 255, 0.98);
	backdrop-filter: blur(10px);
	border-bottom: 1px solid var(--border-soft);
	flex-direction: column;
	gap: 0;
	list-style: none;
	z-index: 999;
	padding: 20px;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
	overflow-y: auto;
	max-height: calc(100vh - 70px);
}

.nav-links-mobile.active {
	display: flex;
}

.nav-links-mobile a {
	color: var(--text-primary);
	text-decoration: none;
	padding: 15px 20px;
	display: block;
	border-left: 3px solid transparent;
	transition: all 0.3s ease;
}

.nav-links-mobile a:hover {
	border-left-color: var(--accent-green-strong);
	background: rgba(27, 207, 131, 0.05);
	color: var(--accent-green-strong);
}

.nav-links-mobile a.active {
	border-left-color: var(--accent-green-strong);
	background: rgba(27, 207, 131, 0.1);
	color: var(--accent-green-strong);
}

.nav-links-mobile .nav-login-link {
	font-weight: 600;
	color: var(--accent-green-strong);
}

@media (max-width: 1200px) {
	.charts-grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 968px) {
	.hero-content {
		grid-template-columns: 1fr;
		text-align: center;
	}

	.hero-text h1 {
		font-size: 48px;
	}

	.hero-text {
		padding-top: 160px;
	}
}

@media (max-width: 768px) {
	body {
		overflow-x: hidden;
		max-width: 100vw;
	}
	
	/* Section dividers for mobile */
	.dashboard-section::before,
	.skills-section::before,
	.projects-carousel-section::before,
	.innovation-showcase::before,
	.prism-philosophy::before,
	.performance-metrics::before,
	.skills-lab::before,
	.summit-hero::before,
	.summit-about::before,
	.contact-section::before {
		left: 10%;
		right: 10%;
	}
	
	.projects-carousel-section {
		padding: 40px 20px;
		overflow-x: hidden;
		max-width: 100vw;
		position: relative;
	}
	
	.projects-carousel-section .dashboard-container {
		padding-top: 20px;
		padding-bottom: 20px;
	}
	
	.projects-carousel-section .section-title {
		margin-bottom: 50px;
		position: relative;
		z-index: 1;
	}
	
	.projects-carousel-section p {
		margin-bottom: 40px;
		position: relative;
		z-index: 1;
	}
	
	.carousel-container {
		max-width: 100%;
		overflow: visible;
		padding-left: 0;
		padding-right: 0;
		margin-top: 40px;
		margin-bottom: 40px;
		position: relative;
		height: auto;
		min-height: 500px;
		z-index: 0;
	}
	
	nav {
		padding: 15px 20px;
		position: fixed;
		top: 0;
		left: 0;
		right: 0;
		width: 100%;
		max-width: 100vw;
		box-sizing: border-box;
	}
	
	nav.scrolled {
		padding: 12px 20px;
	}
	
	.nav-links-mobile {
		top: 60px;
		max-height: calc(100vh - 60px);
	}
	
	html[dir="rtl"] .nav-links-mobile {
		left: 0;
		right: 0;
	}
	
	html[dir="rtl"] .nav-links-mobile a {
		border-left: none;
		border-right: 3px solid transparent;
		text-align: right;
		padding: 15px 20px;
	}
	
	html[dir="rtl"] .nav-links-mobile a:hover,
	html[dir="rtl"] .nav-links-mobile a.active {
		border-right-color: var(--accent-green-strong);
		border-left: none;
	}

	.nav-container {
		grid-template-columns: auto 1fr auto;
		gap: 15px;
	}
	
	.nav-container .nav-links {
		display: none;
	}

	.logo-text {
		font-size: 18px;
	}

	.login-btn {
		padding: 6px 12px;
		font-size: 12px;
	}

	.login-btn svg {
		width: 14px;
		height: 14px;
		margin-right: 4px;
	}

	.hamburger {
		display: flex;
	}

	.nav-links {
		display: none;
	}

	.hero {
		min-height: auto;
		padding: 100px 0 60px;
	}

	.hero-content {
		grid-template-columns: 1fr;
		gap: 30px;
		padding: 0 20px;
	}

	.hero-text {
		padding-top: 0;
		text-align: center;
	}

	.hero-text h1 {
		font-size: 32px;
		line-height: 1.2;
		margin-bottom: 20px;
	}

	.hero-text p {
		font-size: 16px;
		margin-bottom: 30px;
		max-width: 100%;
	}

	.hero-visual {
		margin-top: 20px;
	}

	.hero-floating-images {
		display: block;
	}

	.floating-img-1,
	.floating-img-2,
	.floating-img-3 {
		width: 100px;
		height: 100px;
	}

	.floating-img-1 {
		top: 5%;
		right: 2%;
	}

	.floating-img-2 {
		bottom: 15%;
		right: 5%;
	}

	.floating-img-3 {
		top: 45%;
		left: -2%;
	}
	
	html[dir="rtl"] .floating-img-3 {
		left: auto;
		right: -2%;
	}

	.hero-main-img {
		max-width: 100%;
	}
	
	/* RTL Mobile fixes */
	html[dir="rtl"] .nav-container {
		grid-template-columns: auto 1fr auto;
	}
	
	html[dir="rtl"] .nav-container .logo {
		order: 3;
	}
	
	html[dir="rtl"] .nav-container .hamburger {
		order: 1;
	}
	
	html[dir="rtl"] .nav-container .language-switcher {
		order: 2;
		margin-left: auto;
	}

	.dashboard-section,
	.analytics-section,
	.projects-carousel-section,
	.contact-section,
	.skills-section,
	.innovation-showcase,
	.prism-philosophy,
	.performance-metrics,
	.skills-lab,
	.summit-hero,
	.summit-about {
		padding: 40px 20px;
	}

	.dashboard-container {
		padding: 0;
	}

	.section-title {
		font-size: 28px;
		margin-bottom: 30px;
	}

	.section-subtitle {
		font-size: 16px;
	}

	.section-description {
		font-size: 15px;
	}

	.stats-grid {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.stat-card {
		padding: 20px;
	}

	.stat-value {
		font-size: 28px;
	}

	.skills-hexagon-grid {
		gap: 15px;
		justify-content: center;
	}
	
	.skill-hexagon {
		width: 140px;
		height: 161px;
		margin: 15px 5px;
	}

	.skill-icon-hex {
		font-size: 36px;
	}

	.skill-name-hex {
		font-size: 12px;
	}
	
	.skill-categories {
		gap: 8px;
		flex-wrap: wrap;
		justify-content: center;
	}
	
	.category-tab {
		padding: 8px 16px;
		font-size: 11px;
	}

	.carousel-container {
		height: auto;
		min-height: 500px;
		padding-top: 30px;
		padding-bottom: 30px;
		margin-top: 30px;
		margin-bottom: 30px;
		max-width: 100%;
		overflow: visible;
		perspective: none;
		position: relative;
	}

	.carousel {
		max-width: 100%;
		overflow: visible;
		transform-style: flat;
		position: relative;
		height: 100%;
		min-height: 450px;
	}

	.carousel-item {
		width: 280px;
		height: 420px;
		max-width: 85vw;
		visibility: visible !important;
		position: absolute;
		left: 50% !important;
		top: 50% !important;
		transform: translate(-50%, -50%);
	}
	
	.carousel-item .card {
		width: 100%;
		height: 100%;
		overflow-y: auto;
		overflow-x: hidden;
		display: flex;
		flex-direction: column;
	}

	.card {
		padding: 20px;
	}

	.card-image {
		height: 150px;
		min-height: 150px;
		max-height: 150px;
		margin-bottom: 15px;
		flex-shrink: 0;
	}

	.card-number {
		font-size: 48px;
		top: 15px;
		right: 20px;
	}

	.card-title {
		font-size: 18px;
		line-height: 1.3;
		margin-bottom: 12px;
		word-wrap: break-word;
		overflow-wrap: break-word;
		flex-shrink: 0;
	}

	.card-description {
		font-size: 12px;
		line-height: 1.5;
		margin-bottom: 15px;
		word-wrap: break-word;
		overflow-wrap: break-word;
		flex: 1;
		min-height: 0;
		overflow-y: auto;
	}
	
	.card-tech {
		margin-bottom: 15px;
		gap: 6px;
		flex-shrink: 0;
	}
	
	.tech-badge {
		font-size: 10px;
		padding: 4px 10px;
	}
	
	.card-cta {
		padding: 10px 20px;
		font-size: 12px;
		flex-shrink: 0;
	}

	.carousel-controls {
		bottom: -60px;
		position: relative;
		margin-top: 20px;
	}

	.carousel-btn {
		width: 50px;
		height: 50px;
		font-size: 20px;
	}
	
	.carousel-indicators {
		top: -40px;
		position: relative;
		margin-bottom: 20px;
	}

	.showcase-grid {
		grid-template-columns: 1fr;
		gap: 30px;
	}

	.showcase-carousel {
		padding: 30px 20px;
	}

	.showcase-preview {
		min-height: 300px;
	}

	.philosophy-pillars {
		grid-template-columns: 1fr;
		gap: 25px;
	}

	.performance-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 20px;
	}

	.performance-card {
		padding: 25px 20px;
	}

	.performance-value {
		font-size: 36px;
	}

	.skills-header {
		flex-direction: column;
		align-items: flex-start;
	}

	.skill-tabs {
		width: 100%;
		justify-content: center;
		flex-wrap: wrap;
	}

	.skills-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 15px;
	}

	.skill-card {
		padding: 20px 15px;
		text-align: center;
	}

	.summit-grid {
		grid-template-columns: 1fr;
		gap: 30px;
	}

	.summit-stats {
		grid-template-columns: repeat(2, 1fr);
		gap: 15px;
	}

	.summit-about-grid {
		grid-template-columns: 1fr;
		gap: 30px;
	}

	.summit-about-visual {
		min-height: 300px;
	}

	.about-stats {
		grid-template-columns: repeat(2, 1fr);
		gap: 15px;
	}

	.contact-grid {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.contact-form {
		padding: 30px 20px;
	}

	.contact-info {
		padding: 0;
	}

	.contact-item {
		padding: 15px;
		margin-bottom: 20px;
	}

	footer {
		padding: 30px 20px;
	}

	.footer-login-link {
		font-size: 12px;
	}
	
	.scroll-to-top {
		width: 45px;
		height: 45px;
		font-size: 18px;
		bottom: 20px;
		right: 20px;
	}

	.copyright {
		font-size: 12px;
		line-height: 1.6;
	}
}

@media (max-width: 480px) {
	.hero-text h1 {
		font-size: 24px;
	}

	.hero-text p {
		font-size: 14px;
	}

	.section-title {
		font-size: 24px;
	}

	.stats-grid,
	.performance-grid,
	.skills-grid {
		grid-template-columns: 1fr;
	}

	.skill-hexagon {
		width: 120px;
		height: 138px;
		margin: 10px 5px;
	}

	.skill-icon-hex {
		font-size: 30px;
	}

	.skill-name-hex {
		font-size: 11px;
	}

	.carousel-item {
		width: 260px;
		height: 400px;
		visibility: visible !important;
	}

	.summit-stats,
	.about-stats {
		grid-template-columns: 1fr;
	}

	.cta-button {
		padding: 12px 30px;
		font-size: 14px;
	}
}

