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

/*

TemplateMo 600 Prism Flux

https://templatemo.com/tm-600-prism-flux

*/

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

/* Performance optimizations */
img {
	max-width: 100%;
	height: auto;
	display: block;
}

/* Reduce repaints */
.header,
.footer,
.stat-card,
.pillar {
	will-change: transform;
}

/* GPU acceleration for animations */
.carousel-item,
.skill-hexagon,
.stat-card:hover,
.pillar:hover {
	transform: translateZ(0);
	backface-visibility: hidden;
	perspective: 1000px;
}

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

html {
	scroll-behavior: smooth;
}

/* Professional Scroll Animations */
@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes fadeIn {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

@keyframes scaleIn {
	from {
		opacity: 0;
		transform: scale(0.9);
	}
	to {
		opacity: 1;
		transform: scale(1);
	}
}

/* Scroll reveal classes */
.fade-in-up {
	opacity: 0;
	transform: translateY(40px);
	transition: all 0.8s cubic-bezier(0.4, 0.0, 0.2, 1);
}

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

.fade-in {
	opacity: 0;
	transition: opacity 0.8s ease;
}

.fade-in.visible {
	opacity: 1;
}

.scale-in {
	opacity: 0;
	transform: scale(0.95);
	transition: all 0.6s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.scale-in.visible {
	opacity: 1;
	transform: scale(1);
}

body {
	font-family: 'Orbitron', 'Rajdhani', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	background: var(--primary-black);
	color: var(--text-primary);
	overflow-x: hidden;
	position: relative;
	width: 100%;
	max-width: 100vw;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	text-rendering: optimizeLegibility;
}

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

/* Carbon Fiber Background Pattern */
body::before {
	content: '';
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background:
		repeating-linear-gradient(0deg,
			transparent,
			transparent 2px,
			rgba(255, 255, 255, 0.03) 2px,
			rgba(255, 255, 255, 0.03) 4px),
		repeating-linear-gradient(90deg,
			transparent,
			transparent 2px,
			rgba(255, 255, 255, 0.03) 2px,
			rgba(255, 255, 255, 0.03) 4px),
		linear-gradient(135deg,
			var(--primary-black) 0%,
			var(--carbon-dark) 25%,
			var(--carbon-medium) 50%,
			var(--carbon-dark) 75%,
			var(--primary-black) 100%);
	z-index: -2;
}

/* Animated Grid Overlay */
body::after {
	content: '';
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image:
		linear-gradient(rgba(255, 51, 51, 0.05) 2px, transparent 2px),
		linear-gradient(90deg, rgba(255, 51, 51, 0.05) 2px, transparent 2px);
	background-size: 150px 150px;
	animation: gridMove 20s linear infinite;
	z-index: -1;
	opacity: 0.5;
}

@keyframes gridMove {
	0% {
		transform: translate(0, 0);
	}

	100% {
		transform: translate(150px, 150px);
	}
}

/* Loading Screen - Optimized */
.loader {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	display: none !important; /* Loader hidden on all pages */
	background: var(--primary-black);
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 10000;
	transition: opacity 0.3s ease, visibility 0.3s ease;
	will-change: opacity;
}

.loader.hidden {
	opacity: 0;
	visibility: hidden;
}

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

.loader-prism {
	width: 100px;
	height: 100px;
	position: relative;
	margin: 0 auto 30px;
}

.prism-face {
	position: absolute;
	width: 100%;
	height: 100%;
	border: 2px solid transparent;
	transform-origin: center;
	animation: prismRotate 3s linear infinite;
}

.prism-face:nth-child(1) {
	border-image: linear-gradient(45deg, var(--accent-red), var(--accent-blue)) 1;
	animation-delay: 0s;
}

.prism-face:nth-child(2) {
	border-image: linear-gradient(45deg, var(--accent-blue), var(--accent-green)) 1;
	transform: rotate(60deg);
	animation-delay: 0.2s;
}

.prism-face:nth-child(3) {
	border-image: linear-gradient(45deg, var(--accent-green), var(--accent-purple)) 1;
	transform: rotate(120deg);
	animation-delay: 0.4s;
}

@keyframes prismRotate {
	0% {
		transform: rotate(0deg) scale(1);
	}

	50% {
		transform: rotate(180deg) scale(1.2);
	}

	100% {
		transform: rotate(360deg) scale(1);
	}
}

/* Navigation Header - Professional Enhancement */
.header {
	position: fixed;
	top: 0;
	width: 100%;
	background: linear-gradient(180deg,
			rgba(18, 18, 18, 0.98) 0%,
			rgba(18, 18, 18, 0.95) 50%,
			rgba(18, 18, 18, 0) 100%);
	backdrop-filter: blur(20px) saturate(180%);
	-webkit-backdrop-filter: blur(20px) saturate(180%);
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	z-index: 1000;
	transition: all 0.4s cubic-bezier(0.4, 0.0, 0.2, 1);
	box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.header.scrolled {
	background: rgba(18, 18, 18, 0.98);
	backdrop-filter: blur(30px) saturate(180%);
	-webkit-backdrop-filter: blur(30px) saturate(180%);
	box-shadow: 
		0 10px 40px rgba(0, 0, 0, 0.6),
		0 0 20px rgba(153, 69, 255, 0.1);
	border-bottom: 1px solid rgba(153, 69, 255, 0.2);
}

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

.logo {
	display: flex;
	align-items: center;
	text-decoration: none;
	position: relative;
}

.logo-icon {
	width: 45px;
	height: 45px;
	margin-right: 15px;
	position: relative;
}

/* Prism-inspired logo */
.logo-prism {
	width: 100%;
	height: 100%;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
}

.prism-shape {
	width: 30px;
	height: 30px;
	position: relative;
	transform: rotate(45deg);
	background: linear-gradient(135deg,
			var(--accent-red) 0%,
			var(--accent-blue) 33%,
			var(--accent-green) 66%,
			var(--accent-purple) 100%);
	animation: prismShine 3s ease-in-out infinite;
}

@keyframes prismShine {

	0%,
	100% {
		filter: brightness(1) hue-rotate(0deg);
		transform: rotate(45deg) scale(1);
	}

	50% {
		filter: brightness(1.5) hue-rotate(10deg);
		transform: rotate(45deg) scale(1.1);
	}
}

.prism-shape::before,
.prism-shape::after {
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	background: inherit;
	opacity: 0.5;
}

.prism-shape::before {
	transform: rotate(60deg);
}

.prism-shape::after {
	transform: rotate(-60deg);
}

.logo-text {
	font-size: 24px;
	font-weight: 900;
	letter-spacing: 2px;
	text-transform: uppercase;
}

.logo-text .prism {
	background: linear-gradient(135deg, var(--text-primary), var(--accent-cyan));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.logo-text .flux {
	color: var(--text-secondary);
	font-weight: 300;
	margin-left: 5px;
}

.nav-menu {
	display: flex;
	list-style: none;
	gap: 10px;
	align-items: center;
}

.nav-menu a {
	color: var(--text-secondary);
	text-decoration: none;
	padding: 12px 25px;
	transition: all 0.4s cubic-bezier(0.4, 0.0, 0.2, 1);
	position: relative;
	text-transform: uppercase;
	font-weight: 600;
	letter-spacing: 1.5px;
	font-size: 14px;
	min-height: 44px; /* Touch-friendly */
	display: flex;
	align-items: center;
	border-radius: 8px;
	margin: 0 5px;
}

.nav-menu a::before {
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 0;
	height: 3px;
	background: linear-gradient(90deg, var(--accent-blue), var(--accent-purple), var(--accent-cyan));
	border-radius: 2px;
	transition: width 0.4s cubic-bezier(0.4, 0.0, 0.2, 1);
	box-shadow: 0 0 10px rgba(153, 69, 255, 0.5);
}

.nav-menu a:hover {
	color: var(--text-primary);
	background: rgba(153, 69, 255, 0.1);
	transform: translateY(-2px);
}

.nav-menu a:hover::before,
.nav-menu a.active::before {
	width: 80%;
}

.nav-menu a.active {
	color: var(--accent-cyan);
	background: rgba(153, 69, 255, 0.15);
	text-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}

.menu-toggle {
	display: none;
	flex-direction: column;
	cursor: pointer;
	padding: 5px;
}

.menu-toggle span {
	width: 30px;
	height: 3px;
	background: linear-gradient(90deg, var(--accent-blue), var(--accent-purple));
	margin: 3px 0;
	transition: 0.3s;
	border-radius: 2px;
}

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

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

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

/* Hero Section with 3D Carousel */
.hero {
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	padding: 120px 20px 80px;
	background: radial-gradient(ellipse at center,
			rgba(153, 69, 255, 0.1) 0%,
			transparent 50%);
	overflow-x: hidden; /* Prevent horizontal scroll */
	width: 100%;
}

.carousel-container {
	width: 100%;
	max-width: 1600px;
	height: 650px;
	perspective: 1200px;
	position: relative;
	padding-top: 60px;
	margin: 0 auto;
	overflow: hidden; /* Prevent overflow */
}
.hero .carousel-controls{
	bottom: 0px;
}
.hero .carousel-container{
	padding: 0;
}
.carousel {
	width: 100%;
	height: 100%;
	position: relative;
	transform-style: preserve-3d;
	overflow: visible; /* Allow 3D transforms */
}

.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;
	max-width: 90vw; /* Prevent overflow on mobile */
}

/* Mobile responsiveness for carousel */
@media (max-width: 480px) {
	.carousel-indicators{
		display: none !important;
	}
	.philosophy-section {
		padding: 0px 15px 0px 15px !important;
	}
	.philosophy-headline {
        font-size: 30px !important;
    }
	.hero {
		padding: 100px 10px 60px;
		min-height: auto;
		overflow-x: hidden; /* Prevent horizontal scroll */
	}
	
	.carousel-container {
		height: 500px;
		perspective: 800px;
		padding-top: 40px;
		width: 100%;
		max-width: 100vw;
		overflow: hidden; /* Prevent overflow */
	}
	
	.carousel {
		overflow: visible; /* Allow 3D transforms */
	}
	
	.carousel-item {
		width: calc(100vw - 40px) !important; /* Use viewport width minus padding */
		max-width: 280px;
		min-width: 260px;
		height: 420px;
	}
	
	.carousel-item .card {
		padding: 15px;
		border-radius: 15px;
	}
	
	.card-image {
		height: 130px;
		margin-bottom: 12px;
	}
	
	.card-title {
		font-size: 18px;
		margin-bottom: 10px;
		letter-spacing: 1px;
	}
	
	.card-description {
		font-size: 12px;
		margin-bottom: 12px;
		line-height: 1.5;
	}
	
	.card-tech {
		margin-bottom: 12px;
		gap: 5px;
	}
	
	.tech-badge {
		padding: 3px 8px;
		font-size: 10px;
		letter-spacing: 0.5px;
	}
	
	.card-number {
		font-size: 40px;
		top: 10px;
		right: 15px;
	}
	
	.card-cta {
		padding: 10px 20px;
		font-size: 12px;
		letter-spacing: 1px;
	}
	
	.carousel-controls {
		bottom: -50px;
		gap: 10px;
	}
	
	.carousel-btn {
		width: 45px;
		height: 45px;
		font-size: 18px;
	}
	
	.carousel-indicators {
		top: 15px;
		gap: 8px;
		flex-wrap: wrap;
		justify-content: center;
		max-width: 90%;
	}
	
	.indicator {
		width: 8px;
		height: 8px;
	}
}

.carousel-item .card {
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, var(--carbon-medium), var(--carbon-dark));
	border: 2px solid var(--metal-dark);
	border-radius: 20px;
	padding: 30px;
	position: relative;
	overflow: hidden;
	box-shadow:
		0 20px 40px rgba(0, 0, 0, 0.8),
		inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.carousel-item .card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 1px;
	background: linear-gradient(90deg,
			transparent,
			rgba(255, 255, 255, 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(153, 69, 255, 0.1);
	font-family: 'Orbitron', monospace;
}

.card-image {
	width: 100%;
	height: 200px;
	background: var(--carbon-dark);
	border-radius: 10px;
	margin-bottom: 20px;
	overflow: hidden;
	position: relative;
	border: 1px solid var(--metal-dark);
}

.card-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: grayscale(50%) contrast(1.2);
	transition: all 0.5s ease;
	opacity: 0;
	animation: fadeInImage 0.5s ease forwards;
}

@keyframes fadeInImage {
	to {
		opacity: 1;
	}
}

.card-image img[loading="lazy"] {
	opacity: 0;
}

.card-image img[loading="lazy"].loaded {
	opacity: 1;
	animation: fadeInImage 0.5s ease forwards;
}

.carousel-item:hover .card-image img {
	filter: grayscale(0%) contrast(1.3);
	transform: scale(1.1);
}

.card-title {
	font-size: 24px;
	font-weight: 700;
	margin-bottom: 15px;
	text-transform: uppercase;
	letter-spacing: 2px;
	background: linear-gradient(135deg, var(--text-primary), var(--accent-purple));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.card-description {
	color: var(--text-secondary);
	line-height: 1.6;
	margin-bottom: 20px;
	font-size: 14px;
}

.card-tech {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 20px;
}

.tech-badge {
	padding: 5px 12px;
	background: rgba(153, 69, 255, 0.1);
	border: 1px solid var(--accent-purple);
	border-radius: 20px;
	font-size: 12px;
	color: var(--accent-purple);
	text-transform: uppercase;
	letter-spacing: 1px;
}

.card-cta {
	padding: 14px 35px;
	background: linear-gradient(135deg, var(--accent-purple), var(--accent-blue), var(--accent-cyan));
	background-size: 200% 200%;
	border: none;
	border-radius: 30px;
	color: var(--text-primary);
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 2px;
	cursor: pointer;
	transition: all 0.4s cubic-bezier(0.4, 0.0, 0.2, 1);
	box-shadow: 
		0 5px 20px rgba(153, 69, 255, 0.4),
		0 0 15px rgba(153, 69, 255, 0.2);
	position: relative;
	overflow: hidden;
}

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

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

.card-cta:hover {
	transform: translateY(-3px) scale(1.05);
	box-shadow: 
		0 10px 35px rgba(153, 69, 255, 0.6),
		0 0 25px rgba(153, 69, 255, 0.4);
	background-position: 100% 50%;
}

.card-cta:active {
	transform: translateY(-1px) scale(1.02);
}

/* 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(--carbon-medium), var(--carbon-dark));
	border: 2px solid var(--metal-dark);
	border-radius: 50%;
	color: var(--accent-purple);
	font-size: 26px;
	cursor: pointer;
	transition: all 0.4s cubic-bezier(0.4, 0.0, 0.2, 1);
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow:
		0 5px 20px rgba(0, 0, 0, 0.6),
		inset 0 1px 0 rgba(255, 255, 255, 0.15);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	position: relative;
	overflow: hidden;
}

.carousel-btn::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 0;
	height: 0;
	background: radial-gradient(circle, rgba(153, 69, 255, 0.3) 0%, transparent 70%);
	transform: translate(-50%, -50%);
	transition: width 0.4s ease, height 0.4s ease;
	border-radius: 50%;
}

.carousel-btn:hover::before {
	width: 100px;
	height: 100px;
}

.carousel-btn:hover {
	border-color: var(--accent-purple);
	box-shadow:
		0 10px 30px rgba(153, 69, 255, 0.5),
		0 0 20px rgba(153, 69, 255, 0.3),
		inset 0 1px 0 rgba(255, 255, 255, 0.3);
	transform: scale(1.15) rotate(5deg);
	color: var(--accent-cyan);
	background: linear-gradient(135deg, rgba(153, 69, 255, 0.2), var(--carbon-dark));
}

.carousel-btn:active {
	transform: scale(1.05) rotate(0deg);
}

.carousel-indicators {
	position: absolute;
	top: 30px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	gap: 15px;
	z-index: 100;
}

.indicator {
	width: 12px;
	height: 12px;
	background: var(--metal-dark);
	border: 1px solid var(--metal-light);
	border-radius: 50%;
	cursor: pointer;
	transition: all 0.3s ease;
}

.indicator.active {
	background: linear-gradient(135deg, var(--accent-purple), var(--accent-blue));
	box-shadow: 0 0 10px rgba(153, 69, 255, 0.5);
	transform: scale(1.3);
}

/* NEW: Prism Philosophy Section */
.philosophy-section {
	padding: 100px 80px;
	background: linear-gradient(180deg, var(--primary-black) 0%, var(--carbon-dark) 50%, var(--primary-black) 100%);
	position: relative;
	overflow: hidden;
}

.philosophy-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: 
		radial-gradient(circle at 20% 30%, rgba(153, 69, 255, 0.1) 0%, transparent 50%),
		radial-gradient(circle at 80% 70%, rgba(0, 168, 255, 0.1) 0%, transparent 50%);
	z-index: 0;
	pointer-events: none;
}

.philosophy-container {
	max-width: 1200px;
	margin: 0 auto;
	text-align: center;
	position: relative;
	z-index: 1;
}

/* Animated Prism Line */
.prism-line {
	width: 100%;
	height: 2px;
	margin: 0 auto 60px;
	position: relative;
	overflow: hidden;
	background: var(--carbon-medium);
}

.prism-line::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg,
			transparent,
			var(--accent-red) 20%,
			var(--accent-blue) 40%,
			var(--accent-green) 60%,
			var(--accent-purple) 80%,
			transparent);

	animation: prismSweep 4s ease-in-out infinite;
}

@keyframes prismSweep {
	0% {
		left: -100%;
	}

	100% {
		left: 100%;
	}
}

.philosophy-headline {
	font-size: 56px;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: 3px;
	margin-bottom: 30px;
	line-height: 1.2;
	background: linear-gradient(135deg,
			var(--accent-cyan) 0%,
			var(--accent-purple) 25%,
			var(--accent-blue) 50%,
			var(--accent-green) 75%,
			var(--accent-cyan) 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	background-size: 200% 200%;
	animation: gradientFlow 5s ease infinite;
}

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

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

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

.philosophy-subheading {
	font-size: 20px;
	color: var(--text-secondary);
	max-width: 700px;
	margin: 0 auto 80px;
	line-height: 1.6;
	font-weight: 300;
}

.philosophy-pillars {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 40px;
	margin-top: 60px;
	margin-bottom: 60px;
	max-width: 1200px;
	margin-left: auto;
	margin-right: auto;
}

.pillar {
	position: relative;
	padding: 25px;
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(153, 69, 255, 0.2);
	border-radius: 20px;
	transition: all 0.4s cubic-bezier(0.4, 0.0, 0.2, 1);
	overflow: hidden;
	backdrop-filter: blur(15px);
	-webkit-backdrop-filter: blur(15px);
	cursor: pointer;
	display: flex;
	flex-direction: column;
	height: 100%;
	box-shadow: 
		0 10px 40px rgba(0, 0, 0, 0.4),
		0 0 20px rgba(153, 69, 255, 0.1),
		inset 0 1px 0 rgba(255, 255, 255, 0.05);
	gap: 20px;
}

.pillar::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(135deg, 
		rgba(153, 69, 255, 0.05) 0%,
		rgba(0, 168, 255, 0.05) 100%);
	opacity: 0;
	transition: opacity 0.4s ease;
	pointer-events: none;
	z-index: 1;
}

.pillar:hover::after {
	opacity: 1;
}

/* Unique Service Number Badge for Pillars - Enhanced */
.pillar::before {
	content: '';
	position: absolute;
	top: 20px;
	right: 20px;
	width: 50px;
	height: 50px;
	background: linear-gradient(135deg, rgba(153, 69, 255, 0.25), rgba(0, 168, 255, 0.25));
	border: 2px solid rgba(153, 69, 255, 0.5);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 18px;
	font-weight: 700;
	color: var(--accent-purple);
	z-index: 3;
	transition: all 0.4s cubic-bezier(0.4, 0.0, 0.2, 1);
	font-family: 'Orbitron', monospace;
	box-shadow: 0 4px 15px rgba(153, 69, 255, 0.3);
}

.pillar:hover::before {
	background: linear-gradient(135deg, rgba(153, 69, 255, 0.5), rgba(0, 168, 255, 0.5));
	border-color: var(--accent-purple);
	transform: scale(1.15) rotate(360deg);
	box-shadow: 0 0 25px rgba(153, 69, 255, 0.7), 0 0 50px rgba(153, 69, 255, 0.4);
}

.pillar:hover {
	transform: translateY(-12px) scale(1.02);
	border-color: rgba(153, 69, 255, 0.6);
	box-shadow: 
		0 25px 70px rgba(153, 69, 255, 0.4),
		0 0 50px rgba(153, 69, 255, 0.3),
		0 10px 30px rgba(0, 0, 0, 0.5),
		inset 0 1px 0 rgba(255, 255, 255, 0.1);
	background: rgba(255, 255, 255, 0.06);
}

/* Pillar Image Section - Enhanced Design */
.pillar-icon {
	width: 100%;
	height: 220px;
	margin: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	overflow: hidden;
	background: linear-gradient(135deg, var(--carbon-dark), var(--carbon-medium));
	border-radius: 15px;
	flex-shrink: 0;
}

.pillar-icon::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(180deg, 
		rgba(153, 69, 255, 0.1) 0%,
		rgba(0, 0, 0, 0.3) 50%,
		rgba(0, 0, 0, 0.6) 100%);
	z-index: 1;
	transition: opacity 0.4s ease;
}

