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

:root {
	/* Colors from logo */
	--primary-color: #6ec1e4;
	--primary-hover: #5ab0d3;
	--accent-color: #a855f7;
	--accent-2: #d675c0;
	--bg-dark: #0a0a1b;
	--bg-secondary: #13132b;
	--bg-card: #1a1a35;
	--text-primary: #e5e7eb;
	--text-secondary: #9ca3af;
	--border-color: #2d2d4a;
	--success-color: #10b981;
	--error-color: #ef4444;
	--glow-cyan: rgba(110, 193, 228, 0.4);
	--glow-purple: rgba(168, 85, 247, 0.4);
	--glow-pink: rgba(214, 117, 192, 0.4);
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	background-color: var(--bg-dark);
	color: var(--text-primary);
	line-height: 1.6;
	min-height: 100vh;
	position: relative;
	overflow-x: hidden;
}

/* Animated Background */
.animated-bg {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	overflow: hidden;
	z-index: 0;
	pointer-events: none;
}

.gradient-orb {
	position: absolute;
	border-radius: 50%;
	filter: blur(100px);
	opacity: 0.25;
	animation: float 25s infinite ease-in-out;
}

.orb-1 {
	width: 600px;
	height: 600px;
	background: radial-gradient(circle, var(--primary-color), transparent);
	top: -15%;
	left: -10%;
	animation-delay: 0s;
}

.orb-2 {
	width: 500px;
	height: 500px;
	background: radial-gradient(circle, var(--accent-color), transparent);
	top: 30%;
	right: -10%;
	animation-delay: 7s;
	animation-duration: 30s;
}

.orb-3 {
	width: 550px;
	height: 550px;
	background: radial-gradient(circle, var(--accent-2), transparent);
	bottom: -15%;
	left: 20%;
	animation-delay: 14s;
	animation-duration: 35s;
}

.orb-4 {
	width: 450px;
	height: 450px;
	background: radial-gradient(circle, var(--primary-color), transparent);
	bottom: 20%;
	right: 15%;
	animation-delay: 21s;
	animation-duration: 40s;
}

@keyframes float {
	0%,
	100% {
		transform: translate(0, 0) scale(1) rotate(0deg);
	}
	25% {
		transform: translate(80px, -80px) scale(1.15) rotate(90deg);
	}
	50% {
		transform: translate(-60px, 60px) scale(0.9) rotate(180deg);
	}
	75% {
		transform: translate(60px, 80px) scale(1.1) rotate(270deg);
	}
}

/* Container */
.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 2rem;
	position: relative;
	z-index: 1;
}

/* Section Header */
.section-header {
	text-align: center;
	margin-bottom: 4rem;
	animation: fadeInUp 0.8s ease-out;
}

.section-header h2 {
	font-size: 3rem;
	margin-bottom: 1rem;
	background: linear-gradient(135deg, var(--primary-color), var(--accent-2));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	font-weight: 800;
}

.section-header p {
	font-size: 1.2rem;
	color: var(--text-secondary);
	max-width: 600px;
	margin: 0 auto;
}

/* Badge */
.badge {
	display: inline-block;
	padding: 0.6rem 1.5rem;
	background: linear-gradient(135deg, rgba(110, 193, 228, 0.15), rgba(168, 85, 247, 0.15));
	border: 1px solid rgba(110, 193, 228, 0.3);
	border-radius: 50px;
	color: var(--primary-color);
	font-size: 0.9rem;
	font-weight: 600;
	margin-bottom: 1.5rem;
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
}

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

@keyframes badge-float {
	0%,
	100% {
		transform: translateY(0);
	}
	50% {
		transform: translateY(-8px);
	}
}

/* Hero Section */
.hero-section {
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	padding: 2rem 0;
}

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

.logo-container {
	margin-bottom: 2rem;
	animation: fadeInScale 1s ease-out;
}

.logo-img {
	height: 200px;
	max-width: 100%;
	width: auto;
	object-fit: contain;
	filter: drop-shadow(0 10px 30px rgba(110, 193, 228, 0.3));
	transition:
		transform 0.5s ease,
		filter 0.5s ease;
}

.logo-img:hover {
	transform: scale(1.05) rotate(2deg);
	filter: drop-shadow(0 15px 40px rgba(168, 85, 247, 0.5));
}

@keyframes fadeInScale {
	from {
		opacity: 0;
		transform: scale(0.8);
	}
	to {
		opacity: 1;
		transform: scale(1);
	}
}

.hero-text {
	animation: fadeInUp 1s ease-out 0.3s both;
}

