/* styles.css - All original styles kept + massive enhancements for new content */
body {
	margin: 0;
	font-family: "Nunito", sans-serif;
	color: #ddd;
	background: #000;
	line-height: 1.6;
	overflow-x: hidden;
}

h1, h2, h3 {
	font-family: "Orbitron", sans-serif;
	color: #fff;
}

a {
	color: #00ffcc;
	text-decoration: none;
	transition: all 0.3s ease;
}

a:hover {
	text-shadow: 0 0 10px #00ffcc;
}

/* Header & Hero - LEFT EXACTLY AS REQUESTED */
header {
	background: rgba(0, 0, 0, 0.8);
	position: fixed;
	width: 100%;
	z-index: 1000;
	backdrop-filter: blur(10px);
}

nav {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 1rem 3rem;
	max-width: 1400px;
	margin: 0 auto;
}

.logo img {
	max-height:40px;
	width:auto;
}

.nav-links {
	list-style: none;
	display: flex;
	gap: 2rem;
}

.nav-links li a {
	font-weight: 600;
	position: relative;
}

.nav-links li a::after {
	content: "";
	position: absolute;
	bottom: -5px;
	left: 0;
	width: 0;
	height: 2px;
	background: #00ffcc;
	transition: width 0.3s;
}

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

.hamburger {
	display: none;
	color: #fff;
	font-size: 2rem;
	cursor: pointer;
}

/* Sections base */
.section {
	padding: 6rem 3rem;
	max-width: 1400px;
	margin: 0 auto;
	opacity: 0;
	transform: translateY(50px);
	transition: all 1s ease;
}

.section.visible {
	opacity: 1;
	transform: translateY(0);
}

/* Hero - LEFT EXACTLY AS REQUESTED */
.hero {
	height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, #000, #111);
	text-align: center;
	position: relative;
	overflow: hidden;
}

.hero::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: radial-gradient(circle, rgba(0,255,204,0.1), transparent);
	animation: gradient-pulse 10s infinite alternate;
}

.hero-content h1 {
	font-size: 4rem;
	margin-bottom: 1rem;
	text-shadow: 0 0 20px #00ffcc;
}

.hero-content p {
	font-size: 1.5rem;
	margin-bottom: 2rem;
}

.cta {
	padding: 1rem 2.5rem;
	border: 2px solid #00ffcc;
	border-radius: 50px;
	font-weight: bold;
	box-shadow: 0 0 15px #00ffcc;
	display: inline-block;
}

.cta:hover {
	background: #00ffcc;
	color: #000;
	box-shadow: 0 0 30px #00ffcc;
}

/* === UPDATED ABOUT SECTION === */
.about {
	background: #111;
}

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

.about-text p {
	font-size: 1.15rem;
	margin-bottom: 1.5rem;
}

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

.stat-item {
	text-align: center;
	background: #1a1a1a;
	padding: 1.5rem;
	border-radius: 15px;
	border: 1px solid #00ffcc33;
}

.number {
	font-size: 2.8rem;
	font-weight: 700;
	color: #00ffcc;
	display: block;
	text-shadow: 0 0 15px #00ffcc;
}

.label {
	font-size: 0.95rem;
	color: #aaa;
	display: block;
	margin-top: 0.5rem;
}

.values {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 2rem;
	margin-top: 4rem;
}

.value-card {
	background: #1f1f1f;
	padding: 2rem;
	border-radius: 15px;
	text-align: center;
	transition: transform 0.4s;
}

.value-card:hover {
	transform: translateY(-10px);
}

/* === UPDATED SERVICES === */
.services {
	background: #000;
}

.section-intro {
	text-align: center;
	max-width: 800px;
	margin: 0 auto 4rem;
	font-size: 1.2rem;
	color: #bbb;
}

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

.service-card {
	background: #222;
	padding: 2.5rem 2rem;
	border-radius: 20px;
	text-align: center;
	box-shadow: 0 0 15px rgba(0,255,204,0.15);
	transition: all 0.5s;
	height: 100%;
	display: flex;
	flex-direction: column;
}

.service-card:hover {
	transform: translateY(-15px) scale(1.03);
	box-shadow: 0 0 40px #00ffcc;
}

.service-card h3 {
	margin-bottom: 1rem;
	color: #00ffcc;
}

.service-card ul {
	margin-top: 1.5rem;
	padding-left: 0;
	list-style: none;
	text-align: left;
	flex-grow: 1;
}

.service-card ul li {
	padding: 0.4rem 0;
	position: relative;
	padding-left: 1.8rem;
}

.service-card ul li:before {
	content: "→";
	color: #00ffcc;
	position: absolute;
	left: 0;
}