.pillar:hover .pillar-icon::before {
	opacity: 0.8;
	background: linear-gradient(180deg, 
		rgba(153, 69, 255, 0.2) 0%,
		rgba(0, 168, 255, 0.2) 50%,
		rgba(0, 0, 0, 0.5) 100%);
}

.pillar-icon::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: radial-gradient(circle at center, 
		rgba(153, 69, 255, 0.1) 0%,
		transparent 70%);
	z-index: 2;
	opacity: 0;
	transition: opacity 0.4s ease;
}

.pillar:hover .pillar-icon::after {
	opacity: 1;
}

.pillar-icon img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	position: relative;
	z-index: 0;
	transition: transform 0.6s cubic-bezier(0.4, 0.0, 0.2, 1), filter 0.6s ease;
	filter: brightness(0.9) contrast(1.1) saturate(1.1);
}

.pillar:hover .pillar-icon img {
	transform: scale(1.12);
	filter: brightness(1) contrast(1.2) saturate(1.2);
}

/* Removed old pulse animation - using image overlay instead */

/* Pillar Content Section - Enhanced */
.pillar-content {
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 15px;
	flex: 1;
	position: relative;
	z-index: 2;
}

.pillar-content::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 2px;
	background: linear-gradient(90deg, 
		transparent,
		rgba(153, 69, 255, 0.5),
		transparent);
	opacity: 0;
	transition: opacity 0.4s ease;
}

.pillar:hover .pillar-content::before {
	opacity: 1;
}

.pillar-title {
	font-size: 22px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1.5px;
	margin: 0;
	color: var(--text-primary);
	text-align: left;
	transition: all 0.3s ease;
	background: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	position: relative;
	line-height: 1.4;
	padding-bottom: 8px;
}

.pillar:hover .pillar-title {
	background: linear-gradient(135deg, var(--accent-purple), var(--accent-blue), var(--accent-cyan));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	transform: translateX(5px);
}

.pillar-description {
	font-size: 15px;
	color: rgba(255, 255, 255, 0.8);
	line-height: 1.75;
	transition: all 0.3s ease;
	text-align: left;
	margin: 0;
	position: relative;
	padding-top: 5px;
}

.pillar:hover .pillar-description {
	color: rgba(255, 255, 255, 0.95);
	transform: translateX(3px);
}

/* Pillar Link Button */
.pillar-link {
	font-size: 14px;
	color: var(--accent-purple);
	font-weight: 600;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	transition: all 0.3s ease;
	text-transform: uppercase;
	letter-spacing: 1px;
	padding: 12px 24px;
	background: #ffffff;
	border-radius: 8px;
	border: 1px solid rgba(153, 69, 255, 0.3);
	width: fit-content;
	margin-top: auto;
	align-self: flex-start;
}

.pillar-link:hover {
	color: #ffffff;
	background: var(--accent-purple);
	border-color: var(--accent-purple);
	transform: translateX(5px);
	gap: 12px;
	box-shadow: 0 4px 15px rgba(153, 69, 255, 0.3);
}

.pillar-link i {
	transition: transform 0.3s ease;
	font-size: 12px;
}

.pillar-link:hover i {
	transform: translateX(4px);
}
.pillar-description a {
	color: var(--accent-cyan);
	text-decoration: none;
	transition: all 0.3s ease;
	position: relative;
}

.pillar-description a::after {
	content: '';
	position: absolute;
	bottom: -2px;
	left: 0;
	width: 0;
	height: 1px;
	background: var(--accent-cyan);
	transition: width 0.3s ease;
}

.pillar-description a:hover {
	color: var(--accent-purple);
}

.pillar-description a:hover::after {
	width: 100%;
}

/* Particle Effect Background */
.philosophy-particles {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	overflow: hidden;
	pointer-events: none;
}

.particle {
	position: absolute;
	width: 4px;
	height: 4px;
	background: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple));
	border-radius: 50%;
	opacity: 0;
	animation: float-particle 20s infinite linear;
}

@keyframes float-particle {
	0% {
		transform: translateY(0) rotate(0deg);
		opacity: 0;
	}

	5% {
		opacity: 1;
	}

	95% {
		opacity: 1;
	}

	100% {
		transform: translateY(-100vh) rotate(720deg);
		opacity: 0;
	}
}

/* about */
.about-sec{
	padding: 100px 80px 80px 80px !important;
	background: linear-gradient(180deg,
		var(--primary-black) 0%,
		var(--carbon-dark) 50%,
		var(--primary-black) 100%);
	position: relative;
	overflow: hidden;
}

.about-sec .container {
	max-width: 1200px;
	margin: 0 auto;
}

.about-sec::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: 
		radial-gradient(circle at 30% 30%, rgba(153, 69, 255, 0.1) 0%, transparent 50%),
		radial-gradient(circle at 70% 70%, rgba(0, 168, 255, 0.1) 0%, transparent 50%);
	z-index: 0;
	pointer-events: none;
}

.about-sec > * {
	position: relative;
	z-index: 1;
}

.about-sec .section-header h2{
	font-size: 36px;
	text-align: left;
	margin-bottom: 20px;
	background: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.about-sec .section-header h3{
	font-size: 24px;
	text-align: left;
	margin-bottom: 25px;
	color: var(--accent-purple);
	font-weight: 600;
}

.about-sec .section-header p{
	margin: 0 0 20px 0;
	text-align: justify;
	max-width: none !important;
	line-height: 1.9;
	font-size: 17px;
	color: rgba(255, 255, 255, 0.85);
}

.about-sec .section-header p b {
	color: var(--accent-cyan);
	font-weight: 600;
}

.about-sec .row{
	display: flex;
	gap: 40px;
	align-items: center;
	flex-wrap: wrap;
}

.about-sec .row .col-md-6{
	width: 50%;
	text-align: center !important;
	flex: 1 1 400px;
}

.about-sec .row .col-md-6 img {
	transition: transform 0.4s ease, filter 0.4s ease;
}

.about-sec .row .col-md-6:hover img {
	transform: scale(1.05);
	filter: drop-shadow(0 15px 40px rgba(153, 69, 255, 0.5));
}

.about-icon-sec{
	display: flex;
	color: white;
	align-items: center;
	gap: 15px;
	padding: 20px 0px;
	border-bottom: 2px dashed rgba(255, 255, 255, 0.2);
	flex-wrap: wrap;
	transition: all 0.3s ease;
	position: relative;
}

.about-icon-sec::before {
	content: '';
	position: absolute;
	left: 0;
	bottom: -2px;
	width: 0;
	height: 2px;
	background: linear-gradient(90deg, var(--accent-purple), var(--accent-blue));
	transition: width 0.3s ease;
}

.about-icon-sec:hover::before {
	width: 100%;
}

.about-icon-sec:hover {
	padding-left: 10px;
	border-bottom-color: rgba(153, 69, 255, 0.4);
}

.about-icon-sec p{
	font-size: 18px;
	font-weight: 600;
	color: var(--text-primary);
	transition: color 0.3s ease;
}

.about-icon-sec:hover p {
	color: var(--accent-cyan);
}

.about-icon-sec img{
	background: linear-gradient(135deg, rgba(153, 69, 255, 0.2), rgba(0, 168, 255, 0.2));
	padding: 10px;
	border-radius: 50%;
	width: 65px;
	flex-shrink: 0;
	border: 2px solid rgba(153, 69, 255, 0.3);
	transition: all 0.3s ease;
}

.about-icon-sec:hover img {
	background: linear-gradient(135deg, rgba(153, 69, 255, 0.4), rgba(0, 168, 255, 0.4));
	border-color: var(--accent-purple);
	transform: scale(1.1) rotate(5deg);
	box-shadow: 0 5px 20px rgba(153, 69, 255, 0.4);
}

/* About Page Mission/Vision Section */
.about-page3 {
	padding: 80px 30px !important;
	background: linear-gradient(180deg,
		var(--primary-black) 0%,
		var(--carbon-dark) 50%,
		var(--primary-black) 100%);
}

.about-page3 .stats-grid {
	max-width: 1000px;
	margin: 0 auto;
	grid-template-columns: repeat(2, 1fr);
	gap: 40px;
}

.about-page3 .stat-card {
	background: linear-gradient(135deg,
		rgba(255, 255, 255, 0.1) 0%,
		rgba(255, 255, 255, 0.05) 100%);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	border: 2px solid rgba(255, 255, 255, 0.15);
	border-radius: 25px;
	padding: 50px 40px;
	text-align: left;
	position: relative;
	overflow: hidden;
	transition: all 0.4s ease;
}

.about-page3 .stat-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(135deg,
		rgba(153, 69, 255, 0.1) 0%,
		rgba(0, 168, 255, 0.1) 100%);
	opacity: 0;
	transition: opacity 0.4s ease;
	z-index: 0;
}

.about-page3 .stat-card:hover::before {
	opacity: 1;
}

.about-page3 .stat-card > * {
	position: relative;
	z-index: 1;
}

.about-page3 .stat-card:hover {
	transform: translateY(-10px);
	border-color: rgba(153, 69, 255, 0.5);
	box-shadow: 
		0 25px 60px rgba(153, 69, 255, 0.3),
		0 0 40px rgba(153, 69, 255, 0.2);
}

.about-page3 .stat-label {
	font-size: 28px;
	color: var(--text-primary);
	text-transform: uppercase;
	letter-spacing: 2px;
	margin-bottom: 25px;
	font-weight: 700;
	background: linear-gradient(135deg, 
		var(--accent-cyan) 0%, 
		var(--accent-purple) 50%, 
		var(--accent-blue) 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	padding-bottom: 15px;
	border-bottom: 3px solid rgba(153, 69, 255, 0.3);
	display: inline-block;
}

.about-page3 .stat-card:hover .stat-label {
	border-bottom-color: var(--accent-purple);
}

.about-page3 .stat-description {
	font-size: 16px;
	color: rgba(255, 255, 255, 0.85);
	line-height: 1.9;
	padding: 0;
	text-align: justify;
}

/* Stats Section with Content */
.stats-section {
	padding: 70px 30px;
	background: linear-gradient(180deg,
			var(--primary-black) 0%,
			var(--carbon-dark) 50%,
			var(--primary-black) 100%);
	position: relative;
}

.stats-grid {
	max-width: 1200px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 40px;
}

.stat-card {
	background: rgba(255, 255, 255, 0.08);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	border: 1px solid rgba(255, 255, 255, 0.15);
	border-radius: 16px;
	padding: 40px 30px;
	text-align: center;
	position: relative;
	overflow: visible;
	transition: all 0.3s ease;
	box-shadow: 
		0 4px 20px rgba(0, 0, 0, 0.15);
}

/* Removed excessive gradient animations */

.stat-card > * {
	position: relative;
	z-index: 1;
}

.stat-card:hover {
	transform: translateY(-5px);
	border-color: rgba(255, 255, 255, 0.25);
	background: rgba(255, 255, 255, 0.12);
	box-shadow: 
		0 8px 30px rgba(0, 0, 0, 0.25);
}

.stat-icon {
	width: 80px;
	height: 80px;
	background: linear-gradient(135deg, var(--accent-purple), var(--accent-blue));
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 20px;
	font-size: 36px;
	color: var(--text-primary);
	box-shadow: 0 10px 25px rgba(153, 69, 255, 0.3);
}

.stat-number {
	font-size: 48px;
	font-weight: 900;
	color: var(--text-primary);
	margin-bottom: 10px;
	font-family: 'Orbitron', monospace;
}

.stat-label {
	font-size: 20px;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 18px;
    font-weight: 700;
    line-height: 1.4;
	transition: color 0.3s ease;
}

.stat-card:hover .stat-label {
	color: var(--accent-cyan);
}

.stat-description {
	font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    padding: 0 5px;
	font-weight: 400;
	transition: color 0.3s ease;
}

.stat-card:hover .stat-description {
	color: rgba(255, 255, 255, 0.9);
}

/* Enhanced Skills Section - Technical Arsenal */
.skills-section {
	padding: 120px 30px;
	background: linear-gradient(180deg,
		var(--primary-black) 0%,
		var(--carbon-dark) 50%,
		var(--primary-black) 100%);
	position: relative;
	overflow: hidden;
}

.skills-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: 
		radial-gradient(circle at 20% 30%, rgba(153, 69, 255, 0.05) 0%, transparent 50%),
		radial-gradient(circle at 80% 70%, rgba(0, 168, 255, 0.05) 0%, transparent 50%);
	z-index: 0;
}