.hero-title {
	font-size: 4rem;
	font-weight: 900;
	line-height: 1.2;
	margin-bottom: 1.5rem;
	color: var(--text-primary);
}

.gradient-text {
	background: linear-gradient(135deg, var(--primary-color), var(--accent-2), var(--accent-color));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	background-size: 200% auto;
	animation: gradient-shift 3s ease infinite;
}

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

.hero-description {
	font-size: 1.3rem;
	color: var(--text-secondary);
	max-width: 700px;
	margin: 0 auto 3rem;
	line-height: 1.8;
}

.hero-buttons {
	display: flex;
	gap: 1.5rem;
	justify-content: center;
	flex-wrap: wrap;
	margin-bottom: 4rem;
}

/* Buttons */
.btn {
	padding: 1rem 2rem;
	border-radius: 12px;
	font-size: 1.1rem;
	font-weight: 600;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	transition: all 0.3s ease;
	cursor: pointer;
	border: none;
	position: relative;
	overflow: hidden;
}

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

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

.btn span,
.btn svg {
	position: relative;
	z-index: 1;
}

.btn-primary {
	background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
	color: white;
	box-shadow: 0 8px 25px rgba(110, 193, 228, 0.4);
}

.btn-primary:hover {
	transform: translateY(-3px);
	box-shadow: 0 12px 35px rgba(110, 193, 228, 0.6);
}

.btn-outline {
	background: rgba(26, 26, 53, 0.6);
	border: 2px solid var(--primary-color);
	color: var(--primary-color);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
}

.btn-outline:hover {
	background: rgba(110, 193, 228, 0.1);
	transform: translateY(-3px);
	box-shadow: 0 8px 25px rgba(110, 193, 228, 0.3);
}

/* Scroll Indicators */
.scroll-indicator {
	position: fixed;
	right: 2rem;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	z-index: 998;
	opacity: 0;
	transition:
		opacity 0.5s ease,
		transform 0.3s ease;
	pointer-events: none;
	cursor: pointer;
}

.scroll-indicator.visible {
	opacity: 1;
	pointer-events: auto;
}

.scroll-indicator-up {
	top: 50%;
	transform: translateY(calc(-50% - 90px));
}

.scroll-indicator-down {
	top: 50%;
	transform: translateY(calc(-50% + 90px));
}

.scroll-indicator-up:hover {
	transform: translateY(calc(-50% - 90px)) scale(1.15);
}

.scroll-indicator-down:hover {
	transform: translateY(calc(-50% + 90px)) scale(1.15);
}

.scroll-indicator:hover .mouse {
	border-color: var(--accent-color);
}

.scroll-indicator:hover .wheel {
	background: var(--accent-color);
}

.mouse {
	width: 14px;
	height: 22px;
	border: 2px solid var(--primary-color);
	border-radius: 10px;
	position: relative;
	transition: border-color 0.3s ease;
}

.mouse-down {
	animation: mouse-bounce-down 2s infinite;
}

.mouse-up {
	animation: mouse-bounce-up 2s infinite;
	transform: rotate(180deg);
}

.wheel {
	width: 2px;
	height: 4px;
	background: var(--primary-color);
	border-radius: 1px;
	position: absolute;
	top: 4px;
	left: 50%;
	transform: translateX(-50%);
	animation: wheel-scroll 2s infinite;
	transition: background 0.3s ease;
}

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

@keyframes mouse-bounce-up {
	0%,
	100% {
		transform: rotate(180deg) translateY(0);
	}
	50% {
		transform: rotate(180deg) translateY(5px);
	}
}

@keyframes wheel-scroll {
	0% {
		opacity: 1;
		top: 4px;
	}
	100% {
		opacity: 0;
		top: 12px;
	}
}

/* Services Section */
.services-section {
	padding: 6rem 0;
	position: relative;
}

.services-section .container {
	width: 100%;
}

.services-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: 2rem;
}

.service-card {
	background: rgba(26, 26, 53, 0.6);
	backdrop-filter: blur(15px);
	-webkit-backdrop-filter: blur(15px);
	padding: 2.5rem;
	border-radius: 20px;
	border: 1px solid rgba(110, 193, 228, 0.2);
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	position: relative;
	overflow: hidden;
	cursor: pointer;
}

.service-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(110, 193, 228, 0.1), transparent);
	transition: left 0.6s ease;
}

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

.service-card:hover {
	transform: translateY(-10px) scale(1.02);
	border-color: var(--primary-color);
	box-shadow: 0 20px 50px rgba(110, 193, 228, 0.3);
}

.service-icon {
	font-size: 3.5rem;
	margin-bottom: 1.5rem;
	display: inline-block;
	animation: icon-bounce 2s ease-in-out infinite;
}

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