/* === UPDATED PORTFOLIO === */
.portfolio {
	background: #111;
}

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

.project {
	position: relative;
	overflow: hidden;
	border-radius: 20px;
	box-shadow: 0 10px 30px rgba(0,0,0,0.6);
}

.project img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.6s ease;
}

.project:hover img {
	transform: scale(1.12);
}

.overlay {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	background: linear-gradient(transparent, rgba(0,0,0,0.95));
	padding: 2rem 1.5rem 1.5rem;
	transform: translateY(30%);
	transition: transform 0.5s ease;
	text-align: left;
}

.project:hover .overlay {
	transform: translateY(0);
}

.tech {
	display: block;
	margin-top: 1rem;
	font-size: 0.85rem;
	color: #00ffcc;
	opacity: 0.9;
	font-family: monospace;
}

/* === UPDATED CONTACT WITH FORM === */
.contact {
	background: #000;
}

.contact-container {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 5rem;
	align-items: start;
}

.contact-info h3 {
	font-size: 2.2rem;
	margin-bottom: 1rem;
}

.contact-details {
	margin: 2rem 0;
	line-height: 2.2;
}

.contact-details a {
	color: #00ffcc;
}

.social-links {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	margin-top: 2rem;
}

.social-link {
	padding: 0.8rem 1.6rem;
	border: 2px solid #00ffcc;
	border-radius: 50px;
	font-weight: 600;
	transition: all 0.3s;
}

.social-link:hover {
	background: #00ffcc;
	color: #000;
	transform: scale(1.05);
}

.contact-form input,
.contact-form textarea,
.contact-form select {
	width: 100%;
	background: #1a1a1a;
	border: 2px solid #00ffcc;
	color: #ddd;
	padding: 16px 20px;
	border-radius: 12px;
	font-size: 1.05rem;
	margin-bottom: 1.5rem;
	transition: all 0.3s ease;
	font-family: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
	outline: none;
	border-color: #00ff9d;
	box-shadow: 0 0 25px rgba(0, 255, 204, 0.4);
}

.contact-form button {
	width: 100%;
	margin-top: 1rem;
}

#form-response {
	margin-top: 1.5rem;
	padding: 1.2rem;
	border-radius: 12px;
	font-weight: 600;
	text-align: center;
	min-height: 3.5rem;
	display: none;
}

#form-response.success {
	display: block;
	background: rgba(0, 255, 100, 0.15);
	color: #0f0;
	border: 1px solid #0f0;
}

#form-response.error {
	display: block;
	background: rgba(255, 80, 80, 0.15);
	color: #ff6666;
	border: 1px solid #ff6666;
}

/* Footer */
footer {
	background: #111;
	text-align: center;
	padding: 2.5rem;
	color: #888;
}

/* Animations (original kept + minor tweaks) */
@keyframes slide-in { from { transform: translateY(-50px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
.animate-slide-in { animation: slide-in 1.5s ease-out; }

@keyframes fade-in { from { opacity: 0; } to { opacity: 1; } }
.animate-fade-in { animation: fade-in 2s ease-in; }

@keyframes pulse { 0% { box-shadow: 0 0 0 #00ffcc; } 50% { box-shadow: 0 0 30px #00ffcc; } 100% { box-shadow: 0 0 0 #00ffcc; } }
.animate-pulse { animation: pulse 2s infinite; }

@keyframes reveal { from { opacity: 0; transform: translateX(-80px); } to { opacity: 1; transform: translateX(0); } }
.animate-reveal { animation: reveal 1.2s ease-out; }

@keyframes slide-up { from { transform: translateY(80px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
.animate-slide-up { animation: slide-up 1s ease-out; }

@keyframes zoom-in { from { transform: scale(0.75); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.animate-zoom-in { animation: zoom-in 1.1s ease-out; }

@keyframes fade-up { from { transform: translateY(30px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
.animate-fade-up { animation: fade-up 1s ease; }

@keyframes gradient-pulse { 0% { opacity: 0.4; } 100% { opacity: 1; } }

/* Responsive */
@media (max-width: 992px) {
	.about-grid, .contact-container {
		grid-template-columns: 1fr;
		gap: 3rem;
	}
}

@media (max-width: 768px) {
	nav { padding: 1rem; }
	.nav-links {
		display: none;
		flex-direction: column;
		position: absolute;
		top: 70px;
		left: 0;
		width: 100%;
		background: #000;
		padding: 1.5rem 0;
	}
	.nav-links.active { display: flex; }
	.hamburger { display: block; }
	.hero-content h1 { font-size: 2.8rem; }
	.section { padding: 4rem 1.5rem; }
	.service-grid { grid-template-columns: 1fr; }
}