.skills-section > * {
	position: relative;
	z-index: 1;
}

.skills-container {
	max-width: 1200px;
	margin: 0 auto;
}

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

.section-title {
	font-size: 48px;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: 4px;
	margin-bottom: 20px;
	background: linear-gradient(135deg, 
		var(--text-primary) 0%,
		var(--accent-cyan) 25%,
		var(--accent-purple) 50%,
		var(--accent-blue) 75%,
		var(--text-primary) 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	background-size: 200% 200%;
	animation: gradientShift 8s ease infinite;
	text-shadow: 0 0 30px rgba(153, 69, 255, 0.3);
	position: relative;
}

@keyframes gradientShift {
	0%, 100% { background-position: 0% 50%; }
	50% { background-position: 100% 50%; }
}

.section-subtitle {
	color: var(--text-secondary);
	font-size: 18px;
	max-width: 600px;
	margin: 0 auto;
}

/* Unique Services Cards Grid - Modern Professional Design */
.skills-hexagon-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 30px;
	margin-top: 60px;
	max-width: 1400px;
	margin-left: auto;
	margin-right: auto;
	padding: 0 20px;
}

/* More Services Button */
.more-services-wrapper {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-top: 50px;
	padding: 20px 0;
}

.more-services-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	padding: 16px 40px;
	background: linear-gradient(135deg, 
		var(--accent-purple) 0%,
		var(--accent-blue) 100%);
	border: 2px solid rgba(153, 69, 255, 0.5);
	border-radius: 12px;
	color: #ffffff;
	font-size: 16px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1.5px;
	text-decoration: none;
	transition: all 0.4s cubic-bezier(0.4, 0.0, 0.2, 1);
	box-shadow: 
		0 8px 25px rgba(153, 69, 255, 0.4),
		0 0 20px rgba(153, 69, 255, 0.2);
	position: relative;
	overflow: hidden;
}

.more-services-btn::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg,
		transparent,
		rgba(255, 255, 255, 0.3),
		transparent);
	transition: left 0.5s ease;
}

.more-services-btn:hover::before {
	left: 100%;
}

.more-services-btn:hover {
	transform: translateY(-3px);
	box-shadow: 
		0 12px 35px rgba(153, 69, 255, 0.5),
		0 0 30px rgba(153, 69, 255, 0.3);
	border-color: var(--accent-purple);
	gap: 15px;
}

.more-services-btn:active {
	transform: translateY(-1px);
}

.more-services-btn i {
	transition: transform 0.4s ease;
	font-size: 14px;
}

.more-services-btn:hover i {
	transform: translateX(5px);
}

.skill-hexagon {
	width: 100%;
	height: 420px;
	position: relative;
	cursor: pointer;
	transition: all 0.5s cubic-bezier(0.4, 0.0, 0.2, 1);
	perspective: 1000px;
	opacity: 0;
	transform: translateY(30px);
	animation: fadeInUpCard 0.6s ease forwards;
}

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

.skill-hexagon:nth-child(1) { animation-delay: 0.1s; }
.skill-hexagon:nth-child(2) { animation-delay: 0.2s; }
.skill-hexagon:nth-child(3) { animation-delay: 0.3s; }
.skill-hexagon:nth-child(4) { animation-delay: 0.4s; }
.skill-hexagon:nth-child(5) { animation-delay: 0.5s; }
.skill-hexagon:nth-child(6) { animation-delay: 0.6s; }
.skill-hexagon:nth-child(n+7) { animation-delay: 0.7s; }

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

/* Add subtle glow effect on hover */
.skill-hexagon::before {
	content: '';
	position: absolute;
	top: -50%;
	left: -50%;
	width: 200%;
	height: 200%;
	background: radial-gradient(circle,
		rgba(153, 69, 255, 0.05) 0%,
		transparent 70%);
	opacity: 0;
	transition: opacity 0.5s ease;
	pointer-events: none;
	z-index: 0;
}

.skill-hexagon:hover::before {
	opacity: 0.5;
}

.hexagon-inner {
	width: 100%;
	height: 100%;
	position: relative;
	overflow: hidden;
	border-radius: 12px;
	background: #ffffff;
	border: 1px solid rgba(0, 0, 0, 0.08);
	box-shadow: 
		0 2px 8px rgba(0, 0, 0, 0.08),
		0 1px 3px rgba(0, 0, 0, 0.05);
	transition: all 0.3s ease;
	display: flex;
	flex-direction: column;
}

/* Decorative corner accent - removed for clean white card design */
.hexagon-inner::after {
	display: none;
}

.skill-hexagon:hover .hexagon-inner {
	border-color: rgba(153, 69, 255, 0.2);
	background: #ffffff;
	box-shadow: 
		0 8px 24px rgba(0, 0, 0, 0.12),
		0 4px 8px rgba(0, 0, 0, 0.08);
	transform: translateY(-4px);
}

.skill-hexagon:hover .hexagon-inner::after {
	opacity: 0.6;
	width: 70px;
	height: 70px;
}

.hexagon-image-wrapper {
	width: 100%;
	height: 280px;
	overflow: hidden;
	position: relative;
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	border-radius: 12px 12px 0 0;
}

/* Professional Image Overlay Effect - removed for clean design */
.hexagon-image-wrapper::before,
.hexagon-image-wrapper::after {
	display: none;
}

.hexagon-image {
	width: 100%;
	height: 100%;
	min-height: 280px;
	object-fit: cover;
	transition: transform 0.3s ease;
	filter: brightness(1) contrast(1);
	display: block;
}

.skill-hexagon:hover .hexagon-image {
	transform: scale(1.05);
}

.hexagon-content {
	position: relative;
	width: 100%;
	flex: 1;
	padding: 24px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 12px;
	background: transparent;
	z-index: 3;
}

/* Unique Service Number Badge - removed for clean design */
.hexagon-inner::before {
	display: none;
}

.skill-hexagon:hover .hexagon-inner::before {
	background: rgba(153, 69, 255, 0.25);
	border-color: rgba(153, 69, 255, 0.5);
	color: var(--accent-purple);
	transform: scale(1.1) rotate(360deg);
	box-shadow: 0 3px 12px rgba(153, 69, 255, 0.3);
}

.skill-name-hex {
	font-size: 20px;
	font-weight: 700;
	text-transform: none;
	letter-spacing: 0.5px;
	color: #9933ff;
	margin: 0 0 12px 0;
	text-align: left;
	line-height: 1.4;
	transition: color 0.3s ease;
}

.skill-hexagon:hover .skill-name-hex {
	color: #7a1fd9;
}

.skill-description {
	font-size: 14px;
	color: #666666;
	line-height: 1.6;
	margin: 0 0 16px 0;
	flex: 1;
	text-align: left;
}

.hexagon-link {
	font-size: 15px;
	color: #0066cc;
	font-weight: 500;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	justify-content: flex-start;
	gap: 6px;
	transition: all 0.3s ease;
	text-transform: none;
	letter-spacing: 0;
	padding: 0;
	background: transparent;
	border: none;
	width: fit-content;
	margin-top: auto;
	align-self: flex-start;
	box-shadow: none;
}

.hexagon-link span {
	color: #0066cc;
}

.hexagon-link i {
	transition: transform 0.3s ease;
	font-size: 14px;
	color: #0066cc;
}

.hexagon-link:hover {
	color: #0052a3;
}

.hexagon-link:hover span,
.hexagon-link:hover i {
	color: #0052a3;
}

.hexagon-link:hover i {
	transform: translateX(3px);
}

.skill-icon-hex {
	font-size: 48px;
	margin-bottom: 15px;
	color: var(--accent-purple);
	animation: float 3s ease-in-out infinite;
}

@keyframes float {

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

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

/* Removed duplicate - using above definition */

.skill-level {
	width: 100%;
	height: 6px;
	background: var(--carbon-dark);
	border-radius: 2px;
	overflow: hidden;
	position: relative;
}

.skill-level-fill {
	height: 100%;
	background: linear-gradient(90deg, var(--accent-blue), var(--accent-purple));
	border-radius: 2px;
	position: relative;
	animation: fillLevel 2s ease-out;
}
.con-det{
	padding: 60px 30px !important;
	background: linear-gradient(180deg, 
		#ffffff 0%, 
		#ffffff 50%, 
		#f8f8f8 100%) !important;
	position: relative;
}

.con-det::before {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: auto;
	/* background: linear-gradient(180deg,
		transparent 0%,
		var(--primary-black) 100%); */
	z-index: 0;
}

.con-det > * {
	position: relative;
	z-index: 1;
}
.aboutheadimg{
	background-image: url('img/head-img.webp');
	background-size: cover;
	background-position: top;
	height: 350px;
}
.servicheadimg{
	background-image: url('img/head-img.webp');
	background-size: cover;
	background-position: top;
	height: 350px;
}
.blogsheadimg{
	background-image: url('img/head-img.webp');
	background-size: cover;
	background-position: top;
	height: 350px;
}
.contactheadimg{
	background-image: url('img/head-img.webp');
	background-size: cover;
	background-position: top;
	height: 350px;
}
/* Blog Carousel Styles */
.blog-carousel-container {
	max-width: 1200px;
	margin: 0 auto;
	position: relative;
	padding: 0 60px;
}

.blog-carousel {
	display: flex;
	overflow-x: auto;
	overflow-y: hidden;
	gap: 30px;
	scroll-behavior: smooth;
	scroll-snap-type: x mandatory;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: none; /* Firefox */
	-ms-overflow-style: none; /* IE and Edge */
}

.blog-carousel::-webkit-scrollbar {
	display: none; /* Chrome, Safari, Opera */
}

.blog-card-slide {
	flex: 0 0 calc(33.333% - 20px);
	min-width: calc(33.333% - 20px);
	scroll-snap-align: start;
	transition: transform 0.3s ease;
}

.blog-carousel-controls {
	position: absolute;
	top: 50%;
	left: 0;
	right: 0;
	transform: translateY(-50%);
	width: calc(100% + 120px);
	display: flex;
	justify-content: space-between;
	pointer-events: none;
	z-index: 10;
	margin-left: -60px;
	margin-right: -60px;
}

.blog-carousel-btn {
	width: 50px;
	height: 50px;
	background: rgba(153, 69, 255, 0.8);
	border: 2px solid rgba(255, 255, 255, 0.3);
	border-radius: 50%;
	color: #ffffff;
	font-size: 24px;
	cursor: pointer;
	transition: all 0.3s ease;
	display: flex;
	align-items: center;
	justify-content: center;
	pointer-events: all;
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
}

.blog-carousel-btn:hover {
	background: var(--accent-purple);
	border-color: var(--accent-purple);
	transform: scale(1.1);
	box-shadow: 0 5px 20px rgba(153, 69, 255, 0.5);
}

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

.blog-carousel-indicators {
	display: flex;
	justify-content: center;
	gap: 10px;
	margin-top: 30px;
}

.blog-indicator {
	width: 12px;
	height: 12px;
	background: rgba(255, 255, 255, 0.3);
	border: 1px solid rgba(255, 255, 255, 0.5);
	border-radius: 50%;
	cursor: pointer;
	transition: all 0.3s ease;
}

.blog-indicator.active {
	background: var(--accent-purple);
	border-color: var(--accent-purple);
	transform: scale(1.3);
	box-shadow: 0 0 10px rgba(153, 69, 255, 0.5);
}

.blogsec .stat-card{
	padding: 22px 15px;
	text-align: left;
	height: auto;
	min-height: auto;
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.blogsec .stat-card .stat-label{
	margin-bottom: 0;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.blogsec .stat-card img{
	border-radius: 12px;
	margin-bottom: 0;
	height: 200px;
	min-height: 200px;
	object-fit: cover;
	width: 100%;
	transition: transform 0.4s ease, filter 0.4s ease;
	filter: brightness(0.9);
	display: block;
}

.blogsec .stat-card:hover img{
	transform: scale(1.05);
	filter: brightness(1);
}

.lik1{
	font-size: 16px;
	font-weight: 600;
	color: var(--text-primary);
	line-height: 1.4;
	transition: color 0.3s ease;
	display: block;
	margin-top: 0;
}

.blogsec .stat-card:hover .lik1{
	color: var(--accent-cyan);
}

.blogsec .stat-card .stat-description{
	font-size: 14px;
	line-height: 1.5;
	color: rgba(255, 255, 255, 0.75);
	margin-bottom: 0;
	flex: 0;
	max-height: 60px;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
}

.blogsec .stat-card a{
	text-decoration: none;
	color: var(--accent-purple);
	margin-left: 0;
	font-size: 14px;
	font-weight: 600;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	transition: all 0.3s ease;
	padding: 8px 0;
	width: fit-content;
}

.blogsec .stat-card a:hover{
	color: var(--accent-cyan);
	transform: translateX(5px);
	gap: 10px;
}

.blogsec .stat-card a i{
	transition: transform 0.3s ease;
	font-size: 12px;
}

.blogsec .stat-card a:hover i{
	transform: translateX(3px);
}
.digitalblog .section-header{
	margin: auto 100px;
}
.digitalblog .section-header{
	text-align: left;
}
.digitalblog .section-header h2{
	font-size: 20px;
    margin-top: 15px;
    margin-bottom: 15px;
}
.digitalblog .section-header p,.digitalblog .section-header b,.digitalblog .section-header ul li{
	margin: 0%;
	max-width: 100%;
	font-size: 21px;
    line-height: 45px;
	color: rgb(184, 175, 175);
}
.blogsec .stats-grid .stat-card p{
	margin-bottom: 10px;
}
.con-det .skills-container{
	color: black;
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
}
.con-det .skills-container .colu{
	width: 50%;
	flex: 1 1 300px;
}
.con-det .skills-container .colu h2{
	font-size: 28px;
    color: #1a1a1a;
    -webkit-text-fill-color: #1a1a1a;
    word-spacing: 0px;
    letter-spacing: 1px;
	font-weight: 700;
	text-transform: uppercase;
	margin-bottom: 15px;
	line-height: 1.3;
}
.con-det .skills-container .column2{
	gap: 20px;
    display: flex;
	justify-content: center;
	flex-wrap: wrap;
}
.con-det .skills-container .column2 button{
	padding: 15px 20px;
    font-weight: 700;
    letter-spacing: 1px;
    font-size: 15px;
    border-radius: 9px;
    border: none;
    background-color: orangered;
    color: wheat;
	cursor: pointer;
	min-height: 44px; /* Touch-friendly */
	transition: all 0.3s ease;
}
.con-det .skills-container .column2 button:hover{
    background-color: rgb(194, 53, 2);
	transform: translateY(-2px);
	box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}
.con-det .skills-container .colu p{
	font-size: 18px;
	/* color: #ffffff; */
	font-weight: 500;
	line-height: 1.6;
}

@keyframes fillLevel {
	0% {
		width: 0;
	}
}

.skill-percentage-hex {
	font-size: 20px;
	color: var(--text-secondary);
	margin-top: 8px;
	font-weight: 600;
}

/* 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(--carbon-medium);
	border: 1px solid var(--metal-dark);
	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(153, 69, 255, 0.1);
	border-color: var(--accent-purple);
	color: var(--text-primary);
}

.category-tab.active {
	background: linear-gradient(135deg, var(--accent-purple), var(--accent-blue));
	border-color: var(--accent-purple);
	color: var(--text-primary);
	box-shadow: 0 5px 20px rgba(153, 69, 255, 0.3);
}

/* Contact Section */
.contact-section {
	padding: 120px 30px;
	background: linear-gradient(180deg,
			var(--carbon-dark) 0%,
			var(--primary-black) 100%);
	position: relative;
}

.contact-container {
	max-width: 1200px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: start;
}

.contact-info {
	padding: 40px;
	background: linear-gradient(135deg,
			rgba(42, 42, 42, 0.3),
			rgba(26, 26, 26, 0.5));
	border: 1px solid var(--metal-dark);
	border-radius: 20px;
}

.info-item {
	display: flex;
	align-items: center;
	margin-bottom: 30px;
	padding: 20px;
	background: var(--carbon-dark);
	border-radius: 10px;
	transition: all 0.3s ease;
	text-decoration: none;
	cursor: pointer;
	position: relative;
	overflow: hidden;
}

.info-item::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg,
			transparent,
			rgba(153, 69, 255, 0.1),
			transparent);
	transition: left 0.5s ease;
}

.info-item:hover::before {
	left: 100%;
}

.info-item:hover {
	transform: translateX(10px);
	background: rgba(153, 69, 255, 0.1);
	box-shadow: 0 5px 20px rgba(153, 69, 255, 0.2);
}

a.info-item {
	color: inherit;
	text-decoration: none;
}

.info-icon {
	width: 50px;
	height: 50px;
	background: linear-gradient(135deg, var(--accent-purple), var(--accent-blue));
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 20px;
	color: var(--text-primary);
	font-size: 20px;
	flex-shrink: 0;
	transition: all 0.3s ease;
}

.info-item:hover .info-icon {
	transform: scale(1.1) rotate(10deg);
	box-shadow: 0 8px 25px rgba(153, 69, 255, 0.4);
}

.info-text h4 {
	color: var(--text-primary);
	margin-bottom: 5px;
	font-size: 16px;
	text-transform: uppercase;
	letter-spacing: 1px;
	transition: all 0.3s ease;
}

.info-item:hover .info-text h4 {
	color: var(--accent-cyan);
}

.info-text p {
	color: var(--text-secondary);
	font-size: 14px;
	transition: all 0.3s ease;
}

.info-item:hover .info-text p {
	color: var(--text-primary);
}

/* Add external link indicator for clickable items */
.info-item[target="_blank"] .info-text p::after {
	content: ' ↗';
	font-size: 12px;
	opacity: 0;
	transition: opacity 0.3s ease;
}

.info-item[target="_blank"]:hover .info-text p::after {
	opacity: 1;
}

.contact-form {
	padding: 40px;
	background: linear-gradient(135deg,
			rgba(42, 42, 42, 0.3),
			rgba(26, 26, 26, 0.5));
	border: 1px solid var(--metal-dark);
	border-radius: 20px;
}

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

.form-group label {
	display: block;
	color: var(--text-secondary);
	margin-bottom: 10px;
	text-transform: uppercase;
	font-size: 12px;
	letter-spacing: 1px;
}

.form-group input,
.form-group textarea {
	width: 100%;
	padding: 15px;
	background: var(--carbon-dark);
	border: 1px solid var(--metal-dark);
	border-radius: 8px;
	color: var(--text-primary);
	font-size: 14px;
	transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
	outline: none;
	border-color: var(--accent-purple);
	box-shadow: 0 0 10px rgba(153, 69, 255, 0.2);
}

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

.submit-btn {
	width: 100%;
	padding: 15px;
	background: linear-gradient(135deg, var(--accent-purple), var(--accent-blue));
	border: none;
	border-radius: 8px;
	color: var(--text-primary);
	font-size: 16px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 2px;
	cursor: pointer;
	transition: all 0.3s ease;
	box-shadow: 0 5px 15px rgba(153, 69, 255, 0.3);
}

.submit-btn:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 25px rgba(153, 69, 255, 0.5);
}

/* Footer - Unique Modern Design */
.footer {
	padding: 90px 30px 35px;
	background: linear-gradient(180deg,
		var(--primary-black) 0%,
		var(--carbon-dark) 50%,
		#0a0a0a 100%);
	border-top: 3px solid transparent;
	border-image: linear-gradient(90deg,
		transparent,
		var(--accent-purple) 20%,
		var(--accent-blue) 50%,
		var(--accent-purple) 80%,
		transparent) 1;
	position: relative;
	overflow: hidden;
	box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.3);
}

.footer::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: 
		radial-gradient(circle at 20% 20%, rgba(153, 69, 255, 0.08) 0%, transparent 50%),
		radial-gradient(circle at 80% 80%, rgba(0, 168, 255, 0.08) 0%, transparent 50%);
	z-index: 0;
	pointer-events: none;
}