.service-card:hover .service-icon {
	animation: icon-spin 0.6s ease-out;
}

@keyframes icon-spin {
	0% {
		transform: rotate(0deg) scale(1);
	}
	50% {
		transform: rotate(180deg) scale(1.2);
	}
	100% {
		transform: rotate(360deg) scale(1);
	}
}

.service-card h3 {
	font-size: 1.6rem;
	margin-bottom: 1rem;
	color: var(--text-primary);
	font-weight: 700;
}

.service-card > p {
	color: var(--text-secondary);
	margin-bottom: 1.5rem;
	line-height: 1.7;
}

.service-features {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 0.8rem;
}

.service-features li {
	color: var(--primary-color);
	font-size: 0.95rem;
	padding-left: 1.5rem;
	position: relative;
}

.service-features li::before {
	content: '✓';
	position: absolute;
	left: 0;
	font-weight: bold;
	color: var(--primary-color);
}

/* Portfolio Section */
.portfolio-section {
	padding: 6rem 0;
	background: linear-gradient(180deg, transparent, rgba(19, 19, 43, 0.5), transparent);
	position: relative;
}

.portfolio-section .container {
	width: 100%;
}

.portfolio-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
	gap: 2.5rem;
}

.portfolio-item {
	position: relative;
	border-radius: 20px;
	overflow: hidden;
	cursor: pointer;
	transform-style: preserve-3d;
	transition: transform 0.4s ease;
}

.portfolio-item:hover {
	transform: translateY(-15px) rotateX(5deg);
}

.portfolio-image {
	position: relative;
	width: 100%;
	padding-bottom: 75%;
	overflow: hidden;
	border-radius: 20px;
	border: 1px solid rgba(110, 193, 228, 0.2);
}

.placeholder-img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 5rem;
	transition: transform 0.5s ease;
}

.portfolio-item:hover .placeholder-img {
	transform: scale(1.1) rotate(5deg);
}

.portfolio-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(180deg, transparent 0%, rgba(10, 10, 27, 0.95) 60%);
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	padding: 2rem;
	opacity: 0;
	transition: opacity 0.4s ease;
}

.portfolio-item:hover .portfolio-overlay {
	opacity: 1;
}

.portfolio-overlay h3 {
	font-size: 1.8rem;
	margin-bottom: 0.5rem;
	color: var(--text-primary);
	transform: translateY(20px);
	transition: transform 0.4s ease 0.1s;
}

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

.portfolio-overlay p {
	color: var(--text-secondary);
	margin-bottom: 1rem;
	transform: translateY(20px);
	transition: transform 0.4s ease 0.15s;
}

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

.portfolio-tags {
	display: flex;
	gap: 0.5rem;
	margin-bottom: 1rem;
	flex-wrap: wrap;
	transform: translateY(20px);
	transition: transform 0.4s ease 0.2s;
}

.portfolio-item:hover .portfolio-tags {
	transform: translateY(0);
}

.portfolio-tags span {
	padding: 0.4rem 1rem;
	background: rgba(110, 193, 228, 0.2);
	border: 1px solid var(--primary-color);
	border-radius: 20px;
	font-size: 0.85rem;
	color: var(--primary-color);
}

.portfolio-btn {
	padding: 0.8rem 1.5rem;
	background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
	color: white;
	border: none;
	border-radius: 10px;
	font-weight: 600;
	cursor: pointer;
	align-self: flex-start;
	transition: all 0.3s ease;
	transform: translateY(20px);
	transition:
		transform 0.4s ease 0.25s,
		box-shadow 0.3s ease;
}

.portfolio-item:hover .portfolio-btn {
	transform: translateY(0);
}

.portfolio-btn:hover {
	box-shadow: 0 8px 25px rgba(110, 193, 228, 0.5);
	transform: translateY(-3px) !important;
}

/* Stats Section */
.stats-section {
	padding: 5rem 0;
	position: relative;
}

.stats-section .container {
	width: 100%;
}

.stats-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 2rem;
}

.stat-card {
	text-align: center;
	padding: 3rem 2rem;
	background: rgba(26, 26, 53, 0.6);
	backdrop-filter: blur(15px);
	-webkit-backdrop-filter: blur(15px);
	border-radius: 20px;
	border: 1px solid rgba(110, 193, 228, 0.2);
	transition: all 0.3s ease;
	cursor: default;
}

.stat-card:hover {
	transform: translateY(-10px);
	border-color: var(--primary-color);
	box-shadow: 0 15px 40px rgba(110, 193, 228, 0.3);
}

