/* ===========================
   Technical Arsenal Skills Section
   =========================== */

:root {
	--primary-black: #0a0a0a;
	--carbon-dark: #121212;
	--carbon-medium: #1a1a1a;
	--carbon-light: #2a2a2a;
	--metal-dark: #3a3a3a;
	--metal-light: #4a4a4a;
	--accent-purple: #9945ff;
	--accent-blue: #00a8ff;
	--text-primary: #ffffff;
	--text-secondary: #b0b0b0;
}

.skills-section {
	padding: 120px 30px;
	background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
	position: relative;
	overflow: hidden;
}

.skill-categories {
	display: flex;
	justify-content: center;
	gap: 15px;
	flex-wrap: wrap;
	margin-bottom: 50px;
}

.category-tab {
	padding: 12px 30px;
	background: #ffffff;
	border: 2px solid #e9ecef;
	border-radius: 30px;
	color: #6c757d;
	cursor: pointer;
	transition: all 0.3s ease;
	text-transform: uppercase;
	font-size: 14px;
	letter-spacing: 1px;
	font-weight: 600;
}

.category-tab:hover {
	background: #f8f9fa;
	border-color: #6610f2;
	color: #495057;
}

.category-tab.active {
	background: linear-gradient(135deg, #6610f2 0%, #0d6efd 100%);
	border-color: #6610f2;
	color: #ffffff;
	box-shadow: 0 5px 20px rgba(102, 16, 242, 0.3);
}

/* Hexagonal Skills Grid */
.skills-hexagon-grid {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 20px;
	margin-top: 60px;
}

.skill-hexagon {
	width: 200px;
	height: 230px;
	position: relative;
	margin: 30px 10px;
	cursor: pointer;
	transition: all 0.3s ease;
	animation: fadeInUp 0.6s ease-out forwards;
	opacity: 0;
}

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

.skill-hexagon:hover {
	transform: translateY(-10px);
}

.hexagon-inner {
	width: 100%;
	height: 100%;
	position: relative;
	transform: rotate(30deg);
	overflow: hidden;
	border-radius: 20px;
	background: linear-gradient(135deg, #ffffff, #f8f9fa);
	border: 2px solid #e9ecef;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.skill-hexagon:hover .hexagon-inner {
	border-color: #6610f2;
	box-shadow: 0 8px 30px rgba(102, 16, 242, 0.3);
}

.hexagon-content {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	transform: rotate(-30deg);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 20px;
}

.skill-icon-hex {
	font-size: 48px;
	margin-bottom: 15px;
	animation: bounce 2s ease-in-out infinite;
}

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

.skill-name-hex {
	font-size: 16px;
	font-weight: 700;
	color: #212529;
	margin-bottom: 12px;
	text-align: center;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.skill-level {
	width: 80%;
	height: 6px;
	background: #e9ecef;
	border-radius: 10px;
	overflow: hidden;
	margin-bottom: 8px;
}

.skill-level-fill {
	height: 100%;
	background: linear-gradient(90deg, #6610f2, #0d6efd);
	border-radius: 10px;
	transition: width 1s ease-out;
}

.skill-percentage-hex {
	font-size: 14px;
	font-weight: 700;
	color: #6610f2;
}

/* Mobile Responsive */
@media (max-width: 768px) {
	.skills-section {
		padding: 80px 15px;
	}

	.skills-hexagon-grid {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		gap: 12px;
		justify-items: center;
		align-items: start;
		margin-top: 40px;
		padding: 0 15px;
		width: 100%;
		max-width: 100vw;
		box-sizing: border-box;
	}
	
	.skill-hexagon {
		width: 100%;
		max-width: 100%;
		height: 170px;
		margin: 0;
		padding: 0;
		box-sizing: border-box;
	}
	
	.hexagon-inner {
		width: 100%;
		height: 100%;
		box-sizing: border-box;
	}
	
	.hexagon-content {
		padding: 12px;
		box-sizing: border-box;
	}

	.skill-icon-hex {
		font-size: 32px;
		margin-bottom: 8px;
	}
	
	.skill-name-hex {
		font-size: 12px;
		margin-bottom: 8px;
	}
	
	.skill-percentage-hex {
		font-size: 12px;
	}
	
	.category-tab {
		padding: 8px 16px;
		font-size: 10px;
		white-space: nowrap;
	}
}

@media (max-width: 480px) {
	.skill-hexagon {
		height: 150px;
	}

	.skill-icon-hex {
		font-size: 28px;
	}

	.skill-name-hex {
		font-size: 11px;
	}
}