.footer::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 1px;
	background: linear-gradient(90deg,
		transparent,
		rgba(153, 69, 255, 0.5) 20%,
		rgba(0, 168, 255, 0.5) 50%,
		rgba(153, 69, 255, 0.5) 80%,
		transparent);
	animation: shimmer-line 3s ease-in-out infinite;
}

@keyframes shimmer-line {
	0%, 100% { opacity: 0.5; }
	50% { opacity: 1; }
}

.footer-content {
	max-width: 1200px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 2fr 1fr 1fr 1fr;
	gap: 50px;
	margin-bottom: 50px;
	position: relative;
	z-index: 1;
}

.footer-brand {
	display: flex;
	flex-direction: column;
	gap: 0	px;
}

.footer-logo {
	display: flex;
	align-items: center;
	margin-bottom: 20px;
	position: relative;
}

.footer-logo img {
	filter: drop-shadow(0 5px 15px rgba(153, 69, 255, 0.3));
	transition: transform 0.3s ease;
}

.footer-logo:hover img {
	transform: scale(1.05);
	filter: drop-shadow(0 8px 20px rgba(153, 69, 255, 0.5));
}

.footer-description {
	color: rgba(255, 255, 255, 0.7);
	line-height: 1.8;
	font-size: 15px;
	position: relative;
	padding-left: 20px;
	border-left: 3px solid var(--accent-purple);
}

.footer-social {
	display: flex;
	gap: 15px;
	margin-top: 20px;
}

.social-icon {
	width: 45px;
	height: 45px;
	background: rgba(42, 42, 42, 0.6);
	backdrop-filter: blur(10px);
	border: 1.5px solid rgba(255, 255, 255, 0.1);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--text-secondary);
	text-decoration: none;
	transition: all 0.4s cubic-bezier(0.4, 0.0, 0.2, 1);
	position: relative;
	overflow: hidden;
}

.social-icon::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 0;
	height: 0;
	background: radial-gradient(circle, rgba(153, 69, 255, 0.5) 0%, transparent 70%);
	transform: translate(-50%, -50%);
	transition: width 0.4s ease, height 0.4s ease;
}

.social-icon:hover::before {
	width: 100px;
	height: 100px;
}

.social-icon:hover {
	background: linear-gradient(135deg, var(--accent-purple), var(--accent-blue));
	border-color: var(--accent-purple);
	color: var(--text-primary);
	transform: translateY(-5px) rotate(5deg);
	box-shadow: 
		0 10px 25px rgba(153, 69, 255, 0.4),
		0 0 20px rgba(153, 69, 255, 0.3);
}

.footer-section {
	position: relative;
}

.footer-section h4 {
	color: var(--text-primary);
	margin-bottom: 25px;
	text-transform: uppercase;
	letter-spacing: 2px;
	font-size: 17px;
	font-weight: 700;
	position: relative;
	padding-bottom: 15px;
	background: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.footer-section h4::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 50px;
	height: 3px;
	background: linear-gradient(90deg, var(--accent-purple), var(--accent-blue));
	border-radius: 2px;
}

.footer-links {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.footer-links a {
	color: rgba(255, 255, 255, 0.75);
	text-decoration: none;
	transition: all 0.4s cubic-bezier(0.4, 0.0, 0.2, 1);
	font-size: 15px;
	position: relative;
	padding-left: 0;
	display: inline-block;
	font-weight: 500;
}

.footer-links a::before {
	content: '→';
	position: absolute;
	left: -20px;
	opacity: 0;
	transition: all 0.3s ease;
	color: var(--accent-purple);
}

.footer-links a:hover {
	color: var(--accent-cyan);
	padding-left: 25px;
	transform: translateX(8px);
	text-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}

.footer-links a:hover::before {
	opacity: 1;
	left: 0;
}

.footer-section iframe {
	border-radius: 15px;
	border: 2px solid rgba(255, 255, 255, 0.1);
	transition: all 0.3s ease;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.footer-section iframe:hover {
	border-color: rgba(153, 69, 255, 0.5);
	box-shadow: 0 15px 40px rgba(153, 69, 255, 0.2);
}

.footer-bottom {
	padding-top: 40px;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	display: flex;
	justify-content: space-between;
	align-items: center;
	max-width: 1200px;
	margin: 0 auto;
	position: relative;
	z-index: 1;
}

.footer-bottom::before {
	content: '';
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 200px;
	height: 1px;
	background: linear-gradient(90deg,
		transparent,
		rgba(153, 69, 255, 0.5),
		transparent);
}

.copyright {
	color: rgba(255, 255, 255, 0.6);
	font-size: 14px;
	display: flex;
	align-items: center;
	gap: 10px;
}

.copyright::before {
	content: '©';
	font-size: 18px;
	color: var(--accent-purple);
}

.footer-credits {
	color: rgba(255, 255, 255, 0.7);
	font-size: 15px;
	display: flex;
	align-items: center;
	gap: 10px;
	font-weight: 400;
	position: relative;
	padding: 10px 20px;
	border-radius: 25px;
	background: rgba(42, 42, 42, 0.3);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.1);
	transition: all 0.4s ease;
	flex-wrap: wrap;
	justify-content: center;
	text-align: center;
}

.footer-credits::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(135deg,
		rgba(153, 69, 255, 0.1),
		rgba(0, 168, 255, 0.1));
	border-radius: 25px;
	opacity: 0;
	transition: opacity 0.4s ease;
	z-index: 0;
}

.footer-credits:hover::before {
	opacity: 1;
}

.footer-credits:hover {
	border-color: rgba(153, 69, 255, 0.4);
	box-shadow: 0 5px 20px rgba(153, 69, 255, 0.2);
	transform: translateY(-2px);
}

.footer-credits > * {
	position: relative;
	z-index: 1;
}

.footer-credits a {
	color: #ffffff;
	text-decoration: none;
	transition: all 0.4s ease;
	position: relative;
	padding: 5px 15px;
	border-radius: 20px;
	font-weight: 600;
	background: linear-gradient(135deg,
		rgba(153, 69, 255, 0.15),
		rgba(0, 168, 255, 0.15));
	border: 1px solid rgba(153, 69, 255, 0.3);
	display: inline-block;
}

.footer-credits a::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(135deg,
		var(--accent-purple),
		var(--accent-blue));
	border-radius: 20px;
	opacity: 0;
	transition: opacity 0.4s ease;
	z-index: -1;
}

.footer-credits a::after {
	content: '';
	position: absolute;
	bottom: -2px;
	left: 15px;
	right: 15px;
	height: 2px;
	background: linear-gradient(90deg,
		transparent,
		var(--accent-purple),
		transparent);
	transform: scaleX(0);
	transition: transform 0.4s ease;
}

.footer-credits a:hover {
	color: var(--text-primary);
	transform: translateY(-2px);
	box-shadow: 0 5px 15px rgba(153, 69, 255, 0.4);
}

.footer-credits a:hover::before {
	opacity: 1;
}

.footer-credits a:hover::after {
	transform: scaleX(1);
}