.stat-number {
	font-size: 4rem;
	font-weight: 900;
	background: linear-gradient(135deg, var(--primary-color), var(--accent-2));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	line-height: 1;
	margin-bottom: 1rem;
}

.stat-label {
	font-size: 1.1rem;
	color: var(--text-secondary);
	font-weight: 500;
}

/* Contact Section */
.contact-section {
	padding: 6rem 0;
	position: relative;
}

.contact-section .container {
	width: 100%;
}

.contact-content {
	display: grid;
	grid-template-columns: 1fr 2fr;
	gap: 3rem;
	align-items: start;
}

.contact-info {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.info-card {
	background: rgba(26, 26, 53, 0.6);
	backdrop-filter: blur(15px);
	-webkit-backdrop-filter: blur(15px);
	padding: 2rem;
	border-radius: 20px;
	border: 1px solid rgba(110, 193, 228, 0.2);
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

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

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

.info-card:hover {
	transform: translateY(-8px);
	border-color: var(--primary-color);
	box-shadow: 0 15px 40px rgba(110, 193, 228, 0.3);
}

.icon-wrapper {
	width: 70px;
	height: 70px;
	background: linear-gradient(135deg, rgba(110, 193, 228, 0.2), rgba(168, 85, 247, 0.2));
	border-radius: 15px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1.5rem;
	transition: all 0.3s ease;
}

.info-card:hover .icon-wrapper {
	transform: scale(1.1) rotate(5deg);
	background: linear-gradient(135deg, rgba(110, 193, 228, 0.3), rgba(168, 85, 247, 0.3));
}

.icon {
	font-size: 2.5rem;
}

.info-body {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.info-label {
	font-size: 0.9rem;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: var(--text-secondary);
	font-weight: 600;
}

.info-value {
	font-size: 1.2rem;
	color: var(--text-primary);
	font-weight: 700;
	text-decoration: none;
	transition: color 0.2s ease;
}

.info-value:hover {
	color: var(--primary-color);
}

.info-hint {
	color: var(--text-secondary);
	font-size: 0.95rem;
}

/* Contact Form */
.contact-form {
	background: rgba(26, 26, 53, 0.6);
	backdrop-filter: blur(15px);
	-webkit-backdrop-filter: blur(15px);
	padding: 2.5rem;
	border-radius: 20px;
	border: 1px solid rgba(110, 193, 228, 0.2);
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.form-group {
	margin-bottom: 1.5rem;
}

.form-group label {
	display: block;
	margin-bottom: 0.7rem;
	color: var(--text-primary);
	font-weight: 600;
	font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
	width: 100%;
	padding: 1rem 1.25rem;
	background: rgba(19, 19, 43, 0.8);
	border: 2px solid var(--border-color);
	border-radius: 12px;
	color: var(--text-primary);
	font-size: 1rem;
	font-family: inherit;
	transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
	outline: none;
	border-color: var(--primary-color);
	box-shadow:
		0 0 0 4px rgba(110, 193, 228, 0.15),
		0 0 30px rgba(110, 193, 228, 0.2);
	background: rgba(19, 19, 43, 1);
}

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

.submit-btn {
	width: 100%;
	padding: 1.2rem;
	background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
	color: white;
	border: none;
	border-radius: 12px;
	font-size: 1.1rem;
	font-weight: 600;
	cursor: pointer;
	position: relative;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	transition: all 0.3s ease;
}

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

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

.submit-btn span,
.submit-btn .btn-icon {
	position: relative;
	z-index: 1;
}

.submit-btn .btn-icon {
	transition: transform 0.3s ease;
}

.submit-btn:hover .btn-icon {
	transform: translateX(5px) rotate(15deg);
}

.submit-btn:hover {
	transform: translateY(-3px);
	box-shadow: 0 10px 35px rgba(110, 193, 228, 0.5);
}

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

.form-message {
	margin-top: 1rem;
	padding: 1rem;
	border-radius: 10px;
	text-align: center;
	font-weight: 500;
	display: none;
}

.form-message.success {
	display: block;
	background-color: rgba(16, 185, 129, 0.1);
	border: 1px solid var(--success-color);
	color: var(--success-color);
}

.form-message.error {
	display: block;
	background-color: rgba(239, 68, 68, 0.1);
	border: 1px solid var(--error-color);
	color: var(--error-color);
}

/* Footer */
footer {
	background: rgba(19, 19, 43, 0.9);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	padding: 3rem 0;
	text-align: center;
	border-top: 1px solid rgba(110, 193, 228, 0.2);
	position: relative;
	z-index: 1;
}

.footer-content {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1rem;
}

.footer-logo img {
	opacity: 0.8;
	transition: opacity 0.3s ease;
}

.footer-logo img:hover {
	opacity: 1;
}

footer p {
	color: var(--text-secondary);
	margin: 0.5rem 0;
}

.footer-tagline {
	color: var(--primary-color);
	font-weight: 600;
}

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

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

/* AOS Animations */
[data-aos='fade-up'] {
	opacity: 0;
	transform: translateY(50px);
	transition: all 0.8s ease-out;
}

[data-aos='fade-up'].aos-animate {
	opacity: 1;
	transform: translateY(0);
}

/* Scroll Navigation Indicator */
.scroll-nav {
	position: fixed;
	right: 2rem;
	top: 50%;
	transform: translateY(-50%);
	z-index: 1000;
	display: flex;
	flex-direction: column;
	gap: 1rem;
	opacity: 0;
	transition: opacity 0.5s ease;
}

.scroll-nav.visible {
	opacity: 1;
}

.scroll-nav-item {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: rgba(110, 193, 228, 0.3);
	border: 2px solid transparent;
	cursor: pointer;
	transition: all 0.3s ease;
	position: relative;
}

.scroll-nav-item::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 0;
	height: 0;
	border-radius: 50%;
	background: var(--primary-color);
	transition: all 0.3s ease;
}

.scroll-nav-item:hover {
	background: rgba(110, 193, 228, 0.5);
	transform: scale(1.3);
}

.scroll-nav-item.active {
	background: var(--primary-color);
	border-color: var(--primary-color);
	box-shadow: 0 0 15px var(--glow-cyan);
	transform: scale(1.4);
}

.scroll-nav-item.active::before {
	width: 6px;
	height: 6px;
}

.scroll-nav-tooltip {
	position: absolute;
	right: 25px;
	top: 50%;
	transform: translateY(-50%);
	background: rgba(26, 26, 53, 0.95);
	color: var(--text-primary);
	padding: 0.5rem 1rem;
	border-radius: 8px;
	font-size: 0.85rem;
	white-space: nowrap;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.3s ease;
	border: 1px solid rgba(110, 193, 228, 0.3);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
}

.scroll-nav-item:hover .scroll-nav-tooltip {
	opacity: 1;
}

/* Responsive Design */
@media (max-width: 1024px) {
	.hero-title {
		font-size: 3rem;
	}

	.section-header h2 {
		font-size: 2.5rem;
	}

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

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

@media (max-width: 1260px) {
	.scroll-nav {
		right: 1rem;
		gap: 0.8rem;
	}

	.scroll-nav-item {
		width: 10px;
		height: 10px;
	}

	.scroll-indicator {
		right: 1rem;
	}

	.scroll-indicator-up {
		transform: translateY(calc(-50% - 70px));
	}

	.scroll-indicator-down {
		transform: translateY(calc(-50% + 70px));
	}

	.scroll-indicator-up:hover {
		transform: translateY(calc(-50% - 70px)) scale(1.15);
	}

	.scroll-indicator-down:hover {
		transform: translateY(calc(-50% + 70px)) scale(1.15);
	}

	.mouse {
		width: 12px;
		height: 18px;
		border-width: 1.5px;
	}

	.wheel {
		width: 2px;
		height: 3px;
		top: 3px;
	}

	@keyframes wheel-scroll {
		0% {
			opacity: 1;
			top: 3px;
		}
		100% {
			opacity: 0;
			top: 10px;
		}
	}

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

	@keyframes mouse-bounce-up {
		0%,
		100% {
			transform: rotate(180deg) translateY(0);
		}
		50% {
			transform: rotate(180deg) translateY(4px);
		}
	}
}

@media (max-width: 768px) {
	.hero-title {
		font-size: 2.5rem;
	}

	.hero-description {
		font-size: 1.1rem;
	}

	.hero-buttons {
		flex-direction: column;
		align-items: stretch;
	}

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

	.section-header h2 {
		font-size: 2rem;
	}

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

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

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

	.stat-number {
		font-size: 3rem;
	}

	.logo-img {
		height: 150px;
	}
}

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

	.hero-title {
		font-size: 2rem;
	}

	.hero-description {
		font-size: 1rem;
	}

	.logo-img {
		height: 120px;
	}

	.service-card,
	.info-card,
	.contact-form {
		padding: 1.5rem;
	}

	.stat-number {
		font-size: 2.5rem;
	}

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

	.section-header h2 {
		font-size: 1.75rem;
	}

	.scroll-indicator,
	.scroll-nav {
		display: none;
	}
}