/* Responsive Design */
@media (max-width: 1024px) {
	.hero {
		padding: 100px 15px 70px;
		overflow-x: hidden; /* Prevent horizontal scroll */
	}
	
	.carousel-container {
		height: 580px;
		perspective: 1000px;
		padding-top: 50px;
		width: 100%;
		max-width: 100vw;
		overflow: hidden; /* Prevent overflow */
	}
	
	.carousel {
		overflow: visible; /* Allow 3D transforms */
	}
	
	.carousel-item {
		width: 350px;
		max-width: calc(100vw - 40px); /* Prevent overflow */
		min-width: 320px;
		height: 480px;
	}

	.carousel-controls {
		bottom: -60px;
	}

	.card-image {
		height: 170px;
	}

	.card-title {
		font-size: 22px;
	}

	.card-description {
		font-size: 13px;
	}

	.philosophy-pillars {
		grid-template-columns: 1fr;
	}

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

	.footer-content {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 768px) {
	.menu-toggle {
		display: flex;
	}

	.nav-menu {
		position: fixed;
		left: -100%;
		top: 85px;
		flex-direction: column;
		background: rgba(18, 18, 18, 0.98);
		width: 100%;
		text-align: center;
		transition: 0.3s;
		padding: 40px 0;
		border-bottom: 1px solid var(--metal-dark);
		gap: 0;
	}

	.nav-menu li {
		margin: 15px 0;
	}

	.nav-menu a {
		display: block;
		padding: 15px 30px;
		font-size: 16px;
	}

	.nav-menu.active {
		left: 0;
	}

	.hero {
		padding: 90px 10px 60px;
		min-height: auto;
		overflow-x: hidden; /* Prevent horizontal scroll */
	}
	
	.carousel-container {
		height: 520px;
		perspective: 900px;
		padding-top: 40px;
		width: 100%;
		max-width: 100vw;
		overflow: hidden; /* Prevent overflow */
	}
	
	.carousel {
		overflow: visible; /* Allow 3D transforms */
	}

	.carousel-item {
		width: calc(100vw - 40px) !important; /* Use viewport width minus padding */
		max-width: 300px;
		min-width: 280px;
		height: 460px;
	}

	.carousel-item .card {
		padding: 20px;
	}

	.card-image {
		height: 150px;
		margin-bottom: 15px;
	}

	.card-title {
		font-size: 20px;
		margin-bottom: 12px;
	}

	.card-description {
		font-size: 13px;
		margin-bottom: 15px;
	}

	.card-tech {
		margin-bottom: 15px;
		gap: 6px;
	}

	.tech-badge {
		padding: 4px 10px;
		font-size: 11px;
	}

	.card-number {
		font-size: 50px;
		top: 15px;
		right: 20px;
	}

	.card-cta {
		padding: 10px 25px;
		font-size: 14px;
	}

	.carousel-controls {
		bottom: -60px;
		gap: 15px;
	}

	.carousel-btn {
		width: 50px;
		height: 50px;
		font-size: 20px;
	}

	.carousel-indicators {
		top: 20px;
		gap: 12px;
		flex-wrap: wrap;
		justify-content: center;
		max-width: 95%;
	}

	.indicator {
		width: 10px;
		height: 10px;
	}

	.philosophy-headline {
		font-size: 36px;
	}

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

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

	.skill-hexagon {
		width: 220px;
		height: 260px;
		margin: 20px 10px;
	}

	.hexagon-image-wrapper {
		height: 280px;
	}

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

	.hexagon-link {
		font-size: 12px;
		padding: 6px 12px;
	}

	.footer-content {
		grid-template-columns: 1fr;
		text-align: center;
		gap: 40px;
	}

	.footer-brand {
		text-align: center;
		align-items: center;
	}

	.footer-description {
		padding-left: 0;
		border-left: none;
		border-top: 3px solid var(--accent-purple);
		padding-top: 20px;
		margin-top: 20px;
	}

	.footer-section h4::after {
		left: 50%;
		transform: translateX(-50%);
	}

	.footer-bottom {
		flex-direction: column;
		gap: 20px;
		text-align: center;
		padding: 30px 20px 20px 20px;
	}

	.copyright {
		font-size: 13px;
		flex-wrap: wrap;
		justify-content: center;
		gap: 5px;
	}

	.footer-credits {
		font-size: 13px;
		flex-direction: column;
		gap: 12px;
		padding: 15px;
		width: 100%;
		max-width: 100%;
		text-align: center;
	}

	.footer-credits a {
		padding: 8px 12px;
		font-size: 13px;
		display: inline-block;
		word-break: break-word;
	}
	
	/* About Section Responsive */
	.about-sec {
		padding: 60px 20px 0px 20px !important;
	}
	
	.about-sec .row {
		flex-direction: column;
		gap: 30px;
	}
	
	.about-sec {
		padding: 60px 20px 60px 20px !important;
	}

	.about-sec .row .col-md-6 {
		width: 100% !important;
	}
	
	.about-sec .section-header h2 {
		font-size: 28px !important;
		text-align: center !important;
		margin-bottom: 15px;
	}
	
	.about-sec .section-header h3 {
		font-size: 20px !important;
		text-align: center !important;
		margin-bottom: 20px;
	}
	
	.about-sec .section-header p {
		font-size: 16px !important;
		line-height: 1.8 !important;
		text-align: justify !important;
		margin-bottom: 15px;
	}
	
	.about-icon-sec {
		flex-direction: row;
		text-align: left;
		padding: 20px 0px;
		gap: 15px;
	}
	
	.about-icon-sec p {
		font-size: 16px !important;
		margin-top: 0;
	}
	
	.about-icon-sec img {
		width: 48px !important;
	}

	.about-page3 {
		padding: 60px 20px !important;
	}

	.about-page3 .stats-grid {
		grid-template-columns: 1fr !important;
		gap: 30px;
	}

	.about-page3 .stat-card {
		padding: 35px 25px;
		text-align: center;
	}

	.about-page3 .stat-label {
		font-size: 24px !important;
		text-align: center;
		margin-bottom: 20px;
	}

	.about-page3 .stat-description {
		font-size: 15px !important;
		text-align: justify;
		line-height: 1.8;
	}

	.con-det .skills-container .colu h2 {
		font-size: 22px !important;
		text-align: center;
	}

	.con-det .skills-container .colu p {
		font-size: 16px !important;
		text-align: center;
	}
	
	/* Philosophy Section */
	.philosophy-subheading {
		font-size: 16px !important;
		padding: 0 10px;
	}
	
	.philosophy-pillars {
		grid-template-columns: 1fr;
		gap: 25px;
	}
	
	.pillar {
		height: auto;
	}
	
	.pillar-icon {
		height: 180px;
	}
	
	.pillar-content {
		padding: 0;
		gap: 12px;
	}
	
	.pillar-title {
		font-size: 18px !important;
		margin-bottom: 0;
		padding-bottom: 6px;
	}
	
	.pillar-description {
		font-size: 14px !important;
		line-height: 1.6;
	}
	
	.pillar-link {
		font-size: 12px;
		padding: 10px 20px;
	}
	
	.pillar::before {
		width: 40px;
		height: 40px;
		font-size: 14px;
		top: 12px;
		right: 12px;
	}
	
	/* Stats Section */
	.stats-section {
		padding: 60px 20px !important;
	}
	
	.stats-grid {
		grid-template-columns: 1fr !important;
		gap: 25px;
	}
	
	.stat-card {
		padding: 30px 20px;
	}
	
	.stat-label {
		font-size: 18px !important;
		margin-bottom: 12px;
	}
	
	.stat-description {
		font-size: 15px !important;
		line-height: 1.6;
	}
	
	/* Skills Section */
	.skills-section {
		padding: 60px 20px !important;
	}
	
	.section-header {
		margin-bottom: 40px !important;
	}

	.reviews-slider-wrapper{
		margin-top: 0px !important;
	}
	
	.section-title {
		font-size: 28px !important;
		margin-bottom: 15px;
		line-height: 1.2;
	}
	
	.section-subtitle {
		font-size: 16px !important;
		padding: 0 10px;
	}
	
	.skills-hexagon-grid {
		gap: 15px;
		margin-top: 40px;
	}
	
	/* Hide grid on mobile, show slider - BUT keep grid visible on services.html page */
	.skills-hexagon-grid:not(.services-page-grid) {
		display: none;
	}
	
	/* Show grid on services.html page for mobile */
	.services-page-grid {
		display: grid !important;
		grid-template-columns: 1fr;
		gap: 20px;
		padding: 0 10px;
		margin-top: 40px;
	}
	
	.services-carousel-container {
		display: block;
		max-width: 100%;
		margin: 40px auto 0;
		position: relative;
		padding: 0 15px;
	}
	
	/* Hide carousel on services.html page */
	.services-page-grid ~ .services-carousel-container,
	.services-page-grid + * .services-carousel-container {
		display: none !important;
	}
	
	.services-carousel {
		display: flex;
		overflow-x: auto;
		overflow-y: hidden;
		gap: 0;
		scroll-behavior: smooth;
		scroll-snap-type: x mandatory;
		-webkit-overflow-scrolling: touch;
		scrollbar-width: none;
		-ms-overflow-style: none;
		width: 100%;
	}
	
	.services-carousel::-webkit-scrollbar {
		display: none;
	}
	
	.services-carousel .skill-hexagon {
		flex: 0 0 100%;
		min-width: 100%;
		scroll-snap-align: start;
		transition: transform 0.3s ease;
		margin: 0;
		width: 100%;
	}
	
	.services-carousel-controls {
		position: relative;
		top: auto;
		left: auto;
		right: auto;
		transform: none;
		width: 100%;
		display: flex;
		justify-content: center;
		gap: 20px;
		pointer-events: all;
		z-index: 10;
		margin: 25px auto 0;
		padding: 0;
	}
	
	.services-carousel-btn {
		width: 45px;
		height: 45px;
		background: rgba(153, 69, 255, 0.8);
		border: 2px solid rgba(255, 255, 255, 0.3);
		border-radius: 50%;
		color: #ffffff;
		font-size: 22px;
		cursor: pointer;
		transition: all 0.3s ease;
		display: flex;
		align-items: center;
		justify-content: center;
		pointer-events: all;
		backdrop-filter: blur(10px);
		-webkit-backdrop-filter: blur(10px);
	}
	
	.services-carousel-btn:hover {
		background: var(--accent-purple);
		border-color: var(--accent-purple);
		transform: scale(1.1);
		box-shadow: 0 5px 20px rgba(153, 69, 255, 0.5);
	}
	
	.services-carousel-btn:active {
		transform: scale(0.95);
	}
	
	.services-carousel-indicators {
		display: flex;
		justify-content: center;
		gap: 8px;
		margin-top: 25px;
	}
	
	.services-indicator {
		width: 10px;
		height: 10px;
		background: rgba(255, 255, 255, 0.3);
		border: 1px solid rgba(255, 255, 255, 0.5);
		border-radius: 50%;
		cursor: pointer;
		transition: all 0.3s ease;
	}
	
	.services-indicator.active {
		background: var(--accent-purple);
		border-color: var(--accent-purple);
		width: 24px;
		border-radius: 5px;
	}

	.more-services-wrapper {
		margin-top: 40px;
		padding: 15px 0;
	}

	.more-services-btn {
		padding: 14px 30px;
		font-size: 14px;
		letter-spacing: 1px;
	}

	.skill-hexagon {
		width: 100%;
		height: 440px;
		margin: 0;
	}

	.hexagon-image-wrapper {
		height: 280px;
	}

	.hexagon-content {
		padding: 20px 20px 18px;
	}

	.hexagon-inner::before {
		width: 40px;
		height: 40px;
		font-size: 13px;
		top: 15px;
		right: 15px;
	}
	
	.skill-name-hex {
		font-size: 22px !important;
		letter-spacing: 1.4px;
	}

	.hexagon-link {
		font-size: 12px;
		padding: 12px 22px;
		letter-spacing: 1px;
	}
	
	/* Contact Section */
	.con-det .skills-container {
		flex-direction: column !important;
		gap: 25px;
		text-align: center;
	}
	
	.con-det .skills-container .colu {
		width: 100% !important;
	}
	
	.con-det .skills-container .colu h2 {
		font-size: 18px !important;
		margin-bottom: 10px;
	}
	
	.con-det .skills-container .colu p {
		font-size: 16px !important;
	}
	
	.con-det .skills-container .column2 {
		flex-direction: column;
		gap: 15px;
		width: 100%;
	}
	
	.con-det .skills-container .column2 button {
		width: 100%;
		padding: 18px 20px;
		font-size: 16px;
		min-height: 50px; /* Touch-friendly */
	}
	
	.con-det .skills-container .column2 a {
		width: 100%;
		display: block;
	}
	
	/* Contact Form */
	.contact-section {
		padding: 60px 20px !important;
	}
	
	.contact-container {
		grid-template-columns: 1fr !important;
		gap: 40px;
	}
	
	.contact-info {
		padding: 30px 20px;
	}
	
	.info-item {
		padding: 15px;
		margin-bottom: 20px;
	}
	
	.info-icon {
		width: 45px;
		height: 45px;
		font-size: 18px;
	}
	
	.info-text h4 {
		font-size: 14px;
	}
	
	.info-text p {
		font-size: 13px;
	}
	
	.contact-form {
		padding: 30px 20px;
	}
	
	.form-group {
		margin-bottom: 20px;
	}
	
	.form-group input,
	.form-group textarea {
		padding: 18px;
		font-size: 16px; /* Prevents zoom on iOS */
		min-height: 50px; /* Touch-friendly */
	}
	
	.submit-btn {
		padding: 18px;
		font-size: 16px;
		min-height: 50px; /* Touch-friendly */
	}
	
	/* Footer */
	.footer {
		padding: 50px 20px 20px;
	}
	
	.footer-content {
		grid-template-columns: 1fr !important;
		gap: 30px;
		margin-bottom: 30px;
	}
	
	.footer-section {
		text-align: center;
	}
	
	.footer-section iframe {
		height: 250px;
		border-radius: 10px;
	}
	
	.footer-description {
		font-size: 14px;
		line-height: 1.6;
	}
	
	.footer-links {
		align-items: center;
	}
	
	/* Header Images */
	.aboutheadimg,
	.servicheadimg,
	.blogsheadimg,
	.contactheadimg {
		height: 250px !important;
		background-position: center;
	}
	
	/* Blog Section */
	.blog-carousel-container {
		padding: 0 10px;
		max-width: 100%;
	}
	
	.blog-card-slide {
		flex: 0 0 100%;
		min-width: 100%;
		width: 100%;
	}
	
	.blog-carousel-controls {
		position: relative;
		top: auto;
		transform: none;
		margin-top: 25px;
		justify-content: center;
		gap: 15px;
	}
	
	.blogsec .stat-card {
		padding: 30px 25px !important;
		min-height: auto;
		height: auto;
		gap: 20px !important;
	}
	
	/* Blog Card Modern - Mobile Responsive */
	.blog-card-modern .blog-card-content {
		padding: 24px 20px;
		min-height: auto;
	}
	
	.blog-card-modern .blog-card-title {
		min-height: auto;
		margin-bottom: 16px;
		-webkit-line-clamp: 3;
		letter-spacing: -0.3px;
	}
	
	.blog-card-modern .blog-card-title a {
		font-size: 22px !important;
	}
	
	.blog-card-modern .blog-card-excerpt {
		font-size: 15px;
		margin-bottom: 18px;
		min-height: auto;
		-webkit-line-clamp: 4;
	}
	
	.blog-card-modern .blog-image-wrapper {
		height: 220px;
	}
	
	.blogsec .stat-card img {
		height: 200px !important;
		min-height: 200px !important;
		object-fit: cover;
		border-radius: 16px;
	}
	
	.lik1 {
		font-size: 20px !important;
		font-weight: 700;
		line-height: 1.4;
	}
	
	.blogsec .stat-card .stat-description {
		font-size: 16px !important;
		line-height: 1.5;
		max-height: 72px;
		overflow: hidden;
		text-overflow: ellipsis;
		display: -webkit-box;
		-webkit-line-clamp: 3;
		-webkit-box-orient: vertical;
	}
	
	.blogsec .stat-card .stat-label {
		font-size: 18px !important;
		margin-bottom: 15px;
		gap: 15px;
	}
	
	.blogsec .stat-card a {
		font-size: 16px !important;
		display: inline-block;
		margin-top: 15px;
		padding: 10px 0;
	}
	
	/* Navigation */
	.nav-container {
		padding: 15px 20px;
	}
	
	.logo img {
		width: 60px !important;
	}
	
	/* Card CTA Button */
	.card-cta {
		width: 100%;
		min-height: 44px; /* Touch-friendly */
	}
}

/* Extra Small Devices (320px - 480px) */
@media (max-width: 480px) {
	.philosophy-headline {
		font-size: 21px !important;
		line-height: 1.3;
		padding: 0 10px;
	}

	.philosophy-subheading{
		margin: 0 auto 60px !important;
	}
	
	.philosophy-subheading {
		font-size: 14px !important;
		padding: 0 15px;
	}
	
	.section-title {
		font-size: 21px !important;
        line-height: 27px;
	}
	
	.stats-section {
		padding: 0px 15px !important;
	}

	.con-det .skills-container .colu {
		width: 50%;
		flex: none;
	}
	
	.skills-section {
		padding: 50px 15px !important;
	}
	
	.about-sec {
		padding: 30px 10px 0px 10px !important;
	}

	.about-sec .section-header h3 {
        font-size: 17px !important;
        text-align: center !important;
        margin-bottom: 20px;
    }

	/* Footer Mobile Styles */
	.footer-bottom {
		padding: 25px 15px 15px 15px;
		gap: 15px;
	}

	.copyright {
		font-size: 12px;
		line-height: 1.5;
	}

	.footer-credits {
		font-size: 12px;
		padding: 12px;
		gap: 10px;
		width: 100%;
	}

	.footer-credits a {
		padding: 6px 10px;
		font-size: 12px;
		line-height: 1.4;
		word-break: break-word;
		text-align: center;
	}
	
	.about-sec .section-header p {
		font-size: 12px !important;
		line-height: 24px !important;
	}
	
	.stat-card {
		padding: 25px 15px;
	}
	
	.stat-label {
		font-size: 16px !important;
	}
	
	.stat-description {
		font-size: 14px !important;
	}
	
	.pillar-title {
		font-size: 18px !important;
	}
	
	.pillar-description {
		font-size: 14px !important;
	}
	
	.skills-hexagon-grid:not(.services-page-grid) {
		grid-template-columns: 1fr;
		gap: 20px;
		padding: 0 10px;
	}
	
	.services-page-grid {
		grid-template-columns: 1fr !important;
		gap: 20px !important;
		padding: 0 10px !important;
		display: grid !important;
	}

	.skill-hexagon {
		width: 100%;
        height: 440px;
        margin: 0;
	}

	.more-services-wrapper {
		margin-top: 35px;
		padding: 15px 0;
	}

	.more-services-btn {
		padding: 12px 25px;
		font-size: 13px;
		letter-spacing: 1px;
		width: 90%;
		max-width: 300px;
	}

	.hexagon-image-wrapper {
		height: 280px;
	}

	.hexagon-content {
		padding: 18px 18px 16px;
		gap: 8px;
	}

	.hexagon-inner {
		border-radius: 20px;
	}

	.hexagon-inner::before {
		width: 38px;
		height: 38px;
		font-size: 12px;
		top: 12px;
		right: 12px;
	}

	.skill-name-hex {
		font-size: 20px !important;
		letter-spacing: 1.2px;
	}

	.hexagon-link {
		font-size: 11px;
		padding: 10px 18px;
		letter-spacing: 0.8px;
	}

	.skills-hexagon-grid {
        gap: 45px;
        margin-top: 40px;
    }
	
	.skill-name-hex {
		font-size: 18px !important;
	}
	
	.contact-section {
		padding: 50px 15px !important;
	}
	
	.contact-info,
	.contact-form {
		padding: 25px 15px;
	}
	
	.footer {
		padding: 40px 15px 15px;
	}
	
	.footer-section iframe {
		height: 200px;
	}
	
	/* .aboutheadimg,
	.servicheadimg,
	.blogsheadimg,
	.contactheadimg {
		height: 200px !important;
	} */
	.aboutheadimg,
	.servicheadimg,
	.blogsheadimg,
	.contactheadimg {	
			height: 290px !important;
			background-position: top;
			background-size: contain;
	}
	.digitalblog .section-header{
		margin: 0px;
	}
	.digitalblog .section-header img{
		width: 100%;
		object-fit: cover;
	}
	.digitalblog .section-header p, .digitalblog .section-header b, .digitalblog .section-header ul li{
		line-height: 30px;
		padding: 0px;
		text-align: justify;
	}
	.about-sec .row .col-md-6{
		flex: none;
		width: 100%;	
	}
	.digitalblog{
		padding: 10px 15px !important;	
	}
	.digitalblog .section-header .section-title{
		font-size: 18px !important;
        line-height: 35px;
	}
	
	.blog-carousel-container {
		padding: 0 5px;
		max-width: 100%;
	}
	
	.blog-carousel-btn {
		width: 45px;
		height: 45px;
		font-size: 22px;
	}
	
	.blogsec .stat-card {
		padding: 25px 20px !important;
		min-height: auto;
		height: auto;
		gap: 18px !important;
	}
	
	.blogsec .stat-card img {
		height: 200px !important;
		min-height: 200px !important;
		border-radius: 14px;
	}
	
	.lik1 {
		font-size: 18px !important;
		font-weight: 700;
		line-height: 1.4;
	}
	
	.blogsec .stat-card .stat-description {
		font-size: 15px !important;
		line-height: 1.5;
		max-height: 68px;
		overflow: hidden;
		text-overflow: ellipsis;
		display: -webkit-box;
		-webkit-line-clamp: 3;
		-webkit-box-orient: vertical;
	}
	
	.blogsec .stat-card .stat-label {
		font-size: 17px !important;
		margin-bottom: 12px;
		gap: 12px;
	}
	
	.blogsec .stat-card a {
		font-size: 15px !important;
		padding: 8px 0;
		margin-top: 12px;
	}
	
	.con-det {
		padding: 40px 20px !important;
	}
	.digitalblog .section-header .section-subtitle{
		font-size: 16px !important;
		line-height: 30px;
		margin-bottom: 20px;
	}
	
	.con-det .skills-container .colu h2 {
		font-size: 16px !important;
	}
	
	.con-det .skills-container .colu p {
		font-size: 14px !important;
	}
}

/* Tablet Portrait (481px - 768px) */
@media (min-width: 481px) and (max-width: 768px) {
	.stats-grid {
		grid-template-columns: repeat(2, 1fr) !important;
		gap: 30px;
	}
	
	.philosophy-pillars {
		grid-template-columns: 1fr !important;
		gap: 25px;
	}
	
	.about-sec .row {
		flex-direction: column;
	}
	
	.about-sec .row .col-md-6 {
		width: 100% !important;
	}
	
	.skills-hexagon-grid:not(.services-page-grid) {
		justify-content: center;
	}
	
	.services-page-grid {
		justify-content: center !important;
	}
	
	.hexagon-image-wrapper {
		height: 280px;
	}
	
	.footer-content {
		grid-template-columns: repeat(2, 1fr) !important;
	}
}

@media (min-width: 481px) and (max-width: 600px) {
	.skills-hexagon-grid:not(.services-page-grid) {
		display: grid;
	}
	
	.services-page-grid {
		display: grid !important;
	}
}

/* Desktop: Hide slider, show grid */
@media (min-width: 769px) {
	.services-carousel-container {
		display: none;
	}
	
	.skills-hexagon-grid {
		display: grid;
	}
}

/* Tablet Landscape (769px - 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
	.stats-grid {
		grid-template-columns: repeat(2, 1fr) !important;
	}
	
	.philosophy-pillars {
		grid-template-columns: repeat(3, 1fr) !important;
	}
	
	.about-sec {
		padding: 80px 40px 0px 40px !important;
	}
	
	.footer-content {
		grid-template-columns: repeat(2, 1fr) !important;
	}
	
	.hexagon-image-wrapper {
		height: 280px;
	}
}

/* Touch-friendly improvements for all devices */
@media (hover: none) and (pointer: coarse) {
	button,
	a,
	.card-cta,
	.submit-btn,
	.carousel-btn,
	.indicator {
		min-height: 44px;
		min-width: 44px;
	}
@media (hover: none) and (pointer: coarse) {
	.review-dot {
		min-height: 0;
		min-width: 0;
	}
}
	
	.nav-menu a {
		min-height: 44px;
		display: flex;
		align-items: center;
		justify-content: center;
	}
}

/* ============================================
   CLIENT REVIEWS SECTION - Unique Slider Design
   ============================================ */

.reviews-section {
	padding: 120px 30px;
	background: linear-gradient(180deg,
		var(--primary-black) 0%,
		var(--carbon-dark) 50%,
		var(--primary-black) 100%);
	position: relative;
	overflow: hidden;
}

.reviews-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: 
		radial-gradient(circle at 30% 40%, rgba(153, 69, 255, 0.1) 0%, transparent 50%),
		radial-gradient(circle at 70% 60%, rgba(0, 168, 255, 0.1) 0%, transparent 50%);
	z-index: 0;
	pointer-events: none;
}

.reviews-container {
	max-width: 1200px;
	margin: 0 auto;
	position: relative;
	z-index: 1;
}

.reviews-slider-wrapper {
	position: relative;
	margin-top: 60px;
	padding: 40px 0;
	overflow: hidden;
	max-width: 100%;
}

@media (max-width: 768px) {
	.reviews-slider-wrapper {
		padding: 40px 0;
		overflow: hidden;
	}
}

.reviews-container {
	overflow: hidden;
}

.reviews-slider {
	display: flex;
	position: relative;
	gap: 30px;
	transition: transform 0.6s cubic-bezier(0.4, 0.0, 0.2, 1);
	width: 100%;
	height: auto;
	min-height: 400px;
	will-change: transform;
}

.review-card {
	flex: 0 0 calc(50% - 15px);
	min-width: calc(50% - 15px);
	height: auto;
	transition: all 0.4s ease;
	opacity: 1;
	position: relative;
}

.review-card-inner {
	background: linear-gradient(135deg,
		rgba(255, 255, 255, 0.1) 0%,
		rgba(255, 255, 255, 0.05) 100%);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	border: 2px solid rgba(255, 255, 255, 0.15);
	border-radius: 25px;
	padding: 35px;
	height: 100%;
	min-height: 380px;
	display: flex;
	flex-direction: column;
	position: relative;
	overflow: hidden;
	box-shadow: 
		0 15px 40px rgba(0, 0, 0, 0.3),
		inset 0 1px 0 rgba(255, 255, 255, 0.1);
	transition: all 0.4s cubic-bezier(0.4, 0.0, 0.2, 1);
	cursor: pointer;
}

.review-card-inner::before {
	content: '';
	position: absolute;
	top: -50%;
	left: -50%;
	width: 200%;
	height: 200%;
	background: radial-gradient(circle, rgba(153, 69, 255, 0.1) 0%, transparent 70%);
	opacity: 0;
	transition: opacity 0.4s ease;
}

.review-card-inner:hover::before {
	opacity: 1;
}

.review-card-inner:hover {
	border-color: rgba(153, 69, 255, 0.5);
	box-shadow: 
		0 25px 60px rgba(153, 69, 255, 0.3),
		0 0 40px rgba(153, 69, 255, 0.2),
		inset 0 1px 0 rgba(255, 255, 255, 0.2);
	transform: translateY(-5px);
}

.review-header {
	display: flex;
	align-items: center;
	gap: 20px;
	margin-bottom: 25px;
}

.review-avatar {
	width: 65px;
	height: 65px;
	background: linear-gradient(135deg, var(--accent-purple), var(--accent-blue));
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 28px;
	box-shadow: 
		0 8px 25px rgba(153, 69, 255, 0.4),
		inset 0 2px 10px rgba(255, 255, 255, 0.2);
	flex-shrink: 0;
	transition: transform 0.3s ease;
}

.review-card-inner:hover .review-avatar {
	transform: scale(1.1) rotate(5deg);
}

.review-info {
	flex: 1;
}

.review-name {
	font-size: 20px;
	font-weight: 700;
	color: var(--text-primary);
	margin-bottom: 5px;
	text-transform: capitalize;
	transition: color 0.3s ease;
}

.review-card-inner:hover .review-name {
	color: var(--accent-cyan);
}

.review-role {
	font-size: 13px;
	color: rgba(255, 255, 255, 0.6);
	text-transform: uppercase;
	letter-spacing: 1px;
}

.review-rating {
	font-size: 18px;
	margin-bottom: 20px;
	letter-spacing: 2px;
	filter: drop-shadow(0 2px 4px rgba(255, 215, 0, 0.3));
}

.review-text {
	font-size: 16px;
	line-height: 1.8;
	color: rgba(255, 255, 255, 0.85);
	flex: 1;
	font-style: italic;
	position: relative;
	padding: 0 10px;
	min-height: 100px;
	display: flex;
	align-items: flex-start;
	transition: color 0.3s ease;
}

.review-card-inner:hover .review-text {
	color: rgba(255, 255, 255, 0.95);
}

.review-quote-icon {
	position: absolute;
	top: -10px;
	left: -10px;
	font-size: 80px;
	color: rgba(153, 69, 255, 0.2);
	font-family: serif;
	line-height: 1;
	z-index: 0;
}

.reviews-controls {
	display: flex;
	justify-content: center;
	gap: 20px;
	margin-top: 40px;
	position: relative;
	z-index: 10;
}

.review-btn {
	width: 60px;
	height: 60px;
	background: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(10px);
	border: 2px solid rgba(255, 255, 255, 0.2);
	border-radius: 50%;
	color: var(--text-primary);
	font-size: 20px;
	cursor: pointer;
	transition: all 0.4s ease;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	overflow: hidden;
}

.review-btn::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 0;
	height: 0;
	background: radial-gradient(circle, rgba(153, 69, 255, 0.5) 0%, transparent 70%);
	transform: translate(-50%, -50%);
	transition: width 0.4s ease, height 0.4s ease;
}

.review-btn:hover::before {
	width: 100px;
	height: 100px;
}

.review-btn:hover {
	background: linear-gradient(135deg, var(--accent-purple), var(--accent-blue));
	border-color: var(--accent-purple);
	transform: scale(1.1) rotate(5deg);
	box-shadow: 
		0 10px 30px rgba(153, 69, 255, 0.5),
		0 0 20px rgba(153, 69, 255, 0.3);
}

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

.reviews-dots {
	display: flex;
	justify-content: center;
	gap: 12px;
	margin-top: 30px;
	position: relative;
	z-index: 10;
}

.review-dot {
	width: 12px;
	height: 12px;
	background: rgba(255, 255, 255, 0.3);
	border: 2px solid rgba(255, 255, 255, 0.2);
	border-radius: 50%;
	cursor: pointer;
	transition: all 0.3s ease;
	padding: 0;
}

.review-dot:hover {
	background: rgba(153, 69, 255, 0.5);
	border-color: var(--accent-purple);
	transform: scale(1.3);
}

.review-dot.active {
	background: linear-gradient(135deg, var(--accent-purple), var(--accent-blue));
	border-color: var(--accent-purple);
	width: 35px;
	border-radius: 6px;
	box-shadow: 0 0 15px rgba(153, 69, 255, 0.5);
}

/* Responsive Reviews Section */
@media (max-width: 1024px) {
	.review-card {
		flex: 0 0 calc(50% - 15px);
		min-width: calc(50% - 15px);
	}
}

@media (max-width: 768px) {
	.reviews-section {
		padding: 80px 20px;
	}
	
	.blogsec {
		padding: 10px 10px !important;
	}
	
	.digitalblog {
		padding: 60px 10px !important;
	}
	
	.digitalblog .section-header {
		margin: auto 10px !important;
		padding: 0 10px;
	}

	.reviews-slider {
		gap: 0;
		min-height: auto;
		overflow: visible;
		width: 100%;
	}

	.review-card {
		flex: 0 0 100%;
		min-width: 100%;
		width: 100%;
		box-sizing: border-box;
	}

	.review-card-inner {
		padding: 25px 20px;
		min-height: 350px;
	}

	.review-avatar {
		width: 55px;
		height: 55px;
		font-size: 24px;
	}

	.review-name {
		font-size: 18px;
	}

	.review-text {
		font-size: 14px;
		line-height: 1.7;
		min-height: 120px;
	}

	.review-btn {
		width: 50px;
		height: 50px;
		font-size: 18px;
	}

	.reviews-controls {
		margin-top: 30px;
	}
}

@media (max-width: 480px) {
	.reviews-slider {
		gap: 0;
	}

	.review-card {
		flex: 0 0 100%;
		min-width: 100%;
	}

	.review-card-inner {
		padding: 25px 20px;
		border-radius: 20px;
		min-height: 320px;
	}

	.review-header {
		flex-direction: column;
		text-align: center;
		gap: 15px;
		margin-bottom: 20px;
	}

	.review-avatar {
		width: 55px;
		height: 55px;
		font-size: 24px;
	}

	.review-name {
		font-size: 18px;
	}

	.review-text {
		font-size: 14px;
		line-height: 1.7;
		min-height: 140px;
		padding: 0 10px;
	}

	.review-quote-icon {
		font-size: 60px;
		top: -5px;
		left: -5px;
	}
}

/* ============================================
   UNIQUE PAGE DESIGNS - Enhanced UI Elements
   ============================================ */

/* About Page - Unique Hero Section */
.about-hero-section {
	position: relative;
	padding: 150px 30px 80px;
	background: linear-gradient(135deg, 
		rgba(153, 69, 255, 0.1) 0%, 
		rgba(0, 168, 255, 0.05) 50%, 
		rgba(0, 255, 136, 0.1) 100%);
	overflow: hidden;
}

.about-hero-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: 
		radial-gradient(circle at 20% 50%, rgba(153, 69, 255, 0.15) 0%, transparent 50%),
		radial-gradient(circle at 80% 80%, rgba(0, 168, 255, 0.15) 0%, transparent 50%);
	animation: pulse-glow 8s ease-in-out infinite;
}

@keyframes pulse-glow {
	0%, 100% { opacity: 1; }
	50% { opacity: 0.7; }
}

.about-hero-content {
	max-width: 1200px;
	margin: 0 auto;
	text-align: center;
	position: relative;
	z-index: 2;
}

.about-hero-title {
	font-size: 64px;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: 4px;
	margin-bottom: 30px;
	background: linear-gradient(135deg,
		var(--accent-cyan) 0%,
		var(--accent-purple) 25%,
		var(--accent-blue) 50%,
		var(--accent-green) 75%,
		var(--accent-cyan) 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	background-size: 200% 200%;
	animation: gradientFlow 5s ease infinite;
	line-height: 1.2;
}

.about-hero-subtitle {
	font-size: 24px;
	color: var(--text-secondary);
	max-width: 800px;
	margin: 0 auto 50px;
	line-height: 1.8;
}

/* Services Page - Enhanced Grid Cards */
.services-page-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: 30px;
	margin-top: 60px;
}

.service-card-enhanced {
	background: linear-gradient(135deg,
		rgba(42, 42, 42, 0.6),
		rgba(26, 26, 26, 0.8));
	border: 2px solid var(--metal-dark);
	border-radius: 20px;
	padding: 40px 30px;
	position: relative;
	overflow: hidden;
	transition: all 0.4s cubic-bezier(0.4, 0.0, 0.2, 1);
	cursor: pointer;
}

.service-card-enhanced::before {
	content: '';
	position: absolute;
	top: -50%;
	left: -50%;
	width: 200%;
	height: 200%;
	background: radial-gradient(circle, rgba(153, 69, 255, 0.1) 0%, transparent 70%);
	opacity: 0;
	transition: opacity 0.4s ease;
}

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

.service-card-enhanced:hover {
	transform: translateY(-10px) scale(1.02);
	border-color: var(--accent-purple);
	box-shadow: 
		0 20px 60px rgba(153, 69, 255, 0.3),
		0 0 40px rgba(153, 69, 255, 0.1);
}

.service-icon-wrapper {
	width: 80px;
	height: 80px;
	margin: 0 auto 25px;
	background: linear-gradient(135deg, var(--accent-purple), var(--accent-blue));
	border-radius: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 36px;
	position: relative;
	overflow: hidden;
}

.service-icon-wrapper::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 ease, height 0.6s ease;
}

.service-card-enhanced:hover .service-icon-wrapper::after {
	width: 200px;
	height: 200px;
}

.service-card-title {
	font-size: 24px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 2px;
	margin-bottom: 15px;
	color: var(--text-primary);
	text-align: center;
}

.service-card-description {
	color: var(--text-secondary);
	line-height: 1.8;
	text-align: center;
	font-size: 16px;
}

/* Blogs Page - Modern Card Design */
.blog-card-modern {
	background: linear-gradient(135deg,
		rgba(42, 42, 42, 0.5),
		rgba(26, 26, 26, 0.7));
	border: 1px solid var(--metal-dark);
	border-radius: 25px;
	overflow: hidden;
	transition: all 0.4s ease;
	position: relative;
	cursor: pointer;
}

.blog-card-modern::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(135deg,
		rgba(153, 69, 255, 0.05),
		rgba(0, 168, 255, 0.05));
	opacity: 0;
	transition: opacity 0.4s ease;
}

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

.blog-card-modern:hover {
	transform: translateY(-8px);
	border-color: var(--accent-purple);
	box-shadow: 0 25px 50px rgba(153, 69, 255, 0.25);
}

.blog-image-wrapper {
	position: relative;
	overflow: hidden;
	background: var(--carbon-dark);
}

.blog-image-wrapper img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.6s cubic-bezier(0.4, 0.0, 0.2, 1);
	filter: brightness(0.8);
}

.blog-card-modern:hover .blog-image-wrapper img {
	transform: scale(1.15);
	filter: brightness(1);
}

.blog-card-content {
	padding: 22px 15px;
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	min-height: 220px;
}

.blog-card-title {
	font-weight: 700;
	margin-bottom: 10px;
	line-height: 1.4;
	color: var(--text-primary);
	transition: color 0.3s ease;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	letter-spacing: -0.5px;
}

.blog-card-title a {
	font-size: 17px !important;
	color: inherit;
	text-decoration: none;
	display: block;
}

.blog-card-title a:hover {
	color: var(--accent-cyan);
}

.blog-card-modern:hover .blog-card-title {
	color: var(--accent-cyan);
}

.blog-card-excerpt {
	color: var(--text-secondary);
	line-height: 1.8;
	margin-bottom: 24px;
	font-size: 16px;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
	min-height: 86px;
	opacity: 0.9;
}

.blog-read-more {
	color: var(--accent-purple);
	text-decoration: none;
	font-weight: 600;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	transition: all 0.3s ease;
	text-transform: uppercase;
	letter-spacing: 1px;
	font-size: 14px;
	margin-top: auto;
	padding-top: 8px;
}

.blog-read-more:hover {
	color: var(--accent-cyan);
	gap: 12px;
	transform: translateX(4px);
}

.blog-read-more i {
	transition: transform 0.3s ease;
}

.blog-read-more:hover i {
	transform: translateX(5px);
}

/* Hide blog-card-footer - Removed as per user request */
.blog-card-footer {
	display: none !important;
}

/* Contact Page - Interactive Form Design */
.contact-page-hero {
	padding: 150px 30px 100px;
	background: linear-gradient(135deg,
		rgba(153, 69, 255, 0.08) 0%,
		rgba(0, 168, 255, 0.05) 50%,
		rgba(0, 255, 136, 0.08) 100%);
	text-align: center;
	position: relative;
	overflow: hidden;
}

.contact-page-hero::before {
	content: '';
	position: absolute;
	top: -50%;
	left: -50%;
	width: 200%;
	height: 200%;
	background: radial-gradient(circle, rgba(153, 69, 255, 0.1) 0%, transparent 70%);
	animation: rotate-gradient 20s linear infinite;
}

@keyframes rotate-gradient {
	0% { transform: rotate(0deg); }
	100% { transform: rotate(360deg); }
}

.contact-hero-title {
	font-size: 56px;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: 3px;
	margin-bottom: 20px;
	background: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	position: relative;
	z-index: 2;
}

.contact-hero-subtitle {
	font-size: 20px;
	color: var(--text-secondary);
	max-width: 600px;
	margin: 0 auto;
	position: relative;
	z-index: 2;
}

.contact-form-enhanced {
	background: linear-gradient(135deg,
		rgba(42, 42, 42, 0.4),
		rgba(26, 26, 26, 0.6));
	border: 2px solid var(--metal-dark);
	border-radius: 25px;
	padding: 50px 40px;
	position: relative;
	overflow: hidden;
}

.contact-form-enhanced::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg,
		transparent,
		rgba(153, 69, 255, 0.1),
		transparent);
	animation: shimmer 3s infinite;
}

@keyframes shimmer {
	0% { left: -100%; }
	100% { left: 100%; }
}

.form-group-enhanced {
	margin-bottom: 30px;
	position: relative;
}

.form-group-enhanced label {
	display: block;
	color: var(--text-secondary);
	margin-bottom: 12px;
	text-transform: uppercase;
	font-size: 13px;
	letter-spacing: 1.5px;
	font-weight: 600;
	transition: color 0.3s ease;
}

.form-group-enhanced input:focus + label,
.form-group-enhanced textarea:focus + label {
	color: var(--accent-purple);
}

.form-group-enhanced input,
.form-group-enhanced textarea {
	width: 100%;
	padding: 18px 20px;
	background: rgba(26, 26, 26, 0.8);
	border: 2px solid var(--metal-dark);
	border-radius: 12px;
	color: var(--text-primary);
	font-size: 16px;
	transition: all 0.3s ease;
	font-family: inherit;
}

.form-group-enhanced input:focus,
.form-group-enhanced textarea:focus {
	outline: none;
	border-color: var(--accent-purple);
	background: rgba(26, 26, 26, 0.95);
	box-shadow: 
		0 0 20px rgba(153, 69, 255, 0.2),
		inset 0 0 20px rgba(153, 69, 255, 0.05);
	transform: translateY(-2px);
}

.form-group-enhanced textarea {
	resize: vertical;
	min-height: 150px;
	font-family: inherit;
}

.submit-btn-enhanced {
	width: 100%;
	padding: 18px 30px;
	background: linear-gradient(135deg, var(--accent-purple), var(--accent-blue));
	border: none;
	border-radius: 12px;
	color: var(--text-primary);
	font-size: 18px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 2px;
	cursor: pointer;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
	box-shadow: 0 8px 25px rgba(153, 69, 255, 0.3);
}

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

.submit-btn-enhanced:hover::before {
	width: 300px;
	height: 300px;
}

.submit-btn-enhanced:hover {
	transform: translateY(-3px);
	box-shadow: 0 12px 35px rgba(153, 69, 255, 0.5);
}

.submit-btn-enhanced:active {
	transform: translateY(-1px);
}

/* Blog Detail Page - Modern Premium Design */
.blog-detail-container {
	max-width: 1000px;
	margin: 0 auto;
	padding: 100px 30px 80px;
	background: transparent;
}

.blog-detail-header {
	text-align: center;
	margin-bottom: 50px;
	padding-bottom: 30px;
	position: relative;
}

.blog-detail-header::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 120px;
	height: 3px;
	background: linear-gradient(90deg,
		rgba(153, 69, 255, 0.3) 0%,
		rgba(153, 69, 255, 0.8) 50%,
		rgba(153, 69, 255, 0.3) 100%);
	border-radius: 2px;
}

.blog-detail-title {
	font-size: 42px;
	font-weight: 800;
	line-height: 1.35;
	margin-bottom: 25px;
	color: #ffffff;
	letter-spacing: -0.5px;
}

.blog-detail-meta {
	color: #ffffff;
	font-size: 14px;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 25px;
	flex-wrap: wrap;
	margin-top: 20px;
}

.blog-detail-meta span {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 8px 16px;
	background: rgba(153, 69, 255, 0.08);
	border-radius: 20px;
	transition: all 0.3s ease;
	color: #ffffff;
}

.blog-detail-meta span:hover {
	background: rgba(153, 69, 255, 0.15);
	transform: translateY(-2px);
}

.blog-detail-meta i {
	color: #ffffff;
	font-size: 13px;
}

.blog-detail-content {
	color: #ffffff;
	line-height: 1.85;
	font-size: 17px;
	margin-top: 40px;
}

.blog-detail-content img {
	width: 100%;
	max-width: 900px;
	border-radius: 20px;
	margin: 40px auto;
	display: block;
	box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15),
		0 5px 15px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s ease;
}

.blog-detail-content img:hover {
	transform: scale(1.02);
}

.blog-detail-content p {
	margin-bottom: 24px;
	color: #ffffff;
	font-size: 17px;
	line-height: 1.85;
}

.blog-detail-content h2 {
	font-size: 32px;
	font-weight: 700;
	margin: 50px 0 25px;
	color: #ffffff;
	border-left: 4px solid #9B59B6;
	padding-left: 20px;
	line-height: 1.4;
	letter-spacing: -0.3px;
}

.blog-detail-content h3 {
	font-size: 26px;
	font-weight: 600;
	margin: 40px 0 20px;
	color: #ffffff;
	line-height: 1.4;
	letter-spacing: -0.2px;
}

.blog-detail-content ul,
.blog-detail-content ol {
	margin: 25px 0;
	padding-left: 35px;
}

.blog-detail-content li {
	margin-bottom: 14px;
	line-height: 1.85;
	color: #ffffff;
}

.blog-detail-content strong {
	color: #ffffff;
	font-weight: 600;
}

.blog-detail-content a {
	color: #9B59B6;
	text-decoration: none;
	border-bottom: 2px solid rgba(153, 69, 255, 0.3);
	transition: all 0.3s ease;
	font-weight: 500;
}

.blog-detail-content a:hover {
	color: #00A8FF;
	border-bottom-color: rgba(0, 168, 255, 0.5);
}

/* Blog Featured Image */
.blog-featured-image-wrapper {
	margin: 40px 0;
	position: relative;
	overflow: hidden;
	border-radius: 20px;
}

.blog-featured-image {
	width: 100%;
	max-width: 100%;
	height: auto;
	display: block;
	border-radius: 20px;
	transition: transform 0.4s ease;
}

.blog-featured-image-wrapper:hover .blog-featured-image {
	transform: scale(1.02);
}

/* Blog Excerpt */
.blog-excerpt {
	font-size: 20px;
	line-height: 1.7;
	color: #ffffff;
	text-align: center;
	margin: 30px auto 40px;
	max-width: 800px;
	font-style: italic;
	padding: 25px;
	background: linear-gradient(135deg, 
		rgba(153, 69, 255, 0.05) 0%,
		rgba(0, 168, 255, 0.03) 100%);
	border-radius: 15px;
	border-left: 4px solid #9B59B6;
}

/* Blog Content Text */
.blog-content-text {
	max-width: 900px;
	margin: 0 auto;
}

/* Blog Detail Page - Responsive Design */
@media (max-width: 768px) {
	.blog-detail-container {
		padding: 80px 20px 60px;
	}
	
	.blog-detail-title {
		font-size: 28px;
		margin-bottom: 20px;
		line-height: 1.4;
	}
	
	.blog-detail-meta {
		font-size: 12px;
		gap: 12px;
	}
	
	.blog-detail-meta span {
		padding: 6px 12px;
	}
	
	.blog-detail-content {
		font-size: 16px;
		line-height: 1.8;
		margin-top: 30px;
	}
	
	.blog-detail-content h2 {
		font-size: 24px;
		margin: 35px 0 20px;
		padding-left: 15px;
	}
	
	.blog-detail-content h3 {
		font-size: 20px;
		margin: 30px 0 15px;
	}
	
	.blog-excerpt {
		font-size: 17px;
		padding: 20px;
		margin: 25px 0 30px;
	}
	
	.blog-featured-image-wrapper {
		margin: 30px 0;
		border-radius: 15px;
	}
	
	.blog-featured-image {
		border-radius: 15px;
	}
}

@media (max-width: 480px) {
	.blog-detail-container {
		padding: 70px 15px 50px;
	}
	
	.blog-detail-title {
		font-size: 24px;
		margin-bottom: 18px;
	}
	
	.blog-detail-meta {
		font-size: 11px;
		gap: 8px;
		flex-direction: column;
		align-items: center;
	}
	
	.blog-detail-meta span {
		padding: 5px 10px;
	}
	
	.blog-detail-content {
		font-size: 15px;
		line-height: 1.75;
	}
	
	.blog-detail-content h2 {
		font-size: 22px;
		margin: 30px 0 18px;
		padding-left: 12px;
		border-left-width: 3px;
	}
	
	.blog-detail-content h3 {
		font-size: 19px;
		margin: 25px 0 12px;
	}
	
	.blog-excerpt {
		font-size: 16px;
		padding: 18px;
		margin: 20px 0 25px;
	}
	
	.blog-featured-image-wrapper {
		margin: 25px 0;
		border-radius: 12px;
	}
	
	.blog-featured-image {
		border-radius: 12px;
	}
}

.blog-detail-content a:hover {
	color: var(--accent-cyan);
	border-bottom-color: var(--accent-cyan);
}

/* Page Header Images - Enhanced */
.page-header-image {
	position: relative;
	height: 400px;
	background-size: cover;
	background-position: center;
	overflow: hidden;
}

.page-header-image::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(180deg,
		rgba(10, 10, 10, 0.7) 0%,
		rgba(10, 10, 10, 0.5) 50%,
		rgba(10, 10, 10, 0.9) 100%);
}

.page-header-overlay {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	text-align: center;
	z-index: 2;
	width: 100%;
	padding: 0 30px;
}

.page-header-title {
	font-size: 56px;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: 4px;
	margin-bottom: 20px;
	color: #ffffff;
}

.page-header-subtitle {
	font-size: 20px;
	color: var(--text-secondary);
	max-width: 700px;
	margin: 0 auto;
	line-height: 1.6;
}

/* Floating Animation Elements */
.floating-element {
	position: absolute;
	width: 100px;
	height: 100px;
	background: linear-gradient(135deg, var(--accent-purple), var(--accent-blue));
	border-radius: 50%;
	opacity: 0.1;
	animation: float 6s ease-in-out infinite;
}

@keyframes float {
	0%, 100% {
		transform: translateY(0) rotate(0deg);
	}
	50% {
		transform: translateY(-20px) rotate(180deg);
	}
}

/* Responsive Enhancements */
@media (max-width: 768px) {
	.about-hero-title {
		font-size: 36px;
		letter-spacing: 2px;
	}
	
	.about-hero-subtitle {
		font-size: 18px;
	}
	
	.contact-hero-title {
		font-size: 36px;
	}
	
	.blog-detail-title {
		font-size: 32px;
	}
	
	.page-header-title {
		font-size: 36px;
	}
	
	.services-page-grid {
		grid-template-columns: 1fr;
		gap: 20px;
	}
}

/* ============================================
   ABOUT PAGE - REDESIGNED SECTIONS
   ============================================ */

/* About Main Section */
.about-main-section {
	padding: 100px 80px;
	background: linear-gradient(180deg,
		var(--primary-black) 0%,
		var(--carbon-dark) 50%,
		var(--primary-black) 100%);
	position: relative;
	overflow: hidden;
}

.about-main-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: 
		radial-gradient(circle at 30% 30%, rgba(153, 69, 255, 0.1) 0%, transparent 50%),
		radial-gradient(circle at 70% 70%, rgba(0, 168, 255, 0.1) 0%, transparent 50%);
	z-index: 0;
	pointer-events: none;
}

.about-container {
	max-width: 1200px;
	margin: 0 auto;
	position: relative;
	z-index: 1;
}

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

.about-content-wrapper-full {
	max-width: 900px;
	margin: 0 auto;
}

.about-text-section-full {
	color: var(--text-primary);
	text-align: center;
}

.about-text-section-full .section-header {
	text-align: center;
	margin-bottom: 40px;
}

.about-text-section-full .section-title {
	font-size: 42px;
	font-weight: 700;
	margin-bottom: 20px;
	background: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.title-underline-center {
	width: 80px;
	height: 4px;
	background: linear-gradient(90deg, var(--accent-purple), var(--accent-blue));
	margin: 0 auto 30px;
	border-radius: 2px;
}

.about-description-full {
	margin-bottom: 50px;
	max-width: 800px;
	margin-left: auto;
	margin-right: auto;
}

.about-description-full p {
	font-size: 17px;
	line-height: 1.9;
	color: rgba(255, 255, 255, 0.85);
	margin-bottom: 20px;
	text-align: justify;
}

.about-description-full .lead-text {
	font-size: 20px;
	font-weight: 600;
	color: var(--text-primary);
	margin-bottom: 25px;
	text-align: center;
}

.about-features-full {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
	max-width: 900px;
	margin: 0 auto;
}

.about-image-section {
	position: relative;
}

.about-image-wrapper {
	position: relative;
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 20px 60px rgba(153, 69, 255, 0.3);
}

.about-main-image {
	width: 100%;
	height: auto;
	display: block;
	transition: transform 0.5s ease;
}

.about-image-wrapper:hover .about-main-image {
	transform: scale(1.05);
}

.about-image-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(135deg, rgba(153, 69, 255, 0.1), rgba(0, 168, 255, 0.1));
	pointer-events: none;
}

.floating-badge {
	position: absolute;
	top: 20px;
	right: 20px;
	background: linear-gradient(135deg, var(--accent-purple), var(--accent-blue));
	padding: 20px 25px;
	border-radius: 15px;
	box-shadow: 0 10px 30px rgba(153, 69, 255, 0.5);
	text-align: center;
	z-index: 2;
	animation: pulse 2s ease-in-out infinite;
}

.floating-badge .badge-number {
	display: block;
	font-size: 32px;
	font-weight: 700;
	color: #ffffff;
	line-height: 1;
}

.floating-badge .badge-text {
	display: block;
	font-size: 12px;
	color: rgba(255, 255, 255, 0.9);
	text-transform: uppercase;
	letter-spacing: 1px;
	margin-top: 5px;
}

@keyframes pulse {
	0%, 100% {
		transform: scale(1);
	}
	50% {
		transform: scale(1.05);
	}
}

.about-text-section {
	color: var(--text-primary);
}

.about-text-section .section-label {
	display: inline-block;
	font-size: 14px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 2px;
	color: var(--accent-purple);
	margin-bottom: 15px;
}

.about-text-section .section-title {
	font-size: 42px;
	font-weight: 700;
	margin-bottom: 20px;
	background: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.title-underline {
	width: 80px;
	height: 4px;
	background: linear-gradient(90deg, var(--accent-purple), var(--accent-blue));
	margin-bottom: 30px;
	border-radius: 2px;
}

.about-description {
	margin-bottom: 40px;
}

.about-description p {
	font-size: 17px;
	line-height: 1.9;
	color: rgba(255, 255, 255, 0.85);
	margin-bottom: 20px;
}

.about-description .lead-text {
	font-size: 20px;
	font-weight: 600;
	color: var(--text-primary);
	margin-bottom: 25px;
}

.about-description strong {
	color: var(--accent-cyan);
	font-weight: 600;
}

.about-features {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.feature-item {
	display: flex;
	align-items: flex-start;
	gap: 20px;
	padding: 20px;
	background: rgba(255, 255, 255, 0.03);
	border-radius: 12px;
	border: 1px solid rgba(153, 69, 255, 0.2);
	transition: all 0.3s ease;
}

.feature-item:hover {
	background: rgba(255, 255, 255, 0.05);
	border-color: rgba(153, 69, 255, 0.4);
	transform: translateX(10px);
}

.feature-icon {
	width: 50px;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, var(--accent-purple), var(--accent-blue));
	border-radius: 12px;
	flex-shrink: 0;
}

.feature-icon i {
	font-size: 24px;
	color: #ffffff;
}

.feature-content h4 {
	font-size: 18px;
	font-weight: 600;
	color: var(--text-primary);
	margin-bottom: 8px;
}

.feature-content p {
	font-size: 15px;
	color: rgba(255, 255, 255, 0.7);
	margin: 0;
	line-height: 1.6;
}

/* Achievements Section */
.achievements-section {
	padding: 100px 80px;
	background: var(--carbon-dark);
	position: relative;
}

.achievements-container {
	max-width: 1200px;
	margin: 0 auto;
}

.achievements-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 30px;
	margin-top: 60px;
}

.achievement-card {
	text-align: center;
	padding: 40px 30px;
	background: rgba(255, 255, 255, 0.03);
	border-radius: 20px;
	border: 1px solid rgba(153, 69, 255, 0.2);
	transition: all 0.4s ease;
	position: relative;
	overflow: hidden;
}

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

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

.achievement-card:hover {
	transform: translateY(-10px);
	border-color: rgba(153, 69, 255, 0.5);
	box-shadow: 0 20px 40px rgba(153, 69, 255, 0.2);
}

.achievement-icon {
	width: 70px;
	height: 70px;
	margin: 0 auto 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, var(--accent-purple), var(--accent-blue));
	border-radius: 50%;
}

.achievement-icon i {
	font-size: 32px;
	color: #ffffff;
}

.achievement-number {
	font-size: 48px;
	font-weight: 700;
	color: var(--accent-purple);
	margin-bottom: 10px;
	background: linear-gradient(135deg, var(--accent-purple), var(--accent-blue));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.achievement-label {
	font-size: 16px;
	color: rgba(255, 255, 255, 0.8);
	text-transform: uppercase;
	letter-spacing: 1px;
}

/* Mission & Vision Section */
.mission-vision-section {
	padding: 100px 80px;
	background: var(--primary-black);
}

.mission-vision-container {
	max-width: 1200px;
	margin: 0 auto;
}

.mission-vision-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px;
	margin-top: 60px;
}

.mission-card,
.vision-card {
	padding: 50px 40px;
	background: rgba(255, 255, 255, 0.03);
	border-radius: 20px;
	border: 1px solid rgba(153, 69, 255, 0.2);
	transition: all 0.4s ease;
	position: relative;
	overflow: hidden;
}

.mission-card::before,
.vision-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(90deg, var(--accent-purple), var(--accent-blue));
	transform: scaleX(0);
	transition: transform 0.4s ease;
}

.mission-card:hover::before,
.vision-card:hover::before {
	transform: scaleX(1);
}

.mission-card:hover,
.vision-card:hover {
	transform: translateY(-5px);
	border-color: rgba(153, 69, 255, 0.4);
	box-shadow: 0 20px 40px rgba(153, 69, 255, 0.15);
}

.mission-icon,
.vision-icon {
	width: 70px;
	height: 70px;
	margin-bottom: 30px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, var(--accent-purple), var(--accent-blue));
	border-radius: 50%;
}

.mission-icon i,
.vision-icon i {
	font-size: 32px;
	color: #ffffff;
}

.mission-title,
.vision-title {
	font-size: 32px;
	font-weight: 700;
	color: var(--text-primary);
	margin-bottom: 20px;
	background: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.mission-description,
.vision-description {
	font-size: 17px;
	line-height: 1.9;
	color: rgba(255, 255, 255, 0.85);
	margin-bottom: 20px;
}

/* Why Choose Us Section */
.why-choose-section {
	padding: 100px 80px;
	background: linear-gradient(180deg,
		var(--carbon-dark) 0%,
		var(--primary-black) 100%);
	position: relative;
}

.why-choose-container {
	max-width: 1200px;
	margin: 0 auto;
}

.why-choose-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
	margin-top: 60px;
}

.why-choose-carousel-container {
	display: none;
}

.why-choose-card {
	padding: 40px 30px;
	text-align: center;
	background: rgba(255, 255, 255, 0.03);
	border-radius: 20px;
	border: 1px solid rgba(153, 69, 255, 0.2);
	transition: all 0.4s ease;
}

.why-choose-card:hover {
	transform: translateY(-10px);
	border-color: rgba(153, 69, 255, 0.5);
	box-shadow: 0 20px 40px rgba(153, 69, 255, 0.2);
	background: rgba(255, 255, 255, 0.05);
}

.why-icon {
	width: 80px;
	height: 80px;
	margin: 0 auto 25px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, var(--accent-purple), var(--accent-blue));
	border-radius: 50%;
	transition: transform 0.4s ease;
}

.why-choose-card:hover .why-icon {
	transform: scale(1.1) rotate(5deg);
}

.why-icon i {
	font-size: 36px;
	color: #ffffff;
}

.why-choose-card h4 {
	font-size: 22px;
	font-weight: 600;
	color: var(--text-primary);
	margin-bottom: 15px;
}

.why-choose-card p {
	font-size: 16px;
	line-height: 1.7;
	color: rgba(255, 255, 255, 0.75);
	margin: 0;
}

/* Responsive Styles for About Page */
@media (max-width: 1024px) {
	.about-content-wrapper {
		grid-template-columns: 1fr;
		gap: 40px;
	}
	
	.about-features-full {
		grid-template-columns: repeat(2, 1fr);
		gap: 20px;
	}
	
	.achievements-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	
	.mission-vision-grid {
		grid-template-columns: 1fr;
	}
	
	.why-choose-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 768px) {
	.about-main-section,
	.achievements-section,
	.mission-vision-section,
	.why-choose-section {
		padding: 60px 20px;
	}
	
	.about-text-section .section-title,
	.about-text-section-full .section-title {
		font-size: 32px;
	}
	
	.about-features-full {
		grid-template-columns: 1fr;
		gap: 20px;
	}
	
	.about-description-full p {
		text-align: left;
	}
	
	.achievements-grid {
		grid-template-columns: 1fr;
		gap: 20px;
	}
	
	/* Hide grid on mobile, show slider */
	.why-choose-grid {
		display: none;
	}
	
	.why-choose-carousel-container {
		display: block;
		max-width: 100%;
		margin: 60px auto 0;
		position: relative;
		padding: 0 20px;
	}
	
	.why-choose-carousel {
		display: flex;
		overflow-x: auto;
		overflow-y: hidden;
		gap: 20px;
		scroll-behavior: smooth;
		scroll-snap-type: x mandatory;
		-webkit-overflow-scrolling: touch;
		scrollbar-width: none;
		-ms-overflow-style: none;
	}
	
	.why-choose-carousel::-webkit-scrollbar {
		display: none;
	}
	
	.why-choose-slide {
		flex: 0 0 100%;
		min-width: 100%;
		scroll-snap-align: start;
		transition: transform 0.3s ease;
	}
	
	.why-choose-carousel-controls {
		position: relative;
		top: auto;
		left: auto;
		right: auto;
		transform: none;
		width: 100%;
		display: flex;
		justify-content: center;
		gap: 20px;
		pointer-events: all;
		z-index: 10;
		margin: 25px auto 0;
		padding: 0;
	}
	
	.why-choose-carousel-btn {
		width: 45px;
		height: 45px;
		background: rgba(153, 69, 255, 0.8);
		border: 2px solid rgba(255, 255, 255, 0.3);
		border-radius: 50%;
		color: #ffffff;
		font-size: 22px;
		cursor: pointer;
		transition: all 0.3s ease;
		display: flex;
		align-items: center;
		justify-content: center;
		pointer-events: all;
		backdrop-filter: blur(10px);
		-webkit-backdrop-filter: blur(10px);
	}
	
	.why-choose-carousel-btn:hover {
		background: var(--accent-purple);
		border-color: var(--accent-purple);
		transform: scale(1.1);
		box-shadow: 0 5px 20px rgba(153, 69, 255, 0.5);
	}
	
	.why-choose-carousel-btn:active {
		transform: scale(0.95);
	}
	
	.why-choose-carousel-indicators {
		display: flex;
		justify-content: center;
		gap: 8px;
		margin-top: 25px;
	}
	
	.why-choose-indicator {
		width: 10px;
		height: 10px;
		background: rgba(255, 255, 255, 0.3);
		border: 1px solid rgba(255, 255, 255, 0.5);
		border-radius: 50%;
		cursor: pointer;
		transition: all 0.3s ease;
	}
	
	.why-choose-indicator.active {
		background: var(--accent-purple);
		border-color: var(--accent-purple);
		width: 24px;
		border-radius: 5px;
	}
	
	.achievement-number {
		font-size: 36px;
	}
	
	.mission-title,
	.vision-title {
		font-size: 26px;
	}
}

/* Desktop: Hide slider, show grid */
@media (min-width: 769px) {
	.why-choose-carousel-container {
		display: none;
	}
	
	.why-choose-grid {
		display: grid;
	}
}

@media (max-width: 480px) {
	.about-main-section,
	.achievements-section,
	.mission-vision-section,
	.why-choose-section {
		padding: 50px 15px;
	}
	
	.floating-badge {
		padding: 15px 20px;
		top: 10px;
		right: 10px;
	}
	
	.floating-badge .badge-number {
		font-size: 24px;
	}
	
	.about-text-section .section-title {
		font-size: 28px;
	}
	
	.achievement-card,
	.why-choose-card {
		padding: 30px 20px;
	}
	
	.why-choose-carousel-container {
		padding: 0 15px;
	}
	
	.services-carousel-container {
		padding: 0 10px;
	}
	
	.services-carousel .skill-hexagon {
		flex: 0 0 100%;
		min-width: 100%;
		width: 100%;
	}
	
	.why-choose-carousel-btn,
	.services-carousel-btn {
		width: 40px;
		height: 40px;
		font-size: 20px;
	}
}

/* Desktop: Hide slider, show grid */
@media (min-width: 769px) {
	.why-choose-carousel-container {
		display: none;
	}
	
	.why-choose-grid {
		display: grid;
	}
}

/* Admin Panel Access Button */
.admin-access-btn {
	position: fixed;
	bottom: 30px;
	right: 30px;
	width: 60px;
	height: 60px;
	background: linear-gradient(135deg, var(--accent-purple), var(--accent-blue));
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--text-primary);
	font-size: 24px;
	text-decoration: none;
	box-shadow: 0 8px 25px rgba(153, 69, 255, 0.4);
	z-index: 1000;
	transition: all 0.3s ease;
	animation: pulse-admin 2s ease-in-out infinite;
}

.admin-access-btn:hover {
	transform: translateY(-5px) scale(1.1);
	box-shadow: 0 12px 35px rgba(153, 69, 255, 0.6);
	color: var(--text-primary);
}

.admin-access-btn:active {
	transform: translateY(-2px) scale(1.05);
}

@keyframes pulse-admin {
	0%, 100% {
		box-shadow: 0 8px 25px rgba(153, 69, 255, 0.4);
	}
	50% {
		box-shadow: 0 8px 25px rgba(153, 69, 255, 0.6), 0 0 0 10px rgba(153, 69, 255, 0.1);
	}
}

/* Mobile Responsive for Admin Button */
@media (max-width: 768px) {
	.admin-access-btn {
		bottom: 20px;
		right: 20px;
		width: 50px;
		height: 50px;
		font-size: 20px;
	}
}

/* Gallery Section Styles */
.gallery-section {
	padding: 80px 20px;
	background: var(--dark-bg);
}

.gallery-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
	gap: 30px;
	max-width: 1400px;
	margin: 0 auto;
	padding: 20px;
}

.gallery-item {
	position: relative;
	border-radius: 15px;
	overflow: hidden;
	background: var(--card-bg);
	border: 1px solid var(--border-color);
	transition: all 0.3s ease;
	cursor: pointer;
	aspect-ratio: 1;
}

.gallery-item:hover {
	transform: translateY(-10px);
	box-shadow: 0 20px 40px rgba(153, 69, 255, 0.3);
	border-color: var(--primary-color);
}

.gallery-image-wrapper {
	width: 100%;
	height: 100%;
	overflow: hidden;
}

.gallery-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
}

.gallery-item:hover img {
	transform: scale(1.1);
}

.gallery-item-overlay {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
	padding: 20px;
	transform: translateY(100%);
	transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-item-overlay {
	transform: translateY(0);
}

.gallery-item-title {
	color: var(--text-primary);
	font-size: 18px;
	font-weight: 600;
	margin-bottom: 8px;
}

.gallery-item-description {
	color: var(--text-secondary);
	font-size: 14px;
	line-height: 1.5;
}

/* Gallery Responsive */
@media (max-width: 768px) {
	.gallery-grid {
		grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
		gap: 20px;
		padding: 10px;
	}
	
	.gallery-item-overlay {
		transform: translateY(0);
		background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
	}
}

@media (max-width: 480px) {
	.gallery-grid {
		grid-template-columns: 1fr;
		gap: 15px;
	}
}